.progressbar {
  display: block;
  ul {
    display: flex;
    list-style: none;
    padding: 0;
    background-color: lightgray;
    justify-content: space-around;
    align-items: center;
    padding: 2px 0;
    border-radius: 5px;
    font-weight: 600;
    li {
      color: gray;
      font-weight: 400;
    }
    li[active] {
      background-color: white;
      color: black;
      padding: 0.2em 10px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      .progressbarTitle {
        display: inline;
      }
    }
  }
}
.progressbarTitle {
  display: none;
  @media only screen and (min-width: 1025px) {
    display: inline;
  }
}
