.faq-list {
    background: #f1f1f1;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px 50px 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.faq-list:before {
    content: '\e929';
    display: block;
    font-family: 'icon-font-41' !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: 56px;
    color:#37008C;
    text-align: center;
}
.faq-item {
    border: 1px dotted #4e4e4e;
    border-width: 1px 0;
    margin-top: 30px;
}
.faq-item .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 54px;
}
.faq-question {
    position: relative;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 0.05em;
    padding: 13px 40px 13px 60px;
    min-height: 28px;
}
.faq-item.active .faq-question {
    color:#1DA5CC;
}
.faq-question:before {
    content: '\e904';
    font-family: 'icon-font-41' !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: #aaa;
    font-size: 22px;
    position: absolute;
    right: 5px;
    top: 15px;
}
.faq-question:hover:before {
    color: #F99B39;
}
.faq-item.active .faq-question:before {
    content: '\e905';
}
.faq-question .icon {
    background-image: url('../../images/common/faq/icon_q.png');
}
.faq-answer .icon {
    background-image: url('../../images/common/faq/icon_a.png');
}
.faq-answer {
    display: none;
    position: relative;
    background: #fff;
}
.faq-answer .editor {
    padding: 50px;
}

@media screen and (max-width: 1000px) {
    .faq-list {
        padding: 20px 15px 25px;
        margin: 0 -15px;
    }
    .faq-item {
        margin-top: 25px;
    }
}
@media screen and (max-width: 600px) {
    .faq-question {
        font-size: 16px;
        padding: 13px 35px 13px 40px;
    }
    .faq-answer .editor {
        padding: 50px 20px 40px;
    }
}