#scrollToTop{
	position: fixed;
	bottom:30px;
	right:30px;
	background: #fff;
	border: 1px solid #ccc;
	height:50px;
	width:50px;
	border-radius: 25px;
	display: none;
	z-index: 2;
}
#scrollToTop.small{
	height:40px;
	width:40px;
	border-radius: 20px;
}
#scrollToTop.large{
	height:65px;
	width:65px;
	border-radius: 33x;
}
#scrollToTop.left{
	left:30px;
}
#scrollToTop.square{
	border-radius: 0;
}
#scrollToTop.semi{
	border-radius: 10px;
}
#scrollToTop a{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    text-align: center;
}
#scrollToTop a i{
	margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px!important;
}
#scrollToTop.large a i{
	font-size: 43px!important;
}
#scrollToTop.small a i{
	font-size: 25px!important;
}
#scrollToTop.lightshadow{
	-webkit-box-shadow: 0px 0px 26px -5px rgba(0,0,0,0.43);
	-moz-box-shadow: 0px 0px 26px -5px rgba(0,0,0,0.43);
	box-shadow: 0px 0px 26px -5px rgba(0,0,0,0.43);
}
#scrollToTop.mediumshadow{
	-webkit-box-shadow: 0px 0px 36px -5px rgba(0,0,0,0.55);
	-moz-box-shadow: 0px 0px 36px -5px rgba(0,0,0,0.55);
	box-shadow: 0px 0px 36px -5px rgba(0,0,0,0.55);
}
#scrollToTop.strongshadow{
	-webkit-box-shadow: 0px 0px 37px -6px rgba(0,0,0,0.78);
	-moz-box-shadow: 0px 0px 37px -6px rgba(0,0,0,0.78);
	box-shadow: 0px 0px 37px -6px rgba(0,0,0,0.78);
}
@media screen and (min-width: 992px) {
	#scrollToTop.noDesktop{
		display: none!important;
	}
}
@media screen and (min-width: 576px) and (max-width: 991px ) {
	#scrollToTop.noTablet{
		display: none!important;
	}
}
@media screen and (max-width: 575px) {
	#scrollToTop.noPhone{
		display: none!important
	}
}
#scrollToTop .fa-chevron-up, #scrollToTop .fa-caret-up{
	top: 45%;
}