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

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

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

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

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

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

  50% {
    opacity: 1;
  }
}

/*# sourceMappingURL=src_app_%5Blocale%5D_%28main%29_Loading_module_02i-yov.css.map*/