/*.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.whatsapp-container.show {
    opacity: 1;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
} */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1000; /* Asegúrate de que esté por encima de otros elementos */
}

.whatsapp-container.show {
    opacity: 1;
}

.float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    position: absolute; /* Cambia a absolute */
    bottom: 0; /* Mueve el botón al fondo del contenedor */
    right: 0; /* Mueve el botón a la derecha del contenedor */
    margin: 20px; /* Ajusta el margen para que no esté pegado al borde del contenedor */
    transition: background-color 0.3s, box-shadow 0.3s;
}

.float:hover {
    background-color: #fff;
    color: #25d366;
    box-shadow: 2px 2px 5px #999;
}

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