/* ~~~~~~~~~~~~~~~~~~~~ prsFAQPanel.cshtml ~~~~~~~~~~~~~~~~~~~~ */
.faq {
	position: relative;
}
.faq__section {
	padding: 3.2rem;
	box-shadow: 0 0 1.6rem var(--grey-color-100);
	border-radius: 0.8rem;
	margin: 0 0 1.6rem;
}
.faq__section:nth-last-child(1) {
	margin-bottom: 0;
}
.faq__section__title {
	font-size: 2rem;
	line-height: 2.4rem;
	margin: 0 0 1.6rem;
	padding: 0;
}
.faq__list {
	list-style: none;
	padding: 0;
}
.faq__item {
	border: 0.2rem solid var(--grey-color-100);
	display: flex;
	flex-direction: column;
	flex: 1;
	margin: 0.4rem 0;
}
.faq__item:hover,
.faq__item:hover .faq__body {
	border-color: var(--grey-color-200);
}
.faq__header {
	background-color: var(--grey-color-50);
	display: flex;
	cursor: pointer;
	user-select: none;
	padding: 0.8rem 1.6rem;
}
.faq__item:hover .faq__header {
	border-color: var(--grey-color-200);
	background-color: var(--grey-color-100);
}
.faq__title {
	margin: 0;
	padding: 0;
	height: auto;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2.4rem;
	min-height: 0;
	justify-self: flex-start;
	align-self: center;
	text-align: left;
}
.faq .grid.grid--row > .faq__toggle.grid__col.grid__col--auto {
	width: 3.2rem;
	height: 3.2rem;
}
.faq__body {
	border-top: 0.2rem solid var(--grey-color-100);
	font-size: 1.5rem;
	line-height: 2rem;
	margin: 0;
	font-weight: 400;
	padding: 1.6rem;
}
.faq__body p {
	margin-bottom: 1.6rem;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
}
.faq__body ul {
	list-style: disc;
	padding: 0 3.2rem;
	margin-bottom: 1.6rem;
}