<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.faq-title{
    padding: 12px 24px 12px 0px;
    border-top: 1px solid var(--color-black);
    position: relative;
    cursor: pointer;
}
.faq-title:after{
    content: '';
    background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" width="15.589" height="9.207" viewBox="0 0 15.589 9.207"&gt;&lt;path d="M2678.789,7783.1l-7.795-7.793,1.414-1.414,6.381,6.379,6.38-6.379,1.414,1.414Z" transform="translate(-2670.995 -7773.894)" fill="%23232323"/&gt;&lt;/svg&gt;');
    background-repeat: no-repeat;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    width: 17px;
    height: 14px;
    position: absolute;
    right: 24px;
    top: 25px;
    transition: transform 0.3s ease-in-out;
    transform-origin: center; /* Ensures rotation is centered */

}

.faq-title.active-faq:after{
    transform: rotate(180deg);
    transform-origin: center; /* Ensures rotation is centered */

}

.faq-content{
    display: none;
    padding-bottom: 24px;
}
</pre></body></html>