﻿/* ===== Screen (Normal View) ===== */
@media screen {
    .print-root {
        display: none;
    }
}

/* ===== Print View ===== */
@media print {

    body * {
        visibility: hidden;
    }

    .print-root,
    .print-root * {
        visibility: visible;
    }

    .print-root {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}
