a#scroll-to-top {
	
	/* Background image, replace in images folder */
	background: url(../images/arrow.png) no-repeat center center;
	
	/* Match to background image size */
    /* DANI */
    /*width: 35px;
	height: 35px;*/
	width: 80px;
	height: 80px;
	/* **** */
	
	/* Postion on the page */
	position: fixed;	
	right: 30px;
	/* CÈSAR */
	/*bottom: 30px;*/
	bottom: 60px;
	/* ***** */	
	
	/* Hide link text */
	text-indent: -9999px;
	font-size: 0;
	
	/* Other */
	cursor: pointer;	
	outline: 0;
	
	/* CÈSAR */
	z-index: 100;
	/* ***** */
	
	/* DANI */
	transition: all 0.3s linear 0s;
    opacity:1;
	/* **** */	
	
}

	/* DANI */
a#scroll-to-top:hover {
	opacity:0.8!important;
}
	/* **** */

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: 5px;
		bottom: 10px;
	}
		
	body.rtl a#scroll-to-top {
		left: 0;
		bottom: 0;
	}
}