.faq-security-banner {
 text-align: center;
 margin: 2em 0;
 border-bottom: 1px solid #D8D8D8;
 padding-bottom: 2em;
}

.faq-list-header {
  text-align: center;
  margin: 3em 1em 0 1em;
}

.faq-list-header > a {
  display: inline-block;
  padding: 0 1em;
}

.faq-list-wrap {
  padding: 0 3em;
}

@media(max-width: 750px) {
  .faq-list-wrap {
    padding: 0 1em;
  }
}

.faq-list {
  margin-bottom: 5em;
  padding: 0;
  font-size: 15px;
  line-height: 150%;
  border-top: 1px solid #D8D8D8;
}

.faq-item {
  list-style: none;
  border-bottom: 1px solid #D8D8D8;
  padding: 1em 2em 1em .5em;
}

.faq-question, .faq-answer {
  position: relative;
  padding-left: 2.5em;
}

.faq-question {
  cursor: pointer;
}

.faq-question:hover {
  color: #56AB48;
}

.faq-question:before,
.faq-answer:before {
  position: absolute;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  color: #FFFFFF;
  text-align: center;
  display: block;
  line-height: 23px;
  left: 0;
}

.faq-question:before {
  content: 'Q';
  background: #56AB48;
}

.faq-answer:before {
  content: 'A';
  background: #D8D8D8;
}

.faq-question:after {
  content: '+';
  display: block;
  width: 23px;
  height: 23PX;
  position: absolute;
  right: -1.5em;
  top: 0;
  color: #56AB48;
  font-size: 20px;
}

.faq-question.selected:after {
  content: '-';
}