.privacy-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10050;
  margin: 0;
  padding: 0.875rem 1rem;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.privacy-notice--hidden {
  visibility: hidden;
}

.privacy-notice--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.privacy-notice--closing {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.privacy-notice__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  max-width: 100%;
  padding: 0;
}

.privacy-notice__title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.privacy-notice__text {
  flex: 1 1 16rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #333;
}

.privacy-notice__text a {
  color: #045bc1;
  text-decoration: underline;
}

.privacy-notice__text a:hover,
.privacy-notice__text a:focus {
  color: #03438f;
}

.privacy-notice__btn {
  flex: 0 0 auto;
  min-width: 7rem;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .privacy-notice__inner {
    width: 80%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575.98px) {
  .privacy-notice__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .privacy-notice {
    transition-duration: 0.01ms;
  }
}
