/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
/* Track */
::-webkit-scrollbar-track {
  box-shadow: transparent; 
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #3A3B3C; 
  border-radius: 10px;
}

::-moz-scrollbar {
  width: 5px;
}

/* Track */
::-moz-scrollbar-track {
  box-shadow: transparent; 
  border-radius: 10px;
}

/* Handle */
::-moz-scrollbar-thumb {
  background: #3A3B3C; 
  border-radius: 10px;
}
body {
    overflow: overlay;
}