/* PowerSite 2.92 - MARR: FAQ's CSS */
/* Last Updated: 2021.05.19 ET */

@import url('marr_default.css');

ol.faqs {
	list-style: none;
	counter-reset: li;
	margin: 0;
	padding: 0;
}

ol.faqs > li {
	margin: 0 0 1.17rem 2em;
}

ol.faqs > li::before {
	content: counter(li) '.';
	counter-increment: li;
	float: left;
	margin-left: -2em;
}

.faqs-rb {
	display: none;
}

.question {
	cursor: pointer;
	display: block;
	color: rgb(96,113,159);
	font-weight: bold;
	font-style: italic;
}

.question:hover,
.faqs-rb:checked ~ .question {
	color: rgb(31,49,89);
}

.answer {
	display: none;
	padding-left: 1.17rem;
	padding-bottom: 0.5rem;
	border-left: 1px solid rgb(178,196,229);
	margin-top: 1.17rem;
}

.faqs-rb:checked ~ .answer {
	display: block;
}