/*------------ faq ------------*/
.faq-list {
    margin: 80px auto 0;
}
.faq-list li {
    cursor: pointer;
    margin: 0 0 20px;
}
.faq-list .title {
    text-align: center;
    font-size: 20px;
    width: 40px;
    vertical-align: middle;
    font-weight: bold;
    color: #3D5930;
    background: #D1E06B;
    display: table-cell;
    font-family: 'Istok Web', sans-serif;
}
.faq-question {
    color: #335F1D;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.75;
    position: relative;
    width: 100%;
    background: #FAF5F1;
    box-sizing: border-box;
    display: table;
}
.faq-question i {
    display: inline-block;
    color: #9B9B8C;
    text-align: center;
    font-size: 33px;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 50%;
    margin: -15px 0 0 0;
}
.faq-question .name {
    vertical-align: middle;
    width: calc(100% - 85px);
    display: table-cell;
    padding: 7px 15px;
}
.faq-list li.active .faq-question,
.faq-list li:hover .faq-question {
    background: #CDA074;
    color: #fff;
    font-weight: normal;
}
.faq-list li:hover .faq-question .title,
.faq-list li.active .faq-question .title {
    color: #C7D84C;
    background: #577135;
}
.faq-answer {
    display: none;
    background: #FAF5F1;
    padding: 20px 0;
    color: #8B8B8B;
    position: relative;
    border-top: 1px solid #fff;
}
.faq-answer .title {
    display: inline-block;
    background: transparent;
}
.faq-answer .title span {
    border-color: #fff;
    margin: 10px auto;
}
.faq-answer .editor {
    display: inline-block;
    vertical-align: top;
    margin: 0px 0 0 15px;
    color: #353535;
    width: calc(100% - 70px);
}
/*------------ rwd ------------*/
@media screen and (max-width: 1100px) {
    .faq-list {
        margin: 0 auto;
    }
}
@media screen and (max-width: 480px) {
    .faq-answer .editor {
        margin: 0;
        width: calc(100% - 55px);
    }
}
