#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--ancora-blue-dark);
  color: var(--ancora-white);
  padding: 20px 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  border-top: solid 1px var(--ancora-white);
  align-items: center;
}
.cbg-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cbg-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.cbg-buttons {
  display: flex;
  gap: 20px;
}
