.btn-flotante {
	position: fixed;
	bottom: 40px;
	right: 40px;
	transition: all 300ms ease 0ms;
	box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);*/
	z-index: 99;
	border-radius: 50%;
}
.btn-flotante-izq {
	position: fixed;
	bottom: 40px;
	left: 40px;
	transition: all 300ms ease 0ms;
	box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
	z-index: 99;
	border-radius: 50%;
}
.btn-flotante-wtz {
	position:fixed;
	bottom: 40px;
	left:auto;	
	transition: all 300ms ease 0ms;
	box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
	z-index: 99;
	border-radius: 50%;
}
.btn-flotante:hover {
	background-color: #33CC33; /* Color de fondo al pasar el cursor */
	box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.3);
	transform: translateY(-7px);
}
.btn-flotante-izq:hover {
	background-color: #33CC33; /* Color de fondo al pasar el cursor */
	box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.3);
	transform: translateY(-7px);
}
.btn-flotante-wtz:hover {
	background-color: #33CC33; /* Color de fondo al pasar el cursor */
	box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.3);
	transform: translateY(-7px);
}
