/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.bina-faq {
    border-radius: 5px 5px 0 0;
}
.bina-faq .bf-question {
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    cursor: pointer;
}
.bina-faq .bf-question.even {
	background: #e7e7e7;
}
.bina-faq .bf-question.odd {
	background: #fcfcfc;
}
.bina-faq .bf-answer {
    display: none;
    background: #e9f0ff;
    padding: 10px 20px;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
}
.bina-faq .arrow {
    float: left;
    transition: transform 0.5s;
}
.bina-faq .arrow.arrow-open {
    transform: rotate(180deg);
}
/* search form */
.bf-search-input .col {
    display: flex;
}
.bf-search-input .find {
    width: 80%;
    box-shadow: unset !important;
    border-radius: 0 5px 5px 0;
}
.bf-search-input .button {
    width: 20%;
    border-radius: 5px 0 0 5px;
    background: #d71920 !important;
}
.bf-category {
    box-shadow: unset !important;
    border-radius: 5px;
}
@media only screen and (max-width: 767px){
    .bina-faq .bf-question {
        min-height: 60px !important;
    }
}