.div-load {
  height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.load {
  display: flex;
  border-radius: 50%;
  flex-direction: row;
}

.progress-circle {
  width: 2em;
  height: 2em;
  margin: 0.4em;
  scale: 0;
  border-radius: 50%;
  background: #0f6931;
  animation: loading_492 2s ease infinite;
  animation-delay: 1s;
}

@keyframes loading_492 {
  50% {
    scale: 1;
  }
}

.progress-circle:nth-child(2) {
  animation-delay: 1.3s;
}

.progress-circle:nth-child(3) {
  animation-delay: 1.7s;
}
