/* -- BACK TO TOP BUTTON -- */
body a.generate-back-to-top {
	border-radius: 7px;
	z-index: 3000;
	bottom: 140px;
}
body a.generate-back-to-top,
body a.generate-back-to-top:visited {
    background-color: var(--neutral-1000); 
    color: var(--neutral-0);
	opacity: 0.4;
}
/* the button when you hover/click it */
body a.generate-back-to-top:hover,
body a.generate-back-to-top:focus {
    background-color: var(--neutral-1000); 
    color: var(--neutral-0);
    opacity: 0.7;
}
/* hide the back to top button on mobile devices */
@media (max-width: 768px) {
	/* CSS in here for mobile only */
	body a.generate-back-to-top {
		display: none;
	}
}