#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	right: 40px;
    bottom: 40px;
	overflow:hidden;
	width:51px;
	height:51px;
	border:2px solid #016db6;
	border-radius:50%;
	background:#016db6;
  	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: 'Font Awesome 5 Free';
  	font-weight: 900;
    content: "\f077";
}

#toTop:hover {
  	text-decoration: none;
	border:2px solid #016db6;
	background:#FFF;
	color: #2BB378;
}

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