body,
p,
button,
h1,
h2,
input,
button {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

input,
button {
  box-sizing: border-box;
  border-radius: 0;
}
.input {
  font-size: 2rem;
}
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #aaa;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #aaa;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #aaa;
}
:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #aaa;
}

input:focus,
button:focus {
  outline: none;
}

body {
  font-size: 14px;
  line-height: 1.425;
  color: #212222;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: #41aece;
  cursor: pointer;
  text-decoration: none;
}
.btn {
  font-size: 1rem;
  border-radius: 5px;
  color: #fff;
  background: #3c96ff;
  border: none;
  width: 100%;
  line-height: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.main {
  padding:  5px 20px;
}

@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}

.m-header{
margin-top: 12px;
display: flex;
justify-content: center;
margin-bottom: 6px;
}

 .title{
  display: block;
  margin-top: 50px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
}
.title-t{
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
.title-r{
  color: #a19f9f;
  text-align: center;
  margin-bottom: 4px;
  font-size: 12px;
}
.title-s{
  font-size: 18px;
  font-weight: 600;
}
.amount-box {
  /* margin-top: 10px; */
  background-color: #e8f7fe;
  padding: 5px;
  border-radius: 8px;
  border: 1px solid #deecf4;
  display: flex;
  justify-content: space-between;
  /* width: 100%; */
  /* font-size: 35px; */
  /* line-height: 40px;
  font-weight: 600; */
  text-align: center;
}
/* .method .currency{
  font-size: 24px;
  font-weight: 600;
} */
.amount{
  font-size: 20px;
  font-weight: 600;
  color: #3493ff;
}
.transaction_fee{
  margin-top: 5px;
  font-size: 16px;
  color: #565454;
  display: flex;
  justify-content: space-between;
}
.transferStep_title{
  font-size: 16px;
  text-align: center;
  margin: 8px 10px 5px 10px;
}
.transferStep_title .tips{
  font-size: 12px;
  display: block;
  margin-top: 2px;
  color: #888;
}

/* .content {
  margin-top: 130px;
  margin-bottom: 60px;
  padding: 0 14px;
  box-sizing: border-box;
  background: #fff;
} */


.bottom {
  margin-top: 1rem;
}

.result {
  padding: 5rem 0;
  text-align: center;
}

.result .img {
  width: 10rem;
  margin: 0 auto 1rem;
}

.result + .bottom {
  padding-left: 1rem;
  padding-right: 1rem;
}

.invalid-main{
  padding: 1rem 2rem;
  border-radius: 5px;
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: #ffffff;
  z-index: 999;
  transform: translate(-50%, -50%);
}
.loading, .invalid {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  position: absolute;
  top: 0px;
  z-index: 999;
  background: rgba(170, 170, 170, 0.5);
}
.loader-logo {
  background: url(../img/logo.png) no-repeat;
  background-size: auto;
  background-position-x: center;
  background-position-y: bottom;
  background-size: 130px 50px;
  width: 100%;
  height: 50vh;
}
.loader {
  width: 100%;
  height: 100%;
  /* height: 50vh; */
  display: flex;
  justify-content: center;
  padding-top: 50vh;
  padding-bottom: 50vh;
}

@keyframes outercontainer {
  100% {
    transform: rotate(360deg);
  }
}
#ld4 {
  position: relative;
  display: flex;
  width: 32%;
  justify-content: space-between;
}
#ld4 div {
  height: 10px;
  width: 10px;
  margin-left: 2vh;
  border-radius: 50%;
  background: #d91e36;
}
#ld4 div:nth-child(1) {
  animation: ld4 3s linear infinite 0s;
}
#ld4 div:nth-child(2) {
  animation: ld4 3s linear infinite 0.15s;
}
#ld4 div:nth-child(3) {
  animation: ld4 3s linear infinite 0.3s;
}
#ld4 div:nth-child(4) {
  animation: ld4 3s linear infinite 0.45s;
}
#ld4 div:nth-child(5) {
  animation: ld4 3s linear infinite 0.6s;
}

@keyframes ld4 {
  0% {
    opacity: 0;
    transform: scale(0.5);
    background: #59cd90;
  }
  25% {
    opacity: 1;
    transform: scale(1);
    background: #0072bb;
  }
  50% {
    opacity: 0;
    transform: scale(0.5);
    background: #fe4a49;
  }
  75% {
    opacity: 1;
    transform: scale(1);
    background: #fed766;
  }
  100% {
    opacity: 0;
  }
}

#tip.show {
  visibility: visible;
  /* animation: fadeout 2.5s; */
}
/* @keyframes fadeout {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 0;
  }
} */
.showMessage {
  padding: 10px 15px;
  border-radius: 5px;
  position: fixed;
  top: 50%;
  left: 50%;
  color: #ffffff;
  z-index: 999999;
  transform: translate(-50%, -50%);
}

.showMessageSuccess {
  background-color: rgb(76, 76, 76,0.9);
  color: #fff;
}

.account_title{
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
}
.radio_single{
  border: 1px solid #efeff3;
  border-radius: 10px;
  padding: 10px 15px;
  margin-right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 2px 2px 2px rgba(188, 187, 187, 0.5);
  font-weight: 700;
}
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 15px;
  height: 15px;
  outline: none;
  border-radius: 50%;
  border: 2px solid #999;
  position: relative;
}
 
input[type="radio"]:checked {
  background-color: #FD8A58;
  border-color: #FD8A58;
  color: #FD8A58;
}
input[type="radio"]:checked + span {
  /* 改变选中状态下的文字颜色 */
  /* color: #FD8A58; */
}

.transfer_wallet{
  display: flex;
  justify-content:space-between;
  margin-bottom: 5px;
}
.option{
  width: 140px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #dcdada;
  border-radius: 8px;
}

.transaction{
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.transaction span{
  font-weight: 700;
  font-size: 18px;
}
.mobile{
  border: 1px solid #dcdddf;
  padding:8px;
  border-radius: 8px;
  width: 100%;
}
.submit{
  margin-top: 8px;
  font-size: 1rem;
  border-radius: 8px;
  color: #fff;
  background: #2e90ff;
  border: none;
  width: 100%;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0px;
  left: 0;
  box-sizing: border-box;
  box-shadow: 0px 2px 6px 1px rgba(137, 133, 133, 0.41);
  z-index: 999;
}
.step{
  color: #333;
  background-color: #d1e6ff;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1.4;
}
.stepTitle{
  font-size: 13px;
  font-weight: 600;
}
.number{
  font-size: 13px;
  font-weight: 800;
  padding-right: 10px;
}
.text{
  font-size: 16px;
}

  .option {
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s;
  }

  .option.selected {
    background-color: #3c96ff; /* 浅橙色 */
  }

   .show-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 半透明黑背景 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    max-width: 280px;
    width: 80%;
  }

  .success-icon {
    font-size: 48px;
    color: #52c41a;
    margin-bottom: 16px;
  }

  .loading-text {
    font-size:14px;
    color: #333333;
    font-weight: bold;
  }

  .loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3c96ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 16px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.fail-icon{
  margin-bottom: 20px;
}
.count-text{
  margin-top: 10px;
}
#countdownNum{
  font-size: 24px;
  font-weight: 800;
}
.success-text{
  font-size: 20px;
  font-weight: 700;
}


/* OTP弹窗 */
.otp_title{
  font-weight: 700;
  font-size: 22px;
}
.opt_tip, .otp_number{
  color: #a19f9f;
}
.opt_required{
  color: #d91e36;
}
.otp-fail-text,.otp-success-text{
  font-size: 14px;
  font-weight: bold;
}

/* Urdu translation styles */
.urdu-block {
  display: block;
  direction: rtl;
  font-size: 12px;
  color: #888;
  margin-top: 1px;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}
.urdu-inline {
  display: block;
  direction: rtl;
  font-size: 11px;
  color: #888;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}
.urdu-submit {
  font-size: 13px;
  opacity: 0.9;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  direction: rtl;
  unicode-bidi: embed;
}