.faqs {
	margin: 50px 0;
}

.faqs__faq {
	margin-bottom: 20px;
}

.faqs__faq__question {
	display: flex;
	align-items: center;
	font-weight: bold;
	cursor: pointer;
	padding: 15px;
	border: 1px solid #E8E8E8;
}

.faqs__faq:hover .faqs__faq__question {
	background-color: #F8F8F8;
}

.faqs__faq__question__chevron {
	background-image: url('../../images/faq-chevron.svg');
	background-size: 15px;
	width: 15px;
	height: 15px;
	margin-right: 20px;
	transition: all 0.5s ease;
}

.faqs__faq__answer {
	display: none;
	padding: 10px;
}

.faqs__faq__answer p:first-child {
	margin: 0;
}

.faqs__faq--active .faqs__faq__question__chevron {
	transform: rotate(90deg);
}

.faqs__faq--active .faqs__faq__answer {
	display: block;
}


