/* MOBILE ONLY */
.mobile-only {
    display: none !important;
}

/* DESKTOP ONLY */
.desktop-only {
    display: block;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }
}