.btn-flotante 
{
	border-radius: 50%; /* Borde del boton */
	background-color: transparent; /* Color de fondo */
	padding: 1px 1px; /* Relleno del boton */
	position: fixed;
	bottom: 40px;
	right: 40px;
	transition: all 300ms ease 0ms;
	z-index: 99;
}

.btn-flotante:hover 
{
	background-color: transparent; /* Color de fondo al pasar el cursor */
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(-7px);
}

@media only screen and (max-width: 600px)
{
 	.btn-flotante {
		font-size: 1px;
		padding: 1px 1px;
		bottom: 20px;
		right: 20px;
	}
}

