.initial-loading-indicator,
.initial-loading-indicator:before,
.initial-loading-indicator:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.initial-loading-indicator {
  color: #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.initial-loading-indicator:before,
.initial-loading-indicator:after {
  content: '';
  position: absolute;
  top: 0;
}
.initial-loading-indicator:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.initial-loading-indicator:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 2.5em 0 -0.5em;
  }
  40% {
    opacity: 0;
  }
}
@keyframes load7 {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 2.5em 0 -0.5em;
  }
  40% {
    opacity: 0;
  }
}
