.loader {
  z-index: 300;
  background-color: #006ab7;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  transition: opacity .75s, visibility .75s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader svg {
  animation: 1.2s infinite loading;
}

@keyframes loading {
  0% {
    opacity: 1;
  }

  25% {
    opacity: .5;
  }

  50% {
    opacity: 0;
  }

  75% {
    opacity: .5;
  }
}

/*# sourceMappingURL=index.41956c35.css.map */
