.drawer {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 100vw;
    height: 100vh;
    z-index: 1040;
    transform: translateX(100%);
    transition: transform .25s ease-in-out;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, .08);
    box-shadow: -6px 0 20px rgba(0, 0, 0, .6);
    background: #1e1f25 !important;
}

.drawer.open {
    transform: translateX(0);
}

.drawer .close {
    text-shadow: none;
    color: rgba(255, 255, 255, .5);
    opacity: 1;
}

.drawer .close:hover {
    color: #fff;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1039;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease-in-out;
}

.drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}
