.faq {
	margin-top: 20px;
}
.faq-item {

}

.faq-item-title {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	column-gap: 15px;
	padding: 12px 12px 12px 20px;
	background: #F8F8F8;
	border-radius: 10px;
	cursor: pointer;
}

.faq-item-title:hover .label {
	color: #A1C44E
}

.faq-item-title .label {
	flex-grow: 1;
	font-size: 16px;
	font-weight: 700;
	align-self: center;
	line-height: 1.2;
	transition: color 0.3s ease 0s;
}

.faq-item-title .toggle {
	flex-shrink: 0;
	display: block;
	width: 26px;
	height: 26px;
	border-radius: 100%;
	transition: transform 0.3s ease 0s;
}

.faq-item-title .toggle svg {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 100%;
}

.faq-item-text {
	display: none;
	padding: 20px;
	font-size: 14px;
	line-height: 1.6;
}

.faq-item + .faq-item {
	margin-top: 12px;
}

.faq-item.open .faq-item-title .toggle {
	transform: rotate(180deg);
}