    /* ===============================================
    PRINT
    ================================================== */
    @media print
    {
        /* 
        CONFIG VALUES
        ================================================== */
        :root
        {
            --theme-fs:                     1.4rem;

            --theme-lh:                     2.8rem;
            --theme-lh-x0-125:              0.35rem;
            --theme-lh-x0-25:               0.7rem;
            --theme-lh-x0-33:               0.93rem;
            --theme-lh-x0-5:                1.4rem;
            --theme-lh-x0-66:               1.86rem;
            --theme-lh-x0-75:               2.1rem;
            --theme-lh-x1-5:                4.2rem;
            --theme-lh-x2:                  5.6rem;
            --theme-lh-x3:                  8.4rem;

            --theme-lh-minus:               -2.8rem;
            --theme-lh-x0-125-minus:        -0.35rem;
            --theme-lh-x0-25-minus:         -0.7rem;
            --theme-lh-x0-33-minus:         -0.93rem;
            --theme-lh-x0-5-minus:          -1.4rem;
            --theme-lh-x0-66-minus:         -1.86rem;
            --theme-lh-x0-75-minus:         -2.1rem;
            --theme-lh-x1-5-minus:          -4.2rem;
            --theme-lh-x2-minus:            -5.6rem;
            --theme-lh-x3-minus:            -8.4rem;
        }
        
        
        /* 
        STYLE SETTING
        ================================================== */
        *
        {
            color-adjust: exact; -webkit-print-color-adjust: exact; print-color-adjust: exact;
        }
            
        .container
        {
	       width: 100%;
	       max-width: 93%;
        }
        
        .pagebreak
        {
            clear: both;
            page-break-after: always;
        }
    }


    /* ===============================================
    PAGE SETTING
    ================================================== */
    @page
    {
        margin: 5mm;
    }