.pdm_layout_FAQ_Accordion {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .pdm_layout_FAQ_Accordion {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.faq-title.h3 {
  font-weight: 600;
}
@media (min-width: 768px) {
  .faq-title {
    max-width: 12rem;
  }
}
.faq-list {
  border-top: 3px solid #fdcf75;
  margin: 0;
  padding: 0;
}
.faq-list .faq-single {
  border-left: 0;
  border-right: 0;
  border-bottom: 3px solid #fdcf75;
  border-radius: 0 !important;
  padding-left: 4rem;
  position: relative;
  background: transparent;
  border-top: 0 none;
}
.faq-list .faq-single .btn {
  position: relative;
  color: #393168;
  font-size: 1.5rem;
  font-weight: 600;
}

.faq-list .faq-single .btn:before {
  content: '';
  display: block;
  width: 1.7rem;
  height: 2px;
  background-color: #393168;
  position: absolute;
  left: -2.9rem;
  top: 1.3rem;
}
.faq-list .faq-single .btn:after {
  content: '';
  display: block;
  width: 1.7rem;
  height: 2px;
  background-color: #393168;
  position: absolute;
  left: -2.9rem;
  top: 1.3rem;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
  opacity: 0;
}
.faq-list .faq-single .collapsed:after {
  transform: rotate(90deg);
  opacity: 1;
}
.faq-list .btn:focus,
.faq-list .btn:active {
  box-shadow: none;
}
