.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}
.faq-list li+li{
    border-top: 1px solid #CBCBCA;
}
.faq-item .icon {
    width: 36px;
    height: 36px;
    position: absolute;
    left: 20px;
    top: 20px;
}
.faq-question,
.faq-answer {
    position: relative;
    padding: 25px 20px 25px 80px;
}
.faq-answer {
    position: relative;
    padding: 20px 20px 20px 80px;
}
.faq-question {
    cursor: pointer;
    color: #1E1E1E;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
    background: rgba(0,0,0,0.05);
    padding-right: 50px;
}
.faq-item.active .faq-question {
    background: rgba(228,0,17,0.08);
}
.faq-question:after {
    content: " ";
    background: url(../images/qa.png) right top no-repeat;
    display: block;
    width:  36px;
    height: 36px;
    position: absolute;
    top: 20px;
    right: 15px;
}
.faq-item.active .faq-question:after {
    background-position: 100% 100%;
}
.faq-question .icon {
    background-image: url(../images/qa.png);
}
.faq-item.active .faq-question .icon {
    background-position: 0 100%;
}
.faq-answer {
    display: none;
}
.faq-answer .icon {
    background-image: url(../images/answer.png) ;
}

@media screen and (max-width: 480px) {
    .faq-question,
    .faq-answer {
        padding-left: 70px;
        padding-right: 15px;
    }
    .faq-question:after {
        display: none;
    }
}