/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 850px) {
    .header-bottom li{
        padding: 0 12px;
        margin: unset;
    }
    .header-bottom li.active{
        background-color: #000;
    }
    .header-bottom li.active a{
        color: #fff;
    }
    .header-bottom input{
        border: unset !important;
        background-color: unset !important;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}
