/* Este bloque de estilos es para el botón flotante que sube y baja la página en el welcome */

.btn-flotante {
    height: 40px;
    width: 40px;
	font-size: 16px; /* Cambiar el tamaño de la tipografia */
	text-transform: uppercase; /* Texto en mayusculas */
	font-weight: bold; /* Fuente en negrita o bold */
	color: #ffffff; /* Color del texto */
	border-radius: 50px; /* Borde del boton */
	letter-spacing: 2px; /* Espacio entre letras */	
	padding: 10px 10px; /* Relleno del boton */
	position: fixed;
	bottom: 70px;
	right: 10px;
	transition: all 300ms ease 0ms;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	z-index: 99;
    cursor: pointer;
}

.btn-flotante:hover {	
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
	transform: translateY(-3px);
}

/* Este botón flotante es para cambiar  vista horizontal o vertical en la vista del welcome */

.btn-change-view {
	background: none;
	border: 0;
	color: inherit;
	/* cursor: default; */
	font: inherit;
	line-height: normal;
	overflow: visible;
	padding: 0;
	-webkit-user-select: none; /* for button */
	-webkit-appearance: button; /* for input */
	-moz-user-select: none;
	-ms-user-select: none;	

    height: 40px;
    width: 40px;
	font-size: 16px; /* Cambiar el tamaño de la tipografia */
	text-transform: uppercase; /* Texto en mayusculas */
	font-weight: bold; /* Fuente en negrita o bold */
	color: #ffffff; /* Color del texto */
	border-radius: 50px; /* Borde del boton */
	letter-spacing: 2px; /* Espacio entre letras */	
	padding: 10px 10px; /* Relleno del boton */
	position: fixed;
	bottom: 70px;
	left: 10px;
	transition: all 300ms ease 0ms;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	z-index: 99;
    cursor: pointer
}

.btn-change-view:hover {	
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
	transform: translateY(-3px);
}

/* @media only screen and (max-width: 600px) {
 	.btn-flotante {
		font-size: 14px;
		padding: 12px 20px;
		bottom: 20px;
		right: 20px;
	}
} */