
/* 
    Created on : 11.10.2020, 15:17:53
    Author     : juergen kind
*/




/* Maus overlay für scrolling */

.disableMouseOverlay {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: calc(100vw);
        height: calc(100vh);
        border: 0px solid red;
        background: rgba(0,0,0,.5);
        z-index: 10320;
    }
.disableMouseOverlay.enabled {
        display: block;
        
}
    