.menu-modal-wrapper {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0%;
    right: 0%;
    display: flex;
    justify-content: flex-end;
    z-index: 999999999999;
}

.menu-modal-wrapper-inner {
    overflow: hidden;
    width: 85%;
    height: 100%;
    background-color: #fff;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
    padding: 76px 20px;
    z-index: 9999;
}

.menu-modal-open-animation {
    animation-name: modal-start;
    animation-duration: 1s;
}

.menu-modal-close-animation {
    animation-name: menu-modal-close;
    animation-duration: 1s;
}

.menu-navbar-wrapper {
    width: 100%;
    font-size: 30px;
    line-height: 1.5rem;
    text-align: center;
}
.menu-navbar-wrapper > a {
    text-transform: uppercase;
    display: block;
    color: rgb(0, 0, 0);
}
.menu-navbar-wrapper > a:hover {
    color: rgba(80, 80, 80, 0.7);
}

.login-wrapperr {
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    font-size: 26px;
    padding-bottom: 30px;
    justify-content: center;
}

.login-wrapperr:hover {
    color: rgba(80, 80, 80, 0.7);
}

.modal-close-icon {
    position: absolute;
    width: 17px;
    height: 17px;
    top: 30px;
    right: 30px;
    opacity: 0.6;
    transition: opacity 250ms ease-in-out;
    cursor: pointer;
}

.modal-close-icon:hover {
    opacity: 1;
}