@-webkit-keyframes enter {
  0% {
    opacity: 0;
    top: -10px;
  }

  5% {
    opacity: 1;
    top: 0;
  }

  50.9% {
    opacity: 1;
    top: 0;
  }

  55.9% {
    opacity: 0;
    top: 10px;
  }
}

@keyframes enter {
  0% {
    opacity: 0;
    top: -10px;
  }

  5% {
    opacity: 1;
    top: 0;
  }

  50.9% {
    opacity: 1;
    top: 0;
  }

  55.9% {
    opacity: 0;
    top: 10px;
  }
}

@-moz-keyframes enter {
  0% {
    opacity: 0;
    top: -10px;
  }

  5% {
    opacity: 1;
    top: 0;
  }

  50.9% {
    opacity: 1;
    top: 0;
  }

  55.9% {
    opacity: 0;
    top: 10px;
  }
}

#spinner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 9999;
}

#spinner .spinner__inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
}

#spinner .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27.5px;
  margin-top: -27.5px;
}

#spinner .square {
  background: #026bb5;
  width: 15px;
  height: 15px;
  float: left;
  top: -10px;
  margin-right: 5px;
  margin-top: 5px;
  position: relative;
  opacity: 0;
  -webkit-animation: enter 6s infinite;
  animation: enter 6s infinite;
}

#spinner .enter {
  top: 0;
  opacity: 1;
}

#spinner .square:nth-child(1) {
  -webkit-animation-delay: 1.8s;
  -moz-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

#spinner .square:nth-child(2) {
  -webkit-animation-delay: 2.1s;
  -moz-animation-delay: 2.1s;
  animation-delay: 2.1s;
}

#spinner .square:nth-child(3) {
  -webkit-animation-delay: 2.4s;
  -moz-animation-delay: 2.4s;
  animation-delay: 2.4s;
  background: #f59f1a;
}

#spinner .square:nth-child(4) {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

#spinner .square:nth-child(5) {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

#spinner .square:nth-child(6) {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

#spinner .square:nth-child(8) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#spinner .square:nth-child(9) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

#spinner .clear {
  clear: both;
}

#spinner .last {
  margin-right: 0;
}
