#cookie-banner {
  position: fixed;
  bottom: 0; /* Initiele staat buiten het zichtbare gebied */
  left: 0;
  width: 100%;
  padding: 15px;
  padding-bottom: 60px;
  background-color: rgb(28, 156, 163);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999999;
  font-size: 14px;
  transition: bottom 0.5s ease-in-out;
}

#cookie-banner.show {
  bottom: 0; /* Het triggeren van de animatie naar boven */
}

#cookie-banner a {
  color: white;
  text-decoration: underline;
  margin-right: 20px;
}

#accept-cookies {
  background-color: rgb(159, 27, 128);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 0;
}

body {
  margin: 0; /* Verwijder de margin */
  padding-bottom: 60px; /* Voeg padding toe aan de onderkant in plaats van margin */
}/*# sourceMappingURL=cookiemelding.css.map */