div.cookie-note {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10200;
  padding: 15px;
  background: #d4f0fe;
  display: none;
}
div.cookie-note.show {
  display: flex;
  align-items: center;
  opacity: 0.9;
}
div.cookie-note .text {
  margin: 0 20px 0 0;
}
div.cookie-note .text p {
  font-size: 12px;
  line-height: 14px;
  color: #000;
  margin: 0 0 5px 0;
}
div.cookie-note .text p a {
  color: #000;
}
div.cookie-note button {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #000;
  border: 1px solid #fff;
  margin: 0 auto;
  padding: 10px 25px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  background: #fff;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}
div.cookie-note button:hover {
  background: #d4f0fe;
  color: #000;
  border: 1px solid #000;
}