.scroll{
  overflow: auto;
  width: 100%;
  height: 400px;
}

/* width */
.scroll::-webkit-scrollbar {
  width: 7px;
  }
  
  /* Track */
  .scroll::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0px grey;
    background-color: #cfdbfa;
    border-radius: 10px;
  }
  
  /* Handle */
  .scroll::-webkit-scrollbar-thumb {
    background: #3167eb; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  .scroll::-webkit-scrollbar-thumb:hover {
    background: #5f89f0; 
  }

  .scrollimagini{
    overflow: auto;
    width: 100%;
    max-height: 940px;
  }
  
  /* width */
  .scrollimagini::-webkit-scrollbar {
    width: 7px;
    }
    
    /* Track */
    .scrollimagini::-webkit-scrollbar-track {
      box-shadow: inset 0 0 0px grey;
      background-color: #cfdbfa;
      border-radius: 10px;
    }
    
    /* Handle */
    .scrollimagini::-webkit-scrollbar-thumb {
      background: #3167eb; 
      border-radius: 10px;
    }
    
    /* Handle on hover */
    .scrollimagini::-webkit-scrollbar-thumb:hover {
      background: #5f89f0; 
    }