.block-flowarts-course {
  width: 100%;
}

.boombox .flow-progress-row {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  flex: 1 1 auto;
}
.boombox .flow-progress-row__track {
  display: flex;
  align-items: center;
}
.boombox {
  /* 32px high rail */
}
.boombox .flow-progress-row__rail {
  position: relative;
  flex: 1 1 auto;
  height: 32px;
  border-radius: 32px;
  background: #292929;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.boombox {
  /* Base style for each filled segment */
}
.boombox .flow-progress__segment {
  position: absolute;
  top: 0;
  left: 0;
  height: 32px;
  width: var(--flow-progress, 0%);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4px;
  box-sizing: border-box;
  pointer-events: none;
  border: 1px solid rgba(0, 0, 0, 0.75);
  box-shadow: 5px 0 10px 0 rgba(0, 0, 0, 0.25);
  transition: width 250ms ease-out;
  will-change: width;
}
.boombox {
  /* Layering order: watched at back, learned on top */
}
.boombox .flow-progress__segment--watched {
  z-index: 1;
  background: var(--flow-flag-watched);
  height: 24px;
  top: 4px;
  box-shadow: none;
}
.boombox .flow-progress__segment--practicing {
  z-index: 2;
  background: var(--flow-flag-practicing);
  height: 28px;
  top: 2px;
}
.boombox .flow-progress__segment--learned {
  z-index: 3;
  background: var(--flow-flag-learned);
  height: 32px;
  top: 0;
}
.boombox .flow-progress__total {
  color: #fff;
  opacity: 0.5;
  font-size: 12px;
  font-weight: bold;
  padding-right: 10px;
}
.boombox .flow-progress__segment-number {
  color: #000;
  opacity: 0.6;
  font-size: 12px;
  font-weight: 600;
}
.boombox {
  /* Icon inside each bar (28x28, black) */
}
.boombox .flow-progress__segment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.boombox .flow-progress__segment-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #000;
  opacity: 0.6;
  fill: currentColor;
}
.boombox {
  /* Hide percentage text for now (you can re-enable later) */
}
.boombox .flow-progress__pct {
  display: none;
}
.boombox .flow-progress-row__meta {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.75rem;
  opacity: 0.75;
}

.flow-module-progress {
  margin-block: 10px;
  display: flex;
  justify-content: stretch;
  width: 100%;
  height: 32px;
  border-radius: 32px;
  background: #292929;
  overflow: hidden;
}

.flow-module-progress-item {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}
.flow-module-progress-item .flow-module-progress-icon-wrapper {
  width: 28px;
  height: 28px;
  position: relative;
}
.flow-module-progress-item .flow-module-progress-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  opacity: 0;
  transition: opacity 250ms ease-in-out;
  will-change: opacity;
}
.flow-module-progress-item .flow-module-progress-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #000;
  opacity: 0.6;
  fill: currentColor;
}
.flow-module-progress-item .flow-module-progress-bar {
  content: " ";
  height: 24px;
  background: currentColor;
  transition: background-color 250ms ease-in-out, height 250ms ease-in-out, border-color 250ms ease-in-out;
  will-change: background-color, height, border-color;
  border: 1px solid rgba(0, 0, 0, 0.75);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flow-module-progress-item:first-child .flow-module-progress-bar {
  border-left-width: 0;
  width: calc(100% + 1px);
}
.flow-module-progress-item:last-child .flow-module-progress-bar {
  border-right-width: 0;
  width: calc(100% + 1px);
}
.flow-module-progress-item[data-flow-lesson-status=unwatched] {
  color: #292929;
}
.flow-module-progress-item[data-flow-lesson-status=unwatched] .flow-module-progress-bar {
  height: 0;
  border-color: #292929;
}
.flow-module-progress-item[data-flow-lesson-status=unwatched] .flow-module-progress-icon[data-icon=unwatched] {
  opacity: 1;
}
.flow-module-progress-item[data-flow-lesson-status=watched] {
  color: var(--flow-flag-watched);
}
.flow-module-progress-item[data-flow-lesson-status=watched] .flow-module-progress-bar {
  height: 24px;
}
.flow-module-progress-item[data-flow-lesson-status=watched] .flow-module-progress-icon[data-icon=watched] {
  opacity: 1;
}
.flow-module-progress-item[data-flow-lesson-status=practicing] {
  color: var(--flow-flag-practicing);
}
.flow-module-progress-item[data-flow-lesson-status=practicing] .flow-module-progress-bar {
  height: 28px;
}
.flow-module-progress-item[data-flow-lesson-status=practicing] .flow-module-progress-icon[data-icon=practicing] {
  opacity: 1;
}
.flow-module-progress-item[data-flow-lesson-status=learned] {
  color: var(--flow-flag-learned);
}
.flow-module-progress-item[data-flow-lesson-status=learned] .flow-module-progress-bar {
  height: 32px;
}
.flow-module-progress-item[data-flow-lesson-status=learned] .flow-module-progress-icon[data-icon=learned] {
  opacity: 1;
}

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