.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #033c5f;
  color: #dbf0fb;
  font-size: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 9999;
}
.cookie-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-bar__text {
  flex: 1;
  margin: 0;
}
.cookie-bar__text a {
  color: inherit;
  text-decoration: underline;
}
.cookie-bar__btn {
  flex-shrink: 0;
  padding: 0.4em 1em;
  background: #dbf0fb;
  color: #033c5f;
  border: none;
  font: inherit;
  font-size: 0.9em;
  font-weight: 800;
  cursor: pointer;
  border-radius: 4px;
}
.cookie-bar__btn:hover {
  background: #427690;
  color: #dbf0fb;
}/*# sourceMappingURL=cookiebar-style.css.map */