/*!
 * DataTables + Font Awesome integration
 * License: MIT - http://datatables.net/license
 */

/*
 * Sort styling
 */
table.dataTable thead th {
    position: relative;
    background-image: none !important; /* Remove the DataTables bootstrap integration styling */
}

    table.dataTable thead th.sorting:after,
    table.dataTable thead th.sorting_asc:after,
    table.dataTable thead th.sorting_desc:after {
        /*position: absolute;*/
        top: 0px;
        right: 8px;
        /*display: block;*/
        font-family: "Font Awesome 5 Free";
        opacity: 1
    }

    table.dataTable thead th.sorting:after {
        font-weight: 900; /* regular style/weight */
        content: "\f0dc";
        color: #ddd;
        font-size: 15px;
        padding-top: 0.12em;
    }

    table.dataTable thead th.sorting_asc:after {
        font-weight: 900; /* regular style/weight */
        content: "\f0de";
        font-size: 15px;
    }

    table.dataTable thead th.sorting_desc:after {
        font-weight: 900; /* regular style/weight */
        content: "\f0dd";
        font-size: 15px;
    }

div.dataTables_scrollBody table.dataTable thead th.sorting:after,
div.dataTables_scrollBody table.dataTable thead th.sorting_asc:after,
div.dataTables_scrollBody table.dataTable thead th.sorting_desc:after {
    content: "";
}

/* In Bootstrap and Foundation the padding top is a little different from the DataTables stylesheet */
table.table thead th.sorting:after,
table.table thead th.sorting_asc:after,
table.table thead th.sorting_desc:after {
    top: 3px;
    font-size: 15px;
}

/***Icon sort grid***********/
table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:before {
    content: "" !important;
    font-family: "Font Awesome 5 Free" !important;
}

/*table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
    content: "\f0dd" !important;
    font-family: "Font Awesome 5 Free" !important;
}*/
