#scroll {
    position:fixed;
    right: 20px;
    bottom: 50px;
    cursor:pointer;
	height: 60px;
    background-color: var(--meta-meditazione-color-primary);
    display:none;
  	border-radius: 5px;
	width: 50px;
	font-size: 24px;
	z-index: 9999;
}
#scroll span {
    position:absolute;
	left: 10px;
	color: white;
	top: 16px;
}
#scroll:hover {
    opacity: 0.8;
  	transition: background 300ms ease-in;
}	
#scroll:hover span {
	color: white;
}



@media (min-width: 768px) {
#scroll {
	right: 50px;
	bottom: 50px;
	height: 40px;
	width: 40px;
}


#scroll span {
	left: 5px;
	top: 7px;
}

}