<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
.faq-question{
    position: relative;
    padding: 23px;
    box-sizing: border-box;
    vertical-align: middle;
    transition: all .2s;
    cursor: pointer;
    background: #fff;
    z-index: 5;
}
.faq-question .name{
    color: #333333;
	margin: 0;
    font-size: 18px;
    letter-spacing: 0;
    font-weight: normal;
}
.faq-question:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: #fff;
	display: block;
    border:solid 1px #CCCCCC;
	transition: all ease .2s;
	z-index: -1;
}
.faq-item{
	z-index: 2;
	position: relative;
    margin-bottom: 15px;
}
.faq-item:before{
	content: '';
	top: -6px;right: -6px;
	left: -6px;bottom: -6px;
	background: rgba(0,169,92,0.2);
	border-radius: 6px;
	position: absolute;
	z-index: -1;
	opacity: 0;
	transition: all ease .2s;
}
.faq-item:hover .faq-question,
.faq-item.active .faq-question{
}
.faq-item:hover .faq-question:after,
.faq-item.active .faq-question:after{
	border:solid 3px #00A95C;

}
.faq-item:hover:before,
.faq-item.active:before{
	opacity: 1;

}
.faq-answer{
    position: relative;
    padding: 23px;
    background: #00A95C;
    color: #FFFFFF;
    font-size: 16px;
    display: none;
}
.faq-answer .editor{
	color: #FFFFFF;
    font-size: 16px;
}</pre></body></html>