.ogs-v2-app-drawer {
    position: fixed;
    left: -70vw;
    top: 72px;
    bottom: 0px;
    width: 70vw;
    background-color: var(--COLOR_DEFAULT);
    z-index: 99997;
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.ogs-v2-app-overlay {
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9996;
    position: fixed;
    pointer-events: none;
    opacity: 0;
}

.ogs-v2-app-drawer>a {
    padding: 15px 20px 15px 20px;
}

.ogs-v2-app-drawer>a::before {
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--COLOR_SECONDARY);
    border-right: 2px solid var(--COLOR_SECONDARY);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 7px);
    right: 16px;
    content: "";
}

.ogs-v2-app-drawer.active {
    left: 0px;
}

.ogs-v2-app-overlay.active {
    pointer-events: auto;
    opacity: 1;
}