/* [project]/src/assets/styles/components/toast.module.scss.module.css [app-client] (css) */
.toast-module-scss-module__Vf1N1a__toastContainer {
  z-index: 10000;
  pointer-events: none;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  display: flex;
  position: fixed;
  top: 20px;
  right: 20px;
}

.toast-module-scss-module__Vf1N1a__toast {
  pointer-events: auto;
  background: #fff;
  border-left: 4px solid;
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  padding: 16px;
  animation: .3s ease-out toast-module-scss-module__Vf1N1a__slideIn;
  display: flex;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.toast-module-scss-module__Vf1N1a__toast__icon {
  flex-shrink: 0;
  font-size: 20px;
}

.toast-module-scss-module__Vf1N1a__toast__message {
  color: #1d1d1f;
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}

.toast-module-scss-module__Vf1N1a__toast__close {
  cursor: pointer;
  color: #86868b;
  background: none;
  border: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 4px;
  transition: color .2s;
  display: flex;
}

.toast-module-scss-module__Vf1N1a__toast__close:hover {
  color: #1d1d1f;
}

.toast-module-scss-module__Vf1N1a__toast__close svg {
  font-size: 16px;
}

.toast-module-scss-module__Vf1N1a__toast.toast-module-scss-module__Vf1N1a__success {
  border-left-color: #34c759;
}

.toast-module-scss-module__Vf1N1a__toast.toast-module-scss-module__Vf1N1a__success .toast-module-scss-module__Vf1N1a__toast__icon {
  color: #34c759;
}

.toast-module-scss-module__Vf1N1a__toast.toast-module-scss-module__Vf1N1a__error {
  border-left-color: #ff3b30;
}

.toast-module-scss-module__Vf1N1a__toast.toast-module-scss-module__Vf1N1a__error .toast-module-scss-module__Vf1N1a__toast__icon {
  color: #ff3b30;
}

.toast-module-scss-module__Vf1N1a__toast.toast-module-scss-module__Vf1N1a__warning {
  border-left-color: #ff9500;
}

.toast-module-scss-module__Vf1N1a__toast.toast-module-scss-module__Vf1N1a__warning .toast-module-scss-module__Vf1N1a__toast__icon {
  color: #ff9500;
}

.toast-module-scss-module__Vf1N1a__toast.toast-module-scss-module__Vf1N1a__info {
  border-left-color: #007aff;
}

.toast-module-scss-module__Vf1N1a__toast.toast-module-scss-module__Vf1N1a__info .toast-module-scss-module__Vf1N1a__toast__icon {
  color: #007aff;
}

@keyframes toast-module-scss-module__Vf1N1a__slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

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

@media (max-width: 768px) {
  .toast-module-scss-module__Vf1N1a__toastContainer {
    max-width: none;
    left: 16px;
    right: 16px;
  }

  .toast-module-scss-module__Vf1N1a__toast {
    min-width: auto;
  }
}

/* [project]/src/app/globals.css [app-client] (css) */
@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

.spin {
  animation: 1s linear infinite spin;
}

/*# sourceMappingURL=src_82ef659e._.css.map*/