.scroll-up-button{
	position								: fixed;
	left										: 50px;
	bottom									: 70px;
	background							: rgba(0,0,0,0.3);
	border-radius						: 5px;
	padding									: 10px 50px 10px 65px;
	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 {
	position								: absolute;
	margin-left							: -20px;
	content									: 'keyboard_arrow_up';
	font-family							: 'Material Icons';
	color										: white;
}
.scroll-up-button:hover {
	background							: rgba(0,0,0,0.6);
	transition							: 1s;
}
