.faq-container {
    /*color: #131313;*/
    /*font-size: 14px;*/
    padding: 15px;
    /*line-height: 1.5;*/
    background-color: #fff;
    /*margin-bottom: 5px;*/
}
.faq-header {
    padding: 10px 15px;
    background-color: #299ab3;
    text-transform: uppercase;
}
.faq-header .h3 {
    color: #fff;
    margin: 0;
    display: table;
    line-height: 27px;
    font-weight: bold;
    font-size: 16px;
}
.faq-header .h3 [class*=" icon-"] {
    display: table-cell;
    font-size: 20px;
    line-height: 27px;
    padding-right: 10px;
    vertical-align: middle;
}
.faq-question {
    font-weight: 700;
    cursor: pointer;
}
.faq-icon {
    background-color: #299ab3;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    height: 25px;
    line-height: 25px;
    margin-right: 10px;
    text-align: center;
    vertical-align: middle;
    width: 25px;
}
.faq-icon.opened {
    background-color: #2d2d2d;
}
.faq-question-col {
    display: table-cell;
}
.faq-answer {
    display: none;
    /*height: 0;*/
    /*-webkit-transform: scaleY(0);*/
    /*-moz-transform: scaleY(0);*/
    /*-o-transform: scaleY(0);*/
    /*-ms-transform: scaleY(0);*/
    /*transform: scaleY(0);*/

    /*-webkit-transform-origin: top;*/
    /*-moz-transform-origin: top;*/
    /*-o-transform-origin: top;*/
    /*-ms-transform-origin: top;*/
    /*transform-origin: top;*/

    /*-webkit-transition: all 0.26s ease-out;*/
    /*-o-transition: all 0.26s ease;*/
    /*-moz-transition: all 0.26s ease;*/
    /*-ms-transition: all 0.26s ease;*/
    /*transition: all 0.26s ease;*/
}
.faq-answer.showing {
    /*display: block;*/
    /*-webkit-transform: scaleY(1);*/
    /*-moz-transform: scaleY(1);*/
    /*-o-transform: scaleY(1);*/
    /*-ms-transform: scaleY(1);*/
    /*transform: scaleY(1);*/

    /*-webkit-transition: all 0.26s ease-out;*/
    /*-o-transition: all 0.26s ease;*/
    /*-moz-transition: all 0.26s ease;*/
    /*-ms-transition: all 0.26s ease;*/
    /*transition: all 0.26s ease;*/
}
@media all and (max-width: 500px) {
    .faq-heading {
        padding-left: 15px;
    }
}