.menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: var(--app-height);
    opacity: 0;
    z-index: -1;
    transition: all 0.2s ease-out;
}

.menu-wrapper.show {
    opacity: 1;
    z-index: 9999;
}

.menu-container {
    width: 100%;
    height: 100%;
    max-width: 1000px;
    background-color: transparent;
}

.menu-wrapper .menu-backdrop {
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.68);
    transition: all 0.2s ease-out;
}

.menu-wrapper .menu-backdrop.show {
    opacity: 1;
}

.menu-wrapper .menu-content-container {
    width: calc(100% * 3 / 4);
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgb(6 21 40 / 15%);
    transform: translateX(-100%);
    transition: transform 0.2s ease-out;
}

@media (min-width: 600px) and (max-width: 799px) {
    .menu-wrapper .menu-content-container {
        width: calc(100% * 1 / 2);
    }
}

@media (min-width: 800px) {
    .menu-wrapper .menu-content-container {
        width: calc(100% * 1 / 3);
    }
}

@media (min-width: 1000px) {
    .menu-container {
        margin: auto calc((100% - 1000px - 10px) / 2);
    }
}

.menu-wrapper .menu-content-container.show {
    transform: translateX(0);
}

.menu-content-container .menu-content {
    width: 100%;
    height: 100%;
}

.menu-content .menu-header {
    height: 50px;
}

.menu-header img {
    max-height: 45px;
    max-width: 100%;
}

.menu-content .menu-body {
    padding: 1.5rem 0;
    max-height: calc(100% - 100px);
    overflow: auto;
}

.menu-content .menu-body .menu-body--item {
    padding: 0.75rem;
    text-decoration: none !important;
    color: #4f4f4f;
}

.menu-body--item img {
    width: 30px;
    height: 30px;
}

@media (min-width: 750px) {
    .menu-body--item img {
        width: 35px;
        height: 35px;
    }
}

.menu-content .menu-footer {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
}

.menu-content .menu-close-button {
    top: 0;
    right: -50px;
    width: 50px;
    height: 50px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.4);
}
