@import url("https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Bitter:wght@700&display=swap");
.block--faq-overview .title-wrapper {
  margin-bottom: 80px;
}
.block--faq-overview .faq-content {
  background: #fff;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.block--faq-overview .faq-content:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: -100vw;
  width: 100vw;
  background-color: #fff;
}
.block--faq-overview .faq-content ul {
  list-style: none;
  padding-left: 0;
}
.block--faq-overview .faq-content .tabs-wrapper {
  display: flex;
  border-bottom: 2px solid #DFD9D7;
  margin-bottom: 20px;
  margin-top: 20px;
}
.block--faq-overview .faq-content .tabs-wrapper .tab {
  margin-right: 30px;
  border-bottom: 2px solid transparent;
  font-size: 16px;
  color: #333333;
  margin-bottom: -2px;
  padding-bottom: 10px;
  transition: all 0.2s ease-in-out;
}
.block--faq-overview .faq-content .tabs-wrapper .tab span {
  border: 2px solid #333333;
  height: 26px;
  width: 26px;
  display: inline-block;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  margin-left: 10px;
  transition: all 0.2s ease-in-out;
}
.block--faq-overview .faq-content .tabs-wrapper .tab:hover, .block--faq-overview .faq-content .tabs-wrapper .tab:focus, .block--faq-overview .faq-content .tabs-wrapper .tab:active {
  text-decoration: none;
}
.block--faq-overview .faq-content .tabs-wrapper .tab.is-active {
  border-bottom: 3px solid #EB5527;
  color: #EB5527;
}
.block--faq-overview .faq-content .tabs-wrapper .tab.is-active span {
  color: #EB5527;
  border-color: #EB5527;
}
.block--faq-overview .faq-content .question-category {
  display: none;
}
.block--faq-overview .faq-content .question-category ul li .question-link {
  width: 100%;
  font-weight: 600;
  font-size: 20px;
  border-bottom: 1px solid #CECECE;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
}
.block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper {
  position: absolute;
  right: 0;
  bottom: 15px;
  padding: 9px 5px;
  border: 2px solid #EB5527;
  cursor: pointer;
  transition: all 500ms ease;
}
.block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper .plus-minus-toggle {
  height: 2px;
  width: 10px;
  position: relative;
}
.block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper .plus-minus-toggle:before, .block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper .plus-minus-toggle:after {
  background: #EB5527;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: 10px;
  transition: all 500ms ease;
}
.block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper .plus-minus-toggle:after {
  transform-origin: center;
}
.block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper.is-active {
  border-color: #333;
}
.block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper.is-active .plus-minus-toggle:before, .block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper.is-active .plus-minus-toggle:after {
  background: #333;
}
.block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper.is-active .plus-minus-toggle:after {
  transform: rotate(90deg);
}
.block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper.is-active .plus-minus-toggle:before {
  transform: rotate(180deg);
}
.block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper.is-active:hover {
  border-color: #EB5527;
}
.block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper.is-active:hover .plus-minus-toggle:before, .block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper.is-active:hover .plus-minus-toggle:after {
  background: #EB5527;
}
.block--faq-overview .faq-content .question-category ul li .answer {
  display: none;
  overflow: hidden;
  padding: 20px 0;
  border-bottom: 1px solid #CECECE;
}
.block--faq-overview .faq-content .question-category.is-active {
  display: block;
}
.block--faq-overview .faq-content .question-category.is-active ul li {
  opacity: 0;
  animation-name: itemFade;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(1) {
  animation-delay: 0.05s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(2) {
  animation-delay: 0.1s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(3) {
  animation-delay: 0.15s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(4) {
  animation-delay: 0.2s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(5) {
  animation-delay: 0.25s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(6) {
  animation-delay: 0.3s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(7) {
  animation-delay: 0.35s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(8) {
  animation-delay: 0.4s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(9) {
  animation-delay: 0.45s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(10) {
  animation-delay: 0.5s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(11) {
  animation-delay: 0.55s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(12) {
  animation-delay: 0.6s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(13) {
  animation-delay: 0.65s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(14) {
  animation-delay: 0.7s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(15) {
  animation-delay: 0.75s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(16) {
  animation-delay: 0.8s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(17) {
  animation-delay: 0.85s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(18) {
  animation-delay: 0.9s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(19) {
  animation-delay: 0.95s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(20) {
  animation-delay: 1s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(21) {
  animation-delay: 1.05s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(22) {
  animation-delay: 1.1s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(23) {
  animation-delay: 1.15s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(24) {
  animation-delay: 1.2s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(25) {
  animation-delay: 1.25s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(26) {
  animation-delay: 1.3s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(27) {
  animation-delay: 1.35s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(28) {
  animation-delay: 1.4s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(29) {
  animation-delay: 1.45s;
}
.block--faq-overview .faq-content .question-category.is-active ul li:nth-child(30) {
  animation-delay: 1.5s;
}

@media screen and (max-width: 767px) {
  .block--faq-overview .title-wrapper {
    margin-bottom: 40px;
  }
  .block--faq-overview .faq-content {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .block--faq-overview .faq-content:before {
    display: none;
  }
  .block--faq-overview .faq-content .tabs-wrapper {
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .block--faq-overview .faq-content .tabs-wrapper .tab {
    white-space: nowrap;
  }
  .block--faq-overview .faq-content .question-category ul li .question-link {
    padding-right: 40px;
  }
  .block--faq-overview .faq-content .question-category ul li .question-link .toggle-wrapper {
    bottom: unset;
    top: 15px;
  }
}
@keyframes itemFade {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/*# sourceMappingURL=block-faq.css.map */
