.faq {
	background: #d6eef0;
}
.faq:hover {
	background-color: #d3d9dc;
}
.faq:hover .faq__i {
	background: var(--primary-variant) !important;
}
.faq:hover .faq__i::before,
.faq:hover .faq__i::after {
	background-color: #fff;
}
.faq:not(.active) .wp-editor {
	display: none;
}
.faq:not(:last-child) {
	margin-bottom: 20px;
}
.faq__q {
	min-height: 38px;
	line-height: 1.4;
	padding-right: 70px;
}
.faq__i {
	position: absolute;
	right: 0;
	border-radius: 6px;
	background: #fff;
	border: 2px solid black;
}
.faq__i::before,
.faq__i::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 16px;
	height: 2px;
	background: black;
}
.faq__i::after {
	transform: rotate(90deg);
}
@media (min-width: 768px) {
	.faq__i {
		top: 5px;
		width: 38px;
		height: 38px;
	}
}
@media (max-width: 767.98px) {
	.faq__i {
		top: 3px;
		width: 30px;
		height: 30px;
	}
}
.active .faq__i {
	background: #78878d;
}
.active .faq__i::before {
	z-index: 2;
	background: #fff;
}
.active .faq__i::after {
	display: none;
}
