.buttonFilter{display: none;}
.buttonFilter span{display: none;}
@media (max-width: 768px) {
    .search_form_mobile_title{
        text-align: center;
        margin-bottom: 20px;
        font-size: 20px;       
    }
    .filters {
        height: 0px;
        opacity: 0;
        overflow: hidden;
        position: fixed;
        width: 100%;
        z-index: 1000;
        background-color: #fff;
        -moz-transition: all 1s ease;
        -webkit-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
        padding-top: 66px;
        top: 0;
    }
    .filters.open{
        height: 100vh;
        opacity: 1;
        -moz-transition: all 1s ease;
        -webkit-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
        padding-top:70px;
        
    }
    .open+.buttonFilter span{
        display: block;
        text-align: center;
        font-size: 26px;
        font-weight: 700;
        color: red;
    }
    .open+.buttonFilter img{display: none;}
    .buttonFilter{
        position: fixed;
        bottom: 8px;
        left: 8px;
        width: 50px;
        height: 50px;
        background-color: #FEF200;
        border-radius: 50px;
        box-shadow: 1px 2px 8px 1px rgba(0, 0, 1, 0.51);
        padding: 5px;
        z-index: 1001;
        display: block;
    }
    .buttonFilter img{
        border-radius: 50px;
        /*box-shadow: 1px 1px 3px 1px rgba(31, 31, 31, 0.1);*/
    }
    .openFilter{
        overflow: hidden;
    }
}