nav-progress {
  display: flex;
  text-align: center;
  width: 75%;
  margin: 12px auto;

  .fa {
    font-size: 32px;
    color: #bbb;
  }

  div {
    font-size: 15px;
    color: #7c7c7c;
    margin-top: 2px;
  }

  section {
    position: relative;
    flex: 1;

    &::before, &::after {
      height: 5px;
      position: absolute;
      top: 14px;
      background: #bbb;
    }

    &:not(:first-child)::before {
      content: "";
      left: 0;
      right: calc(50% + 12px);
    }

    &:not(:last-child)::after {
      content: "";
      right: 0;
      left: calc(50% + 12px);
    }

    &.checked {
      &::before, &::after {
        background: var(--global-theme-color-light, #3fbeb4);
      }

      .fa {
        color: var(--global-theme-color-light, #3fbeb4);
      }
    }
  }
}
