c-th {
  vertical-align: middle;
  display: table-cell;
  border-bottom: 1px solid var(--color-table-border);
  font-weight: 500;
  color: var(--color-th-text);
  font-size: 14px;
}

c-th .--c-th-sort {
  display: flex;
  fill: var(--color-th-sort);
  width: 14px;
  height: 100%;
}

.--c-th {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.--c-th-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 120%;
  font-size: 14px;
  gap: 5px;
  padding: 10px;
}

.--c-th-resizer {
  position: absolute;
  right: 0px;
  width: 0px;
  flex-grow: 0;
  z-index: 1;
  height: 100%;
  user-select: none;
  display: none;
}

.--c-th-resizer.show {
  display: block;
}

.--c-th-resizer-inner {
  width: 5px;
  margin-left: -3px;
  height: 100%;
  transition: background 200ms ease-out 0s;
  background: transparent;
  cursor: col-resize;
}

.--c-th-resizer-inner:hover {
  background: var(--color-th-resizer);
}

.--c-th-resizer-inner:active {
  background: var(--color-th-resizer);
}