.scroll-up-button {
	position								: fixed;
	left									: 50px;
	bottom									: 50px;
	background								: rgba(0,0,0,0.3);
	border									: 2px solid #FCD900;
	border-radius							: 50%;
	padding									: 18px 0px;
	color									: #FCD900;
	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								: .4s ease-in-out;
	box-shadow								: 0 5px 10px rgb(0 0 0 / 25%);
}
.scroll-up-button.show {
	display									: block;
}
.scroll-up-button:before {
	content									: 'expand_less';
	font-family								: 'Material Icons';
	color									: inherit;
	font-size								: 60px;
	font-weight								: 500;
}
.scroll-up-button:hover {
	background								: rgba(0,0,0,0.6);
	transition								: .4s ease-in-out;
	color									: white;
	border-color							: white;
}

/*
.scroll-up-button{
	position								: fixed;
	left									: 50px;
	bottom									: 50px;
	background								: rgba(0,0,0,0.3);
	border									: 2px solid #FCD900;
	border-radius							: 50%;
	padding									: 10px 10px;
	color									: #FCD900;
	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									: #FCD900;
	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);
}
*/