/* Stepper CSS */
:root{
  --bg-light:#d9f1ff;
  --card-bg:#fff;
  --accent:#00a9e4;
  --accent-dark:#0084b5;
  --text-main:#1b2733;
  --text-muted:#66798f;
  --green-pill:#00c08b;
  --input-border:#d3e2ed;
  --radius:8px;
  --shadow:0 4px 20px rgba(0,0,0,.08);
}
.containerpopup {
    margin: 0 auto;
    position: relative;
    border-radius: 6px;
    padding-bottom: 1px;
    width: 340px;
  }
  .step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
  }
  .step-indicator {
    color: #666;
    border: 1px solid #e6e6e6;
    padding: 0px 6px;
    border-radius: 6px;
  }
  .active-step-title {
    font-size: 1.25rem;
  }
  .wizard > .steps > ul,
  .wizard .steps .current-info,
  .wizard .actions {
    display: none !important;
  }
  .wizard > .content > .title {
    display: none !important;
  }
  .wizard > .content {
    border-radius: 6px;
    margin-bottom: 1rem;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  label {
    margin-bottom: 0.25rem;
    font-weight: 500;
  }
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="date"],
  select {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .small-note {
    font-size: 0.8rem;
    color: #555;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
  }
  .tnc-box {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    border-radius: 4px;
    line-height: 1.4;
  }
  body #custom-checkout .step-button {
    display: inline-block;
    padding: 0.65rem 1.2rem;
    background-color: #00A3D9;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    width: 100%;
  }
  .step-button:hover {
    background-color: #0056b3;
  }
  .couponApply, .couponApplied{
    display:none;
  }
  .small-print {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
  }
  label.error {
    color: red;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: normal;
  }
  #otp {
    text-align: center;    
    letter-spacing: 1rem; 
  }
  .error_email, .error_otp{
    color: red;
    font-size: 12px;
  }
  #custom-checkout .form-group{
    position: relative;
  }
  #custom-checkout .form-group img.icon{
    position: absolute;
    top: 20px;
    right: 10px;
    transform: translateY(-50%);
    transition: opacity 0.3s ease-in-out;
  }
  #resend-countdown, #resend-otp-link{ 
    color: #00A3D9;
  }
  #success-message{
    color: green;
    margin:0;
  }
  .or-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 10px 0;
}
.or-separator::before,
.or-separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
}
.or-separator span {
    padding: 0 10px;
    font-weight: bold;
    color: #666;
}
.kycValidate h4{
  margin:0;
  font-size: 20px;
  position: relative;
}
.kycValidate h4 .StpCompleted{
  position: absolute;
  left: -25px;
}
.kycValidate h4 .StpPending{
  position: absolute;
  left: -25px;
  bottom: 1px;
}
.kycValidate h4 .StpPending img{
  width: 20px;
}
.kycValidate p{
  margin:0;
  font-size: 14px;
}
.kycValidate .form-group{
  margin-bottom: 6px;
}
.kycValidate select{
  background-image: unset;
}
.kycValidate .skip-button{
  display: inline-block;
  color: #000;
  text-decoration: underline;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  margin-top: 7px;
  font-weight: 400;
  text-align: center;
}
.kycValidate .coupon-pill{
  display: inline-flex  ;
  align-items: center;
  gap: .4rem;
  background: var(--green-pill);
  color: #000;
  font-size: 12px;
  padding: .12rem .5rem;
  border-radius: var(--radius);
}
.kycValidate {
  margin-top: -4%;
  margin-left: 5%;
}

input.coupon-code{
  width: 46%;
  margin: 0 auto;
}

.discountCoupon{
  background: #FFFFFF;
  border-radius: 10px;
  text-align: center;
  padding: 3% 1%;
  margin: 14px 2px;
}
.coupon-container {
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 5px 10px;
  font-family: sans-serif;
}

.coupon-label {
  background-color: #16c79a;
  color: white;
  padding: 8px 12px;
  border-radius: 4px 0 0 4px;
  font-weight: 500;
}

.coupon-code {
  background-color: #16c79a;
  color: #000;
  padding: 8px 12px;
  font-weight: bold;
  border: none;
  outline: none;
  pointer-events: none;
  user-select: all;
}

.copy-button {
  border: none;
  padding: 10px 11px 8px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: 0px;
  right: 70px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.copy-button:hover {
  background-color: #60e3c2;
}

.copy-button svg {
  width: 16px;
  height: 16px;
  fill: #000;
}
.noteTrailtext{
  display: none;
}