.main-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #111;
    padding: 120px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: transform .18s ease;
    transform: translateX(100%);
    z-index: 1200;
}

.main-menu.is-open {
    transform: translateX(0);
}

html,
body {
    overflow-x: hidden;
}
@media(min-width:900px){
    .main-menu{
        width:360px;
    }
}

.main-menu a{

    color:white;

    text-decoration:none;

    font-size:1rem;

    letter-spacing:.18em;

    text-transform:uppercase;

}
#menuToggle {
    position: relative;
    z-index: 1300;
}

body.menu-open {
    overflow: hidden;
}
.main-menu__eyebrow {
    margin-bottom: 8px;

    color: rgba(255, 255, 255, .42);

    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.main-menu--admin a,
.main-menu .main-menu__number + span {
    min-width: 0;
}

.main-menu__number {
    display: inline-block;
    width: 28px;

    color: rgba(255, 255, 255, .32);

    font-size: .7rem;
    letter-spacing: .12em;
}

.main-menu__separator {
    width: 100%;
    height: 1px;

    margin: 6px 0 2px;

    background: rgba(255, 255, 255, .1);
}

.main-menu__portal {
    color: rgba(255, 255, 255, .6) !important;
}
.main-menu a[aria-disabled="true"] {
    opacity: .42;
    cursor: default;
}