:root {
  --magenta: #FF267E;
  --white: #FFF;
  --arena-surface-950: #090a18;
  --arena-surface-900: #1A1A23;
  --arena-surface-800: #23232F;
  --arena-surface-700: #2C2C3A;
  --arena-surface-600: #3D3D51;
  --arena-text-primary: #F3F3F3;
  --arena-text-muted: #9C9CAB;
  --arena-accent-mint: #ff267e;
  --debug-panel-bg: #1A1A2E;
}
/* table */
.wrapp-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wrapp-table table.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  color: var(--arena-text-primary);
  background: var(--arena-surface-900);
}

.wrapp-table table.table th,
.wrapp-table table.table td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid var(--arena-surface-600);
  line-height: 1.4;
}

.wrapp-table table.table thead tr {
  background: var(--arena-surface-700);
}

.wrapp-table table.table thead th {
  font-family: inherit;
  font-size: 12px;
  color: var(--arena-accent-mint);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-color: var(--arena-surface-600);
}

.wrapp-table table.table thead th:nth-child(odd) {
  background: var(--arena-surface-950);
}

.wrapp-table table.table thead th:nth-child(even) {
  background: var(--arena-surface-900);
}

.wrapp-table table.table thead th:first-child {
  background: var(--arena-surface-800);
}

.wrapp-table table.table tbody tr:nth-child(odd) td:nth-child(odd),
.wrapp-table table.table tbody tr:nth-child(even) td:nth-child(even) {
  background: var(--arena-surface-950);
}

.wrapp-table table.table tbody tr:nth-child(odd) td:nth-child(even),
.wrapp-table table.table tbody tr:nth-child(even) td:nth-child(odd) {
  background: var(--arena-surface-900);
}

.wrapp-table table.table tbody td:first-child {
  font-family: inherit;
  color: var(--arena-text-muted);
  font-size: 12px;
  background: var(--arena-surface-800);
}

.drop .magenta {
  font-family: inherit;
  color: #FF267E;
}

.retreat1 {
  padding-left: 20px;
}
.retreat1 strong {
  font-family: "supermolot-tr-bold";
  color: #FFF;
}
.retreat1 p:not(:last-child) {
  padding-bottom: 15px;
}

.retreat2 {
  padding-left: 40px;
}
.retreat2 strong {
  font-family: "supermolot-tr-bold";
  color: #FFF;
}
.retreat2 p:not(:last-child) {
  padding-bottom: 15px;
}

.circle {
  padding-left: 20px;
}
.circle:before {
  content: '';
  width: 5px;
  height: 5px;
  background: #FFF;
  border-radius: 50%;
  display: inline-block;
  margin: 0 8px 3px 0;
}

.predictor__dropdown--locked {
  opacity: 0.45;
  pointer-events: none;
}

.predictor__input-btn.loader {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.predictor__input-btn.loader::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  background: url("../img/loader.svg") no-repeat center / contain;
  animation: rotate 0.8s linear infinite;
}

.confirm-bet-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.55);
}
.confirm-bet-popup.hide {
  display: none;
}

.confirm-bet-popup__dialog {
  width: min(420px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  background: #121212;
  padding: 24px 20px;
  text-align: center;
}

.confirm-bet-popup__title {
  font-family: "supermolot-tr-bold";
  font-size: 18px;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.confirm-bet-popup__podium {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.confirm-bet-popup__podium-item {
  flex: 1;
  min-width: 0;
}
.confirm-bet-popup__podium-item img {
  width: 40px;
  height: 28px;
  object-fit: contain;
}
.confirm-bet-popup__podium-item span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #999999;
}

.confirm-bet-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
