.faq-list {
    max-width: 1100px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 35px;
}
.faq-question {
    position: relative;
    color: #003F59;
    font-size: 17px;
    font-weight: bold;
    padding: 10px 35px 10px 60px;
    border-radius: 0px;
    /*overflow: hidden;*/
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: solid 1px #C8CFD7;
}
.faq-question:after{
    content: '';
    display: inline-block;
    width: 121px;
    height: 1px;
    position: absolute;
    background: #4B8DF8;
    left: 0;
    bottom: -1px;
}
.faq-question .ic {
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 0;
    background: #0059B2;
    color: #fff;
    font-size: 25px;
    text-align: center;
    line-height: 35px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: bold;
}
.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;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 4px;
    position: absolute;
    top: 7px;
    right: 5px;
    transition: all 0.3s ease;
    background: #e1e5ea;
    color: #4b8df8;
    line-height: 25px
}
.faq-question:hover:before {
    background-color: #ffffff;
}
.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: Roboto;
}
.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: 1000px) {
    .faq-question .ic{
        top: 12px;
    }
    .faq-question:before{
        top: 14px;
    }
}
@media screen and (max-width: 600px) {
    .faq-item {
        margin-bottom: 20px;
    }
}