/*dataTable's custom css*/

table.dataTable {
    margin-top: -5px !important;
    margin-bottom: 0 !important;
    background-color: #f4f4f4;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
}

.head_row {
    background-color: #e9e9e9;
}

.head_row th:first-child {
    border-radius: 10px 0 0 0;

}

.head_row th:last-child {
    border-radius: 0 10px 0 0;
}

.dataTables_length {
    color: black;
    margin-left: 5px;
}

.dataTables_length label {
    margin-bottom: 0;
}

.dataTables_wrapper {
    padding: 0 !important;
}

.custom-table tbody tr:hover td, .custom-table tbody tr:hover th {
    background-color: #E8EEF1;
}

.dataTables_processing.card {
    border: none !important;
    background: transparent !important;
}

.last_column {
    width: 1px !important;
    white-space: nowrap;
}

.text-truncate-col {
    width: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bottom {
    background-color: #e9e9e9;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #cecece;
    padding: 4px;
}

.dt-right {
	text-align: right;
}

.dt-center {
	text-align: center;
}

th.dt-head-right {
	text-align: right;
}

th.dt-head-center {
	text-align: center;
}

td.dt-body-right {
	text-align: right;
}

td.dt-body-center {
	text-align: center;
}

th.dt-head-single-line, td.dt-body-single-line {
	white-space: nowrap;
}

td.td-vertical-center {
    vertical-align: middle !important;
}

th.dt-single-line, td.dt-single-line {
	white-space: nowrap;
}

th.dt-vertical-center {
	vertical-align: middle!important;
}

@media (max-width: 1199px) {
    .bottom {
        flex-direction: column;
    }
}
