.show-on-mobile {
    display: none;
}

@media (max-width: 480px) {
    .show-on-mobile {
        display: block !important;
    }

    .show-on-desktop {
        display: none;
    }
}

