/* [project]/components/ErrorState.module.css [app-client] (css) */
.ErrorState-module__qd5lUW__root {
  width: 100%;
  min-height: 100dvh;
  padding: var(--mantine-spacing-xl);
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.ErrorState-module__qd5lUW__title {
  color: var(--mantine-color-royal-8);
  margin: 0;
  animation: .9s cubic-bezier(.16, 1, .3, 1) both ErrorState-module__qd5lUW__rise;
}

@keyframes ErrorState-module__qd5lUW__rise {
  from {
    opacity: 0;
    letter-spacing: .02em;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ErrorState-module__qd5lUW__title {
    animation-duration: 1ms;
  }
}

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