body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  body::-webkit-scrollbar-button:start:decrement,
  body::-webkit-scrollbar-button:end:increment {
    display: block;
    height: 0;
    background-color: transparent;
  }
  
  body::-webkit-scrollbar-track-piece {
    background-color: transparent;
    opacity: 0.1;
  
    /* Here */
    display: none;
  
    -webkit-border-radius: 0;
    -webkit-border-bottom-right-radius: 14px;
    -webkit-border-bottom-left-radius: 14px;
  }
  
  body::-webkit-scrollbar-thumb:vertical {
    height: 50px;
    background-color: rgb(47, 70, 109);
    -webkit-border-radius: 8px;
  }