@cfpb/cfpb-design-system 4.0.4 → 4.1.0
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/CHANGELOG.md +25 -1
- package/dist/base/index.css +1 -1
- package/dist/base/index.css.map +2 -2
- package/dist/base/index.js +1 -1
- package/dist/base/index.js.map +1 -1
- package/dist/components/cfpb-buttons/index.css +1 -1
- package/dist/components/cfpb-buttons/index.css.map +2 -2
- package/dist/components/cfpb-buttons/index.js +1 -1
- package/dist/components/cfpb-buttons/index.js.map +1 -1
- package/dist/components/cfpb-expandables/index.css +1 -1
- package/dist/components/cfpb-expandables/index.css.map +2 -2
- package/dist/components/cfpb-expandables/index.js +1 -1
- package/dist/components/cfpb-expandables/index.js.map +1 -1
- package/dist/components/cfpb-forms/index.css +1 -1
- package/dist/components/cfpb-forms/index.css.map +2 -2
- package/dist/components/cfpb-forms/index.js +1 -1
- package/dist/components/cfpb-forms/index.js.map +1 -1
- package/dist/components/cfpb-icons/index.css +1 -1
- package/dist/components/cfpb-icons/index.css.map +2 -2
- package/dist/components/cfpb-icons/index.js +1 -1
- package/dist/components/cfpb-icons/index.js.map +1 -1
- package/dist/components/cfpb-layout/index.css +1 -1
- package/dist/components/cfpb-layout/index.css.map +2 -2
- package/dist/components/cfpb-layout/index.js +1 -1
- package/dist/components/cfpb-layout/index.js.map +1 -1
- package/dist/components/cfpb-notifications/index.css +1 -1
- package/dist/components/cfpb-notifications/index.css.map +2 -2
- package/dist/components/cfpb-notifications/index.js +1 -1
- package/dist/components/cfpb-notifications/index.js.map +1 -1
- package/dist/components/cfpb-pagination/index.css +1 -1
- package/dist/components/cfpb-pagination/index.css.map +2 -2
- package/dist/components/cfpb-pagination/index.js +1 -1
- package/dist/components/cfpb-pagination/index.js.map +1 -1
- package/dist/components/cfpb-tables/index.css +1 -1
- package/dist/components/cfpb-tables/index.css.map +2 -2
- package/dist/components/cfpb-tables/index.js +1 -1
- package/dist/components/cfpb-tables/index.js.map +1 -1
- package/dist/components/cfpb-tooltips/index.css +1 -1
- package/dist/components/cfpb-tooltips/index.css.map +2 -2
- package/dist/components/cfpb-tooltips/index.js +1 -1
- package/dist/components/cfpb-tooltips/index.js.map +1 -1
- package/dist/components/cfpb-typography/index.css +1 -1
- package/dist/components/cfpb-typography/index.css.map +2 -2
- package/dist/components/cfpb-typography/index.js +1 -1
- package/dist/components/cfpb-typography/index.js.map +1 -1
- package/dist/elements/cfpb-button/index.js +12 -4
- package/dist/elements/cfpb-button/index.js.map +4 -4
- package/dist/elements/cfpb-file-upload/index.js +11 -4
- package/dist/elements/cfpb-file-upload/index.js.map +4 -4
- package/dist/elements/cfpb-form-choice/index.js +11 -3
- package/dist/elements/cfpb-form-choice/index.js.map +4 -4
- package/dist/elements/cfpb-label/index.js +36 -0
- package/dist/elements/cfpb-label/index.js.map +7 -0
- package/dist/elements/cfpb-multiselect/index.js +13 -4
- package/dist/elements/cfpb-multiselect/index.js.map +4 -4
- package/dist/elements/cfpb-tag-filter/index.js +2 -2
- package/dist/elements/cfpb-tag-filter/index.js.map +2 -2
- package/dist/elements/cfpb-tag-group/index.js +2 -2
- package/dist/elements/cfpb-tag-group/index.js.map +2 -2
- package/dist/elements/cfpb-tag-topic/index.js +3 -3
- package/dist/elements/cfpb-tag-topic/index.js.map +2 -2
- package/dist/elements/index.js +14 -5
- package/dist/elements/index.js.map +4 -4
- package/dist/index.css +1 -1
- package/dist/index.css.map +2 -2
- package/dist/index.js +14 -5
- package/dist/index.js.map +4 -4
- package/dist/utilities/index.css +1 -1
- package/dist/utilities/index.css.map +2 -2
- package/dist/utilities/index.js +1 -1
- package/dist/utilities/index.js.map +1 -1
- package/package.json +1 -1
- package/src/abstracts/heading-mixins.scss +6 -0
- package/src/abstracts/vars.scss +23 -0
- package/src/base/base.scss +1 -1
- package/src/elements/cfpb-button/cfpb-button.component.scss +8 -0
- package/src/elements/cfpb-button/index.js +100 -17
- package/src/elements/cfpb-file-upload/index.js +1 -1
- package/src/elements/cfpb-form-choice/cfpb-form-choice.component.scss +6 -1
- package/src/elements/cfpb-form-choice/index.js +62 -29
- package/src/elements/cfpb-form-choice/index.spec.js +47 -0
- package/src/elements/cfpb-label/cfpb-label.component.scss +36 -0
- package/src/elements/cfpb-label/index.js +61 -0
- package/src/elements/cfpb-multiselect/cfpb-multiselect.component.scss +225 -0
- package/src/elements/cfpb-multiselect/index.js +444 -0
- package/src/elements/cfpb-multiselect/multiselect-model.js +288 -0
- package/src/elements/cfpb-multiselect/multiselect-model.spec.js +236 -0
- package/src/elements/cfpb-tag-filter/index.js +1 -1
- package/src/elements/cfpb-tag-filter/index.spec.js +1 -1
- package/src/elements/cfpb-tag-group/index.js +2 -1
- package/src/elements/cfpb-tag-topic/index.js +6 -0
- package/src/elements/index.js +2 -0
package/dist/index.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
(()=>{var Rt=Object.defineProperty;var Pt=Object.getOwnPropertySymbols;var ao=Object.prototype.hasOwnProperty,oo=Object.prototype.propertyIsEnumerable;var Ut=t=>{throw TypeError(t)};var zr=(t,e,r)=>e in t?Rt(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r,Tr=(t,e)=>{for(var r in e||(e={}))ao.call(e,r)&&zr(t,r,e[r]);if(Pt)for(var r of Pt(e))oo.call(e,r)&&zr(t,r,e[r]);return t};var v=(t,e)=>{for(var r in e)Rt(t,r,{get:e[r],enumerable:!0})};var D=(t,e,r)=>zr(t,typeof e!="symbol"?e+"":e,r),Cr=(t,e,r)=>e.has(t)||Ut("Cannot "+r);var H=(t,e,r)=>(Cr(t,e,"read from private field"),r?r.call(t):e.get(t)),M=(t,e,r)=>e.has(t)?Ut("Cannot add the same private member more than once"):e instanceof WeakSet?e.add(t):e.set(t,r),Fe=(t,e,r,a)=>(Cr(t,e,"write to private field"),a?a.call(t,r):e.set(t,r),r),_=(t,e,r)=>(Cr(t,e,"access private method"),r);var Ft=(t,e,r)=>new Promise((a,o)=>{var i=n=>{try{l(r.next(n))}catch(c){o(c)}},d=n=>{try{l(r.throw(n))}catch(c){o(c)}},l=n=>n.done?a(n.value):Promise.resolve(n.value).then(i,d);l((r=r.apply(t,e)).next())});var Ve={bpXS:{min:0,max:600},bpSM:{min:601,max:900},bpMED:{min:901,max:1020},bpLG:{min:1021,max:1200},bpXL:{min:1201}};var Or={};v(Or,{default:()=>no});var no={};var Ir={};v(Ir,{default:()=>co});var co={};var Mr={};v(Mr,{default:()=>ho});var ho={};var qr={};v(qr,{default:()=>po});var po={};var Nr={};v(Nr,{default:()=>bo});var bo={};var jr={};v(jr,{default:()=>go});var go={};function Ge(){let t=getComputedStyle(document.body).fontSize;return t=t===""?-1:t,parseFloat(t)}function vo(t,e){let r=t.min,a=t.max;Ge()>0&&Ge()!==16&&(r=r/16*Ge(),a=a/16*Ge());let i=r||0,d=a||Number.POSITIVE_INFINITY;return i<=e&&e<=d}function xo(t){let e={};t=t||window.innerWidth;let r;for(r in Ve)e[r]=vo(Ve[r],t);return e}var Xe="mobile",yo="tablet",_o="desktop";function Dr(t){let e=!1,r=xo();return(t===Xe&&r.bpXS||t===yo&&r.bpSM||t===_o&&(r.bpMED||r.bpLG||r.bpXL))&&(e=!0),e}var R="data-js-hook",_e="behavior_",Hr="state_";function O(){let t={};function e(o,i){return{}.hasOwnProperty.call(t,o)?t[o].push(i):t[o]=[i],this}function r(o,i){if(!{}.hasOwnProperty.call(t,o))return this;let d=t[o].indexOf(i);return d!==-1&&t[o].splice(d,1),this}function a(o,i){if(!{}.hasOwnProperty.call(t,o))return this;i=i||{};let d=t[o];for(let l=0,n=d.length;l<n;l++)d[l].call(this,i);return this}return this.addEventListener=e,this.removeEventListener=r,this.dispatchEvent=a,this.getRegisteredEvents=()=>t,this}function ue(t,e){if(!t)return!1;let r=t.getAttribute(R);return r?(r=r.split(" "),r.indexOf(e)>-1):!1}function q(t,e){if(ue(t,e))return e;if(e.indexOf(" ")!==-1){let a=R+" values cannot contain spaces!";throw new Error(a)}let r=t.getAttribute(R);return r!==null&&(e=r+" "+e),t.setAttribute(R,e),e}var Br=Hr+"atomic_init";function wo(t,e){if(!t||!t.classList){let r=t+' is not valid. Check that element is a DOM node with class "'+e+'"';throw new Error(r)}return t}function ko(t,e){let r=t.classList.contains(e)?t:t.querySelector("."+e);if(!r){let a=e+" not found on or in passed DOM node.";throw new Error(a)}return r}function K(t,e){return wo(t,e),ko(t,e)}function V(t){return ue(t,Br)?!1:(q(t,Br),!0)}function Z(t,e,r,a={}){let i=(r||document).querySelectorAll(t),d=[],l,n;for(let c=0,s=i.length;c<s;c++)n=i[c],ue(n,Br)===!1&&(l=new e(n),l.init(a),d.push(l));return d}function Vt(t,e){e=e||document;let r=[];try{r=e.querySelectorAll(t)}catch(a){let o=`${t} not found in DOM! ${a}`;throw new Error(o)}return r.length===0&&t.indexOf(_e)===-1&&(r=Gt(t,e)),r}function Eo(t,e,r,a){let o=[];t instanceof NodeList?o=t:t instanceof Node?o=[t]:typeof t=="string"&&(o=Vt(t,a));for(let i=0,d=o.length;i<d;i++)o[i].addEventListener(e,r,!1);return o}function Ke(t,e){let r;if(ue(t,e))return r=t,r;if(t){let a="["+R+"="+e+"]";r=t.querySelector(a)}if(!r){let a=e+" behavior not found on passed DOM node!";throw new Error(a)}return r}function Gt(t,e){return t=R+"*="+_e+t,t="["+t+"]",Vt(t,e)}var $e=Object.prototype.toString;function Xt(t){return typeof t=="undefined"}function Ao(t){return typeof t!="undefined"}function So(t){return t!==null&&typeof t=="object"}function Kt(t){return $e.call(t)==="[object String]"}function $o(t){return $e.call(t)==="[object Number]"}function Lo(t){return $e.call(t)==="[object Date]"}var zo=Array.isArray||function(e){return $e.call(e)==="[object Array]"};function To(t){return $e.call(t)==="[object Function]"}function Co(t){return Xt(t)||t===null||Kt(t)&&t.length<=0||/^\s*$/.test(t)}function Pr(){return!!new RegExp(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i).test(navigator.userAgent)}function k(t,e,r){let a=e,o=t;if(!r)throw new Error("Child transition argument must be defined!");let i=r,d,l,n,c=!1,s=!1,p=!1;if(typeof a.CSS_PROPERTY=="undefined"||typeof a.BASE_CLASS=="undefined")throw new Error("Transitions require CSS_PROPERTY and BASE_CLASS to be passed into BaseTransition.");function b(){l&&c?(o.addEventListener(l,n),i.dispatchEvent(k.BEGIN_EVENT,{target:i,type:k.BEGIN_EVENT}),o.classList.add(k.ANIMATING_CLASS),s=!0):(i.dispatchEvent(k.BEGIN_EVENT,{target:i,type:k.BEGIN_EVENT}),n())}function g(){o.removeEventListener(l,n)}function L(y){return y&&y.propertyName!==a.CSS_PROPERTY?!1:(g(),o.classList.remove(k.ANIMATING_CLASS),i.dispatchEvent(k.END_EVENT,{target:i,type:k.END_EVENT}),s=!1,!0)}function $(){let y;for(y in a)({}).hasOwnProperty.call(a,y)&&a[y]!==a.BASE_CLASS&&o.classList.contains(a[y])&&o.classList.remove(a[y])}function z(){s&&(o.style.webkitTransitionDuration="0",o.style.mozTransitionDuration="0",o.style.oTransitionDuration="0",o.style.transitionDuration="0",o.removeEventListener(l,n),n(),o.style.webkitTransitionDuration="",o.style.mozTransitionDuration="",o.style.oTransitionDuration="",o.style.transitionDuration="")}function N(){z(),$(),o.classList.remove(a.BASE_CLASS)}function Y(){o.classList.remove(k.NO_ANIMATION_CLASS),c=!0}function ee(){o.classList.add(k.NO_ANIMATION_CLASS),c=!1}function P(y){if(!y){let ye="Element does not have TransitionEnd event. It may be null!";throw new Error(ye)}let j,X={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},re;for(re in X)if({}.hasOwnProperty.call(X,re)&&typeof y.style[re]!="undefined"){j=X[re];break}return j}function x(y){N(),Y(),o=y,o.classList.add(a.BASE_CLASS),l=P(o)}function E(y){if(c=!o.classList.contains(k.NO_ANIMATION_CLASS),n=L.bind(this),x(o),!y)throw new Error("Transition needs to be passed an initial CSS class on initialization!");return o.classList.add(y),this}function T(y){return p||($(),p=!0),o.classList.contains(y)?!1:(g(),o.classList.remove(d),d=y,b(),o.classList.add(d),!0)}return this.animateOff=ee,this.animateOn=Y,this.applyClass=T,this.halt=z,this.init=E,this.isAnimated=()=>c,this.remove=N,this.setElement=x,this}k.BEGIN_EVENT="transitionbegin";k.END_EVENT="transitionend";k.NO_ANIMATION_CLASS="u-no-animation";k.ANIMATING_CLASS="u-is-animating";var Le=_e+"flyout-menu",Io="["+R+"="+Le;function de(t,e=!0){let r=Ke(t,Le),a=Y(t),o=Ke(t,Le+"_content"),i=0,d=0,l=1,n=2,c=3,s,p,b,g=ye.bind(this),L=re.bind(this),$,z=!0,N=!1;function Y(h){let u=[],f=h.querySelectorAll(`${Io}_trigger]`),m,S,te;for(let Q=f.length>>>0;Q--;){for(te=!1,m=f[Q],S=m.parentElement;S!==h;)S.getAttribute(R)&&S.getAttribute(R).split(" ").indexOf(Le)!==-1?(te=!0,S=h):S=S.parentElement;te||u.unshift(f[Q])}return u}function ee(h=!1){return i=h?c:d,a.forEach(u=>{P("expanded",u,h),u.addEventListener("click",y.bind(this)),u.addEventListener("touchstart",x,{passive:!0}),u.addEventListener("mouseover",E.bind(this)),u.addEventListener("mouseout",T.bind(this))}),o.setAttribute("data-open",h?"true":"false"),e&&!h&&o.setAttribute("hidden",""),Ue(),this}function P(h,u,f){let m=String(f);return u.setAttribute("aria-"+h,m),m}function x(){N=!0}function E(h){z||(N||this.dispatchEvent("triggerover",{target:this,trigger:h.target,type:"triggerover"}),N=!1)}function T(h){z||this.dispatchEvent("triggerout",{target:this,trigger:h.target,type:"triggerout"})}function y(h){if(!z)switch(this.dispatchEvent("triggerclick",{target:this,trigger:h.target,type:"triggerclick"}),h.preventDefault(),i){case d:case l:this.expand();break;case n:case c:this.collapse();break}}function j(){if(s==null||s.halt(),i===n||i===c)return this;if(i=n,e&&o.removeAttribute("hidden"),this.dispatchEvent("expandbegin",{target:this,type:"expandbegin"}),!p||!b)return L(),this;let h=s==null?void 0:s.isAnimated();return h&&s.addEventListener(k.END_EVENT,L),p(),h||L(),this}function X(){if(s==null||s.halt(),i===l||i===d)return this;for(let u=0,f=a.length;u<f;u++)P("expanded",a[u],!1);if(o.setAttribute("data-open","false"),i=l,this.dispatchEvent("collapsebegin",{target:this,type:"collapsebegin"}),!b||!p)return g(),this;let h=s==null?void 0:s.isAnimated();return h&&s.addEventListener(k.END_EVENT,g),b(),h||g(),this}function re(){i=c,o.setAttribute("data-open","true"),s&&s.removeEventListener(k.END_EVENT,L),this.dispatchEvent("expandend",{target:this,type:"expandend"});for(let h=0,u=a.length;h<u;h++)P("expanded",a[h],!0)}function ye(){i=d,e&&o.setAttribute("hidden",""),s&&s.removeEventListener(k.END_EVENT,g),this.dispatchEvent("collapseend",{target:this,type:"collapseend"})}function Re(h,u,f){s=h,u&&u!==b&&(b=u),f&&f!==p&&(p=f)}function Ar(){s&&s.remove();let h;s=h,p=h,b=h}function Sr(){return{container:r,content:o,trigger:a}}function Ue(){return z&&(z=!1),!z}function $r(){return z||(z=!0),z}function Lr(h){return $=h,this}let he=new O;return this.addEventListener=he.addEventListener,this.removeEventListener=he.removeEventListener,this.dispatchEvent=he.dispatchEvent,this.init=ee,this.expand=j,this.collapse=X,this.setTransition=Re,this.clearTransition=Ar,this.getData=()=>$,this.getTransition=()=>s,this.getDom=Sr,this.isAnimating=()=>i===n||i===l,this.isExpanded=()=>i===c,this.resume=Ue,this.setData=Lr,this.suspend=$r,de.BASE_CLASS=Le,this}var Ze={CSS_PROPERTY:"opacity",BASE_CLASS:"u-alpha-transition",ALPHA_100:"u-alpha-100",ALPHA_0:"u-alpha-0"};function Zt(t){let e=new O,r=new k(t,Ze,this);function a(d){return r.init(d),this}function o(){return r.applyClass(Ze.ALPHA_100),this}function i(){return r.applyClass(Ze.ALPHA_0),this}return this.addEventListener=e.addEventListener,this.dispatchEvent=e.dispatchEvent,this.removeEventListener=e.removeEventListener,this.animateOff=r.animateOff,this.animateOn=r.animateOn,this.halt=r.halt,this.isAnimated=r.isAnimated,this.remove=r.remove,this.setElement=r.setElement,this.fadeIn=o,this.fadeOut=i,this.init=a,this}Zt.CLASSES=Ze;var ze={CSS_PROPERTY:"max-height",BASE_CLASS:"u-max-height-transition",MH_DEFAULT:"u-max-height-default",MH_SUMMARY:"u-max-height-summary",MH_ZERO:"u-max-height-zero"};function U(t){let e=new O,r=new k(t,ze,this),a=0;function o(){let b=t.scrollHeight+"px";t.style.maxHeight=b}function i(){window.removeEventListener("load",i),o()}function d(p){return r.init(p),window.addEventListener("load",i),window.addEventListener("resize",()=>{o()}),this}function l(){return o(),r.applyClass(ze.MH_DEFAULT),(!a||t.scrollHeight>a)&&(a=t.scrollHeight),this}function n(){return r.applyClass(ze.MH_SUMMARY),a=t.scrollHeight,this}function c(){return r.applyClass(ze.MH_ZERO),a=t.scrollHeight,this}function s(){return t.style.maxHeight="",r.remove()}return this.addEventListener=e.addEventListener,this.dispatchEvent=e.dispatchEvent,this.removeEventListener=e.removeEventListener,this.animateOff=r.animateOff,this.animateOn=r.animateOn,this.halt=r.halt,this.isAnimated=r.isAnimated,this.setElement=r.setElement,this.refresh=o,this.remove=s,this.init=d,this.maxHeightDefault=l,this.maxHeightSummary=n,this.maxHeightZero=c,this}U.CLASSES=ze;var ne={CSS_PROPERTY:"transform",BASE_CLASS:"u-move-transition",MOVE_TO_ORIGIN:"u-move-to-origin",MOVE_LEFT:"u-move-left",MOVE_LEFT_2X:"u-move-left-2x",MOVE_LEFT_3X:"u-move-left-3x",MOVE_RIGHT:"u-move-right",MOVE_UP:"u-move-up"};function Wt(t){let e=new O,r=new k(t,ne,this);function a(n){return r.init(n),this}function o(){return r.applyClass(ne.MOVE_TO_ORIGIN),this}function i(n){n=n||1;let c=[ne.MOVE_LEFT,ne.MOVE_LEFT_2X,ne.MOVE_LEFT_3X];return r.applyClass(c[n-1]),this}function d(){return r.applyClass(ne.MOVE_RIGHT),this}function l(){return r.applyClass(ne.MOVE_UP),this}return this.addEventListener=e.addEventListener,this.dispatchEvent=e.dispatchEvent,this.removeEventListener=e.removeEventListener,this.animateOff=r.animateOff,this.animateOn=r.animateOn,this.halt=r.halt,this.isAnimated=r.isAnimated,this.setElement=r.setElement,this.remove=r.remove,this.init=a,this.moveLeft=()=>i(1),this.moveLeft2=()=>i(2),this.moveLeft3=()=>i(3),this.moveRight=d,this.moveToOrigin=o,this.moveUp=l,this}Wt.CLASSES=ne;var Rr={};v(Rr,{default:()=>qo});var qo={};var we="o-expandable";function le(t){let e=K(t,we),r,a,o,i,d;function l(){if(!V(e))return this;r=e.querySelector(`.${we}__header`),a=e.querySelector(`.${we}__content`),o=e.querySelector(`.${we}__label`);let s=e.classList.contains(`${we}--onload-open`);q(e,"behavior_flyout-menu"),q(r,"behavior_flyout-menu_trigger"),q(a,"behavior_flyout-menu_content");let p=s?U.CLASSES.MH_DEFAULT:U.CLASSES.MH_ZERO;return i=new U(a).init(p),d=new de(e),d.setTransition(i,i.maxHeightZero,i.maxHeightDefault),d.init(s),d.addEventListener("expandbegin",()=>{a.classList.remove("u-hidden"),this.dispatchEvent("expandbegin",{target:this})}),d.addEventListener("collapseend",()=>{a.classList.add("u-hidden")}),this}function n(){return o.textContent.trim()}this.init=l,this.expand=()=>d.expand(),this.collapse=()=>d.collapse(),this.isExpanded=()=>d.isExpanded(),this.refresh=()=>d.getTransition().refresh(),this.getLabelText=n;let c=new O;return this.addEventListener=c.addEventListener,this.removeEventListener=c.removeEventListener,this.dispatchEvent=c.dispatchEvent,this}le.BASE_CLASS=we;le.init=t=>Z(`.${le.BASE_CLASS}`,le,t);var Ur={};v(Ur,{default:()=>jo});var jo={};var We="o-expandable-group";function Je(t){let e=K(t,We),r=e.classList.contains(`${We}--accordion`),a,o;function i(l){let n=l.target;o&&o!==n&&o.collapse(),o=n}function d(l){return V(e)?(r&&(a=l,a.forEach(n=>{n.addEventListener("expandbegin",i)})),this):this}return this.init=d,this}Je.BASE_CLASS=We;Je.init=t=>{(t||document).querySelectorAll(`.${We}`).forEach(a=>{let o=Z(`.${le.BASE_CLASS}`,le,a);new Je(a).init(o)})};var Fr={};v(Fr,{default:()=>Ho});var Ho={};var ke="o-summary";function Ye(t){let e=K(t,ke),r=e.classList.contains(`${ke}--mobile`),a=e.querySelector(`.${ke}__content`),o=e.querySelector(`.${ke}__btn`),i,d,l;function n(){return V(e)?(window.addEventListener("load",c),this):this}function c(){window.removeEventListener("load",c),l=!g(),q(e,"behavior_flyout-menu"),q(a,"behavior_flyout-menu_content"),q(o,"behavior_flyout-menu_trigger"),d=new de(e,!1),i=new U(a),i.init(l?U.CLASSES.MH_SUMMARY:U.CLASSES.MH_DEFAULT),d.setTransition(i,i.maxHeightSummary,i.maxHeightDefault),d.addEventListener("triggerclick",L),d.init(),b(),window.addEventListener("resize",b),"onorientationchange"in window&&window.addEventListener("orientationchange",b),e.addEventListener("focusin",s),a.addEventListener("click",p)}function s(x){!l&&x.target!==o&&(o.click(),e.removeEventListener("focusin",s))}function p(x){x.target.tagName!=="A"&&d.isExpanded()&&i.refresh()}function b(){g()?ee():Y()}function g(){return r&&!Dr(Xe)||a.scrollHeight<=88}function L(){d.addEventListener("expandend",$)}function $(){N(),window.removeEventListener("resize",b),window.removeEventListener("orientationchange",b),d.removeEventListener("expandend",$),d.suspend(),i.remove()}function z(){o.classList.remove("u-hidden")}function N(){o.classList.add("u-hidden")}function Y(){return l&&(d.collapse(),i.animateOn(),z(),l=!1),!l}function ee(){return l||(i.animateOff(),d.expand(),N(),l=!0),l}let P=new O;return this.addEventListener=P.addEventListener,this.removeEventListener=P.removeEventListener,this.dispatchEvent=P.dispatchEvent,this.init=n,this}Ye.BASE_CLASS=ke;Ye.init=t=>Z(`.${ke}`,Ye,t);var Te="o-summary-minimal";function Qe(t){let e=K(t,Te),r=e.querySelector(`.${Te}__content`),a=e.querySelector(`.${Te}__btn`),o,i;function d(){return V(e)?(q(e,"behavior_flyout-menu"),q(r,"behavior_flyout-menu_content"),q(a,"behavior_flyout-menu_trigger"),window.addEventListener("load",l),this):this}function l(){window.removeEventListener("load",l),i=new de(e,!1),o=new U(r),o.init(U.CLASSES.MH_SUMMARY),i.setTransition(o,o.maxHeightSummary,o.maxHeightDefault),i.init(),e.addEventListener("focusin",n),r.addEventListener("click",c),i.collapse(),o.animateOn()}function n(p){p.target!==a&&(a.click(),e.removeEventListener("focusin",n))}function c(p){p.target.tagName!=="A"&&i.isExpanded()&&o.refresh()}let s=new O;return this.addEventListener=s.addEventListener,this.removeEventListener=s.removeEventListener,this.dispatchEvent=s.dispatchEvent,this.init=d,this}Qe.BASE_CLASS=Te;Qe.init=t=>Z(`.${Te}`,Qe,t);var Vr={};v(Vr,{default:()=>Ro});var Ro={};var Gr={};v(Gr,{default:()=>Fo});var Fo={};var Xr={};v(Xr,{default:()=>Go});var Go={};var Kr={};v(Kr,{default:()=>Ko});var Ko={};var Zr={};v(Zr,{default:()=>Wo});var Wo={};var Wr={};v(Wr,{default:()=>Yo});var Yo={};var Jr={};v(Jr,{default:()=>ei});var ei={};var Yr={};v(Yr,{default:()=>ti});var ti={};var Qr={};v(Qr,{default:()=>oi});var oi={};var ii;function di(t){return t.replace(/[-\\^$*+?.()|[\]{}]/g,"\\$&")}function ni(t,e){return RegExp(di(e.trim()),"i").test(t)}function li(t,e,r){let a=t,o=e,i=(r==null?void 0:r.maxSelections)||5,d=[],l=[],n=[],c=[],s=-1;function p(x){return o+"-"+x.value.trim().replace(/\s+/g,"-").toLowerCase()}function b(){return l.length>=i}function g(x){let E,T=[],y=!1;for(let j=0,X=x.length;j<X;j++)E=x[j],y=b()?!1:E.defaultSelected,T.push({id:p(E),value:E.value,text:E.text,checked:y}),y&&l.push(j);return T}function L(){return d=g(a),this}function $(x){return d[x].checked=!d[x].checked,l.length<i&&d[x].checked?(l.push(x),l.sort(),!0):(d[x].checked=!1,l=l.filter(function(E){return E!==x}),!1)}function z(x,E,T,y){return ni(E.text,y)&&x.push(T),x}function N(x){return Object.prototype.toString.call(x)!=="[object String]"&&(x=""),c=n,d.length>0&&(n=d.reduce(function(E,T,y){return z(E,T,y,x)},[])),s=-1,n}function Y(x){return d[x]}function ee(x){let E=n.length,T=E===0?d.length:E;x<0?s=-1:x>=T?s=T-1:s=x}function P(){return s}return this.init=L,this.toggleOption=$,this.getSelectedIndices=function(){return l},this.isAtMaxSelections=b,this.filterIndices=N,this.clearFilter=function(){return n=c=[],ii},this.getFilterIndices=function(){return n},this.getLastFilterIndices=function(){return c},this.getIndex=P,this.setIndex=ee,this.resetIndex=function(){return s=-1,s},this.getOption=Y,this}var Jt=li;function W(t,e,r){let a=document.createElement(t);return Object.keys(r).forEach(o=>{let i=r[o];o in a?a[o]=i:a.setAttribute(o,i)}),e&&e.appendChild(a),a}var er='<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="cf-icon-svg cf-icon-svg--error" viewBox="0 0 12 19"><path d="M11.383 13.644A1.03 1.03 0 0 1 9.928 15.1L6 11.172 2.072 15.1a1.03 1.03 0 1 1-1.455-1.456l3.928-3.928L.617 5.79a1.03 1.03 0 1 1 1.455-1.456L6 8.261l3.928-3.928a1.03 1.03 0 0 1 1.455 1.456L7.455 9.716z"/></svg>';var pi=er,J="o-multiselect",fi="a-checkbox",bi="a-text-input",Yt="prev",rr="next",et="Enter",mi=" ",Qt="Escape",gi="ArrowUp",ea="ArrowDown",ra="Tab",ta={renderTags:!0,maxSelections:5};function tr(t){t.classList.add(J);let e=K(t,J),r=!1,a,o,i,d,l,n,c,s,p,b,g,L=[],$;function z(){g.classList.remove("u-no-results"),g.classList.add("u-filtered");let h=i.getLastFilterIndices();for(let u=0,f=h.length;u<f;u++)L[h[u]].classList.remove("u-filter-match");h=i.getFilterIndices();for(let u=0,f=h.length;u<f;u++)L[h[u]].classList.add("u-filter-match")}function N(){g.classList.remove("u-filtered","u-no-results");for(let h=0,u=g.children.length;h<u;h++)g.children[h].classList.remove("u-filter-match");i.clearFilter()}function Y(){g.classList.add("u-no-results"),g.classList.remove("u-filtered")}function ee(h){return h.length>0?(z(),!0):(Y(),!1)}function P(h){N(),i.resetIndex();let u=i.filterIndices(h);ee(u)}function x(){return n.classList.add("u-active"),b.classList.remove("u-invisible"),b.setAttribute("aria-hidden",!1),$.dispatchEvent("expandbegin",{target:$}),$}function E(){return n.classList.remove("u-active"),b.classList.add("u-invisible"),b.setAttribute("aria-hidden",!0),i.resetIndex(),$.dispatchEvent("collapsebegin",{target:$}),$}function T(h){h===rr?i.setIndex(i.getIndex()+1):h===Yt&&i.setIndex(i.getIndex()-1);let u=i.getIndex();if(u>-1){let f=u,m=i.getFilterIndices();m.length>0&&(f=m[u]);let te=i.getOption(f).value,to=g.querySelector('[data-option="'+te+'"]').querySelector("input");r=!0,to.focus()}else r=!1,p.focus()}function y(){p.value="",N()}function j(h){let u=h.target;u.tagName==="BUTTON"&&(h.preventDefault(),u.removeEventListener("click",j),u.querySelector("label").click())}function X(h){if(h.key===mi||h.key===et){let u=h.target.querySelector("label");g.querySelector("#"+u.getAttribute("for")).click()}}function re(h){return a+"-"+h.value.trim().replace(/[^\w]/g,"-").toLowerCase()}function ye(h,u){let f=re(u),m=W("li",null,{"data-option":u.value}),S=W("button",m,{type:"button",class:"a-tag-filter",innerHTML:"<label for="+f+">"+u.text+pi+"</label>"});h.appendChild(m),S.addEventListener("click",j),S.addEventListener("keydown",X)}function Re(h){let u=i.getOption(h)||i.getOption(i.getIndex());if(u){if(u.checked){g.classList.contains("u-max-selections")&&g.classList.remove("u-max-selections");let f='[data-option="'+u.value+'"]',m=c.querySelector(f);typeof m!="undefined"&&m&&(c==null||c.removeChild(m))}else l!=null&&l.renderTags&&c&&ye(c,u);i.toggleOption(h),i.isAtMaxSelections()&&g.classList.add("u-max-selections"),$.dispatchEvent("selectionsupdated",{target:$})}i.resetIndex(),r=!1,b.getAttribute("aria-hidden")==="false"&&p.focus()}function Ar(h){Re(Number(h.target.getAttribute("data-index"))),y()}function Sr(){s.addEventListener("mousemove",function(f){let m=f.target;f.offsetX>m.offsetWidth-35?m.style.cursor="pointer":m.style.cursor="auto"}),s.addEventListener("mouseup",function(f){let m=f.target;f.offsetX>m.offsetWidth-35&&b.offsetHeight===140&&p.blur()}),p.addEventListener("input",function(){P(this.value)}),p.addEventListener("focus",function(){b.getAttribute("aria-hidden")==="true"&&x()}),p.addEventListener("blur",function(){!r&&b.getAttribute("aria-hidden")==="false"&&E()}),p.addEventListener("keydown",function(f){let m=f.key;b.getAttribute("aria-hidden")==="true"&&m!==ra&&x(),m===et?(f.preventDefault(),T(rr)):m===Qt?(y(),E()):m===ea?T(rr):m===ra&&!f.shiftKey&&b.getAttribute("aria-hidden")==="false"&&E()}),g.addEventListener("mousedown",function(){r=!0}),g.addEventListener("keydown",function(f){let m=f.key,S=f.target,te=S.checked;if(m===et){f.preventDefault(),S.checked=!te;let Q=new Event("change",{bubbles:!1,cancelable:!0});S.dispatchEvent(Q)}else m===Qt?(p.focus(),E()):m===gi?T(Yt):m===ea&&T(rr)}),b.addEventListener("mousedown",function(f){f.target.tagName==="LABEL"&&(r=!0)});let h=g.querySelectorAll("input");for(let f=0,m=h.length;f<m;f++)h[f].addEventListener("change",Ar);let u=c.querySelectorAll("button");for(let f=0,m=u.length;f<m;f++)u[f].addEventListener("click",j),u[f].addEventListener("keydown",X)}function Ue(){n=document.createElement("div"),n.className=J,c=W("ul",null,{className:"m-tag-group"}),s=W("header",n,{className:J+"__header"}),p=W("input",s,{className:J+"__search "+bi,type:"text",placeholder:o||"Select up to five",id:e.id,autocomplete:"off"}),b=W("fieldset",n,{className:J+"__fieldset u-invisible","aria-hidden":"true"});let h=J+"__options";i.isAtMaxSelections()&&(h+=" u-max-selections"),g=W("ul",b,{className:h});let u,f,m;for(let S=0,te=d.length;S<te;S++){u=d[S],f=re(u),m=i.getOption(S).checked;let Q=W("li",g,{"data-option":u.value,"data-cy":"multiselect-option",class:"m-form-field m-form-field--checkbox"});W("input",Q,{id:f,type:"checkbox",value:u.value,name:a,class:fi+" "+J+"__checkbox",checked:m,"data-index":S}),W("label",Q,{for:f,textContent:u.text,className:J+"__label a-label"}),L.push(Q),m&&(l!=null&&l.renderTags)&&ye(c,u)}return n.insertBefore(c,s),e.parentNode.insertBefore(n,e),n.appendChild(e),n}function $r(h=ta){if(!V(e))return this;if(Pr())return this;if($=this,a=e.name||e.id,o=e.getAttribute("placeholder"),d=e.options||[],l=Tr(Tr({},ta),h),d.length>0){i=new Jt(d,a,l).init();let u=Ue();e.parentNode.removeChild(e),e=u,V(e),Sr()}return this}function Lr(){return i}this.init=$r,this.expand=x,this.collapse=E;let he=new O;return this.addEventListener=he.addEventListener,this.removeEventListener=he.removeEventListener,this.dispatchEvent=he.dispatchEvent,this.getModel=Lr,this.updateSelections=Re,this.selectionClickHandler=j,this.selectionKeyDownHandler=X,this}tr.BASE_CLASS=J;tr.init=t=>Z(`.${J}`,tr,void 0,t);var rt={};v(rt,{default:()=>xi});var xi={};var tt={};v(tt,{default:()=>_i});var _i={};var at={};v(at,{default:()=>ki});var ki={};var ot={};v(ot,{default:()=>Ai});var Ai={};var it={};v(it,{default:()=>$i});var $i={};var dt={};v(dt,{default:()=>zi});var zi={};var nt={};v(nt,{default:()=>Ci});var Ci={};var lt={};v(lt,{default:()=>Ii});var Ii={};var ct={};v(ct,{default:()=>qi});var qi={};var st={};v(st,{default:()=>ji});var ji={};var ht={};v(ht,{default:()=>Hi});var Hi={};var ut={};v(ut,{default:()=>Pi});var Pi={};var pt={};v(pt,{default:()=>Ui});var Ui={};var ft={};v(ft,{default:()=>Vi});var Vi={};var bt={};v(bt,{default:()=>Xi});var Xi={};var mt={};v(mt,{default:()=>Zi});var Zi={};var gt={};v(gt,{default:()=>Ji});var Ji={};var vt={};v(vt,{default:()=>Qi});var Qi={};var xt={};v(xt,{default:()=>rd});var rd={};var yt={};v(yt,{default:()=>ad});var ad={};var ar=globalThis,or=ar.ShadowRoot&&(ar.ShadyCSS===void 0||ar.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,_t=Symbol(),aa=new WeakMap,Ce=class{constructor(e,r,a){if(this._$cssResult$=!0,a!==_t)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=e,this.t=r}get styleSheet(){let e=this.o,r=this.t;if(or&&e===void 0){let a=r!==void 0&&r.length===1;a&&(e=aa.get(r)),e===void 0&&((this.o=e=new CSSStyleSheet).replaceSync(this.cssText),a&&aa.set(r,e))}return e}toString(){return this.cssText}},B=t=>new Ce(typeof t=="string"?t:t+"",void 0,_t),F=(t,...e)=>{let r=t.length===1?t[0]:e.reduce(((a,o,i)=>a+(d=>{if(d._$cssResult$===!0)return d.cssText;if(typeof d=="number")return d;throw Error("Value passed to 'css' function must be a 'css' function result: "+d+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(o)+t[i+1]),t[0]);return new Ce(r,t,_t)},oa=(t,e)=>{if(or)t.adoptedStyleSheets=e.map((r=>r instanceof CSSStyleSheet?r:r.styleSheet));else for(let r of e){let a=document.createElement("style"),o=ar.litNonce;o!==void 0&&a.setAttribute("nonce",o),a.textContent=r.cssText,t.appendChild(a)}},wt=or?t=>t:t=>t instanceof CSSStyleSheet?(e=>{let r="";for(let a of e.cssRules)r+=a.cssText;return B(r)})(t):t;var{is:od,defineProperty:id,getOwnPropertyDescriptor:dd,getOwnPropertyNames:nd,getOwnPropertySymbols:ld,getPrototypeOf:cd}=Object,ce=globalThis,ia=ce.trustedTypes,sd=ia?ia.emptyScript:"",kt=ce.reactiveElementPolyfillSupport,Oe=(t,e)=>t,Et={toAttribute(t,e){switch(e){case Boolean:t=t?sd:null;break;case Object:case Array:t=t==null?t:JSON.stringify(t)}return t},fromAttribute(t,e){let r=t;switch(e){case Boolean:r=t!==null;break;case Number:r=t===null?null:Number(t);break;case Object:case Array:try{r=JSON.parse(t)}catch(a){r=null}}return r}},sa=(t,e)=>!od(t,e),da={attribute:!0,type:String,converter:Et,reflect:!1,useDefault:!1,hasChanged:sa},na,la;(na=Symbol.metadata)!=null||(Symbol.metadata=Symbol("metadata")),(la=ce.litPropertyMetadata)!=null||(ce.litPropertyMetadata=new WeakMap);var ae=class extends HTMLElement{static addInitializer(e){var r;this._$Ei(),((r=this.l)!=null?r:this.l=[]).push(e)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(e,r=da){if(r.state&&(r.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(e)&&((r=Object.create(r)).wrapped=!0),this.elementProperties.set(e,r),!r.noAccessor){let a=Symbol(),o=this.getPropertyDescriptor(e,a,r);o!==void 0&&id(this.prototype,e,o)}}static getPropertyDescriptor(e,r,a){var d;let{get:o,set:i}=(d=dd(this.prototype,e))!=null?d:{get(){return this[r]},set(l){this[r]=l}};return{get:o,set(l){let n=o==null?void 0:o.call(this);i==null||i.call(this,l),this.requestUpdate(e,n,a)},configurable:!0,enumerable:!0}}static getPropertyOptions(e){var r;return(r=this.elementProperties.get(e))!=null?r:da}static _$Ei(){if(this.hasOwnProperty(Oe("elementProperties")))return;let e=cd(this);e.finalize(),e.l!==void 0&&(this.l=[...e.l]),this.elementProperties=new Map(e.elementProperties)}static finalize(){if(this.hasOwnProperty(Oe("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(Oe("properties"))){let r=this.properties,a=[...nd(r),...ld(r)];for(let o of a)this.createProperty(o,r[o])}let e=this[Symbol.metadata];if(e!==null){let r=litPropertyMetadata.get(e);if(r!==void 0)for(let[a,o]of r)this.elementProperties.set(a,o)}this._$Eh=new Map;for(let[r,a]of this.elementProperties){let o=this._$Eu(r,a);o!==void 0&&this._$Eh.set(o,r)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(e){let r=[];if(Array.isArray(e)){let a=new Set(e.flat(1/0).reverse());for(let o of a)r.unshift(wt(o))}else e!==void 0&&r.push(wt(e));return r}static _$Eu(e,r){let a=r.attribute;return a===!1?void 0:typeof a=="string"?a:typeof e=="string"?e.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){var e;this._$ES=new Promise((r=>this.enableUpdating=r)),this._$AL=new Map,this._$E_(),this.requestUpdate(),(e=this.constructor.l)==null||e.forEach((r=>r(this)))}addController(e){var r,a;((r=this._$EO)!=null?r:this._$EO=new Set).add(e),this.renderRoot!==void 0&&this.isConnected&&((a=e.hostConnected)==null||a.call(e))}removeController(e){var r;(r=this._$EO)==null||r.delete(e)}_$E_(){let e=new Map,r=this.constructor.elementProperties;for(let a of r.keys())this.hasOwnProperty(a)&&(e.set(a,this[a]),delete this[a]);e.size>0&&(this._$Ep=e)}createRenderRoot(){var r;let e=(r=this.shadowRoot)!=null?r:this.attachShadow(this.constructor.shadowRootOptions);return oa(e,this.constructor.elementStyles),e}connectedCallback(){var e,r;(e=this.renderRoot)!=null||(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),(r=this._$EO)==null||r.forEach((a=>{var o;return(o=a.hostConnected)==null?void 0:o.call(a)}))}enableUpdating(e){}disconnectedCallback(){var e;(e=this._$EO)==null||e.forEach((r=>{var a;return(a=r.hostDisconnected)==null?void 0:a.call(r)}))}attributeChangedCallback(e,r,a){this._$AK(e,a)}_$ET(e,r){var i;let a=this.constructor.elementProperties.get(e),o=this.constructor._$Eu(e,a);if(o!==void 0&&a.reflect===!0){let d=(((i=a.converter)==null?void 0:i.toAttribute)!==void 0?a.converter:Et).toAttribute(r,a.type);this._$Em=e,d==null?this.removeAttribute(o):this.setAttribute(o,d),this._$Em=null}}_$AK(e,r){var i,d,l,n;let a=this.constructor,o=a._$Eh.get(e);if(o!==void 0&&this._$Em!==o){let c=a.getPropertyOptions(o),s=typeof c.converter=="function"?{fromAttribute:c.converter}:((i=c.converter)==null?void 0:i.fromAttribute)!==void 0?c.converter:Et;this._$Em=o,this[o]=(n=(l=s.fromAttribute(r,c.type))!=null?l:(d=this._$Ej)==null?void 0:d.get(o))!=null?n:null,this._$Em=null}}requestUpdate(e,r,a){var o,i;if(e!==void 0){let d=this.constructor,l=this[e];if(a!=null||(a=d.getPropertyOptions(e)),!(((o=a.hasChanged)!=null?o:sa)(l,r)||a.useDefault&&a.reflect&&l===((i=this._$Ej)==null?void 0:i.get(e))&&!this.hasAttribute(d._$Eu(e,a))))return;this.C(e,r,a)}this.isUpdatePending===!1&&(this._$ES=this._$EP())}C(e,r,{useDefault:a,reflect:o,wrapped:i},d){var l,n,c;a&&!((l=this._$Ej)!=null?l:this._$Ej=new Map).has(e)&&(this._$Ej.set(e,(n=d!=null?d:r)!=null?n:this[e]),i!==!0||d!==void 0)||(this._$AL.has(e)||(this.hasUpdated||a||(r=void 0),this._$AL.set(e,r)),o===!0&&this._$Em!==e&&((c=this._$Eq)!=null?c:this._$Eq=new Set).add(e))}_$EP(){return Ft(this,null,function*(){this.isUpdatePending=!0;try{yield this._$ES}catch(r){Promise.reject(r)}let e=this.scheduleUpdate();return e!=null&&(yield e),!this.isUpdatePending})}scheduleUpdate(){return this.performUpdate()}performUpdate(){var a,o;if(!this.isUpdatePending)return;if(!this.hasUpdated){if((a=this.renderRoot)!=null||(this.renderRoot=this.createRenderRoot()),this._$Ep){for(let[d,l]of this._$Ep)this[d]=l;this._$Ep=void 0}let i=this.constructor.elementProperties;if(i.size>0)for(let[d,l]of i){let{wrapped:n}=l,c=this[d];n!==!0||this._$AL.has(d)||c===void 0||this.C(d,void 0,l,c)}}let e=!1,r=this._$AL;try{e=this.shouldUpdate(r),e?(this.willUpdate(r),(o=this._$EO)==null||o.forEach((i=>{var d;return(d=i.hostUpdate)==null?void 0:d.call(i)})),this.update(r)):this._$EM()}catch(i){throw e=!1,this._$EM(),i}e&&this._$AE(r)}willUpdate(e){}_$AE(e){var r;(r=this._$EO)==null||r.forEach((a=>{var o;return(o=a.hostUpdated)==null?void 0:o.call(a)})),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(e)),this.updated(e)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(e){return!0}update(e){this._$Eq&&(this._$Eq=this._$Eq.forEach((r=>this._$ET(r,this[r])))),this._$EM()}updated(e){}firstUpdated(e){}},ca;ae.elementStyles=[],ae.shadowRootOptions={mode:"open"},ae[Oe("elementProperties")]=new Map,ae[Oe("finalized")]=new Map,kt==null||kt({ReactiveElement:ae}),((ca=ce.reactiveElementVersions)!=null?ca:ce.reactiveElementVersions=[]).push("2.1.0");var Me=globalThis,ir=Me.trustedTypes,ha=ir?ir.createPolicy("lit-html",{createHTML:t=>t}):void 0,$t="$lit$",oe=`lit$${Math.random().toFixed(9).slice(2)}$`,Lt="?"+oe,hd=`<${Lt}>`,be=document,qe=()=>be.createComment(""),Ne=t=>t===null||typeof t!="object"&&typeof t!="function",zt=Array.isArray,va=t=>zt(t)||typeof(t==null?void 0:t[Symbol.iterator])=="function",At=`[
|
|
2
|
-
\f\r]`,
|
|
3
|
-
\f\r"'\`<>=]|("|')|))|$)`,"g"),
|
|
4
|
-
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}q{quotes:"\u201C" "\u201D" "\u2018" "\u2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}:root{--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}body{color:var(--black);font-family:var(--font-stack);font-size:100%;line-height:1.375;-webkit-font-smoothing:antialiased}button,input,select,textarea{font-family:var(--font-stack);line-height:1.1875}input[type=date]{display:revert;min-height:35px;min-width:100px;padding-bottom:0;padding-top:0}input[type=date].a-text-input--full{min-width:100%}hr{border:none;border-top:1px solid var(--gray-40)}b,strong{font-weight:600}h1,h2,h3,h4,h5,h6{margin-top:0}.h1,h1{font-size:2.125em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.4411764706em;text-transform:inherit}blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7647058824em}@media only screen and (max-width:37.5em){blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7307692308em}.h2+.h1,.h2+h1,.h3+.h1,.h3+h1,.h4+.h1,.h4+h1,.h5+.h1,.h5+h1,.h6+.h1,.h6+h1,h2+.h1,h2+h1,h3+.h1,h3+h1,h4+.h1,h4+h1,h5+.h1,h5+h1,h6+.h1,h6+h1{margin-top:1.1538461538em}.h1,h1{font-size:1.625em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.5769230769em;text-transform:inherit}blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7307692308em}.h1+.h1,.h1+h1,.h3+.h1,.h3+h1,.h4+.h1,.h4+h1,.h5+.h1,.h5+h1,.h6+.h1,.h6+h1,h1+.h1,h1+h1,h3+.h1,h3+h1,h4+.h1,h4+h1,h5+.h1,h5+h1,h6+.h1,h6+h1{margin-top:1.1538461538em}}.h2,h2{font-size:1.625em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.5769230769em;text-transform:inherit}blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.7307692308em}.h1+.h2,.h1+h2,.h3+.h2,.h3+h2,.h4+.h2,.h4+h2,.h5+.h2,.h5+h2,.h6+.h2,.h6+h2,h1+.h2,h1+h2,h3+.h2,h3+h2,h4+.h2,h4+h2,h5+.h2,h5+h2,h6+.h2,h6+h2{margin-top:1.1538461538em}@media only screen and (max-width:37.5em){blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.3636363636em}.h2,h2{font-size:1.375em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.6818181818em;text-transform:inherit}.h1+.h2,.h1+h2,.h2+.h2,.h2+h2,.h4+.h2,.h4+h2,.h5+.h2,.h5+h2,.h6+.h2,.h6+h2,blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,h1+.h2,h1+h2,h2+.h2,h2+h2,h4+.h2,h4+h2,h5+.h2,h5+h2,h6+.h2,h6+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.3636363636em}}.h3,h3{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.6818181818em;text-transform:inherit}.h1+.h3,.h1+h3,.h2+.h3,.h2+h3,.h4+.h3,.h4+h3,.h5+.h3,.h5+h3,.h6+.h3,.h6+h3,blockquote+.h3,blockquote+h3,dl+.h3,dl+h3,figure+.h3,figure+h3,h1+.h3,h1+h3,h2+.h3,h2+h3,h4+.h3,h4+h3,h5+.h3,h5+h3,h6+.h3,h6+h3,img+.h3,img+h3,ol+.h3,ol+h3,p+.h3,p+h3,table+.h3,table+h3,ul+.h3,ul+h3{margin-top:1.3636363636em}@media only screen and (max-width:37.5em){.h3,h3{font-size:1.125em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.8333333333em;text-transform:inherit}.h1+.h3,.h1+h3,.h2+.h3,.h2+h3,.h3+.h3,.h3+h3,.h5+.h3,.h5+h3,.h6+.h3,.h6+h3,blockquote+.h3,blockquote+h3,dl+.h3,dl+h3,figure+.h3,figure+h3,h1+.h3,h1+h3,h2+.h3,h2+h3,h3+.h3,h3+h3,h5+.h3,h5+h3,h6+.h3,h6+h3,img+.h3,img+h3,ol+.h3,ol+h3,p+.h3,p+h3,table+.h3,table+h3,ul+.h3,ul+h3{margin-top:1.6666666667em}}.h4,h4{font-size:1.125em;font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.8333333333em;text-transform:inherit}.h1+.h4,.h1+h4,.h2+.h4,.h2+h4,.h3+.h4,.h3+h4,.h5+.h4,.h5+h4,.h6+.h4,.h6+h4,blockquote+.h4,blockquote+h4,dl+.h4,dl+h4,figure+.h4,figure+h4,h1+.h4,h1+h4,h2+.h4,h2+h4,h3+.h4,h3+h4,h5+.h4,h5+h4,h6+.h4,h6+h4,img+.h4,img+h4,ol+.h4,ol+h4,p+.h4,p+h4,table+.h4,table+h4,ul+.h4,ul+h4{margin-top:1.6666666667em}@media only screen and (max-width:37.5em){.h4,h4{font-size:1em;line-height:1.125;margin-bottom:.625em}}.h5,h5{font-size:.875em;font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.0714285714em;text-transform:uppercase}.h1+.h5,.h1+h5,.h2+.h5,.h2+h5,.h3+.h5,.h3+h5,.h4+.h5,.h4+h5,.h6+.h5,.h6+h5,blockquote+.h5,blockquote+h5,dl+.h5,dl+h5,figure+.h5,figure+h5,h1+.h5,h1+h5,h2+.h5,h2+h5,h3+.h5,h3+h5,h4+.h5,h4+h5,h6+.h5,h6+h5,img+.h5,img+h5,ol+.h5,ol+h5,p+.h5,p+h5,table+.h5,table+h5,ul+.h5,ul+h5{margin-top:2.1428571429em}.h6,h6{font-size:.75em;font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.25em;text-transform:uppercase}.h1+.h6,.h1+h6,.h2+.h6,.h2+h6,.h3+.h6,.h3+h6,.h4+.h6,.h4+h6,.h5+.h6,.h5+h6,blockquote+.h6,blockquote+h6,dl+.h6,dl+h6,figure+.h6,figure+h6,h1+.h6,h1+h6,h2+.h6,h2+h6,h3+.h6,h3+h6,h4+.h6,h4+h6,h5+.h6,h5+h6,img+.h6,img+h6,ol+.h6,ol+h6,p+.h6,p+h6,table+.h6,table+h6,ul+.h6,ul+h6{margin-top:2.5em}.lead-paragraph{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:15px;margin-top:0;text-transform:inherit}@media only screen and (max-width:37.5em){.lead-paragraph{font-size:1.125em;font-weight:400;letter-spacing:inherit;line-height:1.25;text-transform:inherit}}.superheading{font-size:3em;font-weight:400;line-height:1.25;margin-bottom:.4166666667em}blockquote,dl,figure,ol,p,table,ul{margin-bottom:.9375em;margin-top:0}blockquote:last-child,dl:last-child,figure:last-child,ol:last-child,p:last-child,table:last-child,ul:last-child{margin-bottom:0}p+ol,p+ul{margin-top:-.3125em}ol ol,ol ul,ul ol,ul ul{margin-top:.5em}li{margin-bottom:.5em}li:last-child,nav li{margin-bottom:0}a{border-color:var(--pacific);border-style:dotted;border-width:0;color:var(--pacific);text-decoration:none}a.visited,a:visited{border-color:var(--teal);color:var(--teal)}a.hover,a:hover{border-color:var(--pacific-dark);border-style:solid;color:var(--pacific-dark)}a.focus,a:focus{border-style:solid;outline:thin dotted;outline-offset:1px}a.active,a:active{border-color:var(--navy);border-style:solid;color:var(--navy)}dd a,li a,p a{border-bottom-width:1px}nav a{border-bottom-width:0}ul{list-style:square;padding-left:1.125em}ul ul{list-style-type:circle}ol{padding-left:1.3125em}ol li:nth-last-child(n+10),ol li:nth-last-child(n+10)~li{margin-left:.5625rem}ol ol{list-style-type:lower-alpha}ol ol li{margin-left:0!important}ol ol ol{list-style-type:lower-roman}nav ol,nav ol ol,nav ul,nav ul ul{list-style:none;list-style-image:none}caption{margin-bottom:.625em;text-align:left}td,th{padding:.625em}thead td,thead th{background:var(--gray-5);color:var(--black);font-size:1em;padding:.7142857143em;vertical-align:top}tbody tr,thead{border-bottom:1px solid var(--gray)}th{font-weight:600;text-align:left}thead th .h2,thead th .h3,thead th .h4,thead th .h5,thead th .h6,thead th h2,thead th h3,thead th h4,thead th h5,thead th h6{font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;text-transform:inherit}blockquote{margin-left:.9375em;margin-right:.9375em}@media only screen and (min-width:37.5625em){blockquote{margin-left:1.875em;margin-right:1.875em}}img{max-width:100%}figure{margin-left:0;margin-right:0}figure img{vertical-align:middle}code,pre{background:var(--gray-5);border-radius:4px;color:var(--black);font-family:Input Mono,Consolas,Monaco,Courier New,monospace}code{font-size:.8125em;padding:.2307692308em .2307692308em 0}pre{display:block;overflow-wrap:break-word;padding:.625em .9375em;white-space:pre-wrap}pre code{background-color:transparent;padding:0}button.a-btn::-moz-focus-inner,input.a-btn::-moz-focus-inner{border:0}.a-btn{align-items:center;appearance:none;border:0;border-radius:.25em;box-sizing:border-box;cursor:pointer;display:flex;font-size:1em;font-weight:500;gap:.625rem;height:fit-content;justify-content:center;margin:0;padding:.5em .875em;text-align:center;text-decoration:none;transition:background-color .1s;width:fit-content}.a-btn,.a-btn:link,.a-btn:visited{background-color:var(--pacific);color:var(--white)}.a-btn.focus,.a-btn.hover,.a-btn:focus,.a-btn:hover{background-color:var(--pacific-dark);color:var(--white)}.a-btn.focus,.a-btn:focus{outline:1px dotted var(--pacific);outline-offset:1px}.a-btn.active,.a-btn:active{background-color:var(--navy)}.a-btn--secondary,.a-btn--secondary:link,.a-btn--secondary:visited{background-color:var(--white);box-shadow:0 0 0 1px var(--pacific) inset;color:var(--pacific)}.a-btn--secondary.focus,.a-btn--secondary.hover,.a-btn--secondary:focus,.a-btn--secondary:hover{background-color:var(--pacific-10);box-shadow:0 0 0 1px var(--pacific-dark) inset;color:var(--pacific-dark)}.a-btn--secondary.focus,.a-btn--secondary:focus{outline-color:var(--pacific)}.a-btn--secondary.active,.a-btn--secondary:active{background-color:var(--pacific-20);box-shadow:0 0 0 1px var(--navy) inset;color:var(--navy)}.a-btn--warning,.a-btn--warning:link,.a-btn--warning:visited{background-color:var(--red-mid-dark);color:var(--white)}.a-btn--warning.focus,.a-btn--warning.hover,.a-btn--warning:focus,.a-btn--warning:hover{background-color:var(--red-dark)}.a-btn--warning.focus,.a-btn--warning:focus{outline-color:var(--red-mid-dark)}.a-btn--warning.active,.a-btn--warning:active{background-color:var(--gray-dark)}.a-btn--disabled,.a-btn--disabled.active,.a-btn--disabled.focus,.a-btn--disabled.hover,.a-btn--disabled:active,.a-btn--disabled:focus,.a-btn--disabled:hover,.a-btn--disabled:link,.a-btn--disabled:visited,.a-btn[disabled],.a-btn[disabled].active,.a-btn[disabled].focus,.a-btn[disabled].hover,.a-btn[disabled]:active,.a-btn[disabled]:focus,.a-btn[disabled]:hover,.a-btn[disabled]:link,.a-btn[disabled]:visited{background-color:var(--gray-20);color:var(--gray-dark);cursor:default;cursor:not-allowed}.a-btn--disabled.focus,.a-btn--disabled:focus,.a-btn[disabled].focus,.a-btn[disabled]:focus{outline-color:var(--gray-20)}@media only screen and (max-width:37.5em){.a-btn--full-on-xs{width:100%}}.a-btn:has(svg+span) span{order:3}.a-btn:has(span+svg) svg{flex:none;order:3}.a-btn:not(.a-btn--hide-icon):has(span+svg):before,.a-btn:not(.a-btn--hide-icon):has(svg+span):before{border-left:1px solid var(--pacific-60);content:"";order:2;place-self:normal}.a-btn--secondary:has(svg):before{border-color:var(--pacific-60)!important}.a-btn--warning:has(svg):before{border-color:var(--red-60)!important}.a-btn--disabled:has(svg):before,.a-btn[disabled]:has(svg):before{border-color:var(--gray-60)!important}.a-btn--hide-icon svg{display:none}:host{display:flex;width:fit-content}`;var ur,$a,pr=class pr extends C{constructor(){super();M(this,ur);this.disabled=!1,this.type=""}static get properties(){return{disabled:{type:Boolean},type:{type:String}}}render(){return I`<button class="${H(this,ur,$a)}" ?disabled="${this.disabled}"><slot></slot></button>`}static init(){window.customElements.get("cfpb-button")||window.customElements.define("cfpb-button",pr)}};ur=new WeakSet,$a=function(){let r="a-btn";switch(this.type){case"secondary":r+=" a-btn--secondary";break;case"warning":r+=" a-btn--warning";break;case"disabled":r+=" a-btn--disabled";break}return r},D(pr,"styles",F`${B(Sa)}`);var hr=pr;var La=`:root{--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}.no-js .u-js-only,.u-hide-if-js{display:none!important}.no-js .u-hide-if-js{display:block!important}@media screen{.u-print-only{display:none}}@media print{.u-screen-only{display:none}}.u-clearfix:after{clear:both;content:"";display:table}.u-visually-hidden{border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0 0 0 0)}@media only screen and (max-width:37.5em){.u-hide-on-mobile{display:none}}@media only screen and (min-width:37.5625em){.u-show-on-mobile{display:none}}.u-hidden{display:none!important}.u-invisible{visibility:hidden}.u-right{float:right}.u-nowrap{white-space:nowrap}.u-flexible-container{height:0;padding-bottom:56.25%;position:relative}.u-flexible-container__inner{height:100%;left:0;position:absolute;top:0;width:100%}.u-flexible-container--4-3{height:0;padding-bottom:75%;position:relative}.u-mt0{margin-top:0!important}.u-mb0{margin-bottom:0!important}.u-mt5{margin-top:5px!important}.u-mb5{margin-bottom:5px!important}.u-mt10{margin-top:10px!important}.u-mb10{margin-bottom:10px!important}.u-mt15{margin-top:15px!important}.u-mb15{margin-bottom:15px!important}.u-mt20{margin-top:20px!important}.u-mb20{margin-bottom:20px!important}.u-mt30{margin-top:30px!important}.u-mb30{margin-bottom:30px!important}.u-mt45{margin-top:45px!important}.u-mb45{margin-bottom:45px!important}.u-mt60{margin-top:60px!important}.u-mb60{margin-bottom:60px!important}.u-w100pct{width:100%}.u-w90pct{width:90%}.u-w80pct{width:80%}.u-w70pct{width:70%}.u-w60pct{width:60%}.u-w50pct{width:50%}.u-w40pct{width:40%}.u-w30pct{width:30%}.u-w20pct{width:20%}.u-w10pct{width:10%}.u-w75pct{width:75%}.u-w65pct{width:65%}.u-w25pct{width:25%}.u-w15pct{width:15%}.u-w66pct{width:66.6666666667%}.u-w33pct{width:33.3333333333%}.u-small-text,small{font-size:.875em}.u-small-text--subtle,small--subtle{color:var(--gray)}.u-no-animation{transition-duration:0s!important}.u-move-transition{transition:transform .25s ease-out}.u-move-to-origin{transform:translateZ(0)}.u-move-left{transform:translate3d(-100%,0,0)}.u-move-left-2x{transform:translate3d(-200%,0,0)}.u-move-left-3x{transform:translate3d(-300%,0,0)}.u-move-right{transform:translate3d(100%,0,0)}.u-move-up{transform:translate3d(0,-100%,0)}.u-alpha-transition{transition:opacity .25s linear}.u-alpha-100{opacity:1}.u-alpha-0{opacity:0}.u-max-height-transition{contain:paint;overflow:hidden;transition:max-height .2s ease-out}.u-max-height-zero{max-height:0!important}.u-max-height-summary{max-height:88px!important}:host .m-form-field{--choice-border:var(--choice-border-default);--choice-border-hover:var(--choice-border-hover-default);--choice-border-focus:var(--choice-border-focus-default);--choice-outline-focus:var(--choice-outline-focus-default);--choice-bg:var(--choice-bg-default);--choice-bg-selected:var(--choice-bg-selected-default);--choice-bg-selected-focus:var(--choice-bg-selected-focus-default);--choice-label-disabled:var(--choice-label-disabled-default);--choice-border-width-addendum:0}:host .m-form-field .a-text-input--full{width:100%}:host .m-form-field .a-label+.a-text-input{margin-top:.3125em}:host .m-form-field--checkbox .a-label,:host .m-form-field--radio .a-label{cursor:pointer;display:inline-grid;grid-template-columns:1.875em auto;overflow-wrap:anywhere;vertical-align:top}:host .m-form-field--checkbox .a-label:before,:host .m-form-field--radio .a-label:before{background-color:var(--choice-bg);border:1px solid var(--choice-border);content:"";display:inline-block;grid-row-end:3;grid-row-start:1;height:1.125em;left:1px;margin-right:10px;outline:var(--choice-border-width-addendum) solid var(--choice-border);position:relative;top:1px;vertical-align:top;width:1.125em}:host .m-form-field--checkbox .a-label.hover:before,:host .m-form-field--checkbox .a-label:hover:before,:host .m-form-field--radio .a-label.hover:before,:host .m-form-field--radio .a-label:hover:before{border-color:var(--choice-border-hover)}:host .m-form-field--checkbox .a-checkbox,:host .m-form-field--checkbox .a-radio,:host .m-form-field--radio .a-checkbox,:host .m-form-field--radio .a-radio{border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0 0 0 0)}:host .m-form-field--checkbox .a-checkbox.focus+.a-label,:host .m-form-field--checkbox .a-checkbox:focus+.a-label,:host .m-form-field--checkbox .a-radio.focus+.a-label,:host .m-form-field--checkbox .a-radio:focus+.a-label,:host .m-form-field--radio .a-checkbox.focus+.a-label,:host .m-form-field--radio .a-checkbox:focus+.a-label,:host .m-form-field--radio .a-radio.focus+.a-label,:host .m-form-field--radio .a-radio:focus+.a-label{outline:1px dotted var(--choice-outline-focus);outline-offset:1px}:host .m-form-field--checkbox .a-checkbox:disabled.focus+.a-label:before,:host .m-form-field--checkbox .a-checkbox:disabled.hover+.a-label:before,:host .m-form-field--checkbox .a-checkbox:disabled:checked+.a-label:before,:host .m-form-field--checkbox .a-checkbox:disabled:focus+.a-label:before,:host .m-form-field--checkbox .a-checkbox:disabled:hover+.a-label:before,:host .m-form-field--checkbox .a-radio:disabled.focus+.a-label:before,:host .m-form-field--checkbox .a-radio:disabled.hover+.a-label:before,:host .m-form-field--checkbox .a-radio:disabled:checked+.a-label:before,:host .m-form-field--checkbox .a-radio:disabled:focus+.a-label:before,:host .m-form-field--checkbox .a-radio:disabled:hover+.a-label:before,:host .m-form-field--radio .a-checkbox:disabled.focus+.a-label:before,:host .m-form-field--radio .a-checkbox:disabled.hover+.a-label:before,:host .m-form-field--radio .a-checkbox:disabled:checked+.a-label:before,:host .m-form-field--radio .a-checkbox:disabled:focus+.a-label:before,:host .m-form-field--radio .a-checkbox:disabled:hover+.a-label:before,:host .m-form-field--radio .a-radio:disabled.focus+.a-label:before,:host .m-form-field--radio .a-radio:disabled.hover+.a-label:before,:host .m-form-field--radio .a-radio:disabled:checked+.a-label:before,:host .m-form-field--radio .a-radio:disabled:focus+.a-label:before,:host .m-form-field--radio .a-radio:disabled:hover+.a-label:before{border-color:var(--choice-border);box-shadow:none;outline:none}:host .m-form-field--checkbox .a-checkbox:disabled+.a-label,:host .m-form-field--checkbox .a-radio:disabled+.a-label,:host .m-form-field--radio .a-checkbox:disabled+.a-label,:host .m-form-field--radio .a-radio:disabled+.a-label{color:var(--choice-label-disabled);cursor:not-allowed}:host .m-form-field--checkbox .a-checkbox:disabled+.a-label:before,:host .m-form-field--checkbox .a-radio:disabled+.a-label:before,:host .m-form-field--radio .a-checkbox:disabled+.a-label:before,:host .m-form-field--radio .a-radio:disabled+.a-label:before{outline:none}:host .m-form-field--checkbox:has(.a-checkbox:disabled),:host .m-form-field--checkbox:has(.a-radio:disabled),:host .m-form-field--radio:has(.a-checkbox:disabled),:host .m-form-field--radio:has(.a-radio:disabled){--choice-border:var(--choice-border-disabled);--choice-bg:var(--choice-bg-disabled);--choice-bg-selected:var(--choice-bg-selected-disabled)}:host .m-form-field--checkbox-error,:host .m-form-field--checkbox-success,:host .m-form-field--checkbox-warning,:host .m-form-field--radio-error,:host .m-form-field--radio-success,:host .m-form-field--radio-warning{--choice-border-width-addendum:1px}:host .m-form-field--checkbox-success,:host .m-form-field--radio-success{--choice-border:var(--choice-border-success)}:host .m-form-field--checkbox-warning,:host .m-form-field--radio-warning{--choice-border:var(--choice-border-warning)}:host .m-form-field--checkbox-error,:host .m-form-field--radio-error{--choice-border:var(--choice-border-error)}:host .m-form-field--checkbox .a-checkbox.focus+.a-label:before,:host .m-form-field--checkbox .a-checkbox:focus+.a-label:before{border-color:var(--choice-border-focus);box-shadow:0 0 0 1px var(--choice-border-focus);outline-color:var(--choice-border-focus)}:host .m-form-field--checkbox .a-checkbox.hover+.a-label:before,:host .m-form-field--checkbox .a-checkbox:hover+.a-label:before{border-color:var(--choice-border-hover);box-shadow:0 0 0 1px var(--choice-border-hover);outline-color:var(--choice-border-hover)}:host .m-form-field--checkbox .a-checkbox:checked+.a-label:before{background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="cf-icon-svg cf-icon-svg--approved" viewBox="0 0 12 19"><path d="M4.63 15.638a1.03 1.03 0 0 1-.79-.37L.36 11.09a1.03 1.03 0 1 1 1.58-1.316l2.535 3.043L9.958 3.32a1.029 1.029 0 0 1 1.783 1.03L5.52 15.122a1.03 1.03 0 0 1-.803.511l-.088.004z"/></svg>');background-position:center 0;background-repeat:no-repeat;background-size:auto 1.1875em}:host .m-form-field--checkbox .a-checkbox:disabled:checked+.a-label:before{background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%235a5d61" aria-hidden="true" viewBox="0 0 12 19"><path d="M4.63 15.638a1.03 1.03 0 0 1-.79-.37L.36 11.09a1.03 1.03 0 1 1 1.58-1.316l2.535 3.043L9.958 3.32a1.029 1.029 0 0 1 1.783 1.03L5.52 15.122a1.03 1.03 0 0 1-.803.511l-.088.004z"/></svg>')}:host .m-form-field--radio .a-label:before{border-radius:50%;transform:rotate(0deg)}:host .m-form-field--radio .a-radio.focus+.a-label:before,:host .m-form-field--radio .a-radio:focus+.a-label:before{border-color:var(--choice-border-focus);box-shadow:0 0 0 1px var(--choice-border-focus);outline:none}:host .m-form-field--radio .a-radio.hover+.a-label:before,:host .m-form-field--radio .a-radio:hover+.a-label:before{border-color:var(--choice-border-hover);box-shadow:0 0 0 1px var(--choice-border-hover);outline:none}:host .m-form-field--radio .a-radio:checked+.a-label:before{background-color:var(--choice-bg-selected);box-shadow:inset 0 0 0 2px var(--white)}:host .m-form-field--radio .a-radio.focus:checked+.a-label:before,:host .m-form-field--radio .a-radio:focus:checked+.a-label:before{background-color:var(--choice-bg-selected-focus);border-color:var(--choice-border-focus);box-shadow:0 0 0 1px var(--choice-border-focus),inset 0 0 0 2px var(--white)}:host .m-form-field--radio .a-radio.hover:checked+.a-label:before,:host .m-form-field--radio .a-radio:hover:checked+.a-label:before{border-color:var(--choice-border-hover);box-shadow:0 0 0 1px var(--choice-border-hover),inset 0 0 0 2px var(--white)}:host .m-form-field--radio .a-radio.hover:checked:disabled+.a-label:before,:host .m-form-field--radio .a-radio:checked:disabled+.a-label:before,:host .m-form-field--radio .a-radio:hover:checked:disabled+.a-label:before{background-color:var(--choice-bg-selected);border-color:var(--choice-border-disabled);box-shadow:inset 0 0 0 2px var(--gray-10)}:host .m-form-field--lg-target{display:block}:host .m-form-field--lg-target .a-label{background-color:var(--gray-10);box-sizing:border-box;padding:15px;width:100%}:host .m-form-field--lg-target .a-checkbox:checked+.a-label,:host .m-form-field--lg-target .a-radio:checked+.a-label{background-color:var(--pacific-20);box-shadow:inset 0 0 0 1px var(--pacific)}:host .m-form-field--lg-target .a-checkbox.focus+.a-label,:host .m-form-field--lg-target .a-checkbox.hover+.a-label,:host .m-form-field--lg-target .a-checkbox:focus+.a-label,:host .m-form-field--lg-target .a-checkbox:hover+.a-label,:host .m-form-field--lg-target .a-radio.focus+.a-label,:host .m-form-field--lg-target .a-radio.hover+.a-label,:host .m-form-field--lg-target .a-radio:focus+.a-label,:host .m-form-field--lg-target .a-radio:hover+.a-label{box-shadow:inset 0 0 0 2px var(--pacific)}:host .m-form-field--lg-target .a-checkbox.focus+.a-label,:host .m-form-field--lg-target .a-checkbox:checked+.a-label,:host .m-form-field--lg-target .a-checkbox:focus+.a-label,:host .m-form-field--lg-target .a-radio.focus+.a-label,:host .m-form-field--lg-target .a-radio:checked+.a-label,:host .m-form-field--lg-target .a-radio:focus+.a-label{outline-offset:1px}:host .m-form-field--lg-target .a-checkbox:checked:disabled+.a-label,:host .m-form-field--lg-target .a-checkbox:disabled+.a-label,:host .m-form-field--lg-target .a-checkbox:hover:disabled+.a-label,:host .m-form-field--lg-target .a-radio:checked:disabled+.a-label,:host .m-form-field--lg-target .a-radio:disabled+.a-label,:host .m-form-field--lg-target .a-radio:hover:disabled+.a-label{background-color:var(--gray-20);box-shadow:none;color:var(--choice-label-disabled)}:host .m-form-field--lg-target .a-checkbox:checked:disabled+.a-label,:host .m-form-field--lg-target .a-checkbox:checked:disabled+.a-label:before,:host .m-form-field--lg-target .a-radio:checked:disabled+.a-label,:host .m-form-field--lg-target .a-radio:checked:disabled+.a-label:before{border:1px solid var(--form-field-border-disabled)}`;var se,Ta,Ca,Oa,fr=class fr extends C{constructor(){super();M(this,se);this.disabled=!1,this.large=!1,this.validation="",this.type="checkbox"}static get properties(){return{checked:{type:Boolean,reflect:!0},disabled:{type:Boolean},large:{type:Boolean},validation:{type:String},type:{type:String}}}render(){return I`<div class="${H(this,se,Ta)}" ?large="${this.large}"><input class="a-${this.type}" type="${this.type}" id="${this.type}" ?disabled="${this.disabled}" .checked="${this.checked}" @change="${_(this,se,Ca)}" @input="${_(this,se,Oa)}"> <label class="a-label" for="${this.type}"><slot></slot></label></div>`}static init(){window.customElements.get("cfpb-form-choice")||window.customElements.define("cfpb-form-choice",fr)}};se=new WeakSet,Ta=function(){let r=`m-form-field m-form-field--${this.type}`;switch(this.validation){case"success":r+=` m-form-field--${this.type}-success`;break;case"warning":r+=` m-form-field--${this.type}-warning`;break;case"error":r+=` m-form-field--${this.type}-error`;break}return this.large&&(r+=" m-form-field--lg-target"),r},Ca=function(r){r.target.checked=this.checked,this.dispatchEvent(new Event("change",{bubbles:!0,composed:!0}))},Oa=function(){this.dispatchEvent(new Event("input",{bubbles:!0,composed:!0}))},D(fr,"styles",F`${B(La)}`);var za=fr;var{I:Al}=wa;var Ia=t=>t.strings===void 0;var br={ATTRIBUTE:1,CHILD:2,PROPERTY:3,BOOLEAN_ATTRIBUTE:4,EVENT:5,ELEMENT:6},De=t=>(...e)=>({_$litDirective$:t,values:e}),Ae=class{constructor(e){}get _$AU(){return this._$AM._$AU}_$AT(e,r,a){this._$Ct=e,this._$AM=r,this._$Ci=a}_$AS(e,r){return this.update(e,r)}update(e,r){return this.render(...r)}};var He=(t,e)=>{var a;let r=t._$AN;if(r===void 0)return!1;for(let o of r)(a=o._$AO)==null||a.call(o,e,!1),He(o,e);return!0},mr=t=>{let e,r;do{if((e=t._$AM)===void 0)break;r=e._$AN,r.delete(t),t=e}while((r==null?void 0:r.size)===0)},Ma=t=>{for(let e;e=t._$AM;t=e){let r=e._$AN;if(r===void 0)e._$AN=r=new Set;else if(r.has(t))break;r.add(t),md(e)}};function fd(t){this._$AN!==void 0?(mr(this),this._$AM=t,Ma(this)):this._$AM=t}function bd(t,e=!1,r=0){let a=this._$AH,o=this._$AN;if(o!==void 0&&o.size!==0)if(e)if(Array.isArray(a))for(let i=r;i<a.length;i++)He(a[i],!1),mr(a[i]);else a!=null&&(He(a,!1),mr(a));else He(this,t)}var md=t=>{var e,r;t.type==br.CHILD&&((e=t._$AP)!=null||(t._$AP=bd),(r=t._$AQ)!=null||(t._$AQ=fd))},gr=class extends Ae{constructor(){super(...arguments),this._$AN=void 0}_$AT(e,r,a){super._$AT(e,r,a),Ma(this),this.isConnected=e._$AU}_$AO(e,r=!0){var a,o;e!==this.isConnected&&(this.isConnected=e,e?(a=this.reconnected)==null||a.call(this):(o=this.disconnected)==null||o.call(this)),r&&(He(this,e),mr(this))}setValue(e){if(Ia(this._$Ct))this._$Ct._$AI(e,this);else{let r=[...this._$Ct._$AH];r[this._$Ci]=e,this._$Ct._$AI(r,this,0)}}disconnected(){}reconnected(){}};var Mt=()=>new It,It=class{},Ot=new WeakMap,qt=De(class extends gr{render(t){return A}update(t,[e]){var a;let r=e!==this.G;return r&&this.G!==void 0&&this.rt(void 0),(r||this.lt!==this.ct)&&(this.G=e,this.ht=(a=t.options)==null?void 0:a.host,this.rt(this.ct=t.element)),A}rt(t){var e;if(this.isConnected||(t=void 0),typeof this.G=="function"){let r=(e=this.ht)!=null?e:globalThis,a=Ot.get(r);a===void 0&&(a=new WeakMap,Ot.set(r,a)),a.get(this.G)!==void 0&&this.G.call(this.ht,void 0),a.set(this.G,t),t!==void 0&&this.G.call(this.ht,t)}else this.G.value=t}get lt(){var t,e,r;return typeof this.G=="function"?(e=Ot.get((t=this.ht)!=null?t:globalThis))==null?void 0:e.get(this.G):(r=this.G)==null?void 0:r.value}disconnected(){this.lt===this.ct&&this.rt(void 0)}reconnected(){this.rt(this.ct)}});var qa=":root{--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}:host{display:flex;flex-direction:column;width:fit-content}:host::part(upload-details)[hidden=true]{display:none}";var G,ja,Da,Nt,jt,vr=class vr extends C{constructor(){super();M(this,G);D(this,"fileInput",Mt());D(this,"fileDetails",Mt());_(this,G,Nt).call(this)}static get properties(){return{isDetailHidden:{type:Boolean,attribute:"hidden",reflect:!0},fileName:{type:String},accept:{type:String},value:{type:String},files:{type:FileList}}}render(){return I`<cfpb-button type="secondary" @click="${()=>{this.fileInput.value.click()}}"><slot></slot></cfpb-button><input class="a-btn a-btn--secondary" type="file" hidden accept="${this.accept}" @input="${()=>_(this,G,jt).call(this)}" @cancel="${()=>_(this,G,jt).call(this)}" ${qt(this.fileInput)}><div part="upload-details" ?hidden="${this.isDetailHidden}" ${qt(this.fileDetails)}><h4>File added</h4><ul><li>${this.fileName}</li></ul><p>To remove or replace your file, select a new file and upload again.</p></div>`}static init(){hr.init(),window.customElements.get("cfpb-file-upload")||window.customElements.define("cfpb-file-upload",vr)}};G=new WeakSet,ja=function(r){let a=r;if(a.indexOf("\\")>-1){let o=a.split("\\");a=o[o.length-1]}return a},Da=function(){this.fileName=_(this,G,ja).call(this,this.fileInput.value.value),this.value=this.fileInput.value.value,this.files=this.fileInput.value.files,this.isDetailHidden=!1},Nt=function(){this.fileName="",this.value="",this.files={},this.isDetailHidden=!0},jt=function(){this.fileInput.value.value==""?_(this,G,Nt).call(this):_(this,G,Da).call(this)},D(vr,"styles",F`${B(qa)}`);var Na=vr;var Be=class extends Ae{constructor(e){if(super(e),this.it=A,e.type!==br.CHILD)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(e){if(e===A||e==null)return this._t=void 0,this.it=e;if(e===ie)return e;if(typeof e!="string")throw Error(this.constructor.directiveName+"() called with a non-string value");if(e===this.it)return this._t;this.it=e;let r=[e];return r.raw=r,this._t={_$litType$:this.constructor.resultType,strings:r,values:[]}}};Be.directiveName="unsafeHTML",Be.resultType=1;var Ha=De(Be);var Ba=":root{--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}:host button{background-color:var(--teal-20);border:1px solid var(--teal);border-radius:.1875rem;color:var(--black);display:flex;font-size:1rem;gap:.625rem;line-height:1.1875;min-width:fit-content;padding:4px 6px;text-align:left}:host button:hover{background-color:var(--teal-40);cursor:pointer}:host button:focus{outline:1px dotted var(--teal);outline-offset:1px}:host button:active{background-color:var(--teal-60)}:host svg{flex:none;height:1.1875rem;pointer-events:none}:host label{display:contents;pointer-events:none}";var xr,Ra,yr=class yr extends C{constructor(){super();M(this,xr);this.for=""}static get properties(){return{for:{type:String}}}render(){let r=this.for===""?I`<slot></slot>`:I`<label for="${this.for}"><slot></slot></label>`;return I`<button @click="${_(this,xr,Ra)}">${r} ${Ha(er)}</button>`}static init(){window.customElements.get("cfpb-tag-filter")||window.customElements.define("cfpb-tag-filter",yr)}};xr=new WeakSet,Ra=function(){this.dispatchEvent(new CustomEvent("tag-click",{detail:{target:this},bubbles:!1,composed:!1}))},D(yr,"styles",F`${B(Ba)}`);var Pa=yr;var Ua=`@charset "UTF-8";
|
|
5
|
-
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}q{quotes:"\u201C" "\u201D" "\u2018" "\u2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}:root{--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}body{color:var(--black);font-family:var(--font-stack);font-size:100%;line-height:1.375;-webkit-font-smoothing:antialiased}button,input,select,textarea{font-family:var(--font-stack);line-height:1.1875}input[type=date]{display:revert;min-height:35px;min-width:100px;padding-bottom:0;padding-top:0}input[type=date].a-text-input--full{min-width:100%}hr{border:none;border-top:1px solid var(--gray-40)}b,strong{font-weight:600}h1,h2,h3,h4,h5,h6{margin-top:0}.h1,h1{font-size:2.125em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.4411764706em;text-transform:inherit}blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7647058824em}@media only screen and (max-width:37.5em){blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7307692308em}.h2+.h1,.h2+h1,.h3+.h1,.h3+h1,.h4+.h1,.h4+h1,.h5+.h1,.h5+h1,.h6+.h1,.h6+h1,h2+.h1,h2+h1,h3+.h1,h3+h1,h4+.h1,h4+h1,h5+.h1,h5+h1,h6+.h1,h6+h1{margin-top:1.1538461538em}.h1,h1{font-size:1.625em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.5769230769em;text-transform:inherit}blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7307692308em}.h1+.h1,.h1+h1,.h3+.h1,.h3+h1,.h4+.h1,.h4+h1,.h5+.h1,.h5+h1,.h6+.h1,.h6+h1,h1+.h1,h1+h1,h3+.h1,h3+h1,h4+.h1,h4+h1,h5+.h1,h5+h1,h6+.h1,h6+h1{margin-top:1.1538461538em}}.h2,h2{font-size:1.625em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.5769230769em;text-transform:inherit}blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.7307692308em}.h1+.h2,.h1+h2,.h3+.h2,.h3+h2,.h4+.h2,.h4+h2,.h5+.h2,.h5+h2,.h6+.h2,.h6+h2,h1+.h2,h1+h2,h3+.h2,h3+h2,h4+.h2,h4+h2,h5+.h2,h5+h2,h6+.h2,h6+h2{margin-top:1.1538461538em}@media only screen and (max-width:37.5em){blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.3636363636em}.h2,h2{font-size:1.375em;font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.6818181818em;text-transform:inherit}.h1+.h2,.h1+h2,.h2+.h2,.h2+h2,.h4+.h2,.h4+h2,.h5+.h2,.h5+h2,.h6+.h2,.h6+h2,blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,h1+.h2,h1+h2,h2+.h2,h2+h2,h4+.h2,h4+h2,h5+.h2,h5+h2,h6+.h2,h6+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.3636363636em}}.h3,h3{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.6818181818em;text-transform:inherit}.h1+.h3,.h1+h3,.h2+.h3,.h2+h3,.h4+.h3,.h4+h3,.h5+.h3,.h5+h3,.h6+.h3,.h6+h3,blockquote+.h3,blockquote+h3,dl+.h3,dl+h3,figure+.h3,figure+h3,h1+.h3,h1+h3,h2+.h3,h2+h3,h4+.h3,h4+h3,h5+.h3,h5+h3,h6+.h3,h6+h3,img+.h3,img+h3,ol+.h3,ol+h3,p+.h3,p+h3,table+.h3,table+h3,ul+.h3,ul+h3{margin-top:1.3636363636em}@media only screen and (max-width:37.5em){.h3,h3{font-size:1.125em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.8333333333em;text-transform:inherit}.h1+.h3,.h1+h3,.h2+.h3,.h2+h3,.h3+.h3,.h3+h3,.h5+.h3,.h5+h3,.h6+.h3,.h6+h3,blockquote+.h3,blockquote+h3,dl+.h3,dl+h3,figure+.h3,figure+h3,h1+.h3,h1+h3,h2+.h3,h2+h3,h3+.h3,h3+h3,h5+.h3,h5+h3,h6+.h3,h6+h3,img+.h3,img+h3,ol+.h3,ol+h3,p+.h3,p+h3,table+.h3,table+h3,ul+.h3,ul+h3{margin-top:1.6666666667em}}.h4,h4{font-size:1.125em;font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.8333333333em;text-transform:inherit}.h1+.h4,.h1+h4,.h2+.h4,.h2+h4,.h3+.h4,.h3+h4,.h5+.h4,.h5+h4,.h6+.h4,.h6+h4,blockquote+.h4,blockquote+h4,dl+.h4,dl+h4,figure+.h4,figure+h4,h1+.h4,h1+h4,h2+.h4,h2+h4,h3+.h4,h3+h4,h5+.h4,h5+h4,h6+.h4,h6+h4,img+.h4,img+h4,ol+.h4,ol+h4,p+.h4,p+h4,table+.h4,table+h4,ul+.h4,ul+h4{margin-top:1.6666666667em}@media only screen and (max-width:37.5em){.h4,h4{font-size:1em;line-height:1.125;margin-bottom:.625em}}.h5,h5{font-size:.875em;font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.0714285714em;text-transform:uppercase}.h1+.h5,.h1+h5,.h2+.h5,.h2+h5,.h3+.h5,.h3+h5,.h4+.h5,.h4+h5,.h6+.h5,.h6+h5,blockquote+.h5,blockquote+h5,dl+.h5,dl+h5,figure+.h5,figure+h5,h1+.h5,h1+h5,h2+.h5,h2+h5,h3+.h5,h3+h5,h4+.h5,h4+h5,h6+.h5,h6+h5,img+.h5,img+h5,ol+.h5,ol+h5,p+.h5,p+h5,table+.h5,table+h5,ul+.h5,ul+h5{margin-top:2.1428571429em}.h6,h6{font-size:.75em;font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.25em;text-transform:uppercase}.h1+.h6,.h1+h6,.h2+.h6,.h2+h6,.h3+.h6,.h3+h6,.h4+.h6,.h4+h6,.h5+.h6,.h5+h6,blockquote+.h6,blockquote+h6,dl+.h6,dl+h6,figure+.h6,figure+h6,h1+.h6,h1+h6,h2+.h6,h2+h6,h3+.h6,h3+h6,h4+.h6,h4+h6,h5+.h6,h5+h6,img+.h6,img+h6,ol+.h6,ol+h6,p+.h6,p+h6,table+.h6,table+h6,ul+.h6,ul+h6{margin-top:2.5em}.lead-paragraph{font-size:1.375em;font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:15px;margin-top:0;text-transform:inherit}@media only screen and (max-width:37.5em){.lead-paragraph{font-size:1.125em;font-weight:400;letter-spacing:inherit;line-height:1.25;text-transform:inherit}}.superheading{font-size:3em;font-weight:400;line-height:1.25;margin-bottom:.4166666667em}blockquote,dl,figure,ol,p,table,ul{margin-bottom:.9375em;margin-top:0}blockquote:last-child,dl:last-child,figure:last-child,ol:last-child,p:last-child,table:last-child,ul:last-child{margin-bottom:0}p+ol,p+ul{margin-top:-.3125em}ol ol,ol ul,ul ol,ul ul{margin-top:.5em}li{margin-bottom:.5em}li:last-child,nav li{margin-bottom:0}a{border-color:var(--pacific);border-style:dotted;border-width:0;color:var(--pacific);text-decoration:none}a.visited,a:visited{border-color:var(--teal);color:var(--teal)}a.hover,a:hover{border-color:var(--pacific-dark);border-style:solid;color:var(--pacific-dark)}a.focus,a:focus{border-style:solid;outline:thin dotted;outline-offset:1px}a.active,a:active{border-color:var(--navy);border-style:solid;color:var(--navy)}dd a,li a,p a{border-bottom-width:1px}nav a{border-bottom-width:0}ul{list-style:square;padding-left:1.125em}ul ul{list-style-type:circle}ol{padding-left:1.3125em}ol li:nth-last-child(n+10),ol li:nth-last-child(n+10)~li{margin-left:.5625rem}ol ol{list-style-type:lower-alpha}ol ol li{margin-left:0!important}ol ol ol{list-style-type:lower-roman}nav ol,nav ol ol,nav ul,nav ul ul{list-style:none;list-style-image:none}caption{margin-bottom:.625em;text-align:left}td,th{padding:.625em}thead td,thead th{background:var(--gray-5);color:var(--black);font-size:1em;padding:.7142857143em;vertical-align:top}tbody tr,thead{border-bottom:1px solid var(--gray)}th{font-weight:600;text-align:left}thead th .h2,thead th .h3,thead th .h4,thead th .h5,thead th .h6,thead th h2,thead th h3,thead th h4,thead th h5,thead th h6{font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;text-transform:inherit}blockquote{margin-left:.9375em;margin-right:.9375em}@media only screen and (min-width:37.5625em){blockquote{margin-left:1.875em;margin-right:1.875em}}img{max-width:100%}figure{margin-left:0;margin-right:0}figure img{vertical-align:middle}code,pre{background:var(--gray-5);border-radius:4px;color:var(--black);font-family:Input Mono,Consolas,Monaco,Courier New,monospace}code{font-size:.8125em;padding:.2307692308em .2307692308em 0}pre{display:block;overflow-wrap:break-word;padding:.625em .9375em;white-space:pre-wrap}pre code{background-color:transparent;padding:0}.no-js .u-js-only,.u-hide-if-js{display:none!important}.no-js .u-hide-if-js{display:block!important}@media screen{.u-print-only{display:none}}@media print{.u-screen-only{display:none}}.u-clearfix:after{clear:both;content:"";display:table}.u-visually-hidden{border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0 0 0 0)}@media only screen and (max-width:37.5em){.u-hide-on-mobile{display:none}}@media only screen and (min-width:37.5625em){.u-show-on-mobile{display:none}}.u-hidden{display:none!important}.u-invisible{visibility:hidden}.u-right{float:right}.u-nowrap{white-space:nowrap}.u-flexible-container{height:0;padding-bottom:56.25%;position:relative}.u-flexible-container__inner{height:100%;left:0;position:absolute;top:0;width:100%}.u-flexible-container--4-3{height:0;padding-bottom:75%;position:relative}.u-mt0{margin-top:0!important}.u-mb0{margin-bottom:0!important}.u-mt5{margin-top:5px!important}.u-mb5{margin-bottom:5px!important}.u-mt10{margin-top:10px!important}.u-mb10{margin-bottom:10px!important}.u-mt15{margin-top:15px!important}.u-mb15{margin-bottom:15px!important}.u-mt20{margin-top:20px!important}.u-mb20{margin-bottom:20px!important}.u-mt30{margin-top:30px!important}.u-mb30{margin-bottom:30px!important}.u-mt45{margin-top:45px!important}.u-mb45{margin-bottom:45px!important}.u-mt60{margin-top:60px!important}.u-mb60{margin-bottom:60px!important}.u-w100pct{width:100%}.u-w90pct{width:90%}.u-w80pct{width:80%}.u-w70pct{width:70%}.u-w60pct{width:60%}.u-w50pct{width:50%}.u-w40pct{width:40%}.u-w30pct{width:30%}.u-w20pct{width:20%}.u-w10pct{width:10%}.u-w75pct{width:75%}.u-w65pct{width:65%}.u-w25pct{width:25%}.u-w15pct{width:15%}.u-w66pct{width:66.6666666667%}.u-w33pct{width:33.3333333333%}.u-small-text,small{font-size:.875em}.u-small-text--subtle,small--subtle{color:var(--gray)}.u-no-animation{transition-duration:0s!important}.u-move-transition{transition:transform .25s ease-out}.u-move-to-origin{transform:translateZ(0)}.u-move-left{transform:translate3d(-100%,0,0)}.u-move-left-2x{transform:translate3d(-200%,0,0)}.u-move-left-3x{transform:translate3d(-300%,0,0)}.u-move-right{transform:translate3d(100%,0,0)}.u-move-up{transform:translate3d(0,-100%,0)}.u-alpha-transition{transition:opacity .25s linear}.u-alpha-100{opacity:1}.u-alpha-0{opacity:0}.u-max-height-transition{contain:paint;overflow:hidden;transition:max-height .2s ease-out}.u-max-height-zero{max-height:0!important}.u-max-height-summary{max-height:88px!important}:host .a-tag-topic{display:flex;gap:.3125rem;text-decoration:none}:host .a-tag-topic{color:var(--gold-80);font-size:.875rem;font-weight:600;letter-spacing:1px;text-transform:uppercase}:host .a-tag-topic .a-tag-topic__text{color:var(--gray);word-break:break-word}@media only screen and (max-width:37.5em){:host .a-tag-topic{align-items:center;box-sizing:border-box;display:flex;gap:.3125rem;padding-bottom:.625em;padding-top:.625em;position:relative;width:100%}:host .a-tag-topic .cf-icon-svg--right{margin-left:auto}:host .a-tag-topic .a-tag-topic__text{border-bottom-width:0;flex-shrink:10}}:host a.a-tag-topic{border-color:var(--gold-80);color:var(--gold-80)}:host a.a-tag-topic.visited,:host a.a-tag-topic:visited{border-color:var(--gold-80);color:var(--gold-80)}:host a.a-tag-topic.hover,:host a.a-tag-topic:hover{border-color:var(--gold-80);color:var(--gold-80)}:host a.a-tag-topic.focus,:host a.a-tag-topic:focus{border-color:var(--gold-80);color:var(--gold-80)}:host a.a-tag-topic.active,:host a.a-tag-topic:active{border-color:var(--gold-80);color:var(--gold-80)}:host a.a-tag-topic .a-tag-topic__text{border-bottom-color:var(--gold-80)}@media only screen and (max-width:37.5em){:host a.a-tag-topic{border-bottom-width:1px;border-top-width:1px}:host a.a-tag-topic:focus{outline:none}:host a.a-tag-topic:focus:after{content:"";display:block;height:100%;outline:1px dotted var(--gray);outline-offset:2px;position:absolute;width:100%}}@media only screen and (max-width:37.5em){:host a.a-tag-topic--no-top-border{border-top:none;position:relative}:host a.a-tag-topic:focus:before,:host a.a-tag-topic:hover:before{border-top:1px solid;content:"";display:block;height:1px;position:absolute;top:-1px;width:100%}}:host .a-tag-topic__bullet{font-size:1rem;line-height:1rem}@media only screen and (min-width:37.5625em){:host a.a-tag-topic__text{border-color:var(--gray);color:var(--gray)}:host a.a-tag-topic__text.visited,:host a.a-tag-topic__text:visited{border-color:var(--gray);color:var(--gray)}:host a.a-tag-topic__text.hover,:host a.a-tag-topic__text:hover{border-color:var(--gray);color:var(--gray)}:host a.a-tag-topic__text.focus,:host a.a-tag-topic__text:focus{border-color:var(--gray);color:var(--gray)}:host a.a-tag-topic__text.active,:host a.a-tag-topic__text:active{border-color:var(--gray);color:var(--gray)}:host a.a-tag-topic,:host a.a-tag-topic:active,:host a.a-tag-topic:focus,:host a.a-tag-topic:hover,:host a.a-tag-topic:visited{border-bottom:none;outline-offset:1px}:host a.a-tag-topic .a-tag-topic__text,:host a.a-tag-topic:active .a-tag-topic__text,:host a.a-tag-topic:focus .a-tag-topic__text,:host a.a-tag-topic:hover .a-tag-topic__text,:host a.a-tag-topic:visited .a-tag-topic__text{border-bottom:1px dotted var(--gold-80);padding-bottom:1px}:host a.a-tag-topic:hover .a-tag-topic__text{border-bottom:1px solid var(--gold-80)}:host a.a-tag-topic:focus{outline-color:var(--gray)}:host a.a-tag-topic:focus .a-tag-topic__text{border-bottom-style:solid!important}}`;var _r,Va,wr=class wr extends C{constructor(){super();M(this,_r);this.href="",this.siblingOfJumpLink=!1}static get properties(){return{href:{type:String,reflect:!0},siblingOfJumpLink:{type:Boolean}}}render(){let r=I`<span class="a-tag-topic__bullet" aria-hidden="true">•</span>`,a=this.href===""?I`<span class="a-tag-topic">${r}<span class="a-tag-topic__text"><slot></slot></span></span>`:I`<a class="${H(this,_r,Va)}" href="${this.href}">${r}<span class="a-tag-topic__text"><slot></slot></span></a>`;return I`${a}`}static init(){window.customElements.get("cfpb-tag-topic")||window.customElements.define("cfpb-tag-topic",wr)}};_r=new WeakSet,Va=function(){let r="a-tag-topic";return this.siblingOfJumpLink&&(r+=" a-tag-topic--no-top-border"),r},D(wr,"styles",F`${B(Ua)}`);var Fa=wr;var Ga=":root{--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}:host ul{list-style-type:none;padding-left:0}:host ul li{display:contents;margin-bottom:0}@media only screen and (min-width:37.5625em){:host ul{display:flex;flex-wrap:wrap;gap:.9375rem}:host ul[stacked]{flex-direction:column;width:fit-content}}:host ul:has(cfpb-tag-filter){display:flex;flex-wrap:wrap;gap:.9375rem}:host html[lang=ar]{direction:rtl;padding-right:0}";var Xa=["CFPB-TAG-FILTER","CFPB-TAG-TOPIC"],Se,Pe,xe,w,Za,Dt,Wa,Ja,Ya,Ht,Qa,eo,Bt,kr,ro,Er=class Er extends C{constructor(){super();M(this,w);M(this,Se);M(this,Pe,!1);M(this,xe);this.stacked=!1,this.tagList=[],Fe(this,Se,new MutationObserver(_(this,w,Wa).bind(this)))}static get properties(){return{stacked:{type:Boolean,reflect:!0},tagList:{type:Array}}}connectedCallback(){super.connectedCallback(),_(this,w,Za).call(this)}disconnectedCallback(){H(this,Se).disconnect(),super.disconnectedCallback()}firstUpdated(){requestAnimationFrame(()=>{Xa.forEach(r=>{this.querySelectorAll(`${r.toLowerCase()}`).forEach(o=>this.addTag(o))}),Fe(this,Pe,!0)})}addTag(r,a=-1){if(!Array.from(this.children).includes(r))return _(this,w,Qa).call(this,r,a),!1;_(this,w,eo).call(this,r,a),_(this,w,Ht).call(this)}removeTag(r){let a=_(this,w,ro).call(this,r);_(this,w,kr).call(this,a)}render(){return I`<ul ?stacked="${this.stacked}"></ul>`}static init(){window.customElements.get("cfpb-tag-group")||window.customElements.define("cfpb-tag-group",Er)}};Se=new WeakMap,Pe=new WeakMap,xe=new WeakMap,w=new WeakSet,Za=function(){H(this,Se).observe(this,{childList:!0,subtree:!1})},Dt=function(r){return Xa.includes(r)},Wa=function(r){if(H(this,Pe))for(let a of r)a.type==="childList"&&(a.addedNodes.forEach(o=>_(this,w,Ja).call(this,o)),a.removedNodes.forEach(o=>_(this,w,Ya).call(this,o)))},Ja=function(r){if(_(this,w,Dt).call(this,r.tagName)){let a=Array.from(this.children).indexOf(r);this.addTag(r,a)}},Ya=function(r){_(this,w,Dt).call(this,r.tagName)&&_(this,w,kr).call(this,r)},Ht=function(){if(this.tagList=[...this.renderRoot.querySelectorAll("ul li > *")],this.tagList.length>0){let r=!1;this.tagList.forEach(a=>{r&&(a.siblingOfJumpLink=!0,r=!1),a.href!==""&&(r=!0)})}},Qa=function(r,a){a===-1||a>=this.children.length?this.appendChild(r):this.insertBefore(r,this.children[a])},eo=function(r,a){var c;let o=r.cloneNode(!0),i=document.createElement("li");i.appendChild(o);let d=this.shadowRoot.querySelector("ul"),l=a;a===-1||a>=d.children.length?(d.appendChild(i),l=d.children.length-1):d.insertBefore(i,d.children[a]),o.addEventListener("tag-click",()=>{this.dispatchEvent(new CustomEvent("tag-click",{detail:{target:o,index:l},bubbles:!0,composed:!0})),_(this,w,kr).call(this,o)}),(c=H(this,xe))!=null||Fe(this,xe,new Map);let n=_(this,w,Bt).call(this,r);H(this,xe).set(n,i),this.dispatchEvent(new CustomEvent("tag-added",{detail:{target:r,index:l},bubbles:!0,composed:!0}))},Bt=function(r){return`${r.tagName}::${r.textContent.trim()}`},kr=function(r){let a=_(this,w,Bt).call(this,r),o=H(this,xe).get(a);if(!o)return!1;let i=Array.from(this.children).indexOf(r);i===-1&&o.parentElement&&(i=Array.from(o.parentElement.children).indexOf(o)),r.parentElement===this&&r.remove(),o.parentElement&&o.remove(),H(this,xe).delete(a),this.dispatchEvent(new CustomEvent("tag-removed",{detail:{target:r,index:i},bubbles:!0,composed:!0})),_(this,w,Ht).call(this)},ro=function(r){return r.tagName==="LI"&&r.shadowRoot?r.querySelector("cfpb-tag-filter"):this.contains(r)?r:null},D(Er,"styles",F`${B(Ga)}`);var Ka=Er;})();
|
|
1
|
+
(()=>{var wr=Object.defineProperty;var _r=Object.getOwnPropertySymbols;var hi=Object.prototype.hasOwnProperty,ui=Object.prototype.propertyIsEnumerable;var jr=r=>{throw TypeError(r)};var ra=(r,t,e)=>t in r?wr(r,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):r[t]=e,oa=(r,t)=>{for(var e in t||(t={}))hi.call(t,e)&&ra(r,e,t[e]);if(_r)for(var e of _r(t))ui.call(t,e)&&ra(r,e,t[e]);return r};var _=(r,t)=>{for(var e in t)wr(r,e,{get:t[e],enumerable:!0})};var q=(r,t,e)=>ra(r,typeof t!="symbol"?t+"":t,e),ia=(r,t,e)=>t.has(r)||jr("Cannot "+e);var l=(r,t,e)=>(ia(r,t,"read from private field"),e?e.call(r):t.get(r)),j=(r,t,e)=>t.has(r)?jr("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(r):t.set(r,e),k=(r,t,e,a)=>(ia(r,t,"write to private field"),a?a.call(r,e):t.set(r,e),e),p=(r,t,e)=>(ia(r,t,"access private method"),e);var kr=(r,t,e)=>new Promise((a,o)=>{var i=d=>{try{s(e.next(d))}catch(c){o(c)}},n=d=>{try{s(e.throw(d))}catch(c){o(c)}},s=d=>d.done?a(d.value):Promise.resolve(d.value).then(i,n);s((e=e.apply(r,t)).next())});var ut={bpXS:{min:0,max:600},bpSM:{min:601,max:900},bpMED:{min:901,max:1020},bpLG:{min:1021,max:1200},bpXL:{min:1201}};var na={};_(na,{default:()=>pi});var pi={};var da={};_(da,{default:()=>mi});var mi={};var sa={};_(sa,{default:()=>vi});var vi={};var la={};_(la,{default:()=>yi});var yi={};var ca={};_(ca,{default:()=>wi});var wi={};var ha={};_(ha,{default:()=>ki});var ki={};function ft(){let r=getComputedStyle(document.body).fontSize;return r=r===""?-1:r,parseFloat(r)}function zi(r,t){let e=r.min,a=r.max;ft()>0&&ft()!==16&&(e=e/16*ft(),a=a/16*ft());let i=e||0,n=a||Number.POSITIVE_INFINITY;return i<=t&&t<=n}function Ei(r){let t={};r=r||window.innerWidth;let e;for(e in ut)t[e]=zi(ut[e],r);return t}var pt="mobile",Ai="tablet",Si="desktop";function ua(r){let t=!1,e=Ei();return(r===pt&&e.bpXS||r===Ai&&e.bpSM||r===Si&&(e.bpMED||e.bpLG||e.bpXL))&&(t=!0),t}var K="data-js-hook",Ne="behavior_",fa="state_";function H(){let r={};function t(o,i){return{}.hasOwnProperty.call(r,o)?r[o].push(i):r[o]=[i],this}function e(o,i){if(!{}.hasOwnProperty.call(r,o))return this;let n=r[o].indexOf(i);return n!==-1&&r[o].splice(n,1),this}function a(o,i){if(!{}.hasOwnProperty.call(r,o))return this;i=i||{};let n=r[o];for(let s=0,d=n.length;s<d;s++)n[s].call(this,i);return this}return this.addEventListener=t,this.removeEventListener=e,this.dispatchEvent=a,this.getRegisteredEvents=()=>r,this}function Ee(r,t){if(!r)return!1;let e=r.getAttribute(K);return e?(e=e.split(" "),e.indexOf(t)>-1):!1}function U(r,t){if(Ee(r,t))return t;if(t.indexOf(" ")!==-1){let a=K+" values cannot contain spaces!";throw new Error(a)}let e=r.getAttribute(K);return e!==null&&(t=e+" "+t),r.setAttribute(K,t),t}var pa=fa+"atomic_init";function $i(r,t){if(!r||!r.classList){let e=r+' is not valid. Check that element is a DOM node with class "'+t+'"';throw new Error(e)}return r}function Li(r,t){let e=r.classList.contains(t)?r:r.querySelector("."+t);if(!e){let a=t+" not found on or in passed DOM node.";throw new Error(a)}return e}function re(r,t){return $i(r,t),Li(r,t)}function J(r){return Ee(r,pa)?!1:(U(r,pa),!0)}function oe(r,t,e,a={}){let i=(e||document).querySelectorAll(r),n=[],s,d;for(let c=0,h=i.length;c<h;c++)d=i[c],Ee(d,pa)===!1&&(s=new t(d),s.init(a),n.push(s));return n}function zr(r,t){t=t||document;let e=[];try{e=t.querySelectorAll(r)}catch(a){let o=`${r} not found in DOM! ${a}`;throw new Error(o)}return e.length===0&&r.indexOf(Ne)===-1&&(e=Er(r,t)),e}function Ti(r,t,e,a){let o=[];r instanceof NodeList?o=r:r instanceof Node?o=[r]:typeof r=="string"&&(o=zr(r,a));for(let i=0,n=o.length;i<n;i++)o[i].addEventListener(t,e,!1);return o}function bt(r,t){let e;if(Ee(r,t))return e=r,e;if(r){let a="["+K+"="+t+"]";e=r.querySelector(a)}if(!e){let a=t+" behavior not found on passed DOM node!";throw new Error(a)}return e}function Er(r,t){return r=K+"*="+Ne+r,r="["+r+"]",zr(r,t)}var Ke=Object.prototype.toString;function Ar(r){return typeof r=="undefined"}function Ci(r){return typeof r!="undefined"}function Oi(r){return r!==null&&typeof r=="object"}function Sr(r){return Ke.call(r)==="[object String]"}function Ii(r){return Ke.call(r)==="[object Number]"}function qi(r){return Ke.call(r)==="[object Date]"}var Mi=Array.isArray||function(t){return Ke.call(t)==="[object Array]"};function Ni(r){return Ke.call(r)==="[object Function]"}function Di(r){return Ar(r)||r===null||Sr(r)&&r.length<=0||/^\s*$/.test(r)}function ba(){return!!new RegExp(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i).test(navigator.userAgent)}function A(r,t,e){let a=t,o=r;if(!e)throw new Error("Child transition argument must be defined!");let i=e,n,s,d,c=!1,h=!1,b=!1;if(typeof a.CSS_PROPERTY=="undefined"||typeof a.BASE_CLASS=="undefined")throw new Error("Transitions require CSS_PROPERTY and BASE_CLASS to be passed into BaseTransition.");function g(){s&&c?(o.addEventListener(s,d),i.dispatchEvent(A.BEGIN_EVENT,{target:i,type:A.BEGIN_EVENT}),o.classList.add(A.ANIMATING_CLASS),h=!0):(i.dispatchEvent(A.BEGIN_EVENT,{target:i,type:A.BEGIN_EVENT}),d())}function y(){o.removeEventListener(s,d)}function M(z){return z&&z.propertyName!==a.CSS_PROPERTY?!1:(y(),o.classList.remove(A.ANIMATING_CLASS),i.dispatchEvent(A.END_EVENT,{target:i,type:A.END_EVENT}),h=!1,!0)}function I(){let z;for(z in a)({}).hasOwnProperty.call(a,z)&&a[z]!==a.BASE_CLASS&&o.classList.contains(a[z])&&o.classList.remove(a[z])}function N(){h&&(o.style.webkitTransitionDuration="0",o.style.mozTransitionDuration="0",o.style.oTransitionDuration="0",o.style.transitionDuration="0",o.removeEventListener(s,d),d(),o.style.webkitTransitionDuration="",o.style.mozTransitionDuration="",o.style.oTransitionDuration="",o.style.transitionDuration="")}function F(){N(),I(),o.classList.remove(a.BASE_CLASS)}function le(){o.classList.remove(A.NO_ANIMATION_CLASS),c=!0}function ue(){o.classList.add(A.NO_ANIMATION_CLASS),c=!1}function G(z){if(!z){let Me="Element does not have TransitionEnd event. It may be null!";throw new Error(Me)}let V,ae={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},fe;for(fe in ae)if({}.hasOwnProperty.call(ae,fe)&&typeof z.style[fe]!="undefined"){V=ae[fe];break}return V}function w(z){F(),le(),o=z,o.classList.add(a.BASE_CLASS),s=G(o)}function T(z){if(c=!o.classList.contains(A.NO_ANIMATION_CLASS),d=M.bind(this),w(o),!z)throw new Error("Transition needs to be passed an initial CSS class on initialization!");return o.classList.add(z),this}function D(z){return b||(I(),b=!0),o.classList.contains(z)?!1:(y(),o.classList.remove(n),n=z,g(),o.classList.add(n),!0)}return this.animateOff=ue,this.animateOn=le,this.applyClass=D,this.halt=N,this.init=T,this.isAnimated=()=>c,this.remove=F,this.setElement=w,this}A.BEGIN_EVENT="transitionbegin";A.END_EVENT="transitionend";A.NO_ANIMATION_CLASS="u-no-animation";A.ANIMATING_CLASS="u-is-animating";var Xe=Ne+"flyout-menu",Hi="["+K+"="+Xe;function ve(r,t=!0){let e=bt(r,Xe),a=le(r),o=bt(r,Xe+"_content"),i=0,n=0,s=1,d=2,c=3,h,b,g,y=Me.bind(this),M=fe.bind(this),I,N=!0,F=!1;function le(u){let f=[],m=u.querySelectorAll(`${Hi}_trigger]`),x,O,pe;for(let ce=m.length>>>0;ce--;){for(pe=!1,x=m[ce],O=x.parentElement;O!==u;)O.getAttribute(K)&&O.getAttribute(K).split(" ").indexOf(Xe)!==-1?(pe=!0,O=u):O=O.parentElement;pe||f.unshift(m[ce])}return f}function ue(u=!1){return i=u?c:n,a.forEach(f=>{G("expanded",f,u),f.addEventListener("click",z.bind(this)),f.addEventListener("touchstart",w,{passive:!0}),f.addEventListener("mouseover",T.bind(this)),f.addEventListener("mouseout",D.bind(this))}),o.setAttribute("data-open",u?"true":"false"),t&&!u&&o.setAttribute("hidden",""),ht(),this}function G(u,f,m){let x=String(m);return f.setAttribute("aria-"+u,x),x}function w(){F=!0}function T(u){N||(F||this.dispatchEvent("triggerover",{target:this,trigger:u.target,type:"triggerover"}),F=!1)}function D(u){N||this.dispatchEvent("triggerout",{target:this,trigger:u.target,type:"triggerout"})}function z(u){if(!N)switch(this.dispatchEvent("triggerclick",{target:this,trigger:u.target,type:"triggerclick"}),u.preventDefault(),i){case n:case s:this.expand();break;case d:case c:this.collapse();break}}function V(){if(h==null||h.halt(),i===d||i===c)return this;if(i=d,t&&o.removeAttribute("hidden"),this.dispatchEvent("expandbegin",{target:this,type:"expandbegin"}),!b||!g)return M(),this;let u=h==null?void 0:h.isAnimated();return u&&h.addEventListener(A.END_EVENT,M),b(),u||M(),this}function ae(){if(h==null||h.halt(),i===s||i===n)return this;for(let f=0,m=a.length;f<m;f++)G("expanded",a[f],!1);if(o.setAttribute("data-open","false"),i=s,this.dispatchEvent("collapsebegin",{target:this,type:"collapsebegin"}),!g||!b)return y(),this;let u=h==null?void 0:h.isAnimated();return u&&h.addEventListener(A.END_EVENT,y),g(),u||y(),this}function fe(){i=c,o.setAttribute("data-open","true"),h&&h.removeEventListener(A.END_EVENT,M),this.dispatchEvent("expandend",{target:this,type:"expandend"});for(let u=0,f=a.length;u<f;u++)G("expanded",a[u],!0)}function Me(){i=n,t&&o.setAttribute("hidden",""),h&&h.removeEventListener(A.END_EVENT,y),this.dispatchEvent("collapseend",{target:this,type:"collapseend"})}function ct(u,f,m){h=u,f&&f!==g&&(g=f),m&&m!==b&&(b=m)}function Qt(){h&&h.remove();let u;h=u,b=u,g=u}function ea(){return{container:e,content:o,trigger:a}}function ht(){return N&&(N=!1),!N}function ta(){return N||(N=!0),N}function aa(u){return I=u,this}let ze=new H;return this.addEventListener=ze.addEventListener,this.removeEventListener=ze.removeEventListener,this.dispatchEvent=ze.dispatchEvent,this.init=ue,this.expand=V,this.collapse=ae,this.setTransition=ct,this.clearTransition=Qt,this.getData=()=>I,this.getTransition=()=>h,this.getDom=ea,this.isAnimating=()=>i===d||i===s,this.isExpanded=()=>i===c,this.resume=ht,this.setData=aa,this.suspend=ta,ve.BASE_CLASS=Xe,this}var mt={CSS_PROPERTY:"opacity",BASE_CLASS:"u-alpha-transition",ALPHA_100:"u-alpha-100",ALPHA_0:"u-alpha-0"};function $r(r){let t=new H,e=new A(r,mt,this);function a(n){return e.init(n),this}function o(){return e.applyClass(mt.ALPHA_100),this}function i(){return e.applyClass(mt.ALPHA_0),this}return this.addEventListener=t.addEventListener,this.dispatchEvent=t.dispatchEvent,this.removeEventListener=t.removeEventListener,this.animateOff=e.animateOff,this.animateOn=e.animateOn,this.halt=e.halt,this.isAnimated=e.isAnimated,this.remove=e.remove,this.setElement=e.setElement,this.fadeIn=o,this.fadeOut=i,this.init=a,this}$r.CLASSES=mt;var Ye={CSS_PROPERTY:"max-height",BASE_CLASS:"u-max-height-transition",MH_DEFAULT:"u-max-height-default",MH_SUMMARY:"u-max-height-summary",MH_ZERO:"u-max-height-zero"};function X(r){let t=new H,e=new A(r,Ye,this),a=0;function o(){let g=r.scrollHeight+"px";r.style.maxHeight=g}function i(){window.removeEventListener("load",i),o()}function n(b){return e.init(b),window.addEventListener("load",i),window.addEventListener("resize",()=>{o()}),this}function s(){return o(),e.applyClass(Ye.MH_DEFAULT),(!a||r.scrollHeight>a)&&(a=r.scrollHeight),this}function d(){return e.applyClass(Ye.MH_SUMMARY),a=r.scrollHeight,this}function c(){return e.applyClass(Ye.MH_ZERO),a=r.scrollHeight,this}function h(){return r.style.maxHeight="",e.remove()}return this.addEventListener=t.addEventListener,this.dispatchEvent=t.dispatchEvent,this.removeEventListener=t.removeEventListener,this.animateOff=e.animateOff,this.animateOn=e.animateOn,this.halt=e.halt,this.isAnimated=e.isAnimated,this.setElement=e.setElement,this.refresh=o,this.remove=h,this.init=n,this.maxHeightDefault=s,this.maxHeightSummary=d,this.maxHeightZero=c,this}X.CLASSES=Ye;var xe={CSS_PROPERTY:"transform",BASE_CLASS:"u-move-transition",MOVE_TO_ORIGIN:"u-move-to-origin",MOVE_LEFT:"u-move-left",MOVE_LEFT_2X:"u-move-left-2x",MOVE_LEFT_3X:"u-move-left-3x",MOVE_RIGHT:"u-move-right",MOVE_UP:"u-move-up"};function Lr(r){let t=new H,e=new A(r,xe,this);function a(d){return e.init(d),this}function o(){return e.applyClass(xe.MOVE_TO_ORIGIN),this}function i(d){d=d||1;let c=[xe.MOVE_LEFT,xe.MOVE_LEFT_2X,xe.MOVE_LEFT_3X];return e.applyClass(c[d-1]),this}function n(){return e.applyClass(xe.MOVE_RIGHT),this}function s(){return e.applyClass(xe.MOVE_UP),this}return this.addEventListener=t.addEventListener,this.dispatchEvent=t.dispatchEvent,this.removeEventListener=t.removeEventListener,this.animateOff=e.animateOff,this.animateOn=e.animateOn,this.halt=e.halt,this.isAnimated=e.isAnimated,this.setElement=e.setElement,this.remove=e.remove,this.init=a,this.moveLeft=()=>i(1),this.moveLeft2=()=>i(2),this.moveLeft3=()=>i(3),this.moveRight=n,this.moveToOrigin=o,this.moveUp=s,this}Lr.CLASSES=xe;var ma={};_(ma,{default:()=>Ri});var Ri={};var De="o-expandable";function ye(r){let t=re(r,De),e,a,o,i,n;function s(){if(!J(t))return this;e=t.querySelector(`.${De}__header`),a=t.querySelector(`.${De}__content`),o=t.querySelector(`.${De}__label`);let h=t.classList.contains(`${De}--onload-open`);U(t,"behavior_flyout-menu"),U(e,"behavior_flyout-menu_trigger"),U(a,"behavior_flyout-menu_content");let b=h?X.CLASSES.MH_DEFAULT:X.CLASSES.MH_ZERO;return i=new X(a).init(b),n=new ve(t),n.setTransition(i,i.maxHeightZero,i.maxHeightDefault),n.init(h),n.addEventListener("expandbegin",()=>{a.classList.remove("u-hidden"),this.dispatchEvent("expandbegin",{target:this})}),n.addEventListener("collapseend",()=>{a.classList.add("u-hidden")}),this}function d(){return o.textContent.trim()}this.init=s,this.expand=()=>n.expand(),this.collapse=()=>n.collapse(),this.isExpanded=()=>n.isExpanded(),this.refresh=()=>n.getTransition().refresh(),this.getLabelText=d;let c=new H;return this.addEventListener=c.addEventListener,this.removeEventListener=c.removeEventListener,this.dispatchEvent=c.dispatchEvent,this}ye.BASE_CLASS=De;ye.init=r=>oe(`.${ye.BASE_CLASS}`,ye,r);var ga={};_(ga,{default:()=>Fi});var Fi={};var gt="o-expandable-group";function vt(r){let t=re(r,gt),e=t.classList.contains(`${gt}--accordion`),a,o;function i(s){let d=s.target;o&&o!==d&&o.collapse(),o=d}function n(s){return J(t)?(e&&(a=s,a.forEach(d=>{d.addEventListener("expandbegin",i)})),this):this}return this.init=n,this}vt.BASE_CLASS=gt;vt.init=r=>{(r||document).querySelectorAll(`.${gt}`).forEach(a=>{let o=oe(`.${ye.BASE_CLASS}`,ye,a);new vt(a).init(o)})};var va={};_(va,{default:()=>Gi});var Gi={};var Be="o-summary";function xt(r){let t=re(r,Be),e=t.classList.contains(`${Be}--mobile`),a=t.querySelector(`.${Be}__content`),o=t.querySelector(`.${Be}__btn`),i,n,s;function d(){return J(t)?(window.addEventListener("load",c),this):this}function c(){window.removeEventListener("load",c),s=!y(),U(t,"behavior_flyout-menu"),U(a,"behavior_flyout-menu_content"),U(o,"behavior_flyout-menu_trigger"),n=new ve(t,!1),i=new X(a),i.init(s?X.CLASSES.MH_SUMMARY:X.CLASSES.MH_DEFAULT),n.setTransition(i,i.maxHeightSummary,i.maxHeightDefault),n.addEventListener("triggerclick",M),n.init(),g(),window.addEventListener("resize",g),"onorientationchange"in window&&window.addEventListener("orientationchange",g),t.addEventListener("focusin",h),a.addEventListener("click",b)}function h(w){!s&&w.target!==o&&(o.click(),t.removeEventListener("focusin",h))}function b(w){w.target.tagName!=="A"&&n.isExpanded()&&i.refresh()}function g(){y()?ue():le()}function y(){return e&&!ua(pt)||a.scrollHeight<=88}function M(){n.addEventListener("expandend",I)}function I(){F(),window.removeEventListener("resize",g),window.removeEventListener("orientationchange",g),n.removeEventListener("expandend",I),n.suspend(),i.remove()}function N(){o.classList.remove("u-hidden")}function F(){o.classList.add("u-hidden")}function le(){return s&&(n.collapse(),i.animateOn(),N(),s=!1),!s}function ue(){return s||(i.animateOff(),n.expand(),F(),s=!0),s}let G=new H;return this.addEventListener=G.addEventListener,this.removeEventListener=G.removeEventListener,this.dispatchEvent=G.dispatchEvent,this.init=d,this}xt.BASE_CLASS=Be;xt.init=r=>oe(`.${Be}`,xt,r);var We="o-summary-minimal";function yt(r){let t=re(r,We),e=t.querySelector(`.${We}__content`),a=t.querySelector(`.${We}__btn`),o,i;function n(){return J(t)?(U(t,"behavior_flyout-menu"),U(e,"behavior_flyout-menu_content"),U(a,"behavior_flyout-menu_trigger"),window.addEventListener("load",s),this):this}function s(){window.removeEventListener("load",s),i=new ve(t,!1),o=new X(e),o.init(X.CLASSES.MH_SUMMARY),i.setTransition(o,o.maxHeightSummary,o.maxHeightDefault),i.init(),t.addEventListener("focusin",d),e.addEventListener("click",c),i.collapse(),o.animateOn()}function d(b){b.target!==a&&(a.click(),t.removeEventListener("focusin",d))}function c(b){b.target.tagName!=="A"&&i.isExpanded()&&o.refresh()}let h=new H;return this.addEventListener=h.addEventListener,this.removeEventListener=h.removeEventListener,this.dispatchEvent=h.dispatchEvent,this.init=n,this}yt.BASE_CLASS=We;yt.init=r=>oe(`.${We}`,yt,r);var xa={};_(xa,{default:()=>Yi});var Yi={};var ya={};_(ya,{default:()=>Zi});var Zi={};var _a={};_(_a,{default:()=>Qi});var Qi={};var wa={};_(wa,{default:()=>tn});var tn={};var ja={};_(ja,{default:()=>rn});var rn={};var ka={};_(ka,{default:()=>nn});var nn={};var za={};_(za,{default:()=>sn});var sn={};var Ea={};_(Ea,{default:()=>cn});var cn={};var Aa={};_(Aa,{default:()=>un});var un={};var fn;function pn(r){return r.replace(/[-\\^$*+?.()|[\]{}]/g,"\\$&")}function bn(r,t){return RegExp(pn(t.trim()),"i").test(r)}function mn(r,t,e){let a=r,o=t,i=(e==null?void 0:e.maxSelections)||5,n=[],s=[],d=[],c=[],h=-1;function b(w){return o+"-"+w.value.trim().replace(/\s+/g,"-").toLowerCase()}function g(){return s.length>=i}function y(w){let T,D=[],z=!1;for(let V=0,ae=w.length;V<ae;V++)T=w[V],z=g()?!1:T.defaultSelected,D.push({id:b(T),value:T.value,text:T.text,checked:z}),z&&s.push(V);return D}function M(){return n=y(a),this}function I(w){return n[w].checked=!n[w].checked,s.length<i&&n[w].checked?(s.push(w),s.sort(),!0):(n[w].checked=!1,s=s.filter(function(T){return T!==w}),!1)}function N(w,T,D,z){return bn(T.text,z)&&w.push(D),w}function F(w){return Object.prototype.toString.call(w)!=="[object String]"&&(w=""),c=d,n.length>0&&(d=n.reduce(function(T,D,z){return N(T,D,z,w)},[])),h=-1,d}function le(w){return n[w]}function ue(w){let T=d.length,D=T===0?n.length:T;w<0?h=-1:w>=D?h=D-1:h=w}function G(){return h}return this.init=M,this.toggleOption=I,this.getSelectedIndices=function(){return s},this.isAtMaxSelections=g,this.filterIndices=F,this.clearFilter=function(){return d=c=[],fn},this.getFilterIndices=function(){return d},this.getLastFilterIndices=function(){return c},this.getIndex=G,this.setIndex=ue,this.resetIndex=function(){return h=-1,h},this.getOption=le,this}var Tr=mn;function ie(r,t,e){let a=document.createElement(r);return Object.keys(e).forEach(o=>{let i=e[o];o in a?a[o]=i:a.setAttribute(o,i)}),t&&t.appendChild(a),a}var _t='<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="cf-icon-svg cf-icon-svg--error" viewBox="0 0 12 19"><path d="M11.383 13.644A1.03 1.03 0 0 1 9.928 15.1L6 11.172 2.072 15.1a1.03 1.03 0 1 1-1.455-1.456l3.928-3.928L.617 5.79a1.03 1.03 0 1 1 1.455-1.456L6 8.261l3.928-3.928a1.03 1.03 0 0 1 1.455 1.456L7.455 9.716z"/></svg>';var _n=_t,ne="o-multiselect",wn="a-checkbox",jn="a-text-input",Cr="prev",wt="next",Sa="Enter",kn=" ",Or="Escape",zn="ArrowUp",Ir="ArrowDown",qr="Tab",Mr={renderTags:!0,maxSelections:5};function jt(r){r.classList.add(ne);let t=re(r,ne),e=!1,a,o,i,n,s,d,c,h,b,g,y,M=[],I;function N(){y.classList.remove("u-no-results"),y.classList.add("u-filtered");let u=i.getLastFilterIndices();for(let f=0,m=u.length;f<m;f++)M[u[f]].classList.remove("u-filter-match");u=i.getFilterIndices();for(let f=0,m=u.length;f<m;f++)M[u[f]].classList.add("u-filter-match")}function F(){y.classList.remove("u-filtered","u-no-results");for(let u=0,f=y.children.length;u<f;u++)y.children[u].classList.remove("u-filter-match");i.clearFilter()}function le(){y.classList.add("u-no-results"),y.classList.remove("u-filtered")}function ue(u){return u.length>0?(N(),!0):(le(),!1)}function G(u){F(),i.resetIndex();let f=i.filterIndices(u);ue(f)}function w(){return d.classList.add("u-active"),g.classList.remove("u-invisible"),g.setAttribute("aria-hidden",!1),I.dispatchEvent("expandbegin",{target:I}),I}function T(){return d.classList.remove("u-active"),g.classList.add("u-invisible"),g.setAttribute("aria-hidden",!0),i.resetIndex(),I.dispatchEvent("collapsebegin",{target:I}),I}function D(u){u===wt?i.setIndex(i.getIndex()+1):u===Cr&&i.setIndex(i.getIndex()-1);let f=i.getIndex();if(f>-1){let m=f,x=i.getFilterIndices();x.length>0&&(m=x[f]);let pe=i.getOption(m).value,ci=y.querySelector('[data-option="'+pe+'"]').querySelector("input");e=!0,ci.focus()}else e=!1,b.focus()}function z(){b.value="",F()}function V(u){let f=u.target;f.tagName==="BUTTON"&&(u.preventDefault(),f.removeEventListener("click",V),f.querySelector("label").click())}function ae(u){if(u.key===kn||u.key===Sa){let f=u.target.querySelector("label");y.querySelector("#"+f.getAttribute("for")).click()}}function fe(u){return a+"-"+u.value.trim().replace(/[^\w]/g,"-").toLowerCase()}function Me(u,f){let m=fe(f),x=ie("li",null,{"data-option":f.value}),O=ie("button",x,{type:"button",class:"a-tag-filter",innerHTML:"<label for="+m+">"+f.text+_n+"</label>"});u.appendChild(x),O.addEventListener("click",V),O.addEventListener("keydown",ae)}function ct(u){let f=i.getOption(u)||i.getOption(i.getIndex());if(f){if(f.checked){y.classList.contains("u-max-selections")&&y.classList.remove("u-max-selections");let m='[data-option="'+f.value+'"]',x=c.querySelector(m);typeof x!="undefined"&&x&&(c==null||c.removeChild(x))}else s!=null&&s.renderTags&&c&&Me(c,f);i.toggleOption(u),i.isAtMaxSelections()&&y.classList.add("u-max-selections"),I.dispatchEvent("selectionsupdated",{target:I})}i.resetIndex(),e=!1,g.getAttribute("aria-hidden")==="false"&&b.focus()}function Qt(u){ct(Number(u.target.getAttribute("data-index"))),z()}function ea(){h.addEventListener("mousemove",function(m){let x=m.target;m.offsetX>x.offsetWidth-35?x.style.cursor="pointer":x.style.cursor="auto"}),h.addEventListener("mouseup",function(m){let x=m.target;m.offsetX>x.offsetWidth-35&&g.offsetHeight===140&&b.blur()}),b.addEventListener("input",function(){G(this.value)}),b.addEventListener("focus",function(){g.getAttribute("aria-hidden")==="true"&&w()}),b.addEventListener("blur",function(){!e&&g.getAttribute("aria-hidden")==="false"&&T()}),b.addEventListener("keydown",function(m){let x=m.key;g.getAttribute("aria-hidden")==="true"&&x!==qr&&w(),x===Sa?(m.preventDefault(),D(wt)):x===Or?(z(),T()):x===Ir?D(wt):x===qr&&!m.shiftKey&&g.getAttribute("aria-hidden")==="false"&&T()}),y.addEventListener("mousedown",function(){e=!0}),y.addEventListener("keydown",function(m){let x=m.key,O=m.target,pe=O.checked;if(x===Sa){m.preventDefault(),O.checked=!pe;let ce=new Event("change",{bubbles:!1,cancelable:!0});O.dispatchEvent(ce)}else x===Or?(b.focus(),T()):x===zn?D(Cr):x===Ir&&D(wt)}),g.addEventListener("mousedown",function(m){m.target.tagName==="LABEL"&&(e=!0)});let u=y.querySelectorAll("input");for(let m=0,x=u.length;m<x;m++)u[m].addEventListener("change",Qt);let f=c.querySelectorAll("button");for(let m=0,x=f.length;m<x;m++)f[m].addEventListener("click",V),f[m].addEventListener("keydown",ae)}function ht(){d=document.createElement("div"),d.className=ne,c=ie("ul",null,{className:"m-tag-group"}),h=ie("header",d,{className:ne+"__header"}),b=ie("input",h,{className:ne+"__search "+jn,type:"text",placeholder:o||"Select up to five",id:t.id,autocomplete:"off"}),g=ie("fieldset",d,{className:ne+"__fieldset u-invisible","aria-hidden":"true"});let u=ne+"__options";i.isAtMaxSelections()&&(u+=" u-max-selections"),y=ie("ul",g,{className:u});let f,m,x;for(let O=0,pe=n.length;O<pe;O++){f=n[O],m=fe(f),x=i.getOption(O).checked;let ce=ie("li",y,{"data-option":f.value,"data-cy":"multiselect-option",class:"m-form-field m-form-field--checkbox"});ie("input",ce,{id:m,type:"checkbox",value:f.value,name:a,class:wn+" "+ne+"__checkbox",checked:x,"data-index":O}),ie("label",ce,{for:m,textContent:f.text,className:ne+"__label a-label"}),M.push(ce),x&&(s!=null&&s.renderTags)&&Me(c,f)}return d.insertBefore(c,h),t.parentNode.insertBefore(d,t),d.appendChild(t),d}function ta(u=Mr){if(!J(t))return this;if(ba())return this;if(I=this,a=t.name||t.id,o=t.getAttribute("placeholder"),n=t.options||[],s=oa(oa({},Mr),u),n.length>0){i=new Tr(n,a,s).init();let f=ht();t.parentNode.removeChild(t),t=f,J(t),ea()}return this}function aa(){return i}this.init=ta,this.expand=w,this.collapse=T;let ze=new H;return this.addEventListener=ze.addEventListener,this.removeEventListener=ze.removeEventListener,this.dispatchEvent=ze.dispatchEvent,this.getModel=aa,this.updateSelections=ct,this.selectionClickHandler=V,this.selectionKeyDownHandler=ae,this}jt.BASE_CLASS=ne;jt.init=r=>oe(`.${ne}`,jt,void 0,r);var $a={};_($a,{default:()=>An});var An={};var La={};_(La,{default:()=>$n});var $n={};var Ta={};_(Ta,{default:()=>Tn});var Tn={};var Ca={};_(Ca,{default:()=>On});var On={};var Oa={};_(Oa,{default:()=>qn});var qn={};var Ia={};_(Ia,{default:()=>Nn});var Nn={};var qa={};_(qa,{default:()=>Bn});var Bn={};var Ma={};_(Ma,{default:()=>Pn});var Pn={};var Na={};_(Na,{default:()=>Un});var Un={};var Da={};_(Da,{default:()=>Vn});var Vn={};var Ba={};_(Ba,{default:()=>Kn});var Kn={};var Ha={};_(Ha,{default:()=>Yn});var Yn={};var Pa={};_(Pa,{default:()=>Zn});var Zn={};var Ra={};_(Ra,{default:()=>Qn});var Qn={};var Ua={};_(Ua,{default:()=>td});var td={};var Fa={};_(Fa,{default:()=>rd});var rd={};var Va={};_(Va,{default:()=>id});var id={};var Ga={};_(Ga,{default:()=>dd});var dd={};var Ka={};_(Ka,{default:()=>ld});var ld={};var Xa={};_(Xa,{default:()=>hd});var hd={};var kt=globalThis,zt=kt.ShadowRoot&&(kt.ShadyCSS===void 0||kt.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,Ya=Symbol(),Nr=new WeakMap,Ze=class{constructor(t,e,a){if(this._$cssResult$=!0,a!==Ya)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o,e=this.t;if(zt&&t===void 0){let a=e!==void 0&&e.length===1;a&&(t=Nr.get(e)),t===void 0&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),a&&Nr.set(e,t))}return t}toString(){return this.cssText}},B=r=>new Ze(typeof r=="string"?r:r+"",void 0,Ya),P=(r,...t)=>{let e=r.length===1?r[0]:t.reduce(((a,o,i)=>a+(n=>{if(n._$cssResult$===!0)return n.cssText;if(typeof n=="number")return n;throw Error("Value passed to 'css' function must be a 'css' function result: "+n+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(o)+r[i+1]),r[0]);return new Ze(e,r,Ya)},Dr=(r,t)=>{if(zt)r.adoptedStyleSheets=t.map((e=>e instanceof CSSStyleSheet?e:e.styleSheet));else for(let e of t){let a=document.createElement("style"),o=kt.litNonce;o!==void 0&&a.setAttribute("nonce",o),a.textContent=e.cssText,r.appendChild(a)}},Wa=zt?r=>r:r=>r instanceof CSSStyleSheet?(t=>{let e="";for(let a of t.cssRules)e+=a.cssText;return B(e)})(r):r;var{is:ud,defineProperty:fd,getOwnPropertyDescriptor:pd,getOwnPropertyNames:bd,getOwnPropertySymbols:md,getPrototypeOf:gd}=Object,_e=globalThis,Br=_e.trustedTypes,vd=Br?Br.emptyScript:"",Za=_e.reactiveElementPolyfillSupport,Je=(r,t)=>r,Ja={toAttribute(r,t){switch(t){case Boolean:r=r?vd:null;break;case Object:case Array:r=r==null?r:JSON.stringify(r)}return r},fromAttribute(r,t){let e=r;switch(t){case Boolean:e=r!==null;break;case Number:e=r===null?null:Number(r);break;case Object:case Array:try{e=JSON.parse(r)}catch(a){e=null}}return e}},Fr=(r,t)=>!ud(r,t),Hr={attribute:!0,type:String,converter:Ja,reflect:!1,useDefault:!1,hasChanged:Fr},Pr,Rr;(Pr=Symbol.metadata)!=null||(Symbol.metadata=Symbol("metadata")),(Rr=_e.litPropertyMetadata)!=null||(_e.litPropertyMetadata=new WeakMap);var be=class extends HTMLElement{static addInitializer(t){var e;this._$Ei(),((e=this.l)!=null?e:this.l=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,e=Hr){if(e.state&&(e.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(t)&&((e=Object.create(e)).wrapped=!0),this.elementProperties.set(t,e),!e.noAccessor){let a=Symbol(),o=this.getPropertyDescriptor(t,a,e);o!==void 0&&fd(this.prototype,t,o)}}static getPropertyDescriptor(t,e,a){var n;let{get:o,set:i}=(n=pd(this.prototype,t))!=null?n:{get(){return this[e]},set(s){this[e]=s}};return{get:o,set(s){let d=o==null?void 0:o.call(this);i==null||i.call(this,s),this.requestUpdate(t,d,a)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){var e;return(e=this.elementProperties.get(t))!=null?e:Hr}static _$Ei(){if(this.hasOwnProperty(Je("elementProperties")))return;let t=gd(this);t.finalize(),t.l!==void 0&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(Je("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(Je("properties"))){let e=this.properties,a=[...bd(e),...md(e)];for(let o of a)this.createProperty(o,e[o])}let t=this[Symbol.metadata];if(t!==null){let e=litPropertyMetadata.get(t);if(e!==void 0)for(let[a,o]of e)this.elementProperties.set(a,o)}this._$Eh=new Map;for(let[e,a]of this.elementProperties){let o=this._$Eu(e,a);o!==void 0&&this._$Eh.set(o,e)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){let e=[];if(Array.isArray(t)){let a=new Set(t.flat(1/0).reverse());for(let o of a)e.unshift(Wa(o))}else t!==void 0&&e.push(Wa(t));return e}static _$Eu(t,e){let a=e.attribute;return a===!1?void 0:typeof a=="string"?a:typeof t=="string"?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){var t;this._$ES=new Promise((e=>this.enableUpdating=e)),this._$AL=new Map,this._$E_(),this.requestUpdate(),(t=this.constructor.l)==null||t.forEach((e=>e(this)))}addController(t){var e,a;((e=this._$EO)!=null?e:this._$EO=new Set).add(t),this.renderRoot!==void 0&&this.isConnected&&((a=t.hostConnected)==null||a.call(t))}removeController(t){var e;(e=this._$EO)==null||e.delete(t)}_$E_(){let t=new Map,e=this.constructor.elementProperties;for(let a of e.keys())this.hasOwnProperty(a)&&(t.set(a,this[a]),delete this[a]);t.size>0&&(this._$Ep=t)}createRenderRoot(){var e;let t=(e=this.shadowRoot)!=null?e:this.attachShadow(this.constructor.shadowRootOptions);return Dr(t,this.constructor.elementStyles),t}connectedCallback(){var t,e;(t=this.renderRoot)!=null||(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),(e=this._$EO)==null||e.forEach((a=>{var o;return(o=a.hostConnected)==null?void 0:o.call(a)}))}enableUpdating(t){}disconnectedCallback(){var t;(t=this._$EO)==null||t.forEach((e=>{var a;return(a=e.hostDisconnected)==null?void 0:a.call(e)}))}attributeChangedCallback(t,e,a){this._$AK(t,a)}_$ET(t,e){var i;let a=this.constructor.elementProperties.get(t),o=this.constructor._$Eu(t,a);if(o!==void 0&&a.reflect===!0){let n=(((i=a.converter)==null?void 0:i.toAttribute)!==void 0?a.converter:Ja).toAttribute(e,a.type);this._$Em=t,n==null?this.removeAttribute(o):this.setAttribute(o,n),this._$Em=null}}_$AK(t,e){var i,n,s,d;let a=this.constructor,o=a._$Eh.get(t);if(o!==void 0&&this._$Em!==o){let c=a.getPropertyOptions(o),h=typeof c.converter=="function"?{fromAttribute:c.converter}:((i=c.converter)==null?void 0:i.fromAttribute)!==void 0?c.converter:Ja;this._$Em=o,this[o]=(d=(s=h.fromAttribute(e,c.type))!=null?s:(n=this._$Ej)==null?void 0:n.get(o))!=null?d:null,this._$Em=null}}requestUpdate(t,e,a){var o,i;if(t!==void 0){let n=this.constructor,s=this[t];if(a!=null||(a=n.getPropertyOptions(t)),!(((o=a.hasChanged)!=null?o:Fr)(s,e)||a.useDefault&&a.reflect&&s===((i=this._$Ej)==null?void 0:i.get(t))&&!this.hasAttribute(n._$Eu(t,a))))return;this.C(t,e,a)}this.isUpdatePending===!1&&(this._$ES=this._$EP())}C(t,e,{useDefault:a,reflect:o,wrapped:i},n){var s,d,c;a&&!((s=this._$Ej)!=null?s:this._$Ej=new Map).has(t)&&(this._$Ej.set(t,(d=n!=null?n:e)!=null?d:this[t]),i!==!0||n!==void 0)||(this._$AL.has(t)||(this.hasUpdated||a||(e=void 0),this._$AL.set(t,e)),o===!0&&this._$Em!==t&&((c=this._$Eq)!=null?c:this._$Eq=new Set).add(t))}_$EP(){return kr(this,null,function*(){this.isUpdatePending=!0;try{yield this._$ES}catch(e){Promise.reject(e)}let t=this.scheduleUpdate();return t!=null&&(yield t),!this.isUpdatePending})}scheduleUpdate(){return this.performUpdate()}performUpdate(){var a,o;if(!this.isUpdatePending)return;if(!this.hasUpdated){if((a=this.renderRoot)!=null||(this.renderRoot=this.createRenderRoot()),this._$Ep){for(let[n,s]of this._$Ep)this[n]=s;this._$Ep=void 0}let i=this.constructor.elementProperties;if(i.size>0)for(let[n,s]of i){let{wrapped:d}=s,c=this[n];d!==!0||this._$AL.has(n)||c===void 0||this.C(n,void 0,s,c)}}let t=!1,e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),(o=this._$EO)==null||o.forEach((i=>{var n;return(n=i.hostUpdate)==null?void 0:n.call(i)})),this.update(e)):this._$EM()}catch(i){throw t=!1,this._$EM(),i}t&&this._$AE(e)}willUpdate(t){}_$AE(t){var e;(e=this._$EO)==null||e.forEach((a=>{var o;return(o=a.hostUpdated)==null?void 0:o.call(a)})),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return!0}update(t){this._$Eq&&(this._$Eq=this._$Eq.forEach((e=>this._$ET(e,this[e])))),this._$EM()}updated(t){}firstUpdated(t){}},Ur;be.elementStyles=[],be.shadowRootOptions={mode:"open"},be[Je("elementProperties")]=new Map,be[Je("finalized")]=new Map,Za==null||Za({ReactiveElement:be}),((Ur=_e.reactiveElementVersions)!=null?Ur:_e.reactiveElementVersions=[]).push("2.1.0");var et=globalThis,Et=et.trustedTypes,Vr=Et?Et.createPolicy("lit-html",{createHTML:r=>r}):void 0,tr="$lit$",me=`lit$${Math.random().toFixed(9).slice(2)}$`,ar="?"+me,xd=`<${ar}>`,$e=document,tt=()=>$e.createComment(""),at=r=>r===null||typeof r!="object"&&typeof r!="function",rr=Array.isArray,Jr=r=>rr(r)||typeof(r==null?void 0:r[Symbol.iterator])=="function",Qa=`[
|
|
2
|
+
\f\r]`,Qe=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Gr=/-->/g,Kr=/>/g,Ae=RegExp(`>|${Qa}(?:([^\\s"'>=/]+)(${Qa}*=${Qa}*(?:[^
|
|
3
|
+
\f\r"'\`<>=]|("|')|))|$)`,"g"),Xr=/'/g,Yr=/"/g,Qr=/^(?:script|style|textarea|title)$/i,or=r=>(t,...e)=>({_$litType$:r,strings:t,values:e}),S=or(1),pl=or(2),bl=or(3),de=Symbol.for("lit-noChange"),$=Symbol.for("lit-nothing"),Wr=new WeakMap,Se=$e.createTreeWalker($e,129);function eo(r,t){if(!rr(r)||!r.hasOwnProperty("raw"))throw Error("invalid template strings array");return Vr!==void 0?Vr.createHTML(t):t}var to=(r,t)=>{let e=r.length-1,a=[],o,i=t===2?"<svg>":t===3?"<math>":"",n=Qe;for(let s=0;s<e;s++){let d=r[s],c,h,b=-1,g=0;for(;g<d.length&&(n.lastIndex=g,h=n.exec(d),h!==null);)g=n.lastIndex,n===Qe?h[1]==="!--"?n=Gr:h[1]!==void 0?n=Kr:h[2]!==void 0?(Qr.test(h[2])&&(o=RegExp("</"+h[2],"g")),n=Ae):h[3]!==void 0&&(n=Ae):n===Ae?h[0]===">"?(n=o!=null?o:Qe,b=-1):h[1]===void 0?b=-2:(b=n.lastIndex-h[2].length,c=h[1],n=h[3]===void 0?Ae:h[3]==='"'?Yr:Xr):n===Yr||n===Xr?n=Ae:n===Gr||n===Kr?n=Qe:(n=Ae,o=void 0);let y=n===Ae&&r[s+1].startsWith("/>")?" ":"";i+=n===Qe?d+xd:b>=0?(a.push(c),d.slice(0,b)+tr+d.slice(b)+me+y):d+me+(b===-2?s:y)}return[eo(r,i+(r[e]||"<?>")+(t===2?"</svg>":t===3?"</math>":"")),a]},rt=class r{constructor({strings:t,_$litType$:e},a){let o;this.parts=[];let i=0,n=0,s=t.length-1,d=this.parts,[c,h]=to(t,e);if(this.el=r.createElement(c,a),Se.currentNode=this.el.content,e===2||e===3){let b=this.el.content.firstChild;b.replaceWith(...b.childNodes)}for(;(o=Se.nextNode())!==null&&d.length<s;){if(o.nodeType===1){if(o.hasAttributes())for(let b of o.getAttributeNames())if(b.endsWith(tr)){let g=h[n++],y=o.getAttribute(b).split(me),M=/([.?@])?(.*)/.exec(g);d.push({type:1,index:i,name:M[2],strings:y,ctor:M[1]==="."?St:M[1]==="?"?$t:M[1]==="@"?Lt:Te}),o.removeAttribute(b)}else b.startsWith(me)&&(d.push({type:6,index:i}),o.removeAttribute(b));if(Qr.test(o.tagName)){let b=o.textContent.split(me),g=b.length-1;if(g>0){o.textContent=Et?Et.emptyScript:"";for(let y=0;y<g;y++)o.append(b[y],tt()),Se.nextNode(),d.push({type:2,index:++i});o.append(b[g],tt())}}}else if(o.nodeType===8)if(o.data===ar)d.push({type:2,index:i});else{let b=-1;for(;(b=o.data.indexOf(me,b+1))!==-1;)d.push({type:7,index:i}),b+=me.length-1}i++}}static createElement(t,e){let a=$e.createElement("template");return a.innerHTML=t,a}};function Le(r,t,e=r,a){var n,s,d;if(t===de)return t;let o=a!==void 0?(n=e._$Co)==null?void 0:n[a]:e._$Cl,i=at(t)?void 0:t._$litDirective$;return(o==null?void 0:o.constructor)!==i&&((s=o==null?void 0:o._$AO)==null||s.call(o,!1),i===void 0?o=void 0:(o=new i(r),o._$AT(r,e,a)),a!==void 0?((d=e._$Co)!=null?d:e._$Co=[])[a]=o:e._$Cl=o),o!==void 0&&(t=Le(r,o._$AS(r,t.values),o,a)),t}var At=class{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){var c;let{el:{content:e},parts:a}=this._$AD,o=((c=t==null?void 0:t.creationScope)!=null?c:$e).importNode(e,!0);Se.currentNode=o;let i=Se.nextNode(),n=0,s=0,d=a[0];for(;d!==void 0;){if(n===d.index){let h;d.type===2?h=new He(i,i.nextSibling,this,t):d.type===1?h=new d.ctor(i,d.name,d.strings,this,t):d.type===6&&(h=new Tt(i,this,t)),this._$AV.push(h),d=a[++s]}n!==(d==null?void 0:d.index)&&(i=Se.nextNode(),n++)}return Se.currentNode=$e,o}p(t){let e=0;for(let a of this._$AV)a!==void 0&&(a.strings!==void 0?(a._$AI(t,a,e),e+=a.strings.length-2):a._$AI(t[e])),e++}},He=class r{get _$AU(){var t,e;return(e=(t=this._$AM)==null?void 0:t._$AU)!=null?e:this._$Cv}constructor(t,e,a,o){var i;this.type=2,this._$AH=$,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=a,this.options=o,this._$Cv=(i=o==null?void 0:o.isConnected)!=null?i:!0}get parentNode(){let t=this._$AA.parentNode,e=this._$AM;return e!==void 0&&(t==null?void 0:t.nodeType)===11&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=Le(this,t,e),at(t)?t===$||t==null||t===""?(this._$AH!==$&&this._$AR(),this._$AH=$):t!==this._$AH&&t!==de&&this._(t):t._$litType$!==void 0?this.$(t):t.nodeType!==void 0?this.T(t):Jr(t)?this.k(t):this._(t)}O(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}_(t){this._$AH!==$&&at(this._$AH)?this._$AA.nextSibling.data=t:this.T($e.createTextNode(t)),this._$AH=t}$(t){var i;let{values:e,_$litType$:a}=t,o=typeof a=="number"?this._$AC(t):(a.el===void 0&&(a.el=rt.createElement(eo(a.h,a.h[0]),this.options)),a);if(((i=this._$AH)==null?void 0:i._$AD)===o)this._$AH.p(e);else{let n=new At(o,this),s=n.u(this.options);n.p(e),this.T(s),this._$AH=n}}_$AC(t){let e=Wr.get(t.strings);return e===void 0&&Wr.set(t.strings,e=new rt(t)),e}k(t){rr(this._$AH)||(this._$AH=[],this._$AR());let e=this._$AH,a,o=0;for(let i of t)o===e.length?e.push(a=new r(this.O(tt()),this.O(tt()),this,this.options)):a=e[o],a._$AI(i),o++;o<e.length&&(this._$AR(a&&a._$AB.nextSibling,o),e.length=o)}_$AR(t=this._$AA.nextSibling,e){var a;for((a=this._$AP)==null?void 0:a.call(this,!1,!0,e);t&&t!==this._$AB;){let o=t.nextSibling;t.remove(),t=o}}setConnected(t){var e;this._$AM===void 0&&(this._$Cv=t,(e=this._$AP)==null||e.call(this,t))}},Te=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,a,o,i){this.type=1,this._$AH=$,this._$AN=void 0,this.element=t,this.name=e,this._$AM=o,this.options=i,a.length>2||a[0]!==""||a[1]!==""?(this._$AH=Array(a.length-1).fill(new String),this.strings=a):this._$AH=$}_$AI(t,e=this,a,o){let i=this.strings,n=!1;if(i===void 0)t=Le(this,t,e,0),n=!at(t)||t!==this._$AH&&t!==de,n&&(this._$AH=t);else{let s=t,d,c;for(t=i[0],d=0;d<i.length-1;d++)c=Le(this,s[a+d],e,d),c===de&&(c=this._$AH[d]),n||(n=!at(c)||c!==this._$AH[d]),c===$?t=$:t!==$&&(t+=(c!=null?c:"")+i[d+1]),this._$AH[d]=c}n&&!o&&this.j(t)}j(t){t===$?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t!=null?t:"")}},St=class extends Te{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===$?void 0:t}},$t=class extends Te{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==$)}},Lt=class extends Te{constructor(t,e,a,o,i){super(t,e,a,o,i),this.type=5}_$AI(t,e=this){var n;if((t=(n=Le(this,t,e,0))!=null?n:$)===de)return;let a=this._$AH,o=t===$&&a!==$||t.capture!==a.capture||t.once!==a.once||t.passive!==a.passive,i=t!==$&&(a===$||o);o&&this.element.removeEventListener(this.name,this,a),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var e,a;typeof this._$AH=="function"?this._$AH.call((a=(e=this.options)==null?void 0:e.host)!=null?a:this.element,t):this._$AH.handleEvent(t)}},Tt=class{constructor(t,e,a){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=a}get _$AU(){return this._$AM._$AU}_$AI(t){Le(this,t)}},ao={M:tr,P:me,A:ar,C:1,L:to,R:At,D:Jr,V:Le,I:He,H:Te,N:$t,U:Lt,B:St,F:Tt},er=et.litHtmlPolyfillSupport,Zr;er==null||er(rt,He),((Zr=et.litHtmlVersions)!=null?Zr:et.litHtmlVersions=[]).push("3.3.0");var ro=(r,t,e)=>{var i,n;let a=(i=e==null?void 0:e.renderBefore)!=null?i:t,o=a._$litPart$;if(o===void 0){let s=(n=e==null?void 0:e.renderBefore)!=null?n:null;a._$litPart$=o=new He(t.insertBefore(tt(),s),s,void 0,e!=null?e:{})}return o._$AI(r),o};var Ce=globalThis,C=class extends be{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){var e,a;let t=super.createRenderRoot();return(a=(e=this.renderOptions).renderBefore)!=null||(e.renderBefore=t.firstChild),t}update(t){let e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=ro(e,this.renderRoot,this.renderOptions)}connectedCallback(){var t;super.connectedCallback(),(t=this._$Do)==null||t.setConnected(!0)}disconnectedCallback(){var t;super.disconnectedCallback(),(t=this._$Do)==null||t.setConnected(!1)}render(){return de}},oo;C._$litElement$=!0,C.finalized=!0,(oo=Ce.litElementHydrateSupport)==null||oo.call(Ce,{LitElement:C});var ir=Ce.litElementPolyfillSupport;ir==null||ir({LitElement:C});var io;((io=Ce.litElementVersions)!=null?io:Ce.litElementVersions=[]).push("4.2.0");var Pe={ATTRIBUTE:1,CHILD:2,PROPERTY:3,BOOLEAN_ATTRIBUTE:4,EVENT:5,ELEMENT:6},Oe=r=>(...t)=>({_$litDirective$:r,values:t}),we=class{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,a){this._$Ct=t,this._$AM=e,this._$Ci=a}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}};var Ct=Oe(class extends we{constructor(r){var t;if(super(r),r.type!==Pe.ATTRIBUTE||r.name!=="class"||((t=r.strings)==null?void 0:t.length)>2)throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.")}render(r){return" "+Object.keys(r).filter((t=>r[t])).join(" ")+" "}update(r,[t]){var a,o;if(this.st===void 0){this.st=new Set,r.strings!==void 0&&(this.nt=new Set(r.strings.join(" ").split(/\s/).filter((i=>i!==""))));for(let i in t)t[i]&&!((a=this.nt)!=null&&a.has(i))&&this.st.add(i);return this.render(t)}let e=r.element.classList;for(let i of this.st)i in t||(e.remove(i),this.st.delete(i));for(let i in t){let n=!!t[i];n===this.st.has(i)||(o=this.nt)!=null&&o.has(i)||(n?(e.add(i),this.st.add(i)):(e.remove(i),this.st.delete(i)))}return de}});var no=`@charset "UTF-8";
|
|
4
|
+
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}q{quotes:"\u201C" "\u201D" "\u2018" "\u2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}:root{--font-adjust-base:0.517;--font-adjust-step:0.0054;--font-adjust-h1:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*5);--font-adjust-h2:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*4);--font-adjust-h3:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*3);--font-adjust-h4:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*2);--font-adjust-h5:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*1);--font-adjust-h6:var(--font-adjust-base);--font-adjust-body:var(--font-adjust-base);--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}body{color:var(--black);font-family:var(--font-stack);font-size:100%;font-size-adjust:var(--font-adjust-body);line-height:1.375;-webkit-font-smoothing:antialiased}button,input,select,textarea{font-family:var(--font-stack);line-height:1.1875}input[type=date]{display:revert;min-height:35px;min-width:100px;padding-bottom:0;padding-top:0}input[type=date].a-text-input--full{min-width:100%}hr{border:none;border-top:1px solid var(--gray-40)}b,strong{font-weight:600}h1,h2,h3,h4,h5,h6{margin-top:0}.h1,h1{font-size:2.125em;font-size-adjust:var(--font-adjust-h1);font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.4411764706em;text-transform:inherit}blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7647058824em}@media only screen and (max-width:37.5em){blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7307692308em}.h2+.h1,.h2+h1,.h3+.h1,.h3+h1,.h4+.h1,.h4+h1,.h5+.h1,.h5+h1,.h6+.h1,.h6+h1,h2+.h1,h2+h1,h3+.h1,h3+h1,h4+.h1,h4+h1,h5+.h1,h5+h1,h6+.h1,h6+h1{margin-top:1.1538461538em}.h1,h1{font-size:1.625em;font-size-adjust:var(--font-adjust-h2);font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.5769230769em;text-transform:inherit}blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7307692308em}.h1+.h1,.h1+h1,.h3+.h1,.h3+h1,.h4+.h1,.h4+h1,.h5+.h1,.h5+h1,.h6+.h1,.h6+h1,h1+.h1,h1+h1,h3+.h1,h3+h1,h4+.h1,h4+h1,h5+.h1,h5+h1,h6+.h1,h6+h1{margin-top:1.1538461538em}}.h2,h2{font-size:1.625em;font-size-adjust:var(--font-adjust-h2);font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.5769230769em;text-transform:inherit}blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.7307692308em}.h1+.h2,.h1+h2,.h3+.h2,.h3+h2,.h4+.h2,.h4+h2,.h5+.h2,.h5+h2,.h6+.h2,.h6+h2,h1+.h2,h1+h2,h3+.h2,h3+h2,h4+.h2,h4+h2,h5+.h2,h5+h2,h6+.h2,h6+h2{margin-top:1.1538461538em}@media only screen and (max-width:37.5em){blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.3636363636em}.h2,h2{font-size:1.375em;font-size-adjust:var(--font-adjust-h3);font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.6818181818em;text-transform:inherit}.h1+.h2,.h1+h2,.h2+.h2,.h2+h2,.h4+.h2,.h4+h2,.h5+.h2,.h5+h2,.h6+.h2,.h6+h2,blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,h1+.h2,h1+h2,h2+.h2,h2+h2,h4+.h2,h4+h2,h5+.h2,h5+h2,h6+.h2,h6+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.3636363636em}}.h3,h3{font-size:1.375em;font-size-adjust:var(--font-adjust-h3);font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.6818181818em;text-transform:inherit}.h1+.h3,.h1+h3,.h2+.h3,.h2+h3,.h4+.h3,.h4+h3,.h5+.h3,.h5+h3,.h6+.h3,.h6+h3,blockquote+.h3,blockquote+h3,dl+.h3,dl+h3,figure+.h3,figure+h3,h1+.h3,h1+h3,h2+.h3,h2+h3,h4+.h3,h4+h3,h5+.h3,h5+h3,h6+.h3,h6+h3,img+.h3,img+h3,ol+.h3,ol+h3,p+.h3,p+h3,table+.h3,table+h3,ul+.h3,ul+h3{margin-top:1.3636363636em}@media only screen and (max-width:37.5em){.h3,h3{font-size:1.125em;font-size-adjust:var(--font-adjust-h4);font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.8333333333em;text-transform:inherit}.h1+.h3,.h1+h3,.h2+.h3,.h2+h3,.h3+.h3,.h3+h3,.h5+.h3,.h5+h3,.h6+.h3,.h6+h3,blockquote+.h3,blockquote+h3,dl+.h3,dl+h3,figure+.h3,figure+h3,h1+.h3,h1+h3,h2+.h3,h2+h3,h3+.h3,h3+h3,h5+.h3,h5+h3,h6+.h3,h6+h3,img+.h3,img+h3,ol+.h3,ol+h3,p+.h3,p+h3,table+.h3,table+h3,ul+.h3,ul+h3{margin-top:1.6666666667em}}.h4,h4{font-size:1.125em;font-size-adjust:var(--font-adjust-h4);font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.8333333333em;text-transform:inherit}.h1+.h4,.h1+h4,.h2+.h4,.h2+h4,.h3+.h4,.h3+h4,.h5+.h4,.h5+h4,.h6+.h4,.h6+h4,blockquote+.h4,blockquote+h4,dl+.h4,dl+h4,figure+.h4,figure+h4,h1+.h4,h1+h4,h2+.h4,h2+h4,h3+.h4,h3+h4,h5+.h4,h5+h4,h6+.h4,h6+h4,img+.h4,img+h4,ol+.h4,ol+h4,p+.h4,p+h4,table+.h4,table+h4,ul+.h4,ul+h4{margin-top:1.6666666667em}@media only screen and (max-width:37.5em){.h4,h4{font-size:1em;line-height:1.125;margin-bottom:.625em}}.h5,h5{font-size:.875em;font-size-adjust:var(--font-adjust-h5);font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.0714285714em;text-transform:uppercase}.h1+.h5,.h1+h5,.h2+.h5,.h2+h5,.h3+.h5,.h3+h5,.h4+.h5,.h4+h5,.h6+.h5,.h6+h5,blockquote+.h5,blockquote+h5,dl+.h5,dl+h5,figure+.h5,figure+h5,h1+.h5,h1+h5,h2+.h5,h2+h5,h3+.h5,h3+h5,h4+.h5,h4+h5,h6+.h5,h6+h5,img+.h5,img+h5,ol+.h5,ol+h5,p+.h5,p+h5,table+.h5,table+h5,ul+.h5,ul+h5{margin-top:2.1428571429em}.h6,h6{font-size:.75em;font-size-adjust:var(--font-adjust-h6);font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.25em;text-transform:uppercase}.h1+.h6,.h1+h6,.h2+.h6,.h2+h6,.h3+.h6,.h3+h6,.h4+.h6,.h4+h6,.h5+.h6,.h5+h6,blockquote+.h6,blockquote+h6,dl+.h6,dl+h6,figure+.h6,figure+h6,h1+.h6,h1+h6,h2+.h6,h2+h6,h3+.h6,h3+h6,h4+.h6,h4+h6,h5+.h6,h5+h6,img+.h6,img+h6,ol+.h6,ol+h6,p+.h6,p+h6,table+.h6,table+h6,ul+.h6,ul+h6{margin-top:2.5em}.lead-paragraph{font-size:1.375em;font-size-adjust:var(--font-adjust-h3);font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:15px;margin-top:0;text-transform:inherit}@media only screen and (max-width:37.5em){.lead-paragraph{font-size:1.125em;font-size-adjust:var(--font-adjust-h4);font-weight:400;letter-spacing:inherit;line-height:1.25;text-transform:inherit}}.superheading{font-size:3em;font-weight:400;line-height:1.25;margin-bottom:.4166666667em}blockquote,dl,figure,ol,p,table,ul{margin-bottom:.9375em;margin-top:0}blockquote:last-child,dl:last-child,figure:last-child,ol:last-child,p:last-child,table:last-child,ul:last-child{margin-bottom:0}p+ol,p+ul{margin-top:-.3125em}ol ol,ol ul,ul ol,ul ul{margin-top:.5em}li{margin-bottom:.5em}li:last-child,nav li{margin-bottom:0}a{border-color:var(--pacific);border-style:dotted;border-width:0;color:var(--pacific);text-decoration:none}a.visited,a:visited{border-color:var(--teal);color:var(--teal)}a.hover,a:hover{border-color:var(--pacific-dark);border-style:solid;color:var(--pacific-dark)}a.focus,a:focus{border-style:solid;outline:thin dotted;outline-offset:1px}a.active,a:active{border-color:var(--navy);border-style:solid;color:var(--navy)}dd a,li a,p a{border-bottom-width:1px}nav a{border-bottom-width:0}ul{list-style:square;padding-left:1.125em}ul ul{list-style-type:circle}ol{padding-left:1.3125em}ol li:nth-last-child(n+10),ol li:nth-last-child(n+10)~li{margin-left:.5625rem}ol ol{list-style-type:lower-alpha}ol ol li{margin-left:0!important}ol ol ol{list-style-type:lower-roman}nav ol,nav ol ol,nav ul,nav ul ul{list-style:none;list-style-image:none}caption{margin-bottom:.625em;text-align:left}td,th{padding:.625em}thead td,thead th{background:var(--gray-5);color:var(--black);font-size:1em;padding:.7142857143em;vertical-align:top}tbody tr,thead{border-bottom:1px solid var(--gray)}th{font-weight:600;text-align:left}thead th .h2,thead th .h3,thead th .h4,thead th .h5,thead th .h6,thead th h2,thead th h3,thead th h4,thead th h5,thead th h6{font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;text-transform:inherit}blockquote{margin-left:.9375em;margin-right:.9375em}@media only screen and (min-width:37.5625em){blockquote{margin-left:1.875em;margin-right:1.875em}}img{max-width:100%}figure{margin-left:0;margin-right:0}figure img{vertical-align:middle}code,pre{background:var(--gray-5);border-radius:4px;color:var(--black);font-family:Input Mono,Consolas,Monaco,Courier New,monospace}code{font-size:.8125em;padding:.2307692308em .2307692308em 0}pre{display:block;overflow-wrap:break-word;padding:.625em .9375em;white-space:pre-wrap}pre code{background-color:transparent;padding:0}button.a-btn::-moz-focus-inner,input.a-btn::-moz-focus-inner{border:0}.a-btn{align-items:center;appearance:none;border:0;border-radius:.25em;box-sizing:border-box;cursor:pointer;display:flex;font-size:1em;font-weight:500;gap:.625rem;height:fit-content;justify-content:center;margin:0;padding:.5em .875em;text-align:center;text-decoration:none;transition:background-color .1s;width:fit-content}.a-btn,.a-btn:link,.a-btn:visited{background-color:var(--pacific);color:var(--white)}.a-btn.focus,.a-btn.hover,.a-btn:focus,.a-btn:hover{background-color:var(--pacific-dark);color:var(--white)}.a-btn.focus,.a-btn:focus{outline:1px dotted var(--pacific);outline-offset:1px}.a-btn.active,.a-btn:active{background-color:var(--navy)}.a-btn--secondary,.a-btn--secondary:link,.a-btn--secondary:visited{background-color:var(--white);box-shadow:0 0 0 1px var(--pacific) inset;color:var(--pacific)}.a-btn--secondary.focus,.a-btn--secondary.hover,.a-btn--secondary:focus,.a-btn--secondary:hover{background-color:var(--pacific-10);box-shadow:0 0 0 1px var(--pacific-dark) inset;color:var(--pacific-dark)}.a-btn--secondary.focus,.a-btn--secondary:focus{outline-color:var(--pacific)}.a-btn--secondary.active,.a-btn--secondary:active{background-color:var(--pacific-20);box-shadow:0 0 0 1px var(--navy) inset;color:var(--navy)}.a-btn--warning,.a-btn--warning:link,.a-btn--warning:visited{background-color:var(--red-mid-dark);color:var(--white)}.a-btn--warning.focus,.a-btn--warning.hover,.a-btn--warning:focus,.a-btn--warning:hover{background-color:var(--red-dark)}.a-btn--warning.focus,.a-btn--warning:focus{outline-color:var(--red-mid-dark)}.a-btn--warning.active,.a-btn--warning:active{background-color:var(--gray-dark)}.a-btn--disabled,.a-btn--disabled.active,.a-btn--disabled.focus,.a-btn--disabled.hover,.a-btn--disabled:active,.a-btn--disabled:focus,.a-btn--disabled:hover,.a-btn--disabled:link,.a-btn--disabled:visited,.a-btn[disabled],.a-btn[disabled].active,.a-btn[disabled].focus,.a-btn[disabled].hover,.a-btn[disabled]:active,.a-btn[disabled]:focus,.a-btn[disabled]:hover,.a-btn[disabled]:link,.a-btn[disabled]:visited{background-color:var(--gray-20);color:var(--gray-dark);cursor:default;cursor:not-allowed}.a-btn--disabled.focus,.a-btn--disabled:focus,.a-btn[disabled].focus,.a-btn[disabled]:focus{outline-color:var(--gray-20)}@media only screen and (max-width:37.5em){.a-btn--full-on-xs{width:100%}}.a-btn:has(svg+span) span{order:3}.a-btn:has(span+svg) svg{flex:none;order:3}.a-btn:not(.a-btn--hide-icon):has(span+svg):before,.a-btn:not(.a-btn--hide-icon):has(svg+span):before{border-left:1px solid var(--pacific-60);content:"";order:2;place-self:normal}.a-btn--secondary:has(svg):before{border-color:var(--pacific-60)!important}.a-btn--warning:has(svg):before{border-color:var(--red-60)!important}.a-btn--disabled:has(svg):before,.a-btn[disabled]:has(svg):before{border-color:var(--gray-60)!important}.a-btn--hide-icon svg{display:none}:host{display:flex;width:fit-content}@media only screen and (max-width:37.5em){:host([full-on-mobile]){width:100%}}`;var _d=["primary","secondary","warning"],wd=["button","submit","reset"],Q,nr,dr,so,lo,It=class It extends C{constructor(){super();j(this,Q);this.disabled=!1,this.variant="primary",this.fullOnMobile=!1,this.type="button"}static get properties(){return{href:{type:String},disabled:{type:Boolean,reflect:!0},variant:{type:String},fullOnMobile:{type:Boolean,attribute:"full-on-mobile",reflect:!0},type:{type:String}}}hideIcon(){let e=p(this,Q,nr).call(this);e&&(e.style.display="none")}showIcon(){let e=p(this,Q,nr).call(this);e&&(e.style.display="")}render(){let e=Ct(l(this,Q,lo));return this.href?S`<a class="${e}" href="${this.disabled?void 0:this.href}" role="button" aria-disabled="${String(this.disabled)}" tabindex="${this.disabled?-1:0}"><slot></slot></a>`:S`<button class="${e}" ?disabled="${this.disabled}" type="${l(this,Q,so)}"><slot></slot></button>`}static init(){window.customElements.get("cfpb-button")||window.customElements.define("cfpb-button",It)}};Q=new WeakSet,nr=function(){let a=this.shadowRoot.querySelector("slot").assignedNodes({flatten:!0});for(let o of a)if(o.tagName.toLowerCase()==="svg")return o},dr=function(){return _d.includes(this.variant)?this.variant:"primary"},so=function(){return wd.includes(this.type)?this.type:"button"},lo=function(){return{"a-btn":!0,[`a-btn--${l(this,Q,dr)}`]:l(this,Q,dr)!=="primary"}},q(It,"styles",P`${B(no)}`);var Ot=It;var co=`:root{--font-adjust-base:0.517;--font-adjust-step:0.0054;--font-adjust-h1:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*5);--font-adjust-h2:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*4);--font-adjust-h3:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*3);--font-adjust-h4:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*2);--font-adjust-h5:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*1);--font-adjust-h6:var(--font-adjust-base);--font-adjust-body:var(--font-adjust-base);--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}.no-js .u-js-only,.u-hide-if-js{display:none!important}.no-js .u-hide-if-js{display:block!important}@media screen{.u-print-only{display:none}}@media print{.u-screen-only{display:none}}.u-clearfix:after{clear:both;content:"";display:table}.u-visually-hidden{border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0 0 0 0)}@media only screen and (max-width:37.5em){.u-hide-on-mobile{display:none}}@media only screen and (min-width:37.5625em){.u-show-on-mobile{display:none}}.u-hidden{display:none!important}.u-invisible{visibility:hidden}.u-right{float:right}.u-nowrap{white-space:nowrap}.u-flexible-container{height:0;padding-bottom:56.25%;position:relative}.u-flexible-container__inner{height:100%;left:0;position:absolute;top:0;width:100%}.u-flexible-container--4-3{height:0;padding-bottom:75%;position:relative}.u-mt0{margin-top:0!important}.u-mb0{margin-bottom:0!important}.u-mt5{margin-top:5px!important}.u-mb5{margin-bottom:5px!important}.u-mt10{margin-top:10px!important}.u-mb10{margin-bottom:10px!important}.u-mt15{margin-top:15px!important}.u-mb15{margin-bottom:15px!important}.u-mt20{margin-top:20px!important}.u-mb20{margin-bottom:20px!important}.u-mt30{margin-top:30px!important}.u-mb30{margin-bottom:30px!important}.u-mt45{margin-top:45px!important}.u-mb45{margin-bottom:45px!important}.u-mt60{margin-top:60px!important}.u-mb60{margin-bottom:60px!important}.u-w100pct{width:100%}.u-w90pct{width:90%}.u-w80pct{width:80%}.u-w70pct{width:70%}.u-w60pct{width:60%}.u-w50pct{width:50%}.u-w40pct{width:40%}.u-w30pct{width:30%}.u-w20pct{width:20%}.u-w10pct{width:10%}.u-w75pct{width:75%}.u-w65pct{width:65%}.u-w25pct{width:25%}.u-w15pct{width:15%}.u-w66pct{width:66.6666666667%}.u-w33pct{width:33.3333333333%}.u-small-text,small{font-size:.875em}.u-small-text--subtle,small--subtle{color:var(--gray)}.u-no-animation{transition-duration:0s!important}.u-move-transition{transition:transform .25s ease-out}.u-move-to-origin{transform:translateZ(0)}.u-move-left{transform:translate3d(-100%,0,0)}.u-move-left-2x{transform:translate3d(-200%,0,0)}.u-move-left-3x{transform:translate3d(-300%,0,0)}.u-move-right{transform:translate3d(100%,0,0)}.u-move-up{transform:translate3d(0,-100%,0)}.u-alpha-transition{transition:opacity .25s linear}.u-alpha-100{opacity:1}.u-alpha-0{opacity:0}.u-max-height-transition{contain:paint;overflow:hidden;transition:max-height .2s ease-out}.u-max-height-zero{max-height:0!important}.u-max-height-summary{max-height:88px!important}:host .m-form-field{--choice-border:var(--choice-border-default);--choice-border-hover:var(--choice-border-hover-default);--choice-border-focus:var(--choice-border-focus-default);--choice-outline-focus:var(--choice-outline-focus-default);--choice-bg:var(--choice-bg-default);--choice-bg-selected:var(--choice-bg-selected-default);--choice-bg-selected-focus:var(--choice-bg-selected-focus-default);--choice-label-disabled:var(--choice-label-disabled-default);--choice-border-width-addendum:0}:host .m-form-field--in-list label{box-sizing:border-box;padding:.3125em 0 .3125em .625em;width:100%}:host .m-form-field .a-label+.a-text-input{margin-top:.3125em}:host .m-form-field--checkbox .a-label,:host .m-form-field--radio .a-label{cursor:pointer;display:inline-grid;grid-template-columns:1.875em auto;overflow-wrap:anywhere;vertical-align:top}:host .m-form-field--checkbox .a-label:before,:host .m-form-field--radio .a-label:before{background-color:var(--choice-bg);border:1px solid var(--choice-border);content:"";display:inline-block;grid-row-end:3;grid-row-start:1;height:1.125em;left:1px;margin-right:10px;outline:var(--choice-border-width-addendum) solid var(--choice-border);position:relative;top:1px;vertical-align:top;width:1.125em}:host .m-form-field--checkbox .a-label.hover:before,:host .m-form-field--checkbox .a-label:hover:before,:host .m-form-field--radio .a-label.hover:before,:host .m-form-field--radio .a-label:hover:before{border-color:var(--choice-border-hover)}:host .m-form-field--checkbox .a-checkbox,:host .m-form-field--checkbox .a-radio,:host .m-form-field--radio .a-checkbox,:host .m-form-field--radio .a-radio{border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0 0 0 0)}:host .m-form-field--checkbox .a-checkbox.focus+.a-label,:host .m-form-field--checkbox .a-checkbox:focus+.a-label,:host .m-form-field--checkbox .a-radio.focus+.a-label,:host .m-form-field--checkbox .a-radio:focus+.a-label,:host .m-form-field--radio .a-checkbox.focus+.a-label,:host .m-form-field--radio .a-checkbox:focus+.a-label,:host .m-form-field--radio .a-radio.focus+.a-label,:host .m-form-field--radio .a-radio:focus+.a-label{outline:1px dotted var(--choice-outline-focus);outline-offset:1px}:host .m-form-field--checkbox .a-checkbox:disabled.focus+.a-label:before,:host .m-form-field--checkbox .a-checkbox:disabled.hover+.a-label:before,:host .m-form-field--checkbox .a-checkbox:disabled:checked+.a-label:before,:host .m-form-field--checkbox .a-checkbox:disabled:focus+.a-label:before,:host .m-form-field--checkbox .a-checkbox:disabled:hover+.a-label:before,:host .m-form-field--checkbox .a-radio:disabled.focus+.a-label:before,:host .m-form-field--checkbox .a-radio:disabled.hover+.a-label:before,:host .m-form-field--checkbox .a-radio:disabled:checked+.a-label:before,:host .m-form-field--checkbox .a-radio:disabled:focus+.a-label:before,:host .m-form-field--checkbox .a-radio:disabled:hover+.a-label:before,:host .m-form-field--radio .a-checkbox:disabled.focus+.a-label:before,:host .m-form-field--radio .a-checkbox:disabled.hover+.a-label:before,:host .m-form-field--radio .a-checkbox:disabled:checked+.a-label:before,:host .m-form-field--radio .a-checkbox:disabled:focus+.a-label:before,:host .m-form-field--radio .a-checkbox:disabled:hover+.a-label:before,:host .m-form-field--radio .a-radio:disabled.focus+.a-label:before,:host .m-form-field--radio .a-radio:disabled.hover+.a-label:before,:host .m-form-field--radio .a-radio:disabled:checked+.a-label:before,:host .m-form-field--radio .a-radio:disabled:focus+.a-label:before,:host .m-form-field--radio .a-radio:disabled:hover+.a-label:before{border-color:var(--choice-border);box-shadow:none;outline:none}:host .m-form-field--checkbox .a-checkbox:disabled+.a-label,:host .m-form-field--checkbox .a-radio:disabled+.a-label,:host .m-form-field--radio .a-checkbox:disabled+.a-label,:host .m-form-field--radio .a-radio:disabled+.a-label{color:var(--choice-label-disabled);cursor:not-allowed}:host .m-form-field--checkbox .a-checkbox:disabled+.a-label:before,:host .m-form-field--checkbox .a-radio:disabled+.a-label:before,:host .m-form-field--radio .a-checkbox:disabled+.a-label:before,:host .m-form-field--radio .a-radio:disabled+.a-label:before{outline:none}:host .m-form-field--checkbox:has(.a-checkbox:disabled),:host .m-form-field--checkbox:has(.a-radio:disabled),:host .m-form-field--radio:has(.a-checkbox:disabled),:host .m-form-field--radio:has(.a-radio:disabled){--choice-border:var(--choice-border-disabled);--choice-bg:var(--choice-bg-disabled);--choice-bg-selected:var(--choice-bg-selected-disabled)}:host .m-form-field--checkbox-error,:host .m-form-field--checkbox-success,:host .m-form-field--checkbox-warning,:host .m-form-field--radio-error,:host .m-form-field--radio-success,:host .m-form-field--radio-warning{--choice-border-width-addendum:1px}:host .m-form-field--checkbox-success,:host .m-form-field--radio-success{--choice-border:var(--choice-border-success)}:host .m-form-field--checkbox-warning,:host .m-form-field--radio-warning{--choice-border:var(--choice-border-warning)}:host .m-form-field--checkbox-error,:host .m-form-field--radio-error{--choice-border:var(--choice-border-error)}:host .m-form-field--checkbox .a-checkbox.focus+.a-label:before,:host .m-form-field--checkbox .a-checkbox:focus+.a-label:before{border-color:var(--choice-border-focus);box-shadow:0 0 0 1px var(--choice-border-focus);outline-color:var(--choice-border-focus)}:host .m-form-field--checkbox .a-checkbox.hover+.a-label:before,:host .m-form-field--checkbox .a-checkbox:hover+.a-label:before{border-color:var(--choice-border-hover);box-shadow:0 0 0 1px var(--choice-border-hover);outline-color:var(--choice-border-hover)}:host .m-form-field--checkbox .a-checkbox:checked+.a-label:before{background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="cf-icon-svg cf-icon-svg--approved" viewBox="0 0 12 19"><path d="M4.63 15.638a1.03 1.03 0 0 1-.79-.37L.36 11.09a1.03 1.03 0 1 1 1.58-1.316l2.535 3.043L9.958 3.32a1.029 1.029 0 0 1 1.783 1.03L5.52 15.122a1.03 1.03 0 0 1-.803.511l-.088.004z"/></svg>');background-position:center 0;background-repeat:no-repeat;background-size:auto 1.1875em}:host .m-form-field--checkbox .a-checkbox:disabled:checked+.a-label:before{background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%235a5d61" aria-hidden="true" viewBox="0 0 12 19"><path d="M4.63 15.638a1.03 1.03 0 0 1-.79-.37L.36 11.09a1.03 1.03 0 1 1 1.58-1.316l2.535 3.043L9.958 3.32a1.029 1.029 0 0 1 1.783 1.03L5.52 15.122a1.03 1.03 0 0 1-.803.511l-.088.004z"/></svg>')}:host .m-form-field--radio .a-label:before{border-radius:50%;transform:rotate(0deg)}:host .m-form-field--radio .a-radio.focus+.a-label:before,:host .m-form-field--radio .a-radio:focus+.a-label:before{border-color:var(--choice-border-focus);box-shadow:0 0 0 1px var(--choice-border-focus);outline:none}:host .m-form-field--radio .a-radio.hover+.a-label:before,:host .m-form-field--radio .a-radio:hover+.a-label:before{border-color:var(--choice-border-hover);box-shadow:0 0 0 1px var(--choice-border-hover);outline:none}:host .m-form-field--radio .a-radio:checked+.a-label:before{background-color:var(--choice-bg-selected);box-shadow:inset 0 0 0 2px var(--white)}:host .m-form-field--radio .a-radio.focus:checked+.a-label:before,:host .m-form-field--radio .a-radio:focus:checked+.a-label:before{background-color:var(--choice-bg-selected-focus);border-color:var(--choice-border-focus);box-shadow:0 0 0 1px var(--choice-border-focus),inset 0 0 0 2px var(--white)}:host .m-form-field--radio .a-radio.hover:checked+.a-label:before,:host .m-form-field--radio .a-radio:hover:checked+.a-label:before{border-color:var(--choice-border-hover);box-shadow:0 0 0 1px var(--choice-border-hover),inset 0 0 0 2px var(--white)}:host .m-form-field--radio .a-radio.hover:checked:disabled+.a-label:before,:host .m-form-field--radio .a-radio:checked:disabled+.a-label:before,:host .m-form-field--radio .a-radio:hover:checked:disabled+.a-label:before{background-color:var(--choice-bg-selected);border-color:var(--choice-border-disabled);box-shadow:inset 0 0 0 2px var(--gray-10)}:host .m-form-field--lg-target{display:block}:host .m-form-field--lg-target .a-label{background-color:var(--gray-10);box-sizing:border-box;padding:15px;width:100%}:host .m-form-field--lg-target .a-checkbox:checked+.a-label,:host .m-form-field--lg-target .a-radio:checked+.a-label{background-color:var(--pacific-20);box-shadow:inset 0 0 0 1px var(--pacific)}:host .m-form-field--lg-target .a-checkbox.focus+.a-label,:host .m-form-field--lg-target .a-checkbox.hover+.a-label,:host .m-form-field--lg-target .a-checkbox:focus+.a-label,:host .m-form-field--lg-target .a-checkbox:hover+.a-label,:host .m-form-field--lg-target .a-radio.focus+.a-label,:host .m-form-field--lg-target .a-radio.hover+.a-label,:host .m-form-field--lg-target .a-radio:focus+.a-label,:host .m-form-field--lg-target .a-radio:hover+.a-label{box-shadow:inset 0 0 0 2px var(--pacific)}:host .m-form-field--lg-target .a-checkbox.focus+.a-label,:host .m-form-field--lg-target .a-checkbox:checked+.a-label,:host .m-form-field--lg-target .a-checkbox:focus+.a-label,:host .m-form-field--lg-target .a-radio.focus+.a-label,:host .m-form-field--lg-target .a-radio:checked+.a-label,:host .m-form-field--lg-target .a-radio:focus+.a-label{outline-offset:1px}:host .m-form-field--lg-target .a-checkbox:checked:disabled+.a-label,:host .m-form-field--lg-target .a-checkbox:disabled+.a-label,:host .m-form-field--lg-target .a-checkbox:hover:disabled+.a-label,:host .m-form-field--lg-target .a-radio:checked:disabled+.a-label,:host .m-form-field--lg-target .a-radio:disabled+.a-label,:host .m-form-field--lg-target .a-radio:hover:disabled+.a-label{background-color:var(--gray-20);box-shadow:none;color:var(--choice-label-disabled)}:host .m-form-field--lg-target .a-checkbox:checked:disabled+.a-label,:host .m-form-field--lg-target .a-checkbox:checked:disabled+.a-label:before,:host .m-form-field--lg-target .a-radio:checked:disabled+.a-label,:host .m-form-field--lg-target .a-radio:checked:disabled+.a-label:before{border:1px solid var(--form-field-border-disabled)}`;var kd=["error","warning","success"],zd=["checkbox","radio"],Y,ho,uo,sr,fo,po,Mt=class Mt extends C{constructor(){super();j(this,Y);this.checked=!1,this.disabled=!1,this.large=!1,this.validation="",this.type="checkbox",this.inlist=!1,this.name="",this.value=""}static get properties(){return{checked:{type:Boolean,reflect:!0},disabled:{type:Boolean},large:{type:Boolean},validation:{type:String},type:{type:String},inlist:{type:Boolean,attribute:!0},name:{type:String},value:{type:String}}}focus(){this.shadowRoot.querySelector("input").focus()}render(){let e=Ct(l(this,Y,po));return S`<div class="${e}" ?large="${this.large}"><input class="a-${this.type}" type="${l(this,Y,fo)}" id="choice-input" ?disabled="${this.disabled}" .checked="${this.checked}" @change="${p(this,Y,ho)}" @input="${p(this,Y,uo)}" aria-invalid="${l(this,Y,sr)==="error"?"true":"false"}"> <label class="a-label" for="choice-input"><slot></slot></label></div>`}static init(){window.customElements.get("cfpb-form-choice")||window.customElements.define("cfpb-form-choice",Mt)}};Y=new WeakSet,ho=function(){this.dispatchEvent(new Event("change",{bubbles:!0,composed:!0}))},uo=function(){this.dispatchEvent(new Event("input",{bubbles:!0,composed:!0}))},sr=function(){return kd.includes(this.validation)?this.validation:void 0},fo=function(){return zd.includes(this.type)?this.type:"checkbox"},po=function(){let e={"m-form-field":!0,[`m-form-field--${this.type}`]:!0,"m-form-field--lg-target":this.large,"m-form-field--in-list":this.inlist};return l(this,Y,sr)&&(e[[`m-form-field--${this.type}-${this.validation}`]]=this.validation),e},q(Mt,"styles",P`${B(co)}`);var qt=Mt;var{I:Xl}=ao;var bo=r=>r.strings===void 0;var ot=(r,t)=>{var a;let e=r._$AN;if(e===void 0)return!1;for(let o of e)(a=o._$AO)==null||a.call(o,t,!1),ot(o,t);return!0},Nt=r=>{let t,e;do{if((t=r._$AM)===void 0)break;e=t._$AN,e.delete(r),r=t}while((e==null?void 0:e.size)===0)},mo=r=>{for(let t;t=r._$AM;r=t){let e=t._$AN;if(e===void 0)t._$AN=e=new Set;else if(e.has(r))break;e.add(r),Sd(t)}};function Ed(r){this._$AN!==void 0?(Nt(this),this._$AM=r,mo(this)):this._$AM=r}function Ad(r,t=!1,e=0){let a=this._$AH,o=this._$AN;if(o!==void 0&&o.size!==0)if(t)if(Array.isArray(a))for(let i=e;i<a.length;i++)ot(a[i],!1),Nt(a[i]);else a!=null&&(ot(a,!1),Nt(a));else ot(this,r)}var Sd=r=>{var t,e;r.type==Pe.CHILD&&((t=r._$AP)!=null||(r._$AP=Ad),(e=r._$AQ)!=null||(r._$AQ=Ed))},Dt=class extends we{constructor(){super(...arguments),this._$AN=void 0}_$AT(t,e,a){super._$AT(t,e,a),mo(this),this.isConnected=t._$AU}_$AO(t,e=!0){var a,o;t!==this.isConnected&&(this.isConnected=t,t?(a=this.reconnected)==null||a.call(this):(o=this.disconnected)==null||o.call(this)),e&&(ot(this,t),Nt(this))}setValue(t){if(bo(this._$Ct))this._$Ct._$AI(t,this);else{let e=[...this._$Ct._$AH];e[this._$Ci]=t,this._$Ct._$AI(e,this,0)}}disconnected(){}reconnected(){}};var hr=()=>new cr,cr=class{},lr=new WeakMap,ur=Oe(class extends Dt{render(r){return $}update(r,[t]){var a;let e=t!==this.G;return e&&this.G!==void 0&&this.rt(void 0),(e||this.lt!==this.ct)&&(this.G=t,this.ht=(a=r.options)==null?void 0:a.host,this.rt(this.ct=r.element)),$}rt(r){var t;if(this.isConnected||(r=void 0),typeof this.G=="function"){let e=(t=this.ht)!=null?t:globalThis,a=lr.get(e);a===void 0&&(a=new WeakMap,lr.set(e,a)),a.get(this.G)!==void 0&&this.G.call(this.ht,void 0),a.set(this.G,r),r!==void 0&&this.G.call(this.ht,r)}else this.G.value=r}get lt(){var r,t,e;return typeof this.G=="function"?(t=lr.get((r=this.ht)!=null?r:globalThis))==null?void 0:t.get(this.G):(e=this.G)==null?void 0:e.value}disconnected(){this.lt===this.ct&&this.rt(void 0)}reconnected(){this.rt(this.ct)}});var go=":root{--font-adjust-base:0.517;--font-adjust-step:0.0054;--font-adjust-h1:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*5);--font-adjust-h2:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*4);--font-adjust-h3:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*3);--font-adjust-h4:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*2);--font-adjust-h5:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*1);--font-adjust-h6:var(--font-adjust-base);--font-adjust-body:var(--font-adjust-base);--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}:host{display:flex;flex-direction:column;width:fit-content}:host::part(upload-details)[hidden=true]{display:none}";var ee,xo,yo,fr,pr,Bt=class Bt extends C{constructor(){super();j(this,ee);q(this,"fileInput",hr());q(this,"fileDetails",hr());p(this,ee,fr).call(this)}static get properties(){return{isDetailHidden:{type:Boolean,attribute:"hidden",reflect:!0},fileName:{type:String},accept:{type:String},value:{type:String},files:{type:FileList}}}render(){return S`<cfpb-button variant="secondary" @click="${()=>{this.fileInput.value.click()}}"><slot></slot></cfpb-button><input class="a-btn a-btn--secondary" type="file" hidden accept="${this.accept}" @input="${()=>p(this,ee,pr).call(this)}" @cancel="${()=>p(this,ee,pr).call(this)}" ${ur(this.fileInput)}><div part="upload-details" ?hidden="${this.isDetailHidden}" ${ur(this.fileDetails)}><h4>File added</h4><ul><li>${this.fileName}</li></ul><p>To remove or replace your file, select a new file and upload again.</p></div>`}static init(){Ot.init(),window.customElements.get("cfpb-file-upload")||window.customElements.define("cfpb-file-upload",Bt)}};ee=new WeakSet,xo=function(e){let a=e;if(a.indexOf("\\")>-1){let o=a.split("\\");a=o[o.length-1]}return a},yo=function(){this.fileName=p(this,ee,xo).call(this,this.fileInput.value.value),this.value=this.fileInput.value.value,this.files=this.fileInput.value.files,this.isDetailHidden=!1},fr=function(){this.fileName="",this.value="",this.files={},this.isDetailHidden=!0},pr=function(){this.fileInput.value.value==""?p(this,ee,fr).call(this):p(this,ee,yo).call(this)},q(Bt,"styles",P`${B(go)}`);var vo=Bt;var _o=":root{--font-adjust-base:0.517;--font-adjust-step:0.0054;--font-adjust-h1:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*5);--font-adjust-h2:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*4);--font-adjust-h3:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*3);--font-adjust-h4:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*2);--font-adjust-h5:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*1);--font-adjust-h6:var(--font-adjust-base);--font-adjust-body:var(--font-adjust-base);--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}:host .a-label slot{display:inline-block}:host .a-label__helper{color:var(--gray-dark);font-size:1rem;font-weight:400}:host .a-label__helper--block{display:block;margin-top:.8333333333em}:host .a-label--heading{display:block;font-size:1.125em;font-size-adjust:var(--font-adjust-h4);font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.5555555556em;text-transform:inherit}.h1+:host .a-label--heading,.h2+:host .a-label--heading,.h3+:host .a-label--heading,.h5+:host .a-label--heading,.h6+:host .a-label--heading,blockquote+:host .a-label--heading,dl+:host .a-label--heading,figure+:host .a-label--heading,h1+:host .a-label--heading,h2+:host .a-label--heading,h3+:host .a-label--heading,h5+:host .a-label--heading,h6+:host .a-label--heading,img+:host .a-label--heading,ol+:host .a-label--heading,p+:host .a-label--heading,table+:host .a-label--heading,ul+:host .a-label--heading{margin-top:1.6666666667em}@media only screen and (max-width:37.5em){:host .a-label--heading{font-size:1em;line-height:1.125;margin-bottom:.625em}}:host .a-label--heading .a-label__helper--block{margin-top:.625rem}";var wo=r=>r!=null?r:$;var Pt,jo,Rt=class Rt extends C{constructor(){super();j(this,Pt);this.block=!1,this.for=""}static get properties(){return{block:{type:Boolean,reflect:!0},for:{type:String}}}render(){return S`<label class="a-label a-label--heading" for="${wo(this.for&&this.for.trim()?this.for:void 0)}"><slot name="label"></slot><small class="${l(this,Pt,jo)}"><slot name="helper"></slot></small></label>`}static init(){window.customElements.get("cfpb-label")||window.customElements.define("cfpb-label",Rt)}};Pt=new WeakSet,jo=function(){let e="a-label__helper";return this.block&&(e+=" a-label__helper--block"),e},q(Rt,"styles",P`${B(_o)}`);var Ht=Rt;var it=class extends we{constructor(t){if(super(t),this.it=$,t.type!==Pe.CHILD)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(t){if(t===$||t==null)return this._t=void 0,this.it=t;if(t===de)return t;if(typeof t!="string")throw Error(this.constructor.directiveName+"() called with a non-string value");if(t===this.it)return this._t;this.it=t;let e=[t];return e.raw=e,this._t={_$litType$:this.constructor.resultType,strings:e,values:[]}}};it.directiveName="unsafeHTML",it.resultType=1;var ko=Oe(it);var zo=":root{--font-adjust-base:0.517;--font-adjust-step:0.0054;--font-adjust-h1:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*5);--font-adjust-h2:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*4);--font-adjust-h3:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*3);--font-adjust-h4:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*2);--font-adjust-h5:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*1);--font-adjust-h6:var(--font-adjust-base);--font-adjust-body:var(--font-adjust-base);--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}:host button{background-color:var(--teal-20);border:1px solid var(--teal);border-radius:.1875rem;color:var(--black);display:flex;font-size:1rem;gap:.625rem;line-height:1.1875;min-width:fit-content;padding:4px 6px;text-align:left}:host button:hover{background-color:var(--teal-40);cursor:pointer}:host button:focus{outline:1px dotted var(--teal);outline-offset:1px}:host button:active{background-color:var(--teal-60)}:host svg{flex:none;height:1.1875rem;pointer-events:none}:host label{display:contents;pointer-events:none}";var Ut,Ao,Ft=class Ft extends C{constructor(){super();j(this,Ut);this.for=""}static get properties(){return{for:{type:String}}}render(){let e=this.for===""?S`<slot></slot>`:S`<label for="${this.for}"><slot></slot></label>`;return S`<button @click="${p(this,Ut,Ao)}">${e} ${ko(_t)}</button>`}static init(){window.customElements.get("cfpb-tag-filter")||window.customElements.define("cfpb-tag-filter",Ft)}};Ut=new WeakSet,Ao=function(){this.dispatchEvent(new CustomEvent("tag-click",{detail:{target:this},bubbles:!1,composed:!1}))},q(Ft,"styles",P`${B(zo)}`);var Eo=Ft;var So=`@charset "UTF-8";
|
|
5
|
+
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}q{quotes:"\u201C" "\u201D" "\u2018" "\u2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}:root{--font-adjust-base:0.517;--font-adjust-step:0.0054;--font-adjust-h1:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*5);--font-adjust-h2:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*4);--font-adjust-h3:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*3);--font-adjust-h4:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*2);--font-adjust-h5:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*1);--font-adjust-h6:var(--font-adjust-base);--font-adjust-body:var(--font-adjust-base);--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}body{color:var(--black);font-family:var(--font-stack);font-size:100%;font-size-adjust:var(--font-adjust-body);line-height:1.375;-webkit-font-smoothing:antialiased}button,input,select,textarea{font-family:var(--font-stack);line-height:1.1875}input[type=date]{display:revert;min-height:35px;min-width:100px;padding-bottom:0;padding-top:0}input[type=date].a-text-input--full{min-width:100%}hr{border:none;border-top:1px solid var(--gray-40)}b,strong{font-weight:600}h1,h2,h3,h4,h5,h6{margin-top:0}.h1,h1{font-size:2.125em;font-size-adjust:var(--font-adjust-h1);font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.4411764706em;text-transform:inherit}blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7647058824em}@media only screen and (max-width:37.5em){blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7307692308em}.h2+.h1,.h2+h1,.h3+.h1,.h3+h1,.h4+.h1,.h4+h1,.h5+.h1,.h5+h1,.h6+.h1,.h6+h1,h2+.h1,h2+h1,h3+.h1,h3+h1,h4+.h1,h4+h1,h5+.h1,h5+h1,h6+.h1,h6+h1{margin-top:1.1538461538em}.h1,h1{font-size:1.625em;font-size-adjust:var(--font-adjust-h2);font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.5769230769em;text-transform:inherit}blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7307692308em}.h1+.h1,.h1+h1,.h3+.h1,.h3+h1,.h4+.h1,.h4+h1,.h5+.h1,.h5+h1,.h6+.h1,.h6+h1,h1+.h1,h1+h1,h3+.h1,h3+h1,h4+.h1,h4+h1,h5+.h1,h5+h1,h6+.h1,h6+h1{margin-top:1.1538461538em}}.h2,h2{font-size:1.625em;font-size-adjust:var(--font-adjust-h2);font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.5769230769em;text-transform:inherit}blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.7307692308em}.h1+.h2,.h1+h2,.h3+.h2,.h3+h2,.h4+.h2,.h4+h2,.h5+.h2,.h5+h2,.h6+.h2,.h6+h2,h1+.h2,h1+h2,h3+.h2,h3+h2,h4+.h2,h4+h2,h5+.h2,h5+h2,h6+.h2,h6+h2{margin-top:1.1538461538em}@media only screen and (max-width:37.5em){blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.3636363636em}.h2,h2{font-size:1.375em;font-size-adjust:var(--font-adjust-h3);font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.6818181818em;text-transform:inherit}.h1+.h2,.h1+h2,.h2+.h2,.h2+h2,.h4+.h2,.h4+h2,.h5+.h2,.h5+h2,.h6+.h2,.h6+h2,blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,h1+.h2,h1+h2,h2+.h2,h2+h2,h4+.h2,h4+h2,h5+.h2,h5+h2,h6+.h2,h6+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.3636363636em}}.h3,h3{font-size:1.375em;font-size-adjust:var(--font-adjust-h3);font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.6818181818em;text-transform:inherit}.h1+.h3,.h1+h3,.h2+.h3,.h2+h3,.h4+.h3,.h4+h3,.h5+.h3,.h5+h3,.h6+.h3,.h6+h3,blockquote+.h3,blockquote+h3,dl+.h3,dl+h3,figure+.h3,figure+h3,h1+.h3,h1+h3,h2+.h3,h2+h3,h4+.h3,h4+h3,h5+.h3,h5+h3,h6+.h3,h6+h3,img+.h3,img+h3,ol+.h3,ol+h3,p+.h3,p+h3,table+.h3,table+h3,ul+.h3,ul+h3{margin-top:1.3636363636em}@media only screen and (max-width:37.5em){.h3,h3{font-size:1.125em;font-size-adjust:var(--font-adjust-h4);font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.8333333333em;text-transform:inherit}.h1+.h3,.h1+h3,.h2+.h3,.h2+h3,.h3+.h3,.h3+h3,.h5+.h3,.h5+h3,.h6+.h3,.h6+h3,blockquote+.h3,blockquote+h3,dl+.h3,dl+h3,figure+.h3,figure+h3,h1+.h3,h1+h3,h2+.h3,h2+h3,h3+.h3,h3+h3,h5+.h3,h5+h3,h6+.h3,h6+h3,img+.h3,img+h3,ol+.h3,ol+h3,p+.h3,p+h3,table+.h3,table+h3,ul+.h3,ul+h3{margin-top:1.6666666667em}}.h4,h4{font-size:1.125em;font-size-adjust:var(--font-adjust-h4);font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.8333333333em;text-transform:inherit}.h1+.h4,.h1+h4,.h2+.h4,.h2+h4,.h3+.h4,.h3+h4,.h5+.h4,.h5+h4,.h6+.h4,.h6+h4,blockquote+.h4,blockquote+h4,dl+.h4,dl+h4,figure+.h4,figure+h4,h1+.h4,h1+h4,h2+.h4,h2+h4,h3+.h4,h3+h4,h5+.h4,h5+h4,h6+.h4,h6+h4,img+.h4,img+h4,ol+.h4,ol+h4,p+.h4,p+h4,table+.h4,table+h4,ul+.h4,ul+h4{margin-top:1.6666666667em}@media only screen and (max-width:37.5em){.h4,h4{font-size:1em;line-height:1.125;margin-bottom:.625em}}.h5,h5{font-size:.875em;font-size-adjust:var(--font-adjust-h5);font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.0714285714em;text-transform:uppercase}.h1+.h5,.h1+h5,.h2+.h5,.h2+h5,.h3+.h5,.h3+h5,.h4+.h5,.h4+h5,.h6+.h5,.h6+h5,blockquote+.h5,blockquote+h5,dl+.h5,dl+h5,figure+.h5,figure+h5,h1+.h5,h1+h5,h2+.h5,h2+h5,h3+.h5,h3+h5,h4+.h5,h4+h5,h6+.h5,h6+h5,img+.h5,img+h5,ol+.h5,ol+h5,p+.h5,p+h5,table+.h5,table+h5,ul+.h5,ul+h5{margin-top:2.1428571429em}.h6,h6{font-size:.75em;font-size-adjust:var(--font-adjust-h6);font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.25em;text-transform:uppercase}.h1+.h6,.h1+h6,.h2+.h6,.h2+h6,.h3+.h6,.h3+h6,.h4+.h6,.h4+h6,.h5+.h6,.h5+h6,blockquote+.h6,blockquote+h6,dl+.h6,dl+h6,figure+.h6,figure+h6,h1+.h6,h1+h6,h2+.h6,h2+h6,h3+.h6,h3+h6,h4+.h6,h4+h6,h5+.h6,h5+h6,img+.h6,img+h6,ol+.h6,ol+h6,p+.h6,p+h6,table+.h6,table+h6,ul+.h6,ul+h6{margin-top:2.5em}.lead-paragraph{font-size:1.375em;font-size-adjust:var(--font-adjust-h3);font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:15px;margin-top:0;text-transform:inherit}@media only screen and (max-width:37.5em){.lead-paragraph{font-size:1.125em;font-size-adjust:var(--font-adjust-h4);font-weight:400;letter-spacing:inherit;line-height:1.25;text-transform:inherit}}.superheading{font-size:3em;font-weight:400;line-height:1.25;margin-bottom:.4166666667em}blockquote,dl,figure,ol,p,table,ul{margin-bottom:.9375em;margin-top:0}blockquote:last-child,dl:last-child,figure:last-child,ol:last-child,p:last-child,table:last-child,ul:last-child{margin-bottom:0}p+ol,p+ul{margin-top:-.3125em}ol ol,ol ul,ul ol,ul ul{margin-top:.5em}li{margin-bottom:.5em}li:last-child,nav li{margin-bottom:0}a{border-color:var(--pacific);border-style:dotted;border-width:0;color:var(--pacific);text-decoration:none}a.visited,a:visited{border-color:var(--teal);color:var(--teal)}a.hover,a:hover{border-color:var(--pacific-dark);border-style:solid;color:var(--pacific-dark)}a.focus,a:focus{border-style:solid;outline:thin dotted;outline-offset:1px}a.active,a:active{border-color:var(--navy);border-style:solid;color:var(--navy)}dd a,li a,p a{border-bottom-width:1px}nav a{border-bottom-width:0}ul{list-style:square;padding-left:1.125em}ul ul{list-style-type:circle}ol{padding-left:1.3125em}ol li:nth-last-child(n+10),ol li:nth-last-child(n+10)~li{margin-left:.5625rem}ol ol{list-style-type:lower-alpha}ol ol li{margin-left:0!important}ol ol ol{list-style-type:lower-roman}nav ol,nav ol ol,nav ul,nav ul ul{list-style:none;list-style-image:none}caption{margin-bottom:.625em;text-align:left}td,th{padding:.625em}thead td,thead th{background:var(--gray-5);color:var(--black);font-size:1em;padding:.7142857143em;vertical-align:top}tbody tr,thead{border-bottom:1px solid var(--gray)}th{font-weight:600;text-align:left}thead th .h2,thead th .h3,thead th .h4,thead th .h5,thead th .h6,thead th h2,thead th h3,thead th h4,thead th h5,thead th h6{font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;text-transform:inherit}blockquote{margin-left:.9375em;margin-right:.9375em}@media only screen and (min-width:37.5625em){blockquote{margin-left:1.875em;margin-right:1.875em}}img{max-width:100%}figure{margin-left:0;margin-right:0}figure img{vertical-align:middle}code,pre{background:var(--gray-5);border-radius:4px;color:var(--black);font-family:Input Mono,Consolas,Monaco,Courier New,monospace}code{font-size:.8125em;padding:.2307692308em .2307692308em 0}pre{display:block;overflow-wrap:break-word;padding:.625em .9375em;white-space:pre-wrap}pre code{background-color:transparent;padding:0}.no-js .u-js-only,.u-hide-if-js{display:none!important}.no-js .u-hide-if-js{display:block!important}@media screen{.u-print-only{display:none}}@media print{.u-screen-only{display:none}}.u-clearfix:after{clear:both;content:"";display:table}.u-visually-hidden{border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0 0 0 0)}@media only screen and (max-width:37.5em){.u-hide-on-mobile{display:none}}@media only screen and (min-width:37.5625em){.u-show-on-mobile{display:none}}.u-hidden{display:none!important}.u-invisible{visibility:hidden}.u-right{float:right}.u-nowrap{white-space:nowrap}.u-flexible-container{height:0;padding-bottom:56.25%;position:relative}.u-flexible-container__inner{height:100%;left:0;position:absolute;top:0;width:100%}.u-flexible-container--4-3{height:0;padding-bottom:75%;position:relative}.u-mt0{margin-top:0!important}.u-mb0{margin-bottom:0!important}.u-mt5{margin-top:5px!important}.u-mb5{margin-bottom:5px!important}.u-mt10{margin-top:10px!important}.u-mb10{margin-bottom:10px!important}.u-mt15{margin-top:15px!important}.u-mb15{margin-bottom:15px!important}.u-mt20{margin-top:20px!important}.u-mb20{margin-bottom:20px!important}.u-mt30{margin-top:30px!important}.u-mb30{margin-bottom:30px!important}.u-mt45{margin-top:45px!important}.u-mb45{margin-bottom:45px!important}.u-mt60{margin-top:60px!important}.u-mb60{margin-bottom:60px!important}.u-w100pct{width:100%}.u-w90pct{width:90%}.u-w80pct{width:80%}.u-w70pct{width:70%}.u-w60pct{width:60%}.u-w50pct{width:50%}.u-w40pct{width:40%}.u-w30pct{width:30%}.u-w20pct{width:20%}.u-w10pct{width:10%}.u-w75pct{width:75%}.u-w65pct{width:65%}.u-w25pct{width:25%}.u-w15pct{width:15%}.u-w66pct{width:66.6666666667%}.u-w33pct{width:33.3333333333%}.u-small-text,small{font-size:.875em}.u-small-text--subtle,small--subtle{color:var(--gray)}.u-no-animation{transition-duration:0s!important}.u-move-transition{transition:transform .25s ease-out}.u-move-to-origin{transform:translateZ(0)}.u-move-left{transform:translate3d(-100%,0,0)}.u-move-left-2x{transform:translate3d(-200%,0,0)}.u-move-left-3x{transform:translate3d(-300%,0,0)}.u-move-right{transform:translate3d(100%,0,0)}.u-move-up{transform:translate3d(0,-100%,0)}.u-alpha-transition{transition:opacity .25s linear}.u-alpha-100{opacity:1}.u-alpha-0{opacity:0}.u-max-height-transition{contain:paint;overflow:hidden;transition:max-height .2s ease-out}.u-max-height-zero{max-height:0!important}.u-max-height-summary{max-height:88px!important}:host .a-tag-topic{display:flex;gap:.3125rem;text-decoration:none}:host .a-tag-topic{color:var(--gold-80);font-size:.875rem;font-weight:600;letter-spacing:1px;text-transform:uppercase}:host .a-tag-topic .a-tag-topic__text{color:var(--gray);word-break:break-word}@media only screen and (max-width:37.5em){:host .a-tag-topic{align-items:center;box-sizing:border-box;display:flex;gap:.3125rem;padding-bottom:.625em;padding-top:.625em;position:relative;width:100%}:host .a-tag-topic .cf-icon-svg--right{margin-left:auto}:host .a-tag-topic .a-tag-topic__text{border-bottom-width:0;flex-shrink:10}}:host a.a-tag-topic{border-color:var(--gold-80);color:var(--gold-80)}:host a.a-tag-topic.visited,:host a.a-tag-topic:visited{border-color:var(--gold-80);color:var(--gold-80)}:host a.a-tag-topic.hover,:host a.a-tag-topic:hover{border-color:var(--gold-80);color:var(--gold-80)}:host a.a-tag-topic.focus,:host a.a-tag-topic:focus{border-color:var(--gold-80);color:var(--gold-80)}:host a.a-tag-topic.active,:host a.a-tag-topic:active{border-color:var(--gold-80);color:var(--gold-80)}:host a.a-tag-topic .a-tag-topic__text{border-bottom-color:var(--gold-80)}@media only screen and (max-width:37.5em){:host a.a-tag-topic{border-bottom-width:1px;border-top-width:1px}:host a.a-tag-topic:focus{outline:none}:host a.a-tag-topic:focus:after{content:"";display:block;height:100%;outline:1px dotted var(--gray);outline-offset:2px;position:absolute;width:100%}}@media only screen and (max-width:37.5em){:host a.a-tag-topic--no-top-border{border-top:none;position:relative}:host a.a-tag-topic:focus:before,:host a.a-tag-topic:hover:before{border-top:1px solid;content:"";display:block;height:1px;position:absolute;top:-1px;width:100%}}:host .a-tag-topic__bullet{font-size:1rem;line-height:1rem}@media only screen and (min-width:37.5625em){:host a.a-tag-topic__text{border-color:var(--gray);color:var(--gray)}:host a.a-tag-topic__text.visited,:host a.a-tag-topic__text:visited{border-color:var(--gray);color:var(--gray)}:host a.a-tag-topic__text.hover,:host a.a-tag-topic__text:hover{border-color:var(--gray);color:var(--gray)}:host a.a-tag-topic__text.focus,:host a.a-tag-topic__text:focus{border-color:var(--gray);color:var(--gray)}:host a.a-tag-topic__text.active,:host a.a-tag-topic__text:active{border-color:var(--gray);color:var(--gray)}:host a.a-tag-topic,:host a.a-tag-topic:active,:host a.a-tag-topic:focus,:host a.a-tag-topic:hover,:host a.a-tag-topic:visited{border-bottom:none;outline-offset:1px}:host a.a-tag-topic .a-tag-topic__text,:host a.a-tag-topic:active .a-tag-topic__text,:host a.a-tag-topic:focus .a-tag-topic__text,:host a.a-tag-topic:hover .a-tag-topic__text,:host a.a-tag-topic:visited .a-tag-topic__text{border-bottom:1px dotted var(--gold-80);padding-bottom:1px}:host a.a-tag-topic:hover .a-tag-topic__text{border-bottom:1px solid var(--gold-80)}:host a.a-tag-topic:focus{outline-color:var(--gray)}:host a.a-tag-topic:focus .a-tag-topic__text{border-bottom-style:solid!important}}`;var Vt,Lo,Gt=class Gt extends C{constructor(){super();j(this,Vt);this.href="",this.siblingOfJumpLink=!1}static get properties(){return{href:{type:String,reflect:!0},siblingOfJumpLink:{type:Boolean}}}render(){let e=S`<span class="a-tag-topic__bullet" aria-hidden="true">•</span>`,a=this.href===""?S`<span class="a-tag-topic">${e}<span class="a-tag-topic__text"><slot></slot></span></span>`:S`<a class="${l(this,Vt,Lo)}" href="${this.href}">${e}<span class="a-tag-topic__text"><slot></slot></span></a>`;return S`${a}`}static init(){window.customElements.get("cfpb-tag-topic")||window.customElements.define("cfpb-tag-topic",Gt)}};Vt=new WeakSet,Lo=function(){let e="a-tag-topic";return this.siblingOfJumpLink&&(e+=" a-tag-topic--no-top-border"),e},q(Gt,"styles",P`${B(So)}`);var $o=Gt;var To=":root{--font-adjust-base:0.517;--font-adjust-step:0.0054;--font-adjust-h1:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*5);--font-adjust-h2:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*4);--font-adjust-h3:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*3);--font-adjust-h4:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*2);--font-adjust-h5:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*1);--font-adjust-h6:var(--font-adjust-base);--font-adjust-body:var(--font-adjust-base);--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}:host ul{list-style-type:none;padding-left:0}:host ul li{display:contents;margin-bottom:0}@media only screen and (min-width:37.5625em){:host ul{display:flex;flex-wrap:wrap;gap:.9375rem}:host ul[stacked]{flex-direction:column;width:fit-content}}:host ul:has(cfpb-tag-filter){display:flex;flex-wrap:wrap;gap:.9375rem}:host html[lang=ar]{direction:rtl;padding-right:0}";var Co=["CFPB-TAG-FILTER","CFPB-TAG-TOPIC"],Re,nt,Ie,E,Io,br,qo,Mo,No,mr,Do,Bo,gr,Kt,Ho,Xt=class Xt extends C{constructor(){super();j(this,E);j(this,Re);j(this,nt,!1);j(this,Ie);this.stacked=!1,this.tagList=[],k(this,Re,new MutationObserver(p(this,E,qo).bind(this)))}static get properties(){return{stacked:{type:Boolean,reflect:!0},tagList:{type:Array}}}connectedCallback(){super.connectedCallback(),p(this,E,Io).call(this)}disconnectedCallback(){l(this,Re).disconnect(),super.disconnectedCallback()}firstUpdated(){requestAnimationFrame(()=>{Co.forEach(e=>{this.querySelectorAll(`${e.toLowerCase()}`).forEach(o=>this.addTag(o))}),k(this,nt,!0)})}addTag(e,a=-1){if(!Array.from(this.children).includes(e))return p(this,E,Do).call(this,e,a),!1;p(this,E,Bo).call(this,e,a),p(this,E,mr).call(this)}removeTag(e){let a=p(this,E,Ho).call(this,e);p(this,E,Kt).call(this,a)}render(){return S`<ul ?stacked="${this.stacked}"></ul>`}static init(){window.customElements.get("cfpb-tag-group")||window.customElements.define("cfpb-tag-group",Xt)}};Re=new WeakMap,nt=new WeakMap,Ie=new WeakMap,E=new WeakSet,Io=function(){l(this,Re).observe(this,{childList:!0,subtree:!1})},br=function(e){return Co.includes(e)},qo=function(e){if(l(this,nt))for(let a of e)a.type==="childList"&&(a.addedNodes.forEach(o=>p(this,E,Mo).call(this,o)),a.removedNodes.forEach(o=>p(this,E,No).call(this,o)))},Mo=function(e){if(p(this,E,br).call(this,e.tagName)){let a=Array.from(this.children).indexOf(e);this.addTag(e,a)}},No=function(e){p(this,E,br).call(this,e.tagName)&&p(this,E,Kt).call(this,e)},mr=function(){if(this.tagList=[...this.renderRoot.querySelectorAll("ul li > *")],this.tagList.length>0){let e=!1;this.tagList.forEach(a=>{e&&(a.siblingOfJumpLink=!0,e=!1),a.href!==""&&(e=!0)})}},Do=function(e,a){a===-1||a>=this.children.length?this.appendChild(e):this.insertBefore(e,this.children[a])},Bo=function(e,a){var c;let o=e.cloneNode(!0),i=document.createElement("li");i.appendChild(o);let n=this.shadowRoot.querySelector("ul"),s=a;a===-1||a>=n.children.length?(n.appendChild(i),s=n.children.length-1):n.insertBefore(i,n.children[a]),o.addEventListener("tag-click",()=>{this.dispatchEvent(new CustomEvent("tag-click",{detail:{target:o,index:s},bubbles:!0,composed:!0})),p(this,E,Kt).call(this,o)}),(c=l(this,Ie))!=null||k(this,Ie,new Map);let d=p(this,E,gr).call(this,e);l(this,Ie).set(d,i),this.dispatchEvent(new CustomEvent("tag-added",{detail:{target:e,index:s},bubbles:!0,composed:!0}))},gr=function(e){return`${e.tagName}::${e.textContent.trim()}`},Kt=function(e){let a=p(this,E,gr).call(this,e),o=l(this,Ie).get(a);if(!o)return!1;let i=Array.from(this.children).indexOf(e);i===-1&&o.parentElement&&(i=Array.from(o.parentElement.children).indexOf(o)),e.parentElement===this&&e.remove(),o.parentElement&&o.remove(),l(this,Ie).delete(a),this.dispatchEvent(new CustomEvent("tag-removed",{detail:{target:e,index:i},bubbles:!0,composed:!0})),p(this,E,mr).call(this)},Ho=function(e){return e.tagName==="LI"&&e.shadowRoot?e.querySelector("cfpb-tag-filter"):this.contains(e)?e:null},q(Xt,"styles",P`${B(To)}`);var Oo=Xt;var Po=`@charset "UTF-8";
|
|
6
|
+
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}q{quotes:"\u201C" "\u201D" "\u2018" "\u2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}:root{--font-adjust-base:0.517;--font-adjust-step:0.0054;--font-adjust-h1:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*5);--font-adjust-h2:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*4);--font-adjust-h3:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*3);--font-adjust-h4:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*2);--font-adjust-h5:calc(var(--font-size-adjust-base) + var(--font-adjust-step)*1);--font-adjust-h6:var(--font-adjust-base);--font-adjust-body:var(--font-adjust-base);--input-text-default:var(--black);--input-text-disabled-default:var(--gray-dark);--input-text-placeholder-default:var(--gray-dark);--input-border-default:var(--gray-60);--input-border-disabled:var(--gray-60);--input-border-success:var(--green);--input-border-warning:var(--gold);--input-border-error:var(--red);--input-border-hover-default:var(--pacific);--input-border-focus-default:var(--pacific);--input-bg-default:var(--white);--input-bg-disabled-default:var(--gray-10);--form-alert-icon-color-default:var(--gray);--form-alert-icon-color-success:var(--green);--form-alert-icon-color-warning:var(--gold);--form-alert-icon-color-error:var(--red);--select-border-default:var(--gray-60);--select-border-width-default:1px;--select-border-error:var(--red);--select-border-width-error:2px;--select-border-hover-default:var(--pacific);--select-border-focus-default:var(--pacific);--select-bg-disabled-default:var(--gray-10);--select-icon-bg-default:var(--gray-10);--select-text-disabled-default:var(--gray-dark);--choice-border-default:var(--gray-60);--choice-border-disabled:var(--gray-60);--choice-border-success:var(--green);--choice-border-warning:var(--gold);--choice-border-error:var(--red);--choice-border-hover-default:var(--pacific);--choice-border-focus-default:var(--pacific);--choice-outline-focus-default:var(--pacific);--choice-bg-default:var(--white);--choice-bg-disabled:var(--gray-10);--choice-bg-selected-default:var(--pacific);--choice-bg-selected-disabled:var(--gray-40);--choice-bg-selected-focus-default:var(--pacific);--choice-label-disabled-default:var(--gray-dark)}body{color:var(--black);font-family:var(--font-stack);font-size:100%;font-size-adjust:var(--font-adjust-body);line-height:1.375;-webkit-font-smoothing:antialiased}button,input,select,textarea{font-family:var(--font-stack);line-height:1.1875}input[type=date]{display:revert;min-height:35px;min-width:100px;padding-bottom:0;padding-top:0}input[type=date].a-text-input--full{min-width:100%}hr{border:none;border-top:1px solid var(--gray-40)}b,strong{font-weight:600}h1,h2,h3,h4,h5,h6{margin-top:0}.h1,h1{font-size:2.125em;font-size-adjust:var(--font-adjust-h1);font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.4411764706em;text-transform:inherit}blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7647058824em}@media only screen and (max-width:37.5em){blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7307692308em}.h2+.h1,.h2+h1,.h3+.h1,.h3+h1,.h4+.h1,.h4+h1,.h5+.h1,.h5+h1,.h6+.h1,.h6+h1,h2+.h1,h2+h1,h3+.h1,h3+h1,h4+.h1,h4+h1,h5+.h1,h5+h1,h6+.h1,h6+h1{margin-top:1.1538461538em}.h1,h1{font-size:1.625em;font-size-adjust:var(--font-adjust-h2);font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.5769230769em;text-transform:inherit}blockquote+.h1,blockquote+h1,dl+.h1,dl+h1,figure+.h1,figure+h1,img+.h1,img+h1,ol+.h1,ol+h1,p+.h1,p+h1,table+.h1,table+h1,ul+.h1,ul+h1{margin-top:1.7307692308em}.h1+.h1,.h1+h1,.h3+.h1,.h3+h1,.h4+.h1,.h4+h1,.h5+.h1,.h5+h1,.h6+.h1,.h6+h1,h1+.h1,h1+h1,h3+.h1,h3+h1,h4+.h1,h4+h1,h5+.h1,h5+h1,h6+.h1,h6+h1{margin-top:1.1538461538em}}.h2,h2{font-size:1.625em;font-size-adjust:var(--font-adjust-h2);font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.5769230769em;text-transform:inherit}blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.7307692308em}.h1+.h2,.h1+h2,.h3+.h2,.h3+h2,.h4+.h2,.h4+h2,.h5+.h2,.h5+h2,.h6+.h2,.h6+h2,h1+.h2,h1+h2,h3+.h2,h3+h2,h4+.h2,h4+h2,h5+.h2,h5+h2,h6+.h2,h6+h2{margin-top:1.1538461538em}@media only screen and (max-width:37.5em){blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.3636363636em}.h2,h2{font-size:1.375em;font-size-adjust:var(--font-adjust-h3);font-weight:600;letter-spacing:inherit;line-height:1.25;margin-bottom:.6818181818em;text-transform:inherit}.h1+.h2,.h1+h2,.h2+.h2,.h2+h2,.h4+.h2,.h4+h2,.h5+.h2,.h5+h2,.h6+.h2,.h6+h2,blockquote+.h2,blockquote+h2,dl+.h2,dl+h2,figure+.h2,figure+h2,h1+.h2,h1+h2,h2+.h2,h2+h2,h4+.h2,h4+h2,h5+.h2,h5+h2,h6+.h2,h6+h2,img+.h2,img+h2,ol+.h2,ol+h2,p+.h2,p+h2,table+.h2,table+h2,ul+.h2,ul+h2{margin-top:1.3636363636em}}.h3,h3{font-size:1.375em;font-size-adjust:var(--font-adjust-h3);font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.6818181818em;text-transform:inherit}.h1+.h3,.h1+h3,.h2+.h3,.h2+h3,.h4+.h3,.h4+h3,.h5+.h3,.h5+h3,.h6+.h3,.h6+h3,blockquote+.h3,blockquote+h3,dl+.h3,dl+h3,figure+.h3,figure+h3,h1+.h3,h1+h3,h2+.h3,h2+h3,h4+.h3,h4+h3,h5+.h3,h5+h3,h6+.h3,h6+h3,img+.h3,img+h3,ol+.h3,ol+h3,p+.h3,p+h3,table+.h3,table+h3,ul+.h3,ul+h3{margin-top:1.3636363636em}@media only screen and (max-width:37.5em){.h3,h3{font-size:1.125em;font-size-adjust:var(--font-adjust-h4);font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:.8333333333em;text-transform:inherit}.h1+.h3,.h1+h3,.h2+.h3,.h2+h3,.h3+.h3,.h3+h3,.h5+.h3,.h5+h3,.h6+.h3,.h6+h3,blockquote+.h3,blockquote+h3,dl+.h3,dl+h3,figure+.h3,figure+h3,h1+.h3,h1+h3,h2+.h3,h2+h3,h3+.h3,h3+h3,h5+.h3,h5+h3,h6+.h3,h6+h3,img+.h3,img+h3,ol+.h3,ol+h3,p+.h3,p+h3,table+.h3,table+h3,ul+.h3,ul+h3{margin-top:1.6666666667em}}.h4,h4{font-size:1.125em;font-size-adjust:var(--font-adjust-h4);font-weight:500;letter-spacing:inherit;line-height:1.25;margin-bottom:.8333333333em;text-transform:inherit}.h1+.h4,.h1+h4,.h2+.h4,.h2+h4,.h3+.h4,.h3+h4,.h5+.h4,.h5+h4,.h6+.h4,.h6+h4,blockquote+.h4,blockquote+h4,dl+.h4,dl+h4,figure+.h4,figure+h4,h1+.h4,h1+h4,h2+.h4,h2+h4,h3+.h4,h3+h4,h5+.h4,h5+h4,h6+.h4,h6+h4,img+.h4,img+h4,ol+.h4,ol+h4,p+.h4,p+h4,table+.h4,table+h4,ul+.h4,ul+h4{margin-top:1.6666666667em}@media only screen and (max-width:37.5em){.h4,h4{font-size:1em;line-height:1.125;margin-bottom:.625em}}.h5,h5{font-size:.875em;font-size-adjust:var(--font-adjust-h5);font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.0714285714em;text-transform:uppercase}.h1+.h5,.h1+h5,.h2+.h5,.h2+h5,.h3+.h5,.h3+h5,.h4+.h5,.h4+h5,.h6+.h5,.h6+h5,blockquote+.h5,blockquote+h5,dl+.h5,dl+h5,figure+.h5,figure+h5,h1+.h5,h1+h5,h2+.h5,h2+h5,h3+.h5,h3+h5,h4+.h5,h4+h5,h6+.h5,h6+h5,img+.h5,img+h5,ol+.h5,ol+h5,p+.h5,p+h5,table+.h5,table+h5,ul+.h5,ul+h5{margin-top:2.1428571429em}.h6,h6{font-size:.75em;font-size-adjust:var(--font-adjust-h6);font-weight:600;letter-spacing:1px;line-height:1.25;margin-bottom:1.25em;text-transform:uppercase}.h1+.h6,.h1+h6,.h2+.h6,.h2+h6,.h3+.h6,.h3+h6,.h4+.h6,.h4+h6,.h5+.h6,.h5+h6,blockquote+.h6,blockquote+h6,dl+.h6,dl+h6,figure+.h6,figure+h6,h1+.h6,h1+h6,h2+.h6,h2+h6,h3+.h6,h3+h6,h4+.h6,h4+h6,h5+.h6,h5+h6,img+.h6,img+h6,ol+.h6,ol+h6,p+.h6,p+h6,table+.h6,table+h6,ul+.h6,ul+h6{margin-top:2.5em}.lead-paragraph{font-size:1.375em;font-size-adjust:var(--font-adjust-h3);font-weight:400;letter-spacing:inherit;line-height:1.25;margin-bottom:15px;margin-top:0;text-transform:inherit}@media only screen and (max-width:37.5em){.lead-paragraph{font-size:1.125em;font-size-adjust:var(--font-adjust-h4);font-weight:400;letter-spacing:inherit;line-height:1.25;text-transform:inherit}}.superheading{font-size:3em;font-weight:400;line-height:1.25;margin-bottom:.4166666667em}blockquote,dl,figure,ol,p,table,ul{margin-bottom:.9375em;margin-top:0}blockquote:last-child,dl:last-child,figure:last-child,ol:last-child,p:last-child,table:last-child,ul:last-child{margin-bottom:0}p+ol,p+ul{margin-top:-.3125em}ol ol,ol ul,ul ol,ul ul{margin-top:.5em}li{margin-bottom:.5em}li:last-child,nav li{margin-bottom:0}a{border-color:var(--pacific);border-style:dotted;border-width:0;color:var(--pacific);text-decoration:none}a.visited,a:visited{border-color:var(--teal);color:var(--teal)}a.hover,a:hover{border-color:var(--pacific-dark);border-style:solid;color:var(--pacific-dark)}a.focus,a:focus{border-style:solid;outline:thin dotted;outline-offset:1px}a.active,a:active{border-color:var(--navy);border-style:solid;color:var(--navy)}dd a,li a,p a{border-bottom-width:1px}nav a{border-bottom-width:0}ul{list-style:square;padding-left:1.125em}ul ul{list-style-type:circle}ol{padding-left:1.3125em}ol li:nth-last-child(n+10),ol li:nth-last-child(n+10)~li{margin-left:.5625rem}ol ol{list-style-type:lower-alpha}ol ol li{margin-left:0!important}ol ol ol{list-style-type:lower-roman}nav ol,nav ol ol,nav ul,nav ul ul{list-style:none;list-style-image:none}caption{margin-bottom:.625em;text-align:left}td,th{padding:.625em}thead td,thead th{background:var(--gray-5);color:var(--black);font-size:1em;padding:.7142857143em;vertical-align:top}tbody tr,thead{border-bottom:1px solid var(--gray)}th{font-weight:600;text-align:left}thead th .h2,thead th .h3,thead th .h4,thead th .h5,thead th .h6,thead th h2,thead th h3,thead th h4,thead th h5,thead th h6{font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;text-transform:inherit}blockquote{margin-left:.9375em;margin-right:.9375em}@media only screen and (min-width:37.5625em){blockquote{margin-left:1.875em;margin-right:1.875em}}img{max-width:100%}figure{margin-left:0;margin-right:0}figure img{vertical-align:middle}code,pre{background:var(--gray-5);border-radius:4px;color:var(--black);font-family:Input Mono,Consolas,Monaco,Courier New,monospace}code{font-size:.8125em;padding:.2307692308em .2307692308em 0}pre{display:block;overflow-wrap:break-word;padding:.625em .9375em;white-space:pre-wrap}pre code{background-color:transparent;padding:0}:host{--select-input-border:var(--gray-60);--select-input-border-hover:var(--pacific);--select-input-border-focus:var(--pacific);--select-input-bg:var(--white);--select-input-text:var(--black)}:host select.o-multiselect{border:1px solid var(--select-border-default);box-sizing:border-box;display:block;height:5.5em;padding:.25em .4375em;width:100%}:host select.o-multiselect option{padding:.125em .375em}:host .o-multiselect{position:relative}:host .o-multiselect header{position:relative}:host .o-multiselect header:after{background-color:var(--select-icon-bg-default);background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="cf-icon-svg cf-icon-svg--down" viewBox="0 0 17 19"><path d="M8.5 15.313a1.03 1.03 0 0 1-.728-.302l-6.8-6.8a1.03 1.03 0 0 1 1.455-1.456L8.5 12.828l6.073-6.073a1.03 1.03 0 0 1 1.455 1.456l-6.8 6.8a1.03 1.03 0 0 1-.728.302"/></svg>');background-position:50%;background-repeat:no-repeat;background-size:auto 1.1875em;border:1px solid var(--select-border-default);bottom:0;box-sizing:border-box;content:"";pointer-events:none;position:absolute;right:0;top:0;width:2.1875em}:host .o-multiselect input[type=text]{appearance:none;background:var(--select-input-bg);border:1px solid var(--select-input-border);box-sizing:border-box;color:var(--select-input-text);display:inline-block;min-height:35px;outline:0 solid var(--select-input-border);padding:.4375em;width:100%}:host .o-multiselect input[type=text].hover,:host .o-multiselect input[type=text]:hover{border-color:var(--select-input-border-hover);outline:1px solid var(--select-input-border-hover)}:host .o-multiselect input[type=text].focus,:host .o-multiselect input[type=text]:focus{border-color:var(--select-input-border-focus);box-shadow:0 0 0 1px var(--select-input-border-focus);outline:1px dotted var(--select-input-border-focus);outline-offset:2px}:host .o-multiselect fieldset{border-color:var(--select-border-default);border-top:none;box-sizing:border-box;margin:-1px 0 0;max-height:0;overflow-x:hidden;overflow-y:scroll;padding:0;position:absolute;transition:max-height .25s ease-out;width:100%;z-index:10}:host .o-multiselect.u-active fieldset{border-color:var(--pacific);border-width:2px;border-top:0;margin-top:0;max-height:140px}:host .o-multiselect.u-active header:after{background-image:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="cf-icon-svg cf-icon-svg--up" viewBox="0 0 17 19"><path d="M15.3 15.32a1.03 1.03 0 0 1-.727-.302L8.5 8.946l-6.073 6.072a1.03 1.03 0 0 1-1.456-1.455l6.801-6.8a1.03 1.03 0 0 1 1.456 0l6.8 6.8a1.03 1.03 0 0 1-.727 1.757z"/></svg>')}:host .o-multiselect ul{background-color:var(--white);list-style-type:none;padding:.3125em 0}:host .o-multiselect ul li{margin:0}:host .o-multiselect ul li:first-child .a-label{padding-top:.625em}:host .o-multiselect ul.u-filtered li:not(.u-filter-match){display:none}:host .o-multiselect ul.u-max-selections,:host .o-multiselect ul.u-no-results{padding:.625em}:host .o-multiselect ul.u-max-selections li,:host .o-multiselect ul.u-no-results li{display:none}:host .o-multiselect ul.u-max-selections:after,:host .o-multiselect ul.u-no-results:after{display:list-item}:host .o-multiselect ul.u-no-results:after{content:"No results found"}:host .o-multiselect ul.u-max-selections{pointer-events:none}:host .o-multiselect ul.u-max-selections:after{content:"Reached maximum number of selections"}:host .u-invisible{visibility:hidden}`;var dt,st,Fe,W,te,he,qe,se,Wt,je,Ro,Uo,Fo,Ue=class Ue extends EventTarget{constructor(e,a,o){super();j(this,je);j(this,dt);j(this,st);j(this,Fe);j(this,W);j(this,te);j(this,he);j(this,qe);j(this,se);j(this,Wt);k(this,dt,e),k(this,st,a),k(this,Fe,(o==null?void 0:o.maxSelections)||Ue.MAX_SELECTIONS),k(this,W,[]),k(this,te,[]),k(this,he,[]),k(this,qe,[]),k(this,se,-1)}isAtMaxSelections(){return l(this,te).length>=l(this,Fe)}init(){return k(this,W,p(this,je,Uo).call(this,l(this,dt))),this}toggleOption(e){return!l(this,W)[e].checked&&l(this,te).length<l(this,Fe)?(l(this,W)[e].checked=!0,l(this,te).push(e),l(this,te).sort(),!0):(l(this,W)[e].checked=!1,k(this,te,l(this,te).filter(function(o){return o!==e})),!1)}filterIndices(e){return Object.prototype.toString.call(e)!=="[object String]"&&(e=""),k(this,qe,l(this,he)),l(this,W).length>0&&k(this,he,l(this,W).reduce((a,o,i)=>p(this,je,Fo).call(this,a,o,i,e),[])),k(this,se,-1),l(this,he)}clearFilter(){return k(this,he,k(this,qe,[])),l(this,Wt)}get filterIndicesList(){return l(this,he)}get lastFilterIndicesList(){return l(this,qe)}get selectedIndices(){return l(this,te)}getOption(e){return l(this,W)[e]}set index(e){let a=l(this,he).length,o=a===0?l(this,W).length:a;e<0?k(this,se,-1):e>=o?k(this,se,o-1):k(this,se,e)}get index(){return l(this,se)}resetIndex(){return k(this,se,-1),l(this,se)}get options(){return l(this,W)}static stringEscape(e){return e.replace(/[-\\^$*+?.()|[\]{}]/g,"\\$&")}static stringMatch(e,a){return RegExp(Ue.stringEscape(a.trim()),"i").test(e)}};dt=new WeakMap,st=new WeakMap,Fe=new WeakMap,W=new WeakMap,te=new WeakMap,he=new WeakMap,qe=new WeakMap,se=new WeakMap,Wt=new WeakMap,je=new WeakSet,Ro=function(e){return l(this,st)+"-"+e.value.trim().replace(/\s+/g,"-").toLowerCase()},Uo=function(e){let a,o=[],i=!1,n=!1;for(let s=0,d=e.length;s<d;s++)a=e[s],n=a.defaultSelected?a.defaultSelected:!1,i=this.isAtMaxSelections()?!1:n,o.push({id:p(this,je,Ro).call(this,a),value:a.value,label:a.text,text:a.text,checked:i,index:s}),i&&l(this,te).push(s);return o},Fo=function(e,a,o,i){return Ue.stringMatch(a.text,i)&&e.push(o),e},q(Ue,"MAX_SELECTIONS",5);var Yt=Ue;var Vo="prev",Zt="next",Go="Enter",Ko="Escape",qd="ArrowUp",Xo="ArrowDown",Yo="Tab",Ve,Z,ke,R,Ge,L,ge,v,Zo,Jo,Qo,vr,ei,ti,ai,lt,xr,yr,ri,oi,ii,ni,di,si,li,Jt=class Jt extends C{constructor(){super();j(this,v);j(this,Ve);j(this,Z);j(this,ke);j(this,R);j(this,Ge);j(this,L);j(this,ge);this.options=[],this.selectedLabel="",k(this,ge,!1)}static get properties(){return{name:{type:String},options:{type:Array,state:!0},selectedLabel:{type:String,state:!0},label:{type:String,attribute:!0}}}firstUpdated(){let e=this.renderRoot;k(this,Ve,e.querySelector(".o-multiselect")),k(this,Z,e.querySelector("fieldset")),k(this,ke,e.querySelector("input")),k(this,R,e.querySelector("ul"))}expand(){l(this,Ve).classList.add("u-active"),l(this,Z).classList.remove("u-invisible"),l(this,Z).setAttribute("aria-hidden",!1);let e=new Event("expandbegin",{bubbles:!0,composed:!0});this.dispatchEvent(e)}collapse(){l(this,Ve).classList.remove("u-active"),l(this,Z).classList.add("u-invisible"),l(this,Z).setAttribute("aria-hidden",!0),l(this,L).resetIndex();let e=new Event("collapsebegin",{bubbles:!0,composed:!0});this.dispatchEvent(e)}render(){let e=0,a=[],o=[];this.options.map(n=>{a.push(S`${p(this,v,si).call(this,n)}`),o.push(S`${p(this,v,li).call(this,n,e++)}`)});let i=this.label||"Select options";return S`<slot @slotchange="${p(this,v,Zo)}"></slot><cfpb-label for="search-input"><div slot="label">${i}</div></cfpb-label><div class="o-multiselect"><cfpb-tag-group @tag-click="${n=>{p(this,v,yr).call(this,Number(n.detail.target.getAttribute("data-index")))}}">${a}</cfpb-tag-group><header><input id="search-input" type="text" autocomplete="off" aria-label="${i}" value="${this.selectedLabel||""}" @input="${n=>p(this,v,ai).call(this,n.target.value)}" @focus="${p(this,v,ri)}" @blur="${p(this,v,oi)}" @keydown="${p(this,v,ii)}"></header><fieldset class="u-invisible" aria-hidden="true"><ul role="listbox" @keydown="${p(this,v,di)}">${o}</ul></fieldset></div>`}static init(){qt.init(),Ht.init(),window.customElements.get("cfpb-multiselect")||window.customElements.define("cfpb-multiselect",Jt)}};Ve=new WeakMap,Z=new WeakMap,ke=new WeakMap,R=new WeakMap,Ge=new WeakMap,L=new WeakMap,ge=new WeakMap,v=new WeakSet,Zo=function(){p(this,v,Jo).call(this),k(this,L,new Yt(this.options,this.name,{}).init()),this.updateComplete.then(()=>{k(this,Ge,Array.from(this.renderRoot.querySelectorAll("li")))})},Jo=function(){var a;let e=this.querySelector("select");if(e){this.name=e.name;let o=0;this.options=Array.from(e.options).map(i=>({value:i.value,label:i.label,text:i.text,checked:i.selected,index:o++})),this.selectedLabel=((a=e.selectedOptions[0])==null?void 0:a.label)||"",e.style.display="none"}},Qo=function(){l(this,R).classList.remove("u-no-results"),l(this,R).classList.add("u-filtered");let e=l(this,L).lastFilterIndicesList;for(let a=0,o=e.length;a<o;a++)l(this,Ge)[e[a]].classList.remove("u-filter-match");e=l(this,L).filterIndicesList;for(let a=0,o=e.length;a<o;a++)l(this,Ge)[e[a]].classList.add("u-filter-match")},vr=function(){l(this,R).classList.remove("u-filtered","u-no-results");for(let e=0,a=l(this,R).children.length;e<a;e++)l(this,R).children[e].classList.remove("u-filter-match");l(this,L).clearFilter()},ei=function(){l(this,R).classList.add("u-no-results"),l(this,R).classList.remove("u-filtered")},ti=function(e){return e.length>0?(p(this,v,Qo).call(this),!0):(p(this,v,ei).call(this),!1)},ai=function(e){p(this,v,vr).call(this),l(this,L).resetIndex();let a=l(this,L).filterIndices(e);p(this,v,ti).call(this,a)},lt=function(e){e===Zt?l(this,L).index=l(this,L).index+1:e===Vo&&(l(this,L).index=l(this,L).index-1);let a=l(this,L).index;if(a>-1){let o=a,i=l(this,L).filterIndicesList;i.length>0&&(o=i[a]);let s=l(this,L).getOption(o).value,d=l(this,R).querySelector('[data-option="'+s+'"]');k(this,ge,!0),d.focus()}else k(this,ge,!1),l(this,ke).focus()},xr=function(){l(this,ke).value="",p(this,v,vr).call(this)},yr=function(e){let a=l(this,L).getOption(e)||l(this,L).getOption(l(this,L).index);a&&a.checked&&l(this,R).classList.contains("u-max-selections")&&l(this,R).classList.remove("u-max-selections"),!(l(this,L).isAtMaxSelections()&&!a.checked)&&(l(this,R).classList.contains("u-max-selections")&&l(this,R).classList.remove("u-max-selections"),l(this,L).toggleOption(e),l(this,L).resetIndex(),k(this,ge,!1),l(this,Z).getAttribute("aria-hidden")==="false"&&l(this,ke).focus(),this.options=[...l(this,L).options],l(this,L).isAtMaxSelections()&&l(this,R).classList.add("u-max-selections"))},ri=function(){l(this,Z).getAttribute("aria-hidden")==="true"&&this.expand()},oi=function(){!l(this,ge)&&l(this,Z).getAttribute("aria-hidden")==="false"&&this.collapse()},ii=function(e){let a=e.key;l(this,Z).getAttribute("aria-hidden")==="true"&&a!==Yo&&this.expand(),a===Go?(e.preventDefault(),p(this,v,lt).call(this,Zt)):a===Ko?(p(this,v,xr).call(this),this.collapse()):a===Xo?p(this,v,lt).call(this,Zt):a===Yo&&!e.shiftKey&&l(this,Z).getAttribute("aria-hidden")==="false"&&this.collapse()},ni=function(e){p(this,v,xr).call(this),p(this,v,yr).call(this,e)},di=function(e){let a=e.key,o=e.target,i=o.checked;a===Go?(e.preventDefault(),o.checked=!i):a===Ko?(l(this,ke).focus(),this.collapse()):a===qd?p(this,v,lt).call(this,Vo):a===Xo&&p(this,v,lt).call(this,Zt)},si=function(e){let a=S``;return e.checked===!0&&(a=S`<cfpb-tag-filter data-index="${e.index}">${e.value}</cfpb-tag-filter>`),a},li=function(e,a){return S`<li role="option"><cfpb-form-choice data-option="${e.label}" inlist="true" .checked="${e.checked}" @change="${()=>p(this,v,ni).call(this,a)}" @mousedown="${()=>k(this,ge,!0)}">${e.label}</cfpb-form-choice></li>`},q(Jt,"styles",P`${B(Po)}`);var Wo=Jt;})();
|
|
6
7
|
/*! Bundled license information:
|
|
7
8
|
|
|
8
9
|
@lit/reactive-element/css-tag.js:
|
|
@@ -31,6 +32,14 @@ lit-html/is-server.js:
|
|
|
31
32
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
32
33
|
*)
|
|
33
34
|
|
|
35
|
+
lit-html/directives/class-map.js:
|
|
36
|
+
lit-html/directives/if-defined.js:
|
|
37
|
+
(**
|
|
38
|
+
* @license
|
|
39
|
+
* Copyright 2018 Google LLC
|
|
40
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
41
|
+
*)
|
|
42
|
+
|
|
34
43
|
lit-html/directive-helpers.js:
|
|
35
44
|
lit-html/directives/ref.js:
|
|
36
45
|
(**
|