a#scroll-to-top {
	
	/* Background image, replace in images folder */
	/* original link url(../images/arrow.png) */
	background: url(https://www.die-sozialbegleiterin.ch/wp-content/uploads/2022/05/arrow.svg) no-repeat center center;
	
	/* Match to background image size */
	width: 90px;
	height: 90px;
	
	/* Postion on the page */
	position: fixed;	
	right: 3rem;
	bottom: 3rem;
	
	/* Hide link text */
	text-indent: -9999px;
	font-size: 0;
	
	/* Other */
	cursor: pointer;	
	outline: 0;
	
}

body.rtl a#scroll-to-top {
	left: 30px;
}

/* Responsive Design Support */
@media only screen and (max-width: 480px) {
	
	a#scroll-to-top {
	
		/* Changing Position */		
		right: 1rem;
		bottom: 1rem;
	}
		
	body.rtl a#scroll-to-top {
		left: 1rem;
		bottom: 1rem;
	}
}