/* MobilizaPro - ordenacao padronizada de tabelas | RC1.1.20-T5 */
table thead th.mpro-sortable {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: color .15s ease, background-color .15s ease;
}

table thead th.mpro-sortable:hover {
  background-color: color-mix(in srgb, currentColor 5%, transparent);
}

table thead th.mpro-sortable:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
  border-radius: 4px;
}

.mpro-sort-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: .38rem;
  min-width: 1rem;
  font-size: .92em;
  line-height: 1;
  font-weight: 800;
  opacity: .5;
  vertical-align: middle;
  transform: translateY(-.02em);
}

table thead th.mpro-sortable:hover .mpro-sort-indicator,
table thead th.mpro-sort-active .mpro-sort-indicator {
  opacity: 1;
}

table thead th.mpro-sort-active {
  font-weight: 800;
}
