/*Progress bar */

  .progressbar {
      counter-reset: step;
      max-width: 900px;    
      font-weight: bold;
      margin: 0 auto
  }
  .progressbar li {
      list-style-type: none;
      width: 20%;
      float: left;
      font-size: 12px;
      position: relative;
      text-align: center;
      text-transform: uppercase;
      color: #c0c0c0;
      font-weight: bold;
  }
  .progressbar li:before {
      width: 30px;
      height: 30px;
      content: counter(step);
      counter-increment: step;
      line-height: 30px;
      border: 2px solid #f2f2ff;
      display: block;
      text-align: center;
      margin: 0 auto 10px auto;
      border-radius: 50%;
      background-color: #fff;
  }
  .progressbar li:after {
      width: 100%;
      height: 3px;
      content: '';
      position: absolute;
      background-color: #fff;
      top: 15px;
      left: -50%;
      z-index: -1;
  }

  .progressbar li:first-child:after {
      content: none;
  }

  .progressbar li.concluido {
      color: rgba(0,0,0,0);
  }

  .progressbar li.concluido:before {
      border-color: #f2f2ff;
      background-image: linear-gradient(150deg, #02d9dc, #ee82ee);
  }

  .progressbar li.concluido + li:after {
      background-image: linear-gradient(150deg, #ee82ee, #02d9dc);
  }

.search-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.search-container button {
  align-self: flex-end;
}
@media(max-width: 487px) {
  .progressbar {
      max-width: 300px; 
  }
}