/* Default: visible only on desktop */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none !important;
}

/* Media query for mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}