.step-indicator {
  min-width: 150px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 50px auto;
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  text-transform: uppercase;
  
  .step-indicator__container {
    display: flex;

    &.full-width {
      width: 100%;
    }
  }

  .step-indicator__col {
    width: 32px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-indicator__step {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 1;
    border: 3px solid #C4C4C4;
    border-radius: 3px;
    color: #888FA1;


    &.is-active-step {
      color: #00AADF;
      border: 3px solid #00AADF;
    }

    &.is-completed-step {
      background: #00AADF;
      border: 3px solid #00AADF;
      color: #00AADF;
    }
  }

  .step-indicator__step-line {
    width: 100%;
    min-width: 40px;
    height: 4px;
    align-self: flex-start;
    margin-top: 16px;
    background: #C4C4C4;

    &.is-active-step {
      background: rgb(0,170,223);
      background: linear-gradient(90deg, rgba(0,170,223,1) 0%, rgba(196,196,196,1) 10%);
    }

    &.is-completed-step {
      background: #00AADF;
    }
  }

  .step-indicator__step-title {
    padding-top: 10px;
    font-size: 13px;
    line-height: 24px;
    color: #888FA1;
    text-transform: none;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;

    &.is-active-step {
      color: #444F6C;
    }

    &.is-completed-step {
      color: #00AADF;
      text-decoration: underline;
      cursor: pointer;
    }
  }

  .step-indicator__completed_icon {
    color: #FFF;
    font-weight: bold;
  }
}
