table.dataTable tr.column-search-row,
table.dataTable tr.sum-total-row {
    display: none;
}

table.dataTable tr.column-search-row td {
    position: relative;
}

table.dataTable tr.column-search-row td select,
table.dataTable tr.column-search-row td input {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.dt-container {
    position: relative;
}

.dt-container .dt-processing {
    z-index: 2;
    position: static !important;
    margin: 0 !important;
}

.dt-container .processing-container {
    position: sticky;
    width: 100%;
    top: 50vh;
    display: flex;
    justify-content: center;
}

.dt-container .processing-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 48px 0 rgba(0, 0, 0, 0.1);
}

.dt-container .processing-backdrop.shown {
    display: block;
}

.dt-container .processing-container .processing-wrapper {
    padding: 1em 0;
    width: 200px;
    align-items: center;
}


table.dataTable tbody > tr.row-selected,
table.dataTable tbody > tr > .row-selected {
    background-color: rgba(2, 102, 253, 0.15);
}

table.dataTable.table-striped tbody > tr:nth-of-type(2n+1).row-selected,
table.dataTable.table-striped tbody > tr:nth-of-type(2n+1) > .row-selected {
    background-color: rgba(2, 102, 253, 0.2);
}

table.dataTable tr td.select-checkbox::before {
    content: "\f0c8" !important;
    font-family: "Font Awesome 6 Free", serif;
    font-size: .9em;
    border: none !important;
}

table.dataTable tr.row-selected td.select-checkbox::before {
    content: "\f14a" !important;
}

table.dataTable tbody > tr.data-row-clickable {
    cursor: pointer;
}

table.dataTable tbody > tr.data-row-clickable:hover {
    background-color: rgba(2, 102, 253, 0.1) !important;
}

table.dataTable:not(.vertical-align-top) tbody tr td {
    vertical-align: middle;
}

table.dataTable thead th.select-all-checkbox,
table.dataTable tfoot th.select-all-checkbox {
    text-align: center;
    font-size: 1.1em;
}

table.dataTable thead th.select-all-checkbox {
    padding-right: .5rem !important;
}

table.dataTable th.dt-type-date,
table.dataTable th.dt-type-numeric {
    text-align: left !important;
}

.table td, .table th {
    padding: .5rem;
}


.dt-container .dropdown-item.forever-inactive:not(:hover):not(:active) {
    color: #212529 !important;
    background-color: transparent !important;
}

.dt-container .btn-group .dt-button-collection {
    left: 0 !important;
}

.dt-container .bool-wrapper {
    display: flex;
    justify-content: center;
}

.dt-container .table-horizontal-scroll {
    overflow-x: auto;
}


table.dataTable {
    margin-bottom: 0;
}

.dt-container .table-actions-container {
    display: flex;
    align-items: flex-end;
}

table.dataTable.break-words {
    word-wrap: break-word;
    word-break: break-word;
}

table.dataTable th > .col-name-hidden {
    display: none;
}