/* MEDIA QUERIES */

/*  Device = Low Resolution Tablets, Mobiles (Landscape)Screen = B/w 481px to 767px */
@media (min-width: 575px) and (max-width: 768px) {
    .searchbar{
        margin-top: -40px;
        margin-left: 220px;
    }
    .searchbar:hover > .search_icon{
        margin-top: -25px !important;
    }
    #li-form-mobile{
        display:inline-block!important;
    }
    #li-form-mobile:hover{
        background-color: transparent !important;
    }
}
/* Device = Most of the Smartphones Mobiles (Portrait) Screen = B/w 320px to 479px */
@media (min-width: 320px) and (max-width: 575px) {
    .searchbar{
        display: none!important;
    }
    #li-form-mobile{
        display:inline-block!important;
    }
    #li-form-mobile:hover{
        background-color: transparent !important;
    }
}


/* Screen size tipo iPhone 5 portrait */
@media screen and (max-device-width: 480px) and (device-aspect-ratio: 40/71) and (-webkit-min-device-pixel-ratio: 2) {
    .searchbar{
        display: none!important;
    }
    #li-form-mobile{
        display:inline-block!important;
    }
    #li-form-mobile:hover{
        background-color: transparent !important;
    }
}
/* Screen size tipo iPhone 5 landscape */
@media (min-width: 320px) and (max-width: 575px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape){
    .searchbar{
        margin-left: 50px;
        margin-bottom: -55px;
    }
    .searchbar:hover > .search_icon{
        margin-top: -25px !important;
    }
    
    #li-form-mobile{
        display:inline-block!important;
    }
    #li-form-mobile:hover{
        background-color: transparent !important;
    }
}
/* Screen size tipo iPad Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .searchbar{
        margin-top: 15px;
        margin-left: 50px;
    }
    .searchbar:hover > .search_icon{
        margin-top: -25px !important;
    }
    
    #li-form-mobile{
        display:inline-block!important;
    }
    #li-form-mobile:hover{
        background-color: transparent !important;
    }
}