.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 30px;
  max-width: 420px;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 0 24px rgba(25, 25, 25, 0.15);
  background-color: #fff;
  z-index: 2;
  display: none;
}
.cookie-notice__text {
  font-size: 14px;
}
.cookie-notice__text a{
  text-decoration: underline;
}
.cookie-notice__confirm {
  background-color: #00CCA7;
  height: 35px;
  width: 100%;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  margin-top:10px;
}
.cookie-notice__confirm:hover{
  background-color:#000A8B;
}