@import url(fontello.css);
@import url(animation.css);
@import url(menuAcciones.css);
@import url(firmas.css);
@import url(perfilAlumno.css);
@import url(login.css);
@import url(tablas.css);
@import url(paginador.css);
@import url(formContenido.css);
@import url(contraseñas.css);
@import url(loader.css);
@import url(formCarreras.css);
@import url(formEventos.css);
@import url(aggAlumnos.css);
@import url(info.css);
@import url(datosUsuario.css);
@import url(validarConstancias.css);
@import url(datosCarrera.css);
@import url(politicas.css);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

/* Azul : #08338F*/
/* Celeste: #086DD1 */
/* Dorado:  #877514*/
/* Amarillo: #C49E0D*/
/* Verde: #20AF1E */
/* Rojo: #DE0000 */

input:focus, select:focus, textarea:focus{
    outline: none;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

.unselectable {
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	/* color: #cc0000; */
}

body{
    background-color: #EEEEEE;
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
}

.header{
    position: fixed;
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 110;
    
    background: #08338f;
    background: linear-gradient(0deg,#08338f 0%, #086dd1 150%);
    background: -webkit-linear-gradient(0deg,#08338f 0%, #086dd1 150%);
    background: -moz-linear-gradient(0deg,#08338f 0%, #086dd1 150%);
    box-shadow: 0px 10px 0px -6px #C49E0D inset, 0px 5px 10px 0px rgba(36,36,36, 0.5);
}

.contHeader{ /* Contenedor principal del header */
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.headerLogo{ /* Logos del header */
    display: flex;
    flex-direction: row;
    width: 120px;
    height: 60px;
    gap: 5px;
}
.headerLogo img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
}
.headerLogo img:nth-child(2){
    box-shadow: 0px 3px 10px 0px rgba(36,36,36,0.5);
    background-color: #FAFAFA;
}

.tituloHeader{
    color: #DDDDDD;
    text-align: center;
}

#footerLogin{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 5px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

    background: #08338f;
    background: linear-gradient(0deg,#08338f 0%, #086dd1 150%);
    background: -webkit-linear-gradient(0deg,#08338f 0%, #086dd1 150%);
    background: -moz-linear-gradient(0deg,#08338f 0%, #086dd1 150%);
    box-shadow: 0px -1px 10px 0px rgba(36,36,36, 0.5);
}

.footerElement{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    font-size: 12px;
}
#footerDesc{
    color: #FAFAFA;
    gap: 10px;
}
#footerDesc ul li{
    list-style: none;
}
#footerContacto{
    color: #FAFAFA;
    gap: 5px;
}
#footerContacto a{
    text-decoration: none;
    color: #FAFAFA;

    &:hover{
        text-decoration: underline;
    }
}
#footerCopyright{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: #FAFAFA;
}
#footerCopyright a{
    color: #FAFAFA;
}
.logoFooter{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}
.logoFooter img{
    object-fit: contain;
    display: block;
    width: 100%;
    height: 100%;
}
.logoFooter b{
    color: #FAFAFA;
    font-size: 10px;
}

/* Perfil ---------------------------------------------------------------------- */
.perfilHeader{
    position: relative;
    width: 20%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.label-perfil{
    text-align: center;
    color: #FAFAFA;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    height: 100%;
    border-radius: 10px;
    
    transition: all 0.2s ease;

    &:hover{
        background-color: rgba(36,36,36,0.2);
    }
}
#btn-perfil{
    position: absolute;
    visibility: hidden;
}
.tooltip-perfil{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 70px;
    background-color: #086dd1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 10px 0px rgba(36,36,36,0.5);
    transition: all 0.2s ease;
}
.tooltip-element{
    width: 100%;
    height: 100%;
    list-style: none;
}
#btnLogout{
    background-color: #DE0000;
}
.tooltip-element > a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-decoration: none;
    color: #FAFAFA;
    font-size: 16px;
    transition: all 0.2s ease;

    &:hover{
        background-color: #C49E0D;
    }
}
.tooltip-perfil::before {
    content: "";
    position: absolute;
    bottom: 100%; /* Flecha arriba del tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px;
    border-style: solid;
    border-color: transparent transparent #086dd1 transparent; /* Color de la flecha */
}

/* ----Política de privacidad---------------------------------------------------------------------------------- */
#contPolitica{
    box-shadow: 0px -1px 10px 0px rgba(36,36,36,0.6);
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 150px;
    background-color: rgba(36,36,36, 0.8);
    z-index: 2000;

    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
#contPolitica p{
    text-align: center;
    color: #FAFAFA;
}
#contPolitica p a{
    color: #C49E0D;
    font-weight: bold;
}
#contPolitica button{
    font-weight: bold;
    cursor: pointer;
    background-color: #C49E0D;
    color: #FAFAFA;
    border: none;
    padding: 5px 10px;

    &:hover{
        background-color: #FAFAFA;
        color: #C49E0D;
    }

}

/* ----Contenido----------------------------------------------------------------------------------- */

#contContenido{
    position: relative;
    top: 80px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

#bloqueContenido{
    width: 100%;
    position: sticky;
    padding: 10px;
    left: 0px;
    transition: all 0.1s ease;
    margin-bottom: 10px;
}

/* MediaQuery Celulares --------------------------------------------------------------------------------------------------------------- */

@media (max-width: 599px) {

    .headerLogin{
        position: static;
    }
    /* Header ---------------------------------------- */
    .contHeader{
        padding: 5px;
        gap: 10px;
        justify-content: space-evenly;
    }
    .headerLogo{
        width: 50px;
        height: 30px;
    }

    .tituloHeader{
        font-size: 12px;
        text-align: center;
    }
    .label-perfil{
        font-size: 12px;
    }
    .tooltip-element > a{
        font-size: 16px;
        padding: 5px;
    }

    #formLogin{
        position: static;
        margin: 20px auto;
    }
    #footerLogin{
        position: static;
        flex-direction: column;
        gap: 20px;
    }
    .footerElement{
        font-size: 8px;
    }
    .logoFooter{
        width: 30px;
    }

    #contPolitica{
        height: 300px;
    }

    /* Contenido -------------------------------------------- */
    #bloqueContenido{
        left: 0;
        z-index: 10;
        width: 100%;
        padding: 10px 0px;
    }

    #btnMenu > label{
        font-size: 20px;
    }
    .btnHome{
        font-size: 25px;
    }

}