/* Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: rgba(142, 180, 227, 1); 
}

::-webkit-scrollbar-thumb {
	background: rgba(85, 142, 213, 1);
}

/* Button Up */
#scroll_to_top {
	display: none;
	position: fixed;
	bottom: 50px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: rgba(85, 142, 213, 0.7);
	color: white;
	cursor: pointer;
	padding: 5px;
	border-radius: 4px;
}

#scroll_to_top button {
	width: 25px;
}

#scroll_to_top:hover {
	background-color: rgba(0, 112, 192, 0.8);
}