﻿/**** NJHRE-577  locations google map on mobile***/
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
    .show-on-mobile-only {
        display: block;
    }

    .show-on-desktop-only {
        display: none;
    }
}

@media only screen and (min-device-width: 569px) {
    .show-on-mobile-only {
        display: none;
    }

    .show-on-desktop-only {
        display: block;
    }
}