.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:10px;
	right:10px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  	font-size:30px;
	box-shadow: 1px 2px 3px #999;
  	z-index:100;
    transition: all 0.5s ease;
}
.float:hover {
	text-decoration: none;
	color: #FFF;
  	background-color:#1ab152;
    animation: shake 1s;
  	animation-iteration-count: infinite;
}

.my-float{
	margin-top:16px;
}
.float2{
	position:fixed;
	width:60px;
	height:60px;
	bottom:80px;
	right:10px;
	background-color:#F523B2;
	color:#FFF;
	border-radius:50px;
	text-align:center;
 	 font-size:30px;
  	box-shadow: 1px 2px 3px #999;
  	z-index:100;
    transition: all 0.5s ease;
}
.float2:hover {
	text-decoration: none;
	color: #FFF;
    background-color:#e42faa;
    animation: shake 1s;
    animation-iteration-count: infinite;
}

.my-float2{
	margin-top:16px;
}
.float3{
	position:fixed;
	width:60px;
	height:60px;
	bottom:150px;
	right:10px;
	background-color:#4371d4;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 1px 1px 3px #999;
    z-index:100;
    transition: all 0.5s ease;
}
.float3:hover {
	text-decoration: none;
	color: #FFF;
    background-color:#3064d4;
    animation: shake 1s;
    animation-iteration-count: infinite;
}

.my-float3{
	margin-top:16px;
}