.dataTables_wrapper .dataTables_processing {
    background-color: #f3f3f3;
}
.dataTables_processing.card {
    z-index: 10 !important;
}

.filter-loader,
.spinner-loading {
    border: 8px solid #d9e2fc;
    margin: 0 auto;
    border-radius: 50%;
    border-top: 8px solid #2c5fea;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

div.dataTables_wrapper div.dataTables_info { padding-top: 0 !important;}
.dataTable td { vertical-align: middle !important; }
.page-link { border: none !important; }
.dataTable th { font-weight: 700 !important; }
.dataTable thead tr th { border-top: none !important; }
.dataTable tfoot tr th { border-top: 3px solid #e3e6f0 !important; }
.table td { border: none !important; }
.table { padding-bottom: 14px !important; }
.table .btn-danger { border-color: #b53e30; background-color: #b53e30; }

.lf-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.lf-wrapper div:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.lf-wrapper div:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

@media (max-width: 1180px) {
    .lf-wrapper div:nth-child(1),
    .lf-wrapper div:nth-child(2) {
        flex: 100%;
        text-align: center !important;
        justify-content: center !important;
    }
    .pagination {
        justify-content: center !important;
    }
    .dataTables_info {
        padding-top: 1rem !important;
    }
    .dataTables_paginate {
        padding-top: 1rem !important;
    }
}