/* Back to top */
a#scroll-to-top {
    position: fixed;
    right: 21px;
    bottom: 25px;
    display: none;
	z-index: 999;
	/* Hide link text */
	text-indent: -9999px;
	font-size: 0;
	/* Other */
	cursor: pointer;	
	outline: 0;
}

a#scroll-to-top{
	/* Background image, replace in images folder */
    background: url(https://www.itfirms.co/wp-content/themes/lawyeria-lite/images/arrow_up.png?v=1) no-repeat center center;
    background-size: 70px;
    height: 60px;
    width: 60px;
    border: none;
    display: inline-block;
    border-radius: 5px;
    border-radius: 100%;
}

a#scroll-to-top:focus, a#scroll-to-top:hover {
    text-decoration: none;
}

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: 0;
		bottom: 0;
	}
		
	body.rtl a#scroll-to-top {
		left: 0;
		bottom: 0;
	}
}