#progressbar {
    background-color: #d4d4d4;
    border-radius: 10px;
    /* (height of inner div) / 2 + padding */
    padding: 3px;
    width: 100%;
  }

  #progressbar>div {
    background-color: #87CEEB;
    width: 5%;
    height: 50px;
    border-radius: 10px;
    
  }
  #progressbar>div>img {
    margin-left: auto;
    display: flex;
    width: 50px;
    height: 100%;
  }