/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 02 2026 | 19:07:23 */
/* 1. LA CAJA PRINCIPAL (Forzando la Nube flotante) */
.ct-cookie-notification, 
aside.ct-cookies-notification,
.ct-cookies-notification {
    border-radius: 25px !important; 
    background-color: #FCFBF4 !important; 
    box-shadow: 0px 10px 40px rgba(0,0,0,0.15) !important; 
    border: none !important;
    
    /* Forzamos que se separe de las esquinas */
    bottom: 30px !important; 
    left: 30px !important;
    margin: 0 !important;
    
    /* Evitamos que se estire y rompa la forma */
    max-width: 420px !important; 
    width: auto !important;
    
    /* ¡EL TRUCO MÁGICO! Esto recorta cualquier fondo cuadrado que tenga Blocksy por dentro */
    overflow: hidden !important; 
}

/* 2. ARREGLO DEL TEXTO */
.ct-cookies-notification div,
.ct-cookies-notification p {
    background-color: transparent !important; 
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* 3. BOTÓN ACEPTAR (Cápsula verde) */
.ct-cookies-accept-button {
    border-radius: 50px !important;
    padding: 12px 35px !important;
    background-color: #A1D73C !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border: none !important;
}

/* 4. BOTÓN RECHAZAR (Cápsula arena mate) */
.ct-cookies-decline-button {
    border-radius: 50px !important;
    padding: 12px 35px !important;
    background-color: #EAE7CC !important; 
    color: #333333 !important;
    font-weight: 600 !important;
    border: none !important;
    text-decoration: none !important;
}