/* Cookie banner */
.cookie-banner {
	display: flex;
	flex-direction: column;
	justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  z-index: 9999;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner__box {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.cookie-banner__text p {
  margin: 6px 0 0;
}

.cookie-btn {
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  cursor: pointer;
  font: inherit;
}

.cookie-btn--primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.cookie-btn--secondary {
  background: #f5f5f5;
  color: #111;
}
