#toast-notifier-container {
  font-family: Arial, sans-serif;
}
#toast-notifier-container > div {
  animation: fadeIn 0.3s ease, fadeOut 0.3s ease 3s;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
#toast-notifier-container > div.success {
  background-color: green;
}
#toast-notifier-container > div.warning {
  background-color: orange;
}
#toast-notifier-container > div.danger {
  background-color: red;
}
#toast-notifier-container > div.info {
  background-color: blue;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}/*# sourceMappingURL=toastNotifier.css.map */