:root {
  --green-100:rgba(177, 212, 212, 1);
  --fontfamilyPfamily: ZillaSlab_regular;
  --fontfamilySfamily:HostGrotesk_regular;
}

@font-face {
  font-family: HostGrotesk_regular;
  src: url("../../../../fonts/host_grotesk/font-files/HostGrotesk-Regular.ttf");
}
@font-face {
  font-family: HostGrotesk_light;
  src: url("../../../../fonts/host_grotesk/font-files/HostGrotesk-Light.ttf");
}
@font-face {
  font-family: HostGrotesk_italic;
  src: url("../../../../fonts/host_grotesk/font-files/HostGrotesk-Italic.ttf");
}
@font-face {
  font-family: ZillaSlab_regular;
  src: url("../../../../fonts/zilla_slab/font-files/ZillaSlab-Regular.ttf");
}
/*==============================================
    Loader and onboarding animation backdrop styles
================================================*/
#global-loader,
#onboarding-animation-loader {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(46, 45, 56, 0.46);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
#global-loader img,
#onboarding-animation-loader img {
  border-radius: 50%;
}

/*==============================================
    Notify message styles
================================================*/
#notifier-loader {
  position: fixed;
  width: 100%;
  z-index: 1000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 0.2s 0.8s;
}

#notifier-loader.visible {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 0.25s 0.7s;
}

#notifier-loader h4 {
  text-align: center !important;
}

#notifier-loader .text-validation {
  background-color: #FBEAB8;
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
}

.loader-container .loader-progress .loader-text {
  font-family: "HostGrotesk_regular";
}

/*==============================================
    Onboarding animation styles
================================================*/
#onboarding-animation {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(32, 32, 37, 0.4431372549);
  display: flex;
  align-items: center;
  justify-content: center;
}

#onboarding-animation * {
  font-family: "HostGrotesk_regular";
  font-size: 14px;
  line-height: 136%;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0;
  vertical-align: middle;
  margin: 0px !important;
}

#onboarding-animation .card {
  border-radius: 16px;
  padding: 2.5rem 2rem;
  min-width: 350px;
  width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  background: rgba(32, 32, 37, 0.2901960784);
  gap: 1rem;
}

#onboarding-animation .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

#onboarding-animation .img-loader {
  animation: pulse 2.5s linear infinite forwards;
  border-radius: 50%;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
#onboarding-animation .stage {
  width: 100%;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#onboarding-animation .step-card {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

#onboarding-animation .step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

#onboarding-animation .step-card.exit {
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#onboarding-animation .step-label {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.01em;
}

#onboarding-animation .dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

#onboarding-animation .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e0e0e0;
  transition: background 0.4s, transform 0.4s;
}

#onboarding-animation .dot.active {
  background: #027373;
  transform: scale(1.3);
}

#onboarding-animation .dot.done {
  background: #F2BC1B;
  transform: scale(1);
}

#onboarding-animation .counter {
  font-size: 12px;
  color: #aaa;
  transition: opacity 0.3s;
}

#onboarding-animation .redirect-msg {
  display: none;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  background: #027373;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=loaders.css.map */