/*------------ faq ------------*/

.faq-list li {
    cursor: pointer;
    position: relative;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    margin: 0 0 10px;
}

.faq-list li:before {
    content: "\e1019";
    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;
    font-size: 30px;
    text-align: center;
    line-height: 47px;
    z-index: 10;
    display: inline-block;
    margin: 0 20px;
    color: #1388ca;
    font-weight: bold;
}

.faq-question {
    color: #7d7d7d;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    padding: 0px 55px 15px 0;
    width: calc(100% - 95px);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    transition: all .2s;
}

.faq-question i {
    display: inline-block;
    text-align: center;
    font-size: 18px;
    position: absolute;
    right: 20px;
    top: 0;
    transition: all .2s;
    margin: 5px 0 0 0;
    color: #ccc;
    border: 1px solid #ddd;
    text-indent: 0px;
    width: 20px;
}

.faq-item:hover .faq-question,
.faq-item.active .faq-question{
    color: #222;
}

.faq-item.active .faq-question i{
    color: #fff;
    background: #ef8bae;
    border-color: #ef8bae;
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    position: relative;
    padding: 15px 20px;
    margin: 5px 0 5px 70px;
    background: #f5f5f5;
    color: #000;
}

.faq-answer:before{
    content: "\e1018";
    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;
    position: absolute;
    right: 100%;
    top: 0;
    font-size: 31px;
    margin: 0 18px 0 0;
    color: #cacaca;
}

.faq-answer .title {
    font-size: 45px;
    font-weight: bold;
}


/*------------ rwd ------------*/
@media screen and (max-width: 1100px) {
    .faq-answer{
    }
    .faq-list li:before{
        margin:0 8px;
    }
    .faq-answer:before{
        display: none;
    }
}
@media screen and (max-width: 900px) {
    .faq-answer {
        margin: 10px 0 0 0;
    }
}

@media screen and (max-width: 767px) {
    .faq-question {
        width: calc(100% - 40px);
        padding: 0;
    }
    .faq-list li:before {
        vertical-align: top;
        width: 30px;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
        margin: 0 0px 0 0;
    }
    .faq-question i {
        display: none;
    }
}
