*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
  }

body {
    background-color: #fff;
}

    *:focus {
       outline: none!important;
    }


#mobile-nav {
    display: none;
}

.mobile-promo {
    display: none;
}

.zmags-container {
    max-width: 1250px!important;
    margin: auto;
    height: auto;
    background: #fff!important;
}

/* Header wrapper: flexbox ordering for banner position */
#header-wrapper {
    display: flex;
    flex-direction: column;
}

#header-banner { order: 1; width: 100%; }
#desktop-nav { order: 2; }
#mobile-nav { order: 3; }


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

    body {
        padding: 0 20px;
    }

    #mobile-nav {
        display: block;
        order: 1;
    }

    #header-banner {
        order: 2;
    }

    #desktop-nav {
        display: none;
    }

    .mobile-promo {
        display: block;
    }

    .desktop-promo {
        display: none;
    }

    .zindex {
        z-index: 130!important;
    }

    .sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 120!important;
        }

    .layer-two{
        z-index: 11!important;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
            }

  }