#scrollToTop {
	background: #c71443;
	border: 0;
	border-radius: 3px;
	bottom: 10px;
	color: #ffffff;
	cursor: pointer;
	font: inherit;
	font-size: 0.9em;
	opacity: 0;
	padding: 12px;
	position: fixed;
	right: 10px;
	text-align: center;
	transition: background-color 0.2s ease-in-out, opacity 0.5s linear;
	visibility: hidden;
	z-index: 9999;
}

#scrollToTop.is-visible {
	opacity: 1;
	visibility: visible;
}

#scrollToTop:hover {
	background: #062c66;
	color: #ffffff;
}

#scrollToTop > img {
	display: block;
	margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
	#scrollToTop {
		transition: none;
	}
}
