body{
  margin: 0;
  padding: 0;
  background: #fff;
}

#loader{
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}
.spinner {
  width: 0;
  text-align: center;
  position: relative
}

.spinner > div {
  width: 60px;
  height: 60px;
  position: absolute;
  opacity: 0.8;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  top: -48px;
  left: -35px;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background: linear-gradient(135deg, #a6de00 10%, #19803c 90%);
}

.spinner .bounce2 {
  top: -20px;
  left: -31px;
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background: linear-gradient(135deg, #FFFF07 10%, #e58900 90%);
}

.spinner .bounce3 {
  top: -34px;
  left: -8px;
  background: linear-gradient(135deg, #0066db 10%, #7a0099 90%);
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(1) }
  40% { -webkit-transform: scale(1.4) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  } 40% {
      -webkit-transform: scale(1.4);
      transform: scale(1.4);
    }
}