.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
	text-decoration: none;
	color: #FFF;
	background-color:#1ab152;
	animation: shake 1s;
	animation-iteration-count: infinite;
}

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

.whatsapp-icon {
    width: 45px;
    height: 45px;
}

@keyframes pulse {
	0% {
	  transform: scale(1);
	  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
	  transform: scale(1.05);
	  box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
	}
	100% {
	  transform: scale(1);
	  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
  }
  
  .whatsapp-float {
	animation: pulse 2s infinite;
  }