/*
 * Attribution: https://loading.io/css/
 */

.progress-ellipsis {
  z-index: 1;
  display: none;
  position: relative;
  width: 80px;
  height: 20px;

}

.progress-ellipsis div {
  position: absolute;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #199139;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.progress-ellipsis div:nth-child(1) {
  left: 8px;
  animation: progress-ellipsis1 0.6s infinite;
}

.progress-ellipsis div:nth-child(2) {
  left: 8px;
  animation: progress-ellipsis2 0.6s infinite;
}

.progress-ellipsis div:nth-child(3) {
  left: 32px;
  animation: progress-ellipsis2 0.6s infinite;
}

.progress-ellipsis div:nth-child(4) {
  left: 56px;
  animation: progress-ellipsis3 0.6s infinite;
}

@keyframes progress-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes progress-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes progress-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}