/* Hide element visually, keeping it focusable (with keyboard) and available for screen-readers */
.ProgressTracker {
  /* Set color on root of component. It can be overridden after the @include */
  color: var(--colorsTextDefault, #141414);
  /* Make sure font-family goes across entire component */
  font-family: "Nunito Sans", sans-serif;
  display: flex;
  justify-content: space-between;
  list-style: none;
  font-size: 14px;
  font-weight: 400;
}

.ProgressTrackerDivider {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  flex-grow: 1;
  flex-basis: 0;
  align-self: flex-start;
  margin-top: 12px;
}
.ProgressTracker--small .ProgressTrackerDivider {
  margin-top: 9px;
}
.ProgressTrackerDivider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  background-color: var(--colorsStatusDefault, #8c9ca5);
}

.ProgressTracker--disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.ProgressTrackerDivider--completed::after {
  background-color: var(--colorsStatusInfo, #3892f3);
}

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