/*--------------------------------------------Print--------------------------------------------*/

@media print {
        * {
                -webkit-print-color-adjust: exact !important;   /* Chrome, Safari */
                color-adjust: exact !important;                 /*Firefox*/
        }
    
}

input#PDF { 
        position: absolute;
        right: 50px;
        background: darkred;
        color: white;
        cursor: pointer;
        font-size: 90%;
        z-index: 999;
}

input#PDF:hover {
        background: rgb(180 2 18);
}

@media only screen and (max-width: 900px) {
        input#PDF { 
            display: none;
        }
}