
/* ===============================
======= Banniere info Cookie ===*/
.privacy-info-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
}

.privacy-info-banner__inner {
  width: 100%;
  max-width: 920px;
  background: rgba(255, 248, 239, 0.98);
  color: #0A69A2;
  border: 1px solid rgb(48, 149, 210);
  border-radius: 18px;
  box-shadow: 0px 0px 3px 2px rgba(48, 149, 210, 0.9);
  backdrop-filter: blur(6px);
}

.privacy-info-banner__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
}

.privacy-info-banner__text {
  flex: 1 1 auto;
}

.privacy-info-banner__text strong {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 1.000rem;
  letter-spacing: 0.02em;
}

.privacy-info-banner__text p {
  margin: 0.35rem 0 0;
  font-size: 0.850rem;
  color: rgb(92, 105, 121);
  line-height: 1.55;
}

.privacy-info-banner__text a {
  color: #D0527B;
  text-underline-offset: 2px;
}

.privacy-info-banner__text a:hover,
.privacy-info-banner__text a:focus {
  color: #D0527B;
  text-decoration: underline;
}

.privacy-info-banner__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.privacy-info-banner__form {
  margin: 0;
}

.privacy-info-banner__btn,
.privacy-info-banner__close {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.privacy-info-banner__btn {
  background: #0A69A2;
  font-size: 0.800rem;
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}

.privacy-info-banner__btn:hover,
.privacy-info-banner__btn:focus {
  background: #085888;
}

.privacy-info-banner__close {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: transparent;
  color: #0A69A2;
  border: 1px solid #0A69A2;
  font-size: 1.2rem;
  line-height: 1;
}

.privacy-info-banner__close:hover,
.privacy-info-banner__close:focus {
  background: #0A69A2;
  color: #fff;
}

@media (max-width: 720px) {
  .privacy-info-banner {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
  }

  .privacy-info-banner__content {
    flex-direction: column;
    align-items: stretch;
    padding: 0.95rem 1rem;
  }

  .privacy-info-banner__actions {
    justify-content: space-between;
    align-items: center;
  }

  .privacy-info-banner__btn {
    width: 100%;
  }
}