
/* ATTEMPT */

.Select-menu-outer {
  background-color: rgb(250, 250, 250) !important;
}

/* TESTED */

.accordion-button {
    /* font-size: xx-small; */
	background-color: rgba(20,20,20,0.8); /* rgba(8, 110, 125,0.98); */
	color: rgba(250,250,250,0.98);
	border-color: red;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(20,20,20,0.6);
	color: rgba(200,200,200,0.98);
	border-color: red;
}

/* border around a div */
.div-hyperpar {
    border: solid 1px #042f33;
    border-radius: 15px;
    padding: 5px 5px 5px 5px;
}

/* 
* div::-webkit-scrollbar {
*  /* background: red;
*  display: none; /
*  width:30px;
* }
*/

/* Hide scrollbar for IE, Edge and Firefox */
/* .example {
*  -ms-overflow-style: none;  /* IE and Edge */
/*  scrollbar-width: none;  /* Firefox */
/*} */

/*
 *  STYLE 7
 */

div::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: rgba(200,200,200,0.4); /*#F5F5F5;*/
	border-radius: 10px;
}

div::-webkit-scrollbar
{
	width: 10px;
	background-color: rgba(0,0,0,0.3);
}

div::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.11, rgba(200,200,200,0)),
									   color-stop(0.22, rgba(60,60,60,0.7)),
									   color-stop(0.50, rgba(20,20,20,1)),
									   color-stop(0.78, rgba(60,60,60,0.7)),
									   color-stop(0.89, rgba(200,200,200,0)));
									   
}



div::-webkit-scrollbar-track:horizontal
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: rgba(200,200,200,0.4); /*#F5F5F5;*/
	border-radius: 10px;
}

div::-webkit-scrollbar:horizontal
{
    height: 11px;
	background-color: rgba(0,0,0,0.3);
}

div::-webkit-scrollbar-thumb:horizontal
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   right top,
									   color-stop(0.38, rgba(200,200,200,0)),
									   color-stop(0.44, rgba(60,60,60,0.7)),
									   color-stop(0.50, rgba(20,20,20,1)),
									   color-stop(0.56, rgba(60,60,60,0.7)),
									   color-stop(0.72, rgba(200,200,200,0)));
									   
}


/*
div::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(122,153,217)),
									   color-stop(0.72, rgb(73,125,189)),
									   color-stop(0.86, rgb(28,58,148)));
}
*/
