bhl-forms 0.6.10 → 0.6.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bhl-forms.iife.js +1 -1
- package/dist/bhl-forms.modern.iife.js +7 -7
- package/dist/bhl-forms.modern.umd.js +1 -1
- package/dist/bhl-forms.umd.js +1 -1
- package/dist/forms/accidentsAndInjuries.es.js +29 -28
- package/dist/forms/accidentsAndInjuries.iife.js +1 -1
- package/dist/forms/business.es.js +38 -36
- package/dist/forms/business.iife.js +1 -1
- package/dist/forms/business.json +1 -1
- package/dist/forms/childAndFamily.es.js +29 -28
- package/dist/forms/childAndFamily.iife.js +1 -1
- package/dist/forms/childAndFamilySingle.es.js +38 -36
- package/dist/forms/childAndFamilySingle.iife.js +1 -1
- package/dist/forms/childAndFamilySingle.json +1 -1
- package/dist/forms/civilLawsuit.es.js +45 -43
- package/dist/forms/civilLawsuit.iife.js +1 -1
- package/dist/forms/civilLawsuit.json +1 -1
- package/dist/forms/contracts.es.js +29 -28
- package/dist/forms/contracts.iife.js +1 -1
- package/dist/forms/criminal.es.js +39 -37
- package/dist/forms/criminal.iife.js +1 -1
- package/dist/forms/criminal.json +1 -1
- package/dist/forms/divorce.es.js +38 -36
- package/dist/forms/divorce.iife.js +1 -1
- package/dist/forms/divorce.json +1 -1
- package/dist/forms/employmentAndWorkplace.es.js +44 -42
- package/dist/forms/employmentAndWorkplace.iife.js +1 -1
- package/dist/forms/employmentAndWorkplace.json +1 -1
- package/dist/forms/generalLegal.es.js +29 -28
- package/dist/forms/generalLegal.iife.js +1 -1
- package/dist/forms/generalLegalPopUnder.es.js +29 -28
- package/dist/forms/generalLegalPopUnder.iife.js +1 -1
- package/dist/forms/generalLegalPopUnderSingle.es.js +45 -43
- package/dist/forms/generalLegalPopUnderSingle.iife.js +1 -1
- package/dist/forms/generalLegalPopUnderSingle.json +1 -1
- package/dist/forms/generalLegalSingle.es.js +45 -43
- package/dist/forms/generalLegalSingle.iife.js +1 -1
- package/dist/forms/generalLegalSingle.json +1 -1
- package/dist/forms/generalLegalThankYou.es.js +19 -20
- package/dist/forms/generalLegalThankYou.iife.js +1 -1
- package/dist/forms/harassmentAndDiscrimination.es.js +29 -28
- package/dist/forms/harassmentAndDiscrimination.iife.js +1 -1
- package/dist/forms/landlordTenant.es.js +38 -36
- package/dist/forms/landlordTenant.iife.js +1 -1
- package/dist/forms/landlordTenant.json +1 -1
- package/dist/forms/malpractice.es.js +29 -28
- package/dist/forms/malpractice.iife.js +1 -1
- package/dist/forms/mechanics.es.js +824 -34
- package/dist/forms/mechanics.iife.js +1 -1
- package/dist/forms/mechanics.json +1 -1
- package/dist/forms/patentsAndIP.es.js +38 -36
- package/dist/forms/patentsAndIP.iife.js +1 -1
- package/dist/forms/patentsAndIP.json +1 -1
- package/dist/forms/realEstate.es.js +29 -28
- package/dist/forms/realEstate.iife.js +1 -1
- package/dist/forms/repossession.es.js +29 -28
- package/dist/forms/repossession.iife.js +1 -1
- package/dist/forms/ssdi.es.js +25 -25
- package/dist/forms/ssdi.iife.js +1 -1
- package/dist/forms/ssdi.json +1 -1
- package/dist/forms/testForm.es.js +18 -19
- package/dist/forms/testForm.iife.js +1 -1
- package/dist/forms/testRedirects.es.js +8 -2
- package/dist/forms/testRedirects.iife.js +1 -1
- package/dist/forms/testRedirects.json +1 -1
- package/dist/forms/willsAndTrusts.es.js +29 -28
- package/dist/forms/willsAndTrusts.iife.js +1 -1
- package/dist/main.css +1 -1
- package/package.json +1 -1
|
@@ -345,9 +345,9 @@ const doctorTreatment = (scope) => sbsYesNoRadio({
|
|
|
345
345
|
label: 'Have You Recently Been Treated by a Doctor, Hospital or Clinic?',
|
|
346
346
|
});
|
|
347
347
|
|
|
348
|
-
const email = () => sbsText({
|
|
348
|
+
const email = (scope) => sbsText({
|
|
349
349
|
$formkit: 'email',
|
|
350
|
-
name: 'Email',
|
|
350
|
+
name: scope ? scope + ':' + 'Email' : 'Email',
|
|
351
351
|
label: 'Email Address:',
|
|
352
352
|
placeholder: 'email@domain.com',
|
|
353
353
|
autocomplete: 'email',
|
|
@@ -372,11 +372,11 @@ const estateLegalServicesNeeded = (scope) => sbsSelect({
|
|
|
372
372
|
]
|
|
373
373
|
});
|
|
374
374
|
|
|
375
|
-
const firstName = () => sbsText({
|
|
375
|
+
const firstName = (scope) => sbsText({
|
|
376
376
|
$formkit: 'text',
|
|
377
377
|
label: 'First Name:',
|
|
378
378
|
placeholder: 'First',
|
|
379
|
-
name: 'First_Name',
|
|
379
|
+
name: scope ? scope + ':' + 'First_Name' : 'First_Name',
|
|
380
380
|
autocomplete: "given-name",
|
|
381
381
|
validationMessages: {
|
|
382
382
|
required: 'First Name is required'
|
|
@@ -398,11 +398,11 @@ const incidentDate = (scope) => sbsDate({
|
|
|
398
398
|
label: 'Date of Incident:',
|
|
399
399
|
});
|
|
400
400
|
|
|
401
|
-
const lastName = () => sbsText({
|
|
401
|
+
const lastName = (scope) => sbsText({
|
|
402
402
|
$formkit: 'text',
|
|
403
403
|
label: 'Last Name:',
|
|
404
404
|
placeholder: 'Last',
|
|
405
|
-
name: 'Last_Name',
|
|
405
|
+
name: scope ? scope + ':' + 'Last_Name' : 'Last_Name',
|
|
406
406
|
autocomplete: "family-name",
|
|
407
407
|
validationMessages: {
|
|
408
408
|
required: 'Last Name is required'
|
|
@@ -512,9 +512,9 @@ const pendingCharges = (scope) => sbsYesNoRadio({
|
|
|
512
512
|
label: 'Do you currently have any pending charges?'
|
|
513
513
|
});
|
|
514
514
|
|
|
515
|
-
const phone = () => sbsText({
|
|
515
|
+
const phone = (scope) => sbsText({
|
|
516
516
|
$formkit: 'tel',
|
|
517
|
-
name: 'Primary_Phone',
|
|
517
|
+
name: scope ? scope + ':' + 'Primary_Phone' : 'Primary_Phone',
|
|
518
518
|
label: 'Phone Number:',
|
|
519
519
|
placeholder: '###-###-####',
|
|
520
520
|
maxlength: 12,
|
|
@@ -583,10 +583,10 @@ const socialSecurityDisabilityReceivingBenefits = (scope) => sbsYesNoRadio({
|
|
|
583
583
|
label: 'Are You Currently Receiving Social Security Disability Benefits?'
|
|
584
584
|
});
|
|
585
585
|
|
|
586
|
-
const TCPAConsent = () => ({
|
|
586
|
+
const TCPAConsent = (scope) => ({
|
|
587
587
|
$formkit: 'checkbox',
|
|
588
588
|
label: '$meta.tcpaLanguage',
|
|
589
|
-
name: 'TCPA_Opt_In',
|
|
589
|
+
name: scope ? scope + ':' + 'TCPA_Opt_In' : 'TCPA_Opt_In',
|
|
590
590
|
'data-tf-sensitive': 'false',
|
|
591
591
|
validation: 'required|accepted',
|
|
592
592
|
validationMessages: {
|
|
@@ -651,10 +651,10 @@ const willsAndTrustsTOLP = () => col2Radio({
|
|
|
651
651
|
]
|
|
652
652
|
});
|
|
653
653
|
|
|
654
|
-
const zipcode = () => sbsText({
|
|
654
|
+
const zipcode = (scope) => sbsText({
|
|
655
655
|
label: 'Zip Code:',
|
|
656
656
|
placeholder: '#####',
|
|
657
|
-
name: 'Zip',
|
|
657
|
+
name: scope ? scope + ':' + 'Zip' : 'Zip',
|
|
658
658
|
maxlength: 5,
|
|
659
659
|
inputmode: "numeric",
|
|
660
660
|
autocomplete: 'postal-code',
|
|
@@ -1081,7 +1081,8 @@ function commentsWithBankruptcy(updates = {}) {
|
|
|
1081
1081
|
label: typeof updates.label === 'undefined' ? DEFAULT_COMMENTS_LABEL : updates.label,
|
|
1082
1082
|
placeholder: updates.placeholder || DEFAULT_COMMENTS_PLACEHOLDER_DYNAMIC,
|
|
1083
1083
|
inputClass: typeof updates.inputClass === 'undefined' ? '!t-h-32' : updates.inputClass,
|
|
1084
|
-
}),
|
|
1084
|
+
}, updates.scope),
|
|
1085
|
+
// TODO: needs scope support
|
|
1085
1086
|
bankruptcyCrossSell(),
|
|
1086
1087
|
{
|
|
1087
1088
|
$el: 'div',
|
|
@@ -1106,9 +1107,9 @@ function contactInfo(updates = {}) {
|
|
|
1106
1107
|
contactStepHeadline(updates),
|
|
1107
1108
|
contactStepSubHeadline(updates),
|
|
1108
1109
|
trustedFormScript(),
|
|
1109
|
-
email(),
|
|
1110
|
-
phone(),
|
|
1111
|
-
TCPAConsent(),
|
|
1110
|
+
email(updates.scope),
|
|
1111
|
+
phone(updates.scope),
|
|
1112
|
+
TCPAConsent(updates.scope),
|
|
1112
1113
|
secureIcon()
|
|
1113
1114
|
],
|
|
1114
1115
|
false, // nextOnEnter
|
|
@@ -1348,9 +1349,7 @@ function willsAndTrustsTOLPQuestions(updates = {}) {
|
|
|
1348
1349
|
)
|
|
1349
1350
|
}
|
|
1350
1351
|
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
const formNavigation = () => ({
|
|
1352
|
+
const formNavigation = (updates = {}) => ({
|
|
1354
1353
|
$el: 'div',
|
|
1355
1354
|
attrs: {
|
|
1356
1355
|
class: 'step-nav'
|
|
@@ -1388,7 +1387,7 @@ const formNavigation = () => ({
|
|
|
1388
1387
|
{
|
|
1389
1388
|
$formkit: 'submit',
|
|
1390
1389
|
name: 'submit_button',
|
|
1391
|
-
label: 'Submit',
|
|
1390
|
+
label: updates.submitLabel || 'Submit',
|
|
1392
1391
|
if: '$activeStep === $lastStep()',
|
|
1393
1392
|
style: {
|
|
1394
1393
|
if: '$activeStep !== $lastStep()',
|
|
@@ -1523,14 +1522,16 @@ function defaultMetaProps(tolps = null) {
|
|
|
1523
1522
|
})
|
|
1524
1523
|
}
|
|
1525
1524
|
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1525
|
+
function dynamicSchemaNode(field = 'Type_Of_Legal_Problem') {
|
|
1526
|
+
return {
|
|
1527
|
+
$cmp: 'FormKitSchema',
|
|
1528
|
+
if: '$get(' + field + ').value',
|
|
1529
|
+
props: {
|
|
1530
|
+
schema: '$meta.dynamicSchema',
|
|
1531
|
+
data: '$buildData($meta)'
|
|
1532
|
+
}
|
|
1532
1533
|
}
|
|
1533
|
-
}
|
|
1534
|
+
}
|
|
1534
1535
|
|
|
1535
1536
|
const formAnchorDefaults = {
|
|
1536
1537
|
$el: 'div',
|
|
@@ -1813,7 +1814,7 @@ const schema = [
|
|
|
1813
1814
|
willsAndTrustsTOLPAndZip({
|
|
1814
1815
|
nextStepMap: nextStepsMapLegalLegacy
|
|
1815
1816
|
}),
|
|
1816
|
-
dynamicSchemaNode,
|
|
1817
|
+
dynamicSchemaNode(),
|
|
1817
1818
|
contactInfo(),
|
|
1818
1819
|
formNavigation(),
|
|
1819
1820
|
formDetails()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var willsAndTrusts=function(){"use strict";function e(){return Object.assign({},...arguments)}const t='$getKey($meta, "commentsPlaceholders." + $get(Type_Of_Legal_Problem).value, $meta.defaultCommentsPlaceholder)',a='$getKey($meta, "finalHeadlines." + $get(Type_Of_Legal_Problem).value, $meta.defaultFinalHeadline)',i='$getKey($meta, "finalSubHeadlines." + $get(Type_Of_Legal_Problem).value, $meta.defaultFinalSubHeadline)',r=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"checkbox",validation:"required",validationMessages:{required:"Field is required"}},t)),n=e=>(e&&e.legendClass||(e.legendClass="required"),e.fieldsetClass="$reset",e.optionsClass="t-pl-8 md:t-pl-2 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2",e.innerClass="t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",r(e)),o=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"radio",validation:"required",validationMessages:{required:"Field is required"},optionsClass:"t-pt-3 t-pl-1",legendClass:"required"},t)),l=e=>(e.options=["Yes","No"],(e=>(e.legendClass="legend-left t-pb-1 required",e.fieldsetClass="$reset side-by-side t-items-center",e.optionsClass="t-mt-1 t-grid t-grid-cols-1 md:t-grid-cols-2-125 t-items-center",e.innerClass="t-flex t-items-center",e.optionClass="t-pr-1",o(e)))(e)),s=t=>(t.labelClass="required",t.wrapperClass="side-by-side t-items-center",t.innerClass="select-height-content",t.helpClass="t-mt-2.5 md:t-text-right md:t-mt-[-5px]",(t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"select",placeholder:"Please Select",validation:"required",validationMessages:{required:"Field is required"},inputClass:"t-bg-white",labelClass:"required"},t)))(t)),d=t=>(t.wrapperClass="side-by-side t-items-center",(t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"text",validation:"required",validationMessages:{required:"Field is required"},labelClass:"required"},t)))(t)),u=t=>(t.wrapperClass="side-by-side t-items-center",(t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"DatePicker",validation:"required",validationMessages:{required:"Field is required"},labelClass:"required t-block t-mb-3 t-font-semibold t-text-base formkit-invalid:t-text-red-500",innerClass:"t-border t-border-gray-400 formkit-invalid:t-border-red-500 t-rounded t-mb-1 focus-within:t-border-blue-500"},t)))(t)),c=e=>d({name:e?e+":Applicant_Age":"Applicant_Age",label:"Age of Applicant?",placeholder:"Age between 18 and 65",maxlength:2,inputmode:"numeric",validation:"required|min:18,max:65",validationMessages:{required:"Applicant Age is required",min:"Invalid Age - must be between 18 and 65",max:"Invalid Age - must be between 18 and 65"}}),p=e=>l({name:e?e+":At_Fault":"At_Fault",label:"Were You at Fault?"}),m=()=>{return(e={label:"I'd also like a consult for bankruptcy or debt elimination (optional)",help:"Note: you will be contacted separately by a bankruptcy/debt expert",name:"CrossSell_Bankruptcy",id:"CrossSell_Bankruptcy",if:'$getVal($get(form), "Type_Of_Legal_Problem") != "Bankruptcy" && ($getVal($get(form), "Degree_Of_Interest") == "Absolutely Can\'t Afford" || $getVal($get(form), "Degree_Of_Interest") == "Maybe" || $getVal($get(form), "Degree_Of_Interest") == "Probably")',validation:null,helpClass:"!t-text-sm"}).legendClass="legend-left required",e.fieldsetClass="$reset side-by-side",e.optionsClass="t-pl-1",e.innerClass="t-flex t-items-center",e.wrapperClass="t-mb-3",r(e);var e},f=e=>s({name:e?e+":Blood_Alcohol_Content_Test":"Blood_Alcohol_Content_Test",label:"Blood Alcohol Content Measured by Test:",options:["No Test","0.00% - 0.04%","0.05% - 0.08%","0.09% - 0.12%","0.13% - 0.16%","0.17% - 0.20%","More than 0.20%","Don't know"]}),h=e=>s({name:e?e+":Cause_Of_Injury":"Cause_Of_Injury",label:"Cause of Injury:",options:["Traumatic Physical Injury (Accident)","Repeated Trauma Injury","Mental Injury","Occupational Disease","Not Sure"]}),y=e=>s({name:e?e+":Child_Home":"Child_Home",label:"With Whom Do the Children Currently Live?",options:["Mother","Father","Grandparents","Other"]}),g=e=>s({name:e?e+":Child_Primary_Caregiver":"Child_Primary_Caregiver",label:"Who is the Primary Caregiver?",options:["Mother","Father","Other"]}),b=e=>s({name:e?e+":Child_Relationship":"Child_Relationship",label:"Your Relationship to Child(ren):",options:["Father","Mother","Grandparent","Aunt/Uncle","Other"]}),_=e=>s({name:e?e+":Claim_Status":"Claim_Status",label:"Status of Claim:",options:["No action taken yet","Demand for compensation made","Lawsuit filed","Other"]}),C=(t,a)=>(t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"textarea",rows:5,maxlength:500,validation:"required",validationMessages:{required:"Field is required"},innerClass:"t-max-w-xl",labelClass:"required"},t)))(e({name:a?a+":Comments":"Comments",label:"Please briefly describe your situation in a few words:",placeholder:'For Example: "I would like help with child support payments" or "I need help with visitation rights"'},t)),v=()=>{return(e={name:"Criminal_Charges_Filed",label:"Were Criminal Charges Filed?",options:["Yes","No","Not Sure"]}).legendClass="legend-left required",e.fieldsetClass="$reset side-by-side",e.optionsClass="t-pl-1",e.innerClass="t-flex t-items-center",e.wrapperClass="t-mb-3",o(e);var e},x=(e,t)=>s({name:e?e+":Degree_Of_Interest":"Degree_Of_Interest",id:e?e+":Degree_Of_Interest":"Degree_Of_Interest",label:"How Likely Are You to Pay if Your Issue Could be Resolved?",help:t,options:["Definitely","Probably","Maybe","Absolutely Can't Afford"]}),w=e=>x(e,"No payment necessary to speak with lawyers."),I=e=>l({name:e?e+":Disability_Condition_Stop_Work":"Disability_Condition_Stop_Work",label:"Do You Expect To Be Out Of Work For At Least a Year Due To Your Health?"}),$=e=>l({name:e?e+":Disability_Work_History":"Disability_Work_History",label:"Have You Had a Full-Time Job Within the Past 5 Years?"}),S=e=>l({name:e?e+":Doctor_Treatment":"Doctor_Treatment",label:"Have You Recently Been Treated by a Doctor, Hospital or Clinic?"}),P=e=>s({name:e?e+":Estate_Legal_Services_Needed":"Estate_Legal_Services_Needed",label:"Legal Services Needed for Your Estate:",options:["Charitable Giving","Contested Wills","Drafting Wills or Trust","Estate Administration","Asset Protection","Other"]}),k=e=>l({name:e?e+":Have_Attorney":"Have_Attorney",label:"Already Working with An Attorney?"}),D=e=>l({name:e?e+":Have_Children":"Have_Children",label:"Do You Have Children?"}),A=e=>u({name:e?e+":Incident_Date":"Incident_Date",label:"Date of Incident:"}),T=e=>s({name:e?e+":Lawyer_Payment_Method":"Lawyer_Payment_Method",label:"How Will You Pay for Legal Fees if You Hire a Lawyer?",help:"No payment necessary to speak with lawyers.",options:["Cash","Check","Credit Card","Friend","Family","Other"]}),E=e=>s({name:e?e+":Marital_Status":"Marital_Status",label:"Marital Status:",options:["Unmarried, Living Together","Unmarried, Do Not Live Together","Married, Living Together","Separated","Divorced","Other"]}),O=e=>l({name:e?e+":Pending_Charges":"Pending_Charges",label:"Do you currently have any pending charges?"}),L=e=>{return(t={name:e?e+":Primary_Injury":"Primary_Injury",label:"Primary Injury:",options:["Anxiety","Back or Neck Pain","Broken Bones","Cuts and Bruises","Headaches","Memory Loss","Loss of Limb","Not Sure or Other"]}).legendClass="legend-left-flex md:t-max-w-[40%] required",t.fieldsetClass="$reset side-by-side-flex",t.optionsClass="md:t-ml-4 md:t-mt-2 t-grid t-grid-cols-1 md:t-grid-cols-2-125",t.innerClass="t-flex t-items-start",t.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",o(t);var t},W=e=>l({name:e?e+":Prior_Alcohol_Offenses":"Prior_Alcohol_Offenses",label:"Any Prior Alcohol Related Offenses?"}),j=e=>l({name:e?e+":Police_Report_Filed":"Police_Report_Filed",label:"Was a Police Report Filed?"}),F=e=>s({name:e?e+":Role_In_Matter_Probate":"Role_In_Matter_Probate",label:"What Is Your Role in this Matter?",options:["Preparing My Will","Executor","Heir","Other"]}),N=e=>l({name:e?e+":Social_Security_Disability_Receiving_Benefits":"Social_Security_Disability_Receiving_Benefits",label:"Are You Currently Receiving Social Security Disability Benefits?"}),M=e=>s({name:e?e+":Type_Of_Alcohol_Test":"Type_Of_Alcohol_Test",label:"Type of Alcohol Test Performed?",options:["No Test","Refused Test","Breath Test","Blood Test","Urine Test","Don't Know"]}),q=e=>n({name:e?e+":Type_Of_Assets":"Type_Of_Assets",label:"Type of Assets:",options:["Business Interests","Cash","Life Insurance Policies","Pensions/Retirement","Personal Possessions","Property","Stock/Bonds"]}),Y=e=>s({name:e?e+":Value_Of_Assets":"Value_Of_Assets",label:"Value of Your Assets?",options:["Less than 50K","50K to 100K","100K to 250K","250K to 500K","500K to 1M","More than 1M"]}),B=()=>{return(e={label:"Type of Help Needed:",name:"Type_Of_Legal_Problem",id:"Type_Of_Legal_Problem",options:["Wills and Trusts","Probate and Estates","Power of Attorney","Wrongful Death","Not Sure or Other"]}).legendClass="required",e.fieldsetClass="$reset",e.optionsClass="t-pl-2 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2",e.innerClass="t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",o(e);var e},U=(t,a)=>e({$cmp:"FormKit",props:{type:"group",key:t,id:t,name:t}},a),H=(e,t)=>U("PowerofAttorneyQuestions",{if:e||'$get(Type_Of_Legal_Problem).value == "Power of Attorney"',children:[k(t),w(t)]}),R=(e,t)=>U("WillsAndTrustsQuestions",{if:e||'$get(Type_Of_Legal_Problem).value == "Wills and Trusts"',children:[k(t),Y(t),q(t),F(t),P(t),w(t)]}),Q="$onEnter($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))",V="$onInput($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))",K=e=>"group"!==e.type&&"section"!==e.type&&"form"!==e.type&&"hidden"!==e.$formkit&&!e.children,z=e=>{if(K(e))return e;for(var t=e.children.length-1;t>=0;t--){if("string"==typeof e.children)continue;const a=e.children[t];if(K(a))return a;const i=z(a);if(i)return i}return null},Z={$el:"div",if:"$activeStep === $lastStep()",attrs:{class:"t-flex t-justify-center t-items-center t-text-sm t-text-gray-500"},children:[{$el:"img",attrs:{loading:"lazy",alt:"",style:{border:0},width:"25",height:"25",src:"https://d27hmee62k45vz.cloudfront.net/lock_icon_1.jpeg"}},{$el:"span",children:"Secure & Encrypted",attrs:{class:"t-pl-2 t-pt-1 t-font-medium"}}]};function G(t){return e(Z,t)}function J(e){return{$el:"h3",children:e.headline||"Tell Us About Your Situation",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1"}}}function X(e){return{$el:"h3",children:e.headline||"Tell Us About Your Situation",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1"}}}function ee(e){return{$el:"h5",children:e.subheadline||"Tell us about your situation:",attrs:{class:"t-flex t-justify-center t-text-dark t-text-center !t-text-lg t-font-semibold t-pb-4 t-pt-0 t-px-3"}}}function te(e){return{$el:"h3",children:e.headline||"Additional Case Details",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function ae(e){return{$el:"h3",children:e.headline||"Please Provide a Contact Name",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function ie(e){return{$el:"h3",children:e.headline||"Do any of the following situations apply?",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function re(e){return{$el:"h3",children:e.headline||a,attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-3 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function ne(e){return{$el:"h5",children:e.subheadline||i,attrs:{class:"t-flex t-justify-center t-text-center !t-text-lg t-font-semibold t-pb-7 t-pt-0 t-px-3 "+(e.subheadlineClass||"")}}}const oe="(function() {\n if (window.xxTrustedFormLoaded) {\n return\n }\n var vid = '';\n if (typeof window.zar !== 'undefined') {\n vid = window.zar.getVID();\n }\n window.xxTrustedFormLoaded = true;\n var sandbox = document.location.hostname.indexOf('localhost') > -1 ? 'true' : 'false'\n var tf = document.createElement('script');\n tf.type = 'text/javascript'; tf.async = true;\n tf.src = (\"https:\" == document.location.protocol ? 'https' : 'http') + \"://api.trustedform.com/trustedform.js?field=xxTrustedFormCertUrl&identifier=\" + vid + \"&ping_field=xxTrustedFormPingUrl&provideReferrer=false&invert_field_sensitivity=true&sandbox=\" + sandbox + \"&l=\" + new Date().getTime() + Math.random();\n var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(tf, s);\n})();";const le=(e,t)=>({$el:"section",if:'$stepEnabled("'+e+'")',attrs:{hidden:'$activeStep !== "'+e+'"',key:t||e}});function se(t,a,i=!0,r=!1,n=void 0,o=void 0,l=void 0){if(void 0===i&&(i=!0),a&&a.length&&(i||r)){const e=z(a[a.length-1]);e&&!0===i&&(e.onKeypress=Q),e&&!0===r&&(e.onInput=V)}return e(le(t,n),{children:[{$formkit:"group",id:t,name:t,nextStepMap:o,autoFocus:l,children:a}]})}const de={type:"form",id:"form",config:{validationVisibility:"submit"},onSubmit:'$submit($submitUrl, $prepData, $handleRedirect, "text/plain; charset=UTF-8")',plugins:"$plugins",actions:!1,anchorElement:"form-anchor",useLocalStorage:!0,prepop:{fromURL:!0},errorCodes:{403:{message:"An Error Occurred",abort:!1},409:{abort:!1},429:"An Error Occurred",504:{message:"An Error Occurred",abort:!1}},formClass:"!t-max-w-[40rem]"};function ue(e,t){return Object.fromEntries(Object.entries(e).filter((([e])=>t.includes(e))))}const ce={tcpaLanguage:"By checking this box, I a) agree to the Terms of Use, and b) consent to be contacted by lawyers, lawyer networks, and partners of this website using live, autodialed, pre-recorded, or artificial voice calls, as well as text messages. Your consent is not required as a condition of purchasing any goods or services. To submit this request without this consent, call 878-213-4937."};const pe={$el:"div",children:[{$el:"div",attrs:{id:"form-anchor",class:"t-absolute",style:{top:"-30px",left:0}}}],attrs:{class:"t-relative"}};const me=[{$formkit:"hidden",name:"vertical",value:"Legal"},{$formkit:"hidden",name:"TCPA_Language",value:"$meta.tcpaLanguage"},{$formkit:"hidden",name:"gclid",value:null},{$formkit:"hidden",name:"campaignid",value:null},{$formkit:"hidden",name:"s",value:null}],fe={"*":"https://listings.ziplawyer.com/api/v1/redirect?zone_id=4&vertical=Legal&category=${properties.Type_Of_Legal_Problem}&Degree_Of_Interest=${properties.Degree_Of_Interest}&zip_code=${properties.Zip}&sub_id=${properties.vid}"};const he={Adoption:'Example: "I need help with adoption forms"',"Asbestos and Mesothelioma":'Example: "I was exposed to asbestos at work and would like to file a claim"',"Auto and Car Accidents":'Example: "A truck crashed into my car on the highway" or "I\'ve been involved in a hit and run accident"',Bankruptcy:'Example: "I need help filing for bankruptcy"',"Birth Certificate and Name Change":'Example: "Just married and would like to change my last name"',"Business Lawyers":'Example: "I need help incorporating a business" or "I would like a legal contract reviewed"',"Child Custody and Support":'Example: "Need help getting custody" or "Issues with child support payments"',"Child Custody":'Example: "Need help getting custody"',"Child Support":'Example: "Issues with child support payments"',"Civil Rights and Discrimination":'Example: "Police brutality" or "Coworker keeps harassing me"',"Civil Lawsuit":'Example: "A contractor took my money and never completed the job" or "I am being sued by a neighbor"',"File a Lawsuit":'Example: "A contractor took my money and never completed the job"',"Defend a Lawsuit":'Example: "I am being sued by a neighbor"',"Consumer Lawyers":'Example: "Someone committed fraud against me" or "A contractor took my money and never completed the job"',"Copyrights and Trademarks":'Example: "I would like to register a trademark or copyright a name"',"Criminal and Felony":'Example: "I was arrested for DUI and need legal defense" or "I am being charged with assault"',"Debt and Collections":'Example: "I would like to consolidate my debt" or "A collection agency is harassing me"',"Divorce and Separation":'Example: "I would like to file for an uncontested divorce"',"DUI and DWI":'Example: "I was arrested for DUI and need legal defense"',"Elder Law":'Example: "I would like help with Estate Planning" or "I need help with a guardianship"',"Employment and Workplace":'Example: "I was injured while on the job" or "My company is discriminating against me"',Expungement:'Example: "I would like to file for an expungement and clear my record"',"Family Issues":'Example: "I need help with guardianship" or "I need a simple will created"',Foreclosure:'Example: "I need help to avoid foreclosure on my house"',Guardianship:'Example: "I need help with guardianship documents"',"Harassment and Discrimination":'Example: "I am being discriminated at work" or "My neighbor is harassing me"',"Sexual Harassment":'Example: "I am being sexually harassed by a coworker"',"Workplace Harassment":'Example: "My coworker is being aggressive towards me"',"Non-Workplace Harassment":'Example: "My neighbor is harassing me"',"Workplace Discrimination":'Example: "I am being discriminated at work based on my age"',"Non-Workplace Discrimination":'Example: "I am being discriminated against by a local official"',"Identity Theft":'Example: "Someone stole my identity and I need help fixing the issue"',"Immigration and Visas":'Example: "I need help filing for a visa" or "Help with a green card"',Insurance:'Example: "I need help filing an insurance claim for damage to my house"',"Landlord and Tenant":'Example: "I need help to fight an eviction" or "I would like a lawyer to review a rental contract"',"Lemon Law":'Example: "I purchased a new vehicle that broke down already and seller will not assist"',"Long Term Disability":'Example: "I was injured on the job and would like to file for benefits" or "I need help filing for disability benefits"',"Medical Malpractice":'Example: "A doctor performed surgery on the wrong limb and I would like to file a lawsuit"',"Patents and Intellectual Property":'Example: "I would like to file for a patent" or "I need to copyright a name"',"Personal Injury":'Example: "I was bit by the neighbor\'s dog" or "I fell in the icy grocery store parking lot"',"Power of Attorney":'Example: "I need help with a limited or general power of attorney"',"Probate and Estates":'Example: "I need help with planning for my estate" or "A family member passed without a will in place"',"Product Liability":'Example: "My car battery caught on fire" or "I purchased a faulty product"',"Property Damage":'Example: "The neighbor\'s tree fell on my fence" or "My car was hit in the parking lot"',"Real Estate":'Example: "I need help with a quitclaim deed" or "I need a lawyer to review a purchase and sales agreement"',"Social Security Disability and Insurance":'Example: "I would like help filing for disability benefits" or "I\'ve been denied for SSDI and would like to appeal"',"Tax and IRS":'Example: "I need help fighting an IRS tax claim" or "I need audit defense"',"Traffic and Tickets":'Example: "I need help reinstating a supsended license" or "I would like to fight a traffic ticket"',Unemployment:'Example: "I need help filing for unemployment benefits"',"Victim of a Crime":'Example: "I was assaulted in the store" or "I am being discriminated against at work"',"Wills and Trusts":'Example: "I need a simple will created" or "I would like guidance on creating a trust fund"',"Workers Compensation":'Example: "I was injured at work and would like to file for workers compensation benefits"',"Wrongful Death":'Example: "A family member was killed on the job and we need legal representation"',"Wrongful Termination":'Example: "I was fired by my employer without cause"',"Not Sure or Other":'Example: "I was involved in a car accident" or "I need help setting up power of attorney"'},ye={},ge={Adoption:"You may benefit from speaking with an adoption professional. Please verify your contact information.","Auto and Car Accidents":"You may benefit from speaking with an accident professional. Please verify your contact information.",Bankruptcy:"You may benefit from speaking with a bankruptcy professional. Please verify your contact information.","Copyrights and Trademarks":"You may benefit from speaking with a copyright and trademark professional. Please verify your contact information.","Divorce and Separation":"You may benefit from speaking with a divorce professional. Please verify your contact information.","DUI and DWI":"You may benefit from speaking with a DUI professional. Please verify your contact information.","Elder Law":"You may benefit from speaking with an elder law professional. Please verify your contact information.",Foreclosure:"You may benefit from speaking with a foreclosure professional. Please verify your contact information.",Guardianship:"You may benefit from speaking with a guardianship professional. Please verify your contact information.","Immigration and Visas":"You may benefit from speaking with a immigration professional. Please verify your contact information.","Landlord and Tenant":"You may benefit from speaking with a landlord and tenant legal professional. Please verify your contact information.","Long Term Disability":"You may benefit from speaking with a disability legal professional. Please verify your contact information.","Medical Malpractice":"You may benefit from speaking with a malpractice professional. Please verify your contact information.","Patents and Intellectual Property":"You may benefit from speaking with a patent professional. Please verify your contact information.","Personal Injury":"You may benefit from speaking with a personal injury professional. Please verify your contact information.","Probate and Estates":"You may benefit from speaking with a probate and estate professional. Please verify your contact information.","Real Estate":"You may benefit from speaking with a real estate professional. Please verify your contact information.","Social Security Disability and Insurance":"You may benefit from speaking with an SSDI professional. Please verify your contact information.","Tax and IRS":"You may benefit from speaking with a tax professional. Please verify your contact information.",Unemployment:"You may benefit from speaking with an unemployment professional. Please verify your contact information.","Workers Compensation":"You may benefit from speaking with a workers compensation professional. Please verify your contact information."},be=function(a=null){let i=he,r=ye,n=ge;return a&&(i=ue(he,a),r=ue(ye,a),n=ue(ge,a)),{type:"meta",data:e(ce,{defaultCommentsPlaceholder:t,commentsPlaceholders:i,defaultFinalHeadline:"Submit Your Case",finalHeadlines:r,defaultFinalSubHeadline:"You may benefit from speaking with a legal professional. Please verify your contact information.",finalSubHeadlines:n})}}();be.data.dynamicSchema=[function(e={}){return se("TOLPQuestions",[J(e),R(),U("ProbateAndEstatesQuestions",{if:'$get(Type_Of_Legal_Problem).value == "Probate and Estates"',children:[k(),Y(),q(),F(),P(),w()]}),H(),U("WrongfulDeathQuestions",{if:'$get(Type_Of_Legal_Problem).value == "Wrongful Death"',children:[k(),A(),s({label:"Relationship to the Victim:",name:"Relationship_To_Victim",options:["Parent","Spouse","Sibling","Friend","Other"]}),v(),s({label:"What was the Cause of the Victim's Death?",name:"Cause_Of_Death",options:["Vehicle Accident","Negligent/Careless Act","Reckless Act","Other"]})]}),U("FamilyIssuesQuestions",{if:'$get(Type_Of_Legal_Problem).value == "Family Issues"',children:[k(),E(),D(),x(),T()]}),U("NotSureOrOtherQuestions",{if:'$get(Type_Of_Legal_Problem).value == "Not Sure or Other"',children:[k(),w()]})],e.nextOnEnter)}(),function(e={}){return se("commentsWithBankruptcy",[te(e),C({label:void 0===e.label?"Please briefly describe your legal issue in a few words:":e.label,placeholder:e.placeholder||t,inputClass:void 0===e.inputClass?"!t-h-32":e.inputClass}),m(),{$el:"div",if:"$get(CrossSell_Bankruptcy).value == true",children:[C({label:"Bankruptcy or debt details:",placeholder:"Please describe your bankrtupcy or debt situation in a few words...",inputClass:"!t-h-16"},"CrossSell:Bankruptcy")]}],!1)}(),function(e={}){return se("legalCrossSells",[ie(e),n({id:"Legal_CrossSells",name:"Legal_CrossSells",help:'Just hit "Next" if none apply',helpClass:"t-text-center !t-text-sm",validation:null,options:{if:'$getVal($get(form), "Type_Of_Legal_Problem") === "Auto and Car Accidents"',then:{"Social Security Disability and Insurance":"Interest in Disability Benefits","Wills and Trusts":"Need a Will or Trust","Workers Compensation":"Workplace Injury","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},else:{if:'$getVal($get(form), "Type_Of_Legal_Problem") === "Personal Injury" || $getVal($get(form), "Type_Of_Legal_Problem") === "Workers Compensation"',then:{"DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},else:{if:'$getVal($get(form), "Type_Of_Legal_Problem") === "DUI and DWI"',then:{"Personal Injury":"Personal or Workplace Injury","Wills and Trusts":"Need a Will or Trust","Social Security Disability and Insurance":"Interest in Disability Benefits","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},else:{if:'$getVal($get(form), "Type_Of_Legal_Problem") === "Wills and Trusts" || $getVal($get(form), "Type_Of_Legal_Problem") === "Probate and Estates" || $getVal($get(form), "Type_Of_Legal_Problem") === "Power of Attorney"',then:{"Auto and Car Accidents":"Injured in a Car Accident","Personal Injury":"Personal or Workplace Injury","DUI and DWI":"Involved in a DUI/DWI","Social Security Disability and Insurance":"Interest in Disability Benefits","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},else:{if:'$getVal($get(form), "Type_Of_Legal_Problem") === "Long Term Disability" || $getVal($get(form), "Type_Of_Legal_Problem") === "Social Security Disability and Insurance"',then:{"Auto and Car Accidents":"Injured in a Car Accident","DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},else:{"Auto and Car Accidents":"Injured in a Car Accident","Personal Injury":"Personal or Workplace Injury","DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Social Security Disability and Insurance":"Interest in Disability Benefits"}}}}}}})],e.nextOnEnter,!1,"$get(Type_Of_Legal_Problem).value")}(),function(e={}){return se("autoAndCarAccidentCrossSellQuestions",[X({headline:"You May Be Entitled To Compensation"}),ee({subheadline:"Tell us about your accident:"}),(t="true",a="CrossSell:Auto_and_Car_Accidents",U("AutoAndCarAccidentsQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Auto and Car Accidents"',children:[k(a),A(a),p(a),L(a),S(a),j(a)]})),C({label:"Accident Description:",placeholder:"Please describe your accident in a few words...",inputClass:"!t-h-16"},"CrossSell:Auto_and_Car_Accidents")],e.nextOnEnter);var t,a}(),function(e={}){return se("personalInjuryCrossSellQuestions",[X({headline:"You May Be Entitled To Compensation"}),ee({subheadline:"Tell us about your injury:"}),(t="true",a="CrossSell:Personal_Injury",U("PersonalInjuryQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Personal Injury"',children:[k(a),A(a),_(a),p(a),L(a),S(a)]})),C({label:"Injury Description:",placeholder:"Please describe your injury in a few words...",inputClass:"!t-h-16"},"CrossSell:Personal_Injury")],e.nextOnEnter);var t,a}(),function(e={}){return se("workersCompensationCrossSellQuestions",[X({headline:"You May Be Entitled To Benefits"}),ee({subheadline:"Tell us about your injury:"}),(t="true",a="CrossSell:Workers_Compensation",U("WorkersCompensationQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Workers Compensation"',children:[k(a),A(a),_(a),L(a),h(a),S(a)]})),C({label:"Injury Description:",placeholder:"Please describe your injury in a few words...",inputClass:"!t-h-16"},"CrossSell:Workers_Compensation")],e.nextOnEnter);var t,a}(),function(e={}){return se("duiAndDWICrossSellQuestions",[X({headline:"About Your DUI/DWI"}),(t="true",a="CrossSell:DUI_and_DWI",U("DUIAndDWIQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "DUI and DWI"',children:[k(a),A(a),W(a),M(a),f(a),O(a),w(a)]})),C({label:"Incident Description:",placeholder:"Please describe your incident in a few words...",inputClass:"!t-h-16"},"CrossSell:DUI_and_DWI")],e.nextOnEnter);var t,a}(),function(e={}){return se("ssdiCrossSellQuestions",[X({headline:"You May Be Entitled To Benefits"}),ee({subheadline:"Tell us about your disability:"}),(t="true",a="CrossSell:Social_Security_Disability_and_Insurance",U("SocialSecurityDisabilityAndInsuranceQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Social Security Disability and Insurance"',children:[k(a),c(a),I(a),$(a),N(a),S(a)]})),C({label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"},"CrossSell:Social_Security_Disability_and_Insurance")],e.nextOnEnter);var t,a}(),function(e={}){return se("powerOfAttorneyCrossSellQuestions",[X({headline:"Power of Attorney Information"}),H("true","CrossSell:Power_of_Attorney"),C({label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"},"CrossSell:Power_of_Attorney")],e.nextOnEnter)}(),function(e={}){return se("willsAndTrustsCrossSellQuestions",[X({headline:"Will or Trust Information"}),R("true","CrossSell:Wills_and_Trusts"),C({label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"},"CrossSell:Wills_and_Trusts")],e.nextOnEnter)}(),function(e={}){return se("divorceAndSeparationCrossSellQuestions",[X({headline:"Divorce or Separation Information"}),(t="true",a="CrossSell:Divorce_and_Separation",U("DivorceQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Divorce and Separation"',children:[k(a),E(a),D(a),x(a),T(a)]})),C({label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"},"CrossSell:Divorce_and_Separation")],e.nextOnEnter);var t,a}(),function(e={}){return se("childCustodyCrossSellQuestions",[X({headline:"Child Custody Information"}),(t="true",a="CrossSell:Child_Custody",U("ChildCustodyQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Child Custody"',children:[k(a),b(a),y(a),g(a),x(a),T(a)]})),C({label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"},"CrossSell:Child_Custody")],e.nextOnEnter);var t,a}(),function(e={}){return se("firstAndLast",[ae(e),d({$formkit:"text",label:"First Name:",placeholder:"First",name:"First_Name",autocomplete:"given-name",validationMessages:{required:"First Name is required"}}),d({$formkit:"text",label:"Last Name:",placeholder:"Last",name:"Last_Name",autocomplete:"family-name",validationMessages:{required:"Last Name is required"}})],e.nextOnEnter)}()];const _e=[be,e(pe,Ce),{$cmp:"FormKit",props:function(t){const a=e(de,t);return a.formId&&!a.name&&(a.name=a.formId),a}({formId:"willsAndTrusts",redirectMap:function(t){return e(fe,t)}()}),children:[function(t={}){return e(function(e={}){return{$el:"h1",attrs:{class:"t-flex t-justify-center t-text-center !t-text-[2rem] t-font-semibold t-pt-5 t-px-7 md:t-px-3 "+(e.headlineClass||"")}}}(t),t)}({children:'$urlParam("hl", "Start Here For a Free Consultation")',if:"$activeStep === $firstStep()"}),function(t={}){return e(function(e={}){return{$el:"h3",attrs:{class:"t-flex t-justify-center t-text-center !t-text-[1.2rem] t-font-medium t-text-blue-500 t-px-10 "+(e.subheadlineClass||"")}}}(t),t)}({children:'$urlParam("shl", "Our Service is Fast and Free!")',if:"$activeStep === $firstStep()"}),...me,{$el:"div",attrs:{class:"form-body"},children:[function(e={}){return se("willsAndTrustsTOLPAndZip",[B(),d({label:"Zip Code:",placeholder:"#####",name:"Zip",maxlength:5,inputmode:"numeric",autocomplete:"postal-code",validation:"required|matches:/^[0-9]{5}$/",validationMessages:{required:"Zip Code is required",matches:"Invalid Zip Code"}})],e.nextOnEnter,e.nextOnInput,e.stepKey,e.nextStepMap)}({nextStepMap:{"*":["TOLPQuestions","commentsWithBankruptcy","legalCrossSells","firstAndLast","contactInfo"]}}),{$cmp:"FormKitSchema",if:"$get(Type_Of_Legal_Problem).value",props:{schema:"$meta.dynamicSchema",data:"$buildData($meta)"}},function(e={}){return se("contactInfo",[re(e),ne(e),{$el:"script",if:"$activeStep === $lastStep()",children:oe},d({$formkit:"email",name:"Email",label:"Email Address:",placeholder:"email@domain.com",autocomplete:"email","data-tf-sensitive":"false",validation:"required|email",validationMessages:{required:"Email is required",email:"Invalid Email"}}),d({$formkit:"tel",name:"Primary_Phone",label:"Phone Number:",placeholder:"###-###-####",maxlength:12,help:"10-digit phone number, hyphens optional",autocomplete:"tel-national","data-tf-sensitive":"false",validation:"required|matches:/^[0-9]{3}-?[0-9]{3}-?[0-9]{4}$/|valid_phone",validationMessages:{required:"Field is required",matches:"Invalid Phone Format, use ###-###-####",valid_phone:"Invalid Phone Number"},helpClass:"t-mt-2.5 md:t-text-right md:t-mt-[-2px]"}),{$formkit:"checkbox",label:"$meta.tcpaLanguage",name:"TCPA_Opt_In","data-tf-sensitive":"false",validation:"required|accepted",validationMessages:{required:"Consent is required",accepted:"Consent is required"},classes:{label:"t-text-xs t-text-slate-500 t-font-normal"}},G()],!1)}(),{$el:"div",attrs:{class:"step-nav"},children:[{$formkit:"button",name:"back_button",onClick:"$setPreviousStep($prevStepFunc($get(form)))",children:"Back",style:{if:"$activeStep === $firstStep()",then:"visibility: hidden;"}},{$formkit:"button",name:"next_button",onClick:"$setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form)))",children:{if:"$activeStep === $firstStep()",then:"Start",else:"Next"},outerClass:{if:"$activeStep === $lastStep()",then:"t-hidden",else:""},style:{if:"$activeStep === $lastStep()",then:"display: none;"}},{$formkit:"submit",name:"submit_button",label:"Submit",if:"$activeStep === $lastStep()",style:{if:"$activeStep !== $lastStep()",then:"display: none;"}}]},{$el:"pre",if:'$urlParam("fdbg", "") == 1',children:[{$el:"pre",children:"$stringify( $get(form).value )",attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["activeStep: ","$activeStep"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["stepHistory: ","$stepHistory"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["stepQueue: ","$stepQueue"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["steps: ","$stepKeys()"],attrs:{class:"t-text-xs",style:"overflow: scroll"}}]}]}]}];var Ce;return _e}();
|
|
1
|
+
var willsAndTrusts=function(){"use strict";function e(){return Object.assign({},...arguments)}const t='$getKey($meta, "commentsPlaceholders." + $get(Type_Of_Legal_Problem).value, $meta.defaultCommentsPlaceholder)',a='$getKey($meta, "finalHeadlines." + $get(Type_Of_Legal_Problem).value, $meta.defaultFinalHeadline)',i='$getKey($meta, "finalSubHeadlines." + $get(Type_Of_Legal_Problem).value, $meta.defaultFinalSubHeadline)',r=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"checkbox",validation:"required",validationMessages:{required:"Field is required"}},t)),n=e=>(e&&e.legendClass||(e.legendClass="required"),e.fieldsetClass="$reset",e.optionsClass="t-pl-8 md:t-pl-2 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2",e.innerClass="t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",r(e)),o=t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"radio",validation:"required",validationMessages:{required:"Field is required"},optionsClass:"t-pt-3 t-pl-1",legendClass:"required"},t)),l=e=>(e.options=["Yes","No"],(e=>(e.legendClass="legend-left t-pb-1 required",e.fieldsetClass="$reset side-by-side t-items-center",e.optionsClass="t-mt-1 t-grid t-grid-cols-1 md:t-grid-cols-2-125 t-items-center",e.innerClass="t-flex t-items-center",e.optionClass="t-pr-1",o(e)))(e)),s=t=>(t.labelClass="required",t.wrapperClass="side-by-side t-items-center",t.innerClass="select-height-content",t.helpClass="t-mt-2.5 md:t-text-right md:t-mt-[-5px]",(t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"select",placeholder:"Please Select",validation:"required",validationMessages:{required:"Field is required"},inputClass:"t-bg-white",labelClass:"required"},t)))(t)),d=t=>(t.wrapperClass="side-by-side t-items-center",(t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"text",validation:"required",validationMessages:{required:"Field is required"},labelClass:"required"},t)))(t)),u=t=>(t.wrapperClass="side-by-side t-items-center",(t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"DatePicker",validation:"required",validationMessages:{required:"Field is required"},labelClass:"required t-block t-mb-3 t-font-semibold t-text-base formkit-invalid:t-text-red-500",innerClass:"t-border t-border-gray-400 formkit-invalid:t-border-red-500 t-rounded t-mb-1 focus-within:t-border-blue-500"},t)))(t)),c=e=>d({name:e?e+":Applicant_Age":"Applicant_Age",label:"Age of Applicant?",placeholder:"Age between 18 and 65",maxlength:2,inputmode:"numeric",validation:"required|min:18,max:65",validationMessages:{required:"Applicant Age is required",min:"Invalid Age - must be between 18 and 65",max:"Invalid Age - must be between 18 and 65"}}),p=e=>l({name:e?e+":At_Fault":"At_Fault",label:"Were You at Fault?"}),m=()=>{return(e={label:"I'd also like a consult for bankruptcy or debt elimination (optional)",help:"Note: you will be contacted separately by a bankruptcy/debt expert",name:"CrossSell_Bankruptcy",id:"CrossSell_Bankruptcy",if:'$getVal($get(form), "Type_Of_Legal_Problem") != "Bankruptcy" && ($getVal($get(form), "Degree_Of_Interest") == "Absolutely Can\'t Afford" || $getVal($get(form), "Degree_Of_Interest") == "Maybe" || $getVal($get(form), "Degree_Of_Interest") == "Probably")',validation:null,helpClass:"!t-text-sm"}).legendClass="legend-left required",e.fieldsetClass="$reset side-by-side",e.optionsClass="t-pl-1",e.innerClass="t-flex t-items-center",e.wrapperClass="t-mb-3",r(e);var e},f=e=>s({name:e?e+":Blood_Alcohol_Content_Test":"Blood_Alcohol_Content_Test",label:"Blood Alcohol Content Measured by Test:",options:["No Test","0.00% - 0.04%","0.05% - 0.08%","0.09% - 0.12%","0.13% - 0.16%","0.17% - 0.20%","More than 0.20%","Don't know"]}),h=e=>s({name:e?e+":Cause_Of_Injury":"Cause_Of_Injury",label:"Cause of Injury:",options:["Traumatic Physical Injury (Accident)","Repeated Trauma Injury","Mental Injury","Occupational Disease","Not Sure"]}),y=e=>s({name:e?e+":Child_Home":"Child_Home",label:"With Whom Do the Children Currently Live?",options:["Mother","Father","Grandparents","Other"]}),b=e=>s({name:e?e+":Child_Primary_Caregiver":"Child_Primary_Caregiver",label:"Who is the Primary Caregiver?",options:["Mother","Father","Other"]}),g=e=>s({name:e?e+":Child_Relationship":"Child_Relationship",label:"Your Relationship to Child(ren):",options:["Father","Mother","Grandparent","Aunt/Uncle","Other"]}),_=e=>s({name:e?e+":Claim_Status":"Claim_Status",label:"Status of Claim:",options:["No action taken yet","Demand for compensation made","Lawsuit filed","Other"]}),C=(t,a)=>(t=>(t.name&&!t.id&&(t.id=t.name),e({$formkit:"textarea",rows:5,maxlength:500,validation:"required",validationMessages:{required:"Field is required"},innerClass:"t-max-w-xl",labelClass:"required"},t)))(e({name:a?a+":Comments":"Comments",label:"Please briefly describe your situation in a few words:",placeholder:'For Example: "I would like help with child support payments" or "I need help with visitation rights"'},t)),v=()=>{return(e={name:"Criminal_Charges_Filed",label:"Were Criminal Charges Filed?",options:["Yes","No","Not Sure"]}).legendClass="legend-left required",e.fieldsetClass="$reset side-by-side",e.optionsClass="t-pl-1",e.innerClass="t-flex t-items-center",e.wrapperClass="t-mb-3",o(e);var e},x=(e,t)=>s({name:e?e+":Degree_Of_Interest":"Degree_Of_Interest",id:e?e+":Degree_Of_Interest":"Degree_Of_Interest",label:"How Likely Are You to Pay if Your Issue Could be Resolved?",help:t,options:["Definitely","Probably","Maybe","Absolutely Can't Afford"]}),w=e=>x(e,"No payment necessary to speak with lawyers."),I=e=>l({name:e?e+":Disability_Condition_Stop_Work":"Disability_Condition_Stop_Work",label:"Do You Expect To Be Out Of Work For At Least a Year Due To Your Health?"}),$=e=>l({name:e?e+":Disability_Work_History":"Disability_Work_History",label:"Have You Had a Full-Time Job Within the Past 5 Years?"}),P=e=>l({name:e?e+":Doctor_Treatment":"Doctor_Treatment",label:"Have You Recently Been Treated by a Doctor, Hospital or Clinic?"}),S=e=>s({name:e?e+":Estate_Legal_Services_Needed":"Estate_Legal_Services_Needed",label:"Legal Services Needed for Your Estate:",options:["Charitable Giving","Contested Wills","Drafting Wills or Trust","Estate Administration","Asset Protection","Other"]}),k=e=>l({name:e?e+":Have_Attorney":"Have_Attorney",label:"Already Working with An Attorney?"}),D=e=>l({name:e?e+":Have_Children":"Have_Children",label:"Do You Have Children?"}),A=e=>u({name:e?e+":Incident_Date":"Incident_Date",label:"Date of Incident:"}),T=e=>d({$formkit:"text",label:"Last Name:",placeholder:"Last",name:e?e+":Last_Name":"Last_Name",autocomplete:"family-name",validationMessages:{required:"Last Name is required"}}),E=e=>s({name:e?e+":Lawyer_Payment_Method":"Lawyer_Payment_Method",label:"How Will You Pay for Legal Fees if You Hire a Lawyer?",help:"No payment necessary to speak with lawyers.",options:["Cash","Check","Credit Card","Friend","Family","Other"]}),O=e=>s({name:e?e+":Marital_Status":"Marital_Status",label:"Marital Status:",options:["Unmarried, Living Together","Unmarried, Do Not Live Together","Married, Living Together","Separated","Divorced","Other"]}),L=e=>l({name:e?e+":Pending_Charges":"Pending_Charges",label:"Do you currently have any pending charges?"}),W=e=>d({$formkit:"tel",name:e?e+":Primary_Phone":"Primary_Phone",label:"Phone Number:",placeholder:"###-###-####",maxlength:12,help:"10-digit phone number, hyphens optional",autocomplete:"tel-national","data-tf-sensitive":"false",validation:"required|matches:/^[0-9]{3}-?[0-9]{3}-?[0-9]{4}$/|valid_phone",validationMessages:{required:"Field is required",matches:"Invalid Phone Format, use ###-###-####",valid_phone:"Invalid Phone Number"},helpClass:"t-mt-2.5 md:t-text-right md:t-mt-[-2px]"}),j=e=>{return(t={name:e?e+":Primary_Injury":"Primary_Injury",label:"Primary Injury:",options:["Anxiety","Back or Neck Pain","Broken Bones","Cuts and Bruises","Headaches","Memory Loss","Loss of Limb","Not Sure or Other"]}).legendClass="legend-left-flex md:t-max-w-[40%] required",t.fieldsetClass="$reset side-by-side-flex",t.optionsClass="md:t-ml-4 md:t-mt-2 t-grid t-grid-cols-1 md:t-grid-cols-2-125",t.innerClass="t-flex t-items-start",t.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",o(t);var t},N=e=>l({name:e?e+":Prior_Alcohol_Offenses":"Prior_Alcohol_Offenses",label:"Any Prior Alcohol Related Offenses?"}),F=e=>l({name:e?e+":Police_Report_Filed":"Police_Report_Filed",label:"Was a Police Report Filed?"}),M=e=>s({name:e?e+":Role_In_Matter_Probate":"Role_In_Matter_Probate",label:"What Is Your Role in this Matter?",options:["Preparing My Will","Executor","Heir","Other"]}),q=e=>l({name:e?e+":Social_Security_Disability_Receiving_Benefits":"Social_Security_Disability_Receiving_Benefits",label:"Are You Currently Receiving Social Security Disability Benefits?"}),Y=e=>({$formkit:"checkbox",label:"$meta.tcpaLanguage",name:e?e+":TCPA_Opt_In":"TCPA_Opt_In","data-tf-sensitive":"false",validation:"required|accepted",validationMessages:{required:"Consent is required",accepted:"Consent is required"},classes:{label:"t-text-xs t-text-slate-500 t-font-normal"}}),B=e=>s({name:e?e+":Type_Of_Alcohol_Test":"Type_Of_Alcohol_Test",label:"Type of Alcohol Test Performed?",options:["No Test","Refused Test","Breath Test","Blood Test","Urine Test","Don't Know"]}),U=e=>n({name:e?e+":Type_Of_Assets":"Type_Of_Assets",label:"Type of Assets:",options:["Business Interests","Cash","Life Insurance Policies","Pensions/Retirement","Personal Possessions","Property","Stock/Bonds"]}),H=e=>s({name:e?e+":Value_Of_Assets":"Value_Of_Assets",label:"Value of Your Assets?",options:["Less than 50K","50K to 100K","100K to 250K","250K to 500K","500K to 1M","More than 1M"]}),R=()=>{return(e={label:"Type of Help Needed:",name:"Type_Of_Legal_Problem",id:"Type_Of_Legal_Problem",options:["Wills and Trusts","Probate and Estates","Power of Attorney","Wrongful Death","Not Sure or Other"]}).legendClass="required",e.fieldsetClass="$reset",e.optionsClass="t-pl-2 t-pt-3 t-grid t-grid-cols-1 md:t-grid-cols-2",e.innerClass="t-items-start",e.wrapperClass="$reset t-flex t-cursor-pointer t-mb-3",o(e);var e},Q=(t,a)=>e({$cmp:"FormKit",props:{type:"group",key:t,id:t,name:t}},a),V=(e,t)=>Q("PowerofAttorneyQuestions",{if:e||'$get(Type_Of_Legal_Problem).value == "Power of Attorney"',children:[k(t),w(t)]}),K=(e,t)=>Q("WillsAndTrustsQuestions",{if:e||'$get(Type_Of_Legal_Problem).value == "Wills and Trusts"',children:[k(t),H(t),U(t),M(t),S(t),w(t)]}),z="$onEnter($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))",Z="$onInput($setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form))))",G=e=>"group"!==e.type&&"section"!==e.type&&"form"!==e.type&&"hidden"!==e.$formkit&&!e.children,J=e=>{if(G(e))return e;for(var t=e.children.length-1;t>=0;t--){if("string"==typeof e.children)continue;const a=e.children[t];if(G(a))return a;const i=J(a);if(i)return i}return null},X={$el:"div",if:"$activeStep === $lastStep()",attrs:{class:"t-flex t-justify-center t-items-center t-text-sm t-text-gray-500"},children:[{$el:"img",attrs:{loading:"lazy",alt:"",style:{border:0},width:"25",height:"25",src:"https://d27hmee62k45vz.cloudfront.net/lock_icon_1.jpeg"}},{$el:"span",children:"Secure & Encrypted",attrs:{class:"t-pl-2 t-pt-1 t-font-medium"}}]};function ee(t){return e(X,t)}function te(e){return{$el:"h3",children:e.headline||"Tell Us About Your Situation",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1"}}}function ae(e){return{$el:"h3",children:e.headline||"Tell Us About Your Situation",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1"}}}function ie(e){return{$el:"h5",children:e.subheadline||"Tell us about your situation:",attrs:{class:"t-flex t-justify-center t-text-dark t-text-center !t-text-lg t-font-semibold t-pb-4 t-pt-0 t-px-3"}}}function re(e){return{$el:"h3",children:e.headline||"Additional Case Details",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function ne(e){return{$el:"h3",children:e.headline||"Please Provide a Contact Name",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function oe(e){return{$el:"h3",children:e.headline||"Do any of the following situations apply?",attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-5 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function le(e){return{$el:"h3",children:e.headline||a,attrs:{class:"t-flex t-justify-center t-text-center t-text-2xl t-font-bold t-text-blue-500 t-pb-3 t-pt-0 t-px-1 "+(e.headlineClass||"")}}}function se(e){return{$el:"h5",children:e.subheadline||i,attrs:{class:"t-flex t-justify-center t-text-center !t-text-lg t-font-semibold t-pb-7 t-pt-0 t-px-3 "+(e.subheadlineClass||"")}}}const de="(function() {\n if (window.xxTrustedFormLoaded) {\n return\n }\n var vid = '';\n if (typeof window.zar !== 'undefined') {\n vid = window.zar.getVID();\n }\n window.xxTrustedFormLoaded = true;\n var sandbox = document.location.hostname.indexOf('localhost') > -1 ? 'true' : 'false'\n var tf = document.createElement('script');\n tf.type = 'text/javascript'; tf.async = true;\n tf.src = (\"https:\" == document.location.protocol ? 'https' : 'http') + \"://api.trustedform.com/trustedform.js?field=xxTrustedFormCertUrl&identifier=\" + vid + \"&ping_field=xxTrustedFormPingUrl&provideReferrer=false&invert_field_sensitivity=true&sandbox=\" + sandbox + \"&l=\" + new Date().getTime() + Math.random();\n var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(tf, s);\n})();";const ue=(e,t)=>({$el:"section",if:'$stepEnabled("'+e+'")',attrs:{hidden:'$activeStep !== "'+e+'"',key:t||e}});function ce(t,a,i=!0,r=!1,n=void 0,o=void 0,l=void 0){if(void 0===i&&(i=!0),a&&a.length&&(i||r)){const e=J(a[a.length-1]);e&&!0===i&&(e.onKeypress=z),e&&!0===r&&(e.onInput=Z)}return e(ue(t,n),{children:[{$formkit:"group",id:t,name:t,nextStepMap:o,autoFocus:l,children:a}]})}const pe={type:"form",id:"form",config:{validationVisibility:"submit"},onSubmit:'$submit($submitUrl, $prepData, $handleRedirect, "text/plain; charset=UTF-8")',plugins:"$plugins",actions:!1,anchorElement:"form-anchor",useLocalStorage:!0,prepop:{fromURL:!0},errorCodes:{403:{message:"An Error Occurred",abort:!1},409:{abort:!1},429:"An Error Occurred",504:{message:"An Error Occurred",abort:!1}},formClass:"!t-max-w-[40rem]"};function me(e,t){return Object.fromEntries(Object.entries(e).filter((([e])=>t.includes(e))))}const fe={tcpaLanguage:"By checking this box, I a) agree to the Terms of Use, and b) consent to be contacted by lawyers, lawyer networks, and partners of this website using live, autodialed, pre-recorded, or artificial voice calls, as well as text messages. Your consent is not required as a condition of purchasing any goods or services. To submit this request without this consent, call 878-213-4937."};const he={$el:"div",children:[{$el:"div",attrs:{id:"form-anchor",class:"t-absolute",style:{top:"-30px",left:0}}}],attrs:{class:"t-relative"}};const ye=[{$formkit:"hidden",name:"vertical",value:"Legal"},{$formkit:"hidden",name:"TCPA_Language",value:"$meta.tcpaLanguage"},{$formkit:"hidden",name:"gclid",value:null},{$formkit:"hidden",name:"campaignid",value:null},{$formkit:"hidden",name:"s",value:null}],be={"*":"https://listings.ziplawyer.com/api/v1/redirect?zone_id=4&vertical=Legal&category=${properties.Type_Of_Legal_Problem}&Degree_Of_Interest=${properties.Degree_Of_Interest}&zip_code=${properties.Zip}&sub_id=${properties.vid}"};const ge={Adoption:'Example: "I need help with adoption forms"',"Asbestos and Mesothelioma":'Example: "I was exposed to asbestos at work and would like to file a claim"',"Auto and Car Accidents":'Example: "A truck crashed into my car on the highway" or "I\'ve been involved in a hit and run accident"',Bankruptcy:'Example: "I need help filing for bankruptcy"',"Birth Certificate and Name Change":'Example: "Just married and would like to change my last name"',"Business Lawyers":'Example: "I need help incorporating a business" or "I would like a legal contract reviewed"',"Child Custody and Support":'Example: "Need help getting custody" or "Issues with child support payments"',"Child Custody":'Example: "Need help getting custody"',"Child Support":'Example: "Issues with child support payments"',"Civil Rights and Discrimination":'Example: "Police brutality" or "Coworker keeps harassing me"',"Civil Lawsuit":'Example: "A contractor took my money and never completed the job" or "I am being sued by a neighbor"',"File a Lawsuit":'Example: "A contractor took my money and never completed the job"',"Defend a Lawsuit":'Example: "I am being sued by a neighbor"',"Consumer Lawyers":'Example: "Someone committed fraud against me" or "A contractor took my money and never completed the job"',"Copyrights and Trademarks":'Example: "I would like to register a trademark or copyright a name"',"Criminal and Felony":'Example: "I was arrested for DUI and need legal defense" or "I am being charged with assault"',"Debt and Collections":'Example: "I would like to consolidate my debt" or "A collection agency is harassing me"',"Divorce and Separation":'Example: "I would like to file for an uncontested divorce"',"DUI and DWI":'Example: "I was arrested for DUI and need legal defense"',"Elder Law":'Example: "I would like help with Estate Planning" or "I need help with a guardianship"',"Employment and Workplace":'Example: "I was injured while on the job" or "My company is discriminating against me"',Expungement:'Example: "I would like to file for an expungement and clear my record"',"Family Issues":'Example: "I need help with guardianship" or "I need a simple will created"',Foreclosure:'Example: "I need help to avoid foreclosure on my house"',Guardianship:'Example: "I need help with guardianship documents"',"Harassment and Discrimination":'Example: "I am being discriminated at work" or "My neighbor is harassing me"',"Sexual Harassment":'Example: "I am being sexually harassed by a coworker"',"Workplace Harassment":'Example: "My coworker is being aggressive towards me"',"Non-Workplace Harassment":'Example: "My neighbor is harassing me"',"Workplace Discrimination":'Example: "I am being discriminated at work based on my age"',"Non-Workplace Discrimination":'Example: "I am being discriminated against by a local official"',"Identity Theft":'Example: "Someone stole my identity and I need help fixing the issue"',"Immigration and Visas":'Example: "I need help filing for a visa" or "Help with a green card"',Insurance:'Example: "I need help filing an insurance claim for damage to my house"',"Landlord and Tenant":'Example: "I need help to fight an eviction" or "I would like a lawyer to review a rental contract"',"Lemon Law":'Example: "I purchased a new vehicle that broke down already and seller will not assist"',"Long Term Disability":'Example: "I was injured on the job and would like to file for benefits" or "I need help filing for disability benefits"',"Medical Malpractice":'Example: "A doctor performed surgery on the wrong limb and I would like to file a lawsuit"',"Patents and Intellectual Property":'Example: "I would like to file for a patent" or "I need to copyright a name"',"Personal Injury":'Example: "I was bit by the neighbor\'s dog" or "I fell in the icy grocery store parking lot"',"Power of Attorney":'Example: "I need help with a limited or general power of attorney"',"Probate and Estates":'Example: "I need help with planning for my estate" or "A family member passed without a will in place"',"Product Liability":'Example: "My car battery caught on fire" or "I purchased a faulty product"',"Property Damage":'Example: "The neighbor\'s tree fell on my fence" or "My car was hit in the parking lot"',"Real Estate":'Example: "I need help with a quitclaim deed" or "I need a lawyer to review a purchase and sales agreement"',"Social Security Disability and Insurance":'Example: "I would like help filing for disability benefits" or "I\'ve been denied for SSDI and would like to appeal"',"Tax and IRS":'Example: "I need help fighting an IRS tax claim" or "I need audit defense"',"Traffic and Tickets":'Example: "I need help reinstating a supsended license" or "I would like to fight a traffic ticket"',Unemployment:'Example: "I need help filing for unemployment benefits"',"Victim of a Crime":'Example: "I was assaulted in the store" or "I am being discriminated against at work"',"Wills and Trusts":'Example: "I need a simple will created" or "I would like guidance on creating a trust fund"',"Workers Compensation":'Example: "I was injured at work and would like to file for workers compensation benefits"',"Wrongful Death":'Example: "A family member was killed on the job and we need legal representation"',"Wrongful Termination":'Example: "I was fired by my employer without cause"',"Not Sure or Other":'Example: "I was involved in a car accident" or "I need help setting up power of attorney"'},_e={},Ce={Adoption:"You may benefit from speaking with an adoption professional. Please verify your contact information.","Auto and Car Accidents":"You may benefit from speaking with an accident professional. Please verify your contact information.",Bankruptcy:"You may benefit from speaking with a bankruptcy professional. Please verify your contact information.","Copyrights and Trademarks":"You may benefit from speaking with a copyright and trademark professional. Please verify your contact information.","Divorce and Separation":"You may benefit from speaking with a divorce professional. Please verify your contact information.","DUI and DWI":"You may benefit from speaking with a DUI professional. Please verify your contact information.","Elder Law":"You may benefit from speaking with an elder law professional. Please verify your contact information.",Foreclosure:"You may benefit from speaking with a foreclosure professional. Please verify your contact information.",Guardianship:"You may benefit from speaking with a guardianship professional. Please verify your contact information.","Immigration and Visas":"You may benefit from speaking with a immigration professional. Please verify your contact information.","Landlord and Tenant":"You may benefit from speaking with a landlord and tenant legal professional. Please verify your contact information.","Long Term Disability":"You may benefit from speaking with a disability legal professional. Please verify your contact information.","Medical Malpractice":"You may benefit from speaking with a malpractice professional. Please verify your contact information.","Patents and Intellectual Property":"You may benefit from speaking with a patent professional. Please verify your contact information.","Personal Injury":"You may benefit from speaking with a personal injury professional. Please verify your contact information.","Probate and Estates":"You may benefit from speaking with a probate and estate professional. Please verify your contact information.","Real Estate":"You may benefit from speaking with a real estate professional. Please verify your contact information.","Social Security Disability and Insurance":"You may benefit from speaking with an SSDI professional. Please verify your contact information.","Tax and IRS":"You may benefit from speaking with a tax professional. Please verify your contact information.",Unemployment:"You may benefit from speaking with an unemployment professional. Please verify your contact information.","Workers Compensation":"You may benefit from speaking with a workers compensation professional. Please verify your contact information."},ve=function(a=null){let i=ge,r=_e,n=Ce;return a&&(i=me(ge,a),r=me(_e,a),n=me(Ce,a)),{type:"meta",data:e(fe,{defaultCommentsPlaceholder:t,commentsPlaceholders:i,defaultFinalHeadline:"Submit Your Case",finalHeadlines:r,defaultFinalSubHeadline:"You may benefit from speaking with a legal professional. Please verify your contact information.",finalSubHeadlines:n})}}();ve.data.dynamicSchema=[function(e={}){return ce("TOLPQuestions",[te(e),K(),Q("ProbateAndEstatesQuestions",{if:'$get(Type_Of_Legal_Problem).value == "Probate and Estates"',children:[k(),H(),U(),M(),S(),w()]}),V(),Q("WrongfulDeathQuestions",{if:'$get(Type_Of_Legal_Problem).value == "Wrongful Death"',children:[k(),A(),s({label:"Relationship to the Victim:",name:"Relationship_To_Victim",options:["Parent","Spouse","Sibling","Friend","Other"]}),v(),s({label:"What was the Cause of the Victim's Death?",name:"Cause_Of_Death",options:["Vehicle Accident","Negligent/Careless Act","Reckless Act","Other"]})]}),Q("FamilyIssuesQuestions",{if:'$get(Type_Of_Legal_Problem).value == "Family Issues"',children:[k(),O(),D(),x(),E()]}),Q("NotSureOrOtherQuestions",{if:'$get(Type_Of_Legal_Problem).value == "Not Sure or Other"',children:[k(),w()]})],e.nextOnEnter)}(),function(e={}){return ce("commentsWithBankruptcy",[re(e),C({label:void 0===e.label?"Please briefly describe your legal issue in a few words:":e.label,placeholder:e.placeholder||t,inputClass:void 0===e.inputClass?"!t-h-32":e.inputClass},e.scope),m(),{$el:"div",if:"$get(CrossSell_Bankruptcy).value == true",children:[C({label:"Bankruptcy or debt details:",placeholder:"Please describe your bankrtupcy or debt situation in a few words...",inputClass:"!t-h-16"},"CrossSell:Bankruptcy")]}],!1)}(),function(e={}){return ce("legalCrossSells",[oe(e),n({id:"Legal_CrossSells",name:"Legal_CrossSells",help:'Just hit "Next" if none apply',helpClass:"t-text-center !t-text-sm",validation:null,options:{if:'$getVal($get(form), "Type_Of_Legal_Problem") === "Auto and Car Accidents"',then:{"Social Security Disability and Insurance":"Interest in Disability Benefits","Wills and Trusts":"Need a Will or Trust","Workers Compensation":"Workplace Injury","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},else:{if:'$getVal($get(form), "Type_Of_Legal_Problem") === "Personal Injury" || $getVal($get(form), "Type_Of_Legal_Problem") === "Workers Compensation"',then:{"DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},else:{if:'$getVal($get(form), "Type_Of_Legal_Problem") === "DUI and DWI"',then:{"Personal Injury":"Personal or Workplace Injury","Wills and Trusts":"Need a Will or Trust","Social Security Disability and Insurance":"Interest in Disability Benefits","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},else:{if:'$getVal($get(form), "Type_Of_Legal_Problem") === "Wills and Trusts" || $getVal($get(form), "Type_Of_Legal_Problem") === "Probate and Estates" || $getVal($get(form), "Type_Of_Legal_Problem") === "Power of Attorney"',then:{"Auto and Car Accidents":"Injured in a Car Accident","Personal Injury":"Personal or Workplace Injury","DUI and DWI":"Involved in a DUI/DWI","Social Security Disability and Insurance":"Interest in Disability Benefits","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},else:{if:'$getVal($get(form), "Type_Of_Legal_Problem") === "Long Term Disability" || $getVal($get(form), "Type_Of_Legal_Problem") === "Social Security Disability and Insurance"',then:{"Auto and Car Accidents":"Injured in a Car Accident","DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Divorce and Separation":"Need a Divorce or Separation","Child Custody":"Need help with Child Custody"},else:{"Auto and Car Accidents":"Injured in a Car Accident","Personal Injury":"Personal or Workplace Injury","DUI and DWI":"Involved in a DUI/DWI","Wills and Trusts":"Need a Will or Trust","Power of Attorney":"Update Power of Attorney","Social Security Disability and Insurance":"Interest in Disability Benefits"}}}}}}})],e.nextOnEnter,!1,"$get(Type_Of_Legal_Problem).value")}(),function(e={}){return ce("autoAndCarAccidentCrossSellQuestions",[ae({headline:"You May Be Entitled To Compensation"}),ie({subheadline:"Tell us about your accident:"}),(t="true",a="CrossSell:Auto_and_Car_Accidents",Q("AutoAndCarAccidentsQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Auto and Car Accidents"',children:[k(a),A(a),p(a),j(a),P(a),F(a)]})),C({label:"Accident Description:",placeholder:"Please describe your accident in a few words...",inputClass:"!t-h-16"},"CrossSell:Auto_and_Car_Accidents")],e.nextOnEnter);var t,a}(),function(e={}){return ce("personalInjuryCrossSellQuestions",[ae({headline:"You May Be Entitled To Compensation"}),ie({subheadline:"Tell us about your injury:"}),(t="true",a="CrossSell:Personal_Injury",Q("PersonalInjuryQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Personal Injury"',children:[k(a),A(a),_(a),p(a),j(a),P(a)]})),C({label:"Injury Description:",placeholder:"Please describe your injury in a few words...",inputClass:"!t-h-16"},"CrossSell:Personal_Injury")],e.nextOnEnter);var t,a}(),function(e={}){return ce("workersCompensationCrossSellQuestions",[ae({headline:"You May Be Entitled To Benefits"}),ie({subheadline:"Tell us about your injury:"}),(t="true",a="CrossSell:Workers_Compensation",Q("WorkersCompensationQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Workers Compensation"',children:[k(a),A(a),_(a),j(a),h(a),P(a)]})),C({label:"Injury Description:",placeholder:"Please describe your injury in a few words...",inputClass:"!t-h-16"},"CrossSell:Workers_Compensation")],e.nextOnEnter);var t,a}(),function(e={}){return ce("duiAndDWICrossSellQuestions",[ae({headline:"About Your DUI/DWI"}),(t="true",a="CrossSell:DUI_and_DWI",Q("DUIAndDWIQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "DUI and DWI"',children:[k(a),A(a),N(a),B(a),f(a),L(a),w(a)]})),C({label:"Incident Description:",placeholder:"Please describe your incident in a few words...",inputClass:"!t-h-16"},"CrossSell:DUI_and_DWI")],e.nextOnEnter);var t,a}(),function(e={}){return ce("ssdiCrossSellQuestions",[ae({headline:"You May Be Entitled To Benefits"}),ie({subheadline:"Tell us about your disability:"}),(t="true",a="CrossSell:Social_Security_Disability_and_Insurance",Q("SocialSecurityDisabilityAndInsuranceQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Social Security Disability and Insurance"',children:[k(a),c(a),I(a),$(a),q(a),P(a)]})),C({label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"},"CrossSell:Social_Security_Disability_and_Insurance")],e.nextOnEnter);var t,a}(),function(e={}){return ce("powerOfAttorneyCrossSellQuestions",[ae({headline:"Power of Attorney Information"}),V("true","CrossSell:Power_of_Attorney"),C({label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"},"CrossSell:Power_of_Attorney")],e.nextOnEnter)}(),function(e={}){return ce("willsAndTrustsCrossSellQuestions",[ae({headline:"Will or Trust Information"}),K("true","CrossSell:Wills_and_Trusts"),C({label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"},"CrossSell:Wills_and_Trusts")],e.nextOnEnter)}(),function(e={}){return ce("divorceAndSeparationCrossSellQuestions",[ae({headline:"Divorce or Separation Information"}),(t="true",a="CrossSell:Divorce_and_Separation",Q("DivorceQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Divorce and Separation"',children:[k(a),O(a),D(a),x(a),E(a)]})),C({label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"},"CrossSell:Divorce_and_Separation")],e.nextOnEnter);var t,a}(),function(e={}){return ce("childCustodyCrossSellQuestions",[ae({headline:"Child Custody Information"}),(t="true",a="CrossSell:Child_Custody",Q("ChildCustodyQuestions",{if:t||'$get(Type_Of_Legal_Problem).value == "Child Custody"',children:[k(a),g(a),y(a),b(a),x(a),E(a)]})),C({label:"Description:",placeholder:"Please describe your situation in a few words...",inputClass:"!t-h-16"},"CrossSell:Child_Custody")],e.nextOnEnter);var t,a}(),function(e={}){return ce("firstAndLast",[ne(e),d({$formkit:"text",label:"First Name:",placeholder:"First",name:t?t+":First_Name":"First_Name",autocomplete:"given-name",validationMessages:{required:"First Name is required"}}),T()],e.nextOnEnter);var t}()];const xe=[ve,e(he,we),{$cmp:"FormKit",props:function(t){const a=e(pe,t);return a.formId&&!a.name&&(a.name=a.formId),a}({formId:"willsAndTrusts",redirectMap:function(t){return e(be,t)}()}),children:[function(t={}){return e(function(e={}){return{$el:"h1",attrs:{class:"t-flex t-justify-center t-text-center !t-text-[2rem] t-font-semibold t-pt-5 t-px-7 md:t-px-3 "+(e.headlineClass||"")}}}(t),t)}({children:'$urlParam("hl", "Start Here For a Free Consultation")',if:"$activeStep === $firstStep()"}),function(t={}){return e(function(e={}){return{$el:"h3",attrs:{class:"t-flex t-justify-center t-text-center !t-text-[1.2rem] t-font-medium t-text-blue-500 t-px-10 "+(e.subheadlineClass||"")}}}(t),t)}({children:'$urlParam("shl", "Our Service is Fast and Free!")',if:"$activeStep === $firstStep()"}),...ye,{$el:"div",attrs:{class:"form-body"},children:[function(e={}){return ce("willsAndTrustsTOLPAndZip",[R(),d({label:"Zip Code:",placeholder:"#####",name:t?t+":Zip":"Zip",maxlength:5,inputmode:"numeric",autocomplete:"postal-code",validation:"required|matches:/^[0-9]{5}$/",validationMessages:{required:"Zip Code is required",matches:"Invalid Zip Code"}})],e.nextOnEnter,e.nextOnInput,e.stepKey,e.nextStepMap);var t}({nextStepMap:{"*":["TOLPQuestions","commentsWithBankruptcy","legalCrossSells","firstAndLast","contactInfo"]}}),function(e="Type_Of_Legal_Problem"){return{$cmp:"FormKitSchema",if:"$get("+e+").value",props:{schema:"$meta.dynamicSchema",data:"$buildData($meta)"}}}(),function(e={}){return ce("contactInfo",[le(e),se(e),{$el:"script",if:"$activeStep === $lastStep()",children:de},(t=e.scope,d({$formkit:"email",name:t?t+":Email":"Email",label:"Email Address:",placeholder:"email@domain.com",autocomplete:"email","data-tf-sensitive":"false",validation:"required|email",validationMessages:{required:"Email is required",email:"Invalid Email"}})),W(e.scope),Y(e.scope),ee()],!1);var t}(),((e={})=>({$el:"div",attrs:{class:"step-nav"},children:[{$formkit:"button",name:"back_button",onClick:"$setPreviousStep($prevStepFunc($get(form)))",children:"Back",style:{if:"$activeStep === $firstStep()",then:"visibility: hidden;"}},{$formkit:"button",name:"next_button",onClick:"$setNextStep($fireStepEvent($get(form)), $preStepFunc($get(form)))",children:{if:"$activeStep === $firstStep()",then:"Start",else:"Next"},outerClass:{if:"$activeStep === $lastStep()",then:"t-hidden",else:""},style:{if:"$activeStep === $lastStep()",then:"display: none;"}},{$formkit:"submit",name:"submit_button",label:e.submitLabel||"Submit",if:"$activeStep === $lastStep()",style:{if:"$activeStep !== $lastStep()",then:"display: none;"}}]}))(),{$el:"pre",if:'$urlParam("fdbg", "") == 1',children:[{$el:"pre",children:"$stringify( $get(form).value )",attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["activeStep: ","$activeStep"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["stepHistory: ","$stepHistory"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["stepQueue: ","$stepQueue"],attrs:{class:"t-text-xs",style:"overflow: scroll"}},{$el:"pre",children:["steps: ","$stepKeys()"],attrs:{class:"t-text-xs",style:"overflow: scroll"}}]}]}]}];var we;return xe}();
|
package/dist/main.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgba(59, 130, 246, .5);--tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);--tw-ring-shadow: 0 0 rgba(0,0,0,0);--tw-shadow: 0 0 rgba(0,0,0,0);--tw-shadow-colored: 0 0 rgba(0,0,0,0);--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::-ms-backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgba(59, 130, 246, .5);--tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);--tw-ring-shadow: 0 0 rgba(0,0,0,0);--tw-shadow: 0 0 rgba(0,0,0,0);--tw-shadow-colored: 0 0 rgba(0,0,0,0);--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgba(59, 130, 246, .5);--tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);--tw-ring-shadow: 0 0 rgba(0,0,0,0);--tw-shadow: 0 0 rgba(0,0,0,0);--tw-shadow-colored: 0 0 rgba(0,0,0,0);--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}body{margin:0;line-height:inherit}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}button,[role=button]{cursor:pointer}:disabled{cursor:default}[hidden]{display:none}form{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;margin:0}form hr{height:0;color:inherit;border-top-width:1px}form abbr:where([title]){text-decoration:underline;-webkit-text-decoration:underline dotted currentColor;text-decoration:underline dotted currentColor}form h1,form h2,form h3,form h4,form h5,form h6{font-size:inherit;font-weight:inherit}form a{color:inherit;text-decoration:inherit}form b,form strong{font-weight:bolder}form code,form kbd,form samp,form pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}form small{font-size:80%}form sub,form sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}form sub{bottom:-.25em}form sup{top:-.5em}form table{text-indent:0;border-color:inherit;border-collapse:collapse}form button,form input,form optgroup,form select,form textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}form button,form select{text-transform:none}form summary{display:list-item}form blockquote,form dl,form dd,form h1,form h2,form h3,form h4,form h5,form h6,form hr,form figure,form p,form pre{margin:0}form fieldset{margin:0;padding:0}form legend{padding:0}form ol,form ul,form menu{list-style:none;margin:0;padding:0}form textarea{resize:vertical}form input::-ms-input-placeholder,form textarea::-ms-input-placeholder{opacity:1;color:#9ca3af}form input::placeholder,form textarea::placeholder{opacity:1;color:#9ca3af}form img,form svg,form video,form canvas,form audio,form iframe,form embed,form object{display:block;vertical-align:middle}form img,form video{max-width:100%;height:auto}.t-absolute{position:absolute}.t-relative{position:relative}.t-mx-2{margin-left:.5rem;margin-right:.5rem}.t-mx-5{margin-left:1.25rem;margin-right:1.25rem}.t-my-2{margin-top:.5rem;margin-bottom:.5rem}.t-my-3{margin-top:.75rem;margin-bottom:.75rem}.\!t-mb-2{margin-bottom:.5rem!important}.t-mb-0{margin-bottom:0}.t-mb-1{margin-bottom:.25rem}.t-mb-2{margin-bottom:.5rem}.t-mb-3{margin-bottom:.75rem}.t-mb-4{margin-bottom:1rem}.t-mb-5{margin-bottom:1.25rem}.t-ml-auto{margin-left:auto}.t-mr-2{margin-right:.5rem}.t-mt-0{margin-top:0}.t-mt-1{margin-top:.25rem}.t-mt-2{margin-top:.5rem}.t-mt-2\.5{margin-top:.625rem}.t-mt-4{margin-top:1rem}.t-mt-7{margin-top:1.75rem}.t-block{display:block}.t-flex{display:flex}.t-grid{display:grid}.t-hidden{display:none}.\!t-h-16{height:4rem!important}.\!t-h-20{height:5rem!important}.\!t-h-28{height:7rem!important}.\!t-h-32{height:8rem!important}.t-h-1{height:.25rem}.t-h-1\.5{height:.375rem}.t-h-10{height:2.5rem}.t-h-2{height:.5rem}.t-h-24{height:6rem}.t-h-40{height:10rem}.t-h-5{height:1.25rem}.t-h-8{height:2rem}.t-h-\[100\%\]{height:100%}.t-w-16{width:4rem}.t-w-5{width:1.25rem}.t-w-9\/12{width:75%}.t-w-\[10\%\]{width:10%}.t-w-\[100\%\],.t-w-full{width:100%}.t-min-w-\[150px\]{min-width:150px}.\!t-max-w-\[275px\]{max-width:275px!important}.\!t-max-w-\[36rem\]{max-width:36rem!important}.\!t-max-w-\[40rem\]{max-width:40rem!important}.t-max-w-lg{max-width:32rem}.t-max-w-md{max-width:28rem}.t-max-w-xl{max-width:36rem}.t-cursor-pointer{cursor:pointer}.t-list-none{list-style-type:none}.t-appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.t-grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.t-flex-col{flex-direction:column}.t-items-start{align-items:flex-start}.t-items-center{align-items:center}.t-justify-center{justify-content:center}.t-overflow-hidden{overflow:hidden}.t-whitespace-nowrap{white-space:nowrap}.t-rounded{border-radius:.25rem}.t-rounded-full{border-radius:9999px}.t-rounded-md{border-radius:.375rem}.t-rounded-sm{border-radius:.125rem}.t-border{border-width:1px}.t-border-none{border-style:none}.t-border-gray-300{--tw-border-opacity: 1;border-color:rgba(209,213,219,var(--tw-border-opacity))}.t-border-gray-400{--tw-border-opacity: 1;border-color:rgba(156,163,175,var(--tw-border-opacity))}.t-border-gray-500{--tw-border-opacity: 1;border-color:rgba(107,114,128,var(--tw-border-opacity))}.t-bg-\[\#007bff\]{--tw-bg-opacity: 1;background-color:rgba(0,123,255,var(--tw-bg-opacity))}.t-bg-gray-100{--tw-bg-opacity: 1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.t-bg-gray-200{--tw-bg-opacity: 1;background-color:rgba(229,231,235,var(--tw-bg-opacity))}.t-bg-red-500{--tw-bg-opacity: 1;background-color:rgba(239,68,68,var(--tw-bg-opacity))}.t-bg-white{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.t-p-0{padding:0}.t-p-1{padding:.25rem}.t-px-1{padding-left:.25rem;padding-right:.25rem}.t-px-10{padding-left:2.5rem;padding-right:2.5rem}.t-px-2{padding-left:.5rem;padding-right:.5rem}.t-px-3{padding-left:.75rem;padding-right:.75rem}.t-px-7{padding-left:1.75rem;padding-right:1.75rem}.t-px-9{padding-left:2.25rem;padding-right:2.25rem}.t-py-4{padding-top:1rem;padding-bottom:1rem}.t-pb-1{padding-bottom:.25rem}.t-pb-3{padding-bottom:.75rem}.t-pb-4{padding-bottom:1rem}.t-pb-5{padding-bottom:1.25rem}.t-pb-7{padding-bottom:1.75rem}.t-pl-1{padding-left:.25rem}.t-pl-2{padding-left:.5rem}.t-pl-4{padding-left:1rem}.t-pl-8{padding-left:2rem}.t-pr-1{padding-right:.25rem}.t-pt-0{padding-top:0}.t-pt-1{padding-top:.25rem}.t-pt-3{padding-top:.75rem}.t-pt-5{padding-top:1.25rem}.t-text-center{text-align:center}.\!t-text-\[1\.2rem\]{font-size:1.2rem!important}.\!t-text-\[2rem\]{font-size:2rem!important}.\!t-text-lg{font-size:1.125rem!important;line-height:1.75rem!important}.\!t-text-sm{font-size:.875rem!important;line-height:1.25rem!important}.t-text-2xl{font-size:1.5rem;line-height:2rem}.t-text-base{font-size:1rem;line-height:1.5rem}.t-text-lg{font-size:1.125rem;line-height:1.75rem}.t-text-sm{font-size:.875rem;line-height:1.25rem}.t-text-xl{font-size:1.25rem;line-height:1.75rem}.t-text-xs{font-size:.75rem;line-height:1rem}.t-font-bold{font-weight:700}.t-font-medium{font-weight:500}.t-font-normal{font-weight:400}.t-font-semibold{font-weight:600}.\!t-text-\[\#00428A\]{--tw-text-opacity: 1 !important;color:rgba(0,66,138,var(--tw-text-opacity))!important}.\!t-text-dark{--tw-text-opacity: 1 !important;color:rgba(33,37,41,var(--tw-text-opacity))!important}.\!t-text-gray-500{--tw-text-opacity: 1 !important;color:rgba(107,114,128,var(--tw-text-opacity))!important}.t-text-\[\#1e448f\]{--tw-text-opacity: 1;color:rgba(30,68,143,var(--tw-text-opacity))}.t-text-blue-500{--tw-text-opacity: 1;color:rgba(59,130,246,var(--tw-text-opacity))}.t-text-dark{--tw-text-opacity: 1;color:rgba(33,37,41,var(--tw-text-opacity))}.t-text-gray-500{--tw-text-opacity: 1;color:rgba(107,114,128,var(--tw-text-opacity))}.t-text-gray-600{--tw-text-opacity: 1;color:rgba(75,85,99,var(--tw-text-opacity))}.t-text-gray-700{--tw-text-opacity: 1;color:rgba(55,65,81,var(--tw-text-opacity))}.t-text-gray-800{--tw-text-opacity: 1;color:rgba(31,41,55,var(--tw-text-opacity))}.t-text-red-500{--tw-text-opacity: 1;color:rgba(239,68,68,var(--tw-text-opacity))}.t-text-slate-500{--tw-text-opacity: 1;color:rgba(100,116,139,var(--tw-text-opacity))}.t-text-white{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.t-placeholder-gray-400::-ms-input-placeholder{--tw-placeholder-opacity: 1;color:rgba(156,163,175,var(--tw-placeholder-opacity))}.t-placeholder-gray-400::placeholder{--tw-placeholder-opacity: 1;color:rgba(156,163,175,var(--tw-placeholder-opacity))}.t-transition{transition-property:color,background-color,border-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.t-duration-100{transition-duration:.1s}.v3dp__popout{font-size:1.2rem}@media (max-width: 438px){.v3dp__popout{position:unset!important}.v3dp__popout{font-size:1rem}}.v3dp__input_wrapper input{width:100%;height:2.5rem;padding-left:.75rem;padding-right:.75rem;border-style:none;font-size:1rem;box-sizing:border-box}:root{--gray: #ccccd7;--gray-l: #eeeef4}.formkit-form{max-width:540px;flex-shrink:0;margin-top:1em;margin-bottom:1em;background:#fff;color:#000;border:1px solid var(--gray);border-radius:.5em;box-shadow:.25em .25em 1em #0000001a;text-align:left}@media (max-width: 438px){.formkit-form{min-width:90vw}}.vertical{display:grid;grid-template-columns:1fr;grid-gap:30px}.side-by-side{display:grid;grid-template-columns:40fr 60fr;grid-gap:30px}.side-by-side-flex{display:flex;flex-wrap:nowrap}.select-height-content{height:-webkit-min-content;height:-moz-min-content;height:min-content}.legend-left{float:left}.legend-left-flex{float:left;text-align:left;min-width:40%;padding-bottom:1em}.required:after{content:"*";color:red;margin-left:4px}[data-step-active=true]{background:white!important}[data-step-active=true]{color:#000;border-bottom:none;position:relative}.step-nav{display:flex;margin-top:1em;margin-bottom:1em;justify-content:space-between}.form-body{padding:2em 2em 0}.next{margin-left:auto}.formkit-outer[data-type=submit] .formkit-wrapper{display:flex}.formkit-outer[data-type=submit] .formkit-input{margin-left:auto;margin-right:0}.formkit-form details{border:1px solid var(--gray);background:var(--gray-l);border-radius:.15em;padding:1em}.formkit-form>.formkit-messages{padding:0 2em}.formkit-form>.formkit-messages:last-child{padding:0 2em 2em}[data-errors=true] .formkit-label{color:#ff4949}.formkit-wrapper{max-width:100%}button:hover,summary{cursor:pointer}.formkit-form p small{color:#999}.formkit-form h1{margin:.25em 0}@media (max-width: 438px){.formkit-form h1{font-size:1.15em}.side-by-side{display:unset;grid-template-columns:unset;grid-gap:unset}.side-by-side-flex{display:unset;flex-wrap:unset}.legend-left{float:unset;padding-bottom:1em}.legend-left-flex{float:unset;text-align:unset;min-width:unset;padding-bottom:1em}.form-body{padding:1em}.formkit-outer[data-type=submit] .formkit-wrapper{display:flex}.formkit-form>.formkit-messages{padding:0 1em}.formkit-form>.formkit-messages:last-child{padding:0 1em 1em}.formkit-options.side-by-side{padding-left:0}}@keyframes rotate{to{transform:rotate(360deg)}}.formkit-form[data-loading=true] .formkit-outer[data-disabled=true]:not([data-type=checkbox]):not([data-type=radio]):not([data-type=range]) .formkit-inner{color:#fff!important}.formkit-form[data-loading=true] .formkit-outer[data-disabled=true]:not([data-type=checkbox]):not([data-type=radio]):not([data-type=range]) .formkit-inner{cursor:not-allowed}.formkit-form[data-loading=true] .formkit-wrapper .formkit-input[type=submit]{filter:brightness(1.1);pointer-events:none}.formkit-form[data-loading=true] .formkit-wrapper .formkit-input[type=submit]:before{animation:rotate .5s linear infinite;width:1.28571428em;border:.1428571429em solid white;border-right-color:transparent;margin-right:.75em;display:inline-block}.formkit-form .formkit-wrapper .formkit-input[type=submit]:before{box-sizing:border-box;content:"";width:0;margin-right:0;height:1.28571428em;border:0 solid transparent;border-radius:1.28571428em;transition:width .25s,border .25s,margin-right .25s}[data-disabled=true]{opacity:.5}.radiobtn{position:relative;text-align:center;width:100%;max-width:150px;min-width:100px}.radiobtn label{background:none;border-radius:5px;padding:10px 20px;border:1px solid #1e448f;cursor:pointer}.radiobtn input[type=radio]{display:none;position:absolute;width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none}.radiobtn .formkit-label{position:relative;z-index:2}.radiobtn input.formkit-input~.formkit-decorator{display:block;position:absolute;inset:0;width:100%;height:100%;border-radius:.25em}.radiobtn .formkit-wrapper[data-checked] .formkit-label{color:#fff}.radiobtn input.formkit-input:checked~.formkit-decorator{background-color:#1e448f}.file\:t-mr-4::-webkit-file-upload-button{margin-right:1rem}.file\:t-mr-4::file-selector-button{margin-right:1rem}.file\:t-rounded-full::-webkit-file-upload-button{border-radius:9999px}.file\:t-rounded-full::file-selector-button{border-radius:9999px}.file\:t-border-0::-webkit-file-upload-button{border-width:0px}.file\:t-border-0::file-selector-button{border-width:0px}.file\:t-bg-blue-500::-webkit-file-upload-button{--tw-bg-opacity: 1;background-color:rgba(59,130,246,var(--tw-bg-opacity))}.file\:t-bg-blue-500::file-selector-button{--tw-bg-opacity: 1;background-color:rgba(59,130,246,var(--tw-bg-opacity))}.file\:t-px-4::-webkit-file-upload-button{padding-left:1rem;padding-right:1rem}.file\:t-px-4::file-selector-button{padding-left:1rem;padding-right:1rem}.file\:t-py-2::-webkit-file-upload-button{padding-top:.5rem;padding-bottom:.5rem}.file\:t-py-2::file-selector-button{padding-top:.5rem;padding-bottom:.5rem}.file\:t-text-sm::-webkit-file-upload-button{font-size:.875rem;line-height:1.25rem}.file\:t-text-sm::file-selector-button{font-size:.875rem;line-height:1.25rem}.file\:t-text-white::-webkit-file-upload-button{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.file\:t-text-white::file-selector-button{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.placeholder\:t-text-base::-ms-input-placeholder{font-size:1rem;line-height:1.5rem}.placeholder\:t-text-base::placeholder{font-size:1rem;line-height:1.5rem}.checked\:t-bg-blue-500:checked{--tw-bg-opacity: 1;background-color:rgba(59,130,246,var(--tw-bg-opacity))}.focus-within\:t-border-blue-500[focus-within]{--tw-border-opacity: 1;border-color:rgba(59,130,246,var(--tw-border-opacity))}.focus-within\:t-border-blue-500:focus-within{--tw-border-opacity: 1;border-color:rgba(59,130,246,var(--tw-border-opacity))}@media (hover: hover) and (pointer: fine){.hover\:t-bg-red-600:hover{--tw-bg-opacity: 1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.hover\:file\:t-bg-blue-600::-webkit-file-upload-button:hover{--tw-bg-opacity: 1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.hover\:file\:t-bg-blue-600::file-selector-button:hover{--tw-bg-opacity: 1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}}.focus\:t-shadow-none:focus{--tw-shadow: 0 0 rgba(0,0,0,0);--tw-shadow-colored: 0 0 rgba(0,0,0,0);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)),var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)),var(--tw-shadow)}.focus\:t-outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:t-ring-0:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0,0,0,0))}@media (min-width: 640px){.sm\:t-my-0{margin-top:0;margin-bottom:0}.sm\:t-flex-row{flex-direction:row}.sm\:t-px-11{padding-left:2.75rem;padding-right:2.75rem}}@media (min-width: 768px){.md\:t-mx-5{margin-left:1.25rem;margin-right:1.25rem}.md\:t-ml-4{margin-left:1rem}.md\:t-mt-2{margin-top:.5rem}.md\:t-mt-\[-2px\]{margin-top:-2px}.md\:t-mt-\[-5px\]{margin-top:-5px}.md\:t-min-w-\[200px\]{min-width:200px}.md\:\!t-max-w-xl{max-width:36rem!important}.md\:t-max-w-\[40\%\]{max-width:40%}.md\:t-grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:t-grid-cols-2-125{grid-template-columns:repeat(2,minmax(125px,1fr))}.md\:t-px-3{padding-left:.75rem;padding-right:.75rem}.md\:t-pl-12{padding-left:3rem}.md\:t-pl-2{padding-left:.5rem}.md\:t-pl-8{padding-left:2rem}.md\:t-text-right{text-align:right}}
|
|
1
|
+
*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgba(59, 130, 246, .5);--tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);--tw-ring-shadow: 0 0 rgba(0,0,0,0);--tw-shadow: 0 0 rgba(0,0,0,0);--tw-shadow-colored: 0 0 rgba(0,0,0,0);--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::-ms-backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgba(59, 130, 246, .5);--tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);--tw-ring-shadow: 0 0 rgba(0,0,0,0);--tw-shadow: 0 0 rgba(0,0,0,0);--tw-shadow-colored: 0 0 rgba(0,0,0,0);--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgba(59, 130, 246, .5);--tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);--tw-ring-shadow: 0 0 rgba(0,0,0,0);--tw-shadow: 0 0 rgba(0,0,0,0);--tw-shadow-colored: 0 0 rgba(0,0,0,0);--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}body{margin:0;line-height:inherit}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}button,[role=button]{cursor:pointer}:disabled{cursor:default}[hidden]{display:none}form{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;margin:0}form hr{height:0;color:inherit;border-top-width:1px}form abbr:where([title]){text-decoration:underline;-webkit-text-decoration:underline dotted currentColor;text-decoration:underline dotted currentColor}form h1,form h2,form h3,form h4,form h5,form h6{font-size:inherit;font-weight:inherit}form a{color:inherit;text-decoration:inherit}form b,form strong{font-weight:bolder}form code,form kbd,form samp,form pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}form small{font-size:80%}form sub,form sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}form sub{bottom:-.25em}form sup{top:-.5em}form table{text-indent:0;border-color:inherit;border-collapse:collapse}form button,form input,form optgroup,form select,form textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}form button,form select{text-transform:none}form summary{display:list-item}form blockquote,form dl,form dd,form h1,form h2,form h3,form h4,form h5,form h6,form hr,form figure,form p,form pre{margin:0}form fieldset{margin:0;padding:0}form legend{padding:0}form ol,form ul,form menu{list-style:none;margin:0;padding:0}form textarea{resize:vertical}form input::-ms-input-placeholder,form textarea::-ms-input-placeholder{opacity:1;color:#9ca3af}form input::placeholder,form textarea::placeholder{opacity:1;color:#9ca3af}form img,form svg,form video,form canvas,form audio,form iframe,form embed,form object{display:block;vertical-align:middle}form img,form video{max-width:100%;height:auto}.t-absolute{position:absolute}.t-relative{position:relative}.t-mx-2{margin-left:.5rem;margin-right:.5rem}.t-mx-5{margin-left:1.25rem;margin-right:1.25rem}.t-my-2{margin-top:.5rem;margin-bottom:.5rem}.t-my-3{margin-top:.75rem;margin-bottom:.75rem}.\!t-mb-2{margin-bottom:.5rem!important}.t-mb-0{margin-bottom:0}.t-mb-1{margin-bottom:.25rem}.t-mb-2{margin-bottom:.5rem}.t-mb-3{margin-bottom:.75rem}.t-mb-4{margin-bottom:1rem}.t-mb-5{margin-bottom:1.25rem}.t-ml-auto{margin-left:auto}.t-mr-2{margin-right:.5rem}.t-mt-0{margin-top:0}.t-mt-1{margin-top:.25rem}.t-mt-2{margin-top:.5rem}.t-mt-2\.5{margin-top:.625rem}.t-mt-4{margin-top:1rem}.t-mt-7{margin-top:1.75rem}.t-block{display:block}.t-flex{display:flex}.t-grid{display:grid}.t-hidden{display:none}.\!t-h-16{height:4rem!important}.\!t-h-20{height:5rem!important}.\!t-h-28{height:7rem!important}.\!t-h-32{height:8rem!important}.t-h-1{height:.25rem}.t-h-1\.5{height:.375rem}.t-h-10{height:2.5rem}.t-h-2{height:.5rem}.t-h-24{height:6rem}.t-h-40{height:10rem}.t-h-5{height:1.25rem}.t-h-8{height:2rem}.t-h-\[100\%\]{height:100%}.t-w-16{width:4rem}.t-w-5{width:1.25rem}.t-w-9\/12{width:75%}.t-w-\[10\%\]{width:10%}.t-w-\[100\%\],.t-w-full{width:100%}.t-min-w-\[150px\]{min-width:150px}.\!t-max-w-\[275px\]{max-width:275px!important}.\!t-max-w-\[36rem\]{max-width:36rem!important}.\!t-max-w-\[38rem\]{max-width:38rem!important}.\!t-max-w-\[40rem\]{max-width:40rem!important}.t-max-w-lg{max-width:32rem}.t-max-w-md{max-width:28rem}.t-max-w-xl{max-width:36rem}.t-cursor-pointer{cursor:pointer}.t-list-none{list-style-type:none}.t-appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.t-grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.t-flex-col{flex-direction:column}.t-flex-col-reverse{flex-direction:column-reverse}.t-items-start{align-items:flex-start}.t-items-center{align-items:center}.t-justify-center{justify-content:center}.t-overflow-hidden{overflow:hidden}.t-whitespace-nowrap{white-space:nowrap}.t-rounded{border-radius:.25rem}.t-rounded-full{border-radius:9999px}.t-rounded-md{border-radius:.375rem}.t-rounded-sm{border-radius:.125rem}.t-border{border-width:1px}.t-border-none{border-style:none}.t-border-gray-300{--tw-border-opacity: 1;border-color:rgba(209,213,219,var(--tw-border-opacity))}.t-border-gray-400{--tw-border-opacity: 1;border-color:rgba(156,163,175,var(--tw-border-opacity))}.t-border-gray-500{--tw-border-opacity: 1;border-color:rgba(107,114,128,var(--tw-border-opacity))}.t-bg-\[\#007bff\]{--tw-bg-opacity: 1;background-color:rgba(0,123,255,var(--tw-bg-opacity))}.t-bg-gray-100{--tw-bg-opacity: 1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.t-bg-gray-200{--tw-bg-opacity: 1;background-color:rgba(229,231,235,var(--tw-bg-opacity))}.t-bg-red-500{--tw-bg-opacity: 1;background-color:rgba(239,68,68,var(--tw-bg-opacity))}.t-bg-white{--tw-bg-opacity: 1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.t-p-0{padding:0}.t-p-1{padding:.25rem}.t-px-1{padding-left:.25rem;padding-right:.25rem}.t-px-10{padding-left:2.5rem;padding-right:2.5rem}.t-px-2{padding-left:.5rem;padding-right:.5rem}.t-px-3{padding-left:.75rem;padding-right:.75rem}.t-px-7{padding-left:1.75rem;padding-right:1.75rem}.t-px-9{padding-left:2.25rem;padding-right:2.25rem}.t-py-4{padding-top:1rem;padding-bottom:1rem}.t-pb-1{padding-bottom:.25rem}.t-pb-3{padding-bottom:.75rem}.t-pb-4{padding-bottom:1rem}.t-pb-5{padding-bottom:1.25rem}.t-pb-7{padding-bottom:1.75rem}.t-pl-1{padding-left:.25rem}.t-pl-2{padding-left:.5rem}.t-pl-4{padding-left:1rem}.t-pl-8{padding-left:2rem}.t-pr-1{padding-right:.25rem}.t-pt-0{padding-top:0}.t-pt-1{padding-top:.25rem}.t-pt-3{padding-top:.75rem}.t-pt-5{padding-top:1.25rem}.t-text-center{text-align:center}.\!t-text-\[1\.2rem\]{font-size:1.2rem!important}.\!t-text-\[2rem\]{font-size:2rem!important}.\!t-text-lg{font-size:1.125rem!important;line-height:1.75rem!important}.\!t-text-sm{font-size:.875rem!important;line-height:1.25rem!important}.t-text-2xl{font-size:1.5rem;line-height:2rem}.t-text-base{font-size:1rem;line-height:1.5rem}.t-text-lg{font-size:1.125rem;line-height:1.75rem}.t-text-sm{font-size:.875rem;line-height:1.25rem}.t-text-xl{font-size:1.25rem;line-height:1.75rem}.t-text-xs{font-size:.75rem;line-height:1rem}.t-font-bold{font-weight:700}.t-font-medium{font-weight:500}.t-font-normal{font-weight:400}.t-font-semibold{font-weight:600}.\!t-text-\[\#00428A\]{--tw-text-opacity: 1 !important;color:rgba(0,66,138,var(--tw-text-opacity))!important}.\!t-text-dark{--tw-text-opacity: 1 !important;color:rgba(33,37,41,var(--tw-text-opacity))!important}.\!t-text-gray-500{--tw-text-opacity: 1 !important;color:rgba(107,114,128,var(--tw-text-opacity))!important}.t-text-\[\#1e448f\]{--tw-text-opacity: 1;color:rgba(30,68,143,var(--tw-text-opacity))}.t-text-blue-500{--tw-text-opacity: 1;color:rgba(59,130,246,var(--tw-text-opacity))}.t-text-dark{--tw-text-opacity: 1;color:rgba(33,37,41,var(--tw-text-opacity))}.t-text-gray-500{--tw-text-opacity: 1;color:rgba(107,114,128,var(--tw-text-opacity))}.t-text-gray-600{--tw-text-opacity: 1;color:rgba(75,85,99,var(--tw-text-opacity))}.t-text-gray-700{--tw-text-opacity: 1;color:rgba(55,65,81,var(--tw-text-opacity))}.t-text-gray-800{--tw-text-opacity: 1;color:rgba(31,41,55,var(--tw-text-opacity))}.t-text-red-500{--tw-text-opacity: 1;color:rgba(239,68,68,var(--tw-text-opacity))}.t-text-slate-500{--tw-text-opacity: 1;color:rgba(100,116,139,var(--tw-text-opacity))}.t-text-white{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.t-placeholder-gray-400::-ms-input-placeholder{--tw-placeholder-opacity: 1;color:rgba(156,163,175,var(--tw-placeholder-opacity))}.t-placeholder-gray-400::placeholder{--tw-placeholder-opacity: 1;color:rgba(156,163,175,var(--tw-placeholder-opacity))}.t-transition{transition-property:color,background-color,border-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.t-duration-100{transition-duration:.1s}.v3dp__popout{font-size:1.2rem}@media (max-width: 438px){.v3dp__popout{position:unset!important}.v3dp__popout{font-size:1rem}}.v3dp__input_wrapper input{width:100%;height:2.5rem;padding-left:.75rem;padding-right:.75rem;border-style:none;font-size:1rem;box-sizing:border-box}:root{--gray: #ccccd7;--gray-l: #eeeef4}.formkit-form{max-width:540px;flex-shrink:0;margin-top:1em;margin-bottom:1em;background:#fff;color:#000;border:1px solid var(--gray);border-radius:.5em;box-shadow:.25em .25em 1em #0000001a;text-align:left}@media (max-width: 438px){.formkit-form{min-width:90vw}}.vertical{display:grid;grid-template-columns:1fr;grid-gap:30px}.side-by-side{display:grid;grid-template-columns:40fr 60fr;grid-gap:30px}.side-by-side-flex{display:flex;flex-wrap:nowrap}.select-height-content{height:-webkit-min-content;height:-moz-min-content;height:min-content}.legend-left{float:left}.legend-left-flex{float:left;text-align:left;min-width:40%;padding-bottom:1em}.required:after{content:"*";color:red;margin-left:4px}[data-step-active=true]{background:white!important}[data-step-active=true]{color:#000;border-bottom:none;position:relative}.step-nav{display:flex;margin-top:1em;margin-bottom:1em;justify-content:space-between}.form-body{padding:2em 2em 0}.next{margin-left:auto}.formkit-outer[data-type=submit] .formkit-wrapper{display:flex}.formkit-outer[data-type=submit] .formkit-input{margin-left:auto;margin-right:0}.formkit-form details{border:1px solid var(--gray);background:var(--gray-l);border-radius:.15em;padding:1em}.formkit-form>.formkit-messages{padding:0 2em}.formkit-form>.formkit-messages:last-child{padding:0 2em 2em}[data-errors=true] .formkit-label{color:#ff4949}.formkit-wrapper{max-width:100%}button:hover,summary{cursor:pointer}.formkit-form p small{color:#999}.formkit-form h1{margin:.25em 0}@media (max-width: 438px){.formkit-form h1{font-size:1.15em}.side-by-side{display:unset;grid-template-columns:unset;grid-gap:unset}.side-by-side-flex{display:unset;flex-wrap:unset}.legend-left{float:unset;padding-bottom:1em}.legend-left-flex{float:unset;text-align:unset;min-width:unset;padding-bottom:1em}.form-body{padding:1em}.formkit-outer[data-type=submit] .formkit-wrapper{display:flex}.formkit-form>.formkit-messages{padding:0 1em}.formkit-form>.formkit-messages:last-child{padding:0 1em 1em}.formkit-options.side-by-side{padding-left:0}}@keyframes rotate{to{transform:rotate(360deg)}}.formkit-form[data-loading=true] .formkit-outer[data-disabled=true]:not([data-type=checkbox]):not([data-type=radio]):not([data-type=range]) .formkit-inner{color:#fff!important}.formkit-form[data-loading=true] .formkit-outer[data-disabled=true]:not([data-type=checkbox]):not([data-type=radio]):not([data-type=range]) .formkit-inner{cursor:not-allowed}.formkit-form[data-loading=true] .formkit-wrapper .formkit-input[type=submit]{filter:brightness(1.1);pointer-events:none}.formkit-form[data-loading=true] .formkit-wrapper .formkit-input[type=submit]:before{animation:rotate .5s linear infinite;width:1.28571428em;border:.1428571429em solid white;border-right-color:transparent;margin-right:.75em;display:inline-block}.formkit-form .formkit-wrapper .formkit-input[type=submit]:before{box-sizing:border-box;content:"";width:0;margin-right:0;height:1.28571428em;border:0 solid transparent;border-radius:1.28571428em;transition:width .25s,border .25s,margin-right .25s}[data-disabled=true]{opacity:.5}.radiobtn{position:relative;text-align:center;width:100%;max-width:150px;min-width:100px}.radiobtn label{background:none;border-radius:5px;padding:10px 20px;border:1px solid #1e448f;cursor:pointer}.radiobtn input[type=radio]{display:none;position:absolute;width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none}.radiobtn .formkit-label{position:relative;z-index:2}.radiobtn input.formkit-input~.formkit-decorator{display:block;position:absolute;inset:0;width:100%;height:100%;border-radius:.25em}.radiobtn .formkit-wrapper[data-checked] .formkit-label{color:#fff}.radiobtn input.formkit-input:checked~.formkit-decorator{background-color:#1e448f}.file\:t-mr-4::-webkit-file-upload-button{margin-right:1rem}.file\:t-mr-4::file-selector-button{margin-right:1rem}.file\:t-rounded-full::-webkit-file-upload-button{border-radius:9999px}.file\:t-rounded-full::file-selector-button{border-radius:9999px}.file\:t-border-0::-webkit-file-upload-button{border-width:0px}.file\:t-border-0::file-selector-button{border-width:0px}.file\:t-bg-blue-500::-webkit-file-upload-button{--tw-bg-opacity: 1;background-color:rgba(59,130,246,var(--tw-bg-opacity))}.file\:t-bg-blue-500::file-selector-button{--tw-bg-opacity: 1;background-color:rgba(59,130,246,var(--tw-bg-opacity))}.file\:t-px-4::-webkit-file-upload-button{padding-left:1rem;padding-right:1rem}.file\:t-px-4::file-selector-button{padding-left:1rem;padding-right:1rem}.file\:t-py-2::-webkit-file-upload-button{padding-top:.5rem;padding-bottom:.5rem}.file\:t-py-2::file-selector-button{padding-top:.5rem;padding-bottom:.5rem}.file\:t-text-sm::-webkit-file-upload-button{font-size:.875rem;line-height:1.25rem}.file\:t-text-sm::file-selector-button{font-size:.875rem;line-height:1.25rem}.file\:t-text-white::-webkit-file-upload-button{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.file\:t-text-white::file-selector-button{--tw-text-opacity: 1;color:rgba(255,255,255,var(--tw-text-opacity))}.placeholder\:t-text-base::-ms-input-placeholder{font-size:1rem;line-height:1.5rem}.placeholder\:t-text-base::placeholder{font-size:1rem;line-height:1.5rem}.checked\:t-bg-blue-500:checked{--tw-bg-opacity: 1;background-color:rgba(59,130,246,var(--tw-bg-opacity))}.focus-within\:t-border-blue-500[focus-within]{--tw-border-opacity: 1;border-color:rgba(59,130,246,var(--tw-border-opacity))}.focus-within\:t-border-blue-500:focus-within{--tw-border-opacity: 1;border-color:rgba(59,130,246,var(--tw-border-opacity))}@media (hover: hover) and (pointer: fine){.hover\:t-bg-red-600:hover{--tw-bg-opacity: 1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.hover\:file\:t-bg-blue-600::-webkit-file-upload-button:hover{--tw-bg-opacity: 1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}.hover\:file\:t-bg-blue-600::file-selector-button:hover{--tw-bg-opacity: 1;background-color:rgba(37,99,235,var(--tw-bg-opacity))}}.focus\:t-shadow-none:focus{--tw-shadow: 0 0 rgba(0,0,0,0);--tw-shadow-colored: 0 0 rgba(0,0,0,0);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)),var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)),var(--tw-shadow)}.focus\:t-outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:t-ring-0:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0,0,0,0))}@media (min-width: 640px){.sm\:t-my-0{margin-top:0;margin-bottom:0}.sm\:t-flex-row{flex-direction:row}.sm\:t-px-11{padding-left:2.75rem;padding-right:2.75rem}}@media (min-width: 768px){.md\:t-mx-5{margin-left:1.25rem;margin-right:1.25rem}.md\:t-ml-4{margin-left:1rem}.md\:t-mt-2{margin-top:.5rem}.md\:t-mt-\[-2px\]{margin-top:-2px}.md\:t-mt-\[-5px\]{margin-top:-5px}.md\:t-min-w-\[200px\]{min-width:200px}.md\:\!t-max-w-xl{max-width:36rem!important}.md\:t-max-w-\[40\%\]{max-width:40%}.md\:t-grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:t-grid-cols-2-125{grid-template-columns:repeat(2,minmax(125px,1fr))}.md\:t-px-3{padding-left:.75rem;padding-right:.75rem}.md\:t-pl-12{padding-left:3rem}.md\:t-pl-2{padding-left:.5rem}.md\:t-pl-8{padding-left:2rem}.md\:t-text-right{text-align:right}}
|