/* -------------------------------------------- */
/* Bosch Extranet Relaunch 2017 */
/* Version: 1.3 */
/* -------------------------------------------- */
/* Created by @twotribes, Germany */
/* -------------------------------------------- */
/* Browser Scope: ALL */
/* StyleSheet Scope: PRINTING ONLY */
/* -------------------------------------------- */

/* !-------------------------------------------- */
/* !Sheet initialization */
/* !-------------------------------------------- */

@page {
    size: A4 portrait;
}

/* MS Edge + Safari do initial scaling too big, Chrome doesn't care */
html {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: top left;
            transform-origin: top left;
}

/* Firefox gets initial scaling right */
@-moz-document url-prefix() {
    html {
        transform: scale(1);
        transform-origin: top left;
    }
}

/* IE11 gets initial scaling right - sometimes */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    html {
        -webkit-transform: scale(1);
                transform: scale(1);
        -webkit-transform-origin: top left;
                transform-origin: top left;
    }
}

/* !-------------------------------------------- */
/* !Overlays */
/* !-------------------------------------------- */

.stage.overlay-active .ensemble:not(#ensemble_overlay) {
    display: none;
}

.stage.overlay-active #ensemble_overlay {
    position: static;
    background: none;
}

.stage.overlay-active #ensemble_overlay .actor {
    border: 1px solid #ccc;
    position: static;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
    margin-left: 0 !important;
}
