#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	right: 40px;
    bottom: 40px;
	overflow:hidden;
	width:51px;
	height:51px;
	border:2px solid #21606e;
	border-radius:50%;
	background:#21606e;
  	color: #fff;
	z-index: 1000;
	text-align:center;
  	line-height: 46px;
	transition: .3s all ease;
	box-shadow: 1px 1px 10px -1px rgba(16, 16, 16, 0.2);
	-webkit-transform: translateY(100px);
	transform: translateY(100px);
}

#toTop:before {
	font-family: "FontAwesome";
    content: "\f077";
}

#toTop:hover {
  	text-decoration: none;
	border:2px solid #21606e;
	background:#FFF;
	color: #21606e;
}

#toTop.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}