.container {
  max-width: 1200px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .container {
    padding-bottom: 2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.step-indicator {
  display: flex;
  align-items: center;
}

.step {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.step-indicator .step-icon {
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background: #c2c2c2;
  font-size: 10px;
  text-align: center;
  color: #ffffff;
  position: relative;
  line-height: 50px;
  font-size: 20px;
}

.step.active .step-icon {
  -webkit-box-shadow: inset 0px 0px 1px 2px var(--cs-highlight);
  -moz-box-shadow: inset 0px 0px 1px 2px var(--cs-highlight);
  box-shadow: inset 0px 0px 1px 2px var(--cs-highlight);
  background: white;
}

.step.inactive .step-icon {
  -webkit-box-shadow: inset 0px 0px 1px 2px var(--cs-lgray);
  -moz-box-shadow: inset 0px 0px 1px 2px var(--cs-lgray);
  box-shadow: inset 0px 0px 1px 2px var(--cs-lgray);
  background: white;
}

.step.complete .step-icon {
  background: var(--cs-highlight);
}

.step span {
  text-align: center;
  position: absolute;
  top: calc(100% + 0.6rem);
  color: var(--cs-mgray);
  font-weight: bold;
  font-size: 10px;
  max-width: 5rem;
  line-height: 1.2;
}

@media (min-width: 420px) {
  .step span {
    max-width: 7rem;
    top: calc(100% + 0.5rem);
    font-size: 12px;
  }
}

@media (min-width: 600px) {
  .step span {
    width: max-content;
    max-width: none;
    font-size: 14px;
  }
}

.step.active span {
  color: var(--cs-highlight);
}

.step.complete span {
  color: var(--cs-highlight);
}

.indicator-line {
  width: 100%;
  height: 2px;
  margin-left: 1rem;
  margin-right: 1rem;
  background: #c2c2c2;
  flex: 1;
}

.indicator-line.active {
  background: var(--cs-highlight);
}

.indicator-line.inactive {
  background: #c2c2c2;
}
