$bottom-bar-height: 8px;

.progressBarContainer {
  label {
    color: var(--dark-purple);
  }
}

.progressBottomBar {
  border-radius: $bottom-bar-height;
  width: 100%;
  height: $bottom-bar-height;
  position: relative;
  min-width: 100px;
  background: var(--light-gray);
}

.progressBottomBarActive {
  border-radius: $bottom-bar-height;
  position: absolute;
  top: 0;
  left: 0;
  height: $bottom-bar-height;
  transition: width 0.5s ease-in-out;
}

.helperText {
  margin-top: 8px;
  color: var(--purple);
  font-size: var(--font-size-10);
  &.hasError {
    color: var(--dark-red);
  }
}

// Right Label //
.rightLabelContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-12);
}

.checkIcon {
  svg path {
    fill: var(--dark-green);
  }
}
