﻿/* Print Style Sheet*/




@media print {

    html {
        font-size: 10px !important;
    }

    .noprint {
        display: none !important;
    }

    .text-light {
        color: black;
    }

    .bg-navy {
        background-color: red;
    }

    .print {
        visibility: visible;
    }

    .lg-print span.d-block {
        font-size: 2.5rem !important;
        line-height: 2.4rem !important;
    }



    /* Home Title Print Style Adjust */

    .home-title h1 {
        font-size: 3.6rem !important;
    }

    .home-title h3 {
        font-size: 3.0rem !important;
    }

    .home-title h3 span {
        font-size: 3.0rem !important;
    }

    .home-title h4 {
        font-size: 2.6rem !important;
    }

    .event {
        font-size: 1.0rem !important;
        -webkit-print-color-adjust: exact !important; /* Chrome, Safari, Edge */
        print-color-adjust: exact !important; /* Firefox, Safari 15.4+ */
    }
}


