/* bet command */
.bet-type {
  position: relative;
}
.bet-type a {
  position: absolute;
  right: 0;
  top: -30px;
  color: white;
  text-decoration: none;
}
.bet-type a i {
  font-size: 25px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .bet-type a {
    top: -20px;
  }
  .bet-type a i {
    font-size: 18px;
  }
}

.currencies {
  gap: 10px;
}
.currencies button {
  border: 2px solid #4B56A1;
  color: #4B56A1;
  font-size: 12px;
}
.currencies button.active {
  background-color: #4B56A1;
  color: white;
}
.currencies .select-other-currency {
  border: 2px solid #4B56A1;
  padding: 5px 15px;
  border-radius: 30px;
  background: none;
  color: #4B56A1;
  font-size: 12px;
}
@media (max-width: 480px) {
  .currencies {
    gap: 5px;
  }
  .currencies button {
    padding: 3px 15px;
  }
  .currencies .select-other-currency {
    padding: 5px 10px;
  }
}

.coin-value {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .coin-value {
    font-size: 12px;
  }
}

.bet-lists {
  padding: 20px 0;
}
.bet-lists .container-bet {
  max-width: 650px;
}
.bet-lists .container-bet .bet-list {
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #DBDBDB;
  padding: 5px 0;
}
.bet-lists .container-bet .bet-list .label-bet {
  color: #A9A9A9;
}
.bet-lists .container-bet .bet-list:last-child {
  border: none;
}

.calculator {
  width: 100%;
  max-width: 650px;
  margin: 15px auto;
  border-spacing: 6px;
  border-collapse: separate;
}
.calculator td {
  width: 20%;
}
.calculator .cal-btn {
  background: linear-gradient(180deg, #D5D9F7 0%, #8B94D3 100%);
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.55);
  border-radius: 5px;
  padding: 10px 0;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
}
.calculator .cal-btn.red {
  background: linear-gradient(180deg, #D5D9F7 0%, #BF8CDE 100%);
}
.calculator .cal-btn.blue {
  background: linear-gradient(180deg, #3D86C9 0%, #3054C9 100%);
  color: white;
}
.calculator .cal-btn.gray {
  background: linear-gradient(180deg, #E6E6E6 0%, #C6C6C6 100%);
}
.calculator .cal-btn.green {
  background: linear-gradient(180deg, #00B733 0%, #018225 100%);
  color: white;
}
.calculator .cal-btn.enter i {
  transform: rotate(90deg);
  /* Safari */
  -webkit-transform: rotate(90deg);
  /* Firefox */
  -moz-transform: rotate(90deg);
  /* IE */
  -ms-transform: rotate(90deg);
  /* Opera */
  -o-transform: rotate(90deg);
}