/* Стили для печати */
@media screen {
    .none-d {
        display: none;
    }
}

@media print {
    html, body {
        height: 297mm;
        width: 210mm;
        margin: 0;
        -webkit-print-color-adjust: exact;
    }

    *, *:before, *:after {
        color: #000;
        box-shadow: none;
        text-shadow: none;
    }

    .test__category-result {
        page-break-inside: avoid;
    }

    .none-d {
        display: block;
        text-decoration: none;
    }

    @page {
        size: auto;
        margin: 5mm;
    }
}
