/* print */

@media only print {
    @page {
        /*okraje kolem stranky:*/
        margin: 15mm;
        size: A4;
    }

    body {
        webkit-print-color-adjust: exact;
        max-width: 180mm;
        max-height: 245mm;
    }

        .print-panel ul {
            border: 1px solid #888 !important;
            width: 13mm;
            text-align: center;
            font-family: Arial;
            color: #000;
            padding: 0 4px;
            margin: 0;
        }

        .print-panel li {
            list-style: none;
            font-size: 12px;
            line-height: 9.20mm;
            border-bottom: 1px #666 solid !important;
            text-align: center;
            min-height: 9.20mm;
        }

            .print-panel li:last-child {
                border: none;
            }

        .print-panel div {
            width: 50px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: clip;
            border: 1px #666 solid !important;
        }

    @-moz-document url-prefix() {
        .print-panel div {
            width: 52px;
        }

        .print-panel ul {
            width: 14mm;
        }

        .print-panel li {
            line-height: 9.25mm !important;
            min-height: 9.25mm;
        }
    }

    /*pouze pro Chrome*/
    @media print and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {

        .print-panel.div {
            border: 1px solid #808080 !important;
        }
    }

        @media all and (-ms-high-contrast:none) {
            *::-ms-backdrop, .print-panel div {
                width: 52px;
            }

            *::-ms-backdrop, .print-panel ul {
                width: 52px;
                height: 390px;
            }

            *::-ms-backdrop, .print-panel li {
                line-height: 35px !important;
                min-height: 35px;
            }
        }
    }