
/* Step system */

ul.progress-bars {
  display: flex;
  width: 100%;
  padding: 0;
  margin-top: 20px;
}
ul.progress-bars .progress-bars__item {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  transition: color .2s ease;
}
    .progress-bars__item:after {
      content: '';
      position: absolute;
      height: 2px;
      background-color: var(--color-white-transparent);
      width: 70%;
      top: 31%;
      left: 65%;
      transition: background-color .2s ease;
    }
    .progress-bars__item:last-child:after {
      content: none;
    }
    .progress-bars__item a {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      transition: background-color .2s ease;

    }
    .progress-bars__item a:hover {
      color: var(--color-secondary-light);
    }
    .progress-bars__item img {
      height: 2.5rem;
      width: 2.5rem;
      margin-bottom: 0.5rem;
      opacity: 0.6;
    }
      .progress-bars__item p {
        color: var(--color-white-transparent);
        font-size: var(--text-small);
        font-family: var(--condensed-font);
      }

.progress-bars__item.current,
.progress-bars__item.current * {
  color: var(--color-white);
}
  .progress-bars__item.current img {
    opacity: 1;
  }

/*
.progress-bars__item.success {
  color: #2ecc71;
}
  .progress-bars__item.success:before {
    content: '\f00c';
    border-color: #2ecc71;
    -webkit-animation: content-animation .2s ease both;
            animation: content-animation .2s ease both;
  }
  .progress-bars__item.success:after {
    background-color: #2ecc71;
    -webkit-animation: line-animation .2s ease both;
            animation: line-animation .2s ease both;
  }
  */