/**
 * Page transition overlay
 * Extracted from fader.tpl inline styles
 * jQuery fadeIn/fadeOut replaced with CSS transitions
 * @author Markus <mw@easy-m.de>
 */

#page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

#page-overlay.ez-fader--active {
    opacity: 1;
    pointer-events: auto;
}