<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.t-accordion-title{
    position: relative;
    cursor: pointer;
}

.t-accordion-title:after{
    border: 3px solid;
    border-radius: 2px;
    border-right: 0;
    border-top: 0;
    content: " ";
    display: block;
    height: .625em;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: rotate(-45deg);
    transform-origin: center;
    width: .625em;
    margin-top: -0.375em;
    right: 1.5em;
}

.t-accordion-active.t-accordion-title:after{
    transform: rotate(135deg);
}

.t-accordion-content{
    overflow: hidden;
    max-height: 0;
    height: auto;
    transition: max-height 0.2s ease-out;
}

@media screen and (max-width: 768px) {
    .t-accordion-title-mobile{
        position: relative;
        cursor: pointer;
    }

    .t-accordion-title-mobile:after{
        border: 3px solid;
        border-radius: 2px;
        border-right: 0;
        border-top: 0;
        content: " ";
        display: block;
        height: .625em;
        pointer-events: none;
        position: absolute;
        top: 50%;
        transform: rotate(-45deg);
        transform-origin: center;
        width: .625em;
        margin-top: -0.375em;
        right: 1.5em;
    }

    .t-accordion-active.t-accordion-title-mobile:after{
        transform: rotate(135deg);
    }

    .t-accordion-content-mobile{
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.2s ease-out;
    }

}
</pre></body></html>