/* Mobile CSS Document */


/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
    /* Styles */
    .hidden-phone {
        display: none;
    }
    .visible-phone {
        display: block !important;
    }
    .development-phone {
        text-align: left !important;
    }
    .header {
        margin: auto;
        top: 0;
        width: 100%;
        z-index: 100000;
        position:relative;
    }
    .biam_head {
        display:none;
    }
    .sr-input {
        border: 1px solid #ddd;
        border-radius: 4px 0 0 4px;
        box-shadow: none;
        color: #8a8a8a;
        float: left;
        height: 30px;
        margin-top: -4px;
        padding: 0 115px 0 10px;
        width:170px;
    }
}

@media only screen 
and (min-device-width : 360px) 
and (max-device-width : 640px) {
    /* Styles */
    .hidden-phone {
        display: none;
    }
    .visible-phone {
        display: block !important;
    }
    .development-phone {
        text-align: left !important;
    }
}
@/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
    /* Styles */

}