.super-drawer {
    z-index: 2147483647;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    transition: visibility var(--duration-default) ease;
}

.super-drawer.root {
    position: fixed;
}

.super-drawer .drawer__overlay {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.35);
}

.super-drawer .drawer__content {
    position: absolute;
    height: 100%;
    width: fit-content;
    max-width: 100vw;
    padding: 0;
    border: 0.1rem solid rgba(var(--color-foreground), 0.2);
    border-right: 0;
    background-color: rgb(var(--color-background));
    display: block;
    overflow: hidden;
    left: auto;
    right: -100%;
    transition: right var(--duration-default) ease-in-out;
}

.super-drawer.hidden {
    visibility: hidden;
}

.super-drawer.active {
    visibility: visible;
}

.super-drawer.active .drawer__overlay {
    display: block;
}
.super-drawer.active .drawer__content {
    right: 0;
}