.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 31px;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 28px;
  flex-direction: row;
}

.step:not(:last-child) {
  margin-right: 9px;
}

.step-number {
  width: 28px;
  height: 28px;
  background: var(--main-color);
  opacity: 0.4;
  display: flex;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border-radius: 50%;
}

.step-text {
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
  color: var(--main-color);
  opacity: 0.4;
  vertical-align: middle;
}

.step-divider {
  height: 0.8px;
  width: 169.4px;
  background-color: var(--main-color);
  margin-right: 9px;
  margin-left: 13.6px;
}

.step.selected-step > .step-number {
  background: var(--main-color);
  color: #ffffff;
  font-weight: 700;
  opacity: 1;
  line-height: 28px;
  vertical-align: middle;
}

.step.selected-step > .step-text {
  font-weight: 700;
  color: var(--main-color);
  opacity: 1;
}

.steps-container > .go-back {
  font-weight: 300;
  font-size: 14px;
  color: #545454;
  margin-right: 50px;
  cursor: pointer;
  position: absolute;
  left: 4.5%;
  display: flex;
  align-items: center;
}
.go-back p {
  display: inline-block;
}
.steps-container > .go-back > span {
  color: var(--main-color);
  margin-right: 12px;
}

.steps-title {
  text-align: center;
  color: var(--main-color);
  font-weight: 400;
  font-size: 45px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Mobile */
@media screen and (max-width: 450px) {
  .steps{
    display: none;
  }
  .steps-container > .go-back {
    top: -24px;
    bottom: 100%;
    width: fit-content;
    margin-right: 0px;
    height: 26px;
    left: 3%;
    overflow: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    margin-left: 2%;
}
  .step-divider {
    width: 15px;
  }
  .steps-container > .go-back > span {
    font-size: 25px;
    /* width: 50px !important; */
    /* padding-left: 30px; */
    /* padding-right: 20px; */
    /* margin-bottom: 30px; */
}
  .steps-title{
    font-size: 30px;
    margin-bottom: 0px;
  }
  .step-text {
    line-height: 11px;
    text-align: center;
    font-size: 11px;
  }
  .step-number {
    margin-right: 5px;
    border-radius: 100px;
    height: 10px;
    padding: 10px 11px;
    width: unset !important;
  }
  .steps {
    background: #f7f7f7;
    border-radius: 19px;
    width: 90%;
    padding: 10px;
  }
  .step:not(:last-child) {
    margin-right: 0 !important;
  }
}
