div.item {
    overflow-y: auto;
    padding: 3.5rem 3rem 3.5rem 3rem;
    background-color: #fff;
    border-radius: 30px;
}
.steps {
  /* max-width: 500px; */
  margin: 0 auto;
}

.step {
  display: flex;
  position: relative;
  margin-bottom: 2rem;
}
.step:after {
  /* content: "";
  position: absolute;
  left: 254px;
  top: 32px;
  height: 0;
  width: 2px;
  border-left: 2px dashed #94C6C3; */
}
.step .info {
    font-size: 1.1em;
    padding-left: 75px;
    margin: 2px 0 0;
    flex: 1;
    position: relative;
}
.step .info:before {
    content: "";
    position: absolute;
    left: -30px;
    top: 32px;
    height: 0;
    width: 2px;
    border-left: 2px dashed #94C6C3;
}
.step:not(:last-child) .info:before {
    height: 100%;
  }
.step .title {
    font-family: "OpenSauceOne-ExtraBold";
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 0 8px;
    color: #000;
    width: 25%;
    padding-right: 20px;
}
.step .text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 0;
  margin: 0;
}
.step:not(:last-child):after {
  height: 100%;
}

.number {
  width: 32px;
  height: 32px;
  background: #94C6C3;
  border-radius: 50%;
  border: none;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin-right: 14px;
}
.number.completed {
  background-color: #007ea7;
}
.number svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.number svg path {
  fill: white;
}

@media(max-width: 767px){
    .steps {
        margin-left: 20px;
    }
    div.item {
        padding: 1rem 1rem 1rem 2rem;
    }
    .step {
        flex-direction: column;
    }
    .step::before {
        content: "";
        position: absolute;
        left: -30px;
        top: 32px;
        width: 2px;
        border-left: 2px dashed #94C6C3;
        height: 0;
    }
    .step:not(:last-child):before {
        height: 100%;
    }
    .step .title {
        width: 100%;
        padding-right: 0;
    }
    .step .info {
        padding-left: 0;
    }
    .number {
        position: absolute;
        margin-left: -44px;
    }
    .step .info:before {
        display: none;
    }
}
