/* Sortable table styles */

.sortable th:not(.no-sort) {
  cursor: pointer;
}

.sortable th:not(.no-sort):hover {
  color: #777;
}

.sortable th:not(.no-sort):hover::after {
  color: inherit;
  font-size: 1.2em;
  content: ' \025B8';
}

.sortable th:not(.no-sort)::after {
  font-size: 1.2em;
  color: transparent;
  content: ' \025B8';
}

.sortable th.dir-d::after {
  color: inherit;
  content: ' \025BE';
}

.sortable th.dir-u::after {
  color: inherit;
  content: ' \025B4';
}
