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

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

.faq__header {
  position: relative;
  cursor: pointer;
  font-size: 12px;
  line-height: 15px;
  font-weight: 800;
  user-select: none;
  padding: 14px 30px 14px 55px;
  text-transform: uppercase;
}

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

.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 */