.notification-progress[data-v-5f3eadc3] {
  display: block;
}
.notification-progress__timeline[data-v-5f3eadc3] {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  opacity: 1;
  transition: height 120ms ease, margin-top 120ms ease, opacity 120ms ease;
}
.notification-progress__timeline--hidden[data-v-5f3eadc3] {
  height: 0;
  margin-top: 0;
  opacity: 0;
}
.notification-progress__bar[data-v-5f3eadc3] {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--el-color-primary);
  transform-origin: left;
  animation-name: notification-progress-shrink-5f3eadc3;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes notification-progress-shrink-5f3eadc3 {
from {
    transform: scaleX(1);
}
to {
    transform: scaleX(0);
}
}