.billing-consent {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 780px;
  margin: -16px 0 34px;
  padding: 16px 18px;
  border: 1px solid #233d62;
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(14, 31, 55, .78), rgba(8, 18, 32, .82));
  color: #9fb0c8;
  font-size: 12px;
  line-height: 1.65;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.billing-consent[hidden] {
  display: none;
}

.billing-consent:hover,
.billing-consent:focus-within {
  border-color: #3b6fb5;
  background: linear-gradient(145deg, rgba(16, 38, 69, .88), rgba(8, 20, 37, .9));
}

.billing-consent.invalid {
  border-color: #b74b63;
  box-shadow: 0 0 0 3px rgba(224, 71, 102, .1);
}

.billing-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #347fff;
  cursor: pointer;
}

.billing-consent strong {
  display: block;
  margin-bottom: 2px;
  color: #dce9fb;
  font-size: 11px;
  letter-spacing: .02em;
}

.billing-consent a {
  color: #75adff;
  text-decoration: underline;
  text-decoration-color: rgba(117, 173, 255, .45);
  text-underline-offset: 3px;
}

.billing-consent a:hover {
  color: #a9cbff;
}

@media (max-width: 680px) {
  .billing-consent {
    margin-top: -18px;
    padding: 14px;
  }
}
