.block-cs-faqs .faqs-content-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}
.block-cs-faqs .faqs-wrapper {
  margin-top: 80px;
}
.block-cs-faqs .faqs-wrapper .faqs__wrapper {
  row-gap: 24px;
}
.block-cs-faqs .faqs-wrapper .faqs__wrapper .faq-single {
  padding: 0 0 24px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-bottom: 1px solid var(--theme-color-contrast-dark);
}
.block-cs-faqs .faqs-wrapper .faqs__wrapper .faq-single .faq-title {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  cursor: pointer;
}
.block-cs-faqs .faqs-wrapper .faqs__wrapper .faq-single .faq-title .plus {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  background-color: transparent;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.block-cs-faqs .faqs-wrapper .faqs__wrapper .faq-single .faq-title .plus::before {
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background-color: var(--theme-color-accent-default);
  border-radius: 0px;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.block-cs-faqs .faqs-wrapper .faqs__wrapper .faq-single .faq-title .plus::after {
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background-color: var(--theme-color-accent-default);
  border-radius: 0px;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.block-cs-faqs .faqs-wrapper .faqs__wrapper .faq-single .faq-content {
  display: none;
}
.block-cs-faqs .faqs-wrapper .faqs__wrapper .faq-single.active .plus:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: var(--theme-color-accent-emphasis);
}
.block-cs-faqs .faqs-wrapper .faqs__wrapper .faq-single.active .plus:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: var(--theme-color-accent-emphasis);
}/*# sourceMappingURL=cs-faqs.css.map */