/* [project]/src/app/Loading.module.css [app-client] (css) */
.Loading-module__iFoz4a__loadingContainer {
  background-color: var(--background);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.Loading-module__iFoz4a__logoContainer {
  width: 200px;
  height: 200px;
  animation: 3s ease-in-out infinite Loading-module__iFoz4a__spin;
  position: relative;
}

.Loading-module__iFoz4a__logo {
  object-fit: contain;
  animation: 2s ease-in-out infinite Loading-module__iFoz4a__fadeInOut;
}

@keyframes Loading-module__iFoz4a__spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes Loading-module__iFoz4a__fadeInOut {
  0%, 100% {
    opacity: .2;
  }

  50% {
    opacity: 1;
  }
}

/*# sourceMappingURL=src_app_Loading_module_0_vb6ok.css.map*/