.repay-counter-stats {
  position: relative;
}
.repay-counter-stats > * {
  position: relative;
  z-index: 1;
}
.repay-counter-stats__heading {
  color: #80c430;
  font-size: 1.5rem;
  padding: 0 2rem;
}
.repay-counter-stats__stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin: 2rem auto;
  padding: 0;
  justify-content: space-evenly;
  row-gap: 2rem;
  column-gap: 2rem;
  list-style: none;
}
.repay-counter-stats__stat {
  aspect-ratio: 1/1;
  width: calc((100% - 6rem) / 4);
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1rem;
  text-align: center;
  font-size: 2.25rem;
}
.repay-counter-stats__stat::before {
  content: "";
  background-image: url(../img/circle-dots-green-to-blue-single-quad.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 1s;
  opacity: 0;
  z-index: -1;
}
.repay-counter-stats__stat.in-view::before {
  animation: spin-in 10000ms ease-out;
  animation-delay: var(--transition-delay, 0);
}
.repay-counter-stats__stat.counter-finished::before {
  opacity: 1;
}
@media (max-width: 992px) {
  .repay-counter-stats__stat {
    width: calc((100% - 2rem) / 2);
    padding: 7% !important;
  }
}
@media screen and (max-width: 400px) {
  .repay-counter-stats__stat {
    width: 250px;
    padding: 10% !important;
    margin: auto;
  }
}
@media screen and (max-width: 1500px) {
  .repay-counter-stats__stat {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 1200px) {
  .repay-counter-stats__stat {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 992px) {
  .repay-counter-stats__stat {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .repay-counter-stats__stat {
    font-size: 1.55rem;
  }
}
@media screen and (max-width: 576px) {
  .repay-counter-stats__stat {
    font-size: 5vw;
  }
}
@media screen and (max-width: 400px) {
  .repay-counter-stats__stat {
    font-size: 2rem;
  }
}
@keyframes spin-in {
  0% {
    transform: rotate(360deg) scale(0.5);
    opacity: 0;
  }
  20%, 100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}
.repay-counter-stats__stat-number {
  margin: 0;
  font-size: 1em;
  text-transform: none;
}
.repay-counter-stats__stat-subtext {
  color: #80c430;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.5em;
}

/*# sourceMappingURL=counter-stats.css.map */
