.faq-list:before {
    content: '';
    display: block;
    background: url(../../images/common/faq/deco.png) no-repeat;
    width: 86px;
    height: 86px;
    margin: 0 auto 44px;
}
.faq-item {
    margin-bottom: 30px;
}
.faq-question {
    position: relative;
    background: url(../../images/common/faq/question_bg.png);
    border: 1px solid #E0DDCF;
    color: #ACAC9D;
    font-size: 15px;
    font-weight: bold;
    padding: 8px 44px 8px 24px;
    cursor: pointer;
    box-sizing: border-box;
}
.faq-item.active .faq-question {
    color: #E60404;
}
.faq-question:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 13px 0 0;
    border-color: #d90000 transparent transparent transparent;
    position: absolute;
    left: 3px;
    top: 3px;
}
.faq-question:after {
    content: "";
    background: url(../../images/common//faq/accordion.png) no-repeat #E70404;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 5px;
    top: 5px;
}
.faq-item.active .faq-question:after {
    background-position: 0 100%;
    background-color: #777;
}
.faq-question .icon {
    background-image: url(../../images/common/faq/icon_q.png);
    background-color: #95A8DE;
    width: 70px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}
.faq-answer {
    position: relative;
    display: none;
    color: #8B8B8B;
    padding: 15px 44px 0 24px;
}
@media screen and (max-width: 540px) {
    .faq-question {
        padding: 8px 10px 8px 18px;
    }
    .faq-question:after {
        display: none;
    }
    .faq-answer {
        padding: 15px 10px 0;
    }
}