.form-step {
  margin: -20px auto 30px;
  padding: 15px 10px;
  width: 100%;
  background-color: #f3f4fa;
  box-sizing: border-box;
}
@media screen and (max-width: 974px) {
  .form-step {
    margin: 0 auto 47px;
  }
}
.form-step .form-step__inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 30px;
  width: 100%;
  max-width: 610px;
}
@media screen and (max-width: 960px) {
  .form-step .form-step__inner {
    max-width: 100%;
    min-width: 355px;
    gap: 0 20px;
  }
}
.form-step .form-step__current {
  width: auto;
  font-size: 1.13rem;
  line-height: 1.6;
  font-weight: bold;
  white-space: nowrap;
  color: #171c8f;
}
@media screen and (max-width: 960px) {
  .form-step .form-step__current {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.form-step .form-step__gauge {
  position: relative;
  margin: 4px 0 0;
  padding: 6px 0 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.form-step .form-step__gauge::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #cccccc;
  z-index: 1;
}
.form-step .form-step__item {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 8px;
  font-size: 0.81rem;
  line-height: 1.6;
  font-weight: bold;
  color: #cccccc;
  width: 33.3333333333%;
}
.form-step .form-step__item .form-step__text {
  position: relative;
  display: block;
}
.form-step .form-step__item .form-step__text::before {
  content: "";
  margin: 0 auto;
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cccccc;
  z-index: 4;
}
.form-step .form-step__item:first-child {
  justify-content: flex-start;
}
.form-step .form-step__item:first-child .form-step__text:after {
  content: "";
  position: absolute;
  top: -9px;
  left: -1px;
  width: 50%;
  height: 4px;
  background-color: #f3f4fa;
  z-index: 3;
}
.form-step .form-step__item:last-child {
  justify-content: flex-end;
}
.form-step .form-step__item:last-child .form-step__text:after {
  content: "";
  position: absolute;
  top: -9px;
  right: -1px;
  width: 50%;
  height: 4px;
  background-color: #f3f4fa;
  z-index: 3;
}
.form-step.--step-1 .form-step__item:first-of-type {
  color: #171c8f;
}
.form-step.--step-1 .form-step__item:first-of-type .form-step__text::before {
  background-color: #171c8f;
}
.form-step.--step-2 .form-step__gauge::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: #171c8f;
  z-index: 2;
}
.form-step.--step-2 .form-step__item:nth-child(-n+2) {
  color: #171c8f;
}
.form-step.--step-2 .form-step__item:nth-child(-n+2) .form-step__text::before {
  background-color: #171c8f;
}
.form-step.--step-3 .form-step__gauge::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #171c8f;
  z-index: 2;
}
.form-step.--step-3 .form-step__item {
  color: #171c8f;
}
.form-step.--step-3 .form-step__item .form-step__text::before {
  background-color: #171c8f;
}