.footer-privacy {
  display: flex;
  flex-direction: column;
}
.grecaptcha-badge {
  visibility: hidden;
}

/* COOKIE STYLES */
.cookie-banner_cookieBanner {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  color: #fff;
  animation: cookie-banner_slideUp 0.3s ease-out;
  padding: 0 20px;
}
.cookie-banner_cookieBannerContainer {
  max-width: 1440px;
  background: #fff;
  padding: 18px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-radius: 10px;
}
@media (max-width: 864px) {
  .cookie-banner_cookieBannerContainer {
    flex-direction: column;
  }
}
.cookie-banner_cookieBannerContent {
  flex: 1 1;
}
.cookie-banner_cookieBannerContent > p {
  margin: 0;
  font-family: Onest, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  text-align: left;
}
.cookie-banner_cookieBannerContent > p > a {
  text-decoration: underline;
  color: #e94190;
}
.cookie-banner_cookieBannerButton {
  background: #e94190;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-family: Onest, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 120px;
  appearance: none;
}

@keyframes cookie-banner_slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}
