@keyframes scale-x-frames {
    0% {
      transform: scaleX(1);
    }
    100% {
      transform: scaleX(0);
    }
  }


.#{$vt-namespace}__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: ($vt-z-index + 1);
    background-color: rgba(255, 255, 255, 0.7);
    transform-origin: left;
    animation: scale-x-frames linear 1 forwards;
    .#{$vt-namespace}__toast--rtl & {
      right: 0;
      left: unset;
      transform-origin: right;
    }
  }
