/* Faq block */
.faq-title {
	margin: 0;
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 18px;
}
.mh-room .faq-title {
	padding-bottom: 0;
	padding-top: 18px;
	font-size: 1.5rem;
}
.faq__block {
	background: #fafafa;
	border: solid 1px #e0e0e0;
	margin-bottom: 15px;
}
.faq__question {
	padding: 15px 40px 15px 20px;
	cursor: pointer;
	font-weight: bold;
	position: relative;
	color: #1a1a1a;
}
.faq__question:before {
	top: 18px;
	right: 21px;
	background: #e64946;
	width: 2px;
	height: 16px;
	content: '';
	position: absolute;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
	pointer-events: none;
}
.faq__question:after {
	background: #e64946;
	top: 25px;
	right: 14px;
	width: 16px;
	height: 2px;
	content: '';
	position: absolute;
	transition: all .2s;
	pointer-events: none;
}
.faq__answer {
	overflow-y: hidden;
	max-height: 0;
	background-color: #fff;
	transition: all .2s;
	box-shadow: inset 0 1px #e0e0e0;
}
.faq__answer p {
	padding: 15px;
	margin: 0;
}
.faq__block--open .faq__question:before {
	transform: rotate(-90deg);
}
.faq__block--open .faq__question:after {
	transform: rotate(180deg);
}
.faq__block--open .faq__answer {
	max-height: 1000px;
}
