/*Extra small devices (portrait phones, less than 576px)*/
@media (min-width: 320px) and (max-width: 575px) {
    .container {
        /* max-width: 575px !important; */
    }
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        /* max-width: 767px !important; */
    }
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        /* max-width: 800px !important; */
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        /* max-width: 900px !important; */
    }

}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {

    .container {
        /* max-width: 1140px !important; */
    }
}

@media (min-width: 1800px) {

    .container {
        /* max-width: 1620px !important; */
    }
}

@media only screen and (max-width:767px) {
    .hidden-xs-only {
        display: none !important
    }
}

@media only screen and (min-width:768px) {
    .hidden-sm-and-up {
        display: none !important
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hidden-sm-only {
        display: none !important
    }
}

@media only screen and (max-width:991px) {
    .hidden-sm-and-down {
        display: none !important
    }
}

@media only screen and (min-width:992px) {
    .hidden-md-and-up {
        display: none !important
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hidden-md-only {
        display: none !important
    }
}

@media only screen and (max-width:1199px) {
    .hidden-md-and-down {
        display: none !important
    }
}

@media only screen and (min-width:1200px) {
    .hidden-lg-and-up {
        display: none !important
    }
}

@media only screen and (min-width:1200px) and (max-width:1919px) {
    .hidden-lg-only {
        display: none !important
    }
}

@media only screen and (max-width:1919px) {
    .hidden-lg-and-down {
        display: none !important
    }
}

@media only screen and (min-width:1920px) {
    .hidden-xl-only {
        display: none !important
    }
}

@media only screen and (max-width:1500px) {
    .hidden-lg15-and-down {
        display: none !important
    }
}

@media only screen and (min-width:1500px) {
    .hidden-lg15-and-up {
        display: none !important
    }
}
