a#scroll-to-top {
	width: 35px;
	height: 35px;
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 9999;
	background-color: #9a9a9a;
	text-indent: -9999px;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	cursor: pointer;
	outline: 0;
	border: 0;
	text-decoration: none;
}

a#scroll-to-top::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	margin: -6px 0 0 -6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 8px solid #ffffff;
}

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

@media only screen and (max-width: 480px) {
	a#scroll-to-top {
		right: 0;
		bottom: 0;
	}

	body.rtl a#scroll-to-top {
		left: 0;
		bottom: 0;
	}
}
