/* Layout */
.aui-progress-tracker {
  display: table;
  font-size: 12px;
  margin: 10px 0 0;
  padding: 0;
  table-layout: fixed;
  word-wrap: break-word;
  /* doesn't work in IE */
}
.aui-progress-tracker:first-child {
  margin-top: 0;
}
.aui-progress-tracker-step {
  box-sizing: border-box;
  display: table-cell;
  padding: 0 10px;
  max-width: 140px;
  min-width: 80px;
  text-align: center;
}
/* Progress Bar */
.aui-progress-tracker-step > span,
.aui-progress-tracker-step > a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42857143;
  letter-spacing: -0.003em;
  text-transform: none;
  font-weight: 400;
  color: #172B4D;
  display: block;
  outline: none;
  padding-top: 25px;
  position: relative;
}
.aui-progress-tracker-step > span:before,
.aui-progress-tracker-step > a:before {
  background: #0065FF;
  border-radius: 100%;
  content: "";
  height: 8px;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  top: 4px;
  width: 8px;
}
.aui-progress-tracker-step + .aui-progress-tracker-step > span:after,
.aui-progress-tracker-step + .aui-progress-tracker-step > a:after {
  background: #0065FF;
  box-shadow: -5px 0 0 -2px #0065FF, 5px 0 0 -2px #0065FF;
  content: "";
  height: 8px;
  left: -50%;
  margin-left: -20px;
  /* touches right edge of previous dot */
  margin-right: 1px;
  /* touches left edge of this dot */
  position: absolute;
  right: 50%;
  top: 4px;
}
.aui-progress-tracker-step-current > span,
.aui-progress-tracker-step-current > a {
  font-weight: 600;
}
.aui-progress-tracker-step-current ~ .aui-progress-tracker-step > span,
.aui-progress-tracker-step-current ~ .aui-progress-tracker-step > a {
  color: #5E6C84;
  font-weight: 400;
}
.aui-progress-tracker-step-current ~ .aui-progress-tracker-step > span:hover,
.aui-progress-tracker-step-current ~ .aui-progress-tracker-step > a:hover {
  color: #5E6C84;
}
.aui-progress-tracker-step-current ~ .aui-progress-tracker-step > span:before,
.aui-progress-tracker-step-current ~ .aui-progress-tracker-step > a:before {
  background-color: #A5ADBA;
}
.aui-progress-tracker-step-current ~ .aui-progress-tracker-step > span:after,
.aui-progress-tracker-step-current ~ .aui-progress-tracker-step > a:after {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.aui-progress-tracker-step > a:hover {
  color: #0052CC;
}
.aui-progress-tracker-step > a:active {
  color: #0747A6;
}
/* Interaction wih page layout */
.aui-page-header-actions .aui-progress-tracker {
  float: right;
}

/*# sourceMappingURL=aui-experimental-progress-tracker.css.map */
