
.notification-line{
  animation: NotificationLine 5s forwards;
}

@keyframes NotificationLine {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}