.table-scroll {
  overflow-x: auto;
  width: calc(100% + 36px);
  margin-right: -36px;
  padding-right: 36px;
}

.table.table-sm tbody td {
  padding: 15px;
  align-items: center;
}

.table thead tr {
  text-align: center;
}

.table thead th {
  background-color: transparent;
  border: none;
  font-size: 20px;
  font-weight: 400;
  padding: 30px;
}

.table .table-arrow {
  margin-left: 6px;
}

.table .table-arrow a {
  text-decoration: none;
  color: var(--text-color);
}

.table .table-arrow .arrow.active {
  color: var(--primary-color);
}

.table .table-arrow .arrow.up {
  margin-right: -4px;
}

.table tbody tr:first-child td:first-child {
  border-radius: 4px 0 0 0;
}

.table tbody tr:first-child td:last-child {
  border-radius: 0 4px 0 0;
}

.table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 4px;
}

.table tbody tr:last-child td:last-child {
  border-radius: 0 0 4px 0;
}

.table tbody td,
.table tfoot td {
  padding: 30px;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: start;
}

.table tfoot td {
  font-weight: 600;
}

.table tbody td.td-gray {
  color: rgba(0, 10, 23, 0.5);
}

.table td.table-actions {
  white-space: nowrap;
  width: 1%;
}

.table td .buttons {
  display: flex;
  gap: 12px;
}

.table tbody td.wide {
  min-width: 300px;
}

.table td.no-wrap {
  white-space: nowrap;
}

.table tbody td.top {
  vertical-align: top;
}

.table tbody td.end {
  vertical-align: bottom;
}

.empty-table {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

.quantity-block {
  display: flex;
  flex-direction: column;
}

.quantity-main {
  font-weight: 600;
}

.quantity-meta {
  font-size: 18px;
  color: #777;
  line-height: 1.2;
}

.table-header {
  display: flex;
  align-items: center;
}

.table-header.end {
  justify-content: end;
}
