


body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #FAFAFA;
    /*font: 12pt "Tahoma";*/
}
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.report {
    /*zoom: 0.8;*/
}
.report .page {
    width: 210mm;
    min-height: 350mm;
    margin: 1mm auto;
    border: 1px #D3D3D3 solid;
    border-radius: 5px;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    display: flex;
}
.report .wrap-container {
    width: 100%;
    margin: 1cm;
    display: flex;
    flex-direction: column;
}
.report .page-header, .report .page-footer {
    max-height: 3cm;
    padding: 5px 0px;
    bottom: 0;
}
.report .page-header, .report .page-footer {
    width: 100%;
    display: flex;
    flex: 1;
    align-items: flex-end;
}
.report .page-header {
    align-items: center;
    top: 0;
}
.report .page-body {
    padding-top: 0.5cm;
    padding-bottom: 0.5cm;
    flex: 1;
}
.report .page-footer {
}
.report .flex { flex: 1; }

@page {
    size: A4;
    margin: 0;
}
@media print {
    #windows-storage, .modal-backdrop, .hbox { display: none; }
    #print-content { display: block; }

    html, body {
        width: 210mm;
        height: 100%;
    }
    .page {
        margin: 0;
        border: initial;
        border-radius: initial;
        width: initial;
        box-shadow: initial;
        background: initial;
        page-break-after: always;
        border: none !important;
    }
    .report-title {
        background-color: #f0f0f0 !important;
    }
}

.report .block-container {
    width: 100%;
}

.report .flex-row {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.report .flex-row .r-column {
    flex: 1;
    padding: 7px;
    line-height: 1.3;
    border-right: 1px solid rgba(33,33,33,0.2);
    border-bottom: 1px solid rgba(33,33,33,0.2);
}
.report .flex-row .r-column:first-child {
    border-left: 1px solid rgba(33,33,33,0.2);
}
.report .flex-row .r-column:last-child {
    /*border-right: 1px solid transparent;*/
}
.report .flex-row:first-child .r-column {
    border-top: 1px solid rgba(33,33,33,0.2);
}
.report .flex-row:last-child .r-column {
    /*border-bottom: 1px solid transparent;   */
}

.report .r-column[flex=""],
.report .r-column[flex="1"] { min-width: 08.333%; }
.report .r-column[flex="2"] { min-width: 16.666%; }
.report .r-column[flex="3"] { min-width: 25.000%; }
.report .r-column[flex="4"] { min-width: 33.333%; }
.report .r-column[flex="5"] { min-width: 41.666%; }
.report .r-column[flex="6"] { min-width: 50.000%; }
.report .r-column[flex="7"] { min-width: 58.333%; }
.report .r-column[flex="8"] { min-width: 66.666%; }
.report .r-column[flex="9"] { min-width: 75.000%; }
.report .r-column[flex="10"] { min-width: 83.333%; }
.report .r-column[flex="11"] { min-width: 91.666%; }
.report .r-column[flex="12"] { min-width: 100.00%; }


.report .report-table {
    width: 100%;
}
.report .report-table thead {
    background-color: rgba(33,33,33,0.05);
}
.report .report-table td, .report .report-table th {
    padding: 4px;
    text-align: center;
}
.report .report-table td span, .report .report-table th span {
    font-size: 22px;
}
.report .report-table td.check {
    border: 1px solid rgba(33,33,33,0.3);
}
.report .report-title {
    padding: 8px 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    margin: 10px 0px;
    background-color: rgba(33, 33, 33, 0.12);
}
.report .h-space {
    display: block;
    width: 100%;
    padding: 5px;
}

.report pre {
    margin-bottom: 0;
    padding: 0;
    background: none;
    border: none;
}

.report .flex-row .r-column:first-child,
.report .flex-row:first-child .r-column,
.report .flex-row:last-child .r-column,
.report .flex-row .r-column,
.report .table.table-bordered,
.report .table>tbody>tr>td,
.report .table-bordered>tbody>tr>td,
.report .table-bordered>thead>tr>td {
    border-color: #000;
}
@media print {
    .report .flex-row .r-column:first-child,
    .report .flex-row:first-child .r-column,
    .report .flex-row:last-child .r-column,
    .report .flex-row .r-column,
    .report .table.table-bordered,
    .report .table > tbody > tr > td,
    .report .table-bordered > tbody > tr > td,
    .report .table-bordered > thead > tr > td {
        border-color: #000 !important;
    }
}