@charset "utf-8";
/* CSS Document */

/*colores
verde rgb(156, 186, 59)

*/
*{
	margin:0;
}

.contenedor_rotador{
	margin:0 auto;
	width:100%;	
	height:455px;
	position:relative; /* este relative es para los botones*/		
}

.rotador{
	width:100%;
	height:455px;
	overflow:hidden;
	margin:10px 0;
}

.grupo_rotador{
	width:100%;
	height:455px;
	position:relative; /*muy importante colocar esto porque si no el texto rotador con position absolute no funciona*/
}

.logo, .logo2, .logopie{
    width:150px; 
	height:43px;	
}


/*BOTONES, originalmente en la oja de estilo login*/
button {
    background-color: rgb(156, 186, 59); /*#4CAF50;*/
    color: white;
    padding: 8px 14px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
	z-index:200;
	border-radius: 20px;
}

.navbtn {
	position:fixed;
	right:10px;
	top:20px;
	font-size:32px;
	width:auto;
}
.loginbtn {
	position:fixed;
	right:10px;
	top:80px;
	width:auto;
}
.shopbtn {
	position:fixed;
	right:10px;
	top:140px;
	/*bottom:20px;*/
	font-size:32px;
	width:auto;
}



