

*, *:before, *:after {
  box-sizing: border-box;
}

.lineadetiempo {
  font-family: "Open Sans", sans-serif;
    font-size: 12px;
}

.wrapper {
  min-height: auto;
  justify-content: left;
  align-items: left;
}

.steps {
  max-width: 100%;
  margin: 0;
}

.step {
  display: flex;
  position: relative;

  &:after {
    content: "";
    position: absolute;
    left: 15px;
    top: 32px;
    height: 0;
    width: 4px;
    background-color: #007EA7;
  }

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

  .title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #336699;
    top:-30px
  }

  .text {

    font-size: 13px;
    color: rgba(white, 0.7);
    padding-bottom: 0;
    margin: 0;
  }

  &:not(:last-child) {
    &:after {
	 height: calc(100% - 30px);
    }

  }
}

.number {
  width: 32px;
  height: 32px;
  background-color: transparent;
  border-radius: 50%;
  border: 3px solid #007EA7;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #336699;
  font-size: 15px;
  font-weight: 600;
  margin-right: 14px;

  .completed {
    background-color: #FFFFFF;
  }

  svg {
    width: 10px;
    height: 10px;
    object-fit: contain;

    path {
	 fill: #336699;
    }
  }
}
