#popup{
    margin: auto auto;
    background-color: #e20612; /* Couleur du background principal */
    position: fixed; 
    bottom: 0; 
    z-index: 5000 /*Mets le div en avant plan */; 
    height: 150px; 
    display:block;
    transition: all ease 2s;
    width: 100%;
}

#popup > div {
    width: 95%;
    margin: auto;
}

#popup.remove-popup{
    bottom: -100%;
}

p.text-cookies{
    padding: 15px 0;
    color: white !important; /* Couleur du texte */
    font-size: 0.7em; /* en mobile */
}
p.text-cookies a {
    color: black;
}
p.text-cookies a:hover {
    color: white;
}
button#buttonCookie{
    background-color: black; 
    text-transform: uppercase; 
    color: white; 
    border: none; 
    padding: 0.25em 0.75em;
    margin-left: auto;
    display: block;cursor:pointer;
}
button#buttonCookie:hover{
    background-color: white;
    color: black; 
}

@media only screen and (min-width: 768px) {
    p.text-cookies{
    font-size: 1em; 
    }
}