.faq-list {
    margin-bottom: 15px;
}
.faq-item {
    border-bottom: 1px dashed #222;
    margin: 0 -40px;
    padding: 0 40px;
}
.faq-item.active {
    border-bottom: 0;
}
.faq-question {
    position: relative;
    cursor: pointer;
    color: #C5A36D;
    font-size: 16px;
    letter-spacing: 0.035em;
    padding: 18px 0 18px 36px;
    min-height: 32px;
}
.faq-item.active .faq-question {
    color: #fff;
}
.faq-question:before {
    content: '\e917';
    font-family: 'icon-font-42' !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;
    font-size: 0.8em;
    position: absolute;
    left: 5px;
    top: 26px;
}
.faq-question:hover:before {
    color: #fff;
}
.faq-item.active .faq-question:before {
    content: '\e918';
}
.faq-answer {
    display: none;
    position: relative;
    box-shadow: 0 0 5px 3px rgba(148,123,83,0.25);
    margin-bottom: 30px;
}
.faq-answer .editor {
    color: #797979;
    padding: 15px 25px;
}

@media screen and (max-width: 1000px) {
    .faq-answer .editor {
        padding: 15px 20px;
    }
    .faq-question {
    padding: 8px 0 8px 36px;
}
.faq-question:before {
    top: 15px;
}
}