.faq_section_title {
    font-weight: bold;
    padding-top: 12px;
    padding-bottom: 5px;
    padding-right: 15px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.faq_title {
    color: #fff;
    background-color: #b94f27;
    border: 1px solid #b94f27;
    border-radius: 4px;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 30px;
    padding-right: 15px;
    cursor: pointer;
    position: relative;
}

.faq_title:before,
.faq_title:after {
    content: '';
    width: 12px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 26px;
    transition: all 0.3s ease 0s;
}

.faq_title:before {
    transform: rotate(40deg);
    left: 5px;
}

.faq_title:after {
    transform: rotate(-40deg);
    left: 13px;
}

.faq_text {
    display: none;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 15px;
    padding-right: 15px;
    border: 1px solid #b94f27;
    border-radius: 0px;
    overflow: hidden;
}
.faq_text a {
    text-decoration: underline;
}
.faq_title.active {
    border-radius: 4px 4px 0 0;
}

.faq_title.active:before {
    transform: rotate(-40deg);
}

.faq_title.active:after {
    transform: rotate(40deg);
}

.rs-faq p {
    margin-bottom: 10px;
    margin-top: 10px;
}

.rs-faq label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}
.rs-faq .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.rs-faq .btn-color {
    background-color: #0089cf;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border: 1px solid transparent;
    padding: 6px 18px;
    white-space: normal;
    border-radius: 4px;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    transition: all .4s ease-out;
}
.rs-faq .btn-color:hover,
.rs-faq .btn-color:focus {
    background-color: #009ff0;
    color: #fff;
    outline: none;
}

.rs-faq .form-group {
    margin-bottom: 15px;
}
.rs-faq label a {
    color: #337ab7;
    text-decoration: none;
}


