<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.accordion-item {
	display: flex;
	flex-direction: column;
	padding: 2em 0;
	background-color: transparent;
	border: 0;
	border-bottom: 1px solid #707070 !important;
	border-radius: 0 !important;
}
.item-header {
	justify-content: space-between;
	align-items: center;
	padding-right: 40px;
	cursor: pointer;
}
.item-header h3 {
	margin: 0;
	align-items: center;
}
.item-condition {
	position: absolute;
	width: 50px;
	height: 30px;
	right: 0;
	color: #0476C8;
	font-size: 25px;
	line-height: 1;
	text-align: center;
}
.item-condition i {
	transform: scale(2);
}
.accordion-item.collapsed .item-condition {
	transform: rotate(180deg);
}
.item-content {
	height: 0;
	opacity: 0;
	-ms-transition: all 0.3s ease-out;
     transition: all 0.3s ease-out;
}
.accordion-item.collapsed .item-content {
	position: relative;
	padding-top: 2em;
	height: auto;
	opacity: 1;
}
.accordion-item a {
	font-family: 'Mont-Bold', sans-serif;
}
@media only screen and (max-width: 768px) {
	.accordion-item { padding: 15px 0; }
}
@media only screen and (max-width: 480px) {
.item-condition i { transform: scale(1); }
}</pre></body></html>