/*!
 * JSTable
 */

.dt-container {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: hidden
}

.dt-container .dt-message {
  text-align: center
}

.dt-container .dt-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin-left: -50%;
  margin-top: -20px;
  height: 40px;
  text-align: center;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%)
}

.dt-top,
.dt-bottom {
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.dt-top .dt-selector,
.dt-bottom .dt-selector {
  padding: 6px
}

.dt-top .dt-info,
.dt-bottom .dt-info {
  margin: 7px 0
}

.dt-input {
  padding: 6px 12px
}

.dt-pagination ul {
  margin: 0;
  padding-left: 0
}

.dt-pagination ul li {
  list-style: none;
  float: left
}

.dt-pagination a,
.dt-pagination span {
  border: 1px solid transparent;
  float: left;
  margin-left: 2px;
  padding: 6px 12px;
  position: relative;
  text-decoration: none;
  color: inherit
}

.dt-pagination a:hover {
  background-color: #d9d9d9
}

.dt-pagination .active a,
.dt-pagination .active a:focus,
.dt-pagination .active a:hover {
  background-color: #d9d9d9;
  cursor: default
}

.dt-pagination .dt-ellipsis span {
  cursor: not-allowed
}

.dt-pagination .disabled a,
.dt-pagination .disabled a:focus,
.dt-pagination .disabled a:hover {
  cursor: not-allowed;
  opacity: 0.4
}

.dt-pagination .pager a {
  font-weight: bold
}

.dt-table {
  max-width: 100%;
  width: 100%;
  border-spacing: 0
}

.dt-table>tbody>tr>td,
.dt-table>tbody>tr>th,
.dt-table>tfoot>tr>td,
.dt-table>tfoot>tr>th,
.dt-table>thead>tr>td,
.dt-table>thead>tr>th {
  vertical-align: top;
  padding: 10px 15px;
}

.dt-table>thead>tr>th,
.dt-table>thead>tr>td {
  vertical-align: bottom;
  text-align: left;
  border-bottom: 1px solid #d9d9d9
}

.dt-table>tfoot>tr>th,
.dt-table>tfoot>tr>td {
  vertical-align: bottom;
  text-align: left;
  border-top: 1px solid #d9d9d9
}

.dt-table>tbody>tr>td {
  background: #9FB673;
  color: #fff;
  line-height: 20px;
}

.dt-table>tbody>tr>td a {
  color: #fff;
}
.dt-table>thead>tr>th + th,
.dt-table>tbody>tr>td + td {
  border-left: 1px solid #fff; 
}
.dt-table>thead>tr,
.dt-table>tbody>tr {
  border-bottom: 1px solid #fff;
}
.dt-table th {
  vertical-align: bottom;
  text-align: left
}

.dt-table th.dt-sorter {
  position: relative;
  cursor: pointer;
  padding-right: 20px;
  background: #132337;
  color: #fff;
  white-space: nowrap; 
}

.dt-table th.dt-sorter::before,
.dt-table th.dt-sorter::after {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  right: 10px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  opacity: 0.5
}

.dt-table th.dt-sorter::before {
  border-top: 4px solid #fff;
  top: 23px
}

.dt-table th.dt-sorter::after {
  border-bottom: 4px solid #fff;
  border-top: 4px solid transparent;
  bottom: 22px
}

.dt-table th.dt-sorter.asc::after,
.dt-table th.dt-sorter.desc::before {
  opacity: 0.9
}

.hidden {
  display: none !important;
  opacity: 0 !important
}