.widget_bm_widget_menu_toggle {
    display: none;
}

@media screen and (max-width: 1199px) {
    .widget_bm_widget_menu_toggle {
        flex-grow: 1;
        display: flex;
        justify-content: end;
    }

    .bm-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
        background-color: #0000fe;
        color: white;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color .2s ease;
    }

    .bm-menu-toggle:hover {
        background-color: #0000b8;
    }

    .bm-menu-toggle svg {
        height: 20px;
        width: unset;
    }
}