.scrollElement {
	position: fixed;
	right: 15px;
	bottom: 15px;
	width: 60px;
	height: 60px;
	background-image: url('../../images/scroll-to-top/arrow-up.svg');
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0.8;
	visibility: hidden;
	z-index: 9999;
}

.scrollElement.visible {
	visibility: visible;	
}

.scrollElement.visible:hover{
	opacity: 1;
}

@media only screen and (max-width: 1024px) {
	.scrollElement {
		width: 40px;
		height: 40px;
	}
}