/*==========  Desktop First Method  ==========*/

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

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
    header{
        padding: 10px 0 20px;
    }
    .headerMenu li {
        margin: 0 0 15px;
    }
    .headerMenu li:last-child{
        margin-bottom: 0;
    }
    .navbar-nav {
        margin: 20px 0 0;
    }
    .searchBar .form-group{
        width: 100%;
    }
    footer{
        text-align: center;
    }
    .socialLinks{
        float: none;
        margin-bottom: 5px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .btnSearch{
        padding: 0 20px;
    }
    .downloadBox a{
        float: none !important;
    }
    .downloadBox{
        text-align: center;
    }
    .track320{
        margin-bottom: 10px;
    }
    .jp-audio .jp-type-single .jp-time-holder{
        display: none;
    }
    .jp-volume-controls{
        right: 0;
        left: auto;
    }
}

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

}


/*==========  Mobile First Method  ==========*/

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

}

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

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .navbar-collapse.collapse{
        padding: 0;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .container {
        width: 980px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    .container {
        width: 1020px;
    }
    .mainContent{
        /*width: 720px;*/
    }
    .searchForm{
        /*width: 690px;*/
    }
}