/**
    * Ficheros:.........: rld_LOPD.css
    * Descripcion.......: Módulo estilo modulos aviso legal, pol. privacidad,
    *                     pol. cookies y nosotros
    * Fecha Creacion....: 25/03/2024
    * Fecha Modificacion: 
    *
    * @copyright CopyRight(C)2024 Daniel Rosado
    * @author Daniel Rosado
*/

.area_Trabajo{
    position: fixed;
    top:92px;
    margin-top: 4px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 4px;
    padding:5px;   
    border:1px solid #808080;
    border-radius: 10px 10px 10px 10px;
    width:calc(100% - 10px); 
    height: calc(100% - 152px);
    font-family: Arial;
    font-size: inherit;
    background-color: rgba(235, 235, 235, 0.90);
    overflow-y: auto;
}

.area_Cabecera{
    position: absolute;
    padding:5px;   
    top:0px;
    width:calc(100% - 10px);
    height: 85px;
    overflow-y: hidden;
}
.area_Datos{
    position: absolute;
    padding: 0 5px 5px 5px;   
    top:85px;
    width:calc(100% - 10px);
    height: calc(100% - 90px);
    overflow-y: auto;
    text-align: justify;
}

/*Se fija la cabecera de la tabla*/
.area_Datos thead { 
    position: sticky;
    top: 0px;
    z-index: 10;
}

@media all and (max-width: 640px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
    .area_Trabajo{
        top:0px;
        margin-top: 95px;/*Se comienza bajo el area de menu*/
        height: calc(100% - 150px);
        font-size: small;
    }
    .area_Cabecera{
        height: 80px;
    }
    .area_Datos{
        top:80px;
        height: calc(100% - 85px);
    }
}