@media only screen and (max-width: 1000px) {
	::-webkit-scrollbar {
		-webkit-appearance: none;
	}

	::-webkit-scrollbar:vertical {
		width: 10px;
	}

	::-webkit-scrollbar:horizontal {
		height: 10px;
	}

	::-webkit-scrollbar-thumb {
		background-color: #c1c1c1;
		border-radius: 0px;
		border: 2px solid #ffffff;
	}

	::-webkit-scrollbar-track {
		border-radius: 0px;  
		background-color: #ffffff; 
	}
}