.burger {
    width: 25px;
    height: 0px;
    cursor: pointer;
    right: 2rem;
    top: 2rem;
    z-index: 20;
}

.burger span {
    width: 100%;
    height: 2px;
    background-color: black;
    border-radius: 12px;
    display: block;
    transition: background-color 0.2s ease-in-out;
}

.burger span::before,
.burger span::after {
    content: "";
    width: 100%;
    background-color: black;
    display: block;
    transition: all 0.2s ease-in-out;
    border-radius: 12px;
    height: 2px;
}

.burger span::before {
    transform: translateY(-7px);

}

.burger span::after {
    transform: translateY(7px);
    margin-top: -2px;
}

.burger.active span {
    background-color: transparent;
}

.burger.active span::before {
    transform: rotateZ(45deg) translateY(0);
}

.burger.active span::after {
    transform: rotateZ(-45deg) translateY(0);
}

.menu-opened {
    transition: all 0.3s ease-in, background 0.5s ease-in;
    transition-delay: 0.25s;
}

#menu-data ul.onecity-side-menu-mobile-parent li a {
    color: var(--e-global-color-875e7a6);
    font-family: var(--e-global-typography-primary-font-family);
    font-style: normal;
}

.no-scroll * {
    transition: all 0.3s ease-in;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
}

/* .no-scroll::before {
    position: absolute;
    height: 85vh;
    background: #000000;
    opacity: 0.4;
    content: "";
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 10;
} */

#menu-data {
    width: 100vw !important;
    height: 100vh;
    align-items: flex-start;
    max-width: 100vw;
    max-height: 85vh;
    right: 0px;
    overflow: auto;
    display: flex;
    position: fixed;
    z-index: 999;
    background: white;
    padding: 16px;
    justify-content: space-between;
    flex-direction: column;
    top: 13vh;
}

.menu-bars {
    padding: 16px;
    width: min-content;
}

ul.onecity-side-menu-mobile-parent li:not(.mobile-list) {
    list-style: none;
    padding: 10px 8px;
    display: flex;
    align-items: center;
    gap: 16px;
}

ul.onecity-side-menu-mobile-parent .mobile-list {
    list-style: none;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.more-div-mobile {
    padding: 16px;
    border: 1px solid var(--e-global-color-c501ac7);
    border-radius: 6px;
}

ul.onecity-side-menu-mobile-parent {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;

}

li.menu-action-item-hover:hover {
    background-color: var(--e-global-color-1065d64);
}

nav.onecity-side-menu-mobile-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.logout-div-mobile {
    width: -webkit-fill-available;
    /* border-top: 1px solid; */
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

#logout-mobile {
    padding: 10px 8px 24px 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--e-global-color-14507c9);
}

.seperator {
    border: 1px solid var(--e-global-color-752e732);
    width: 100%;
}

.blocker {
    z-index: 99999;
}

.onecity-side-menu-mobile-selected-item.menu-action-item-hover {
    background: var(--e-global-color-1065d64);
    border-left: 3px var(--e-global-color-0de8d0b) solid;
}

@media screen and (max-width: 768px) {
    body .medium-btn {
        width: 169px;
        padding: 11px 20px;
    }
}

@media screen and (max-width: 580px) {
    #menu-data {
        top: 11vh;
        max-height: 89vh;
    }
}