.float{
	position:fixed;
	width:80px;
	height:80px;
	bottom: 15px;
    right: 16px;
	background-color:#4cc370;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
  transition: all 0.3s;
  animation: bounce 1s ease-in-out 5s infinite;
}
.float:hover {
	text-decoration: none;
	color: #fff;

	background: linear-gradient(135deg, #ffd272 0%, rgba(248, 117, 52, 0.5) 45%, #ff4646c7 75%);
}

.my-float{
	margin-top:16px;
	font-size: 15px;
}
@keyframes bounce {
	0%, 100% {
	  transform: translateY(0);
	}
	50% {
	  transform: translateY(-10px); /* Ajusta la distancia del rebote */
	}
  }