/*========================
  1.2 Variable Style start
==========================*/
/* font family */
/* color variables */
:root {
    --primary-color: #ffd700;
    --secondry-color: #f8f8f8;
    --white-color: #fff;
    --black-color: #111;
  }
  
  /* base scss files */
  /*=====================
    2.1  Reset Style start
  ==========================*/
  * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  a {
    cursor: pointer;
  }
  
  /* section,
  .section-t-space {
    padding-top: calc(30px + 50 * (100vw - 320px) / 1600);
  } */
  
  .section-b-space {
    padding-bottom: calc(30px + 50 * (100vw - 320px) / 1600);
  }
  
  .section-md-t-space {
    padding-top: calc(30px + 10 * (100vw - 320px) / 1600);
  }
  
  .section-md-b-space {
    padding-bottom: calc(20px + 20 * (100vw - 320px) / 1600);
  }
  
  @media (min-width: 1540px) {
    .container {
      padding: 0 20px;
      /* max-width: 1500px; */
    }
  }
  .custom-container {
    padding: 0 calc(20px + 60 * (100vw - 320px) / 1600);
  }
  
  .panel-space {
    padding-top: 85px !important;
  }
  @media (min-width: 786px) {
    .panel-space {
      display: none;
    }
  }
  
  .theme-color {
    color: var(--primary-color) !important;
  }
  
  .dark-text {
    color: rgba(var(--dark-text), 1) !important;
    font-weight: 500;
  }
  
  .content-color {
    color: rgba(var(--content-color), 1) !important;
  }
  
  .bg-color {
    background-color: rgba(var(--box-bg), 1) !important;
  }
  
  .bg-theme {
    background-color: rgba(var(--theme-color), 1) !important;
  }
  
  .white-bg {
    background-color: rgba(var(--white), 1) !important;
  }
  
  .auth-bg {
    background-color: rgba(var(--auth-bg), 1) !important;
  }
  
  .error-color {
    color: rgba(var(--error-color), 1) !important;
  }
  
  .success-color {
    color: rgba(var(--success-color), 1) !important;
  }
  
  .rate-color {
    color: rgba(var(--rate-color), 1) !important;
  }
  
  .error-bg {
    background-color: rgba(var(--error-color), 1) !important;
  }
  
  .secondary-bg {
    background-color: rgba(var(--secondary-color), 1) !important;
  }
  
  .theme-border {
    border: 1px solid rgba(var(--theme-color), 1) !important;
  }
  
  [dir="rtl"] .swiper {
    direction: ltr;
  }
  
  /* Works for Chrome, Safari, Edge, Opera */
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  /* Works for Firefox */
  input[type="number"] {
    -moz-appearance: textfield;
  }
  
  @media (max-width: 767px) {
    .responsive-space {
      height: calc(70px + 2 * (100vw - 320px) / 1600);
    }
  }
  
  .custom-row .col {
    width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  @media (max-width: 1578px) {
    .custom-row .col {
      width: 25%;
    }
  }
  @media (max-width: 1310px) {
    .custom-row .col {
      width: 33.33%;
    }
  }
  @media (max-width: 1040px) and (min-width: 992px) {
    .custom-row .col {
      width: 50%;
    }
  }
  @media (max-width: 695px) {
    .custom-row .col {
      width: 50%;
    }
  }
  @media (max-width: 455px) {
    .custom-row .col {
      width: 100%;
    }
  }
  
  @media (max-width: 416px) {
    .custom-sm-100 > * {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: 100%;
    }
  }
  
  [dir="rtl"] [type="email"],
  [dir="rtl"] [type="number"],
  [dir="rtl"] [type="tel"],
  [dir="rtl"] [type="url"] {
    direction: rtl;
  }
  
  .dir-rtl {
    direction: rtl;
  }
  [dir="rtl"] .dir-rtl {
    direction: rtl;
  }
  
  /*========================
    2.2  Typography Style start
  ==========================*/
  body {
    position: relative;
    font-family: "Changa", sans-serif;
    background-blend-mode: screen;
    background: rgba(var(--white), 1) !important;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  html {
    scroll-behavior: smooth;
  }
  /* body::-webkit-scrollbar {
    scrollbar-width: none;
    scrollbar-color: #000000;
    width: 0px;
  } */
  body::-webkit-scrollbar-track {
    background-color: rgba(var(--box-bg), 1);
  }
  body::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 0px;
    border: 3px solid rgba(var(--theme-color), 1);
  }
  body.noice-background {
    background: url("../images/noice.jpg") !important;
  }
  body.noice-background::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #f1eee9;
    opacity: 0.8;
    z-index: -1;
  }
  
  .space-family {
    font-family: "Space Grotesk", sans-serif;
  }
  
  h1 {
    font-weight: 700;
    font-size: calc(25px + 55 * (100vw - 320px) / 1600);
    margin-bottom: 0;
  }
  
  h2 {
    font-weight: 600;
    font-size: calc(20px + 10 * (100vw - 320px) / 1600);
    margin-bottom: 0;
  }
  
  h3 {
    font-weight: 500;
    font-size: calc(18px + 6 * (100vw - 320px) / 1600);
    margin-bottom: 0;
  }
  
  h4 {
    font-weight: 400;
    font-size: calc(16px + 6 * (100vw - 320px) / 1600);
    margin-bottom: 0;
  }
  
  h5 {
    font-weight: 400;
    font-size: calc(15px + 5 * (100vw - 320px) / 1600);
    line-height: 1.5;
    margin-bottom: 0;
  }
  
  h6 {
    font-weight: 400;
    font-size: calc(14px + 4 * (100vw - 320px) / 1600);
    line-height: 1.5;
    margin-bottom: 0;
  }
  
  p {
    font-size: calc(14px + 4 * (100vw - 320px) / 1600);
    margin-bottom: 0;
  }
  
  a {
    text-decoration: none;
  }
  
  ul {
    padding: 0;
    margin-bottom: 0;
  }
  
  li {
    list-style: none;
    /* display: inline-block; */
    font-size: 14px;
  }
  
  .scroll-bar {
    /* Chrome, Edge, and Safari */
  }
  .scroll-bar {
    scrollbar-width: auto;
    scrollbar-color: rgba(var(--theme), 1);
  }
  .scroll-bar::-webkit-scrollbar {
    width: 3px;
  }
  .scroll-bar::-webkit-scrollbar-track {
    background: rgba(var(--theme), 0.3);
    border-radius: 20px;
  }
  .scroll-bar::-webkit-scrollbar-thumb {
    background-color: rgba(var(--theme), 1);
    border-radius: 10px;
  }

  .sign-in-content h3{
    font-size:36px;
    color: #0C1421;
    line-height: 36px;
    font-weight: 600;
    padding-bottom: 15px;
  }
  .sign-in-content p{
    font-size:20px;
    color: #313957;
    line-height: 32px;
    font-weight: 400;
    padding: 15px 0;
  }
  .form-login{
    display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  }
  .form-input input{
    width: 100%;
  }
  .login-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
  .auth-form  .form-input label{
   color: #0C1421;
   font-size: 16px;
   font-weight: 400;
   line-height: 16px;
   padding: 10px 0;
  }
  .auth-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /* .auth-form .form-input {
    position: relative;
    width: 100%;
    margin-bottom: calc(10px + 10 * (100vw - 320px) / 1600);
  } */
  /* .auth-form .form-input span {
    position: absolute;
    top: 69%;
    left: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding-right: 10px;
    color: rgba(var(--content-color), 1);
  } */
  /* .auth-form .form-input span {
    padding-left: 10px;
    padding-right: unset;
    left: unset;
    right: 15px;
  } */
  .auth-form .form-input .form-control {
    color: rgba(var(--content-color), 1);
    background-color:#F7FBFF
    ;
    border: 1px solid #D4D7E3;
    -webkit-box-shadow: none;
            box-shadow: none;
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
    /* padding: 20px -1px 11px 60px !important; */
    border-radius: 12px;
  }
  .auth-form .form-input .form-control {
    padding: 15px 20px 20px 20px;;
    text-align: left;
  }
  .auth-form .form-input .form-control:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: none;
  }
  .auth-form .form-input .form-control::-ms-input-placeholder {
    color: rgb(136, 136, 136);
    margin-top: 10px;
  }
  .auth-form .form-input .form-control::placeholder {
    color: rgb(136, 136, 136);
    
  }
  .forget{
    float: right;
    color: #1E4AE9;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
  }
  .sign-in-btn{
    background-color:#FFD700 ;
    padding: 16px 0 16px 0;
    color:#000000 ;
    border-radius: 12px;
    font-size: 20px;
    line-height: 20px;
    margin: 20px 0;
    border-radius: 12px !important;
  }
  .sign-in-btn:hover{
    background-color:#FFD700 ;
    padding: 16px 0 16px 0;
    color:#000000 ;
    border-radius: 12px;
    font-size: 20px;
    line-height: 20px;
  }
  .sign-in-ask{
    color: #313957 !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
  }
  .sign-in-ask span{
    color: #1E4AE9 !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
  }
  .sign-in-copy p{
    margin-top: 60px !important;
  }
  .sign-in-img  img{
    position: relative;
    top: -25px;
    width: 816px !important;
    height: 100%;
    border-radius: 24px;
  }

  /*signup*/
  .process-section {
    /* padding: calc(10px + 15 * (100vw - 320px) / 1600) calc(10px + 20 * (100vw - 320px) / 1600); */
    padding: 15px 0;
    background-color: rgba(var(--white), 1);
  }

  .process-section .process-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .process-section .process-list li {
    text-align: center;
    position: relative;
  }
  .process-section .process-list li.active .process-icon {
    border: 1px solid var(--primary-color);
  }
  .process-section .process-list li.active svg {
    width: calc(25px + 15 * (100vw - 320px) / 1600);
  }
  .process-section .process-list li.active h6 {
    color: #313957;
    font-weight: 500;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px; 
  }
  .process-section .process-list li.active::before {
    border-bottom-color: var(--primary-color);
  }
  .process-section .process-list li.done .process-icon {
    border: 1px solid var(--primary-color);
  }
  .process-section .process-list li.done svg {
    width: calc(25px + 15 * (100vw - 320px) / 1600);
  }
  .process-section .process-list li.done h6 {
    color:#313957;
  }
  .process-section .process-list li.done::before {
    border-bottom-color: var(--primary-color);
  }
  .process-section .process-list li:first-child::before {
    content: none;
  }
  .process-section .process-list li::before {
    content: "";
    position: absolute;
    right: 40px;
    top: 30%;
    width: 200px;
    height: 1px;
    border: 1px solid #D4D7E3
    ;
  }
  .process-section .process-list li::before {
    left: -158px;
    right: unset;
  }
  @media (max-width: 1623px) {
    .process-section .process-list li::before {
      /* width: 255px; */
    }
  }
  @media (max-width: 1399px) {
    .process-section .process-list li::before {
      width: 210px;
    }
  }
  @media (max-width: 1199px) {
    .process-section .process-list li::before {
      width: 170px;
    }
  }
  @media (max-width: 766px) {
    .process-section .process-list li::before {
      width: 120px;
    }
  }
  @media (max-width: 470px) {
    .process-section .process-list li::before {
      width: 100px;
    }
  }
  @media (max-width: 410px) {
    .process-section .process-list li::before {
      width: 80px;
    }
  }
  @media (max-width: 345px) {
    .process-section .process-list li::before {
      width: 60px;
    }
  }
  .process-section .process-list li a {
    display: block;
  }
  .process-section .process-list li:nth-child(2){
    margin-left: 64px;
  }
  .process-section .process-list li:nth-child(3){
    margin-left: 64px;
  }
  .process-section .process-list li .process-icon {
    width: 31px;
    height: 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0px;
    margin: 0 auto;
    border: 1px solid #D4D7E3
    ;
    border-radius: 100%;
    background-color: #fff;
    position: relative;
    z-index: 1;
  }
  .process-section .process-list li .icon {
    width: calc(25px + 15 * (100vw - 320px) / 1600);
  }

  .process-section .process-list li h6 {
    color:#E9EBF1
    ;
    margin-top: 4px;
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
  }
.stage-process{
 /* word-wrap: break-word; */
 text-overflow: ellipsis;
 white-space: nowrap;
 overflow: hidden;
 font-size: 50px;
 
}
.process-icon h5{
  color:#E9EBF1 ;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
}
/*otp*/
.otp-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: unset;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* width: 90%; */
}
.otp-form {
  text-align: right;
}
.otp-form h2 {
  margin-bottom: calc(10px + 10 * (100vw - 320px) / 1600);
}
.otp-form h6 {
  margin-bottom: 5px;
  color: rgba(var(--content-color), 1);
  font-weight: 400;
  margin-top: 10px;
}
.otp-form .otp-number {
  color: rgb(61, 61, 61);
  font-weight: 500;
}
@media (max-width: 600px) {
  .otp-form {
    gap: calc(10px + 10 * (100vw - 320px) / 1600);
  }
}
.otp-form .form-input::-webkit-outer-spin-button, .otp-form .form-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.otp-form .form-input .form-control {
  background: #FFFFFF
  ;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 6px;
  border: none;
  border: 1px solid #D4D7E3
  ;
  color: rgba(var(--dark-text), 1);
  text-align: center;
  height: 58px;
  width: 58px;
  padding: calc(5px + 10 * (100vw - 320px) / 1600);
}
.otp-form .form-input .form-control::-webkit-input-placeholder {
  color: rgb(136, 136, 136);
}
.otp-form .form-input .form-control::-moz-placeholder {
  color: rgb(136, 136, 136);
}
.otp-form .form-input .form-control:-ms-input-placeholder {
  color: rgb(136, 136, 136);
}
.otp-form .form-input .form-control::-ms-input-placeholder {
  color: rgb(136, 136, 136);
}
.otp-form .form-input .form-control::placeholder {
  color: rgb(136, 136, 136);
}
.otp-form .form-input .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--primary-color);
}
.resend-otp{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 25px 0;
}
.resend-otp h5{
  color: #313957;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px; 
}
.resend-otp span{
  color: #1E4AE9;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px; 
}
.next-otp{
  background-color:#FFD700 ;
  padding:16px 0 16px 0 ;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  border-radius: 12px !important;

}
.next-otp:hover{
  background-color:#FFD700 ;
  padding:16px 0 16px 0 ;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}
.iti {
  position: relative;
  display: block;

}
#donorPhone{
  padding: 15px 20px 20px 20px !important; 
}
.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container{
  left: auto;
  right: 0;
}
.iti--separate-dial-code .iti__selected-flag{
  /* background-color: #F7FBFF ; */
  border-left: 1px solid #D4D7E3;
}
