/*** Gem2i Custom Scrollbars ***/

::-webkit-scrollbar {  
    width: 8px;  
}

.sidebar::-webkit-scrollbar {  
    width: 8px;
}
  

::-webkit-scrollbar-track {  
    background-color: #060c11;   
}  

.sidebar::-webkit-scrollbar-track {  
    background-color: #172634; margin: 100px  
}  

::-webkit-scrollbar-thumb {  
    background-color: #3f5263; 
	transition: all 0.5s ease-in-out !important; 
} 

.sidebar::-webkit-scrollbar-thumb {  
    background-color: rgb(136, 157, 174); 
	transition: all 0.5s ease-in-out !important; 
}  

::-webkit-scrollbar-thumb:hover {  
    background-color: white;  
}  

::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}

/* overides metro scrolbars in IE10 and makes them look like a default scrollbar */
@-ms-viewport{
	width: auto !important;
}

::-moz-selection {
  color: #fff;
  background: #060c11;
}
::selection {
  color: #fff;
  background: #060c11;
}