/* Faq */
.faq__item {
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.faq__item.is-open {
  border-color: var(--light-grey-bg);
  background-color: var(--light-grey-bg);
}

.faq__header {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  user-select: none;
  padding: 12px 30px 12px 50px;
}

.faq__header:before,
.faq__header:after {
  content: '';
  width: 16px;
  height: 2px;
  background-color: var(--main-color);
  position: absolute;
  left: 16px;
  top: 23px;
}

.faq__header:after {
  transform: rotate(-90deg);
}

.faq__item.is-open .faq__header:after {
  display: none;
}

.faq__content {
  padding: 0 30px 23px 50px;
}

.faq__item:not(.is-open) .faq__content {
  display: none;
}

.faq__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .faq__header {
    padding-right: 15px;
  }

  .faq__content {
    padding-right: 15px;
    padding-left: 15px;
  }
}
/* ! Faq */