/*------------ faq ------------*/

.faq-list li {
    cursor: pointer;
    position: relative;
    padding: 10px 0 20px;
}

.faq-list li:before {
    content: "Q";
    font-family: 'Cabin', sans-serif;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    font-size: 25px;
    text-align: center;
    line-height: 47px;
    z-index: 10;
    display: inline-block;
    margin: 0 20px;
}

.faq-question {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
    position: relative;
    padding: 0px 75px 10px 0;
    width: calc(100% - 95px);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
}

.faq-question i {
    display: inline-block;
    text-align: center;
    width: 16px;
    height: 16px;
    line-height: 17px;
    font-weight: bold;
    border-radius: 50%;
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 50%;
    transition: all .2s;
    margin: -13px 0 0 0;
    text-indent: 0px;
}

.faq-answer {
    display: none;
    position: relative;
    padding: 20px 25px;
    margin: 15px 75px 0 90px;
}

.faq-answer .title {
    font-size: 45px;
    font-weight: bold;
}


/*------------ rwd ------------*/

@media screen and (max-width: 900px) {
    .faq-answer {
        margin: 10px 0 0 0;
    }
}

@media screen and (max-width: 767px) {
    .faq-question {
        width: calc(100% - 45px);
        padding: 0px 25px 0 0;
    }
    .faq-list li:before {
        width: 30px;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
        margin: 0 10px 0 0;
    }
    .faq-question i {
        right: 0;
    }
}
