/*FAB702*/
.faq {
  width: 100%;
}

.faq .content {
  width: 80%;
  padding: 0;
  margin: 0 auto;
}

.faq .content div.outer {
  border-bottom: 1px solid #e7e7e7;
  position: relative;
}

.faq .content div.outer .question {
  position: relative;
  margin: 0;
  padding: 15px 15px 15px 25px;
  display: block;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
}

.faq .content div.outer .answers {
  padding: 0px 15px;
  width: 100% !important;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.faq .content div.outer .questions:checked ~ .answers {
  height: auto;
  opacity: 1;
  padding: 0 15px 15px 25px;
}

.faq .content div.outer .plus {
  position: absolute;
  margin-right: 10px;
  font-size: 22px;
  line-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  top: 15px;
  left: 0;
  font-weight: 600;
}

.faq .content div.outer .questions:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq .content div.outer .questions {
  display: none;
}

@media (max-width: 767px) {
  .faq .content {
    width: 100%;
  }
}
/*# sourceMappingURL=faqs.css.map */