.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:50px;
	right:40px;
	background-color:#e5eee8;
	color:#181918;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #252323;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #FFF;
  background-color:#1ab152;
    
    animation: pulse-animation  0.8s;

 
  animation-iteration-count: 3;
}

.my-float{
	margin-top:16px;
}

  @keyframes pulse-animation {
	0% {
	  box-shadow: 0 0 0 0px rgb(255, 255, 255);
	}
	100% {
	  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}
  }
