#preload-01 { 
  background: url(earnr-logo-white.png) no-repeat -9999px -9999px;
}

body.loaded .loader {
  display: none;
}
.loader {
  background-color: var(--color-primary-800);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}  
.loader .inner {
  color: #fff;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
}
.loader .inner .heading {
  margin-top: 32px;
}
.loader .inner img {
  width: 171px;
  height: 38px;
}
.loader .inner .spinner {
  padding: 0;
  position: absolute;
  bottom: 16px;
}
.loader .inner .spinner li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 100%;
  background-color: #fff;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
  animation: bouncedelay 1.4s infinite ease-in-out both;
}
.loader .inner .spinner li.one {
  -webkit-animation-delay: -0.48s;
  animation-delay: -0.48s
}
.loader .inner .spinner li.two {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s
}
.loader .inner .spinner li.three {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s
}
@keyframes bouncedelay {
0%, 40%, 80%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1)
}

20% {
    transform: scale(1.3);
    -webkit-transform: scale(1.3)
}
}
