
/* Custom Scrollbar surprise for chromium users */
/* width */
::-webkit-scrollbar {
    width: 4px;
    transition: 0.5s;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #ffffff;
    opacity: 0.5 !important;
    border-radius: 1px;
    transition: 0.5s;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(0, 0, 0);
    opacity: 0.1 !important;
    border-radius: 1px;
    transition: 0.5s;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(48, 48, 48);
    transition: 0.5s;
  }
