#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-family: sans-serif;
}

#cookie-banner.show {
  display: flex;
}

#cookie-banner p {
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}

#cookie-banner button {
  margin-left: 10px;
  padding: 8px 14px;
  border: none;
  background: #fff;
  color: #222;
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
}

.hidden {
  display: none;
}
