/* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
/** {
  scrollbar-width: thin;
  scrollbar-color: #929292 #CBCBCB;
}*/

/* Chrome, Edge and Safari */
html {
    scroll-behavior: smooth;
  }
*::-webkit-scrollbar {
    height: 13px;
    width: 13px;
  }
  *::-webkit-scrollbar-track {
    border-radius: 4px;
    background-color: #CBCBCB;
  }
  
  *::-webkit-scrollbar-track:hover {
    background-color: #CBCBCB;
  }
  
  *::-webkit-scrollbar-track:active {
    background-color: #CBCBCB;
  }
  
  *::-webkit-scrollbar-thumb {
    border-radius: 14px;
    background-color: #929292;
  }
  
  *::-webkit-scrollbar-thumb:hover {
    background-color: #5F5F5F;
  }
  
  *::-webkit-scrollbar-thumb:active {
    background-color: #8F8242;
  }
  