.faq-list {
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    border: 4px solid #FDD9A2;
    background: #FCF5E0;
    margin-bottom: 24px;
    border-radius: 18px;
    position: relative;
}
.faq-item.active {
    background: none;
}
.faq-item:after {
    content: '';
    display: block;
    background: url('../../images/common/faq/deco.png');
    width: 31px;
    height: 22px;
    position: absolute;
    right: -2px;
    bottom: -12px;
}
.faq-question {
    position: relative;
    cursor: pointer;
    padding: 15px 60px 15px 70px;
    font-size: 15px;
    border-radius: 18px;
    min-height: 24px;
}
.faq-question:before {
    content: '\e900';
    display: block;
    font-family: 'icon-font-43' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #11A6BC;
    font-size: 28px;
    position: absolute;
    right: 20px;
    top: 12px;
}
.faq-question:hover:before {
    color: #FF420D;
}
.faq-item.active .faq-question:before {
    content: '\e902';
}
.faq-question .icon,
.faq-answer .icon {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 15px;
    top: 5px;
}
.faq-question .icon {
    background-image: url('../../images/common/faq/icon_q.png');
}
.faq-answer .icon {
    background-image: url('../../images/common/faq/icon_a.png');
    left: 20px;
    top: 15px;
}
.faq-question:hover .icon,
.faq-item.active .faq-question .icon {
    background-position: 0 100%;
}
.faq-answer {
    display: none;
    position: relative;
    border-radius: 18px;
}
.faq-answer .editor {
    background: url('../../images/common/border_dot2_h.png') repeat-x;
    margin: 0 15px;
    color: #A5784A;
    font-size: 15px;
    line-height: 1.65;
    padding: 15px 0 15px 60px;
    min-height: 40px;
}
@media screen and (max-width: 600px) {
    .faq-question {
        padding: 10px 35px 10px 50px;
    }
    .faq-question:before {
        font-size: 18px;
        right: 10px;
    }
    .faq-question .icon,
    .faq-answer .icon {
        left: 10px;
        width: 30px;
        height: 30px;
        background-size: 30px auto;
    }
    .faq-answer .editor {
        margin: 0 10px;
        padding: 15px 0 15px 40px;
    }
}