/* [project]/app/(storefront)/_components/toast-stack.module.css [app-client] (css) */
.toast-stack-module__eTMuIG__portal {
  bottom: var(--spacing-6);
  align-items: center;
  gap: var(--spacing-2);
  z-index: 1000;
  pointer-events: none;
  max-width: calc(100vw - var(--spacing-8));
  flex-direction: column;
  display: flex;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

.toast-stack-module__eTMuIG__item {
  pointer-events: auto;
  animation: .18s ease-out toast-stack-module__eTMuIG__toast-fade-in;
}

@keyframes toast-stack-module__eTMuIG__toast-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@media (min-width: 1024px) {
  .toast-stack-module__eTMuIG__portal {
    bottom: var(--spacing-6);
    left: auto;
    right: var(--spacing-6);
    align-items: flex-end;
    transform: none;
  }
}

/* [project]/app/(storefront)/storefront.module.css [app-client] (css) */
.storefront-module__D8cP_q__root {
  background: var(--colors-bg-default);
  box-sizing: border-box;
  max-width: 402px;
  min-height: 100dvh;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .storefront-module__D8cP_q__root {
    max-width: 1080px;
  }
}

.storefront-module__D8cP_q__root *, .storefront-module__D8cP_q__root :before, .storefront-module__D8cP_q__root :after {
  box-sizing: border-box;
}

/*# sourceMappingURL=app_%28storefront%29_26cc21ee._.css.map*/