<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.faq-list {
    max-width: 1250px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px dashed #bbb;
}
.faq-question {
    position: relative;
    color: #000;
    font-size: 17px;
    min-height: 27px;
    padding: 32px 5px 32px 75px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.faq-item.active .faq-question {
    padding-bottom: 20px;
}
.faq-question:before {
    content: '';
    display: block;
    background: url('../../images/common/faq/accordion.png') no-repeat #999999;
    width: 53px;
    height: 53px;
    border-radius: 50px;
    position: absolute;
    top: 20px;
    left: 5px;
}
.faq-item.active .faq-question:before,
.faq-question:hover:before {
    background-color: #050601;
}
.faq-item.active .faq-question:before {
    background-position: 0 100%;
}
.faq-answer {
    display: none;
    overflow: hidden;
}
.faq-answer .editor {
    margin: 0 0 20px 75px;
    background:#f2f1f6;
    border-radius: 2px;
    padding: 15px 20px;
    color: #3d3d3d;
}

@media screen and (max-width: 600px) {
    .faq-question {
        padding: 23px 0 23px 40px;
    }
    .faq-question:before {
        background-size: 30px auto;
        width: 30px;
        height: 30px;
        left: 0;
    }
    .faq-item.active .faq-question {
        padding-bottom: 10px;
    }
    .faq-answer .editor {
        margin-left: 0;
    }
}</pre></body></html>