@media (max-width: 991px) {
    .transition_floating .ybc-menu-toggle.opened:before {
        background-color: rgba(0, 0, 0, 0.4);
        content: "";
        position: fixed;
        inset: 0;
        z-index: 10000;
    }
    .transition_floating .mm_menus_ul {
        bottom: 0;
        left: 0;
        max-width: 280px;
        overflow: auto;
        position: fixed;
        top: 0;
        z-index: 10000;

        opacity: 0.6;
        transform: translatex(-100%);
        -webkit-transform: translatex(-100%);
        transition: all 0.35s ease 0s;
        -webkit-transition: all 0.35s ease 0s;
        visibility: hidden;
    }
    .transition_floating .mm_menus_ul.active {
        opacity: 1;
        transform: translatex(0px);
        -webkit-transform: translatex(0px);
        visibility: visible;
    }
    .transition_floating .close_menu {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        text-align: center;
        width: 100%;
        cursor: pointer;
        /* font-size: 20px;
        font-weight: bold;
        line-height: 26px;
        text-transform: uppercase; */
    }
}