.shop-link {
    position: absolute !important;
    top: 15px;
    right: 90px;
}

#menu {
    background-color: var(--main-active);
    width: 500px;
    position: fixed;
    top: 0;
    z-index: 10;
    height: calc(100vh);
    border: none;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,.065);
    right: -500px;
    transition: right .4s ease;
}

#menu-trigger {
    right: 0;
    top: 0;
    left: auto;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    text-align: center;
    position: fixed;
    cursor: pointer;
    background-color: #fff;
    color: #222;
}

#menu-trigger .close{
    display: none;
}

#menu.open {
    right: 0;
}

#menu.open #menu-trigger .open {
    display: none;
}

#menu.open #menu-trigger .close {
    display: inline;
    z-index: 2;
}

#menu .menu-wrap {
    padding-top: 50px;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

#menu .primary-menu {
    margin-bottom: 30px;
    flex-grow: 0;
    width: 100%;
}

#menu .menu-container {
    list-style: none;
    margin: 0;
    display: block;
    height: auto;
    width: 100%;
    padding-left: 5rem;
    text-align: left;
}

#menu .menu-item {
    padding-top: 1rem;
}

#menu .current .menu-link {
    opacity: 0.5 !important;
}

#menu .menu-link div{
    font-size: 30px;
    line-height: 1;
    height: auto;
    text-transform: none;
    transform: translate3d(200px, 0, 0);
    opacity: 0;
    will-change: transform;
    transition: all 250ms ease-in 0s;
    text-decoration: none;
}

#menu.open .menu-link div{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: all 500ms ease-out 0.3s;
}


#menu.open .menu-item:nth-child(1) div {
    transition-delay: 0.0s;
}
#menu.open .menu-item:nth-child(2) div {
    transition-delay: 0.2s;
}
#menu.open .menu-item:nth-child(3) div {
    transition-delay: 0.3s;
}
#menu.open .menu-item:nth-child(4) div {
    transition-delay: 0.4s;
}
#menu.open .menu-item:nth-child(5) div {
    transition-delay: 0.5s;
}
#menu.open .menu-item:nth-child(6) div {
    transition-delay: 0.6s;
}
#menu.open .menu-item:nth-child(7) div {
    transition-delay: 0.7s;
}

@media (max-width: 500px)  {
    #menu {
        width: 100vw;
    }
    #menu .menu-container {
        padding-left: 1rem;
    }
}
