﻿div.mobileOnly {
    display: none;
}

@media only screen and (max-width: 991px) {
    div.mobileOnly {
        display: block;
    }
}
