@import url(https://fonts.googleapis.com/css2?family=Sintony:wght@400;

700&display=swap);@import url(https://fonts.googleapis.com/css2?family=Tinos:wght@400;700&display=swap);.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 800;
  background-color: #1e183d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading small {
  content: attr(data-text);
  font-size: 12px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Sintony", sans-serif;
  letter-spacing: 0.4px;
  font-weight: 400;
  padding-left: 8px;
}

.loading .multi-ripple div {
  width: 1rem;
  height: 1rem;
  margin: 2rem 0.3rem;
  background: #d6193d;
  border-radius: 50%;
  transform: scale(0);
  -webkit-animation: 0.9s bounce infinite alternate;
          animation: 0.9s bounce infinite alternate;
}

.loading .multi-ripple div:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.loading .multi-ripple div:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes ripple {
  from {
    transform: scale(0);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes ripple {
  from {
    transform: scale(0);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 0;
  }
}

.loading .multi-ripple {
  width: 2.6rem;
  height: 2.6rem;
  margin: 2rem;
}

.loading .multi-ripple div {
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 0.3rem solid #d6193d;
  -webkit-animation: 1.5s ripple infinite;
          animation: 1.5s ripple infinite;
}

.loading .multi-ripple div:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

