﻿@media print {
    .hide-on-print {
        display: none !important;
    }

    .print-only-display-flex {
        display: flex !important;
    }

    .print-only-display-block {
        display: block !important;
    }

    .print-only-title {
        font-weight: 600;
        font-size: xx-large;
    }

    .pdf-hr {
        background: black !important;
        height: 2px !important;
        width: 100% !important;
    }

    print-body {
        border: none !important;
    }

    h2 {
        line-height: 1.5 !important;
    }

    @page {
        size: auto;
        margin: 20mm 20mm 20mm 20mm;
    }

    .no-page-break {
        page-break-inside: avoid;
    }

    .pdf-banner {
        padding: 0 20px;
    }
}

@media screen {
    .pdf-banner {
        display: none;
    }
}
