
/*
/* BUTTONS
/* ========================================== */

button, button:focus, 
.btn, .btn:focus {
    outline: 0;
    outline-style: unset !important;
    box-shadow: unset;
    transition: unset;
}


.btn-srch{
    background: -webkit-linear-gradient(
        rgb(21 87 153), 
        rgb(21 153 87)
    );  

    background: linear-gradient(
        to right, 
        rgb(21 87 153), 
        rgb(21 153 87)
    );
    
    border: 1px solid rgb(255 255 255);
    border-left: 1px solid rgb(21 94 146);
    color: rgb(255 221 15);
    padding: 14.24px 30px;
}



.btn-srch:hover,
.btn-srch:focus{
    color: rgb(255 255 255);
}

.btn-prv, .btn-vm{
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(
        to right,  
        rgb(21 87 153), 
        rgb(21 153 87)
    );

    background: -webkit-linear-gradient( 
        rgb(21 87 153), 
        rgb(21 153 87)
    );  

    background: linear-gradient(
        to right, 
        rgb(21 87 153), 
        rgb(21 153 87)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;

    padding: 10px 30px;
}

.btn-prv:hover, .btn-vm:hover,
.btn-prv:hover, .btn-vm:focus{
    border-image-source: linear-gradient(
        to right,  
        rgb(21 153 87), 
        rgb(21 153 87)
    );

    background: -webkit-linear-gradient( 
        rgb(21 153 87), 
        rgb(21 153 87)
    );  

    background: linear-gradient(
        to right, 
        rgb(21 153 87), 
        rgb(21 153 87)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fltr-btn{
    border-radius: 0px;
    padding: 10px 30px;
    font-size: 16px;
}

.btn-nxt{
    background: transparent;
    border: 2px solid rgb(21 153 87);
    color: rgb(21 153 87);
}
.btn-nxt:hover,
.btn-nxt:focus{
    background: rgb(21 153 87);
    color: rgb(255 255 255);
}

#toTop {
    background: url(../../images/icons/totop.png) 0 0 no-repeat rgb(22 22 22);
    box-shadow: 3px 1px 3px rgba(0, 0, 0, 0.22);
    display: none;
    width: 49px;
    height: 49px;
    overflow: hidden;
    position: fixed;
    right: 46% !important;
    bottom: 25%;
    z-index: 999;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
}
#toTop:hover{
    background: url(../../images/icons/totop.png) no-repeat 0 -57px rgb(218 18 26);
    outline: none;
}



@media only screen and (min-width: 768px){

   
    
    #toTop {margin-right: -45% !important;}
}

@media only screen and (max-width: 767.98px){
    

    #toTop {margin-right: -45% !important;}
}

@media only screen and (max-width: 576.98px){

    #toTop {margin-right: -45% !important;}
}