.FAQitem {
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  overflow: hidden;
}
.FAQitem.__has_answer .FAQitem__question {
  color: #3ba6d2;
}
.FAQitem.__has_answer .FAQitem__question:after {
  content: "";
  border-left: 1px solid #3ba6d2;
  border-bottom: 1px solid #3ba6d2;
  -webkit-transform: rotate(225deg);
          -moz-transform: rotate(225deg);
           -ms-transform: rotate(225deg);
            -o-transform: rotate(225deg);
       transform: rotate(225deg);
  width: 1em;
  height: 1em;
  display: block;
  -webkit-transition: all ease 0.25s;
  -o-transition: all ease 0.25s;
  -moz-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
.FAQitem.__has_answer .FAQitem__question:focus,
.FAQitem.__has_answer .FAQitem__question:active {
  background: #3ba6d2;
  color: #fff;
}
.FAQitem.__has_answer .FAQitem__question:focus:after,
.FAQitem.__has_answer .FAQitem__question:active:after {
  border-color: #fff;
  -webkit-transform: rotate(315deg);
          -moz-transform: rotate(315deg);
           -ms-transform: rotate(315deg);
            -o-transform: rotate(315deg);
       transform: rotate(315deg);
}
.FAQitem__question,
.FAQitem__answer {
  padding: 1em 2em;
}
.FAQitem__question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
}
.FAQitem__question > span {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.FAQitem__question + .FAQitem__answer {
  display: none;
  font-style: italic;
}
.FAQitem__question:focus + .FAQitem__answer,
.FAQitem__question:active + .FAQitem__answer {
  display: block;
}
.FAQitem + .FAQitem {
  margin-top: 1em;
}
