/* Match the member invitation fill without changing the native quota or colors. */
.storageCard .storageContent .v-progress-linear__determinate {
  transform-origin: left center;
  animation: beup-plan-traffic-fill 1s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes beup-plan-traffic-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .storageCard .storageContent .v-progress-linear__determinate {
    animation: none;
    transition: none !important;
  }
}
