#popup {
  margin: auto auto;
  background-color: #b89037;
  /* 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: black !important;
  /* Couleur du texte */
  font-size: 0.7em;
  /* en mobile */
}
p.text-cookies a {
  color: #000;
  display: unset;
  text-decoration: underline;
}
button#buttonCookie {
  width: auto;
  background-color: #000;
  text-transform: uppercase;
  color: #b89037;
  border: none;
  padding: 0.25em 0.75em;
  margin-left: auto;
  display: block;
  cursor: pointer;
  text-decoration: unset;
}
@media only screen and (min-width: 768px) {
  p.text-cookies {
    font-size: 1em;
  }
}
