@media (min-width: 768px) {
    .changestatus.transition_floating .ybc-menu-toggle.opened:before {
        background-color: rgba(0, 0, 0, 0.4);
        bottom: 0;
        content: "";
        height: 100%;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 10000;
    }

    .changestatus.transition_floating .mm_menus_ul {
        bottom: 0;
        left: 0;
        max-width: max(280px, 25%);
        overflow: auto;
        position: fixed;
        top: 0;
        z-index: 10000;
    }

    .changestatus.transition_floating .close_menu {
        background: var(--color-grey-4c);
        color: var(--color-contrast);
        float: left;
        padding: 10px 15px;
        line-height: 20px;        
        display: block !important;
        font-size: 14px;
        font-weight: var(--font-weight-medium);
        text-align: center;
        width: 100%;
        cursor: pointer;
        max-height: 38px;
    }
    .changestatus .close_menu .icon-bar {
        background-color: var(--color-contrast)!important;
        height: 1px!important;
        margin: 3px 0 2px!important;


    }
    .changestatus .mm_menus_back_icon{
        border-left: 2px solid var(--color-contrast)!important;
        border-top: 2px solid var(--color-contrast)!important;
        height: 8px!important!;
        width: 8px!important!;
    }

    .changestatus.transition_floating .mm_menus_ul {
        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;
    }

    .changestatus.transition_floating .mm_menus_ul.active {
        opacity: 1;
        transform: translatex(0px);
        -webkit-transform: translatex(0px);
        visibility: visible;
    }
}

@media (max-width: 767px) {
    .transition_floating .ybc-menu-toggle.opened:before {
        background-color: rgba(0, 0, 0, 0.4);
        bottom: 0;
        content: "";
        height: 100%;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 10000;
    }

    .transition_floating .mm_menus_ul {
        bottom: 0;
        left: 0;
        max-width: 280px;
        overflow: auto;
        position: fixed;
        top: 0;
        z-index: 10000;
    }

    .transition_floating .close_menu {
        background: var(--color-grey-4c);
        color: var(--color-contrast);
        float: left;
        padding: 10px 15px;
        line-height: 10px;
        display: block !important;
        font-size: 14px;
        font-weight: var(--font-weight-medium);
        text-align: center;
        width: 100%;
        cursor: pointer;
        max-height: 28px;
    }    .changestatus .close_menu .icon-bar {
        background-color: var(--color-contrast)!important;
        height: 1px!important;
        margin: 3px 0 2px!important;


    }
    .changestatus .mm_menus_back_icon{
        border-left: 2px solid var(--color-contrast)!important;
        border-top: 2px solid var(--color-contrast)!important;
        height: 8px!important!;
        width: 8px!important!;
    }
    .changestatus .close_menu .icon-bar {
        background-color: var(--color-contrast) !important;
        height: 1px !important;
        margin: 3px 1px 2px !important;
    }
    
        .changestatus .mm_menus_back_icon {
            border-left: 2px solid var(--color-contrast) !important;
            border-top: 2px solid var(--color-contrast) !important;
            height: 8px !important !;
            width: 8px !important !;
        }

    .transition_floating .mm_menus_ul {
        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.ets-dir-rtl .mm_menus_ul {
        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.ets-dir-rtl .mm_menus_ul.active {
        opacity: 1;
        transform: translatex(0px);
        -webkit-transform: translatex(0px);
        visibility: visible;
    }
}