@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {}


@media (width: 1280px) and (height: 800px) and (orientation: landscape) {}

@media screen and (width: 1024px) and (height: 1366px) and (orientation: portrait) {
    /* iPad Pro 12.9" Portrait */

}

@media (width: 1024px) and (height: 600px) and (orientation: landscape) {}


/* Mobile Responsive Filter Styles */
@media (max-width: 768px) {}

/* Desktop - Hide mobile dropdown */
@media (min-width: 769px) {}

@media only screen and (max-width: 600px) {

    .mob-screen {
        display: block;
    }

    .desk-screen {
        display: none;
    }

}

@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 420px) {}

@media only screen and (max-width: 344px) {}