/* -----------------------------------------

	Brand AOE

	Override Mobile Styles


------------------------------------------*/

/* Switcher Class
-------------------------------------------*/


.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}


/*-----------------------------------------
				Mobile Styles
------------------------------------------*/

@media only screen and (max-width: 720px) {

    /* Switcher Class
    -------------------------------------------*/


    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    /* Global Elements
    -------------------------------------------*/

    html {
        position: relative;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        height: auto;
        overflow-y: scroll;
    }

    body {
        width: 100%;
        max-width: 100%;
        position: absolute;
        top: 0;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
        border-top: 0 solid transparent !important;
    }


}

