/* Casper: De Cookie */
#cookie {
  padding: 2em;
  max-width: 24em;
  -ms-flex-direction: column;
  flex-direction: column;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  overflow: hidden;
  box-sizing: border-box;
  font-family: Helvetica,Calibri,Arial,sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
  background-color: #252e39;
  color: white;
} #cookie div {
  width: 300px;
} #cookie a {
  text-decoration: underline;
  color: #ababab;
}
#cookie-knop {
  border-radius: 5px;
  padding: 10px;
  background-color: #e99924;
  text-align: center;
  cursor: pointer;
} #cookie-knop:hover {
  background-color: #c1780d;
  color: #e8e8e8;
}
@media (max-width: 1200px) {
  #cookie {
    left: 1em;
    transform: inherit;
  }
}
@media (max-width: 450px) {
  #cookie {
    padding: 2em 0;
    width: 100%;
    max-width: inherit;
    bottom: 6em;
    left: 0;
    transform: inherit;
    text-align: center;
  } #cookie div {
    margin: 0 auto;
  }
}
