.game-currency-modal-fallback {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d0d0d0;
  font-family: PingFangSC-Medium, "Microsoft YaHei", sans-serif;
}

.game-currency-modal-fallback__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
}

.game-currency-modal-fallback__card {
  position: relative;
  z-index: 1;
  width: 500px;
  min-height: 322px;
  overflow: hidden;
  border-radius: 6px;
  background: #2c2d33;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .55);
}

.game-currency-modal-fallback__header {
  height: 38px;
  background: #171a21;
}

.game-currency-modal-fallback__close {
  float: right;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #d0d0d0;
  cursor: pointer;
  font-size: 25px;
  line-height: 38px;
}

.game-currency-modal-fallback__body {
  padding: 0 70px 30px;
}

.game-currency-modal-fallback__title {
  padding: 22px 0 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.game-currency-modal-fallback__balances {
  display: flex;
  justify-content: space-between;
  height: 130px;
}

.game-currency-modal-fallback__balance {
  position: relative;
  display: flex;
  width: 160px;
  height: 130px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #3e444c;
  background: transparent;
  color: #d0d0d0;
  cursor: pointer;
  font-size: 14px;
}

.game-currency-modal-fallback__balance.is-selected {
  border-color: #ff761f;
  color: #ff761f;
  background: linear-gradient(135deg, rgba(255, 118, 31, .08), transparent);
}

.game-currency-modal-fallback__balance strong {
  display: flex;
  align-items: center;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
}

.game-currency-modal-fallback__balance .ico {
  margin-right: 4px;
  font-style: normal;
}

.game-currency-modal-fallback__confirm {
  display: block;
  width: 200px;
  height: 48px;
  margin: 32px auto 0;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, #ff7f27, #a0511a);
  color: #272c33;
  cursor: pointer;
  font-size: 18px;
}

@media (max-width: 560px) {
  .game-currency-modal-fallback__card {
    width: calc(100vw - 30px);
  }

  .game-currency-modal-fallback__body {
    padding-right: 24px;
    padding-left: 24px;
  }
}
