@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700");


.row.timeline{
  justify-content: center;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.steps {
  max-width: 600px;
  margin: 0 auto;
}

.step {
    display: flex;
    position: relative;
}
.step:after {
    content: "";
    position: absolute;
    left: 15px;
    top: 32px;
    height: 100%;
    width: 2px;
    background-color: var(--primary);
  }

  .info {
    margin: 8px 0 20px;
  }

  .title {
    /*font-size: 16px;*/
    font-weight: 600;
    margin: 0 0 8px;
    color: black
  }

  .text {
    /*font-size: 12px;*/
    color: rgba(1, 1, 1, 0.7);
    padding-bottom: 0;
    margin: 0;
  }

  .text:last-child::after {
      height: 0;
    }




.number {
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid var(--primary);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /*font-size: 15px;*/
  font-weight: 600;
  margin-right: 14px;
  color: var(--primary);
}

  .number.completed {
    background-color: var(--primary);
  }

  svg {
    width: 16px;
    height: 16px;
    object-fit: contain;
    color: white;
    fill: white
  }

  svg.path {
    fill: red;
  }

