.faq_item {
	border: 1px solid rgba(0, 0, 0, .1);
	border-bottom: 0;
}

.faq_item:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.faq_item-header {
	padding: 20px 46px 20px 15px;
	font-size: 20px;
	line-height: 26px;
	font-weight: 500;
	cursor: pointer;
	position: relative;
}

.faq_item-header .material-symbols-outlined {
	position: absolute;
	right: 15px;
	top: calc(50% - 12px);
}

.faq_item .faq_item-header .material-symbols-outlined.down {
	display: block;
	transition: .2s;
}

.faq_item--active .faq_item-header .material-symbols-outlined.down {
	transform: rotate(180deg);
}

.faq_item-answer {
	display: none;
	padding: 0 15px 15px;
}

.faq_item--active .faq_item-answer {
	display: block;
}