.schema-faq {
	margin: 1rem auto;
}
.schema-faq .schema-faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	padding: 10px 0;
	position: relative;
	cursor: auto;
}
.schema-faq .schema-faq-question.has-answer {
	cursor: pointer;
}

.schema-faq .schema-faq-question.has-answer span {
	width: 90%;
}

.schema-faq .schema-faq-question.has-answer:after {
	content: "+";
	font-size: 1.8rem;
	transition: 0.3s ease;
	margin-right: 10px;
}

.schema-faq .schema-faq-question.has-answer.active:after {
	transform: rotate(45deg);
}

.schema-faq .schema-faq-answer{
	padding: 0;
	max-height: 0;
	overflow: hidden;
	margin: 0;
	cursor: auto;
	transition: 0.3s ease;
}

.schema-faq .schema-faq-answer.active{
	padding: 10px 0px;
}