/* Labters cookie consent banner */
#labters-consent {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
#labters-consent .lc-card {
  pointer-events: auto;
  max-width: 720px;
  width: 100%;
  background: #ffffff;
  color: #0b0b0c;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(15, 15, 15, 0.04),
    0 12px 32px -16px rgba(15, 15, 15, 0.18);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font: 400 14px/1.5
    Geist,
    ui-sans-serif,
    system-ui,
    sans-serif;
}
#labters-consent .lc-text {
  margin: 0;
  flex: 1 1 280px;
  color: rgba(11, 11, 12, 0.78);
}
#labters-consent .lc-text a {
  color: #0b0b0c;
  text-decoration: underline;
}
#labters-consent .lc-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
#labters-consent .lc-btn {
  appearance: none;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  padding: 8px 16px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  background: #ffffff;
  color: #0b0b0c;
  transition:
    background 0.15s,
    border-color 0.15s;
}
#labters-consent .lc-btn-reject:hover {
  background: #f4f4f5;
}
#labters-consent .lc-btn-accept {
  background: #0b0b0c;
  color: #ffffff;
  border-color: #0b0b0c;
}
#labters-consent .lc-btn-accept:hover {
  background: #1a1a1b;
}
@media (max-width: 480px) {
  #labters-consent .lc-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
