.rootmenu {
    position: unset;
}
.rwshow {
    display: block !important;
}
.rw-menu-wrapper {
    z-index: 27;
    position: sticky;
}
.rw_menu_icon {
    top: -55px;
}
@media (max-width:768px) {
    .rootmenu-slide {
        position: fixed;
        left: 0px;
        top: 0;
        display: none;
        height: 100%;
        width: calc(100% - 50px);
        overflow-y: auto;
        overflow-x: hidden;
    }
}


.rw_menu_close::before {
    content: '';
    width: 50px;
    height: 100%;
    display: inline-block;
    background: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    right: 0;
    transform: translate(0px, 0px);
    transition: 0.4s all ease;
    opacity: 1;
    backdrop-filter: blur(5px);
}
.rw_menu_close.hidden::before {
    transform: translate(50px, 0px);
    transition: 0.4s all ease;
    opacity: 0;
}
