/*
  ****************
  ** Scroll Bar **
  ****************
*/
::-webkit-scrollbar { width: 7px; }

/*
  ***********
  ** Track **
  ***********
*/
::-webkit-scrollbar-track {
	background-color: #05031c;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

/*
  ************
  ** Handle **
  ************
*/
::-webkit-scrollbar-thumb {
	background-color: #7159c1;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

::-webkit-scrollbar-thumb:window-inactive { background-color: #7159c1; }

/*
  ************
  ** Mobile **
  ************
*/
@media only screen and (max-width: 850px) {
  ::-webkit-scrollbar { width: 0px; }
}