.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #6CA7B2;
  border-radius: 24px;
  z-index: 9999;
}

.cookie-text {
  color: white;
  font-size: 18px;
}

.cookie-btn {
  border: 0;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  transition: 0.3s;
}

.cookie-btn:hover {
  background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
  .cookie-btn {
    width: 100%;
  }
  .cookie-text {
    text-align: center;
  }
}/*# sourceMappingURL=cookie.css.map */