#scrollUp {
	background: #3b587e url("../images/totop.svg") no-repeat scroll center 50%;
	right: 20px;
	bottom: 20px;
	width: 58px;    /* Width of button */
	height: 58px;   /* Height of button */
	filter: alpha(opacity=30);
	opacity: 0.3;
	-webkit-transition: opacity .3s 0s;
	-moz-transition: opacity .3s 0s;
	-o-transition: opacity .3s 0s;
	transition: opacity .3s 0s;
}

#scrollUp:hover {
	filter: alpha(opacity=80);
	opacity: 0.8;
}

#scrollUp:active, #scrollUp:focus {
	outline:none;
}

@media (max-width: 767px) {
	#scrollUp { display: none !important }
}
@media (min-width: 768px) and (max-width: 991px) {
	#scrollUp {
		width: 40px;
		height: 40px;
	}
}
@media (min-width: 992px) and (max-width: 1200px) {
	#scrollUp {
		width: 48px;
		height: 48px;
	}
}