sticky-table-header td,
sticky-table-header thead th,
sticky-table-header tfoot td {
  text-align: center;
  min-width: 80px;
  width: auto !important;
}
sticky-table-header thead th,
sticky-table-header tbody td,
sticky-table-header tfoot td {
  white-space: nowrap;
  text-align: center;
}
sticky-table-header {
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  display: grid;
}
sticky-table-header .container {
  width: 100%;
  position: relative;
}
sticky-table-header .container h2,
sticky-table-header .container h3 {
  z-index: 3;
  font-family: var(--font-family-primary);
  color: var(--color-text-dark);
  text-align: left;
  background-color: var(--color-neutral-0);
  text-transform: capitalize;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  position: sticky;
  top: -17px;
}
sticky-table-header table thead th {
  font-size: 14px;
  font-family: var(--font-family-primary);
  color: var(--color-text-dark);
  font-weight: 400;
  line-height: 21px;
}
sticky-table-header .table-scroll {
  -webkit-overflow-scrolling: touch;
  overflow: auto visible;
}
sticky-table-header table {
  border-collapse: collapse;
  table-layout: auto;
  width: min-content;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
sticky-table-header thead {
  z-index: 1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 50ms linear;
  position: relative;
  left: 0;
  transform: translateZ(0);
}
sticky-table-header thead th {
  background-color: var(--color-neutral-0);
  z-index: 1;
}
sticky-table-header thead:after {
  content: '';
  height: 16px;
  display: table-row;
}
sticky-table-header thead.is-sticky {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 800px;
  transition: transform 50ms linear;
  left: 0;
  overflow: hidden;
  transform: translateZ(0);
}
sticky-table-header thead.is-sticky:after {
  height: 16px;
}
sticky-table-header thead.is-sticky th:after {
  content: '';
  background-color: var(--color-neutral-0);
  width: 100%;
  height: 16px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
sticky-table-header thead.is-sticky:before {
  content: '';
  z-index: 1;
  background-color: var(--color-neutral-0);
  width: 100%;
  height: 52px;
  position: absolute;
  top: -50px;
  left: 0;
}
sticky-table-header td {
  text-align: left;
  border-left: 1px solid var(--color-neutral-500);
  border-right: 1px solid var(--color-neutral-500);
  white-space: nowrap;
}
sticky-table-header tr {
  border: none;
}
sticky-table-header td:first-child {
  border-left: none;
}
sticky-table-header td:last-child {
  border-right: none;
}
sticky-table-header tbody tr:hover {
  background-color: var(--color-neutral-300);
}
sticky-table-header thead tr th,
sticky-table-header tbody td {
  padding: 9.5px 8px;
}
sticky-table-header thead tr th:nth-child(odd) {
  background-color: var(--color-neutral-50);
}
sticky-table-header thead tr th:nth-child(2n) {
  background-color: var(--color-neutral-300);
}
@media (hover: none) {
  sticky-table-header tbody tr:active {
    background-color: var(---color-neutral-300);
  }
}
