.fsys-table-sort .fsys-sortable {
  cursor: pointer;
  position: relative;
  user-select: none;
  padding-right: 1.75rem;
}

.fsys-table-sort .fsys-sortable:focus {
  outline: 2px solid rgba(56, 116, 255, 0.45);
  outline-offset: 2px;
}

.fsys-table-sort .fsys-sortable:hover,
.fsys-table-sort .fsys-sortable.is-sorted {
  color: #3874ff;
}

.fsys-table-sort .fsys-sort-indicator {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.fsys-table-sort .fsys-sort-indicator::before,
.fsys-table-sort .fsys-sort-indicator::after {
  content: "";
  position: absolute;
  left: -4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  opacity: 0.3;
  transition: opacity 0.15s ease-in-out;
}

.fsys-table-sort .fsys-sort-indicator::before {
  top: -7px;
  border-bottom: 5px solid currentColor;
}

.fsys-table-sort .fsys-sort-indicator::after {
  top: 3px;
  border-top: 5px solid currentColor;
}

.fsys-table-sort .fsys-sortable[aria-sort="ascending"] .fsys-sort-indicator::before,
.fsys-table-sort .fsys-sortable[aria-sort="descending"] .fsys-sort-indicator::after {
  opacity: 1;
}

.fsys-table-sort .fsys-sortable[aria-sort="ascending"] .fsys-sort-indicator::after,
.fsys-table-sort .fsys-sortable[aria-sort="descending"] .fsys-sort-indicator::before {
  opacity: 0.12;
}
