table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    *cursor: hand;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    background-repeat: no-repeat;
    background-position: center left
}

table.dataTable thead .sorting {
    background-image: url("/img/sort_both.png");
}

table.dataTable thead .sorting_asc {
    background-image: url("/img/sort_asc.png");
}

table.dataTable thead .sorting_desc {
    background-image: url("/img/sort_desc.png");
}

table.dataTable thead th {
    outline: none;
}

table.dataTable tr:hover {
    cursor: pointer !important;
    background-color: #f5f5f5;
}

table.dataTable thead tr.empty .sorting_asc {
    background-image: none !important;
}

/*
 * Control feature layout
 */

.dataTables_wrapper .dataTables_paginate {
    width: 100%;
    background: #FFFFFF;
    padding: 7px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: center;
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: 6px 9px;
    margin-left: -1px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    *cursor: hand;
    line-height: 1.42857143;
    color: inherit;

}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #FFFFFF;
    background-color: #129978;
    cursor: default;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    color: #777777;
    background-color: #FFFFFF;
    cursor: not-allowed;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: #129978;
    background-color: #eeeeee;
    border-color: #ddd;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    color: #129978;
    background-color: #eeeeee;
    border-color: #ddd;
}

.dataTables_wrapper .dataTables_paginate {
    color: #333;
}

.dataTables_wrapper:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
}

.grid-view table.dataTables td:nth-child(2), .grid-view table.dataTables td:nth-child(3) {
    padding-left: 21px !important;
}

.dataTable .child {
    background: #E9EAEC !important;
    color: #2E414C;
}


@media screen and (max-width: 767px) {
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        float: none;
        text-align: center;
    }

    .dataTables_wrapper .dataTables_paginate {
        margin-top: 0.5em;
    }
}

@media screen and (max-width: 640px) {
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        float: none;
        text-align: center;
    }

    .dataTables_wrapper .dataTables_filter {
        margin-top: 0.5em;
    }
}


