.progressBar {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  height: 1.5rem;
  position: relative;
  overflow: hidden;
}
.progressBar.rounded {
  border-radius: 1.5rem;
}
.progressBar .currentProgress {
  position: absolute;
  top: 0;
  left: 0;
  height: inherit;
  background: #2196F3;
  transition: all 250ms linear;
}
.progressBar .progressCount {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: inherit;
  line-height: 1;
  color: #1a1a1a;
  padding: 0 1.5;
  transition: all 250ms linear;
}
.progressBar.switch .progressCount {
  left: 0;
  color: #fff;
}
.progressBar[data-complete="100"] .currentProgress {
  background: #2196F3;
}

/*# sourceMappingURL=modules-layout-scss-progressbar.css.map */
