/**
 * Faq
 * =========================================== */
.faq-questions {
	padding-top: 18px;
}
.faq-questions__title {
	font-weight: 400;
	color: #000;
	font-size: 16px;
	margin: 0 0 11px;
}
.faq-question {
	font-size: 13px;
}
.faq-question:not(:last-child) {
	border-bottom: 1px solid #e7e8ec;
}
.faq-question.open {
	background-color: #f1f1f1;
}
.faq-question__link {
	padding: 12px 15px 12px;
	display: block;
	position: relative;
}
.faq-question__link:before {
	left: 0;
	top: 12px;
	content: '-';
	color: #ced7e0;
	font-size: 14px;
	position: absolute;
}
.faq-question.open .faq-question__link {
	font-weight: bold;
}
.faq-question.open .faq-question__link:before {
	color: transparent;
}
.faq-question__link:focus {
	text-decoration: none;
}
.faq-question__answer {
	display: none;
	padding: 0 15px;
	line-height: 1.5;
}