@import (reference) "colors";

.progress-bar {
  border-radius: 50px;
  background: white;
  height: 10px;
  position: relative;

  &--progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: @color--green;
    border-radius: 50px;
    width: 0%;
    -webkit-transition: width 0.1s linear;
    -o-transition: width 0.1s linear;
    transition: width 0.1s linear;
  }
}
