
/* Mobile screens */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}


/* Hide by default (desktop & tablet) */
.mobile-only {
    display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-only {
        display: inline-block;
    }
}