.whiteBg {
  text-align: center;
  background-image: url(../images/wallet-white-bg.png);
  background-size: 100% 100%;
  border-radius: 0.6rem;
  padding: 20px;
  color: #636363;
  font-family: dinproMedium;
  margin-bottom: 1rem;
}

#refreshBtn {
  margin-left: 10px;
  font-size: 14px;
  cursor: pointer;
}

.balanceRow {
  color: #053b7a;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 0 1rem;
}

.blueBtn {
  background: linear-gradient(90deg, #2a5c90 0%, #3998cf 51.56%, #3da9e0 100%);
  color: white;
  padding: 10px 0;
  font-size: 14px;
  cursor: pointer;
}

#mainwallet-balance {
  font-weight: bolder;
  font-size: 30px;
  font-family: dinprobold;
}

.menuTitle {
  color: #053b7a;
  font-family: dinproBlack;
  font-size: 18px;
  text-align: left;
  padding-bottom: 0.6rem;
}

.menu-row {
  display: flex;
  align-items: center;
  font-family: dinproMedium;
  padding: 0.2rem 0;
  cursor: pointer;
}

.menu-row.active {
  color: #0592cd;
}

.menu-row img {
  width: 30px;
  margin-right: 0.5rem;
}

.icon-img {
  background-size: 100% 100%;
  height: 1.8rem;
  width: 1.8rem;
  margin-right: 0.8rem;
}

#icon-deposit {
  background-image: url(../images/dd-menu/deposit.png);
}

.active #icon-deposit {
  background-image: url(../images/dd-menu/deposit-active.png);
}

#icon-transfer {
  background-image: url(../images/dd-menu/transfer.png);
}

.active #icon-transfer {
  background-image: url(../images/dd-menu/transfer-active.png);
}

#icon-withdrawal {
  background-image: url(../images/dd-menu/withdrawal.png);
}

.active #icon-withdrawal {
  background-image: url(../images/dd-menu/withdrawal-active.png);
}

#icon-history {
  background-image: url(../images/dd-menu/history.png);
}

.active #icon-history {
  background-image: url(../images/dd-menu/history-active.png);
}

#icon-profile {
  background-image: url(../images/dd-menu/profile.png);
}

.active #icon-profile {
  background-image: url(../images/dd-menu/profile-active.png);
}

#icon-banking {
  background-image: url(../images/dd-menu/banking.png);
}

.active #icon-banking {
  background-image: url(../images/dd-menu/banking-active.png);
}

#icon-rebate {
  background-image: url(../images/dd-menu/rebate.png);
}

.active #icon-rebate {
  background-image: url(../images/dd-menu/rebate-active.png);
}

#icon-promo {
  background-image: url(../images/dd-menu/promo.png);
}

.active #icon-promo {
  background-image: url(../images/dd-menu/promo-active.png);
}

#icon-referral {
  background-image: url(../images/dd-menu/referral.png);
}

.active #icon-referral {
  background-image: url(../images/dd-menu/referral-active.png);
}

#icon-voucher {
  background-image: url(../images/dd-menu/voucher.png);
}

.active #icon-voucher {
  background-image: url(../images/dd-menu/voucher-active.png);
}

#refreshBtn.refreshing {
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
