@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700&display=swap');

.consent-modal #consent-decline,
.consent-modal #consent-accept {
  min-width: 6.25rem;
  min-height: 2.75rem;
  padding: .7rem 1.1rem;
  border-radius: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.consent-modal #consent-decline {
  border: 1px solid #81848c;
  background: transparent;
  color: #50545a;
}

.consent-modal #consent-decline:hover,
.consent-modal #consent-decline:focus-visible {
  border-color: #50545a;
  background: #e4e5e6;
  color: #1e1e1c;
  transform: translateY(-1px);
}

.consent-modal #consent-accept {
  border: 1px solid #1e1e1c;
  background: #1e1e1c;
  color: #fff;
}

.consent-modal #consent-accept:hover,
.consent-modal #consent-accept:focus-visible {
  border-color: #343432;
  background: #343432;
  color: #fff;
  transform: translateY(-1px);
}

.consent-modal #consent-decline:focus-visible,
.consent-modal #consent-accept:focus-visible {
  outline: 2px solid #81848c;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .consent-modal #consent-decline,
  .consent-modal #consent-accept {
    transition: none;
  }

  .consent-modal #consent-decline:hover,
  .consent-modal #consent-decline:focus-visible,
  .consent-modal #consent-accept:hover,
  .consent-modal #consent-accept:focus-visible {
    transform: none;
  }
}