/* TABLE OF CONTENTS
- Browsers under 1920px
- Browsers between 1680px and 1919.98px
- Browsers 1680px and larger
*/

/* BROWSERS UNDER 1920px */
@media (max-width: 1919.98px) {
.not-xxxl-under {
    display: none !important;
}
.block-xxxl-under {
    display: block !important;
}
.inline-xxxl-under {
    display: inline !important;
}
}

/* BROWSERS BETWEEN 1680px AND 1919.98px */
@media (min-width: 1680px) and (max-width: 1919.98px) {
.not-xxxl {
    display: none !important;
}
.block-xxxl {
    display: block !important;
}
.inline-xxxl {
    display: inline !important;
}
}

/* BROWSERS 1680px AND LARGER */
@media (min-width: 1680px) {
.not-xxxl-larger {
    display: none !important;
}
.block-xxxl-larger {
    display: block !important;
}
.inline-xxxl-larger {
    display: inline !important;
}
}