/*--- DataTAbles -----*/


/* Up arrow (::before) */
th.sorting::before,
th.sorting_asc::before,
th.sorting_desc::before {
    content: "\f062" !important; /* fa-sort-up */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    color: #000000 !important;
    font-size: 10px !important;
    right: 8px !important;  /* Left arrow */
    top: 18px !important;
}

/* Down arrow (::after) */
th.sorting::after,
th.sorting_asc::after,
th.sorting_desc::after {
    content: "\f063" !important; /* fa-sort-down */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    color: #000000 !important;
    font-size: 10px !important;
    right: 0px !important;   /* Right arrow */
    top: 18px !important;
}

th.sorting_asc::before {
    color: var(--primaryBlue) !important;
}

th.sorting_desc::after {
    color: var(--primaryBlue) !important;
}

.dataTables_length label {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.dataTables_length select {
    display: inline-block !important;
    width: auto !important;
    margin: 0 5px;
}

.dataTables_filter {
    position: relative;
}

/** COLORS **/

.page-item.active .page-link {
    background-color: #e6e6e6;
    border-color: var(--primaryBlue);
    color: var(--primaryBlue);
}