.faq-item{
    margin-bottom: 20px;
}
.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item .icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 15px;
    left: 10px;
}
.faq-question,
.faq-answer {
    position: relative;
    padding: 15px 20px 15px 60px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 0px;
}
.faq-question {
    cursor: pointer;
    color: #333;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    padding-right: 50px;
    min-height: 22px;
    transition: all .3s;
}
.faq-question:hover  , .faq-item.active .faq-question{
    color: #ae7e25;
}
.faq-item.active .faq-question {
   
}
.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;
    background: #ffffff;
}
.faq-answer .icon {
    background-image: url('../../images/common/faq/icon_a.png');
}
.faq-answer .editor {
    min-height: 20px;
    font-size: 17px;
    font-weight: 500;
}

@media screen and (max-width: 480px) {
    .faq-question,
    .faq-answer {
        padding-left: 55px;
        padding-right: 15px;
    }
    .faq-question:after {
        display: none;
    }
}