﻿body {
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}



/*For all Mobile version Mobile View (Common) */
@media only screen and (min-width : 320px) and (max-width : 480px) {
    .mobile-displayNone {
        display: none;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .padding-leftRight-zero {
        padding-left: 15px;
        padding-right: 15px;
    }

    .padding-right-zero {
        padding-right: 15px !important;
    }

    .padding-left-zero {
        padding-left: 15px !important;
    }

    .mobile-width-fit-content {
        width: fit-content;
    }
}