@media only screen and (max-width: 767px) {
    .hidden-xs-only-c {
        display: none !important
    }
}

@media only screen and (min-width: 768px) {
    .hidden-sm-and-up-c {
        display: none !important
    }
}

@media only screen and (min-width: 768px) and (max-width: 899px) {
    .hidden-sm-only-c {
        display: none !important
    }
}


@media only screen and (min-width: 900px) {
    .hidden-md-and-up-c {
        display: none !important
    }
}

@media only screen and (min-width: 900px) and (max-width: 1049px) {
    .hidden-md-only-c {
        display: none !important
    }
}


@media only screen and (min-width: 1050px) {
    .hidden-lg-and-up-c {
        display: none !important
    }
}

@media only screen and (min-width: 1050px) and (max-width: 1199px) {
    .hidden-lg-only-c {
        display: none !important
    }
}

@media only screen and (min-width: 1200px) {
    .hidden-xl-and-up-c {
        display: none !important
    }
}