.yc-table {
  overflow: auto;
  position: relative;
}
.yc-table__scroll-container {
  overflow: auto;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.yc-table__scroll-container::-webkit-scrollbar {
  display: none;
}
.yc-table__horizontal-scroll-bar {
  overflow-x: auto;
  margin-top: -1px;
}
.yc-table__horizontal-scroll-bar-inner {
  height: 1px;
  position: relative;
}
.yc-table__horizontal-scroll-bar-inner::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.01);
}
.yc-table__horizontal-scroll-bar_sticky-horizontal-scroll {
  position: sticky;
  z-index: 3;
}
.yc-table__table {
  border-spacing: 0;
  border-collapse: separate;
}
.yc-table__cell {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: content-box;
  padding: 11px 10px;
  border-bottom: 1px solid var(--yc-color-line-generic);
  line-height: 18px;
  text-align: left;
  overflow-wrap: break-word;
}
.yc-table__cell:first-child {
  padding-left: 0;
}
.yc-table__cell:last-child {
  padding-right: 0;
}
.yc-table__cell_align_center {
  text-align: center;
}
.yc-table__cell_align_right {
  text-align: right;
}
.yc-table__cell_sticky_left, .yc-table__cell_sticky_right {
  position: sticky;
  z-index: 2;
}
.yc-table__cell_sticky_left, .yc-table__cell_sticky_right {
  background: var(--yc-color-base-background);
}
.yc-table__cell_border_right {
  border-right: 1px solid var(--yc-color-line-generic);
}
.yc-table__cell_edge-padding:first-child {
  padding-left: 15px;
}
.yc-table__cell_edge-padding:last-child {
  padding-right: 15px;
}
.yc-table__row_vertical-align_top {
  vertical-align: top;
}
.yc-table__row_vertical-align_middle {
  vertical-align: middle;
}
.yc-table__row_empty .yc-table__cell {
  text-align: center;
}
.yc-table__body .yc-table__row:last-child .yc-table__cell {
  border-bottom-color: transparent;
}
.yc-table__th-content {
  font-weight: var(--yc-text-accent-font-weight);
  display: inline-block;
}
.yc-table__th-content::first-letter {
  text-transform: uppercase;
}
.yc-table__body .yc-table__row_interactive:hover {
  background-color: var(--yc-color-base-simple-hover-solid);
  cursor: pointer;
}
.yc-table__body .yc-table__row_interactive:hover .yc-table__cell_sticky_left,
.yc-table__body .yc-table__row_interactive:hover .yc-table__cell_sticky_right {
  background: var(--yc-color-base-simple-hover-solid);
}
.yc-table__body .yc-table__row_disabled {
  opacity: 0.3;
}
.yc-table_with-primary .yc-table__body .yc-table__cell {
  color: var(--yc-color-text-secondary);
}
.yc-table_with-primary .yc-table__body .yc-table__cell_primary {
  color: var(--yc-color-text-primary);
}
.yc-table_with-sticky-scroll {
  overflow: visible;
}