.faq-list {
    max-width: 1100px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 35px;
}
.faq-question {
    position: relative;
    background: #52A9A4;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 4px 35px 4px 60px;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: all .5s;
}
.faq-question .name{
    font-size: 18px;
    font-weight: normal;
    transition: all .5s;
}
.faq-question .ic {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 46px;
    background: #f5f5f5;
    color: #52A9A4;
    font-size: 25px;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
}
.faq-question:before {
    content: '\f067';
    display: block;
    font-family: 'icon-font' !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;
    background: rgba(255,255,255,0.4);
    color: #fff;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    right: 5px;
    transition: all .5s;
}
.faq-question:hover:before {
    background: rgba(255,255,255,0.1);
}
.faq-item.active .faq-question:before {
    content: '\f068';
}
.faq-answer {
    display: none;
    position: relative;
    overflow: hidden;
    padding-top: 20px;
}
.faq-answer .ic {
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    background: #777;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    top: 45px;
    left: 14px;
    font-family: 'Cormorant Garamond', serif;
}
.faq-answer .editor {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-height: 40px;
    padding: 20px 20px 20px 60px;
}
.faq-answer .editor:before {
    content: '';
    display: block;
    background: url('../../images/common/faq/answer_caret.png') no-repeat;
    width: 13px;
    height: 13px;
    position: absolute;
    top: -12px;
    left: 86px;
}
@media screen and (max-width: 600px) {
    .faq-item {
        margin-bottom: 20px;
    }
}