#site-menu {
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 512;
    top: 0;
    _right: 0;
    bottom: 0;
    transform: var(--side-transform);
    background-color: #ffffff;
    transition: 750ms cubic-bezier(0.17, 0.84, 0.44, 1) all;
    font-family: var(--heading_font);
}

#site-menu[data-modal] {
    min-width: 480px;
    position: fixed;
    z-index: 512;
    height: auto;
    top: 10%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -100vh);
    transition: 750ms cubic-bezier(0.17, 0.84, 0.44, 1) all;
    font-family: var(--heading_font);
}

@media all and (max-width: 768px) {
    #site-menu[data-modal] {
        min-width: 320px;
    }
}

#site-menu[data-modal].show-nav {
    transform: translate(-50%, 10%);
}

#site-menu.show-nav {
    transform: translateX(0);
    box-shadow: 32px 0 32px rgba(0, 0, 0, 0.5);
}
.site-menu-content {
    padding: 48px;
}

#site-menu[data-modal] .site-menu-content {
    padding: 16px;
}

.site-menu-content > ul {
    padding: 0;
    margin: 0;
}
.site-menu-content ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.site-menu-content a {
    text-decoration: none;
}
.site-menu-content a:hover {
    text-decoration: none;
}
.site-menu-content ul li a {
    text-decoration: none;
}
body.no-scroll {
    overflow: hidden;
    height: 100vw;
}

#site-menu::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
#site-menu::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}
#site-menu::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    border: 0 none #ffffff;
    border-radius: 48px;
}
#site-menu::-webkit-scrollbar-thumb:hover,
#site-menu::-webkit-scrollbar-thumb:active {
    background-color: rgba(0, 0, 0, 1);
}
#site-menu::-webkit-scrollbar-track {
    border-radius: 48px;
}
#site-menu::-webkit-scrollbar-corner {
    background: transparent;
}
