.custom-topup-new-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.custom-topup-new-card-body .heading {
  font-size: 90px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  width: 1100px;
  margin-top: 70px;
}

.custom-topup-calculator-wrapper {
  width: 1200px;
  height: 1300px;
  position: relative;
  margin-top: 70px;
  overflow: hidden;
  border-radius: 100px;
}

.custom-topup-calculator-wrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.custom-topup-calculator-wrapper .calculator-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 50px;
  z-index: 3;
  position: relative;
  padding: 0 130px;
}

.calculator-wrapper .heading {
  font-size: 70px;
  color: #fff;
  font-weight: normal;
}

.calculator-wrapper .price-amount {
  font-size: 90px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #fff;
  margin-top: 50px;
}

.calculator-wrapper .price-amount .amount {
  color: #fe6a6b;
}

.calculator-wrapper .text-alert {
  font-size: 20px;
  color: #fe6a6b;
  margin-top: 30px;
}

.calculator-wrapper .result-tizo-wrapper {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  width: 100%;
}

.calculator-wrapper .result-tizo-wrapper .get-text {
  font-size: 50px;
}

.calculator-wrapper .result-tizo-wrapper .tizo-amount .tizo-amount-number {
  font-size: 100px;
  background: linear-gradient(180deg, #01cbff 0%, #01cbff 20%, #0383ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calculator-wrapper .result-tizo-wrapper .tizo-amount .tizo-text {
  font-size: 50px;
  margin-left: 10px;
  color: #01cbff;
}

.calculator-wrapper .number-buttons-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 50px;
  color: #fff;
}

.calculator-wrapper .number-buttons-wrapper .number-button {
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  padding: 25px 60px;
  background-color: #2bd1ed;
  border-radius: 40px;
  text-shadow: 2px 2px 4px #00000065;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.calculator-wrapper .number-buttons-wrapper .number-button:hover {
  background-color: #3de0ff;
  transform: scale(1.05);
}

.calculator-wrapper .number-buttons-wrapper .number-button:active {
  transform: scale(0.95);
}

.calculator-wrapper .number-buttons-wrapper .backspace-button {
  position: relative;
  background-color: #2a2ae9;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.calculator-wrapper .number-buttons-wrapper .backspace-button:hover {
  background-color: #3d3dff;
  transform: scale(1.05);
}

.calculator-wrapper .number-buttons-wrapper .backspace-button:active {
  transform: scale(0.95);
}

.calculator-wrapper .number-buttons-wrapper .backspace-button img {
  width: 110px;
  height: 110px;
  position: relative;
}

.calculator-wrapper .information-text {
  margin-top: 70px;
  color: #fff;
  font-size: 25px;
  text-align: center;
  width: 900px;
  opacity: 0.5;
  font-style: italic;
}

.custom-topup-new-card-body .continue-button-wrapper {
  margin-top: 60px;
}

.custom-topup-new-card-body .continue-button-wrapper .continue-button {
  background: url("../assets/green-button.png") no-repeat center center;
  background-size: contain;
  background-position: center;
  padding: 70px 0px;
  width: 600px;
  font-size: 45px;
  color: white;
  text-align: center;
  font-weight: bold;
}

.custom-topup-new-card-body .continue-button-wrapper .continue-button.disabled {
  opacity: 0.5;
}

#dd-badge {
  background: linear-gradient(90deg, #ffde00, #ff8c00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffde00;
  font-size: 32px !important;
  margin-top: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: dd-pulse 1.5s ease-in-out infinite;
  text-shadow: 0 0 15px rgba(255, 222, 0, 0.4);
}

@keyframes dd-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

