.hidden {
    display: none !important;

}

.loader {
    display: none;
}

.loader, .loader-sm {
    width: 400px;
    height: 200px;
    top: 190px;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
    z-index: 2222;
    margin: 0 auto;
    border-radius: 10px;
}

.back-drop {
    background-color: #000000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.5;
    position: fixed;
    z-index: 1111;
    transition: opacity 0.15s linear 0s;
}

.cursor-pointer {
    pointer:cursor;
}

.login-modal h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.login-modal .subtitle {
  color: #9a9a9a;
  margin-bottom: 20px;
}

.login-modal .progress {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.login-modal .progress div {
  height: 6px;
  flex: 1;
  background: #e6cfd2;
  border-radius: 10px;
}

.login-modal .progress div.active {
  background: #e53935;
}


.login-modal .group {
  margin-bottom: 22px;
}

.login-modal label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.login-modal input {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: #eaeaea;
  font-size: 15px;
}

.login-modal .row {
  display: flex;
  gap: 15px;
}

.login-modal .row .group {
  flex: 1;
}

.login-modal .gender {
  display: flex;
  gap: 15px;
}

.login-modal .gender-box {
  flex: 1;
  padding: 18px;
  border-radius: 16px;
  background: #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.login-modal .gender-box.active {
  border-color: #e53935;
  background: #fff;
}

.login-modal .radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #e53935;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-modal .radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #e53935;
  border-radius: 50%;
  display: none;
}

.login-modal .gender-box.active .radio::after {
  display: block;
}

.login-modal .btn {
  width: 100%;
  padding: 18px;
  border-radius: 30px;
  border: none;
  background: #3f3d99;
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
  cursor: pointer;
}

.login-modal .footer {
  text-align: center;
  margin-top: 25px;
  color: #aaa;
}

.login-modal .footer span {
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.login-modal .step {
  display: none;
}

.login-modal .step.active {
  display: block;
}

.text-end1 {
    text-align: end;
}

.font-12 {
    font-size: 12px;
}
.font-14 {
    font-size: 14px;
}
.font-16 {
    font-size: 16px;
}
.font-18 {
    font-size: 19px;
}
.font-20 {
    font-size: 20px;
}
.font-25 {
    font-size: 25px;
}