body {
  padding: 0;
  margin: 0;
}

@keyframes spin1 {
  0% {
    transform: rotate(0deg);
    animation-timing-function: linear;
  }

  23% {
    transform: rotate(135deg);
    animation-timing-function: linear;
  }

  45% {
    transform: rotate(240deg);
    animation-timing-function: ease-out;
  }

  100% {
    transform: rotate(360deg);
    animation-timing-function: linear;
  }
}

@keyframes spin2 {
  0% {
    transform: rotate(0deg);
    animation-timing-function: linear;
  }

  23% {
    transform: rotate(45deg);
    animation-timing-function: linear;
  }

  45% {
    transform: rotate(160deg);
    animation-timing-function: ease-out;
  }

  100% {
    transform: rotate(360deg);
    animation-timing-function: linear;
  }
}

#worklair-loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  position: absolute;
}

.spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  z-index: -1;
  position: relative;

  --animation-time: 1.4s;
}

.spinner .dash-circle {
  width: 28px;
  height: 28px;
  border: 1px dashed #B2B2B2;
  border-radius: 999px;

  animation: spin1 var(--animation-time) infinite linear;
}

.spinner .core {
  width: 10px;
  height: 10px;
  background: #EDB012;
  border-radius: 999px;
}

.spinner .center-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.spinner .small-circle-cutouts1 {
  width: 35px;
  height: 35px;

  animation: spin1 var(--animation-time) infinite linear;
}

.spinner .small-circle-cutouts2 {
  width: 35px;
  height: 35px;

  animation: spin2 var(--animation-time) infinite linear;
}

.spinner .small-circle-cutout {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 999px;
}

.spinner .small-circles1 {
  width: 33px;
  height: 33px;

  animation: spin1 var(--animation-time) infinite linear;
}

.spinner .small-circles2 {
  width: 33px;
  height: 33px;

  animation: spin2 var(--animation-time) infinite linear;
}

.spinner .small-circle {
  width: 4px;
  height: 4px;
  background: #7257FA;
  border-radius: 999px;
}

.spinner .circle1-position {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.spinner .circle2-position {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.progress-text {
  font-family: sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #1A1A1A;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-32 {
  margin-bottom: 32px;
}
