
/* scrollbar width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  /* scrollbar track */
  ::-webkit-scrollbar-track {
    background: #eee;
  }
  
  /* scrollbar handle */
  ::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background-color: #00d2ff;
    background-image: linear-gradient(to top, #00d2ff 0%, #3a7bd5 100%);
  }
  
  