@media print
{    
    * {transition: none !important}

    .no-print, .no-print *
    {
        display: none !important;
    }

    body, body * 
    {
        background-color: white;
    }

    #main_content {
        background-color: white;
        background-image: none;
    }

    .NodeItem {
        background-color: white !important;
        border: 2px solid rgb(7, 7, 131);
        -webkit-print-color-adjust: exact !important;   /* Chrome, Safari 6 – 15.3, Edge */
        color-adjust: exact !important;                 /* Firefox 48 – 96 */
        print-color-adjust: exact !important;           /* Firefox 97+, Safari 15.4+ */
    }

    .designButton {
        display: none !important;
    }

    input::placeholder {
        display: none !important;
        color: white;
    }

    #main-content {
        background-color: transparent;
    }

    #main_title {
        background-color: transparent;
    }
    
    #sub_title {
        background-color: transparent;
    }

    #webex_logo {
        z-index: 5000;
    }
    
}