.table {
  width: fit-content;
  min-width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.table--center {
  text-align: center;
}
.table img,
.table svg {
  margin-inline: auto;
}
.table th,
.table td {
  padding: calc(var(--spacing-text) / 2) var(--spacing-text);
  line-height: normal;
  white-space: nowrap;
  vertical-align: middle;
}
@media (min-width: 740px) {
  .table th,
  .table td {
    min-width: 140px;
    height: 56px;
  }
}
@media (max-width: 739.98px) {
  .table th,
  .table td {
    min-width: 70px;
    height: 48px;
  }
}
.table th {
  font-weight: 600;
  text-align: inherit;
  white-space: nowrap;
  background-color: var(--main-color-3);
}
@media (max-width: 739.98px) {
  .table th {
    white-space: nowrap;
  }
}
.table tbody tr:not(:last-child) {
  border-bottom: solid 1px var(--main-color-4);
}
.table tbody td:not(:last-child) {
  border-inline-end: solid 1px var(--main-color-4);
}

.tableWrap {
  width: fit-content;
  min-width: 100%;
  overflow: hidden;
  background-color: var(--main-color-1);
  border-radius: var(--border-radius);
}

[data-scrollable]:has(.table):not(:first-child) {
  margin-top: var(--spacing-block);
}
[data-scrollable]:has(.table):not(:last-child) {
  margin-bottom: var(--spacing-block);
}

.hidden-row,
.hidden-rows {
  display: none;
}

.load-more-row button {
  display: inline-block;
}
