.table-standing-top {
  display: flex;
  gap: 16px;
  margin-bottom: var(--space-lg);
  flex-direction: column;
  justify-content: space-between;
}
.table-standing table {
  position: relative;
  border-collapse: separate;
  width: 100%;
}
.table-standing thead {
  background-color: var(--color-surface-surface-inverse);
}
.table-standing thead th {
  width: 28px;
  height: 56px;
  text-align: center;
  padding-right: var(--space-sm);
  color: var(--color-foreground-foreground-on-active);
  font-size: var(--typography-font-size-body2-strong-sm);
  font-weight: var(--font-weight-bold);
  line-height: var(--typography-line-height-body2-strong-sm);
}
.table-standing thead th:first-child {
  width: 148px;
  text-align: left;
  padding-left: var(--space-lg);
}
.table-standing thead th:last-child {
  padding-right: var(--space-lg);
}
.table-standing tbody tr:nth-child(2n) {
  background-color: var(--color-surface-surface-subtle-neutral);
}
.table-standing tbody td {
  text-align: center;
  padding-right: var(--space-sm);
  height: 64px;
  font-size: var(--typography-font-size-body2-strong-sm);
  font-weight: var(--font-weight-regular);
  line-height: var(--typography-line-height-body2-strong-sm);
  color: var(--color-foreground-foreground-default);
}
.table-standing tbody td:first-child {
  text-align: left;
  padding-left: var(--space-lg);
}
.standingtable-team {
  display: flex;
  align-items: center;
  gap: 4px;
}
.standingtable-rank {
  font-weight: var(--font-weight-bold);
  text-align: right;
  min-width: 20px;
  text-align: center;
}
.standingtable-table {
  display: flex;
  align-items: center;
  gap: 8px;
}
.standingtable-table img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.standingtable-name {
  font-weight: var(--font-weight-regular);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.table-standing tbody td:last-child {
  font-weight: var(--font-weight-bold);
}
.table-standing-select .form-group {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.table-standing-select label {
  margin-bottom: 0;
  font-size: var(--typography-font-size-body1-strong-lg);
  line-height: var(--typography-line-height-body1-strong-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-foreground-foreground-default);
}
.dummy-standing-table {
  display: none;
}
.standings-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 135px;
  position: relative;
  font-size: 0;
}
.standings-loader::before {
  content: "";
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px solid transparent;
  border-right-color: var(--color-foreground-foreground-strong);
  animation: l2 1s infinite linear;
}
@keyframes l2 {
  to {
    transform: rotate(1turn);
  }
}
@media only screen and (min-width: 961px) {
  .table-standing-top {
    margin-bottom: var(--space-xl);
    flex-direction: row;
    align-items: center;
  }
  .table-standing table {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0px 4px 12px 0px #0104141A;
    border: 1px solid var(--color-border-width-border-width-default);
  }
  .standingtable-name {
    line-clamp: 1;
    -webkit-line-clamp: 1;
  }
  .table-standing thead th {
    font-size: var(--typography-font-size-body1-strong-lg);
    font-weight: var(--font-weight-bold);
    line-height: var(--typography-line-height-body1-strong-lg);
    width: 48px;
    height: 64px;
    padding-right: var(--space-lg);
  }
  .table-standing thead th:first-child {
    padding-left: var(--space-xl);
    width: 270px
  }
  .table-standing thead th:last-child {
    padding-right: var(--space-xl);
  }
  .table-standing tbody td {
    font-size: var(--typography-font-size-body1-strong-lg);
    font-weight: var(--font-weight-regular);
    line-height: var(--typography-line-height-body1-strong-lg);
    padding-right: var(--space-lg);
  }
  .table-standing tbody td:first-child {
    padding-left: var(--space-xl);
  }
  .standingtable-team {
    gap: 16px;
  }
  .standingtable-table {
    gap: 16px;
  }
  .standingtable-table img {
    width: 32px;
    height: 32px;
  }
  .table-standing-select .form-group .select2 {
    min-width: 187px;
    max-width: 187px;
  }
  .table-standing-select .form-group {
    flex-direction: row;
    align-items: center;
  }
}
