.grow-parent {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: auto;
}

#registrants_modal .border_table {
    flex-grow: 1;
    overflow: auto;
    max-height: 100%;
}

.print-table {
    width: 100%;
}

.print-table tr th {
    position: sticky;
    top: 0;
    color: #212529;
    background-color: #d5d5d5;
    z-index: 2;
    font-weight: 500;
}

.print-table tr th, .print-table tr td {
    font-size: 0.9rem;
    padding: 0.5rem;
    white-space: nowrap;
    vertical-align: baseline;
    text-align: center;
}

.print-table tr td:nth-child(1), .print-table tr td:nth-child(2) {
    text-align: start;
}

.print-table tr td {
    border: 0.001cm solid #dee2e6;
}

.print-table tr td:nth-child(4) {
    text-align: start;
    white-space: normal;
}

.print-table tr:nth-child(even) {
    background: #f6f6f6
}

.print-btn {
    color: #f4623a;
    padding: 0 0.5rem;
    border: 0;
    background: transparent;
}

.print-btn i {
    font-size: 1.1rem;
}

.print-btn:active {
    opacity: 50%;
}

.title {
    font-weight: bold;
    text-align: center;
    padding-bottom: 1.5rem;
    font-size: 1.25rem;
}

.print-table a {
    color: #212529;
    font-size: 0.9rem;
}

.print-table a i {
    color: #f4623a;
    font-size: 0.9rem;
}


@media print {
    @page {
        size: A4 portrait;
        margin: 1cm 0.5cm;
    }

    html, body {
        font-size: 12px;
    }

    *, *:before, *:after {
        box-sizing: border-box;
        font-family: Roboto;
    }

    @font-face {
        font-family: 'Roboto';
        src: URL('../font/Roboto-Regular.ttf') format('truetype');
    }

    .print-table tr th {
        border: 0.001cm solid #dee2e6;
        position: unset;
    }

    .print-table tr th, .print-table tr td {
        page-break-inside: avoid;
        font-weight: 100;
    }

    .print-table tr td:nth-child(1), .print-table tr td:nth-child(2) {
        text-align: start;
    }

    .print-table {
        border-collapse: collapse;
    }

    .title {
        font-weight: 400;
    }

    .d-print-none {
        display: none;
    }

    .border_table {
        border: 0;
        border-color: transparent;
    }
}