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

.loading-dot {
  -webkit-animation: dot ease-in-out 1s infinite;
          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) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

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

@-webkit-keyframes dot {
  0% {
    background-color: #3e768f;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    background-color: #a3d7ef;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    background-color: #3e768f;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes dot {
  0% {
    background-color: #3e768f;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    background-color: #a3d7ef;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    background-color: #3e768f;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}/*# sourceMappingURL=preload.css.map */