/* ----------------------------------------------------------------
	Scroll to Top
-----------------------------------------------------------------*/
#scrollToTop {
	display: none;
	z-index: 299;
	position: fixed;
	width: 40px;
	height: 40px;
	background-color: #333;
	background-color: rgba(0,0,0,0.3);
	font-size: 20px;
	line-height: 36px;
	text-align: center;
	color: #FFF;
	top: auto;
	left: auto;
	right: 30px;
	bottom: 50px;
	cursor: pointer;
	border: 1px solid #99999950;
	border-radius: 5px;
	color: #99999950;
}

body:not(.device-touch) #scrollToTop {
	transition: background-color .2s linear;
	-webkit-transition: background-color .2s linear;
	-o-transition: background-color .2s linear;
}

.stretched #scrollToTop { bottom: 30px; }

#scrollToTop:hover { background-color: #99999950; }
