@charset "UTF-8";
.sortable thead th:not(.no-sort) {
  cursor: ns-resize;
}
.sortable thead th:not(.no-sort)::after, .sortable thead th:not(.no-sort)::before {
  transition: color 0.3s ease-in-out;
  font-size: 1.3em;
  color: transparent;
  animation: flash 2s 3;
}
.sortable thead th:not(.no-sort)::after { /* mouse hover indicator */
  margin-left: 3px;
  content: '\021C5';
}
.sortable thead th:not(.no-sort):hover::after {
  color: inherit;
}
.sortable thead th:not(.no-sort).dir-d::after { /* descending sort indicator */
  color: inherit;
  content: '\025BC';
}
.sortable thead th:not(.no-sort).dir-u::after { /* ascending sort indicator */
  color: inherit;
  content: '\025B2';
}
.sortable thead th:not(.no-sort).indicator-left::after {
  content: "";
}
.sortable thead th:not(.no-sort).indicator-left::before {
  margin-right: 3px;
}
.sortable thead th:not(.no-sort).indicator-left:hover::before {
  color: inherit;
}
.sortable thead th:not(.no-sort).indicator-left.dir-d::before {
  color: inherit;
  content: '\025BC';
}
.sortable thead th:not(.no-sort).indicator-left.dir-u::before {
  color: inherit;
  content: '\025B2';
}

.sortable {
  /* --stripe-color: #505050; */
  --stripe-color: #2e3939;
  --th-color: #fff;
  /* --th-bg: #808080; */
  --th-bg: #556666;
  --td-color: #fff;
  --td-on-stripe-color: #fff;
  border-spacing: 0;
}
.sortable tbody tr:nth-child(odd of :not(.row-hide)) {
  background-color: var(--stripe-color);
  color: var(--td-on-stripe-color);
}
.sortable thead th {
  background: var(--th-bg);
  color: var(--th-color);
  font-weight: bold;
  text-align: left;
  text-transform: capitalize;
  vertical-align: baseline;
  white-space: nowrap;
}
.sortable td {
  color: var(--td-color);
}
.sortable td,
.sortable th {
  padding: 10px;
}
.sortable td:first-child,
.sortable th:first-child {
  border-top-left-radius: 4px;
}
.sortable td:last-child,
.sortable th:last-child {
  border-top-right-radius: 4px;
}
.sortable th.dir-u {
  color: #000;
}
.sortable th.dir-d {
  color: #000;
}
@keyframes flash{
    50%{ color: inherit; }
}

/*# sourceMappingURL=sortable.css.map */
