.faq-container {
  order: 4;
  width: 100%;
  max-width: 1160px;
  margin: 40px auto 0;
  position: relative;
}
.faq-container-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: initial;
  cursor: pointer;
  margin-bottom: 10px;
  line-height: 1.4;
  border-radius: 5px;
  background: #fff;
}
.faq-container-btn:last-child {
  margin-bottom: 0;
}
.faq-container-btn h3 {
  margin: 6px 0;
  pointer-events: none;
  display: block;
  width: 100%;
  padding: 0 50px 0 15px;
  position: relative;
}
.faq-container-btn h3:after {
  content: '';
  display: block;
  position: absolute;
  height: 10px;
  width: 10px;
  left: auto;
  right: 15px;
  top: 8px;
  vertical-align: top;
  border-style: solid;
  border-width: 0.1em 0.1em 0 0;
  transform: rotate(135deg);
  transition: all 0.3s;
  /*opacity: .7;*/
}
.faq-container-btn.show {
  padding-bottom: 0px;
}
.faq-container-btn.show h3:after {
  top: 15px;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.faq-container-btn.show .faq-container-content {
  display: block;
  max-height: 9999px;
  transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
  transition-delay: 0s;
  border-radius: 0 0 5px 5px;
  width: 100%;
}
.faq-container-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.8s cubic-bezier(0, 1, 0, 1) -0.1s;
  width: 100%;
}
.faq-container-content .text {
  padding: 20px 15px;
}
h2.faq {
  margin-top: 50px;
  padding-bottom: 0px;
}


/*# sourceMappingURL=custom-faq.min.css.map*/