<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#cookie-banner {
    display: none; /* Oculta el banner inicialmente */
    position: fixed;
    bottom: 0;
    left: 50%; /* Mueve el div al centro horizontal */
    transform: translateX(-50%); /* Ajusta el div para que estÃ© completamente centrado */
    width: 80%; /* 80% del ancho del viewport */
    background: #004583;
    color: white;
    padding: 15px;
    text-align: justify;
    z-index: 999;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
}

/* Hacer el banner mÃ¡s pequeÃ±o en pantallas pequeÃ±as */
@media screen and (max-width: 768px) {
    #cookie-banner {
        width: 90%; /* 90% del ancho para pantallas mÃ¡s pequeÃ±as */
        font-size: 12px; /* Reducir el tamaÃ±o de la fuente */
        padding: 8px; /* Reducir el padding */
    }
}

@media screen and (max-width: 480px) {
    #cookie-banner {
        width: 100%; /* Ocupa el 100% del ancho en pantallas muy pequeÃ±as */
        font-size: 10px; /* Reducir aÃºn mÃ¡s el tamaÃ±o de la fuente */
        padding: 6px; /* Reducir el padding */
    }

    #cookie-banner p {
        text-align: center; /* Alinear el texto al centro en pantallas muy pequeÃ±as */
    }
}

.ccp-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    width: 80%;
    max-width: 600px; /* Limita el tamaÃ±o mÃ¡ximo de la modal */
}

#cookie-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: #000000;
    font-size: 14px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 80%;
    max-width: 600px; /* Limita el tamaÃ±o mÃ¡ximo de la modal */
    border-radius: 10px;
}

#cookie-modal h3 {
    margin-top: 0;
}

#cookie-modal button {
    margin-top: 10px;
    color: #FFFFFF;
}

#cookie-banner button {
    color: white;
    border: none;
    cursor: pointer;
}

#cookie-banner button:hover {
    color: #FFFFFF;
}

#customize-preferences2 {
    cursor: pointer;
}
</pre></body></html>