.faq-list {
    max-width: 1250px;
    margin: 0 auto;
}
.faq-item:before,
.faq-item:last-child:after {
    content: '';
    display: block;
    height: 1px;
    background: #929292;
    border: 1px solid #fff;
    border-width: 1px 0;
}
.faq-question {
    position: relative;
    color: #666666;
    font-size: 15px;
    min-height: 27px;
    padding: 32px 70px 32px 90px;
    cursor: pointer;
    transition: all 0.3s;
    background: #EDEDED;
}
.faq-item.active .faq-question,
.faq-item .faq-question:hover {
    color: #1F9EF2;
}
.faq-question:before {
    content: '';
    display: block;
    background: url('../../images/common/faq/icon_q.png') 0 100% no-repeat;
    width: 52px;
    height: 50px;
    position: absolute;
    top: 20px;
    left: 15px;
}
.faq-item.active .faq-question:before,
.faq-question:hover:before {
    background-position: 0 0;
}
.faq-question:after {
    content: '';
    display: block;
    background: url('../../images/common/faq/accordion.svg') 0 100% no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 30px;
    right: 25px;
}
.faq-item.active .faq-question:after,
.faq-item .faq-question:hover:after {
    background-position: 0 0;
}
.faq-answer {
    display: none;
    overflow: hidden;
    position: relative;
}
.faq-answer:after  {
    content: '';
    display: block;
    background: url('../../images/common/faq/icon_a.png') 0 100% no-repeat;
    width: 52px;
    height: 50px;
    position: absolute;
    top: 20px;
    left: 15px;
}
.faq-answer .editor {
    padding: 20px 70px 20px 90px;
    border-radius: 8px;
    color: #666666;
}

@media screen and (max-width: 600px) {
    .faq-question,.faq-answer .editor{
        padding: 20px 5px 20px 50px;
    }
    .faq-question:before,
    .faq-answer:after {
        background-size: 30px auto;
        width: 30px;
        height: 28px;
        left: 10px;
    }
    .faq-question:after{
        display: none;
    }
    .faq-item.active .faq-question {
        padding-bottom: 10px;
    }
    .faq-answer .editor {
        margin-left: 0;
    }
}