@media print {
    @page {
        size: A4;
        /* DIN A4 standard, Europe */
        margin: 10pt;
    }
    html,
    body {
        width: 210mm;
        /* height: 297mm; */
        height: 282mm;
        font-size: 11px;
        background: #FFF;
        overflow: visible;
    }
    body {
        padding-top: 15mm;
    }
    .box-select {
        page-break-inside: avoid;
        /* page-break-after:auto; */
        box-shadow: none !important;
        margin-bottom: 1rem;
    }
    .box-select.selected {
        border-left: 10px solid grey;
    }
    .box-select button,
    .box-select img {
        display: none !important;
    }
}