.spinner-a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  /* border: solid 0.25rem white; */
  margin: 0.5rem;
  background-color: #9fcd60;
  opacity: 0;
  animation: spinnerAAnimation 2s infinite;
}

.spinner-b {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin: 0.5rem;
  background-color: #9fcd60;
  opacity: 0;

  animation: spinnerBAnimation 2s infinite 0.5s;
}

.spinner-c {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin: 0.5rem;
  background-color: #9fcd60;
  opacity: 0;

  animation: spinnerCAnimation 2s infinite 1s;
}

.spinner-d {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin: 0.5rem;
  background-color: #9fcd60;
  opacity: 0;

  animation: spinnerDAnimation 2s infinite 1.5s;
}

@keyframes spinnerBAnimation {
  0% {
    transform: scale(0) translate(-4rem, 4rem);
    opacity: 1;
  }
  40% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(1) rotate(90deg);
  }
  100% {
    transform: scale(0) translate(-4rem, 4rem) rotate(90deg);
    opacity: 0;
  }
}

@keyframes spinnerAAnimation {
  0% {
    transform: scale(0) translate(4rem, 4rem);
    opacity: 1;
  }
  40% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(1) rotate(90deg);
  }
  100% {
    transform: scale(0) translate(4rem, 4rem) rotate(90deg);
    opacity: 0;
  }
}

@keyframes spinnerCAnimation {
  0% {
    transform: scale(0) translate(4rem, -4rem);
    opacity: 1;
  }
  40% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(1) rotate(90deg);
  }
  100% {
    transform: scale(0) translate(4rem, -4rem) rotate(90deg);
    opacity: 0;
  }
}

@keyframes spinnerDAnimation {
  0% {
    transform: scale(0) translate(-4rem, -4rem);
    opacity: 1;
  }
  40% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(1) rotate(90deg);
  }
  100% {
    transform: scale(0) translate(-4rem, -4rem) rotate(90deg);
    opacity: 0;
  }
}

.VictoryContainer {
  display: flex;
}