#anchorscroll {
	position: fixed;

	bottom: -100%;
	right: 2rem;

	transition: .2s ease-in-out;
}

#anchorscroll.visible {
	bottom: 2rem;
}

#anchorscroll a {
	outline: none;
}

#anchorscroll img {
	display: block;
}

/* Hide anchor scroll on touchscreens */
@media screen and (max-width: 1024px) {
	#anchorscroll {
		display: none;
	}
}
