.bw-consent {
  position: fixed;
  z-index: 10000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: #081b33;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  font: 400 0.95rem/1.5 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bw-consent[hidden] {
  display: none;
}

.bw-consent__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bw-consent p {
  margin: 0;
}

.bw-consent a {
  color: #8edee5;
  text-decoration: underline;
}

.bw-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.6rem;
}

.bw-consent button {
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid #fff;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.bw-consent__accept {
  background: #fff;
  color: #081b33;
}

.bw-consent__refuse {
  background: transparent;
  color: #fff;
}

@media (max-width: 680px) {
  .bw-consent__content {
    align-items: stretch;
    flex-direction: column;
  }

  .bw-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
