    #popup{
      margin: auto auto;
      background-color: #E2001A; /* 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%;
      left: 0;
    }

    #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 */
      text-align: left;
    }
    p.text-cookies a {
        color: #A5A6A8;
        text-decoration: none;
    }
    button#buttonCookie{
      background-color: #434242; 
      text-transform: uppercase; 
      color: white; 
      border: none; 
      padding: 0.25em 0.75em;
      margin-left: auto;
      display: block;
      cursor:pointer;
    }

    @media only screen and (min-width: 768px) {
        p.text-cookies{
          font-size: 1em; 
        }
    }