@media only screen and (max-width:480px) {
    .hide_on_mobile {
        display: none !important;
    }
}
@media only screen and (min-width:480px) {
    .show_on_mobile_only {
        display: none !important;
    }
}