.progress-indicator__track {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgb(237, 235, 233);
  color: rgb(50, 49, 48);
}

.progress-indicator__bar {
  height: 2px;
  position: absolute;
  transition: width 0.3s ease 0s;
  width: 0px;
  min-width: 33%;
  background: rgba(0, 0, 0, 0)
    linear-gradient(
      to right,
      rgb(237, 235, 233) 0%,
      var(--color-primary) 50%,
      rgb(237, 235, 233) 100%
    )
    repeat scroll 0% 0%;
}
