h2 {
    color: var(--color-gray);
    font-size: var(--font-size-small);
    line-height: 1.5;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
  }
    section {
    margin-bottom: 2rem;
    }

    .progress-bar-recipe {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    }
    .progress-bar-recipe li {
    flex: 2;
    position: relative;
    padding: 0 0 14px 0;
    font-size: var(--font-size-default);
    line-height: 1.5;
    color: var(--color-blue);
    font-weight: 600;
    white-space: nowrap;
    overflow: visible;
    min-width: 0;
    text-align: center;
    border-bottom: 4px solid var(--color-gray-disabled);
    }
    .progress-bar-recipe li:first-child,
    .progress-bar-recipe li:last-child {
    flex: 1;
    }
    .progress-bar-recipe li:last-child {
    text-align: right;
    }
    .progress-bar-recipe li:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-color: var(--color-gray-disabled);
    border-radius: 50%;
    border: 2px solid var(--color-white);
    position: absolute;
    left: calc(50% - 6px);
    bottom: -10px;
    z-index: 3;
    transition: all .2s ease-in-out;
    cursor: pointer;
    }
    .progress-bar-recipe li:first-child:before {
    left: 0;
    }
    .progress-bar-recipe li:last-child:before {
    right: 0;
    left: auto;
    }
    .progress-bar-recipe .number-container {
      width: 100%;
    }
    .progress-bar-recipe .number-container p.number{
      display: inline-block;
      padding: 4px 11px;
      border-radius: 50%;
      border: 1px solid var(--color-blue);
      cursor: pointer;
    }
    .progress-bar-recipe .is-active .number-container p.number {
      background: var(--color-blue);
      color: white;
    }
    .progress-bar-recipe span {
    transition: opacity .3s ease-in-out;
    }
    .progress-bar-recipe li:not(.is-active) span {
    opacity: 0;
    }
    .progress-bar-recipe .is-complete:not(:first-child):after,
    .progress-bar-recipe .is-active:not(:first-child):after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -3.5px;
    left: -50%;
    z-index: 2;
    border-bottom: 4px solid var(--color-blue);
    }
    .progress-bar-recipe li:last-child span {
    width: 200%;
    display: inline-block;
    position: absolute;
    left: -100%;
    }

    .progress-bar-recipe .is-complete:last-child:after,
    .progress-bar-recipe .is-active:last-child:after {
    width: 200%;
    left: -100%;
    }

    .progress-bar-recipe .is-complete:before {
    background-color: var(--color-blue);
    }

    .progress-bar-recipe .is-active:before,
    .progress-bar-recipe li:hover:before,
    .progress-bar-recipe .is-hovered:before {
    background-color: var(--color-white);
    border-color: var(--color-blue);
    }
    .progress-bar-recipe li:hover:before,
    .progress-bar-recipe .is-hovered:before {
    transform: scale(1.33);
    }

    .progress-bar-recipe li:hover span,
    .progress-bar-recipe li.is-hovered span {
    opacity: 1;
    }

    .progress-bar-recipe:hover li:not(:hover) span {
    opacity: 0;
    }

    .x-ray .progress-bar-recipe,
    .x-ray .progress-bar-recipe li {
    border: 1px dashed red;
    }

    .progress-bar-recipe .has-changes {
    opacity: 1 !important;
    }
    .progress-bar-recipe .has-changes:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: calc(50% - 4px);
    bottom: -20px;
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%208%208%22%3E%3Cpath%20fill%3D%22%23ed1c24%22%20d%3D%22M4%200l4%208H0z%22%2F%3E%3C%2Fsvg%3E');
    }

@media screen and (max-width: 1000px) {
  .progress-bar-recipe span,
  .progress-bar-recipe li:hover span {
    display: none !important;
  }

}
