﻿
/*
    Remove double arrows on data tables theads
*/

table.dataTable thead .sorting_asc::after {
    display: none;
}

table.dataTable thead .sorting_asc::before {
    display: none;
}

table.dataTable thead .sorting_desc::after {
    display: none;
}

table.dataTable thead .sorting_desc::before {
    display: none;
}

table.dataTable thead .sorting::after {
    display: none;
}

table.dataTable thead .sorting::before {
    display: none;
}

.sorting_disabled {
    border-top: none !important;
}

table.dataTable thead td {
    border-bottom: 2px solid #dedede;
}

table.dataTable tfoot th,
table.dataTable tfoot td {
    border-top: 2px solid #dedede;
}
