/* AleWet technical cookie notice. */
.alewet-cookie-notice[hidden] {
  display: none;
}

.alewet-cookie-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 10000;
  pointer-events: none;
}

.alewet-cookie-notice__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 72rem);
  margin-inline: auto;
  padding: 1rem 1.125rem;
  border: 1px solid #cbdcd8;
  border-radius: 1rem;
  background: #fff;
  color: #0e4f44;
  box-shadow: 0 12px 32px rgb(14 79 68 / 16%);
  pointer-events: auto;
}

.alewet-cookie-notice__content p {
  max-width: 52rem;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
}

.alewet-cookie-notice__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
}

.alewet-cookie-notice__actions a {
  color: #0e4f44;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.alewet-cookie-notice__actions button {
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  border: 0;
  border-radius: 0.75rem;
  background: #0e4f44;
  color: #fff;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
}

.alewet-cookie-notice__actions a:focus-visible,
.alewet-cookie-notice__actions button:focus-visible {
  outline: 3px solid #14b8a6;
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .alewet-cookie-notice {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .alewet-cookie-notice__content,
  .alewet-cookie-notice__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .alewet-cookie-notice__actions {
    gap: 0.625rem;
  }

  .alewet-cookie-notice__actions button {
    width: 100%;
  }
}

