@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

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

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.toast-enter {
  animation: slideInRight 0.3s ease-out forwards;
}

.toast-exit {
  animation: slideOutRight 0.3s ease-in forwards;
}

.toast-pulse {
  animation: pulse 0.6s ease-in-out;
}

.toast-progress-bar {
  animation: progress linear forwards;
}

@keyframes progress {
  from {
    width: 100%;
  }

  to {
    width: 0%;
  }
}
