.faq {
	padding: 0;
	margin: 0;
	list-style: none;
}

.faq_item {
	border-radius: 4px;
	background-color: white;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 17px;
	/* box-shadow: 0 12px 24px -10px rgb(36 48 110 / 20%); */
}

.faq_item.active {
	box-shadow: 0 12px 24px -10px rgba(36,48,110,0.2);
}

.faq_item:last-child {
	margin-bottom: 0;
}

.faq_question_wrapper {
	padding-top: 11px;
	padding-bottom: 11px;
}

.faq_question {
	display: flex;
	align-items: center;
	font-size: 18px;
	line-height: 1.277778;
	font-weight: bold;
	min-height: 48px;
	position: relative;
	cursor: pointer;
	padding-right: 58px;
}

.faq_question:after {
	content: '';
	display: block;
	background-image: url(../../img/plus.svg);
	background-repeat: no-repeat;
	background-position: center;
	line-height: 48px;
	position: absolute;
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	text-align: center;
	color: var(--font-color);
}

.faq_answer {
	display: none;
	padding-bottom: 22px;
}

.faq_item.active .faq_answer {
	display: block;
}

.faq_item.active .faq_question {
	color: var(--light-blue);
}

.faq_item.active .faq_question:after {
	background-image: url(../../img/minus.svg);
}

.faq_section h2 {
	font-size: 24px;
	line-height: 1.29;
	margin-bottom: 15px;
}

@media (max-width: 767px) {
	.faq_question {
		font-size: 14px;
		line-height: 18px;
		text-align: left;
		padding-right: 18px;
		min-height: 0;
	}

	.faq_item {
		padding-left: 15px;
		padding-right: 18px;
	}

	.faq_question:after {
		background-size: 10px auto;
		width: 10px;
		height: 10px;
		top: 50%;
		transform: translateY(-50%);
	}

	.faq_question_wrapper {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.faq_answer {
		text-align: left;
	}
}
