﻿@media all and (max-width: 767px) {
    .show-on-large-only {
        display: none !important;
    }

    .hide-on-large {
        display: block !important;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .hide-on-medium {
        display: block !important;
    }

    .show-on-medium-only {
        display: none !important;
    }

    .show-on-small-only {
        display: block !important;
    }
}

@media all and (min-width: 768px) and (max-width: 1365px) {
    .show-on-large-only {
        display: none !important;
    }

    .hide-on-large {
        display: block;
    }

    .hide-on-medium {
        display: none !important;
    }

    .show-on-medium-only {
        display: block !important;
    }

    .show-on-small-only {
        display: none !important;
    }
}

@media all and (min-width: 1366px) {
    .show-on-large-only {
        display: block;
    }

    .hide-on-large {
        display: none !important;
    }

    .hide-on-medium {
        display: block !important;
    }

    .show-on-medium-only {
        display: none !important;
    }

    .show-on-small-only {
        display: none !important;
    }
}
