body {
    width: 100%;
}

@media only screen and (orientation: landscape) {

    /* Add your CSS rules here */
    .ocultar-v {
        display: none;
    }

}

@media only screen and (orientation: portrait) {

    /* Add your CSS rules here */
    .ocultar-h {
        display: none;
    }

}




@media only screen and (max-width: 600px) {
    .ocultar-div {
        display: none;
    }
}

@media only screen and (min-width: 600px) {
    .ocultar-div2 {
        display: none;
    }
}







select {
    appearance: none;
    padding: 5px 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #007bfd;
    background-color: #007bfd;
    color: #ffffff;
    font-size: 22px;
}

select:focus {
    outline: none;
}

.cabecera {
    background-color: #ffffff;
    color: #353333;
}

.titulo {
    font-size: 26px;
    text-align: center;
    padding: 8px;
    background-color: #353333;
    color: #ffffff;
}

.titulo2 {
    font-size: 26px;
    background-color: #353333;
    color: #ffffff;
}

.central {
    background-color: #ffffff;
    color: #353333;
}

#contenedor {
    width: 95%;
    max-width: 1200px;
}


/*
thead {
    position: sticky;
    top: 0;
}
*/

.inferior {
    color: #FFF;
    background: #000;
    position: relative;
    /*El div será ubicado con relación a la pantalla*/
    left: 0px;
    /*A la derecha deje un espacio de 0px*/
    right: 0px;
    /*A la izquierda deje un espacio de 0px*/
    bottom: 0px;
    /*Abajo deje un espacio de 0px*/
    height: 50px;
    /*alto del div*/
    z-index: 0;
    text-align: center;
    padding: 8px;

}

.inferiorFijo {
    color: #FFF;
    background: #000;
    position: absolute;
    /*El div será ubicado con relación a la pantalla*/
    left: 0px;
    /*A la derecha deje un espacio de 0px*/
    right: 0px;
    /*A la izquierda deje un espacio de 0px*/
    bottom: 0px;
    /*Abajo deje un espacio de 0px*/
    height: 50px;
    /*alto del div*/
    z-index: 0;
    text-align: center;
    padding: 8px;

}


.contentx {
    padding: .5em;
    white-space: pre-wrap;
    height: 40em;
    overflow-y: scroll;
    /* se habilita el scroll vertical */
}

.contentx::-webkit-scrollbar {
    /* solo oculta su visualizacion */
    display: none;
}

.scrollX {
    height: 430px;
    overflow-y: scroll;
}

.scrollX2 {
    height: 380px;
    overflow-y: scroll;
}

.scrollX3 {
    height: 300px;
    overflow-y: scroll;
}

.scrollx4 {
    display: block;
    height: 100px;
    overflow-y: scroll;
}

.grecaptcha-badge {
    /* visibility: hidden; */
    position: absolute;
    right: 0;
    top: 15px;
}


.cuerpo {
    height: 430px;
    overflow: scroll;
}

.centrado {
    margin: 10px auto;
    display: block;
    padding: 5%;
}

.table-fixed thead,
.table-fixed tfoot {
    width: 97%;
}

.table-fixed tbody {
    height: 230px;
    overflow-y: auto;
    width: 100%;
}

.table-fixed thead,
.table-fixed tbody,
.table-fixed tfoot,
.table-fixed tr,
.table-fixed td,
.table-fixed th {
    display: block;
}

.table-fixed tbody td,
.table-fixed thead>tr>th,
.table-fixed tfoot>tr>td {
    float: left;
    border-bottom-width: 0;
}