:root	{
	--color-one: 	#FFFFFF;
	--color-two:	#000000;
	--color-three:	#1c1c1e;
	--color-four: 	#99D4F2;
	--color-five: 	#80C2FF;
	--color-six:    #0066ff;
}

body::before
{
	
    background: #363636;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	content: "";
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	transition: none;
	width: 100vw;
	z-index: -1;
}

#Report_Criteria select
{
	border-color: var(--color-three);
}

/* width */
::-webkit-scrollbar {
	width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey; 
	border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: #6f97af; 
	border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: #25abff; 
  }
  