.step-indicator ol,
.step-indicator ul {
  display: flex;
  flex-wrap: nowrap;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: auto
}
.step-indicator ol::after,
.step-indicator ul::after {
  content: "";
  display: block;
  position: sticky;
  right: -1px;
  height: 16px;
  width: 1px;
  border-width: 0;
  box-shadow: -5px 0 12px 8px #fff;
  pointer-events: none
}
.step-indicator .step {
  min-height: 32px;
  margin: 0;
  padding: 0 24px;
  list-style-type: none;
  font-size: var(--visage-text-size-5);
  line-height: var(--visage-text-size-5-line-height);
  font-weight: bold;
  text-align: center;
  color: #6b7276;
  white-space: nowrap;
  background-image: linear-gradient(to bottom, transparent 0, transparent 30px, #d6dce0 30px, #d6dce0 32px, transparent 32px);
  background-repeat: repeat-x
}
.step-indicator .step .link,
.step-indicator .step .stylized-button-skin-link,
.step-indicator .step a {
  display: block;
  margin: 0 auto
}
.step-indicator .step .link,
.step-indicator .step .link:hover,
.step-indicator .step .stylized-button-skin-link,
.step-indicator .step .stylized-button-skin-link:hover,
.step-indicator .step a,
.step-indicator .step a:hover {
  text-decoration: none
}
.step-indicator .step .link:hover,
.step-indicator .step .stylized-button-skin-link:hover,
.step-indicator .step a:hover {
  color: var(--visage-font-base-color)
}
.step-indicator .step[aria-current="step"] {
  color: #000;
  background-image: linear-gradient(to bottom, transparent 0, transparent 30px, currentColor 30px, currentColor 32px, transparent 32px)
}
.step-indicator .step:last-of-type:after {
  display: none
}
.step-indicator .step-number {
  display: inline-block;
  padding-right: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--visage-color-dark-grey)
}
.step-indicator a:hover .step-number,
.step-indicator button:hover .step-number {
  color: var(--visage-link-font-color)
}
.step-indicator .step-value {
  display: block;
  margin-top: 16px;
  color: var(--visage-color-dark-grey);
  font-weight: normal
}
.step-indicator .step-value.step-value-skin-error {
  color: var(--visage-color-error)
}
.step-indicator .step-value.step-value-skin-error::before {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  background-size: auto auto;
  background-position: center;
  background-repeat: no-repeat;
  filter: var(--visage-icon-filter-dark-grey);
  background-image: url(../images/error.svg);
  filter: none;
  display: inline-block;
  vertical-align: bottom
}
@media only screen and (max-width: 767px) {
  .step-indicator ol,
  .step-indicator ul {
    position: relative;
    width: 100%
  }
  .step-indicator ol::after,
  .step-indicator ul::after {
    display: none
  }
  .step-indicator .step {
    display: none;
    min-width: 0;
    height: auto;
    padding: 0
  }
  .step-indicator .step-next,
  .step-indicator .step-previous {
    position: absolute;
    top: 0;
    display: block;
    width: 20px;
    background-image: none;
    overflow: hidden
  }
  .step-indicator .step-next,
  .step-indicator .step-next a,
  .step-indicator .step-next button,
  .step-indicator .step-previous,
  .step-indicator .step-previous a,
  .step-indicator .step-previous button {
    color: transparent!important;
    white-space: nowrap
  }
  .step-indicator .step-next a::before,
  .step-indicator .step-next button::before,
  .step-indicator .step-next::before,
  .step-indicator .step-previous a::before,
  .step-indicator .step-previous button::before,
  .step-indicator .step-previous::before {
    content: " ";
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
    background-size: auto auto;
    background-position: center;
    background-repeat: no-repeat;
    filter: var(--visage-icon-filter-dark-grey);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: .5
  }
  .step-indicator .step-next a::before,
  .step-indicator .step-next button::before,
  .step-indicator .step-previous a::before,
  .step-indicator .step-previous button::before {
    filter: var(--visage-icon-filter-black);
    opacity: 1
  }
  .step-indicator .step-previous {
    left: 0
  }
  .step-indicator .step-previous a::before,
  .step-indicator .step-previous button::before,
  .step-indicator .step-previous::before {
    background-image: var(--visage-icon-url-chevron-l)
  }
  .step-indicator .step[aria-current="step"] {
    display: block;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    background-image: none
  }
  .step-indicator .step[aria-current="step"] + .step-next {
    display: block;
    right: 0
  }
  .step-indicator .step[aria-current="step"] + .step-next .link::before,
  .step-indicator .step[aria-current="step"] + .step-next .stylized-button-skin-link::before,
  .step-indicator .step[aria-current="step"] + .step-next a::before,
  .step-indicator .step[aria-current="step"] + .step-next::before {
    background-image: var(--visage-icon-url-chevron-r)
  }
  .step-indicator .step-number,
  .step-indicator .step-value {
    display: none
  }
}