.faq-list {
    max-width: 1200px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid #999;
    border-width: 1px 0;
    margin-bottom: 40px;
    position: relative;
}
.faq-question {
    position: relative;
    cursor: pointer;
    color: #01215D;
    font-size: 18px;
    line-height: 1.4;
    padding: 15px 50px 15px 52px;
    min-height: 25px;
    border-radius: 18px;
}
.faq-item.active .faq-question {
    font-weight: bold;
}
.faq-question .ic {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border: 1px solid #022463;
    background: #C2AF62;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
    font-weight: normal;
    position: absolute;
    top: 10px;
    left: 5px;
}
.faq-question .ic-accordion {
    display: block;
    width: 21px;
    height: 21px;
    line-height: 21px;
    text-align: center;
    border: 1px solid #022463;
    background: #C2AF62;
    color: #fff;
    position: absolute;
    right: 10px;
    top: 15px;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.faq-question .ic-accordion:before {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border: 1px solid #FFF;
    border-color: transparent transparent #FFF #FFF;
    margin: 4px 4px 6px 6px;
}
.faq-question:hover .ic-accordion,
.faq-item.active .faq-question .ic-accordion {
    background: #02225D;
}
.faq-item.active .faq-question .ic-accordion:before {
    border-color: #FFF #FFF transparent transparent;
    margin: 6px 6px 4px 4px;
}
.faq-answer {
    display: none;
    position: relative;
    padding-top: 14px;
}
.faq-answer .ic {
    width: 95px;
    height: 25px;
    background: #02225D;
    color: #D2B74C;
    font-family: 'Gentium Basic', serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: 0.15em;
    text-align: center;
    position: absolute;
    left: 34px;
    top: 0;
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -moz-transform-origin: top left;
    -webkit-transform-origin: top left;
    -o-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.faq-answer .ic:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 5px;
    border-color: transparent transparent transparent #fff;
    margin: 0 0 3px 8px;
}
.faq-answer .editor {
    background: #F0F0E1;
    padding: 20px 20px 20px 54px;
    min-height: 66px;
}
@media screen and (max-width: 500px) {
    .faq-question {
        padding-right: 5px;
        font-size: 16px;
        min-height: 22px;
    }
    .faq-question .ic {
        top: 8px;
    }
    .faq-question .ic-accordion {
        display: none;
    }
    .faq-answer .ic {
        left: 5px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .faq-answer .editor {
        padding: 25px 15px 20px;
    }
}