.scroll-up-button{
	position								: fixed;
	left										: 50px;
	bottom									: 50px;
	background							: rgba(0,0,0,0.3);
	border-radius						: 5px;
	padding									: 10px 15px;
	color										: white;
	cursor									: pointer;
	text-align							: center;
	-webkit-user-select			: none;
	-moz-user-select				: none;
	-ms-user-select					: none;
	user-select							: none;
	z-index									: 90;
	display									: none;
	transition							: 1s;
}
.scroll-up-button.show{
	display									: inline-block;
	transition							: 1s;
}
.scroll-up-button:before {
	content									: 'arrow_upward';
	font-family							: 'Material Icons';
	color										: white;
	font-size								: 24px;
}
.scroll-up-button:hover {
	background							: rgba(0,0,0,0.6);
	transition							: 1s;
	box-shadow							: 0 0 10px 0 rgba(0,0,0,0.25);
}
