

/* Start:/local/templates/.default/components/bitrix/news.list/faq/style.css?17739457971200*/
.faq-support {
	display: grid;
	grid-template-columns: 1fr 1.65fr;
	gap: 40px;
}

.faq-support:not(:last-child) {
	margin-bottom: 24px;
	border-bottom: 1px solid var(--stroke_black);
	padding: 0 0 24px;
}

.faq-content {
	position: sticky;
	top: 90px;
	align-self: start;
	height: fit-content;
}

.faq-item {
	background-color: var(--grey_bg);
	border-radius: 12px;
	transition: all 0.3s ease;
	cursor: pointer;
	user-select: none;
}

.faq-questions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--white_text_black);
}

.faq-question p {
	margin-bottom: 0;
}

.faq-answer {
	margin-top: 16px;
	display: none;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #555558;
}

.theme-dark .faq-answer {
    color: #ffffff;
}

.faq-answer p {
	margin-bottom: 0;
}

.faq-answer p:not(:first-child) {
	margin-top: 16px;
}

.faq-item.open .faq-answer {
	display: block;
}

.faq-toggle svg {
	stroke: var(--fill_dark_light);
}

@media screen and (max-width: 767px) {
	.faq-support {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.faq-questions {
		gap: 8px;
	}
}

/* End */
/* /local/templates/.default/components/bitrix/news.list/faq/style.css?17739457971200 */
