/* Custom Css */

table.dataTable tbody td.select-checkbox,
table.dataTable thead th.select-checkbox {
    position: relative;
}
table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
table.dataTable thead th.select-checkbox:before, table.dataTable thead th.select-checkbox:after {
    z-index: 1;
    display: block;
    position: absolute;
    top: 1.2em;
    left: 22px;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    cursor: pointer;

}
table.dataTable tbody td.select-checkbox:before,
table.dataTable thead th.select-checkbox:before {
    z-index: 1;
    content: ' ';
    margin-top: -6px;
    margin-left: -10px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
    width: 17px;
    height: 17px;
    border: 1px solid #ced4da;
    background-color: #fff;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
table.dataTable tr.selected td.select-checkbox:after,
table.dataTable tr.selected th.select-checkbox:after {
    margin-top: -1px;
    margin-left: -7px;
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
    font-weight: 900; /* Fix version 5.* */
    content: "\f00c";
    font-size: 11px;
}

div.dataTables_wrapper span.select-info,
div.dataTables_wrapper span.select-item {
    margin-left: 0.5em;
}
