/*#region scrollbar*/
::-webkit-scrollbar {
    width: 10px;
    height: 100%;
  }
  
  
  
  ::-webkit-scrollbar-track,
  ::-webkit-scrollbar-corner {
    background-color: rgb(30,30,30)
  }
  
  ::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: rgb(90, 90, 91);
  }
  
  ::-webkit-scrollbar-thumb:vertical:hover {
    background-color: rgb(70, 70, 71);
  }
  
  ::-webkit-scrollbar-thumb:vertical:active {
    background-color: rgb(70, 70, 71);
  }