.cmp-table-static {
  overflow: auto;
  width: 100%;
}
.cmp-table-static__table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}
.cmp-table-static__table > tbody > tr:nth-child(even) {
  background: var(--base-50-50);
}
.cmp-table-static__cell {
  padding: .5rem .75rem;
  text-align: left;
  border-bottom: 1px solid var(--base-100);
  min-width: 3.125rem;
  max-width: 22.75rem;
}
@media (min-width: 992px) {
  .cmp-table-static__cell {
    max-width: 15.625rem;
  }
}
@media (min-width: 1200px) {
  .cmp-table-static__cell {
    max-width: 25rem;
  }
}
.cmp-table-static__cell-inner {
  overflow: visible;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.cmp-table-static__table--with-head thead .cmp-table-static__cell--head {
  background: var(--base-100);
  position: sticky;
  top: 0;
  z-index: 1;
  border-bottom: 1px solid var(--base-200);
}
