/* Стили по-умолчанию*/
.faq-icon-minus {
  display: none;
}
.faq-text {
  display: none;
}

/* Показываем текст */
.faq.is-active .faq-text {
  display: block;
}

/* Меняем иконку */
.faq.is-active .faq-icon-minus {
  display: block;
}
.faq.is-active .faq-icon-plus {
  display: none;
}

.faq-item {
	margin-bottom: 10px;
}

.faq-header {
    padding: 10px 40px;
    border-radius: 6px;
    background-color: #f4f4f6;
    display: flex;
	flex-direction: row;
    gap: 15px;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
	margin-bottom: 10px;
	cursor: pointer;
}