/**
    * Modulo............: cookies.css
    * Ficheros:.........: cookies.js
    * Descripcion.......: Aspecto de la ventana de aviso de Cookies
    * Fecha Creacion....: 23/1/2024
    * Fecha Modificacion: 
    *
    * @copyright CopyRight(C)2024 Daniel Rosado
    * @author Daniel Rosado
*/

#rldCookie_contenedor{
    width:100%;	
    height:100%;
    background-color:rgba(0,0,0,0.65);
    position:fixed;
    top:0px;
    left:0px;
    z-index: 9999;
    display: none;
    border-style: none;
}

#rldCookie_Ventana{
    width:56%;
    height: 60%;
    position:fixed;
    background-color: white;
    border-radius: 7px;
    top: 18%;
    left:20%;
    transition: all 0.5s ease-out;
    padding: 2%;
    overflow-y: auto;
    text-align: justify;
    /* Sombra normal */
    box-shadow: 2px 2px 10px #666;
    font-family: arial;
    font-size: 12pt;
    line-height: 1.7;
}

.SombraTitulo{
    color: black; 
    text-shadow:
      2px 2px 0 #ccc;
}

.Boton_Gris_Cookie{
/*    position: relative;
    float: left;*/
    background-color: #00a89c;
    width: calc(50% - 50px);
    text-decoration: none;
    padding: 6px;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    border-radius: 6px;
    border: 2px solid #0d4e9c;
    margin-bottom: 10px;
    margin-left:2px;
    margin-right:2px;
    cursor: pointer;
    transition-property: background-color, color;
    transition-duration: 1s;
    transition-timing-function: ease-out;
    -webkit-transition-property: background-color, color;
    -webkit-transition-duration: 1s;
    -o-transition-property: background-color, color;
    -o-transition-duration: 1s;
}

.Boton_Gris_Cookie:hover{
    color: #1883ba;
    background-color: #ffffff;
    transition-property: background-color, color;
    transition-duration: 1s;
    transition-timing-function: ease-out;
    -webkit-transition-property: background-color, color;
    -webkit-transition-duration: 1s;
    -o-transition-property: background-color, color;
    -o-transition-duration: 1s;
}

@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) {
    #rldCookie_Ventana{
        width:76%;
        height: 48%;
        position:fixed;
        top: 22%;
        left:10%;
        transition: all 0.5s ease-out;
        padding: 2%;
        overflow-y: auto;
    }
    
    .Boton_Gris_Cookie{
        width: calc(100% - 50px);
    }
}

