.cookie-notice {
  all: unset;
  box-sizing: border-box;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  max-width: calc(100vmin - 4rem);
  max-height: calc(100svh - 2rem);
  overflow-y: scroll;
  width: 20rem;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1rem;
  background-color: #fefefe;
  color: #000;
  box-shadow: 0 4px 16px rgba(48, 48, 48, 0.3137254902);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 999;
}
.cookie-notice * {
  box-sizing: border-box;
}
.cookie-notice::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 648px) {
  .cookie-notice {
    bottom: 2rem;
    right: 2rem;
    padding: 2rem;
  }
}
.cookie-notice img {
  width: 4rem;
  height: 4rem;
}
.cookie-notice strong {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cookie-notice p {
  font-size: 16px;
}
.cookie-notice div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-notice .cookie-buttons {
  gap: 8px;
}
.cookie-notice button.button {
  margin-inline: auto;
  padding: 8px 16px;
  background-color: #0f9d58;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}
.cookie-notice button.declined {
  background-color: #000;
}
.cookie-notice button.button:hover {
  opacity: 0.8;
  /* filter: grayscale(.5); */
}
.cookie-notice span {
  font-size: 12px;
  color: #333;
}
.cookie-notice a {
  color: #4285f4;
  text-decoration: none;
}

.cookie-notice.disabled {
  display: none;
  opacity: 0;
}/*# sourceMappingURL=style.css.map */