.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  opacity: 1;
}
.loading.complete {
  transition: opacity 0.5s;
  opacity: 0;
}

.loading-dot {
  animation: dot ease-in-out 1s infinite;
  background-color: grey;
  display: inline-block;
  height: 20px;
  margin: 10px;
  width: 20px;
  border-radius: 6px;
}

.loading-dot:nth-of-type(2) {
  animation-delay: 0.2s;
}

.loading-dot:nth-of-type(3) {
  animation-delay: 0.3s;
}

@keyframes dot {
  0% {
    background-color: rgb(153, 153, 153);
    transform: scale(1);
  }
  50% {
    background-color: rgb(239, 239, 239);
    transform: scale(1.3);
  }
  100% {
    background-color: rgb(153, 153, 153);
    transform: scale(1);
  }
}/*# sourceMappingURL=preload.css.map */