/* #kt_content{
    min-height: 100vh;
} */

/* #kt_content{
    padding-top: 0;
}

#kt_content_container{
    padding-top: 50px;
} */

/* LOADER-----start */
#main-loader-full-light{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: transparent;
    font-size: 18px;
    color: white;
    padding:50px;
    text-align: center;
}

#loader-full-icon-light i{
    font-size: 52px;
    margin: 20px;
}
/* LOADER-----end */

.engage-toolbar{
    z-index: 9!important;
}

/* NOTY JS ----- start */
.noty_body{
    display: flex;
    align-items: center;
    justify-content: center;
}

.noty_layout{
    max-width: 250px!important;
}

.noty_bar{
    margin-top: 10px!important;
    border-radius: 3px;
}
/* NOTY JS ----- end */

/* RIGHT PANEL ----- start */
:root {
    --side-panel-width: 40%;
    --side-panel-background-color: black;
    --side-panel-font-color: white;
    --side-panel-border-color: #007BFF;
    --side-panel-border-width: 5px;
    --transition-speed: 500ms;
}

#side-right-panel {
    position: fixed;
    width: var(--side-panel-width);
    margin-right: calc(-1 * var(--side-panel-width));
    height: 100vh;
    overflow: scroll;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all var(--transition-speed) ease;
    border-left: var(--side-panel-border-width) solid var(--side-panel-border-color);
    background-color:white;
    top:0;
}

#side-right-panel.panel-is-open {
    margin-right: 0;
}

@media (max-width: 980px) {
    #side-right-panel {
        top: var(--toggle-button-mobile-size);
        margin-right: -100%;
        width: 100%;
    }
    #side-right-panel.panel-is-open {
        margin-right: 0%;
    }
}

#page-overlay-right-panel {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 2;
    opacity: 0;
    display: none;
    cursor: crosshair;
    top:0;
}

#page-overlay-right-panel.panel-is-open {
    display: inherit;
    opacity: 0.3;
}
/* RIGHT PANEL ----- end */