.step {
  align-items: center;
  color: var(--gray-600);
  display: flex;
}

.step-item {
  text-align: center;
}

.step-item.active {
  color: var(--blue);
}

.step-image {
  position: relative;
  padding: 0 33px;
}

@media (min-width: 992px) {
  .step-image {
    padding: 0 70px;
  }
}

.step-image::before,
.step-image::after {
  background-color: var(--gray-600);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
}

.step-image::after {
  left: auto;
  right: 0;
}

.step-item:first-child .step-image::before,
.step-item:last-child .step-image::after {
  content: none;
}

.step-icon {
  align-items: center;
  background-color: #E8E8E8 !important;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  height: 32px;
  justify-content: center;
  margin: auto auto 5px;
  position: relative;
  width: 32px;
  z-index: 1;
}

@media (min-width: 992px) {
  .step-icon {
    height: 46px;
    width: 46px;
  }
}

.step-icon svg {
  width: 18px;
}

@media (min-width: 992px) {
  .step-icon svg {
    width: auto;
  }
}

.step-item.active .step-icon {
  background-color: var(--blue) !important;
}

.step-name {
  font-size: 11px;
  font-weight: 700;
  min-height: 30px;
}

@media (min-width: 992px) {
  .step-name {
    font-size: inherit;
  }
}