@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;
	background: #transparent;
}
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;
}
/*banner*/
.banner{
	width: 100%;
	height: 210px;
	display: flex;
}
.banner-logo{
	width: 1000px;
	height: 210px;
	background-color: transparent;
	margin: auto;
}

/*menú*/
.headerinf{
	width: 100%;
	height: 50px;
	background-color:#D5D8DC;
	padding: 0px 20px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	display: flex;
}
.menu{
	max-width: 1400px;
	height: 100%;
	margin: auto;
	background-color: transparent;
}
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: 12 px;
	color: #2E4053;
	transition: all 300ms ease;
}
nav > ul > li > a:hover{
	transform: scale(1.1);
	background-color: #7dcbdd;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	color: #fff;
}
i{
	margin-right: 5px;
}
/*submenú*/
nav ul li ul{
	width: 200px;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	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 white;
	position: absolute;
	top: -12px;
	left: 20px;
}
nav ul li ul li a{
	display: block;
	color: #2E4053;
	padding: 6px;
	padding-left: 14px;
	margin-top: 10px;
	font-size: 12px;
	transition: all 300ms ease;
}
nav ul li ul li a:hover{
	background-color: #7dcbdd;
	color: #fff;
	transform: scale(1.1);
	padding-left: 30px;
	font-size: 12px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/*CONTENIDO*/
body{
	background-image: url(https://i.imgur.com/OIM4YvS.png);}
.tablero{
	width: 1200px;
	height: 200px;
	margin:  auto;
	padding-top: 12px;
	background-color: transparent;
}
.anuncio{
	width: 397px;
	height: 190px;
	display: inline-block;
	background-color: red;
	border-radius: 5px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
	position: relative;
}
.anuncio img{
	display: block;
	border-radius: 5px;
}
.anuncio-text{
	position: absolute;
	width: 380px;
	height: auto;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 5px;
    border-radius: 5px;
}
.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;
}
.content{
	width: 1200px;
	height: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	background-color: transparent;
	display: flex;
    flex-direction: row;
    gap: 5px;	
    justify-content: center;
    align-items: flex-start;
}
.content-center{
	width: 1200px;
	height: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	background-color: transparent;
	display: flex;
    flex-direction: row;
    justify-content:center;
}
.body-izq{
	width: 580px;
    height: auto;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-top: 5px
}
.body-der{
	width: 597px;
	height: 588px;
	background-color: transparent;
	display: flex;
	flex-wrap: wrap;
	padding-top: 5px;
	gap:  5px;
}
/*ÚLTIMAS NOTICIAS HOBBA*/
.cuadro1{
	width: 580px;
	height: auto;
	background-color: #fff;
	border-radius: 5px;
	border:  1px solid #ccc;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}
.cuadro1-titulo{
	width: 579px;
	height: 35px;
	background-color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 8px;	
	border-bottom: 5px solid #7dcbdd;
}
.cuadro1-cont{
	width: 560px;
	height: auto;
	background-color: transparent;
	margin: auto;
	margin-top: 5px;
}
.cuadro1-art{
	width: 560px;
	height: 80px;
	margin-bottom: 10px;
	background-color: transparent;
	border-radius: 5px;
	border:  1px solid #ccc;
	display: flex;
    flex-direction: row;
    margin-bottom: 5px;
    border-radius: 5px;
}
.img-art{
	width: 80px;
	height: 79px;
	background-image: url(https://i.imgur.com/tEBtXZu.png);
	padding: 15px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.img-art>img{
	width: 50px;
	height: 50px;
	border-radius: 5px;
}
.info-art{
	width: 360px;
	height: 80px;
	padding: 3px;
	background-color: transparent;
	padding: 10px;
}
.tit-art{
	width: 340px;
	height: 18px;
	background-color: transparent;
}
.desc-art{
	width: 340px;
	height: 40px;
	padding: 3px;
	background-color: transparent;
}
.bot-art{
	width: 120px;
	height: 80px;
	padding: 10px;
	background-color: transparent;
}
.ir-art{
	width: 100px;
	height: 25px;
	padding: 2px;
	border-radius: 3px;
	background-color: #7dcbdd;
	text-align: center;
}
.date-art{
	width: 100px;
	height: 25px;
	padding: 2px;
	border-radius: 3px;
	background-color: transparent;
	text-align: center;
}

/*CUADRO USUARIOS*/
.users1{
	width: 296px;
	height: 383px;
	background-color: #fff;
	border-radius: 5px;
	border:  1px solid #ccc;
	float: right;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}
.users2{
	width: 296px;
	height: 383px;
	margin-right: 10px;
	margin-top: 5px;
	background-color: #fff;
	border-radius: 5px;
	border:  1px solid #ccc;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}
.tit-users1{
	width: 294px;
	height: 35px;
	background-color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 8px;	
	border-bottom: 5px solid #7dcbdd;
}
.users1-cont{
	width: 284px;
	max-height: 330px;
	background-color: transparent;
	margin: auto;
	margin-top: 5px;
	overflow-y: auto;
}
.users1-art{
	width: 260px;
	height: 80px;
	margin-bottom: 10px;
	background-color: transparent;
	border-radius: 3px;
	border:  1px solid #ccc;
	display: flex;
    flex-direction: row;
    margin-bottom: 5px;
    border-radius: 5px;
}
.img-users{
	width: 70px;
	height: 70px;
	background-image: url(https://i.imgur.com/Vx48XaG.png);
	margin: 5px;
	border-radius: 3px;
	overflow: hidden;
    position: relative;
    display: flex;
    align-content: center;
}
.img-users img{
	width: 100%;
    height: auto; /* Mantiene la relación de aspecto de la imagen */
    object-fit: none; /* Ajusta la imagen para cubrir el área del contenedor */
    object-position: center top; /* Centra la imagen verticalmente en el contenedor */
    position: absolute;
    top: -10px;
    left: 0;
}
.info-users{
	width: 180px;
	height: 80px;
	padding: 3px;
	background-color: transparent;
	padding: 10px;
}
.name-users{
	width: 170px;
	height: 18px;
	background-color: transparent;
	margin-top: 10px;
}
.name-users2{
	width: 170px;
	height: 18px;
	background-color: transparent;
}
.desc-users{
	width: 169px;
	height: 20px;
	padding: 3px;
	background-color: transparent;
}
.date-users{
	width: 169px;
	height: 20px;
	padding: 3px;
	background-color: transparent;
}
.enlaces{
	width: 597px;
	height: auto;
	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-direction: column;
	align-items: center;
	gap: 5px;
	padding-bottom: 5px;
}
.enlaces-tit{
	width: 596px;
	height: 35px;
	background-color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 8px;	
	border-bottom: 5px solid #7dcbdd;
}
.enlaces-sec{
	width: 580px;
	height: 35px;
	background-color: darkred;
	border-radius: 5px;
}
.enlaces-sec>img{
	border-radius: 5px;
	width: 580px;
	height: 35px;
}

/*EQUIPOS*/
.desc-seccion{
	width: 1000px;
	height: auto;
	margin: auto;
	background-color: transparent;
	text-align: center;
	margin-top: 15px;
}
.desc-seccion-team{
	width: 755px;
	height: auto;
	margin: auto;
	background-color: transparent;
	text-align: center;
	margin-top: 15px;
}
.equipo-content1{
	width: 999px;
	height: auto;
	margin: auto;
	background-color: transparent;
}
.equipo1{
	width: 1000px;
	height: auto;
	margin-right: 10px;
	margin-top: 10px;
	background-color: white;
	border-radius: 5px;
	border:  1px solid #ccc;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
}
.equipo-header1{
	width: 999px;
	height: 60px;
	background-color:#5BAFCE;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 5px;
	border-bottom: 5px solid #7dcbdd;
}
.equipo-name1{
	width: 800px;
	height: 50px;
	float: left;
	background-color: transparent;
	padding: 5px;
}
.equipo-badge{
	width: 50px;
	height: 50px;
	background-color: transparent;
	float: right;
	display: flex;
	justify-content: center;
	align-items: center;
}
.equipo-memb1{
	width: 999px;
	height: auto;
	background-color: transparent;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
}
.seccion-text{
	width: 999px;
	height: auto;
	background-color: transparent;
	padding: 10px;
}
.seccion-text>p{
	margin-top: 5px;
}
.seccion-text>li{
	font-size: 12px;
}
.memb{
	width: 110px;
	height: 180px;
	background-image: url(https://i.imgur.com/4xEH1PM.png);
	border-radius: 5px;
	border: 1px solid #ccc;
	margin-right: 5px;
	padding-top: 10px;
	margin: 6px
}
.memb-wf{
	width: 110px;
	height: 180px;
	background-image: url(https://i.imgur.com/TOwLOfi.png);
	border-radius: 5px;
	border: 1px solid #ccc;
	padding-top: 10px;
	margin: 6px
}
.memb-saw{
	width: 110px;
	height: 180px;
	background-image: url(https://i.imgur.com/EThDzob.png);
	border-radius: 5px;
	border: 1px solid #ccc;
	margin: 6px;
	padding-top: 10px;
}
.memb-th{
	width: 110px;
	height: 180px;
	background-image: url(https://i.imgur.com/6m21XgU.png);
	border-radius: 5px;
	border: 1px solid #ccc;
	margin: 6px;
	padding-top: 10px;
}
.memb-hobbastars{
	width: 110px;
	height: 180px;
	background-image: url(https://i.imgur.com/ueKRIB1.png);
	border-radius: 5px;
	border: 1px solid #ccc;
	margin: 6px;
	padding-top: 10px;
}
.box-utilidades{
	width: 150px;
	height: 180px;
	background-image: url(https://i.imgur.com/UA3XvT1.png);
	border-radius: 5px;
	border: 1px solid #ccc;
	padding-top: 10px;
	margin: 6px
}
.memb-img-2{
	width: 140px;
    height: 130px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 10px;
}
.memb-name-2{
	width: 149px;
	height: 40px;
	text-align: center;
	background-color: #ccc;
	opacity: .8;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 4px;
}
.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;
}

/*EQUIPOS REFORMADOS*/

.equipo-content{
	width: 755px;
	height: auto;
	margin: auto;
	background-color: transparent;
}
.equipo{
	width: 755px;
	height: auto;
	margin-right: 10px;
	margin-top: 10px;
	background-color: white;
	border-radius: 5px;
	border:  1px solid #ccc;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
}
.equipo-header{
	width: 754px;
	height: 80px;
	background-color:#5BAFCE;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 5px;
	border-bottom: 5px solid #7dcbdd;
}
.equipo-name{
	width: 530px;
	height: 70px;
	float: left;
	background-color: transparent;
	padding: 5px;
}
.equipo-badge{
	width: 50px;
	height: 50px;
	background-color: transparent;
	float: right;
	display: flex;
	justify-content: center;
	align-items: center;
}
.equipo-memb{
	width: 754px;
	height: auto;
	background-color: transparent;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
}

.equipo-info{
	width: 400px;
	height: auto;
	background-color: #fff;
	margin-top: 10px;
	margin-right: 10px;
	background-color: #fff;
	border-radius: 5px;
	border:  1px solid #ccc;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}

.equipo-info-tit{
	width: 399px;
	height: 35px;
	background-color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 8px;	
	border-bottom: 5px solid #7dcbdd;
}
.equipo-info-cont{
	width: 359px;
	height: auto;
	background-color: transparent;
	margin: auto;
	margin-top: 5px;
	text-align: justify;
}

/*CUENTA REGRESIVA HS*/
.countdown-container {
    text-align: center;
}

#countdown {
    font-size: 2em;
    color: #333;
}

/*NEWS*/
.body-izq-news{
	width: 450px;
	height: auto;
	background-color: transparent;
	margin-left: 5px;
	padding: 5px;
}
.news-bar{
	width: 460px;
	height: auto;
	background-color: #fff;
	border-radius: 5px;
	border:  1px solid #ccc;
	float: right;
	margin-top: 5px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}
.news-bar-tit{
	width: 459px;
	height: 35px;
	background-color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 8px;	
	border-bottom: 5px solid #7dcbdd;
}
.news-bar-cont{
	width: 419px;
	height: auto;
	background-color: transparent;
	margin: auto;
	margin-top: 5px;
}
.news{
	width: 419px;
	height: auto;
	margin-bottom: 10px;
	background-color: transparent;
	border-radius: 3px;
	border:  1px solid #ccc;
	display: flex;
    flex-direction: row;
    margin-bottom: 5px;
    border-radius: 5px;
}
.news-img{
	width: 70px;
	height: 70px;
	background-image: url(https://i.imgur.com/Vx48XaG.png);
	margin: 5px;
	border-radius: 3px;
}
.news-img>img{
	border-radius: 5px;
}
.news-info{
	width: 290px;
	height: 70px;
	background-color: transparent;
	margin-top: 5px;
}
.news-tit{
	width: 290px;
	height: 13px;
	background-color: transparent;
}
.news-tit>a{
	font-weight: bold;
}
.news-desc{
	width: 290px;
	height: 35px;
	background-color: transparent;
	margin-top: 5px;
	text-align: justify;
}
.news-bot{
	width: 290px;
	height: 13px;
	background-color: transparent;
	display: flex;
	flex-direction: row;
}
.news-bot-icon{
	width: 13px;
	height: 13px;
	margin-right: 5px;
}
.news-bot-icon>p{
	font-weight: bold;
}
.news-bot-author{
	width: 90px;
	height: 13px;
	margin-right: 50px;
}
.news-bot-author>p{
	font-weight: bold;
}
.news-read{
	width: 40px;
	height: 70px;
	background-color: #7dcbdd;
	margin: 5px;
	text-align: center;
	padding-top: 20px;
	border-radius: 5px;
}
.pages-news{
	width: 70px;
	height: 30px;
	background-color: transparent;
	float: right;
	margin-bottom: 5px;	
	display: flex;
	flex-direction: row;
}
.news-page{
	width: 419px;
	height: 30px;
	border-radius: 5px;
	background-color: #7dcbdd;
	margin-top: 5px;
	margin-bottom: 5px;
	text-align: center;
	padding: 5px;
}
.news-page>a{
	color: white;
	font-weight: bold;
}
.news-page>i{
	font-weight: bold;
	text-decoration: none;
	color: white;
	font-size: 20px;
}
/*LECTURA NOTICIA*/
.body-der-news{
	width: 740px;
	height: auto;
	background-color: transparent;
	margin-left: 10px;
	padding: 10px;
}
.reading-news{
	width: 720px;
	height: auto;
	margin-right: 10px;
	background-color: #fff;
	border-radius: 5px;
	border:  1px solid #ccc;	
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}
.reading-news-tit{
	width: 719px;
	height: 35px;
	background-color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 8px;	
	border-bottom: 5px solid #7dcbdd;
}
.reading-news-img{
	width: 449px;
	height: 80px;
	background-color: rebeccapurple;
	margin: 10px;
	margin-left: 130px;
}
.reading-news-cont{
	width: 600px;
	height: auto;
	background-color: transparent;
	margin:  10px;
	text-align: justify;
	margin-left: 59px;
}
.reading-news-cont>p{
	margin-bottom: 5px;
}
.reading-news-bot{
	width: 719px;
	height: 32px;
	background-color: #5BAFCE;
	margin-top: 20px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	display: flex;
	flex-direction: row;
}
.news-author{
	width: 200px;
	height: 32px;
	margin-left: 10px;
	padding: 5px;
	display: flex;
	flex-direction: row;
}
.news-author-icon{
	width: 22px;
	height: 22px;
	padding: 2px;
	color: white;
}
.news-author-name{
	width: 163px;
	height: 22px;
	margin-left: 5px;
	color: white;
}
.news-author-name>a{
	color: white;
}
.news-date{
	width: 200px;
	height: 32px;
	margin-left: 10px;
	padding: 5px;
	display: flex;
	flex-direction: row;
}
.news-date-icon{
	width: 22px;
	height: 22px;
	padding: 2px;
	color: white;
}
.news-date-date{
	width: 163px;
	height: 22px;
	margin-left: 5px;
	color: white;
}
.news-date-date>a{
	color: white;
}

/*LOGIN*/
.login{
	width: 600px;
	height: 320px;
	background-color: white;
	border-radius: 5px;
	border:  1px solid #ccc;
	float: right;
	margin-top: 5px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}
.login-tit{
	width: 599px;
	height: 35px;
	background-color: transparent;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 8px;	
	border-bottom: 5px solid #7dcbdd;
}
.login-cont{
	width: 599px;
	height: 280px;
	background-color: transparent;
	margin: auto;
	margin-top: 5px;
	display: flex;
	flex-direction: row;
}
.login-img{
	width: 200px;
	height: 265px;
	margin-top: 5px;
	margin-left: 10px;
}
.register-img{
	width: 200px;
	height: 265px;
	background-image: url(https://i.imgur.com/xEJPllt.png);
	margin-top: 5px;
	margin-left: 10px;
	position: relative;
}
.register-img>img {
    position: absolute;
    bottom: 60px;
    left: 50px;
}
.login-form{
	width: 369px;
	height: 265px;
	background-color: transparent;
	margin-top: 5px;
	margin-left: 10px;
}
.login-text{
	width: 369px;
	height: 40px;
	background-color: transparent;
	text-align: center;
	padding: 10px;
}
.login-info{
	width: 369px;
	height: 50px;
	background-color: transparent;
	text-align: justify;
}
.login-inputs{
	width: 369px;
	height: 80px;
	background-color: transparent;
}
.inputs{
	width: 250px;
	height: 50px;
	border-radius: 5px;
	background-color: transparent;
}
.inputs>p{
	font-weight: bold;
	margin-top: 5px;
	margin-bottom: 3px;
	font-family: inherit;
}
.input-box {
    width: 250px;
    height: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.input-user .input-box {
	width: 250px;
	height: 15px;
    color: black;
    font-size: 12px;
	font-family: inherit;
}
.input-user .input-box:hover{
	width: 250px;
	height: 15px;
    font-size: 12px;
	font-family: inherit;
}
.inputs>button{
	background-color: #7dcbdd;
	width: 90px;
	height: 30px;
	padding: 5px;
	border-radius: 5px;
	color: white;
	font-family: inherit;
	border: 1px solid #ccc;
	box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.5);
	font-weight: bold;
	cursor: pointer;
}
.login-bot{
	width: 369px;
	height: 40px;
	margin-top: 90px;
	text-align: center;
}
.login-bot>a{
	text-decoration: none;
	color: black;
}

/*GENERADOR DE KEKOS*/
.extra-content{
	width: 600px;
	height: auto;
    background-color: white;
	border-radius: 5px;
	border: 1px solid #ccc;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}
.extra-content-tit{
	width: 599px;
	height: 35px;
	background-color: transparent;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 8px;	
	border-bottom: 5px solid #7dcbdd;
}
.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;
}

.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: #7dcbdd;
	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-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 #7dcbdd;
}
.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;
}
/*FORO*/
.foro-temas{
	width: 599px;
	height: auto;
	background-color: transparent;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}
.foro-opciones{
	width: 579px;
	height: auto;
	background-color: transparent;
	display: flex;
	gap: 5px;
}
.foro-boton{
	width: auto;
	height: auto;
	padding: 5px;
	background-color: #7dcbdd;
	border-radius: 3px;
	margin-bottom: 5px;
	border: 1px solid white;
	font-weight: bold;
	cursor: pointer;
}
.foro-discu{
	width: 579px;
	height: 80px;
	background-color: transparent;
	border-radius: 5px;
	border:  1px solid #ccc;
	border-left: 5px solid #7dcbdd;
	display: flex;
	flex-direction: row;
	gap: 5px;
	align-items: center;
	justify-content: center;
	padding-left: 5px;
}
.foro-img{
	width: 70px;
	height: 70px;
	background-color: transparent;
	border-radius: 50%;
	border: 1px solid #ccc;
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
	overflow: hidden;
    position: relative;
}
.foro-img img{
	width: 100%;
    height: auto; /* Mantiene la relación de aspecto de la imagen */
    object-fit: cover; /* Ajusta la imagen para cubrir el área del contenedor */
    object-position: center top; /* Centra la imagen verticalmente en el contenedor */
    position: absolute;
    top: -10px;
    left: 0;
}
.foro-info{
	width: 374px;
	height: 79px;
	background-color: transparent;
	display: flex;
	flex-direction: column;
	padding-top: 5px;
	gap: 4px;
}
.foro-info-text{
	width: 374px;
	height: auto;
	background-color: transparent;
	display: flex;
	align-items: center;
	gap: 3px;
}
.foro-extra{
	width: auto;
	height: auto;
	background-color: #7dcbdd;
	padding: 4px;
	border-radius: 3px;
}
.foro-read{
	width: 120px;
	height: 80px;
	padding: 10px;
	background-color: transparent;
}
.foro-bar{
	width: 460px;
	height: 500px;
	background-color: #fff;
	border-radius: 5px;
	border:  1px solid #ccc;
	float: right;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}
.foro-bar-tit{
	width: 459px;
	height: 35px;
	background-color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 8px;	
	border-bottom: 5px solid #7dcbdd;
}
.foro-bar-cont{
	width: 419px;
	height: auto;
	background-color: transparent;
	margin: auto;
	margin-top: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/*FORO FORM*/
.foro-form{
	width: 599px;
	height: auto;
	background-color: transparent;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.foro-input{
	width: 579px;
	height: auto;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 5px;
	margin-top: 5px;
}
.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1;
    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: 1;
    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: 455px;
    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;
}

/* Estilo del botón de cerrar */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 5px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/*EVENTOS*/
.eventos{
	width: 399px;
	height: auto;
	background-color: transparent;
	padding: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.evento-item{
	width: 379px;
	height: 100px;
	background-color: transparent;
	padding: 5px;
	border-radius: 5px;
	border: 1px solid #ccc;
	margin-bottom: 10px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}
.evento-info{
	width: 369px;
	height: 65px;
	background-color: transparent;
	padding: 5px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.evento-cat{
	width: 140px;
	height: 20px;
	padding: 3px;
	background-color: rgba(0, 0, 0, 0.7);
	border-radius: 3px;
	display: flex;
	flex-direction: row;
	gap: 5px;
}
.evento-cat p{
	text-decoration: bold;
	color: white;
}
.evento-name{
	width: 300px;
	height: 25px;
	background-color: rgba(0, 0, 0, 0.7);
	border-radius: 3px;
	padding: 4px;
}
.evento-name p{
	text-decoration: bold;
	color: white;
	text-transform: uppercase;
}
.evento-cr{
	width: 200px;
	height: 25px;
	background-color: rgba(0, 0, 0, 0.7);
	border-radius: 3px;
	float: right;
}
#evento-cuentar{
	font-size: 20px;
	color: white;
	text-align: center;
}
.campana{
	width: 755px;
	height: auto;
	background-color: transparent;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.campana-div1{
	width: 735px;
	height: auto;
	background-color: transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: justify;
	padding: 10px;
}
.campana-desc{
	width: 650px;
	height: auto;
	background-color: transparent;
}
.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 #7dcbdd;
}
.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 #7dcbdd;
}
.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 #7dcbdd;
}
.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;
}

/*CODIGOS ALT*/
.alt{
	width: 300px;
	height: 50px;
	border:  1px solid #ccc;
	border-bottom: 5px solid #7dcbdd;
	display: flex;
	flex-direction: row;
	border-radius: 5px;
}
.alt-img{
	width: 50px;
	height: 50px;
	background-color: transparent;
}
.alt-info{
	width: 195px;
	height: 50px;
	background-color: transparent;
	padding: 8px;
	text-align: center;
}
.alt-boton{
	width: 55px;
	height: 50px;
	text-align: center;
	padding-top: 8px;
	padding-left: 2px;
	cursor: pointer;
}

.alt-boton {
    position: relative;
    cursor: pointer;
}
.tooltip {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    bottom: 120%; /* Ajusta según el diseño */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}
.tooltip-active {
    visibility: visible;
    opacity: 1;
}


/*FOOTER*/
footer{
	width: 100%;
	height: auto;
	background-color: #323232;
	display: flex;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.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;
}