.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  color: white;
  background-color: grey;
  padding: 10px;
  text-align: center;
}
.cookie-banner.active {
  display: block;
}
.cookie-inform-and-ask {
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.cookie-inform-and-ask.active {
  display: block;
}
.cookie-inform-and-ask .cookie-dialog {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1000;
  padding: 20px;
  color: grey;
  background-color: white;
  max-width: 700px;
}
.cookie-inform-and-ask .cookie-dialog h1 {
  margin-top: 10px;
}
.cookie-inform-and-ask .ga-buttons {
  margin-top: 10px;
}
