table.dataTable thead th.select-checkbox,
table.dataTable tbody td.select-checkbox {
  cursor: pointer;
  *cursor: hand;
}
table.dataTable tbody td.select-checkbox {
  position: relative;
}
table.dataTable tbody td.select-checkbox:before,
table.dataTable tbody td.select-checkbox:after {
  display: block;
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}
table.dataTable tbody td.select-checkbox:before {
  content: ' ';
  margin-top: -6px;
  margin-left: -6px;
  border: 1px solid black;
  border-radius: 3px;
}
table.dataTable tr.selected td.select-checkbox:after {
  content: '\2714';
  margin-top: -11px;
  margin-left: -4px;
  text-align: center;
  text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
}

div.dataTables_scrollHead table.dataTable thead th.select-checkbox {
  position: relative;
}
div.dataTables_scrollHead table.dataTable thead th.select-checkbox:before,
div.dataTables_scrollHead table.dataTable thead th.select-checkbox:after {
  display: block;
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}
div.dataTables_scrollHead table.dataTable thead th.select-checkbox:before {
  content: ' ';
  margin-top: -6px;
  margin-left: -6px;
  border: 1px solid black;
  border-radius: 3px;
}
div.dataTables_scrollHead table.dataTable thead th.selected.select-checkbox:after {
  content: '\2714';
  margin-top: -11px;
  margin-left: -4px;
  text-align: center;
  text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
}

div.dataTables_wrapper > table.dataTable thead th.select-checkbox {
  position: relative;
}
div.dataTables_wrapper > table.dataTable thead th.select-checkbox:before,
div.dataTables_wrapper > table.dataTable thead th.select-checkbox:after {
  display: block;
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}
div.dataTables_wrapper > table.dataTable thead th.select-checkbox:before {
  content: ' ';
  margin-top: -6px;
  margin-left: -6px;
  border: 1px solid black;
  border-radius: 3px;
}
div.dataTables_wrapper > table.dataTable thead th.selected.select-checkbox:after {
  content: '\2714';
  margin-top: -11px;
  margin-left: -4px;
  text-align: center;
  text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
}

div.dataTables_wrapper span.select-info,
div.dataTables_wrapper span.select-item {
  margin-left: 0.5em;
}
@media screen and (max-width: 640px) {
  div.dataTables_wrapper span.select-info,
  div.dataTables_wrapper span.select-item {
    margin-left: 0;
    display: block;
  }
}