#otp-modal {
  position: fixed;
  z-index: 99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.otp-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  text-align: center;
  position: relative;
  border-radius: 10px;
}

.otp-modal-content h2 {
  margin-bottom: 20px;
}

.otp-modal-content input {
  width: calc(100% - 20px);
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.otp-modal-content button {
  width: 100%;
  padding: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.otp-modal-content button:hover {
  background-color: #45a049;
}

.otp-modal-content button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* #otp-code, #verify-otp {
  display: none;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
} */

#otp-code.show,
#verify-otp.show {
  display: block;
  transform: translateX(0);
}

#otp-error {
  color: red;
  margin-top: 10px;
}

#otp-success {
  color: green;
  margin-top: 10px;
}

.content_otp {
  display: none;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}

.content_otp.show {
  display: block;
  transform: translateX(0);
}

#phone-confirmation {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

#resend-otp {
  margin-top: 10px;
  background-color: #f39c12;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
}

#resend-otp:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

#change-number {
  background-color: transparent !important ;
  color: #1c48c1;
}

#otp-phone {
  direction: ltr;
}

.loaderx {
  color: #631200;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l37-1 0.75s infinite linear alternate, l37-2 1.5s infinite linear;
}
@keyframes l37-1 {
  0%,
  20% {
    box-shadow: 30px 0 0 3px, 10px 0 0 3px, -10px 0 0 3px, -30px 0 0 3px;
  }
  60%,
  100% {
    box-shadow: 12px 0 0 3px, 14px 0 0 6px, -14px 0 0 6px, -12px 0 0 3px;
  }
}

@keyframes l37-2 {
  0%,
  25% {
    transform: rotate(0);
  }
  50%,
  100% {
    transform: rotate(0.5turn);
  }
}
 