/*Progress bar at the top*/
.progressbar {
    position: fixed;
    bottom: 0;
    z-index: 1;
    width: 100%;
    background-color: transparent;
  }
  
  .progress-container {
    width: 100%;
    height: 8px;
    background: transparent;
  }
  
  .progress-bar {
    height: 8px;
    background: rgb(255, 166, 0);
    width: 0%;
  }