
/* LAYOUT */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #323232;
}

/* Style the header */
header {
    background-color: #ffb300;
    color: white;
    height: max-content;
    font-size: 12px;
    overflow: auto;
}
header img{
    width: 70%;
}
section{
    height: 100%;
}
/* Create two columns/boxes that floats next to each other */
nav {
    color: #fff;
    float: left;
    height: 150%;
    width: 15%;
    background: #000;
}

article {
    float: left;
    width: 85%;
    height: max-content;
    padding: 10px;
}

/* Clear floats after the columns */
section:after {
    content: "";
    display: table;
    clear: both;
}

footer {
    background-color: #737373;
    color: white;
    font-size: 10px;
    width: 100%;
    overflow: auto;
    
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
    nav, article {
        width: 100%;
        height: auto;
    }
}
/* LAYOUT */

/* INICIO INDEX */

.fondoIndex{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding:0;
    background-image: url("../images/pagprincipal.png");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #cccccc;
    background-size: cover;
    background-position: center center;
    margin: 0px;
}

.boxIndex{
    position:absolute;
    height:auto;
    width: 25%;
    font-family:Helvetica;
    color:#fff;
    background:#2A2B2D;
    display: block;
    border-radius: 10px;
    -webkit-box-shadow: 6px 7px 5px -1px rgba(59,59,59,1);
    -moz-box-shadow: 6px 7px 5px -1px rgba(59,59,59,1);
    box-shadow: 6px 7px 5px -1px rgba(59,59,59,1);
    /*generador sombra https://www.cssmatic.com/es/box-shadow*/
}
/* titulo dentro de la caja */
.boxIndex h2{
    text-align:center;
    margin: 20px 1px 10px 1px;
    font-size:20px;
}

/* estilo de los imput */
.boxIndex input{
    display:block;
    width:60%;
    margin:4px auto;
    padding:6px;
    background:#585858;
    color:#fff;
    box-shadow: none !important;
}

/* acomoda el icono al imput text*/
.login-input-iconos {
    position: absolute;
    margin-left: 72%;
    margin-top: -29px;
}

.botonLogin{
    font-size:18px;
    width:40%;
    height: 10%;
    margin:auto;
    display:block;
    cursor:pointer;
    background-color: #ffb300;
    color: #212121;
    border: 1px solid #ffb300;
    font-size: 14px;
    margin: 0;
    outline: 0 none;
    margin-left: 30% !important;
}

.boxIndex p{
    text-align:center;
    font-size: 8pt;
}
/* todos los textos que esten dentro de un span*/
.boxIndex p span{
    cursor:pointer;
    color:#ffb300;
}

.boxIndex img{
    text-align:center;
    margin-top: 20px;
    width: 50%;
}


/* FIN INDEX */


/* INICIO TOPBAR */


/* FIN TOPBAR */


/* INICIO FOOTER */
.logoFooterRight{
    float: right;
}
/* FIN FOOTER*/


/* tamaño del menu desplegable */
body .ui-menu .ui-menu-list .ui-menu-child.ui-shadow {
    width: max-content;
}

/*Botonoes de calificacion*/
.btnCalificacion{
    font-size: 4em !important; 
    background-color: transparent !important;
    border:none !important
}

.btnCalificacion.ui-state-hover{
    font-size: 4em !important; 
    background-color: transparent !important;
    border:1px solid !important
}

.btnCalificacion.ui-state-focus{
    font-size: 4em !important; 
    background-color: transparent !important;
    border:1px solid !important
}

/*File upload*/

.ui-fileupload-buttonbar{
    background-color: transparent !important;
    border-bottom: none !important;
}

.ui-selectonemenu {
	width: 100%;
}

.ui-inputfield {
	width: 100%;
}