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

*,
*:before,
*:after {
  	margin: 0;
  	padding: 0;
  	box-sizing: border-box;
}

.container { /*contenedor header*/
  	width: 100%;
  	height: 60px;
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 5;
	top:0px;
}

.menu-header {
	width: 100%;
	height: 70px;
	z-index: 1000;
	position: relative;
	left: 0px;
}

/* LOGOTIPOS */
.logo-qs{
	background: rgba(255, 255, 255, 0);
	text-transform: uppercase;
	top: 0px;
	left: 0px;
	width: 200px;
	height: 24px;
	z-index: 23;
	position: fixed;
}
#logo-qs{
	float: left;
	margin: 9px 0 0 0px;
}
.logo-aiag{
	background: rgba(255, 255, 255, 0);
	text-transform: uppercase;
	top: 0px;
	right: 0px;
	width: 180px;
	height: 24px;
	z-index: 24;
	position: fixed;
}
#logo-aiag{
	float: right;
	margin: 20px 20px 0 0px;
}

.ic-header{
	margin-bottom: 3px;
}

.contenedor-fijo-color{
	width: 100%;
  	height: 60px;
	background-color:rgb(70,127,192); /*color fondo barra header azul*/
	opacity:0.4; /* Opacidad 40% */
	position: fixed;
	left: 0px;
}
.contenedor-fijo{
	width: 100%;
  	height: 60px;
	position: fixed;
	left: 0px;
}

.tutorial { /*contenedor menú*/
  	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.botonera-header-fijo{
	background: rgba(255, 255, 255, 0);
	text-transform: uppercase;
	top: 0px;
	right: 28px;
	width: 110px;
	height: auto;
	z-index: 11;
	position: fixed;
}
#botonera-header-fijo{
	float: right;
	margin: 25px 100px 0 0px;
	height: auto;
}
.ligas_header-fijo {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.5rem;
	color: #fff;
	margin-bottom: 12px;
	border-right: solid thin #fff;
}


.tutorial .slider { /*contenedor submenú*/
 	width: 100%;
  	background-color: #F03861;
}

.tutorial ul {
  	font-size: 0;
  	list-style-type: none;
}

.tutorial ul li { /*Estilo para botones*/
  	font-family: "Open Sans", sans-serif;
  	font-size: 0.8rem;
  	font-weight: normal;
	text-align: left;
  	color: #FFFFFF;
  	display: inline-block;
  	position: relative;
	line-height: 30px;
	z-index: 20;
	text-transform: uppercase;
	margin: 0px 2px 0px 2px;
  	background-color: #85ADC7;
	padding: 15px 15px 15px 15px;
	height: auto;
}
.tutorial ul li ul {
  	display: none;
	margin: 0px -5px 0px -5px;
}
.tutorial ul li:hover { /*hover caja menu*/
  	cursor: pointer;
  	background-color: #2ca44b;
}
.tutorial ul li:active { /*hover caja menu*/
  	cursor: pointer;
  	background-color: #2ca44b;
}
.tutorial ul li:hover ul { /*Caja menú*/
  	display: block;
  	margin-top: 15px;
  	width: 200px;
  	left: 0;
  	position: absolute;
}
.tutorial ul li:hover ul li { /*color submenú*/
  	display: block;
  	background-color: #2ca44b;
}
.tutorial ul li:hover ul li span { /*color caja texto "nuevo"*/
  	float: right;
  	color: #f9f9f9;
  	background-color: #F03861;
  	padding: 2px 5px;
  	text-align: center;
  	font-size: .8rem;
  	border-radius: 3px;
}
.tutorial ul li:hover ul li:hover { /*hover submenú*/
  	background-color: #6dda89;
}
.tutorial ul li:hover ul li:hover span { /*hover texto "nuevo"*/
  	background-color: #ee204e;
}

a {
	text-decoration: none;
	color: #ffffff;
}

a:hover {	color: #ffffff;}