﻿
.show-mobile-only {
    display: none;
}

@media only screen and (max-width: 1200px) {
    .show-mobile-only {
        display: block;
    }

    .hide-mobile-only {
        display: none;
    }
}


@media only screen and (max-width: 480px) {
    .show-mobile-only {
        display: block;
    }

    .hide-mobile-only {
        display: none;
    }
}