@keyframes swipe-in {
  0% { transform: translate(calc(100% + 25px), 0); }
  100% { transform: translate(0, 0); }
}

@keyframes swipe-out {
  0% { transform: translate(0, 0); }
  100% { transform: translate(calc(100% + 25px), 0); }
}

.notification {
  cursor: pointer;
}
