﻿@media only screen and (max-width: 799px)
{
    .ub-hide-on-mobile
    {
        display: none;
    }
}
@media only screen and (min-width: 800px) and (max-width: 1023px)
{
    .ub-hide-on-tablet
    {
        display: none;
    }
}
@media only screen and (min-width: 1024px)
{
    .ub-hide-on-desktop
    {
        display: none;
    }
}