/*
1 colore bottone
2 bordo/hover
3 testo
*/
.progressBar {
  --progress-bar-color: var(--primary);
  --progress-bar-height: 5px;
  width: 100%;
  background-color: var(--bg-light);
  border-radius: 0.25rem;
  overflow: hidden;
  height: var(--progress-bar-height);
}
.progressBar__fill {
  height: 100%;
  background-color: var(--progress-bar-color);
  transition: width 0.3s ease-in-out;
  border-radius: 0.25rem;
}

/*# sourceMappingURL=progressBar.css.map */
