.upload-progress,
.upload-progress:before,
.upload-progress:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}
.upload-progress {
  color: #f87618;
  font-size: 7px;
  position: relative;
  top: 40px;
  left: 50%;
}
.upload-progress:before,
.upload-progress:after {
  content: '';
  position: absolute;
  top: 0;
}
.upload-progress:before {
  left: -3.5em;
  animation-delay: -0.32s;
}
.upload-progress:after {
  left: 3.5em;
}

@keyframes bblFadInOut {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
