.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #9bb832;
	color: #fff;
	border-radius: 30px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
	transition: bottom 0.5s ease;
}

.float:hover {
	text-decoration: none;
	color: #25d366;
	background-color: #fff;
}

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

.ventana-flotante {
	display: none;
}

/* Estilos para tablet y PC */

.ventana-flotante {
	position: fixed;
	width: 375px;

	bottom: -330px;
	right: 20px;
	background-color: #063b37;
	color: #fff;
	border-radius: 40px;
	font-family: sans-serif;
	z-index: 1000;
	display: block;
	transition: bottom 0.5s ease;
}

.ventana-flotante.mostrar {
	bottom: 20px;
}

.ventana-flotante .titulo {
	padding: 30px;
	background-color: rgb(6, 75, 67);
	color: #fff;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ventana-flotante .titulo .cerrar {
	cursor: pointer;
}

.ventana-flotante .titulo svg {
	margin-right: 5px;
	fill: #ffffff;
}

.ventana-flotante .saludo {
	padding: 10px;
}

.ventana-flotante .contenido {
	padding: 20px;
	background-image: url('../images/header/descarga.png');
	background-size: cover;
	;
}

.ventana-flotante .mensaje {
	background-color: #454a4d;
	width: 243px;
	height: 82px;
	border-radius: 10px;
	margin-bottom: 20px;
	color: #fff;
	padding: 12px;
}

.ventana-flotante .mensaje span {
	font-size: 14px;
}

.ventana-flotante .hora-actual {
	display: flex;
	color: rgba(221, 218, 214, 0.5);
	margin-top: 4px;
	font-size: 12px;
	line-height: 16px;
	justify-content: flex-end;
}

.ventana-flotante .hora-actual svg {
	margin-right: 5px;
	fill: #000000;
	margin-left: 3px;
}

.ventana-flotante form {
	background-color: rgb(32, 35, 37);
	display: flex;
	padding: 17px 16px;
	align-items: center;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}

.ventana-flotante form input {
	width: calc(100% - 55px);
	margin-right: 10px;
	border-radius: 5px;
	min-height: 45px;
	font-size: 14px;
	line-height: 1.5;
	border-radius: 20px;
	padding: 0 16px;
	border: none;
	background-color: #fefefe;
	width: 100%;
	min-height: 45px;
	transition: box-shadow 0.2s ease-in-out;
	color: #0B141B !important;
}

.ventana-flotante form button {
	width: 55px;
	height: 35px;
	padding: 0;
	margin: 0;
	background-color: #ffffff00;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.ventana-flotante form button svg {
	fill: #ffffff;
}