#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background:rgb(58, 58, 58);
  color: white;
  padding: 15px;
  z-index: 9999;
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#cookie-banner.show {
  display: flex;
}
#cookie-banner button {
  margin-left: 10px;
}