@media print {
    body * {
        visibility: hidden;
        /* 크롬, 사파리 등 WebKit 기반 브라우저 */
        -webkit-print-color-adjust: exact !important;

        /* 표준 속성 (Firefox 등) */
        print-color-adjust: exact !important;
    }

    #print-area {
        visibility: visible !important;
        position: relative;
        display: block !important;
        width: auto !important;
        left: 0;
        top: 0;
        margin-top: -90px;
        max-height: none !important;
        /*height:3200px !important;*/
        overflow: visible !important;
        break-inside: auto;
        height: auto !important;
    }

    #print-area * {
        visibility: visible;
    }

    #print-area .break-page {
        break-inside: avoid;
    }

    .btn_top {
        display: none;
    }

    .highcharts-scrollbar {
        display: none;
    }

    .tc_wrap, .ji_wrap {
        break-inside: avoid;
        break-after: auto
    }

    /*table { break-inside:avoid; }*/
    tr {
        break-inside: avoid;
        break-after: auto
    }

    td {
        break-after: auto
    }

    thead {
        display: table-header-group
    }
}