/* Scroll to top button */
#scroller {
	z-index: 10;
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	border-radius: 50%;
	position: fixed;
	right: 30px;
	bottom: -50px;
	box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.2);
	transition: bottom 0.45s ease;
}

#scroller:hover {
	cursor: pointer;
}

#scroller-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 25px;
	height: 25px;
	color: white;
}

/* Mobile-phones */
@media screen and (max-width:767px) {
	#scroller {
		visibility: hidden;
	}
}
