/*
 * DataTables sort icons.
 *
 * Further description available here:
 * https://datatables.net/blog/2014/font-awesome-integration#Sort-icons
 */

/* Idle / sortable arrows (default: 0.125) */
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order::before,
table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order::after {
    opacity: 0.4;
}

/* Active sort column arrow */
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order::before,
table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order::after {
    opacity: 1;
}
