/*
    remove the MK theme side-bar! We don't want it!
    We create our own app menus and then there is the main menu
*/
.mk_apps_sidebar_panel{
    display: none !important
}

/*
    Add drop-ddown shaddows to sub-menus for better visibility
*/
.o-dropdown--menu.dropdown-menu{
    -webkit-box-shadow: 1px 2px 8px 1px rgba(0,0,0,0.47); 
    box-shadow: 1px 2px 8px 1px rgba(0,0,0,0.47);
}

/* checkbox visibility fixes */
.form-check .form-check-input:not(:disabled), .form-check .form-check-input:not(:disabled) + label {
    border-color: #243742
}


/* Wizard stuff */
.o_fullscreen_wizard .modal-dialog {
    max-height: 100vh !important;  /* use full viewport height */
    height: 100vh !important;
    margin: 0;                     /* remove top/bottom margin */
}

.o_fullscreen_wizard .modal-content {
    height: 100%;
}

.modal-content {
    height: calc(100% - 60px);  /* adjust for header/footer */
    overflow: auto;
}


