.faq-item{
    margin-bottom: 15px;
}
.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item .icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    left: 10px;
}
.faq-question,
.faq-answer {
    position: relative;
    padding: 15px 20px 15px 80px;
    border: 1px solid #80CAA5;
    margin-bottom: 5px;
}
.faq-question {
    cursor: pointer;
    color: #7FCAA5;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7;
    background: #F2FAF6;
    padding-right: 50px;
    min-height: 22px;
}
.faq-question:hover {
    text-decoration: underline;
}
.faq-item.active .faq-question {
    background: #80CAA5;
    color: #fff;
}
.faq-question:after {
    content: " ";
    background: url('../../images/common/faq/accordion.png') no-repeat;
    display: block;
    width:  30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
}
.faq-item.active .faq-question:after {
    background-position: 0 100%;
}
.faq-question .icon {
    background-image: url('../../images/common/faq/icon_q.png');
}
.faq-item.active .faq-question .icon {
    background-position: 0 100%;
}
.faq-answer {
    display: none;
}
.faq-answer .icon {
    background-image: url('../../images/common/faq/icon_a.png');
}
.faq-answer .editor {
    min-height: 20px;
}

@media screen and (max-width: 480px) {
    .faq-question,
    .faq-answer {
        padding-left: 55px;
        padding-right: 15px;
    }
    .faq-question:after {
        display: none;
    }
}