/* 
    Created on : 28. 12. 2021, 16:23:04
    Author     : Tomas Bradle
*/


@charset 'UTF-8';




@page {
    margin: 0;
    /*size: portrait;*/
    size: A5;
}

.print-content {
    width: 525px;
    height: 742px;
    
}

@media screen {
    
    .strong {
        font-weight: bold;
    }
    
    .print-content {
        font-size: 12px;
        /*padding: 31px;*/
        padding: 16px;
    }
}

@media print {
    
    .strong {
        font-weight: bold;
    }
    
    .print-content {
        display: block;
        width: 21cm;
        height: 29.7cm;
        border: 0 none !important;
        padding: 1.25cm;
    }
    
    .no-print, 
    .no-print * {
        display: none !important;
    }
    
}



