.faq-list {
    max-width: 1100px;
    margin: 0 auto;
}
.faq-item .faq-question .icon {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 10px;
    left: 10px;
}
.faq-question {
    position: relative;
    padding: 15px 20px 15px 80px;
    margin-bottom: 5px;
}
.faq-question {
    cursor: pointer;
    color: #856A5B;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    padding-right: 50px;
    min-height: 50px;
}
.faq-question .name{
    font-size: 18px;
}
.faq-question:hover,
.faq-item.active .faq-question {
    color: #EB4C52;
}
.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 0%;
}
.faq-item .faq-answer .icon {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
}
.faq-answer {
    display: none;
    background:#FCF8F1;
    position: relative;
    margin-bottom: 5px;
    padding: 75px 15px 15px 60px;
}
.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{
        padding-left: 75px;
        padding-right: 15px;
    }
    .faq-answer {
        padding-left:20px;
    }
    .faq-question:after {
        display: none;
    }
}