@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/PlusJakartaSans-Variable.woff2') format('woff2-variations'),
       url('/PlusJakartaSans-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Plus Jakarta Sans';
}

#page-pre-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  height: 100vh;
  width: 100vw;
  background: white;
}
.loading {
  text-align: center;
}
.wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.text {
  color: #1d1d20;
  display: inline-block;
  margin-left: 12px;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 128.571% */
  letter-spacing: -0.56px;
}
.subtext {
  color: #5e5e6b;
  display: inline-block;
  margin-left: 12px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 128.571% */
  letter-spacing: -0.56px;
}
em {
  color: #6875ec;
  display: inline-block;
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.56px;
}
.bounceball {
  position: relative;
  display: inline-block;
  height: 37px;
  width: 15px;
}
.bounceball:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #6875ec;
  transform-origin: 50%;
  animation: bounce 500ms alternate infinite ease;
}
@keyframes bounce {
  0% {
    top: 30px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    transform: scaleX(2);
  }
  35% {
    height: 15px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0;
  }
}
.loader {
  width: 40px;
  height: 24px;
  display: inline-block;
  color: #6875ec;
  --c: radial-gradient(farthest-side, currentColor 96%, #0000);
  background:
    var(--c) 100% 100% /30% 60%,
    var(--c) 70% 0 /50% 100%,
    var(--c) 0 100% /36% 68%,
    var(--c) 27% 18% /26% 40%,
    linear-gradient(currentColor 0 0) bottom/67% 58%;
  background-repeat: no-repeat;
  position: relative;
}
.loader:after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.4;
  animation: l7 1s infinite;
}
@keyframes l7 {
  to {
    transform: scale(1.8);
    opacity: 0;
  }
}
.progress-bar {
  display: block;
  margin-left: 8px;
  margin-top: 12px;
  width: 100%;
  background-color: #e0e0e0;
  padding: 0;
  border-radius: 6px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar-fill {
  display: block;
  height: 12px;
  background-color: #6875ec;
  border-radius: 6px;
  transition: width 300ms ease-in-out;
  width: 0;
}

/* Helper classes to replace inline styles */
.loader-logo {
  max-width: 180px;
  display: block;
  margin: 24px auto;
}

.loader-subtext {
  margin-top: 8px;
  display: block;
}
