:root {
  --size: 40px;
  --color: rgba(232, 154, 190, .7);
}

#loading-animation {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%)
  /* visibility: hidden; */
}

.chase {
  margin: 0 auto;
  width: var(--size);
  height: var(--size);
  position: relative;
  animation: chase 2.5s infinite linear both;
  /* background-color: white; */
}

.chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: chase-dot 2.0s infinite ease-in-out both;
  /* background-color: red; */
}

.chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--color);
  border-radius: 50%;
  animation: chase-dot-before 2.0s infinite ease-in-out both;
}

.chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.chase-dot:nth-child(2) {
  animation-delay: -1.0s;
}

.chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.chase-dot:nth-child(2):before {
  animation-delay: -1.0s;
}

.chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes chase {
  100% {
    transform: rotate(360deg)
  }
}

@keyframes chase-dot {
  80%, 100% {
    transform: rotate(360deg)
  }
}

@keyframes chase-dot-before {
  50% {
    transform: scale(0.4)
  }
  100%, 0% {
    transform: scale(1.0)
  }
}