@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	text-decoration: none;
}
header{
	width: 100%;
	top: 0;
	left: 0;
}
a{
	font-size: 12px;
	text-decoration: none;
	color: #212F3D;
}
p{
	font-size: 12px;
	color: #212F3D;
}
p *{
    font-size:inherit;
}
h1{
	font-size: 14px;
	color: #212F3D;
}
body{
    background-image: url(https://i.imgur.com/OIM4YvS.png);
}
/*BANNER*/
.banner{
	width: 100%;
	min-height: 210px;
	display: flex;
	background-repeat: repeat-x;
	background-position: center top;
	justify-content: center;
}
.banner-center{
	width: 1200px;
	height: 210px;
	background-color: transparent;
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
}
.redes{
	position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 40px;
    background-color: #293133;
    display: flex;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    z-index: 10;
}
.redes-btn{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    transition: height .25s ease, background-color .25s ease;
}

.redes-btn img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transition: .25s ease;
}

.redes-btn:hover{
    height: 65px;          /* Se alarga 25px */
    background: #17191a;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	box-shadow: 0px 0px 10px rgba(0,0,0,.5);
}
.logo{
	width: 100%;
	max-width: 1000px;
	height: auto;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}
.logo img{
	max-width: 100%;
	height: auto;
	display: block;
}
/*MENU*/
.headerinf{
	width: 100%;
	height: 50px;
	background-color:#293133;
	padding: 0px 20px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	display: flex;
}
.menu{
	width: 1200px;
	height: 100%;
	margin: auto;
	background-color: transparent;
}
.menu nav > ul{
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.menu nav > ul > li{
	position: relative;
}
.menu nav > ul > li.menu-ingresa{
	margin-left: auto;
}
i{
	margin-right: 5px;
	color: #ccc;
}
nav{
	height: 100%;
}
nav > ul{
	height: 100%;
	display: flex;	
}
nav ul li{
	height: 100%;
	list-style: none;
	position: relative;
}
nav > ul > li > a{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 20px;
	font-size: 12px;	
	color: #ccc;
	position: relative;
	transition: all 300ms ease;
}

/* Hover principal */
nav > ul > li > a:hover{
	background-color: #17191a;
	box-shadow: 0px 0px 10px rgba(0,0,0,.5);
}

/* Línea inferior */
nav > ul > li > a::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

/* Mostrar línea al hacer hover */
nav > ul > li > a:hover::after{
	transform: scaleX(1);
}

/* Inicio */
nav > ul > li:nth-child(1) > a::after{
	background: #1CB5FF;
}

/* Noticias */
nav > ul > li:nth-child(2) > a::after{
	background: #1CB5FF;
}

/* Campaña */
nav > ul > li:nth-child(3) > a::after{
	background: #1CB5FF;
}

/* Equipos */
nav > ul > li:nth-child(4) > a::after{
	background: #1CB5FF;
}

/* Ecotrón */
nav > ul > li:nth-child(5) > a::after{
	background: #1CB5FF;
}

/* Utilidades */
nav > ul > li:nth-child(6) > a::after{
	background: #1CB5FF;
}

/* Otras páginas */
nav > ul > li:nth-child(7) > a::after{
	background: #1CB5FF;
}
/* Otras páginas */
nav > ul > li:nth-child(8) > a::after{
	background: #1CB5FF;
}
nav > ul > li:nth-child(9) > a::after{
	background: #1CB5FF;
}

/*submenú*/
nav ul li ul{
	width: 200px;
	display: flex;
	flex-direction: column;
	background-color: #525353;
	position: absolute;
	top: 50px;
	left: -5px;
	padding: 14px 0px;
	visibility: hidden;
	opacity: 0;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	z-index: 10;
	transition: all 300ms ease;
}
nav ul li:hover ul{
	visibility: visible;
	opacity: 1;
	top: 50px;
}
nav ul li ul:before{
	content: '';
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 12px solid #525353;
	position: absolute;
	top: -12px;
	left: 20px;
}
nav ul li ul li a{
	display: block;
	color: #ccc;
	padding: 6px;
	padding-left: 14px;
	margin-top: 3px;
	font-size: 12px;
	transition: all 300ms ease;
}
nav ul li ul li a:hover{
	color: #fff;
	padding-left: 30px;
	font-size: 12px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/* Equipos */
nav > ul > li:nth-child(4) ul li a:hover{
	background-color: #1CB5FF;
}

/* Utilidades (morado) */
nav > ul > li:nth-child(6) ul li a:hover{
	background-color: #1CB5FF;
}

/* Otras páginas (turquesa) */
nav > ul > li:nth-child(7) ul li a:hover{
	background-color: #1CB5FF;
}
nav > ul > li:nth-child(8) ul li a:hover{
	background-color: #1CB5FF;
}
nav > ul > li:nth-child(9) ul li a:hover{
	background-color: #1CB5FF;
}
.nav-user{
	background-color: red;
	height: 20px;
	width: 20px;
}
/* Botón hamburguesa */
.menu-btn{
	display: none;
	font-size: 24px;
	cursor: pointer;
	align-items: center;
	padding: 0 15px;
	color: #2E4053;
}
/* Responsive */
@media (max-width: 768px){

    .banner{
		min-height: 100px;
	}

	.logo{
		padding: 10px;
	}

	.logo img{
		max-width: 60%;
		justify-self: center;
	}

	.headerinf{
		height: auto;
		flex-direction: column;
		padding: 0;
	}

	.menu-btn{
		display: flex;
		height: 50px;
		align-items: center;
	}

	.menu{
		display: none;
		width: 100%;
	}

	.menu.active{
		display: block;
	}

	nav > ul{
		flex-direction: column;
		width: 100%;
	}

	nav > ul > li{
		width: 100%;
		height: auto;
	}

	nav > ul > li > a{
		padding: 15px 20px;
		justify-content: center;
	}

	/* Submenús */
	nav ul li ul{
		position: static;
		width: 100%;
		visibility: visible;
		opacity: 1;
		display: none;
		padding: 0;
		box-shadow: none;
		background-color: #525353;
		text-align: center;
	}

	nav ul li ul:before{
		display: none;
	}

	nav ul li.open > ul{
		display: flex;
		flex-direction: column;
	}

	/* Desactivar hover de escritorio en móvil */
	nav > ul > li > a:hover{
		transform: none;
	}
}

.content{
	width: 1200px;
	height: auto;
	background-color: transparent;
	margin: 10px auto 30px auto;
}
.tablero{
	width: 1200px;
	height: 190px;
	margin:  auto;
	background-color: transparent;
	gap: 3px;
}
@media (max-width: 768px){
    .tablero{
        display: none;
    }
}
.anuncio{
	width: 397px;
	height: 190px;
	display: inline-block;
	border-radius: 5px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
	position: relative;
	overflow: hidden;
}
.anuncio > img:not(.anuncio-cover){
    position: relative;
    z-index: 1;
}
.anuncio-cover{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.anuncio-text{
	position: absolute;
	width: 380px;
	height: auto;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 5px;
    border-radius: 5px;
	z-index: 3;
}
.anuncio-cont{
	width: auto;
	height: auto;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 3px;
	padding: 4px;
	margin-top: 5px;
}
.anuncio-cont p{
	color: white;
	text-align: justify;
	text-transform: uppercase;
}
.anuncio-ext{
	width: 100px;
	height: auto;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 3px;
	padding: 4px;
	margin-top: 5px;
	display: flex;
	flex-direction: row;
	font-weight: bold;
}
.anuncio-ext a{
	color: white;
	text-decoration: none;
	margin-left: 5px;
}
.cuerpo-web{
	width: 1200px;
	height: auto;
	margin-top: 10px;
	background-color: transparent;
	display: flex;
	margin-bottom: 20px;
}
.cuerpo-izq{
	width: 795px;
	height: auto;
	background-color: transparent;
}
.box-news{
	width: 100%;
	height: auto;
	background-color: #fff;
	border-radius: 5px;	
	border:  1px solid #ccc;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px){
	.content{
		width: 500px;
		height: auto;
		margin: 10px auto 0;
	}
	.cuerpo-web{
		width: 500px;
		height: auto;
		margin-top: 10px;
		background-color: transparent;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	.cuerpo-izq{
		width: 400px;
		height: auto;
		background-color: transparent;
	}
	.cuerpo-der{
		width: 400px;
		height: auto;
		margin-left: 0;
		background-color: transparent;
	}
	.box-news{
		width: 400px;
		height: auto;
		margin: 0 auto;
	}
	.ult-news-box{
		width: 400px;
		height: auto;
	}
	.box-cont{
		width: 100%;
		max-height: 500px;
		overflow-y: auto;
		overflow-x: hidden;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.ult-news-min{
		width: 100%;
		box-sizing: border-box;
	}
	.movimientos-cont{
		width: 100%;
		max-height: 350px;
		overflow-y: auto;
		overflow-x: hidden;
		box-sizing: border-box;
	}
}
.box-tit{
	width: auto;
	height: 40px;
	background-color: #293133;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 10px;
	border-bottom: 5px solid #1CB5FF;
}
.box-tit h1{
	color: #fff;
	font-size: 12px;
	font-weight: normal;
}
.box-news-tit i{
	color: #fff;
}
.box-cont{
	width: auto;
	height: auto;
	background-color: #fff;
	border-radius: 5px;
	border-top-left-radius: 0;
    border-top-right-radius: 0;
	padding: 10px;
	gap: 5px;
}
.cuerpo-der{
	width: 395px;
	height: auto;
	margin-left: 10px;
	background-color: transparent;
}

/* Noticias */
.ult-news-min{
	width: 384px;
	height: 120px;
	background-color: #f1f1f1;
	border-radius: 5px;
	border: 1px solid #ccc;
	align-items: stretch;
    overflow: hidden;
    box-sizing: border-box;	
	display: flex;
}
.ult-news-cat{
	width: 120px;
	height: 118px;
	border-radius: 5px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: inset 0 0 0 3px #f1f1f1;
	background-image: url(../img/miniatura.png);
}
.ult-news-cont{
	width: 262px;
	height: 120px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	display: flex;
	flex-direction: column;
}
.ult-news-tit{
	width: 100%;
	max-width: 262px;
	max-height: 50px;
	height: auto;
	background-color: #d8d8d8;
	padding: 5px;
}
.ult-news-tit p{
	color: #212F3D;
	text-transform: uppercase;
	font-weight: bold;
}
.ult-news-desc{
	width: 100%;
	max-width: 262px;
	max-height: 50px;
	height: auto;
	padding: 5px;
}
.ult-news-desc p{
	text-align: justify;
}
.ult-news-date{
    width: fit-content;      
    max-width: 100px;
    min-height: 20px;
    background-color: #1CB5FF;
    border-radius: 3px;
    text-align: center;
    margin-top: auto;        
    margin-bottom: 5px;      
    margin-left: 5px;        
    padding: 2px 6px;
    box-sizing: border-box;
}
.ult-news-date a{
	color: #fff;
	font-size: 10px;
	font-size: bold;
}
.ult-news-date i{
	color: #fff;
	font-size: 10px;
	font-size: bold;
}
/*hover noticia*/
.ult-news-min{
	width: 384px;
	height: 120px;
	background-color: #f1f1f1;
	border-radius: 5px;
	border: 1px solid #ccc;
	align-items: stretch;
	overflow: hidden;
	box-sizing: border-box;	
	display: flex;
	cursor: pointer;
	transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.ult-news-tit{
	transition: background-color .18s ease;
}
.ult-news-min:hover{
	transform: translateY(-2px) scale(1.01);
	border-color: #bdbdbd;
}
.ult-news-min:hover .ult-news-tit{
	background-color: #444646;
}
.ult-news-min:hover .ult-news-tit p{
    color: #fff;
}

/* movimientos */
.div-mov{
	width: 360px;
	height: 55px;
	background-color: transparent;
	border-radius: 5px;
	border: 1px solid #ccc;
	flex-shrink: 0; 
	box-sizing: border-box;
	display: flex;
	align-items: center;
}
.mov-type{
	height: 100%;
	width: auto;
	padding: 4px;
	border-left: 5px solid blue;
	background-color: lightblue;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	margin-right: 5px;
	display: flex;
	gap: 5px;
}
.mov-img{
	height: 45px;
	width: 45px;
	background-color: #fff;	
	border: 1px solid #ccc;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
}
.mov-img img{
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	height: auto;
	max-width: none;
}
.mov-name{
	height: 100%;
	width: auto;
	display: flex;
	align-items: center;
	margin-right: 5px;
}
.mov-name{
	font-weight: bold;
}
.mov-desc{
	height: 100%;
	width: auto;
	display: flex;
	align-items: center;
	margin-right: 5px;
}
.mov-date{
	height: 30px;
	max-width: 100px;
	padding: 5px;
	border-radius: 3px;
	margin-left: auto;
	margin-right: 5px;
	flex-shrink: 0;
}
.mov-date a{
    font-size: 10px;
}
.mov-date i{
	color: #17191a;
	font-size: 10px;
}

/*FOOTER*/
footer{
	width: 100%;
	height: auto;
	background-color: #323232;
	display: flex;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	margin-top: 0;
}
.extra-info{
	height: auto;
	background-color: #323232;
	padding: 20px;
	display: flex;
	margin: auto;
}
.foot-izq{
	width: 580px;
	height: 180px;
	background-color: transparent;
	padding: 8px;
}
.foot-der{
	width: 310px;
	height: 180px;
	background-color: transparent;
	margin-left: 20px;
	padding: 8px;
}
.foot-info{
	width: auto;
	height: auto;
	background-color: transparent;
	padding: 3px;
}
.foot-info p{
	color: #AEB6BF;
	font-size: 15px;
	margin-top: 10px;
}

.foot-info p a{
	text-decoration: none;
	color: #AEB6BF;
}
.foot-info h2{
	color: #fff;
	font-size: 19px;
}

@media (max-width: 768px){
	
	.extra-info,
	.foot-izq,
	.foot-der{
		width: 100%;
		display: block;
		justify-content: center;
		text-align: center;
	}

}

/* Leer noticias */
.news-body{
	width: 750px;
	height: auto;
	background-color: transparent;
	box-sizing: border-box;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.news-body p{
	margin: 0 0 12px 0;
}

.news-body img{
	max-width: 100%;
	height: auto;
}
.news-body::after{
	content: "";
	display: block;
	clear: both;
}
.news-body-info{
	width: 750px;
	height: 55px;
	background-color: transparent;
	display: flex;
	gap: 5px;
}
.news-author{
	width: auto;
	max-width: 350px;	
	gap: 10px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 5px;
	align-items: center;
	background-color: #293133;
	display: flex;
}
.news-author a{
	color: #fff;
}
.news-body-info i{
	color: #fff;
}
/* Compilado noticias* */
.sec-adv{
	width: 1200px;
	height: 55px;
	background-color: #1CB5FF;
	border-radius: 5px;
	padding-left: 10px;
	padding-right: 5px;
	display: flex;
	gap: 5px;
	justify-self: center;
	justify-content: center;
	align-items: center;
}
.sec-info{
    width: auto;
    height: auto;
	text-align: center;
}
.sec-info h1{
    color: #fff;
    margin: 0;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}
/* filtro noticias */
.news-filter{
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-filter-top{
    width: 100%;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.news-search,
.news-date{
    height: 44px;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    box-sizing: border-box;
}

.news-search{
    flex: 1;
    min-width: 280px;
}

.news-date{
    width: 210px;
    justify-content: space-between;
}

.news-search i,
.news-date i{
    color: #9fb3bb;
    font-size: 14px;
    margin-right: 10px;
}

.news-search input,
.news-date input{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #ccc;
    font-size: 14px;
    font-family: inherit;
}

.news-search input::placeholder{
    color: #ccc;
}

.news-date input::-webkit-calendar-picker-indicator{
    filter: invert(1);
    cursor: pointer;
}

.news-categories{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn{
    height: 38px;
    padding: 0 16px;
    border: none;
    border-radius: 5px;
    background: #293133;
    color: #fff;
    font-size: 12	px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.filter-btn:hover{
    background: #1CB5FF;
}

.filter-btn.active{
    background: #1CB5FF;
    color: #fff;
}
.cuerpo-noticias{
	width: 1200px;
	height: auto;
	max-height: 400px;
	background-color: #fff;
	border-radius: 5px;	
	border:  1px solid #ccc;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	gap: 5px;
	overflow-y: auto;  
	overflow-x: hidden; 
	box-sizing: border-box;
}

/* modal */

.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.success-modal{
	display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.modal-content2{
	width: 600px;
	height: 270px;
    background-color: white;
	border-radius: 5px;
	border: 1px solid #ccc;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
    margin: 15% auto;
}
.success-message {
    text-align: center;
    padding: 20px;
}
.success-message p {
    font-size: 16px;
    font-weight: bold;
}

/* Contenido del modal */
.modal-content{
	width: 600px;
	height: auto;
	background-color: #fff;
	border-radius: 6px;
	border: 1px solid #3a454a;
	box-shadow: 0px 0px 10px rgba(0,0,0,.35);
	margin: 5% auto;
	overflow: hidden;
	position: relative;
}
.close{
	position: absolute;
	top: 10px;
	right: 14px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	z-index: 20;
	transition: .2s ease;
}
.close:hover,
.close:focus{
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transform: scale(1.08);
}
/* login */
/* CONTENEDOR GENERAL DEL LOGIN DENTRO DEL MODAL */
#modal-login .login{
	width: 100%;
	height: 100%;
	background: transparent;
	margin: 0;
	display: flex;
	flex-direction: column;
}

/* CABECERA DEL LOGIN */
#modal-login .login-tit{
	width: 100%;
	height: 40px;
	background: #293133;
	border-bottom: 5px solid #1CB5FF;
	display: flex;
	align-items: center;
	padding: 0 18px;
	box-sizing: border-box;
}

#modal-login .login-tit p{
	margin: 0;
	color: #fff;
	font-size: 12px;
	font-weight: normal;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* CUERPO DEL LOGIN */
#modal-login .login-cont{
	width: 100%;
	min-height: 400px;
	display: flex;
	background: #fff;
}

/* COLUMNA IZQUIERDA */
#modal-login .login-img{
	width: 42%;
	min-height: 400px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px;
	box-sizing: border-box;
	border-right: 1px solid #ccc;
}

#modal-login .login-img img{
	max-width: 100%;
	height: auto;
	display: block;
	user-select: none;
}

/* COLUMNA DERECHA */
#modal-login .login-form{
	width: 58%;
	padding: 28px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* TÍTULO */
#modal-login .login-text h1{
	margin: 0 0 10px 0;
	color: #17191a;
	font-size: 14px;
	line-height: 1.1;
}

/* TEXTO DESCRIPTIVO */
#modal-login .login-info{
	margin-bottom: 20px;
}

#modal-login .login-info p{
	margin: 0;
	color: #17191a;
	font-size: 12px;
	line-height: 1.5;
}

/* FORMULARIO */
#modal-login .user{
	width: 100%;
}

#modal-login .inputs{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#modal-login .inputs p{
	margin: 0;
	color: #17191a;
	font-size: 13px;
	font-weight: 700;
}

/* INPUT WRAPPER */
#modal-login .input-user{
	width: 100%;
}

/* INPUTS */
#modal-login .input-box{
	width: 100%;
	height: 44px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 0 14px;
	box-sizing: border-box;
	color: #17191a;
	font-size: 14px;
	outline: none;
	transition: .2s ease;
}

#modal-login .input-box::placeholder{
	color: #94a1a8;
	font-size: 13px;
}

#modal-login .input-box:focus{
	border-color: #1CB5FF;
	box-shadow: 0 0 0 3px rgba(28,181,255,.12);
}

/* BOTÓN LOGIN */
#modal-login .login-form button{
	width: 100%;
	height: 46px;
	margin-top: 8px;
	background-color: #1CB5FF;
	border: none;
	border-radius: 6px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: .2s ease;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,.12);
}

#modal-login .login-form button:hover{
	transform: translateY(-1px);
	filter: brightness(1.03);
}

/* PARTE DE ABAJO */
#modal-login .login-bot{
	margin-top: 18px;
}

#modal-login .login-bot hr{
	border: 0;
	border-top: 1px solid #ccc;
	margin: 0 0 14px 0;
}

#modal-login .login-bot a{
	color: #b9c4c9;
	font-size: 13px;
	text-decoration: none;
}

#modal-login .login-bot a b{
	color: #1CB5FF;
}

#modal-login .login-bot a:hover{
	color: #ccc;
}
/* =========================================================
   REGISTRO MODAL - MISMA BASE VISUAL DEL LOGIN
   ========================================================= */

/* Estructura general del modal de registro */
#modal-registro .login{
	width: 100%;
	height: 100%;
	background: transparent;
	margin: 0;
	display: flex;
	flex-direction: column;
}

/* Cabecera del registro */
#modal-registro .login-tit{
	width: 100%;
	height: 40px;
	background: #293133;
	border-bottom: 5px solid #1CB5FF;
	display: flex;
	align-items: center;
	padding: 0 18px;
	box-sizing: border-box;
}

#modal-registro .login-tit p{
	margin: 0;
	color: #fff;
	font-size: 12px;
	font-weight: normal;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Cuerpo */
#modal-registro .login-cont{
	width: 100%;
	min-height: 400px;
	display: flex;
	background: #fff;
}

/* Columna izquierda del registro */
#modal-registro .register-img{
	width: 42%;
	min-height: 400px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px;
	box-sizing: border-box;
	border-right: 1px solid #ccc;
	flex-direction: column;
}

#modal-registro .register-img img{
	max-width: 220px;
	height: auto;
	display: block;
	user-select: none;
}

/* Columna derecha */
#modal-registro .login-form{
	width: 58%;
	padding: 28px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Título */
#modal-registro .login-text h1{
	margin: 0 0 10px 0;
	color: #17191a;
	font-size: 14px;
	line-height: 1.1;
}

/* Texto descriptivo */
#modal-registro .login-info{
	margin-bottom: 20px;
}

#modal-registro .login-info p{
	margin: 0;
	color: #17191a;
	font-size: 12px;
	line-height: 1.5;
}

/* Formulario */
#modal-registro .user{
	width: 100%;
}

#modal-registro .inputs{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#modal-registro .inputs p{
	margin: 0;
	color: #17191a;
	font-size: 13px;
	font-weight: 700;
}

#modal-registro .input-user{
	width: 100%;
}

/* Inputs */
#modal-registro .input-box{
	width: 100%;
	height: 44px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 0 14px;
	box-sizing: border-box;
	color: #17191a;
	font-size: 14px;
	outline: none;
	transition: .2s ease;
}

#modal-registro .input-box::placeholder{
	color: #94a1a8;
	font-size: 13px;
}

#modal-registro .input-box:focus{
	border-color: #1CB5FF;
	box-shadow: 0 0 0 3px rgba(28,181,255,.12);
}

/* Botón registro */
#modal-registro .login-form button{
	width: 100%;
	height: 46px;
	margin-top: 8px;
	background-color: #1CB5FF;
	border: none;
	border-radius: 6px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: .2s ease;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,.12);
}

#modal-registro .login-form button:hover{
	transform: translateY(-1px);
	filter: brightness(1.03);
}

/* Parte inferior */
#modal-registro .login-bot{
	margin-top: 18px;
}

#modal-registro .login-bot hr{
	border: 0;
	border-top: 1px solid #ccc;
	margin: 0 0 14px 0;
}

#modal-registro .login-bot a{
	color: #b9c4c9;
	font-size: 13px;
	text-decoration: none;
}

#modal-registro .login-bot a b{
	color: #1CB5FF;
}

#modal-registro .login-bot a:hover{
	color: #ccc;
}


/* =========================================================
   AJUSTES COMPARTIDOS LOGIN + REGISTRO
   ========================================================= */

/* Para que ambos modales usen placeholders iguales */
#modal-login input::placeholder,
#modal-registro input::placeholder,
#modal-login textarea::placeholder,
#modal-registro textarea::placeholder{
	font-size: 12px;
}

/* Si quieres que ambos tengan el mismo ancho visual */
#modal-login .login-cont,
#modal-registro .login-cont{
	align-items: stretch;
}

/* Evita que el contenido se desborde si luego agregas mensajes */
#modal-login .login-form,
#modal-registro .login-form{
	overflow-wrap: break-word;
}

/* Si luego metes mensajes de error/éxito dentro del modal */
.modal-form-message{
	width: 100%;
	padding: 10px 12px;
	border-radius: 5px;
	font-size: 12px;
	box-sizing: border-box;
	margin-bottom: 12px;
}

.modal-form-message.error{
	background: #ffe9e9;
	border: 1px solid #f3b4b4;
	color: #a93a3a;
}

.modal-form-message.success{
	background: #eaf9ea;
	border: 1px solid #b9e1b9;
	color: #2d7a2d;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 820px){

	.modal-content{
		width: 95%;
		margin: 20px auto;
	}

	#modal-login .login-cont,
	#modal-registro .login-cont{
		flex-direction: column;
		min-height: auto;
	}

	#modal-login .login-img,
	#modal-registro .register-img{
		width: 100%;
		min-height: 220px;
		border-right: none;
		border-bottom: 1px solid #ccc;
	}

	#modal-login .login-form,
	#modal-registro .login-form{
		width: 100%;
		padding: 22px;
	}
}

/** Campaña mensual **/
.campana-div2{
	width: 735px;
	height: auto;
	background-color: transparent;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	justify-content: center;
	padding: 10px;
}
.campana-item{
	width: 160px;
	height: 250px;
	background-color: transparent;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	border-bottom: 5px solid #1CB5FF;
}
.campana-item-tit{
	width: 140px;
	height: auto;
	background-color: transparent;
	text-align: center;
}
.campana-item-img{
	width: 140px;
	height: 160px;
	background-color: transparent;
}
.campana-item-bot{
	width: 140px;
	height: 20px;
	padding: 5px;
	text-align: center;
}
.campana-div3{
	width: 735px;
	height: auto;
	background-color: transparent;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	justify-content: center;
}
.campana-pase{
	width: 160px;
	height: 250px;
	background-color: transparent;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	border-bottom: 5px solid #1CB5FF;
}
.campana-pase-tit{
	width: 140px;
	height: auto;
	background-color: transparent;
	text-align: center;
}
.campana-pase-img{
	width: 140px;
	height: 160px;
	background-color: transparent;
}
.campana-pase-bot{
	width: 140px;
	height: 20px;
	padding: 5px;
	text-align: center;
}
.campana-pase-premios{
	width: 500px;
	height: 250px;
	background-color: transparent;
	border-radius: 5px;
	border: 1px solid #ccc;
	border-bottom: 5px solid #1CB5FF;
}
.campana-premios-tit{
	width: 500px;
	height: auto;
	background-color: transparent;
	text-align: center;
	padding: 10px;
}
.campana-premios-cont{
	width: 499px;
	height: 190px;
	background-color: transparent;
	text-align: center;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	align-content: center;
	justify-content: center;
	padding-top: 0;
}
.campana-premios-item{
	width: 50px;
	height: 50px;
	background-color: transparent;
	border-radius: 5px;
	border: 1px solid #ccc;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* Equipos */
.team-info{
    width: auto;
    height: 50px;
    top: 10px;
    right: 10px;
    margin: 10px 0;
    z-index: 9999;
	border-radius: 5px;
	display: flex;
	align-items: center;
	padding-right: 15px;
	gap: 5px;
	border-radius: 5px;	
    background-color: rgba(0, 0, 0, 0.5);	
}
.team-info-placa{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center; 
    align-items: center;
	overflow: hidden;  
}
.team-info-head{
	width: auto;
    height: 50px;
    display: flex;
    justify-content: center; 
    align-items: center;
	border-radius: 5px;
	border-left: 1px solid #ccc;	
	padding: 10px;    
}
.team-info-head p{
	color: #fff
}
.team-info-redes{
    display: flex;
    align-items: center;
    margin-left: auto;
	border-radius: 5px;	
    background-color: rgba(0, 0, 0, 0.5);
}
.team-info-redes-btn{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 5px;
}
.team-info-redes-btn i{
    display: block;
    font-size: 30px;
    line-height: 1;
    color: #fff;
    margin: 0;
    padding: 0;
}
.team-info-redes-btn:hover{
    background-color: #17191a;
	cursor: pointer;
}
.equipo-memb{
	width: auto;
	height: auto;
	background-color: transparent;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.memb{
	width: 110px;
	height: 180px;
	background-color: lightblue;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding-top: 10px;
}
.memb-img{
	width: 100px;
	height: 130px;
	background-color: transparent;
	position: relative;
}
.memb-img>img{
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
}
.memb-name{
	width: 109px;
	height: 40px;
	text-align: center;
	background-color: #ccc;
	opacity: .8;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 4px;
}
/* Tienda */
.store-item{
	width: 180px;
	height: 220px;
	background-color: #fff;
	border: 1px solid #9c9c9c;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}
.store-item-alert{
	width: auto;
	max-width: 80%;
	height: auto;
	max-height: 25px;
	background-color: red;
	display: flex;
	align-items: center;
	padding: 5px;
	position: absolute;
	margin-top: 5px;
	margin-left: 5px;
	border-radius: 5px;
	overflow: hidden;
}
.store-item-alert a{
	color: #fff;
}
.store-item-img{
	width: 100%;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.store-item-info{
	width: 100%;
	height: 70px;
	background-color: #17191a;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px
}
.store-item-name{
	width: 100%;
	height: auto;
	max-height: 40px;
	padding: 5px;
	text-align: center;
}
.store-item-name h1{
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
}
.store-item-price{
	width: 100%;
	height: 20px;
	background-color: transparent;
	display: flex;
	gap: 5px;
	justify-content: center;
	align-items: center;
}
.store-item-price a{	
	color: #1CB5FF;
	text-transform: uppercase;
}
.store-item-btn{
	width: 100%;
	height: 30px;
	background-color: #1CB5FF;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.25s ease, filter 0.25s ease;
}
.store-item-btn a{
	color: #fff;
	font-weight: 500;
}
.store-item-btn:hover{
	background-color: #048ccf;
	filter: brightness(90%);
}
/* PERFIL */

.perfil-img{
	width: 559px;
	height: 160px;
	display: flex;
	background-image: url(https://i.imgur.com/HBPUUr6.png);
    justify-content: center;
    align-items: center;
    margin: 20px;
   	border-radius: 10px;
   	border: 1px solid #ccc;
}
.perfil-prop{
	width: 599px;
	height: 250px;
	background-color:transparent;
	padding: 20px;
	padding-top: 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
}
.perfil-box{
	width: 265px;
	height: 175px;
	background-color: transparent;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: center;
}
.perfil-subbox{
	width: 265px;
	height: 60px;
	background-color: transparent;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.perfil-password{
	width: 530px;
	height: 60px;
	background-color: #1CB5FF;
	border-radius: 5px;
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.password-button{
	width: 235px;
	height: 30px;
	background-color: #4b8aad;
	border-radius: 5px;
	cursor: pointer;
	border: 1px solid white;
	border-bottom: 5px solid #3a6a9c;
	font-weight: bold;
	color: white;
}
.password-button:hover{
	width: 235px;
	height: 30px;
	background-color: #3a6a9c;
	border-radius: 5px;
	cursor: pointer;
	border: 1px solid white;
	font-weight: bold;
	color: white;
}
.perfil-data{
	width: 265px;
	height: 60px;
	padding: 5px;
	border-radius: 5px;
	background-color: transparent;
}
.data-text{
	width: 255px;
	height: 20px;
	background-color: transparent;
	padding: 2px;
}
.data-text p{
	color: #fff
}
.data-user{
	width: 255px;
	height: 25px;
	border: 2px solid #ccc;
	border-radius: 5px;
	padding: 3px;
}
.data-user p{
	text-transform: uppercase;
	margin-left: 10px;
}
.perfil-data-vert{
	width: 85px;
	height: 113px;
	background-color: transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	border: 1px solid #ccc;
	border-bottom: 5px solid #1CB5FF;
}
.data-vert-img{
	width: 60px;
	height: 60px;
	background-color: transparent;
}
.data-vert-info{
	width: 130px;
	height: 20px;
	background-color: transparent;
	padding: 2px;
	text-align: center;
}
/* Utilidades */

.util-card{
	width: 290px;
	height: 140px;
	background-color: #fff;
	border-radius: 5px;
	border: 1px solid #ccc;
	display: flex;
	overflow: hidden;
}
.util-card-img{
	width: 120px;
	height: 100%;
	background-color: transparent;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	overflow: hidden;
	position: relative;
}

.util-card-img img{
	margin-bottom: 10px;
	display: block;
}

.util-card-num{
	width: fit-content;
	height: fit-content;
	background-color: #1CB5FF;
	padding: 5px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 2;
}
.util-card-num p{
	color: #fff;
	font-size: 14px;
	text-align: center;
	font-weight: bold;
}
.util-card-info{
	width: 170px;
	height: 100%;
	background-color: transparent;
	border-left: 5px solid #1CB5FF;
	display: flex;
    flex-direction: column;
	padding: 10px;
	gap: 5px;
}
.util-card-info-name{
	width: auto;
	height: auto;
}
.util-card-info-name p{
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
}
.util-card-info-class{
	width: fit-content;
	height: 25px;
	background-color: #293133;
	padding-left: 5px;
	padding-right: 5px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	margin-top: auto;
}
.util-card-info-class i,
.util-card-info-class p{
	color: #fff;
	font-size: 10px;
}

/* Comandos */
.command-item{
	width: 100%;
	height: auto;
	display: flex;
	background-color: #fff;
	border-radius: 5px;
	border: 1px solid #ccc;
	align-items: center;
	gap: 5px;
	overflow: hidden;
}
.command-list{
	width: auto;
	height: auto;
	display: flex;
	flex-direction: column;
	background-color: #293133;
	padding: 7px;
}
.command-list a{
	color: #fff;
}
.command-detail{
	width: auto;
	height: auto;
	display: flex;
	padding: 7px;
}

/* Códigos ALT*/
.alt{
	width: auto;
	height: 50px;
	border:  1px solid #ccc;
	border-left: 5px solid #1CB5FF;
	display: flex;
	justify-content: center;
	border-radius: 5px;
}
.alt-img{
	width: 50px;
	height: 50px;
	background-color: transparent;
}
.alt-info{
	width: auto;
	height: 50px;
	display: flex;
	flex: 1;
	flex-direction: column;
	text-align: center;
	justify-content: center;
}
.alt-boton{
    width: 55px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    background-color: #17191a;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, color .2s ease;
    position: relative;
}
.alt-boton i,
.alt-boton p{
	color: #fff;
	font-weight: normal;
}
.alt-boton:hover{
	background-color: #1CB5FF; 
}
.alt-boton:hover p,
.alt-boton:hover i{
	color: #fff;
}
.tooltip {
    visibility: hidden;
    background-color: #1CB5FF;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}
.tooltip-active {
    visibility: visible;
    opacity: 1;
    z-index: 3;
}
/* Generador */
.extra-content-cont1{
	width: 559px;
	height: 160px;
	display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
   	border-radius: 10px;
   	border: 1px solid #ccc;
}
.extra-content-cont2{
	width: 599px;
	height: 250px;
	background-color: transparent;
	padding: 20px;
	padding-top: 0px;
	display: flex;
	flex-direction: row;
}
.controles{
	width: 270px;
	height: 235px;
	margin: 5px;
	background-color: transparent;
	font-size: inherit;
	padding-top: 0px;
}
#username, #action, #gesture, #handitem{
	width: 270px;
	height: 30px;
	border-radius: 5px;
	border: 1px solid #ccc;
	background-color: transparent;
	padding: 5px;
	padding-left: 10px;
	margin-top: 5px;
}
.controles-izq{
	width: 270px;
	height: 235px;
	margin: 5px;
	background-color: transparent;
	font-size: inherit;
	padding: 5px;
	padding-top: 0px;
	display: flex;
	flex-wrap: wrap;
	gap:  5px;
}
.controles-option{
	width: 80px;
	height: 110px;
	background-color: transparent;
	display: flex;
	flex-direction: column;
    justify-content: center; 
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px; 
}
.controles-img{
	width: 60px;
	height: 80px;
	background-color: transparent;
	display: flex;
	justify-content: center; 
    align-items: center;
}
.controles-arrow{
	width: 80px;
	height: 20px;
	background-color: transparent;
	display: flex;
	justify-content: center; 
    align-items: center; 
}
#headonlyCheckbox {
    display: none;
}
#headonlyCheckbox + label {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
#headonlyCheckbox:checked + label {
    background-color: #8fc9db;
}