/** all devices and responsive browser windows **/
@media screen and (max-width: 800px) {

}


/* smaller screen dropoff *******/
@media only screen and (max-width: 550px) {
    .le-search-side { width: 320px; }
    .le-search-right { width: 65%; }
}

/* iPhone Landscape ********/
@media only screen and (max-width: 480px) {
    .le-search-side { width: 300px; }
    .le-search-right { width: 65%; }
}

/* iPhone portrait *******/
@media only screen and (max-width: 320px) {
    .le-search-side { width: 250px; }
    .le-search-right { width: 55%; }
}