<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.nojs #loader {
  display: none;
}

#loader {
  align-items: center;
  background-color: #b1b0bf;
  border-radius: 50px;
  display: flex;
  height: 100px;
  justify-content: center;
  margin: 30px auto 390px;
  width: 100px;
}

.dot {
  animation: animate 1.4s infinite ease-in-out both;
  background-color: #FFF;
  border-radius: 100%;
  display: inline-block;
  height: 12px;
  margin: 0 2px;
  transform: scale(0.7);
  width: 12px;
}

.dot:first-child {
  animation-delay: -0.32s;
}

.dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes animate {
  0%,
  80%,
  100% {
    transform: scale(0.6);
  }

  40% {
    transform: scale(1);
  }
}
</pre></body></html>