.scroll-up.visible:hover {
	color: #d3ddd6;
	opacity: 1;
	text-decoration: none;
}

.scroll-up:active {
	transform: scale(.9);
}
 
.scroll-up {
	bottom: 15px;
	color: #d3ddd6;
	cursor: pointer;
	font-size: 30px;
	line-height: 1;
	opacity: 0;
	position: fixed;
	left: 15px;
	text-align: center;
	text-decoration: none;
	transition: all .2s ease-in-out, transform .05s ease-in-out;
	z-index: 9999;
}

.scroll-up::before {
	content: '\f35b';
	display: inline-block;
	font-family: 'fontawesome';
	position: relative;
	right: 0;
}

.scroll-up.visible {
	opacity: .75;
}