<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* .ripple-wrapper {
  width: 100%;
  display: inline-block;
  text-align: center;
  margin: auto;
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: auto;
}
.lds-ripple div {
  position: absolute;
  border: 3px solid #000;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

@media screen and (min-width: 768px) {
  .in-progress {
    position: relative;
    left: 45%;
    width: 10%;
    margin: 50px 0px 0px 0px;
    padding: 50px 0px 0px 0px;
  }
}
@media screen and (max-width: 767px) {
  .in-progress {
    position: relative;
    left: 40%;
    width: 10%;
    margin: 50px 0px 0px 0px;
    padding: 50px 0px 0px 0px;
  }
}
.in-progress::before {
  content: "";
  display: block;
  margin: auto;
  animation: 1.2s linear infinite progresswave;
  border: 2px solid var(--electricblue);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  position: absolute;
}
.in-progress &gt; section {
  display: none !important;
}
@keyframes progresswave {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.in-progress::after { animation-delay: .6s; }




.in-progress-small {
  position: relative;
  left: 4%;
  width: 10%;
  margin: 25px 0px 0px 0px;
  padding: 25px 0px 0px 0px;
  top: 25px;
}
.in-progress-small::before {
  content: "";
  display: block;
  margin: auto;
  animation: 1.2s linear infinite progresswave-small;
  border: 2px solid var(--electricblue);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  top: 50%;
  left: 50%;
  position: absolute;
}
.in-progress-small &gt; section {
  display: none !important;
}
@keyframes progresswave-small {
  0% {
    top: 18px;
    left: 18px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 18px;
    left: 18px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 18px;
    left: 18px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 36px;
    height: 36px;
    opacity: 0;
  }
}
.in-progress-small::after { animation-delay: .6s; } */</pre></body></html>