/*
Custom Classes.
*/
.text-brown {
  color: #990000 !important;
}

@media only screen and (max-width : 480px) {
  .otp-tb-width {
    width: 30px !important;
    height: 40px !important;
  }
}

@media only screen and (min-width : 481px) {
  .otp-tb-width {
    width: 50px !important;
    height: 50px !important;
  }
}

.tips {
  box-shadow: rgba(149, 149, 149, 0.54) 0px 0px 5px 0px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgba(205, 205, 205, 0.44);
  background: rgb(255, 255, 255);
  margin: 2.4rem;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.countdown-wrapper {
  position: relative;
  text-align: center;
  padding: 35px;
}

.countdown-box {
  position: relative;
  border: 2px solid #44ff88;
  border-top: none;
  border-bottom: none;
  height: 80px;
  width: 245px;
  margin: 0 auto;
}

.count-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 35px;
  font-weight: 700;
  padding: 0 20px;
  color: #44ff88;
}

.count-label {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #44ff88;
}

.count-date {
  width: 100%;
  position: absolute;
  /* bottom: -14px; */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 800;
  /* padding: 0 20px; */
  color: #44ff88;
}

@media (max-width: 576px) {
  .countdown-box {
    width: 100%;
  }

  .count-number {
    font-size: 48px;
  }

  .count-label,
  .count-date {
    font-size: 16px;
  }
}