@media only screen and (max-width: 600px) {
    .desktop {
        display: none !important;
    }
    .mobile {
        display: block !important;
    }
}
@media screen and (min-width: 601px) {
    .mobile {
        display: none !important;
    }
}