/* [project]/src/components/Loader/loader.css [app-client] (css) */
.loader-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
}

.loader-dots {
  align-items: center;
  gap: 12px;
  display: flex;
}

.loader-dot {
  background: #0a4f52;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: 1.4s ease-in-out infinite dotBounce;
}

[data-theme="dark"] .loader-dot {
  background: #3b82f6;
}

.loader-dot:first-child {
  animation-delay: -.32s;
}

.loader-dot:nth-child(2) {
  animation-delay: -.16s;
}

@keyframes dotBounce {
  0%, 80%, 100% {
    opacity: .5;
    transform: scale(0);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

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