.spinner {
  /*margin: 100px auto 0;*/
  width: 300px;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -100px;
  margin-left: -150px;
}

.spinner > img {
    margin: 0 50px;
}

.spinner > div {
  width: 25px;
  height: 25px;
  background-color: #8cc63f;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.4;
  animation-delay: -0.4s;
}

.spinner .bounce3 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.spinner .bounce4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.spinner .bounce5 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

.bounce1, .bounce2, .bounce3, .bounce4, .bounce5 {
	margin: 10px;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
  0%, 80%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

#egon-embedded-loader {
    background-color: rgba(255, 255, 255, 0.88);
}