nav {
    position:fixed;
    top:0;
    left:0;
    width:100%;

    
    text-align:center;
    display: flex;
    flex-direction: column;
    z-index:4;
}

.siteNav li {
    flex:1 1 auto;
    display:flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    line-height:48px;
}

@media screen and (min-width: 1025px) {
    .shopNav {
        text-align:center;
        border:1px solid #fff;
        margin:0 0 0 30px;
        padding:6px 12px;
    }
}

@media screen and (max-width: 1024px) {
    #nav {
        position: fixed;
        left:-200vw;
    }

    nav  {
        height:100vh;
        background: rgba(0,0,0,.7);
        padding:60px 0 0;
        left:-200vw;
        max-height:0;
        overflow: hidden;
        transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
    }

    #nav:checked + nav {
        left:0;
        max-height:120vh;
    }

    .burger {
        width:60px;
        height:60px;
        display: flex;
        /*background:rgba(0,0,0,.3);*/
        position: fixed;
        top:0;
        right:0;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        flex-direction: column;
        z-index: 4;
    }

    .burger:before {
        content:'';
        display: inline-block;
        margin:0 0 2px;
        width:20px;
        height:20px;
        /*background:#fff;*/
        background-image: url('../i/burger.svg');
        background-size: cover;
        filter:invert(100%);
    }
    
    .siteNav li {
        min-height:10vh;
        padding: 10px 0;
    }
}

.siteNav a {
    text-decoration: none;
    line-height:32px;
    display: block;
    width:100%;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,.6);
}

.siteNav li:hover {
    /* background:rgba(0,0,0,.2); */
}

@media screen and (min-width: 1025px) {
    #nav, .burger {
        display: none;
    }

    nav {
        max-width:66vw;
        width: 600px;
        margin:0 auto;

        position: fixed;re
        text-align: right;

        top:40px;
        right:60px;
        left:auto;
        /* transform: translateX(-50%); */
    }

    .siteNav {
        display:flex;
    }

    .mobileOnly {
        display: none!important;
    }
}

@media screen and (min-width: 1025px) {
    #hideOnScroll {
        transition: all .3s ease-in-out;
        opacity: 1;
    }
    .hide #hideOnScroll {
        opacity: 0;
    }
    #logo.hide {
        width:180px;
        top:20px;
    }
}