#cookieConsent {
    position: fixed;
    bottom: 20px; /* Cambia esta propiedad según sea necesario */
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* Cambia el ancho del cartel según sea necesario */
    max-width: 500px; /* Cambia el ancho máximo del cartel según sea necesario */
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    z-index: 9999;
}

.cookie-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.cookie-message p {
    margin: 0;
    padding: 0;
}

.cookie-message a {
    color: #fff;
    text-decoration: underline;
}

#acceptCookies {
    background-color: #DF4625;  /*color boton */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}