.yc-table__sort {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
}
.yc-table__sort-spacer {
  width: 5px;
}
.yc-table__sort-indicator {
  color: var(--yc-color-text-hint);
  opacity: 0;
}
.yc-table__sort_active .yc-table__sort-indicator {
  color: var(--yc-color-text-primary);
  opacity: 1;
}
.yc-table__sort:hover .yc-table__sort-indicator {
  opacity: 1;
}