.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.20);
}
.faq-item .icon {
    width: 36px;
    height: 36px;
    position: absolute;
    left: 20px;
}
.faq-question,
.faq-answer {
    position: relative;
}
.faq-question {
    cursor: pointer;
    color: #1E1E1E;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    background: rgba(0,0,0,0.05);
    padding: 25px 70px;
}
.faq-question:hover {
    text-decoration: underline;
}
.faq-item.active .faq-question {
    background: rgba(228,0,17,0.08);
}
.faq-question:after {
    content: " ";
    background: url(../images/faq/accordion.png) no-repeat;
    display: block;
    width:  36px;
    height: 36px;
    position: absolute;
    top: 18px;
    right: 20px;
}
.faq-item.active .faq-question:after {
    background-position: 0 100%;
}
.faq-question .icon {
    background-image: url(../images/faq/icon_q.png);
    top: 18px;
}
.faq-item.active .faq-question .icon {
    background-position: 0 100%;
}
.faq-answer {
    display: none;
    padding: 15px 20px 15px 70px;
}
.faq-answer .icon {
    background-image: url(../images/faq/icon_a.png);
    top: 14px;
}

@media screen and (max-width: 500px) {
    .faq-question,
    .faq-answer {
        padding: 15px 15px 15px 55px;
    }
    .faq-question:after {
        display: none;
    }
    .faq-item .icon {
        left: 10px;
    }
    .faq-question .icon {
        top: 10px;
}