
.side-scroll::-webkit-scrollbar-track{
	box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
	background-color:  var(--white);
	border-radius: 0px;
}

.side-scroll::-webkit-scrollbar{
	width: 5px;
	background-color: #F5F5F5;
}

.side-scroll::-webkit-scrollbar-thumb{
	background-color: #d0e9d9;
	/* background-color: var(--primary); */
}

.white-scroll::-webkit-scrollbar-track{
	box-shadow: none;
	background-color:  var(--white);
	border-radius: 0px;
}

.white-scroll::-webkit-scrollbar{
	width: 1px;
	background-color: #ffffff;
}

.white-scroll::-webkit-scrollbar-thumb{
	background-color: #ffffff;
	/* background-color: var(--primary); */
}

