/* Consent field */
.gfield:has(.ginput_container_consent) {
  font-size: var(--font-size-text-body);
  line-height: 1.3;

  .gfield_label, .gfield_description  {
    position: fixed; top: -100vh;
  }

  .gfield_consent_label {
    opacity: 1; position: static;
  }

  .ginput_container {
    display: flex; gap: 9px;
    align-items: start;
  }

  a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
  }

  input[type="checkbox"] {
    width: 12px; height: 12px;
    flex: 0 0 12px;
    margin-top: 2px;
    padding: 0;

    &:checked {
      background: url('../../images/check.svg') 50% 50% no-repeat;
      background-size: 7px;
    }

    &:focus-visible {
      border-width: 2px;
    }
  }
}
