html {
    box-sizing: border-box;
    font-size: 62.5%;
  }
  *, *:before, *:after {
    box-sizing: inherit;
}

/* -------------GLOBALES------------- */
body{
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

h1{
    font-size: 2.8rem;
}
h2{
    font-size: 2rem;
}
h3 {
    font-size: 2.5rem;
}

h4{
    font-size: 2.5rem;
}

h5{
    font-size: 1.5rem;
}

h6{
    font-size: 2rem;
}

.moduloDocumentos{
    font-size: 14px;
}

.contenedor{
    max-width: 100%;
    margin: 0 auto;
}

.contenedor-seccion{
    max-width: 70%;
}

.hero{
    background-image: url(../imagenes/entrada02.png);
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
    height: 400px;
    background-position: center bottom;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* position: relative; */
    animation-name: example;
    animation-duration: 50s;
    animation-iteration-count: infinite;
}

@keyframes example {
    0%   {left:0px; top:0px;}
    50%  {left:0px; top:100px;}
    100% {left:0px; top:0px;}
}

.contenido-hero{
    text-align: center;
    color: white;
    font-weight: bold;
    text-shadow: 5px 5px 15px white;
    background-color: rgba(0, 0, 0, 0.6);    
}

.titulo-seccion{
    background-color: #9070aa;
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    margin: 5rem 0 4rem 0;
    border-radius: 20px;
}

.contenido-seccion{
    font-size: 1.7rem;   
}

.justificado{
    text-align: justify;
}

.formatos{
    display: flex;
    flex-direction: column;
}

.formatos a{
    margin-bottom: 1rem;
    margin-left: 5rem;
}

.formulario{
    display: flex;
    flex-direction: column;
    margin: 2rem;
    max-width: 65%;
}

legend{
    font-size: 2rem;
}

fieldset{
    /* padding: 30px; */
    background-color: white;
    margin-bottom: 5rem;
}

input{
    background-color: gainsboro;
    border: none;
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 2rem;
    padding: 10px;   
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    }
input[type=number] { 
    -moz-appearance:textfield; 
}

/* -----------------------------------------------------------------------BOTONES */
.boton{
    background-color: white;
    font-weight: bold;
    font-size: 2rem;
    text-transform: uppercase;
    text-decoration: none;
    margin: 30px 0 30px 0;
    padding: 10px 30px;
    display: inline-block;
    text-align: center;
    border-radius: 1rem;
}

.boton-header{
    
    font-size: 1.5rem;
    
    text-decoration: none;
    margin-bottom: 1rem;
    padding: 0.7rem 3rem;
    text-align: center;
    display: inline-block;
    border-radius: 1rem;
    width: 100%;
}

.boton-X{
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-decoration: none;
    margin: 1rem auto;
    padding: 10px 30px;
    display: inline-block;
    text-align: center;
    max-width: 50%;
} 

.boton-acceso{
    background-color: rgba(75, 119, 39, 0.925);
    color: white;
    border: 2px solid transparent;
}


.boton-acceso:hover{
    background-color: white;
    color:  rgba(75, 119, 39, 0.925);
    font-weight: bold;
    border: 2px solid  rgba(75, 119, 39, 0.925);
}

.boton-salir{
    background-color: rgb(231, 47, 47);
    color: white;
    border: 2px solid transparent;
}

.boton-salir:hover{
    background-color: white;
    color:  rgb(231, 47, 47);
    font-weight: bold;
    border: 2px solid  rgb(231, 47, 47);
}

.boton-menu{
    background-color: #9070aa;
    color: white;
    border: 2px solid transparent;
}

.boton-menu:hover{
   background-color: white;
   color: #9070aa;
   border: 2px solid #9070aa;
}


.boton-menuPrincipal{
    background-color: gray;
    color: white;
    border: 2px solid transparent;
}

.boton-menuPrincipal:hover{
    background-color: white;
    color: gray;
    font-weight: bold;
    border: 2px solid  gray;
}

.boton-secundario{
    background-color: darkcyan;
    color: white;
    border: 2px solid transparent;
}

.boton-secundario:hover{
    background-color: white;
    color: darkcyan;
    border: 2px solid darkcyan;
}

.presionado{
    background-color: white;
    color: darkcyan;
    border: 2px solid darkcyan;
}

.presionadoVerde{
    background-color: white;
    color:  rgba(75, 119, 39, 0.925);
    font-weight: bold;
    border: 2px solid  rgba(75, 119, 39, 0.925);
}

.presionadoRojo{
    background-color: white;
    color:  rgb(231, 47, 47);
    font-weight: bold;
    border: 2px solid  rgb(231, 47, 47);
}

button{
    border: none;
}

.footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    border-top: 1px solid gainsboro;
    height: 9rem;
  
}

.imagen-footer{
    margin-top: 1.4rem;
    height: 8rem;
}

.menu{
    display: flex;
    flex-direction: column;
}

.icono-menu{
    max-width: 60%;
    margin: 15px auto;
}

.opciones{
    color: #343a40;
    font-weight: bold;
    font-size: 1.5rem;
}
.zoom {
    transition: transform .2s;
}
    
.zoom:hover {
    transform: scale(1.1); 
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.29);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.29);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.29);
}

.contenedor-formularios{
    margin: 0 auto;
    max-width: 70%;
    display: flex;
    flex-direction: column;

}

label{
    margin-bottom: 0.5rem;
}
input{
    margin-bottom: 1.5rem;
}

input:focus{
    border: 1px solid #9070aa;
    outline: none;
}

.radio{
    display: flex;
}

.toooltip{
    width: 2rem;
}

.imagen-comprobante{
    background-image: url(../imagenes/lg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 19rem;
    height: 22rem;
    margin: 0 auto;
}

textarea{
    width: 100%;
    height: 10rem;
    border-radius: 1rem;
}

textarea:focus{
    outline: 1px solid #9070aa;
}

.bloqueado{ 
    cursor: not-allowed;
}

.modC{
    border: 1px solid green; 
}

/* LA CLASE PERSONA HACE REFERENCIA A LOS ENTREVISTADORES HACIENDO UN LIGERO CAMBIO DE COLOR EN EL BG PARA DAR DIFERENCIACION*/
.persona{ 
    background-color: whitesmoke;
    padding: 2rem;
}

.cargos{
    text-decoration: none;
}

.cargos:hover{
    text-decoration: underline;
}

.inhabilitado{
    background-color: rgba(0, 0, 0, 0.1);
    color:  rgba(0, 0, 0, 0.5)
}

.drpdwn{
    font-size: 1.3rem;
    font-weight: bold;
    padding: 0.5rem;
}
.item{
    color: #212529;
    text-decoration: none;
}
.drpdwn:hover{
    background-color: rgba(0, 0, 0, 0.1);
    width: 100%;
}