﻿@media only screen and (max-width: 576px) {
    #smallMobile {
        display: block;
    }
    #largeMobile {
        display: none;
    }

}
@media only screen and (min-width: 577px) {
    #smallMobile {
        display: none;
    }

    #largeMobile {
        display: block;
    }
}