-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path1605.21809acbc784c738.js
1 lines (1 loc) · 157 KB
/
1605.21809acbc784c738.js
1
"use strict";(self.webpackChunkmaterial_angular_io=self.webpackChunkmaterial_angular_io||[]).push([[1605],{9349:(ne,Q,h)=>{h.d(Q,{IC:()=>G,Ky:()=>K,Lq:()=>D,aC:()=>N});var e=h(3353),t=h(4650),i=h(1281),v=h(8896),q=h(8929),C=h(3753),L=h(7568),U=h(7625),Z=h(6895);const H=(0,e.i$)({passive:!0});let D=(()=>{class F{constructor(u,s){this._platform=u,this._ngZone=s,this._monitoredElements=new Map}monitor(u){if(!this._platform.isBrowser)return v.E;const s=(0,i.fI)(u),g=this._monitoredElements.get(s);if(g)return g.subject;const R=new q.xQ,x="cdk-text-field-autofilled",T=c=>{"cdk-text-field-autofill-start"!==c.animationName||s.classList.contains(x)?"cdk-text-field-autofill-end"===c.animationName&&s.classList.contains(x)&&(s.classList.remove(x),this._ngZone.run(()=>R.next({target:c.target,isAutofilled:!1}))):(s.classList.add(x),this._ngZone.run(()=>R.next({target:c.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{s.addEventListener("animationstart",T,H),s.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(s,{subject:R,unlisten:()=>{s.removeEventListener("animationstart",T,H)}}),R}stopMonitoring(u){const s=(0,i.fI)(u),g=this._monitoredElements.get(s);g&&(g.unlisten(),g.subject.complete(),s.classList.remove("cdk-text-field-autofill-monitored"),s.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(s))}ngOnDestroy(){this._monitoredElements.forEach((u,s)=>this.stopMonitoring(s))}}return F.\u0275fac=function(u){return new(u||F)(t.LFG(e.t4),t.LFG(t.R0b))},F.\u0275prov=t.Yz7({token:F,factory:F.\u0275fac,providedIn:"root"}),F})(),N=(()=>{class F{constructor(u,s){this._elementRef=u,this._autofillMonitor=s,this.cdkAutofill=new t.vpe}ngOnInit(){this._autofillMonitor.monitor(this._elementRef).subscribe(u=>this.cdkAutofill.emit(u))}ngOnDestroy(){this._autofillMonitor.stopMonitoring(this._elementRef)}}return F.\u0275fac=function(u){return new(u||F)(t.Y36(t.SBq),t.Y36(D))},F.\u0275dir=t.lG2({type:F,selectors:[["","cdkAutofill",""]],outputs:{cdkAutofill:"cdkAutofill"}}),F})(),G=(()=>{class F{constructor(u,s,g,R){this._elementRef=u,this._platform=s,this._ngZone=g,this._destroyed=new q.xQ,this._enabled=!0,this._previousMinRows=-1,this._isViewInited=!1,this._handleFocusEvent=x=>{this._hasFocus="focus"===x.type},this._document=R,this._textareaElement=this._elementRef.nativeElement}get minRows(){return this._minRows}set minRows(u){this._minRows=(0,i.su)(u),this._setMinHeight()}get maxRows(){return this._maxRows}set maxRows(u){this._maxRows=(0,i.su)(u),this._setMaxHeight()}get enabled(){return this._enabled}set enabled(u){u=(0,i.Ig)(u),this._enabled!==u&&((this._enabled=u)?this.resizeToFitContent(!0):this.reset())}get placeholder(){return this._textareaElement.placeholder}set placeholder(u){this._cachedPlaceholderHeight=void 0,u?this._textareaElement.setAttribute("placeholder",u):this._textareaElement.removeAttribute("placeholder"),this._cacheTextareaPlaceholderHeight()}_setMinHeight(){const u=this.minRows&&this._cachedLineHeight?this.minRows*this._cachedLineHeight+"px":null;u&&(this._textareaElement.style.minHeight=u)}_setMaxHeight(){const u=this.maxRows&&this._cachedLineHeight?this.maxRows*this._cachedLineHeight+"px":null;u&&(this._textareaElement.style.maxHeight=u)}ngAfterViewInit(){this._platform.isBrowser&&(this._initialHeight=this._textareaElement.style.height,this.resizeToFitContent(),this._ngZone.runOutsideAngular(()=>{const u=this._getWindow();(0,C.R)(u,"resize").pipe((0,L.e)(16),(0,U.R)(this._destroyed)).subscribe(()=>this.resizeToFitContent(!0)),this._textareaElement.addEventListener("focus",this._handleFocusEvent),this._textareaElement.addEventListener("blur",this._handleFocusEvent)}),this._isViewInited=!0,this.resizeToFitContent(!0))}ngOnDestroy(){this._textareaElement.removeEventListener("focus",this._handleFocusEvent),this._textareaElement.removeEventListener("blur",this._handleFocusEvent),this._destroyed.next(),this._destroyed.complete()}_cacheTextareaLineHeight(){if(this._cachedLineHeight)return;let u=this._textareaElement.cloneNode(!1);u.rows=1,u.style.position="absolute",u.style.visibility="hidden",u.style.border="none",u.style.padding="0",u.style.height="",u.style.minHeight="",u.style.maxHeight="",u.style.overflow="hidden",this._textareaElement.parentNode.appendChild(u),this._cachedLineHeight=u.clientHeight,u.remove(),this._setMinHeight(),this._setMaxHeight()}_measureScrollHeight(){const u=this._textareaElement,s=u.style.marginBottom||"",g=this._platform.FIREFOX,R=g&&this._hasFocus,x=g?"cdk-textarea-autosize-measuring-firefox":"cdk-textarea-autosize-measuring";R&&(u.style.marginBottom=`${u.clientHeight}px`),u.classList.add(x);const T=u.scrollHeight-4;return u.classList.remove(x),R&&(u.style.marginBottom=s),T}_cacheTextareaPlaceholderHeight(){if(!this._isViewInited||null!=this._cachedPlaceholderHeight)return;if(!this.placeholder)return void(this._cachedPlaceholderHeight=0);const u=this._textareaElement.value;this._textareaElement.value=this._textareaElement.placeholder,this._cachedPlaceholderHeight=this._measureScrollHeight(),this._textareaElement.value=u}ngDoCheck(){this._platform.isBrowser&&this.resizeToFitContent()}resizeToFitContent(u=!1){if(!this._enabled||(this._cacheTextareaLineHeight(),this._cacheTextareaPlaceholderHeight(),!this._cachedLineHeight))return;const s=this._elementRef.nativeElement,g=s.value;if(!u&&this._minRows===this._previousMinRows&&g===this._previousValue)return;const R=this._measureScrollHeight(),x=Math.max(R,this._cachedPlaceholderHeight||0);s.style.height=`${x}px`,this._ngZone.runOutsideAngular(()=>{typeof requestAnimationFrame<"u"?requestAnimationFrame(()=>this._scrollToCaretPosition(s)):setTimeout(()=>this._scrollToCaretPosition(s))}),this._previousValue=g,this._previousMinRows=this._minRows}reset(){void 0!==this._initialHeight&&(this._textareaElement.style.height=this._initialHeight)}_noopInputHandler(){}_getDocument(){return this._document||document}_getWindow(){return this._getDocument().defaultView||window}_scrollToCaretPosition(u){const{selectionStart:s,selectionEnd:g}=u;!this._destroyed.isStopped&&this._hasFocus&&u.setSelectionRange(s,g)}}return F.\u0275fac=function(u){return new(u||F)(t.Y36(t.SBq),t.Y36(e.t4),t.Y36(t.R0b),t.Y36(Z.K0,8))},F.\u0275dir=t.lG2({type:F,selectors:[["textarea","cdkTextareaAutosize",""]],hostAttrs:["rows","1",1,"cdk-textarea-autosize"],hostBindings:function(u,s){1&u&&t.NdJ("input",function(){return s._noopInputHandler()})},inputs:{minRows:["cdkAutosizeMinRows","minRows"],maxRows:["cdkAutosizeMaxRows","maxRows"],enabled:["cdkTextareaAutosize","enabled"],placeholder:"placeholder"},exportAs:["cdkTextareaAutosize"]}),F})(),K=(()=>{class F{}return F.\u0275fac=function(u){return new(u||F)},F.\u0275mod=t.oAB({type:F}),F.\u0275inj=t.cJS({}),F})()},7082:(ne,Q,h)=>{h.r(Q),h.d(Q,{FormFieldAppearanceExample:()=>x,FormFieldCustomControlExample:()=>T,FormFieldErrorExample:()=>o,FormFieldExamplesModule:()=>re,FormFieldHarnessExample:()=>W,FormFieldHintExample:()=>p,FormFieldLabelExample:()=>I,FormFieldOverviewExample:()=>S,FormFieldPrefixSuffixExample:()=>V,FormFieldThemingExample:()=>X,MyTelInput:()=>f});var e=h(6895),t=h(4650),i=h(4006),v=h(4859),q=h(6709),C=h(9549),L=h(7392),U=h(284),Z=h(1948),H=h(4385),D=h(2687),N=h(1281),G=h(8929),K=h(3238);const F=["area"],O=["exchange"],u=["subscriber"];function s(_,E){if(1&_&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&_){const l=t.oxw();t.xp6(1),t.Oqu(l.getErrorMessage())}}const g=".example-container[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%] + mat-form-field[_ngcontent-%COMP%] {\n margin-left: 8px;\n}";function R(_,E){1&_&&(t.TgZ(0,"mat-error"),t._uU(1,"Min size: 10px"),t.qZA())}let x=(()=>{class _{}return _.\u0275fac=function(l){return new(l||_)},_.\u0275cmp=t.Xpm({type:_,selectors:[["form-field-appearance-example"]],decls:18,vars:0,consts:[["appearance","fill"],["matInput","","placeholder","Placeholder"],["matSuffix",""],["appearance","outline"]],template:function(l,b){1&l&&(t.TgZ(0,"p")(1,"mat-form-field",0)(2,"mat-label"),t._uU(3,"Fill form field"),t.qZA(),t._UZ(4,"input",1),t.TgZ(5,"mat-icon",2),t._uU(6,"sentiment_very_satisfied"),t.qZA(),t.TgZ(7,"mat-hint"),t._uU(8,"Hint"),t.qZA()()(),t.TgZ(9,"p")(10,"mat-form-field",3)(11,"mat-label"),t._uU(12,"Outline form field"),t.qZA(),t._UZ(13,"input",1),t.TgZ(14,"mat-icon",2),t._uU(15,"sentiment_very_satisfied"),t.qZA(),t.TgZ(16,"mat-hint"),t._uU(17,"Hint"),t.qZA()()())},dependencies:[C.KE,C.hX,C.bx,C.R9,L.Hw,U.Nt],encapsulation:2}),_})(),T=(()=>{class _{constructor(){this.form=new i.cw({tel:new i.NI(new c("","",""))})}}return _.\u0275fac=function(l){return new(l||_)},_.\u0275cmp=t.Xpm({type:_,selectors:[["form-field-custom-control-example"]],decls:9,vars:1,consts:[[3,"formGroup"],["appearance","fill"],["formControlName","tel","required",""],["matSuffix",""]],template:function(l,b){1&l&&(t.TgZ(0,"div",0)(1,"mat-form-field",1)(2,"mat-label"),t._uU(3,"Phone number"),t.qZA(),t._UZ(4,"example-tel-input",2),t.TgZ(5,"mat-icon",3),t._uU(6,"phone"),t.qZA(),t.TgZ(7,"mat-hint"),t._uU(8,"Include area code"),t.qZA()()()),2&l&&t.Q6J("formGroup",b.form)},dependencies:function(){return[C.KE,C.hX,C.bx,C.R9,L.Hw,i.JJ,i.JL,i.Q7,i.sg,i.u,f]},encapsulation:2}),_})();class c{constructor(E,l,b){this.area=E,this.exchange=l,this.subscriber=b}}let f=(()=>{class _{constructor(l,b,A,j,Y){this._formBuilder=l,this._focusMonitor=b,this._elementRef=A,this._formField=j,this.ngControl=Y,this.parts=this._formBuilder.group({area:["",[i.kI.required,i.kI.minLength(3),i.kI.maxLength(3)]],exchange:["",[i.kI.required,i.kI.minLength(3),i.kI.maxLength(3)]],subscriber:["",[i.kI.required,i.kI.minLength(4),i.kI.maxLength(4)]]}),this.stateChanges=new G.xQ,this.focused=!1,this.touched=!1,this.controlType="example-tel-input",this.id="example-tel-input-"+_.nextId++,this.onChange=oe=>{},this.onTouched=()=>{},this._required=!1,this._disabled=!1,null!=this.ngControl&&(this.ngControl.valueAccessor=this)}get empty(){const{value:{area:l,exchange:b,subscriber:A}}=this.parts;return!l&&!b&&!A}get shouldLabelFloat(){return this.focused||!this.empty}get placeholder(){return this._placeholder}set placeholder(l){this._placeholder=l,this.stateChanges.next()}get required(){return this._required}set required(l){this._required=(0,N.Ig)(l),this.stateChanges.next()}get disabled(){return this._disabled}set disabled(l){this._disabled=(0,N.Ig)(l),this._disabled?this.parts.disable():this.parts.enable(),this.stateChanges.next()}get value(){if(this.parts.valid){const{value:{area:l,exchange:b,subscriber:A}}=this.parts;return new c(l,b,A)}return null}set value(l){const{area:b,exchange:A,subscriber:j}=l||new c("","","");this.parts.setValue({area:b,exchange:A,subscriber:j}),this.stateChanges.next()}get errorState(){return this.parts.invalid&&this.touched}ngOnDestroy(){this.stateChanges.complete(),this._focusMonitor.stopMonitoring(this._elementRef)}onFocusIn(l){this.focused||(this.focused=!0,this.stateChanges.next())}onFocusOut(l){this._elementRef.nativeElement.contains(l.relatedTarget)||(this.touched=!0,this.focused=!1,this.onTouched(),this.stateChanges.next())}autoFocusNext(l,b){!l.errors&&b&&this._focusMonitor.focusVia(b,"program")}autoFocusPrev(l,b){l.value.length<1&&this._focusMonitor.focusVia(b,"program")}setDescribedByIds(l){this._elementRef.nativeElement.querySelector(".example-tel-input-container").setAttribute("aria-describedby",l.join(" "))}onContainerClick(){this._focusMonitor.focusVia(this.parts.controls.subscriber.valid||this.parts.controls.exchange.valid?this.subscriberInput:this.parts.controls.area.valid?this.exchangeInput:this.areaInput,"program")}writeValue(l){this.value=l}registerOnChange(l){this.onChange=l}registerOnTouched(l){this.onTouched=l}setDisabledState(l){this.disabled=l}_handleInput(l,b){this.autoFocusNext(l,b),this.onChange(this.value)}}return _.nextId=0,_.\u0275fac=function(l){return new(l||_)(t.Y36(i.qu),t.Y36(D.tE),t.Y36(t.SBq),t.Y36(C.G_,8),t.Y36(i.a5,10))},_.\u0275cmp=t.Xpm({type:_,selectors:[["example-tel-input"]],viewQuery:function(l,b){if(1&l&&(t.Gf(F,5),t.Gf(O,5),t.Gf(u,5)),2&l){let A;t.iGM(A=t.CRH())&&(b.areaInput=A.first),t.iGM(A=t.CRH())&&(b.exchangeInput=A.first),t.iGM(A=t.CRH())&&(b.subscriberInput=A.first)}},hostVars:3,hostBindings:function(l,b){2&l&&(t.Ikx("id",b.id),t.ekj("example-floating",b.shouldLabelFloat))},inputs:{userAriaDescribedBy:["aria-describedby","userAriaDescribedBy"],placeholder:"placeholder",required:"required",disabled:"disabled",value:"value"},features:[t._Bn([{provide:C.Eo,useExisting:_}])],decls:11,vars:2,consts:[["role","group",1,"example-tel-input-container",3,"formGroup","focusin","focusout"],["formControlName","area","size","3","maxLength","3","aria-label","Area code",1,"example-tel-input-element",3,"input"],["area",""],[1,"example-tel-input-spacer"],["formControlName","exchange","maxLength","3","size","3","aria-label","Exchange code",1,"example-tel-input-element",3,"input","keyup.backspace"],["exchange",""],["formControlName","subscriber","maxLength","4","size","4","aria-label","Subscriber number",1,"example-tel-input-element",3,"input","keyup.backspace"],["subscriber",""]],template:function(l,b){if(1&l){const A=t.EpF();t.TgZ(0,"div",0),t.NdJ("focusin",function(Y){return b.onFocusIn(Y)})("focusout",function(Y){return b.onFocusOut(Y)}),t.TgZ(1,"input",1,2),t.NdJ("input",function(){t.CHM(A);const Y=t.MAs(6);return t.KtG(b._handleInput(b.parts.controls.area,Y))}),t.qZA(),t.TgZ(3,"span",3),t._uU(4,"\u2013"),t.qZA(),t.TgZ(5,"input",4,5),t.NdJ("input",function(){t.CHM(A);const Y=t.MAs(10);return t.KtG(b._handleInput(b.parts.controls.exchange,Y))})("keyup.backspace",function(){t.CHM(A);const Y=t.MAs(2);return t.KtG(b.autoFocusPrev(b.parts.controls.exchange,Y))}),t.qZA(),t.TgZ(7,"span",3),t._uU(8,"\u2013"),t.qZA(),t.TgZ(9,"input",6,7),t.NdJ("input",function(){return b._handleInput(b.parts.controls.subscriber)})("keyup.backspace",function(){t.CHM(A);const Y=t.MAs(6);return t.KtG(b.autoFocusPrev(b.parts.controls.subscriber,Y))}),t.qZA()()}2&l&&(t.Q6J("formGroup",b.parts),t.uIk("aria-labelledby",b._formField.getLabelId()))},dependencies:[i.Fj,i.JJ,i.JL,i.sg,i.u],styles:[".example-tel-input-container[_ngcontent-%COMP%] {\n display: flex;\n}\n\n.example-tel-input-element[_ngcontent-%COMP%] {\n border: none;\n background: none;\n padding: 0;\n outline: none;\n font: inherit;\n text-align: center;\n}\n\n.example-tel-input-spacer[_ngcontent-%COMP%] {\n opacity: 0;\n transition: opacity 200ms;\n}\n\n.example-floating[_nghost-%COMP%] .example-tel-input-spacer[_ngcontent-%COMP%] {\n opacity: 1;\n}"]}),_})(),o=(()=>{class _{constructor(){this.email=new i.NI("",[i.kI.required,i.kI.email])}getErrorMessage(){return this.email.hasError("required")?"You must enter a value":this.email.hasError("email")?"Not a valid email":""}}return _.\u0275fac=function(l){return new(l||_)},_.\u0275cmp=t.Xpm({type:_,selectors:[["form-field-error-example"]],decls:6,vars:2,consts:[[1,"example-container"],["appearance","fill"],["matInput","","placeholder","[email protected]","required","",3,"formControl"],[4,"ngIf"]],template:function(l,b){1&l&&(t.TgZ(0,"div",0)(1,"mat-form-field",1)(2,"mat-label"),t._uU(3,"Enter your email"),t.qZA(),t._UZ(4,"input",2),t.YNc(5,s,2,1,"mat-error",3),t.qZA()()),2&l&&(t.xp6(4),t.Q6J("formControl",b.email),t.xp6(1),t.Q6J("ngIf",b.email.invalid))},dependencies:[e.O5,C.KE,C.hX,C.TO,U.Nt,i.Fj,i.JJ,i.Q7,i.oH],styles:[".example-container[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%] + mat-form-field[_ngcontent-%COMP%] {\n margin-left: 8px;\n}"]}),_})(),p=(()=>{class _{}return _.\u0275fac=function(l){return new(l||_)},_.\u0275cmp=t.Xpm({type:_,selectors:[["form-field-hint-example"]],decls:16,vars:1,consts:[[1,"example-container"],["hintLabel","Max 10 characters","appearance","fill"],["matInput","","maxlength","10","placeholder","Ex. Nougat"],["input",""],["align","end"],["appearance","fill"],["value","option"]],template:function(l,b){if(1&l&&(t.TgZ(0,"div",0)(1,"mat-form-field",1)(2,"mat-label"),t._uU(3,"Enter some input"),t.qZA(),t._UZ(4,"input",2,3),t.TgZ(6,"mat-hint",4),t._uU(7),t.qZA()(),t.TgZ(8,"mat-form-field",5)(9,"mat-label"),t._uU(10,"Select me"),t.qZA(),t.TgZ(11,"mat-select")(12,"mat-option",6),t._uU(13,"Option"),t.qZA()(),t.TgZ(14,"mat-hint",4),t._uU(15,"Here's the dropdown arrow ^"),t.qZA()()()),2&l){const A=t.MAs(5);t.xp6(7),t.hij("",A.value.length,"/10")}},dependencies:[C.KE,C.hX,C.bx,U.Nt,H.gD,K.ey],styles:[g]}),_})(),I=(()=>{class _{constructor(l){this._formBuilder=l,this.hideRequiredControl=new i.NI(!1),this.floatLabelControl=new i.NI("auto"),this.options=this._formBuilder.group({hideRequired:this.hideRequiredControl,floatLabel:this.floatLabelControl})}getFloatLabelValue(){return this.floatLabelControl.value||"auto"}}return _.\u0275fac=function(l){return new(l||_)(t.Y36(i.qu))},_.\u0275cmp=t.Xpm({type:_,selectors:[["form-field-label-example"]],decls:32,vars:8,consts:[[1,"example-container"],[3,"formGroup"],[3,"formControl"],["value","auto"],["value","always"],[1,"example-form-fields"],["appearance","fill",3,"hideRequiredMarker","floatLabel"],["matInput","","placeholder","Simple placeholder","required",""],["appearance","fill",3,"floatLabel"],["matInput","","placeholder","Simple placeholder"],["required",""],["value","option"]],template:function(l,b){1&l&&(t.TgZ(0,"div",0)(1,"form",1)(2,"mat-checkbox",2),t._uU(3,"Hide required marker"),t.qZA(),t.TgZ(4,"div")(5,"label"),t._uU(6,"Float label: "),t.qZA(),t.TgZ(7,"mat-radio-group",2)(8,"mat-radio-button",3),t._uU(9,"Auto"),t.qZA(),t.TgZ(10,"mat-radio-button",4),t._uU(11,"Always"),t.qZA()()(),t.TgZ(12,"div",5)(13,"mat-form-field",6),t._UZ(14,"input",7),t.qZA(),t.TgZ(15,"mat-form-field",8)(16,"mat-label"),t._uU(17,"Both a label and a placeholder"),t.qZA(),t._UZ(18,"input",9),t.qZA(),t.TgZ(19,"mat-form-field",6)(20,"mat-select",10)(21,"mat-option"),t._uU(22,"-- None --"),t.qZA(),t.TgZ(23,"mat-option",11),t._uU(24,"Option"),t.qZA()(),t.TgZ(25,"mat-label")(26,"mat-icon"),t._uU(27,"favorite"),t.qZA(),t.TgZ(28,"b"),t._uU(29," Fancy"),t.qZA(),t.TgZ(30,"i"),t._uU(31," label"),t.qZA()()()()()()),2&l&&(t.xp6(1),t.Q6J("formGroup",b.options),t.xp6(1),t.Q6J("formControl",b.hideRequiredControl),t.xp6(5),t.Q6J("formControl",b.floatLabelControl),t.xp6(6),t.Q6J("hideRequiredMarker",b.hideRequiredControl.value)("floatLabel",b.getFloatLabelValue()),t.xp6(2),t.Q6J("floatLabel",b.getFloatLabelValue()),t.xp6(4),t.Q6J("hideRequiredMarker",b.hideRequiredControl.value)("floatLabel",b.getFloatLabelValue()))},dependencies:[q.oG,C.KE,C.hX,L.Hw,U.Nt,Z.VQ,Z.U0,H.gD,K.ey,i._Y,i.JJ,i.JL,i.oH,i.sg],styles:[".example-container[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%] + mat-form-field[_ngcontent-%COMP%] {\n margin-left: 8px;\n}\n\n.example-container[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%] {\n width: 220px;\n}\n\n.example-container[_ngcontent-%COMP%] form[_ngcontent-%COMP%] {\n margin-bottom: 20px;\n}\n\n.example-container[_ngcontent-%COMP%] form[_ngcontent-%COMP%] > *[_ngcontent-%COMP%] {\n margin: 12px 0;\n}\n\n.example-container[_ngcontent-%COMP%] .mat-radio-button[_ngcontent-%COMP%] {\n margin: 0 12px;\n}\n\n.example-form-fields[_ngcontent-%COMP%] {\n display: flex;\n align-items: flex-start;\n}"]}),_})(),S=(()=>{class _{}return _.\u0275fac=function(l){return new(l||_)},_.\u0275cmp=t.Xpm({type:_,selectors:[["form-field-overview-example"]],decls:16,vars:0,consts:[["appearance","fill"],["matInput",""],["value","one"],["value","two"]],template:function(l,b){1&l&&(t.TgZ(0,"mat-form-field",0)(1,"mat-label"),t._uU(2,"Input"),t.qZA(),t._UZ(3,"input",1),t.qZA(),t.TgZ(4,"mat-form-field",0)(5,"mat-label"),t._uU(6,"Select"),t.qZA(),t.TgZ(7,"mat-select")(8,"mat-option",2),t._uU(9,"First option"),t.qZA(),t.TgZ(10,"mat-option",3),t._uU(11,"Second option"),t.qZA()()(),t.TgZ(12,"mat-form-field",0)(13,"mat-label"),t._uU(14,"Textarea"),t.qZA(),t._UZ(15,"textarea",1),t.qZA())},dependencies:[C.KE,C.hX,U.Nt,H.gD,K.ey],styles:["[_nghost-%COMP%] {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}"]}),_})(),V=(()=>{class _{constructor(){this.hide=!0}}return _.\u0275fac=function(l){return new(l||_)},_.\u0275cmp=t.Xpm({type:_,selectors:[["form-field-prefix-suffix-example"]],decls:16,vars:4,consts:[[1,"example-container"],["appearance","fill"],["matInput","",3,"type"],["mat-icon-button","","matSuffix","",3,"click"],["appearance","fill","floatLabel","always"],["matInput","","type","number","placeholder","0",1,"example-right-align"],["matTextPrefix",""],["matTextSuffix",""]],template:function(l,b){1&l&&(t.TgZ(0,"div",0)(1,"mat-form-field",1)(2,"mat-label"),t._uU(3,"Enter your password"),t.qZA(),t._UZ(4,"input",2),t.TgZ(5,"button",3),t.NdJ("click",function(){return b.hide=!b.hide}),t.TgZ(6,"mat-icon"),t._uU(7),t.qZA()()(),t.TgZ(8,"mat-form-field",4)(9,"mat-label"),t._uU(10,"Amount"),t.qZA(),t._UZ(11,"input",5),t.TgZ(12,"span",6),t._uU(13,"$\xa0"),t.qZA(),t.TgZ(14,"span",7),t._uU(15,".00"),t.qZA()()()),2&l&&(t.xp6(4),t.Q6J("type",b.hide?"password":"text"),t.xp6(1),t.uIk("aria-label","Hide password")("aria-pressed",b.hide),t.xp6(2),t.Oqu(b.hide?"visibility_off":"visibility"))},dependencies:[v.RK,C.KE,C.hX,C.qo,C.R9,L.Hw,U.Nt],styles:[".example-container[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%] + mat-form-field[_ngcontent-%COMP%] {\n margin-left: 8px;\n}\n\n.example-right-align[_ngcontent-%COMP%] {\n text-align: right;\n}\n\ninput.example-right-align[_ngcontent-%COMP%]::-webkit-outer-spin-button, input.example-right-align[_ngcontent-%COMP%]::-webkit-inner-spin-button {\n display: none;\n}\n\ninput.example-right-align[_ngcontent-%COMP%] {\n -moz-appearance: textfield;\n}"]}),_})(),X=(()=>{class _{constructor(l){this._formBuilder=l,this.options=this._formBuilder.group({color:this._formBuilder.control("primary"),fontSize:this._formBuilder.control(16,i.kI.min(10))})}getFontSize(){return Math.max(10,this.options.value.fontSize||0)}}return _.\u0275fac=function(l){return new(l||_)(t.Y36(i.j3))},_.\u0275cmp=t.Xpm({type:_,selectors:[["form-field-theming-example"]],decls:18,vars:6,consts:[[1,"example-container",3,"formGroup"],["appearance","fill",3,"color"],["formControlName","color"],["value","primary"],["value","accent"],["value","warn"],["matInput","","type","number","placeholder","Ex. 12","formControlName","fontSize","min","10"],["matTextSuffix",""],[4,"ngIf"]],template:function(l,b){if(1&l&&(t.TgZ(0,"form",0)(1,"mat-form-field",1)(2,"mat-label"),t._uU(3,"Color"),t.qZA(),t.TgZ(4,"mat-select",2)(5,"mat-option",3),t._uU(6,"Primary"),t.qZA(),t.TgZ(7,"mat-option",4),t._uU(8,"Accent"),t.qZA(),t.TgZ(9,"mat-option",5),t._uU(10,"Warn"),t.qZA()()(),t.TgZ(11,"mat-form-field",1)(12,"mat-label"),t._uU(13,"Font size"),t.qZA(),t._UZ(14,"input",6),t.TgZ(15,"span",7),t._uU(16,"px"),t.qZA(),t.YNc(17,R,2,0,"mat-error",8),t.qZA()()),2&l){let A;t.Udp("font-size",b.getFontSize(),"px"),t.Q6J("formGroup",b.options),t.xp6(1),t.Q6J("color",b.options.value.color),t.xp6(10),t.Q6J("color",b.options.value.color),t.xp6(6),t.Q6J("ngIf",null==(A=b.options.get("fontSize"))?null:A.invalid)}},dependencies:[e.O5,C.KE,C.hX,C.TO,C.R9,U.Nt,H.gD,K.ey,i._Y,i.Fj,i.wV,i.JJ,i.JL,i.qQ,i.sg,i.u],styles:[g]}),_})(),W=(()=>{class _{constructor(){this.requiredControl=new i.NI("Initial value",[i.kI.required])}}return _.\u0275fac=function(l){return new(l||_)},_.\u0275cmp=t.Xpm({type:_,selectors:[["form-field-harness-example"]],decls:8,vars:1,consts:[["id","with-errors","appearance","fill"],[1,"custom-control"],["matInput","",3,"formControl"],["align","start"]],template:function(l,b){1&l&&(t.TgZ(0,"mat-form-field",0)(1,"span",1),t._uU(2,"Custom control harness"),t.qZA(),t._UZ(3,"input",2),t.TgZ(4,"mat-error"),t._uU(5,"Error"),t.qZA(),t.TgZ(6,"mat-hint",3),t._uU(7,"Hint"),t.qZA()()),2&l&&(t.xp6(3),t.Q6J("formControl",b.requiredControl))},dependencies:[C.KE,C.bx,C.TO,U.Nt,i.Fj,i.JJ,i.oH],encapsulation:2}),_})(),re=(()=>{class _{}return _.\u0275fac=function(l){return new(l||_)},_.\u0275mod=t.oAB({type:_}),_.\u0275inj=t.cJS({imports:[e.ez,v.ot,q.p9,C.lN,L.Ps,U.c,Z.Fk,H.LD,i.UX]}),_})()},6709:(ne,Q,h)=>{h.d(Q,{oG:()=>O,p9:()=>R});var e=h(4650),t=h(4006),i=h(3238),v=h(1281);const q=["input"],C=["label"],L=["*"],U=new e.OlP("mat-checkbox-default-options",{providedIn:"root",factory:Z});function Z(){return{color:"accent",clickAction:"check-indeterminate"}}const H={provide:t.JU,useExisting:(0,e.Gpc)(()=>O),multi:!0};class D{}let N=0;const G=Z(),K=(0,i.sb)((0,i.pj)((0,i.Kr)((0,i.Id)(class{constructor(x){this._elementRef=x}}))));let F=(()=>{class x extends K{constructor(c,f,o,p,I,S,V){super(f),this._changeDetectorRef=o,this._ngZone=p,this._animationMode=S,this._options=V,this.ariaLabel="",this.ariaLabelledby=null,this.labelPosition="after",this.name=null,this.change=new e.vpe,this.indeterminateChange=new e.vpe,this._onTouched=()=>{},this._currentAnimationClass="",this._currentCheckState=0,this._controlValueAccessorChangeFn=()=>{},this._checked=!1,this._disabled=!1,this._indeterminate=!1,this._options=this._options||G,this.color=this.defaultColor=this._options.color||G.color,this.tabIndex=parseInt(I)||0,this.id=this._uniqueId=`${c}${++N}`}get inputId(){return`${this.id||this._uniqueId}-input`}get required(){return this._required}set required(c){this._required=(0,v.Ig)(c)}ngAfterViewInit(){this._syncIndeterminate(this._indeterminate)}get checked(){return this._checked}set checked(c){const f=(0,v.Ig)(c);f!=this.checked&&(this._checked=f,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(c){const f=(0,v.Ig)(c);f!==this.disabled&&(this._disabled=f,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(c){const f=c!=this._indeterminate;this._indeterminate=(0,v.Ig)(c),f&&(this._transitionCheckState(this._indeterminate?3:this.checked?1:2),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(c){this.checked=!!c}registerOnChange(c){this._controlValueAccessorChangeFn=c}registerOnTouched(c){this._onTouched=c}setDisabledState(c){this.disabled=c}_getAriaChecked(){return this.checked?"true":this.indeterminate?"mixed":"false"}_transitionCheckState(c){let f=this._currentCheckState,o=this._getAnimationTargetElement();if(f!==c&&o&&(this._currentAnimationClass&&o.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(f,c),this._currentCheckState=c,this._currentAnimationClass.length>0)){o.classList.add(this._currentAnimationClass);const p=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{o.classList.remove(p)},1e3)})}}_emitChangeEvent(){this._controlValueAccessorChangeFn(this.checked),this.change.emit(this._createChangeEvent(this.checked)),this._inputElement&&(this._inputElement.nativeElement.checked=this.checked)}toggle(){this.checked=!this.checked,this._controlValueAccessorChangeFn(this.checked)}_handleInputClick(){const c=this._options?.clickAction;this.disabled||"noop"===c?!this.disabled&&"noop"===c&&(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==c&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this._checked=!this._checked,this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}_onInteractionEvent(c){c.stopPropagation()}_onBlur(){Promise.resolve().then(()=>{this._onTouched(),this._changeDetectorRef.markForCheck()})}_getAnimationClassForCheckStateTransition(c,f){if("NoopAnimations"===this._animationMode)return"";switch(c){case 0:if(1===f)return this._animationClasses.uncheckedToChecked;if(3==f)return this._checked?this._animationClasses.checkedToIndeterminate:this._animationClasses.uncheckedToIndeterminate;break;case 2:return 1===f?this._animationClasses.uncheckedToChecked:this._animationClasses.uncheckedToIndeterminate;case 1:return 2===f?this._animationClasses.checkedToUnchecked:this._animationClasses.checkedToIndeterminate;case 3:return 1===f?this._animationClasses.indeterminateToChecked:this._animationClasses.indeterminateToUnchecked}return""}_syncIndeterminate(c){const f=this._inputElement;f&&(f.nativeElement.indeterminate=c)}}return x.\u0275fac=function(c){e.$Z()},x.\u0275dir=e.lG2({type:x,viewQuery:function(c,f){if(1&c&&(e.Gf(q,5),e.Gf(C,5),e.Gf(i.wG,5)),2&c){let o;e.iGM(o=e.CRH())&&(f._inputElement=o.first),e.iGM(o=e.CRH())&&(f._labelElement=o.first),e.iGM(o=e.CRH())&&(f.ripple=o.first)}},inputs:{ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],id:"id",required:"required",labelPosition:"labelPosition",name:"name",value:"value",checked:"checked",disabled:"disabled",indeterminate:"indeterminate"},outputs:{change:"change",indeterminateChange:"indeterminateChange"},features:[e.qOj]}),x})(),O=(()=>{class x extends F{constructor(c,f,o,p,I,S){super("mat-mdc-checkbox-",c,f,o,p,I,S),this._animationClasses={uncheckedToChecked:"mdc-checkbox--anim-unchecked-checked",uncheckedToIndeterminate:"mdc-checkbox--anim-unchecked-indeterminate",checkedToUnchecked:"mdc-checkbox--anim-checked-unchecked",checkedToIndeterminate:"mdc-checkbox--anim-checked-indeterminate",indeterminateToChecked:"mdc-checkbox--anim-indeterminate-checked",indeterminateToUnchecked:"mdc-checkbox--anim-indeterminate-unchecked"}}focus(){this._inputElement.nativeElement.focus()}_createChangeEvent(c){const f=new D;return f.source=this,f.checked=c,f}_getAnimationTargetElement(){return this._inputElement?.nativeElement}_onInputClick(){super._handleInputClick()}_preventBubblingFromLabel(c){c.target&&this._labelElement.nativeElement.contains(c.target)&&c.stopPropagation()}}return x.\u0275fac=function(c){return new(c||x)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(e.R0b),e.$8M("tabindex"),e.Y36(e.QbO,8),e.Y36(U,8))},x.\u0275cmp=e.Xpm({type:x,selectors:[["mat-checkbox"]],hostAttrs:[1,"mat-mdc-checkbox"],hostVars:12,hostBindings:function(c,f){2&c&&(e.Ikx("id",f.id),e.uIk("tabindex",null)("aria-label",null)("aria-labelledby",null),e.ekj("_mat-animation-noopable","NoopAnimations"===f._animationMode)("mdc-checkbox--disabled",f.disabled)("mat-mdc-checkbox-disabled",f.disabled)("mat-mdc-checkbox-checked",f.checked))},inputs:{disableRipple:"disableRipple",color:"color",tabIndex:"tabIndex"},exportAs:["matCheckbox"],features:[e._Bn([H]),e.qOj],ngContentSelectors:L,decls:15,vars:19,consts:[[1,"mdc-form-field",3,"click"],[1,"mdc-checkbox"],["checkbox",""],[1,"mat-mdc-checkbox-touch-target",3,"click"],["type","checkbox",1,"mdc-checkbox__native-control",3,"checked","disabled","id","required","tabIndex","blur","click","change"],["input",""],[1,"mdc-checkbox__ripple"],[1,"mdc-checkbox__background"],["focusable","false","viewBox","0 0 24 24","aria-hidden","true",1,"mdc-checkbox__checkmark"],["fill","none","d","M1.73,12.91 8.1,19.28 22.79,4.59",1,"mdc-checkbox__checkmark-path"],[1,"mdc-checkbox__mixedmark"],["mat-ripple","",1,"mat-mdc-checkbox-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[3,"for"],["label",""]],template:function(c,f){if(1&c&&(e.F$t(),e.TgZ(0,"div",0),e.NdJ("click",function(p){return f._preventBubblingFromLabel(p)}),e.TgZ(1,"div",1,2)(3,"div",3),e.NdJ("click",function(){return f._onInputClick()}),e.qZA(),e.TgZ(4,"input",4,5),e.NdJ("blur",function(){return f._onBlur()})("click",function(){return f._onInputClick()})("change",function(p){return f._onInteractionEvent(p)}),e.qZA(),e._UZ(6,"div",6),e.TgZ(7,"div",7),e.O4$(),e.TgZ(8,"svg",8),e._UZ(9,"path",9),e.qZA(),e.kcU(),e._UZ(10,"div",10),e.qZA(),e._UZ(11,"div",11),e.qZA(),e.TgZ(12,"label",12,13),e.Hsn(14),e.qZA()()),2&c){const o=e.MAs(2);e.ekj("mdc-form-field--align-end","before"==f.labelPosition),e.xp6(4),e.ekj("mdc-checkbox--selected",f.checked),e.Q6J("checked",f.checked)("disabled",f.disabled)("id",f.inputId)("required",f.required)("tabIndex",f.tabIndex),e.uIk("aria-checked",f._getAriaChecked())("aria-label",f.ariaLabel||null)("aria-labelledby",f.ariaLabelledby)("aria-describedby",f.ariaDescribedby)("name",f.name)("value",f.value),e.xp6(7),e.Q6J("matRippleTrigger",o)("matRippleDisabled",f.disableRipple||f.disabled)("matRippleCentered",!0),e.xp6(1),e.Q6J("for",f.inputId)}},dependencies:[i.wG],styles:['.mdc-touch-target-wrapper{display:inline}@keyframes mdc-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:29.7833385}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}100%{stroke-dashoffset:0}}@keyframes mdc-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mdc-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);opacity:1;stroke-dashoffset:0}to{opacity:0;stroke-dashoffset:-29.7833385}}@keyframes mdc-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(45deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(45deg);opacity:0}to{transform:rotate(360deg);opacity:1}}@keyframes mdc-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:mdc-animation-deceleration-curve-timing-function;transform:rotate(-45deg);opacity:0}to{transform:rotate(0deg);opacity:1}}@keyframes mdc-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(315deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;transform:scaleX(1);opacity:1}32.8%,100%{transform:scaleX(0);opacity:0}}.mdc-checkbox{display:inline-block;position:relative;flex:0 0 18px;box-sizing:content-box;width:18px;height:18px;line-height:0;white-space:nowrap;cursor:pointer;vertical-align:bottom}.mdc-checkbox[hidden]{display:none}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{border-color:CanvasText}}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{border-color:CanvasText}}@media all and (-ms-high-contrast: none){.mdc-checkbox .mdc-checkbox__focus-ring{display:none}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-checkbox__mixedmark{margin:0 1px}}.mdc-checkbox--disabled{cursor:default;pointer-events:none}.mdc-checkbox__background{display:inline-flex;position:absolute;align-items:center;justify-content:center;box-sizing:border-box;width:18px;height:18px;border:2px solid currentColor;border-radius:2px;background-color:rgba(0,0,0,0);pointer-events:none;will-change:background-color,border-color;transition:background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__checkmark{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;opacity:0;transition:opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox--upgraded .mdc-checkbox__checkmark{opacity:1}.mdc-checkbox__checkmark-path{transition:stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);stroke:currentColor;stroke-width:3.12px;stroke-dashoffset:29.7833385;stroke-dasharray:29.7833385}.mdc-checkbox__mixedmark{width:100%;height:0;transform:scaleX(0) rotate(0deg);border-width:1px;border-style:solid;opacity:0;transition:opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background,.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background,.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background,.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background{animation-duration:180ms;animation-timing-function:linear}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-unchecked-checked-checkmark-path 180ms linear 0s;transition:none}.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark{animation:mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark{animation:mdc-checkbox-indeterminate-checked-checkmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-checked-mixedmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;transition:none}.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background{transition:border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark-path{stroke-dashoffset:0}.mdc-checkbox__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit}.mdc-checkbox__native-control:disabled{cursor:default;pointer-events:none}.mdc-checkbox--touch{margin:calc((var(--mdc-checkbox-state-layer-size, 48px) - var(--mdc-checkbox-state-layer-size, 40px)) / 2)}.mdc-checkbox--touch .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size, 40px) - var(--mdc-checkbox-state-layer-size, 48px)) / 2);right:calc((var(--mdc-checkbox-state-layer-size, 40px) - var(--mdc-checkbox-state-layer-size, 48px)) / 2);left:calc((var(--mdc-checkbox-state-layer-size, 40px) - var(--mdc-checkbox-state-layer-size, 48px)) / 2);width:var(--mdc-checkbox-state-layer-size, 48px);height:var(--mdc-checkbox-state-layer-size, 48px)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark{transition:opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);opacity:1}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__mixedmark{transform:scaleX(1) rotate(-45deg)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__checkmark,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark{transform:rotate(45deg);opacity:0;transition:opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__mixedmark,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__mixedmark{transform:scaleX(1) rotate(0deg);opacity:1}.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark-path,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__mixedmark{transition:none}.mdc-form-field{display:inline-flex;align-items:center;vertical-align:middle}.mdc-form-field[hidden]{display:none}.mdc-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{margin-left:auto;margin-right:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{padding-left:0;padding-right:4px}.mdc-form-field--nowrap>label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.mdc-form-field--align-end>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px;order:-1}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{margin-left:0;margin-right:auto}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{padding-left:4px;padding-right:0}.mdc-form-field--space-between{justify-content:space-between}.mdc-form-field--space-between>label{margin:0}[dir=rtl] .mdc-form-field--space-between>label,.mdc-form-field--space-between>label[dir=rtl]{margin:0}.mat-mdc-checkbox{display:inline-block;position:relative}.mat-mdc-checkbox .mdc-checkbox{padding:calc((var(--mdc-checkbox-state-layer-size, 40px) - 18px) / 2);margin:calc((var(--mdc-checkbox-state-layer-size, 40px) - var(--mdc-checkbox-state-layer-size, 40px)) / 2)}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-disabled-unselected-icon-color, rgba(0, 0, 0, 0.38));background-color:transparent}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control[disabled]:checked~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control[disabled]:indeterminate~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true][disabled]~.mdc-checkbox__background{border-color:transparent;background-color:var(--mdc-checkbox-disabled-selected-icon-color, rgba(0, 0, 0, 0.38))}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-selected-checkmark-color, #fff)}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-selected-checkmark-color, #fff)}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-disabled-selected-checkmark-color, #fff)}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-disabled-selected-checkmark-color, #fff)}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-icon-color, rgba(0, 0, 0, 0.54));background-color:transparent}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-icon-color, var(--mdc-theme-secondary, #018786));background-color:var(--mdc-checkbox-selected-icon-color, var(--mdc-theme-secondary, #018786))}@keyframes mdc-checkbox-fade-in-background-8A000000FF01878600000000FF018786{0%{border-color:var(--mdc-checkbox-unselected-icon-color, rgba(0, 0, 0, 0.54));background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-icon-color, var(--mdc-theme-secondary, #018786));background-color:var(--mdc-checkbox-selected-icon-color, var(--mdc-theme-secondary, #018786))}}@keyframes mdc-checkbox-fade-out-background-8A000000FF01878600000000FF018786{0%,80%{border-color:var(--mdc-checkbox-selected-icon-color, var(--mdc-theme-secondary, #018786));background-color:var(--mdc-checkbox-selected-icon-color, var(--mdc-theme-secondary, #018786))}100%{border-color:var(--mdc-checkbox-unselected-icon-color, rgba(0, 0, 0, 0.54));background-color:transparent}}.mat-mdc-checkbox .mdc-checkbox.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FF01878600000000FF018786}.mat-mdc-checkbox .mdc-checkbox.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FF01878600000000FF018786}.mat-mdc-checkbox .mdc-checkbox:hover .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-hover-icon-color, var(--mdc-theme-secondary, #018786));background-color:transparent}.mat-mdc-checkbox .mdc-checkbox:hover .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:hover .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:hover .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-hover-icon-color, var(--mdc-theme-secondary, #018786));background-color:var(--mdc-checkbox-selected-hover-icon-color, var(--mdc-theme-secondary, #018786))}@keyframes mdc-checkbox-fade-in-background-FF018786FF01878600000000FF018786{0%{border-color:var(--mdc-checkbox-unselected-hover-icon-color, var(--mdc-theme-secondary, #018786));background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-hover-icon-color, var(--mdc-theme-secondary, #018786));background-color:var(--mdc-checkbox-selected-hover-icon-color, var(--mdc-theme-secondary, #018786))}}@keyframes mdc-checkbox-fade-out-background-FF018786FF01878600000000FF018786{0%,80%{border-color:var(--mdc-checkbox-selected-hover-icon-color, var(--mdc-theme-secondary, #018786));background-color:var(--mdc-checkbox-selected-hover-icon-color, var(--mdc-theme-secondary, #018786))}100%{border-color:var(--mdc-checkbox-unselected-hover-icon-color, var(--mdc-theme-secondary, #018786));background-color:transparent}}.mat-mdc-checkbox .mdc-checkbox:hover.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:hover.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-FF018786FF01878600000000FF018786}.mat-mdc-checkbox .mdc-checkbox:hover.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:hover.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-FF018786FF01878600000000FF018786}.mat-mdc-checkbox .mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-focus-icon-color, var(--mdc-theme-secondary, #018786));background-color:transparent}.mat-mdc-checkbox .mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-focus-icon-color, var(--mdc-theme-secondary, #018786));background-color:var(--mdc-checkbox-selected-focus-icon-color, var(--mdc-theme-secondary, #018786))}@keyframes mdc-checkbox-fade-in-background-FF018786FF01878600000000FF018786{0%{border-color:var(--mdc-checkbox-unselected-focus-icon-color, var(--mdc-theme-secondary, #018786));background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-focus-icon-color, var(--mdc-theme-secondary, #018786));background-color:var(--mdc-checkbox-selected-focus-icon-color, var(--mdc-theme-secondary, #018786))}}@keyframes mdc-checkbox-fade-out-background-FF018786FF01878600000000FF018786{0%,80%{border-color:var(--mdc-checkbox-selected-focus-icon-color, var(--mdc-theme-secondary, #018786));background-color:var(--mdc-checkbox-selected-focus-icon-color, var(--mdc-theme-secondary, #018786))}100%{border-color:var(--mdc-checkbox-unselected-focus-icon-color, var(--mdc-theme-secondary, #018786));background-color:transparent}}.mat-mdc-checkbox .mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:not(.mdc-ripple-upgraded):focus.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:not(.mdc-ripple-upgraded):focus.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-FF018786FF01878600000000FF018786}.mat-mdc-checkbox .mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:not(.mdc-ripple-upgraded):focus.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:not(.mdc-ripple-upgraded):focus.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-FF018786FF01878600000000FF018786}.mat-mdc-checkbox .mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-pressed-icon-color, rgba(0, 0, 0, 0.54));background-color:transparent}.mat-mdc-checkbox .mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-pressed-icon-color, var(--mdc-theme-secondary, #018786));background-color:var(--mdc-checkbox-selected-pressed-icon-color, var(--mdc-theme-secondary, #018786))}@keyframes mdc-checkbox-fade-in-background-8A000000FF01878600000000FF018786{0%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color, rgba(0, 0, 0, 0.54));background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-pressed-icon-color, var(--mdc-theme-secondary, #018786));background-color:var(--mdc-checkbox-selected-pressed-icon-color, var(--mdc-theme-secondary, #018786))}}@keyframes mdc-checkbox-fade-out-background-8A000000FF01878600000000FF018786{0%,80%{border-color:var(--mdc-checkbox-selected-pressed-icon-color, var(--mdc-theme-secondary, #018786));background-color:var(--mdc-checkbox-selected-pressed-icon-color, var(--mdc-theme-secondary, #018786))}100%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color, rgba(0, 0, 0, 0.54));background-color:transparent}}.mat-mdc-checkbox .mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FF01878600000000FF018786}.mat-mdc-checkbox .mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mat-mdc-checkbox .mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FF01878600000000FF018786}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__background{top:calc((var(--mdc-checkbox-state-layer-size, 40px) - 18px) / 2);left:calc((var(--mdc-checkbox-state-layer-size, 40px) - 18px) / 2)}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size, 40px) - var(--mdc-checkbox-state-layer-size, 40px)) / 2);right:calc((var(--mdc-checkbox-state-layer-size, 40px) - var(--mdc-checkbox-state-layer-size, 40px)) / 2);left:calc((var(--mdc-checkbox-state-layer-size, 40px) - var(--mdc-checkbox-state-layer-size, 40px)) / 2);width:var(--mdc-checkbox-state-layer-size, 40px);height:var(--mdc-checkbox-state-layer-size, 40px)}.mat-mdc-checkbox .mdc-checkbox:hover .mdc-checkbox__native-control:not([disabled])~.mdc-checkbox__ripple{opacity:.04;transform:scale(1);transition:opacity 80ms 0 cubic-bezier(0, 0, 0.2, 1),transform 80ms 0 cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control:not([disabled]):focus~.mdc-checkbox__ripple{opacity:.16}.mat-mdc-checkbox .mdc-checkbox__background{-webkit-print-color-adjust:exact;color-adjust:exact}.mat-mdc-checkbox._mat-animation-noopable *,.mat-mdc-checkbox._mat-animation-noopable *::before{transition:none !important;animation:none !important}.mat-mdc-checkbox label{cursor:pointer}.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{cursor:default}.mat-mdc-checkbox label:empty{display:none}.mat-mdc-checkbox .mdc-checkbox__native-control:focus:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-focus-icon-color, black)}.cdk-high-contrast-active .mat-mdc-checkbox.mat-mdc-checkbox-disabled{opacity:.5}.cdk-high-contrast-active .mat-mdc-checkbox .mdc-checkbox__checkmark{--mdc-checkbox-selected-checkmark-color: CanvasText;--mdc-checkbox-disabled-selected-checkmark-color: CanvasText}.mat-mdc-checkbox .mdc-checkbox__ripple{opacity:0}.mat-mdc-checkbox-ripple,.mdc-checkbox__ripple{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-checkbox-ripple:not(:empty),.mdc-checkbox__ripple:not(:empty){transform:translateZ(0)}.mat-mdc-checkbox-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mat-mdc-checkbox-ripple::before{border-radius:50%}.mdc-checkbox__native-control:focus~.mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0}),x})(),g=(()=>{class x{}return x.\u0275fac=function(c){return new(c||x)},x.\u0275mod=e.oAB({type:x}),x.\u0275inj=e.cJS({}),x})(),R=(()=>{class x{}return x.\u0275fac=function(c){return new(c||x)},x.\u0275mod=e.oAB({type:x}),x.\u0275inj=e.cJS({imports:[i.BQ,i.si,g,i.BQ,g]}),x})()},9549:(ne,Q,h)=>{h.d(Q,{Eo:()=>k,G_:()=>J,KE:()=>ce,R9:()=>be,TO:()=>j,bx:()=>oe,hX:()=>l,lN:()=>$,qo:()=>pe});var e=h(4650),t=h(445),i=h(3353),v=h(8929),q=h(6787),C=h(7625),L=h(6895),U=h(1281),Z=h(7340),H=h(9643),D=h(3238);const N=["matFormFieldNotchedOutline",""],G=["*"],K=["textField"],F=["iconPrefixContainer"],O=["textPrefixContainer"];function u(d,M){1&d&&e._UZ(0,"span",19)}function s(d,M){if(1&d){const n=e.EpF();e.TgZ(0,"label",17),e.NdJ("cdkObserveContent",function(){e.CHM(n);const w=e.oxw(2);return e.KtG(w._refreshOutlineNotchWidth())}),e.Hsn(1,1),e.YNc(2,u,1,0,"span",18),e.qZA()}if(2&d){const n=e.oxw(2);e.Q6J("floating",n._shouldLabelFloat())("cdkObserveContentDisabled",!n._hasOutline())("id",n._labelId),e.uIk("for",n._control.id)("aria-owns",n._control.id),e.xp6(2),e.Q6J("ngIf",!n.hideRequiredMarker&&n._control.required)}}function g(d,M){if(1&d&&e.YNc(0,s,3,6,"label",16),2&d){const n=e.oxw();e.Q6J("ngIf",n._hasFloatingLabel())}}function R(d,M){1&d&&e._UZ(0,"div",20)}function x(d,M){}function T(d,M){if(1&d&&e.YNc(0,x,0,0,"ng-template",22),2&d){e.oxw(2);const n=e.MAs(1);e.Q6J("ngTemplateOutlet",n)}}function c(d,M){if(1&d&&(e.TgZ(0,"div",21),e.YNc(1,T,1,1,"ng-template",9),e.qZA()),2&d){const n=e.oxw();e.Q6J("matFormFieldNotchedOutlineOpen",n._shouldLabelFloat())("matFormFieldNotchedOutlineLabelWidth",n._labelWidth),e.xp6(1),e.Q6J("ngIf",!n._forceDisplayInfixLabel())}}function f(d,M){1&d&&(e.TgZ(0,"div",23,24),e.Hsn(2,2),e.qZA())}function o(d,M){1&d&&(e.TgZ(0,"div",25,26),e.Hsn(2,3),e.qZA())}function p(d,M){}function I(d,M){if(1&d&&e.YNc(0,p,0,0,"ng-template",22),2&d){e.oxw();const n=e.MAs(1);e.Q6J("ngTemplateOutlet",n)}}function S(d,M){1&d&&(e.TgZ(0,"div",27),e.Hsn(1,4),e.qZA())}function V(d,M){1&d&&(e.TgZ(0,"div",28),e.Hsn(1,5),e.qZA())}function X(d,M){1&d&&e._UZ(0,"div",29)}function W(d,M){if(1&d&&(e.TgZ(0,"div",30),e.Hsn(1,6),e.qZA()),2&d){const n=e.oxw();e.Q6J("@transitionMessages",n._subscriptAnimationState)}}function te(d,M){if(1&d&&(e.TgZ(0,"mat-hint",34),e._uU(1),e.qZA()),2&d){const n=e.oxw(2);e.Q6J("id",n._hintLabelId),e.xp6(1),e.Oqu(n.hintLabel)}}function re(d,M){if(1&d&&(e.TgZ(0,"div",31),e.YNc(1,te,2,2,"mat-hint",32),e.Hsn(2,7),e._UZ(3,"div",33),e.Hsn(4,8),e.qZA()),2&d){const n=e.oxw();e.Q6J("@transitionMessages",n._subscriptAnimationState),e.xp6(1),e.Q6J("ngIf",n.hintLabel)}}const _=["*",[["mat-label"]],[["","matPrefix",""],["","matIconPrefix",""]],[["","matTextPrefix",""]],[["","matTextSuffix",""]],[["","matSuffix",""],["","matIconSuffix",""]],[["mat-error"],["","matError",""]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],E=["*","mat-label","[matPrefix], [matIconPrefix]","[matTextPrefix]","[matTextSuffix]","[matSuffix], [matIconSuffix]","mat-error, [matError]","mat-hint:not([align='end'])","mat-hint[align='end']"];let l=(()=>{class d{}return d.\u0275fac=function(n){return new(n||d)},d.\u0275dir=e.lG2({type:d,selectors:[["mat-label"]]}),d})(),b=0;const A=new e.OlP("MatError");let j=(()=>{class d{constructor(n,m){this.id="mat-mdc-error-"+b++,n||m.nativeElement.setAttribute("aria-live","polite")}}return d.\u0275fac=function(n){return new(n||d)(e.$8M("aria-live"),e.Y36(e.SBq))},d.\u0275dir=e.lG2({type:d,selectors:[["mat-error"],["","matError",""]],hostAttrs:["aria-atomic","true",1,"mat-mdc-form-field-error","mat-mdc-form-field-bottom-align"],hostVars:1,hostBindings:function(n,m){2&n&&e.Ikx("id",m.id)},inputs:{id:"id"},features:[e._Bn([{provide:A,useExisting:d}])]}),d})(),Y=0,oe=(()=>{class d{constructor(){this.align="start",this.id="mat-mdc-hint-"+Y++}}return d.\u0275fac=function(n){return new(n||d)},d.\u0275dir=e.lG2({type:d,selectors:[["mat-hint"]],hostAttrs:[1,"mat-mdc-form-field-hint","mat-mdc-form-field-bottom-align"],hostVars:4,hostBindings:function(n,m){2&n&&(e.Ikx("id",m.id),e.uIk("align",null),e.ekj("mat-mdc-form-field-hint-end","end"===m.align))},inputs:{align:"align",id:"id"}}),d})();const de=new e.OlP("MatPrefix");let pe=(()=>{class d{constructor(n){this._isText=!1,this._isText=n.nativeElement.hasAttribute("matTextPrefix")}}return d.\u0275fac=function(n){return new(n||d)(e.Y36(e.SBq))},d.\u0275dir=e.lG2({type:d,selectors:[["","matPrefix",""],["","matIconPrefix",""],["","matTextPrefix",""]],features:[e._Bn([{provide:de,useExisting:d}])]}),d})();const se=new e.OlP("MatSuffix");let be=(()=>{class d{constructor(n){this._isText=!1,this._isText=n.nativeElement.hasAttribute("matTextSuffix")}}return d.\u0275fac=function(n){return new(n||d)(e.Y36(e.SBq))},d.\u0275dir=e.lG2({type:d,selectors:[["","matSuffix",""],["","matIconSuffix",""],["","matTextSuffix",""]],features:[e._Bn([{provide:se,useExisting:d}])]}),d})(),me=(()=>{class d{constructor(n){this._elementRef=n,this.floating=!1}getWidth(){return function ge(d){if(null!==d.offsetParent)return d.scrollWidth;const n=d.cloneNode(!0);n.style.setProperty("position","absolute"),n.style.setProperty("transform","translate(-9999px, -9999px)"),document.documentElement.appendChild(n);const m=n.scrollWidth;return n.remove(),m}(this._elementRef.nativeElement)}get element(){return this._elementRef.nativeElement}}return d.\u0275fac=function(n){return new(n||d)(e.Y36(e.SBq))},d.\u0275dir=e.lG2({type:d,selectors:[["label","matFormFieldFloatingLabel",""]],hostAttrs:[1,"mdc-floating-label","mat-mdc-floating-label"],hostVars:2,hostBindings:function(n,m){2&n&&e.ekj("mdc-floating-label--float-above",m.floating)},inputs:{floating:"floating"}}),d})();const he="mdc-line-ripple--active",y="mdc-line-ripple--deactivating";let B=(()=>{class d{constructor(n,m){this._elementRef=n,this._handleTransitionEnd=w=>{const P=this._elementRef.nativeElement.classList,le=P.contains(y);"opacity"===w.propertyName&&le&&P.remove(he,y)},m.runOutsideAngular(()=>{n.nativeElement.addEventListener("transitionend",this._handleTransitionEnd)})}activate(){const n=this._elementRef.nativeElement.classList;n.remove(y),n.add(he)}deactivate(){this._elementRef.nativeElement.classList.add(y)}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._handleTransitionEnd)}}return d.\u0275fac=function(n){return new(n||d)(e.Y36(e.SBq),e.Y36(e.R0b))},d.\u0275dir=e.lG2({type:d,selectors:[["div","matFormFieldLineRipple",""]],hostAttrs:[1,"mdc-line-ripple"]}),d})(),a=(()=>{class d{constructor(n,m){this._elementRef=n,this._ngZone=m,this.labelWidth=0,this.open=!1}ngAfterViewInit(){const n=this._elementRef.nativeElement.querySelector(".mdc-floating-label");n?(this._elementRef.nativeElement.classList.add("mdc-notched-outline--upgraded"),"function"==typeof requestAnimationFrame&&(n.style.transitionDuration="0s",this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>n.style.transitionDuration="")}))):this._elementRef.nativeElement.classList.add("mdc-notched-outline--no-label")}_getNotchWidth(){return this.open?this.labelWidth>0?`calc(${this.labelWidth}px * var(--mat-mdc-form-field-floating-label-scale, 0.75) + 9px)`:"0px":null}}return d.\u0275fac=function(n){return new(n||d)(e.Y36(e.SBq),e.Y36(e.R0b))},d.\u0275cmp=e.Xpm({type:d,selectors:[["div","matFormFieldNotchedOutline",""]],hostAttrs:[1,"mdc-notched-outline"],hostVars:2,hostBindings:function(n,m){2&n&&e.ekj("mdc-notched-outline--notched",m.open)},inputs:{labelWidth:["matFormFieldNotchedOutlineLabelWidth","labelWidth"],open:["matFormFieldNotchedOutlineOpen","open"]},attrs:N,ngContentSelectors:G,decls:4,vars:2,consts:[[1,"mdc-notched-outline__leading"],[1,"mdc-notched-outline__notch"],[1,"mdc-notched-outline__trailing"]],template:function(n,m){1&n&&(e.F$t(),e._UZ(0,"div",0),e.TgZ(1,"div",1),e.Hsn(2),e.qZA(),e._UZ(3,"div",2)),2&n&&(e.xp6(1),e.Udp("width",m._getNotchWidth()))},encapsulation:2,changeDetection:0}),d})();const r={transitionMessages:(0,Z.X$)("transitionMessages",[(0,Z.SB)("enter",(0,Z.oB)({opacity:1,transform:"translateY(0%)"})),(0,Z.eR)("void => enter",[(0,Z.oB)({opacity:0,transform:"translateY(-5px)"}),(0,Z.jt)("300ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let k=(()=>{class d{}return d.\u0275fac=function(n){return new(n||d)},d.\u0275dir=e.lG2({type:d}),d})();const J=new e.OlP("MatFormField"),xe=new e.OlP("MAT_FORM_FIELD_DEFAULT_OPTIONS");let fe=0,ce=(()=>{class d{constructor(n,m,w,P,le,ie,ye,Me){this._elementRef=n,this._changeDetectorRef=m,this._ngZone=w,this._dir=P,this._platform=le,this._defaults=ie,this._animationMode=ye,this._document=Me,this._hideRequiredMarker=!1,this.color="primary",this._appearance="fill",this._subscriptSizing=null,this._hintLabel="",this._hasIconPrefix=!1,this._hasTextPrefix=!1,this._hasIconSuffix=!1,this._hasTextSuffix=!1,this._labelId="mat-mdc-form-field-label-"+fe++,this._hintLabelId="mat-mdc-hint-"+fe++,this._subscriptAnimationState="",this._labelWidth=0,this._destroyed=new v.xQ,this._isFocused=null,this._needsOutlineLabelOffsetUpdateOnStable=!1,ie&&(ie.appearance&&(this.appearance=ie.appearance),this._hideRequiredMarker=Boolean(ie?.hideRequiredMarker),ie.color&&(this.color=ie.color))}get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(n){this._hideRequiredMarker=(0,U.Ig)(n)}get floatLabel(){return this._floatLabel||this._defaults?.floatLabel||"auto"}set floatLabel(n){n!==this._floatLabel&&(this._floatLabel=n,this._changeDetectorRef.markForCheck())}get appearance(){return this._appearance}set appearance(n){const m=this._appearance;this._appearance=n||this._defaults?.appearance||"fill","outline"===this._appearance&&this._appearance!==m&&(this._refreshOutlineNotchWidth(),this._needsOutlineLabelOffsetUpdateOnStable=!0)}get subscriptSizing(){return this._subscriptSizing||this._defaults?.subscriptSizing||"fixed"}set subscriptSizing(n){this._subscriptSizing=n||this._defaults?.subscriptSizing||"fixed"}get hintLabel(){return this._hintLabel}set hintLabel(n){this._hintLabel=n,this._processHints()}get _control(){return this._explicitFormFieldControl||this._formFieldControl}set _control(n){this._explicitFormFieldControl=n}ngAfterViewInit(){this._updateFocusState(),this._refreshOutlineNotchWidth(),this._document?.fonts?.ready?this._document.fonts.ready.then(()=>{this._refreshOutlineNotchWidth(),this._changeDetectorRef.markForCheck()}):setTimeout(()=>this._refreshOutlineNotchWidth(),100),this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()}ngAfterContentInit(){this._assertFormFieldControl(),this._initializeControl(),this._initializeSubscript(),this._initializePrefixAndSuffix(),this._initializeOutlineLabelOffsetSubscriptions()}ngAfterContentChecked(){this._assertFormFieldControl()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}getLabelId(){return this._hasFloatingLabel()?this._labelId:null}getConnectedOverlayOrigin(){return this._textField||this._elementRef}_animateAndLockLabel(){this._hasFloatingLabel()&&(this.floatLabel="always")}_initializeControl(){const n=this._control;n.controlType&&this._elementRef.nativeElement.classList.add(`mat-mdc-form-field-type-${n.controlType}`),n.stateChanges.subscribe(()=>{this._updateFocusState(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),n.ngControl&&n.ngControl.valueChanges&&n.ngControl.valueChanges.pipe((0,C.R)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck())}_checkPrefixAndSuffixTypes(){this._hasIconPrefix=!!this._prefixChildren.find(n=>!n._isText),this._hasTextPrefix=!!this._prefixChildren.find(n=>n._isText),this._hasIconSuffix=!!this._suffixChildren.find(n=>!n._isText),this._hasTextSuffix=!!this._suffixChildren.find(n=>n._isText)}_initializePrefixAndSuffix(){this._checkPrefixAndSuffixTypes(),(0,q.T)(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._checkPrefixAndSuffixTypes(),this._changeDetectorRef.markForCheck()})}_initializeSubscript(){this._hintChildren.changes.subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._validateHints(),this._syncDescribedByIds()}_assertFormFieldControl(){}_updateFocusState(){this._control.focused&&!this._isFocused?(this._isFocused=!0,this._lineRipple?.activate()):!this._control.focused&&(this._isFocused||null===this._isFocused)&&(this._isFocused=!1,this._lineRipple?.deactivate()),this._textField?.nativeElement.classList.toggle("mdc-text-field--focused",this._control.focused)}_initializeOutlineLabelOffsetSubscriptions(){this._prefixChildren.changes.subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,C.R)(this._destroyed)).subscribe(()=>{this._needsOutlineLabelOffsetUpdateOnStable&&(this._needsOutlineLabelOffsetUpdateOnStable=!1,this._updateOutlineLabelOffset())})}),this._dir.change.pipe((0,C.R)(this._destroyed)).subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0)}_shouldAlwaysFloat(){return"always"===this.floatLabel}_hasOutline(){return"outline"===this.appearance}_forceDisplayInfixLabel(){return!this._platform.isBrowser&&this._prefixChildren.length&&!this._shouldLabelFloat()}_hasFloatingLabel(){return!!this._labelChildNonStatic||!!this._labelChildStatic}_shouldLabelFloat(){return this._control.shouldLabelFloat||this._shouldAlwaysFloat()}_shouldForward(n){const m=this._control?this._control.ngControl:null;return m&&m[n]}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"}_refreshOutlineNotchWidth(){!this._hasOutline()||!this._floatingLabel||(this._labelWidth=this._floatingLabel.getWidth())}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){}_syncDescribedByIds(){if(this._control){let n=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&n.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getDisplayedMessages()){const m=this._hintChildren?this._hintChildren.find(P=>"start"===P.align):null,w=this._hintChildren?this._hintChildren.find(P=>"end"===P.align):null;m?n.push(m.id):this._hintLabel&&n.push(this._hintLabelId),w&&n.push(w.id)}else this._errorChildren&&n.push(...this._errorChildren.map(m=>m.id));this._control.setDescribedByIds(n)}}_updateOutlineLabelOffset(){if(!this._platform.isBrowser||!this._hasOutline()||!this._floatingLabel)return;const n=this._floatingLabel.element;if(!this._iconPrefixContainer&&!this._textPrefixContainer)return void(n.style.transform="");if(!this._isAttachedToDom())return void(this._needsOutlineLabelOffsetUpdateOnStable=!0);const m=this._iconPrefixContainer?.nativeElement,w=this._textPrefixContainer?.nativeElement,P=m?.getBoundingClientRect().width??0,le=w?.getBoundingClientRect().width??0;n.style.transform=`var(\n --mat-mdc-form-field-label-transform,\n translateY(-50%) translateX(calc(${"rtl"===this._dir.value?"-1":"1"} * (${P+le}px + var(--mat-mdc-form-field-label-offset-x, 0px))))\n )`}_isAttachedToDom(){const n=this._elementRef.nativeElement;if(n.getRootNode){const m=n.getRootNode();return m&&m!==n}return document.documentElement.contains(n)}}return d.\u0275fac=function(n){return new(n||d)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(e.R0b),e.Y36(t.Is),e.Y36(i.t4),e.Y36(xe,8),e.Y36(e.QbO,8),e.Y36(L.K0))},d.\u0275cmp=e.Xpm({type:d,selectors:[["mat-form-field"]],contentQueries:function(n,m,w){if(1&n&&(e.Suo(w,l,5),e.Suo(w,l,7),e.Suo(w,k,5),e.Suo(w,de,5),e.Suo(w,se,5),e.Suo(w,A,5),e.Suo(w,oe,5)),2&n){let P;e.iGM(P=e.CRH())&&(m._labelChildNonStatic=P.first),e.iGM(P=e.CRH())&&(m._labelChildStatic=P.first),e.iGM(P=e.CRH())&&(m._formFieldControl=P.first),e.iGM(P=e.CRH())&&(m._prefixChildren=P),e.iGM(P=e.CRH())&&(m._suffixChildren=P),e.iGM(P=e.CRH())&&(m._errorChildren=P),e.iGM(P=e.CRH())&&(m._hintChildren=P)}},viewQuery:function(n,m){if(1&n&&(e.Gf(K,5),e.Gf(F,5),e.Gf(O,5),e.Gf(me,5),e.Gf(a,5),e.Gf(B,5)),2&n){let w;e.iGM(w=e.CRH())&&(m._textField=w.first),e.iGM(w=e.CRH())&&(m._iconPrefixContainer=w.first),e.iGM(w=e.CRH())&&(m._textPrefixContainer=w.first),e.iGM(w=e.CRH())&&(m._floatingLabel=w.first),e.iGM(w=e.CRH())&&(m._notchedOutline=w.first),e.iGM(w=e.CRH())&&(m._lineRipple=w.first)}},hostAttrs:[1,"mat-mdc-form-field"],hostVars:42,hostBindings:function(n,m){2&n&&e.ekj("mat-mdc-form-field-label-always-float",m._shouldAlwaysFloat())("mat-mdc-form-field-has-icon-prefix",m._hasIconPrefix)("mat-mdc-form-field-has-icon-suffix",m._hasIconSuffix)("mat-form-field-invalid",m._control.errorState)("mat-form-field-disabled",m._control.disabled)("mat-form-field-autofilled",m._control.autofilled)("mat-form-field-no-animations","NoopAnimations"===m._animationMode)("mat-form-field-appearance-fill","fill"==m.appearance)("mat-form-field-appearance-outline","outline"==m.appearance)("mat-form-field-hide-placeholder",m._hasFloatingLabel()&&!m._shouldLabelFloat())("mat-focused",m._control.focused)("mat-primary","accent"!==m.color&&"warn"!==m.color)("mat-accent","accent"===m.color)("mat-warn","warn"===m.color)("ng-untouched",m._shouldForward("untouched"))("ng-touched",m._shouldForward("touched"))("ng-pristine",m._shouldForward("pristine"))("ng-dirty",m._shouldForward("dirty"))("ng-valid",m._shouldForward("valid"))("ng-invalid",m._shouldForward("invalid"))("ng-pending",m._shouldForward("pending"))},inputs:{hideRequiredMarker:"hideRequiredMarker",color:"color",floatLabel:"floatLabel",appearance:"appearance",subscriptSizing:"subscriptSizing",hintLabel:"hintLabel"},exportAs:["matFormField"],features:[e._Bn([{provide:J,useExisting:d}])],ngContentSelectors:E,decls:18,vars:23,consts:[["labelTemplate",""],[1,"mat-mdc-text-field-wrapper","mdc-text-field",3,"click"],["textField",""],["class","mat-mdc-form-field-focus-overlay",4,"ngIf"],[1,"mat-mdc-form-field-flex"],["matFormFieldNotchedOutline","",3,"matFormFieldNotchedOutlineOpen","matFormFieldNotchedOutlineLabelWidth",4,"ngIf"],["class","mat-mdc-form-field-icon-prefix",4,"ngIf"],["class","mat-mdc-form-field-text-prefix",4,"ngIf"],[1,"mat-mdc-form-field-infix"],[3,"ngIf"],["class","mat-mdc-form-field-text-suffix",4,"ngIf"],["class","mat-mdc-form-field-icon-suffix",4,"ngIf"],["matFormFieldLineRipple","",4,"ngIf"],[1,"mat-mdc-form-field-subscript-wrapper","mat-mdc-form-field-bottom-align",3,"ngSwitch"],["class","mat-mdc-form-field-error-wrapper",4,"ngSwitchCase"],["class","mat-mdc-form-field-hint-wrapper",4,"ngSwitchCase"],["matFormFieldFloatingLabel","",3,"floating","cdkObserveContentDisabled","id","cdkObserveContent",4,"ngIf"],["matFormFieldFloatingLabel","",3,"floating","cdkObserveContentDisabled","id","cdkObserveContent"],["aria-hidden","true","class","mat-mdc-form-field-required-marker mdc-floating-label--required",4,"ngIf"],["aria-hidden","true",1,"mat-mdc-form-field-required-marker","mdc-floating-label--required"],[1,"mat-mdc-form-field-focus-overlay"],["matFormFieldNotchedOutline","",3,"matFormFieldNotchedOutlineOpen","matFormFieldNotchedOutlineLabelWidth"],[3,"ngTemplateOutlet"],[1,"mat-mdc-form-field-icon-prefix"],["iconPrefixContainer",""],[1,"mat-mdc-form-field-text-prefix"],["textPrefixContainer",""],[1,"mat-mdc-form-field-text-suffix"],[1,"mat-mdc-form-field-icon-suffix"],["matFormFieldLineRipple",""],[1,"mat-mdc-form-field-error-wrapper"],[1,"mat-mdc-form-field-hint-wrapper"],[3,"id",4,"ngIf"],[1,"mat-mdc-form-field-hint-spacer"],[3,"id"]],template:function(n,m){1&n&&(e.F$t(_),e.YNc(0,g,1,1,"ng-template",null,0,e.W1O),e.TgZ(2,"div",1,2),e.NdJ("click",function(P){return m._control.onContainerClick&&m._control.onContainerClick(P)}),e.YNc(4,R,1,0,"div",3),e.TgZ(5,"div",4),e.YNc(6,c,2,3,"div",5),e.YNc(7,f,3,0,"div",6),e.YNc(8,o,3,0,"div",7),e.TgZ(9,"div",8),e.YNc(10,I,1,1,"ng-template",9),e.Hsn(11),e.qZA(),e.YNc(12,S,2,0,"div",10),e.YNc(13,V,2,0,"div",11),e.qZA(),e.YNc(14,X,1,0,"div",12),e.qZA(),e.TgZ(15,"div",13),e.YNc(16,W,2,1,"div",14),e.YNc(17,re,5,2,"div",15),e.qZA()),2&n&&(e.xp6(2),e.ekj("mdc-text-field--filled",!m._hasOutline())("mdc-text-field--outlined",m._hasOutline())("mdc-text-field--no-label",!m._hasFloatingLabel())("mdc-text-field--disabled",m._control.disabled)("mdc-text-field--invalid",m._control.errorState),e.xp6(2),e.Q6J("ngIf",!m._hasOutline()&&!m._control.disabled),e.xp6(2),e.Q6J("ngIf",m._hasOutline()),e.xp6(1),e.Q6J("ngIf",m._hasIconPrefix),e.xp6(1),e.Q6J("ngIf",m._hasTextPrefix),e.xp6(2),e.Q6J("ngIf",!m._hasOutline()||m._forceDisplayInfixLabel()),e.xp6(2),e.Q6J("ngIf",m._hasTextSuffix),e.xp6(1),e.Q6J("ngIf",m._hasIconSuffix),e.xp6(1),e.Q6J("ngIf",!m._hasOutline()),e.xp6(1),e.ekj("mat-mdc-form-field-subscript-dynamic-size","dynamic"===m.subscriptSizing),e.Q6J("ngSwitch",m._getDisplayedMessages()),e.xp6(1),e.Q6J("ngSwitchCase","error"),e.xp6(1),e.Q6J("ngSwitchCase","hint"))},dependencies:[L.O5,L.tP,L.RF,L.n9,H.wD,oe,me,a,B],styles:['.mdc-text-field{border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:0;border-bottom-left-radius:0;display:inline-flex;align-items:baseline;padding:0 16px;position:relative;box-sizing:border-box;overflow:hidden;will-change:opacity,transform,color}.mdc-text-field .mdc-floating-label{top:50%;transform:translateY(-50%);pointer-events:none}.mdc-text-field__input{height:28px;width:100%;min-width:0;border:none;border-radius:0;background:none;appearance:none;padding:0}.mdc-text-field__input::-ms-clear{display:none}.mdc-text-field__input::-webkit-calendar-picker-indicator{display:none}.mdc-text-field__input:focus{outline:none}.mdc-text-field__input:invalid{box-shadow:none}@media all{.mdc-text-field__input::placeholder{opacity:0}}@media all{.mdc-text-field__input:-ms-input-placeholder{opacity:0}}@media all{.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mdc-text-field--focused .mdc-text-field__input::placeholder{opacity:1}}@media all{.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder{opacity:1}}.mdc-text-field__affix{height:28px;opacity:0;white-space:nowrap}.mdc-text-field--label-floating .mdc-text-field__affix,.mdc-text-field--no-label .mdc-text-field__affix{opacity:1}@supports(-webkit-hyphens: none){.mdc-text-field--outlined .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field__affix--prefix,.mdc-text-field__affix--prefix[dir=rtl]{padding-left:2px;padding-right:0}.mdc-text-field--end-aligned .mdc-text-field__affix--prefix{padding-left:0;padding-right:12px}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--end-aligned .mdc-text-field__affix--prefix[dir=rtl]{padding-left:12px;padding-right:0}.mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field__affix--suffix,.mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:12px}.mdc-text-field--end-aligned .mdc-text-field__affix--suffix{padding-left:2px;padding-right:0}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--end-aligned .mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:2px}.mdc-text-field--filled{height:56px}.mdc-text-field--filled::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}.mdc-text-field--filled .mdc-floating-label{left:16px;right:initial}[dir=rtl] .mdc-text-field--filled .mdc-floating-label,.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:16px}.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{height:100%}.mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label{display:none}.mdc-text-field--filled.mdc-text-field--no-label::before{display:none}@supports(-webkit-hyphens: none){.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field--outlined{height:56px;overflow:visible}.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) scale(1)}.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) scale(0.75)}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--outlined .mdc-text-field__input{height:100%}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-shape-small, 4px)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px, var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px, var(--mdc-shape-small, 4px))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-shape-small, 4px)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px, var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px, var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px, var(--mdc-shape-small, 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px, var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:1px}.mdc-text-field--outlined .mdc-floating-label{left:4px;right:initial}[dir=rtl] .mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:4px}.mdc-text-field--outlined .mdc-text-field__input{display:flex;border:none !important;background-color:rgba(0,0,0,0)}.mdc-text-field--outlined .mdc-notched-outline{z-index:1}.mdc-text-field--textarea{flex-direction:column;align-items:center;width:auto;height:auto;padding:0}.mdc-text-field--textarea .mdc-floating-label{top:19px}.mdc-text-field--textarea .mdc-floating-label:not(.mdc-floating-label--float-above){transform:none}.mdc-text-field--textarea .mdc-text-field__input{flex-grow:1;height:auto;min-height:1.5rem;overflow-x:hidden;overflow-y:auto;box-sizing:border-box;resize:none;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--filled::before{display:none}.mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-10.25px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--filled .mdc-text-field__input{margin-top:23px;margin-bottom:9px}.mdc-text-field--textarea.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-27.25px) scale(1)}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-24.75px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label{top:18px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field__input{margin-bottom:2px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter{align-self:flex-end;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::after{display:inline-block;width:0;height:16px;content:"";vertical-align:-16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::before{display:none}.mdc-text-field__resizer{align-self:stretch;display:inline-flex;flex-direction:column;flex-grow:1;max-height:100%;max-width:100%;min-height:56px;min-width:fit-content;min-width:-moz-available;min-width:-webkit-fill-available;overflow:hidden;resize:both}.mdc-text-field--filled .mdc-text-field__resizer{transform:translateY(-1px)}.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateY(1px)}.mdc-text-field--outlined .mdc-text-field__resizer{transform:translateX(-1px) translateY(-1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer,.mdc-text-field--outlined .mdc-text-field__resizer[dir=rtl]{transform:translateX(1px) translateY(-1px)}.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateX(1px) translateY(1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input[dir=rtl],.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter[dir=rtl]{transform:translateX(-1px) translateY(1px)}.mdc-text-field--with-leading-icon{padding-left:0;padding-right:16px}[dir=rtl] .mdc-text-field--with-leading-icon,.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:16px;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 48px);left:48px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:48px}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100% / 0.75 - 64px / 0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label{left:36px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:36px}.mdc-text-field--with-leading-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) translateX(-32px) scale(1)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-37.25px) translateX(32px) scale(1)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) translateX(-32px) scale(0.75)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl],.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-34.75px) translateX(32px) scale(0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--with-trailing-icon{padding-left:16px;padding-right:0}[dir=rtl] .mdc-text-field--with-trailing-icon,.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0;padding-right:16px}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 64px)}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100% / 0.75 - 64px / 0.75)}.mdc-text-field--with-trailing-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 96px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100% / 0.75 - 96px / 0.75)}.mdc-text-field-helper-line{display:flex;justify-content:space-between;box-sizing:border-box}.mdc-text-field+.mdc-text-field-helper-line{padding-right:16px;padding-left:16px}.mdc-form-field>.mdc-text-field+label{align-self:flex-start}.mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--focused .mdc-notched-outline__trailing{border-width:2px}.mdc-text-field--focused+.mdc-text-field-helper-line .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg){opacity:1}.mdc-text-field--focused.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:2px}.mdc-text-field--focused.mdc-text-field--outlined.mdc-text-field--textarea .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--invalid+.mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg{opacity:1}.mdc-text-field--disabled{pointer-events:none}@media screen and (forced-colors: active){.mdc-text-field--disabled .mdc-text-field__input{background-color:Window}.mdc-text-field--disabled .mdc-floating-label{z-index:1}}.mdc-text-field--disabled .mdc-floating-label{cursor:default}.mdc-text-field--disabled.mdc-text-field--filled .mdc-text-field__ripple{display:none}.mdc-text-field--disabled .mdc-text-field__input{pointer-events:auto}.mdc-text-field--end-aligned .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--end-aligned .mdc-text-field__input[dir=rtl]{text-align:left}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix{direction:ltr}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--leading,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--leading{order:1}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{order:2}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input{order:3}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{order:4}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--trailing,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--trailing{order:5}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--prefix{padding-right:12px}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--suffix{padding-left:2px}.mdc-floating-label{position:absolute;left:0;-webkit-transform-origin:left top;transform-origin:left top;line-height:1.15rem;text-align:left;text-overflow:ellipsis;white-space:nowrap;cursor:text;overflow:hidden;will-change:transform}[dir=rtl] .mdc-floating-label,.mdc-floating-label[dir=rtl]{right:0;left:auto;-webkit-transform-origin:right top;transform-origin:right top;text-align:right}.mdc-floating-label--float-above{cursor:auto}.mdc-floating-label--required::after{margin-left:1px;margin-right:0px;content:"*"}[dir=rtl] .mdc-floating-label--required::after,.mdc-floating-label--required[dir=rtl]::after{margin-left:0;margin-right:1px}.mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-notched-outline{display:flex;position:absolute;top:0;right:0;left:0;box-sizing:border-box;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}[dir=rtl] .mdc-notched-outline,.mdc-notched-outline[dir=rtl]{text-align:right}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{box-sizing:border-box;height:100%;border-top:1px solid;border-bottom:1px solid;pointer-events:none}.mdc-notched-outline__leading{border-left:1px solid;border-right:none;width:12px}[dir=rtl] .mdc-notched-outline__leading,.mdc-notched-outline__leading[dir=rtl]{border-left:none;border-right:1px solid}.mdc-notched-outline__trailing{border-left:none;border-right:1px solid;flex-grow:1}[dir=rtl] .mdc-notched-outline__trailing,.mdc-notched-outline__trailing[dir=rtl]{border-left:1px solid;border-right:none}.mdc-notched-outline__notch{flex:0 0 auto;width:auto;max-width:calc(100% - 12px * 2)}.mdc-notched-outline .mdc-floating-label{display:inline-block;position:relative;max-width:100%}.mdc-notched-outline .mdc-floating-label--float-above{text-overflow:clip}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:133.3333333333%}.mdc-notched-outline--notched .mdc-notched-outline__notch{padding-left:0;padding-right:8px;border-top:none}[dir=rtl] .mdc-notched-outline--notched .mdc-notched-outline__notch,.mdc-notched-outline--notched .mdc-notched-outline__notch[dir=rtl]{padding-left:8px;padding-right:0}.mdc-notched-outline--no-label .mdc-notched-outline__notch{display:none}.mdc-line-ripple::before,.mdc-line-ripple::after{position:absolute;bottom:0;left:0;width:100%;border-bottom-style:solid;content:""}.mdc-line-ripple::before{border-bottom-width:1px}.mdc-line-ripple::before{z-index:1}.mdc-line-ripple::after{transform:scaleX(0);border-bottom-width:2px;opacity:0;z-index:2}.mdc-line-ripple--active::after{transform:scaleX(1);opacity:1}.mdc-line-ripple--deactivating::after{opacity:0}.mat-mdc-form-field-textarea-control{vertical-align:middle;resize:vertical;box-sizing:border-box;height:auto;margin:0;padding:0;border:none;overflow:auto}.mat-mdc-form-field-input-control.mat-mdc-form-field-input-control{font:inherit;letter-spacing:inherit;text-decoration:inherit;text-transform:inherit;border:none}.mat-mdc-form-field .mat-mdc-floating-label.mdc-floating-label{line-height:normal}.mdc-text-field--no-label:not(.mdc-text-field--textarea) .mat-mdc-form-field-input-control.mdc-text-field__input,.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control{height:auto}.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control.mdc-text-field__input[type=color]{height:23px}.mat-mdc-text-field-wrapper{height:auto;flex:auto}.mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-left:0;--mat-mdc-form-field-label-offset-x: -16px}.mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-right:0}[dir=rtl] .mat-mdc-text-field-wrapper{padding-left:16px;padding-right:16px}[dir=rtl] .mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-left:0}[dir=rtl] .mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-right:0}.mat-mdc-form-field-label-always-float .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms;opacity:1}.mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-floating-label{left:auto;right:auto}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-text-field__input{display:inline-block}.mat-mdc-form-field .mat-mdc-text-field-wrapper.mdc-text-field .mdc-notched-outline__notch{padding-top:0}.mat-mdc-text-field-wrapper::before{content:none}.mat-mdc-form-field-subscript-wrapper{box-sizing:border-box;width:100%;position:relative}.mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-error-wrapper{position:absolute;top:0;left:0;right:0;padding:0 16px}.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-error-wrapper{position:static}.mat-mdc-form-field-bottom-align::before{content:"";display:inline-block;height:16px}.mat-mdc-form-field-bottom-align.mat-mdc-form-field-subscript-dynamic-size::before{content:unset}.mat-mdc-form-field-hint-end{order:1}.mat-mdc-form-field-hint-wrapper{display:flex}.mat-mdc-form-field-hint-spacer{flex:1 0 1em}.mat-mdc-form-field-error{display:block}.mat-mdc-form-field-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;opacity:0}select.mat-mdc-form-field-input-control{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(0,0,0,0);display:inline-flex;box-sizing:border-box}select.mat-mdc-form-field-input-control:not(:disabled){cursor:pointer}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{content:"";width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:5px solid;position:absolute;right:0;top:50%;margin-top:-2.5px;pointer-events:none}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{right:auto;left:0}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:15px}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:0;padding-left:15px}.cdk-high-contrast-active .mat-form-field-appearance-fill .mat-mdc-text-field-wrapper{outline:solid 1px}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-form-field-disabled .mat-mdc-text-field-wrapper{outline-color:GrayText}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-focused .mat-mdc-text-field-wrapper{outline:dashed 3px}.cdk-high-contrast-active .mat-mdc-form-field.mat-focused .mdc-notched-outline{border:dashed 3px}.mat-mdc-form-field{--mat-mdc-form-field-floating-label-scale: 0.75;display:inline-flex;flex-direction:column;min-width:0;text-align:left}[dir=rtl] .mat-mdc-form-field{text-align:right}.mat-mdc-form-field-flex{display:inline-flex;align-items:baseline;box-sizing:border-box;width:100%}.mat-mdc-text-field-wrapper{width:100%}.mat-mdc-form-field-icon-prefix,.mat-mdc-form-field-icon-suffix{align-self:center;line-height:0}.mat-mdc-form-field-icon-prefix,[dir=rtl] .mat-mdc-form-field-icon-suffix{padding:0 4px 0 0}.mat-mdc-form-field-icon-suffix,[dir=rtl] .mat-mdc-form-field-icon-prefix{padding:0 0 0 4px}.mat-mdc-form-field-icon-prefix>.mat-icon,.mat-mdc-form-field-icon-suffix>.mat-icon{padding:12px;box-sizing:content-box}.mat-mdc-form-field-subscript-wrapper .mat-icon,.mat-mdc-form-field label .mat-icon{width:1em;height:1em;font-size:inherit}.mat-mdc-form-field-infix{flex:auto;min-width:0;width:180px;position:relative;box-sizing:border-box}.mat-mdc-form-field .mdc-notched-outline__notch{margin-left:-1px;-webkit-clip-path:inset(-9em -999em -9em 1px);clip-path:inset(-9em -999em -9em 1px)}[dir=rtl] .mat-mdc-form-field .mdc-notched-outline__notch{margin-left:0;margin-right:-1px;-webkit-clip-path:inset(-9em 1px -9em -999em);clip-path:inset(-9em 1px -9em -999em)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition-delay:40ms;transition-duration:110ms}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__affix{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled.mdc-ripple-upgraded--background-focused .mdc-text-field__ripple::before,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before{transition-duration:75ms}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined{0%{transform:translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(-34.75px) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(-34.75px) scale(0.75)}100%{transform:translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea{transition:none}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-filled 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-filled{0%{transform:translateX(calc(0 - 0%)) translateY(-10.25px) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(-10.25px) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(-10.25px) scale(0.75)}100%{transform:translateX(calc(0 - 0%)) translateY(-10.25px) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-outlined{0%{transform:translateX(calc(0 - 0%)) translateY(-24.75px) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(-24.75px) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(-24.75px) scale(0.75)}100%{transform:translateX(calc(0 - 0%)) translateY(-24.75px) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon{0%{transform:translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 32px)) translateY(-34.75px) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 32px)) translateY(-34.75px) scale(0.75)}100%{transform:translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75)}}[dir=rtl] .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir=rtl] .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl{0%{transform:translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - -32px)) translateY(-34.75px) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - -32px)) translateY(-34.75px) scale(0.75)}100%{transform:translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-floating-label{transition:transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-standard 250ms 1}@keyframes mdc-floating-label-shake-float-above-standard{0%{transform:translateX(calc(0 - 0%)) translateY(-106%) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(-106%) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(-106%) scale(0.75)}100%{transform:translateX(calc(0 - 0%)) translateY(-106%) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-line-ripple::after{transition:transform 180ms cubic-bezier(0.4, 0, 0.2, 1),opacity 180ms cubic-bezier(0.4, 0, 0.2, 1)}'],encapsulation:2,data:{animation:[r.transitionMessages]},changeDetection:0}),d})(),$=(()=>{class d{}return d.\u0275fac=function(n){return new(n||d)},d.\u0275mod=e.oAB({type:d}),d.\u0275inj=e.cJS({imports:[D.BQ,L.ez,H.Q8,D.BQ]}),d})()},284:(ne,Q,h)=>{h.d(Q,{Jk:()=>H,Nt:()=>K,c:()=>F});var e=h(1281),t=h(3353),i=h(9349),v=h(4650),q=h(4006),C=h(3238),L=h(9549),U=h(8929);const H=new v.OlP("MAT_INPUT_VALUE_ACCESSOR"),D=["button","checkbox","file","hidden","image","radio","range","reset","submit"];let N=0;const G=(0,C.FD)(class{constructor(O,u,s,g){this._defaultErrorStateMatcher=O,this._parentForm=u,this._parentFormGroup=s,this.ngControl=g,this.stateChanges=new U.xQ}});let K=(()=>{class O extends G{constructor(s,g,R,x,T,c,f,o,p,I){super(c,x,T,R),this._elementRef=s,this._platform=g,this._autofillMonitor=o,this._formField=I,this._uid="mat-input-"+N++,this.focused=!1,this.stateChanges=new U.xQ,this.controlType="mat-input",this.autofilled=!1,this._disabled=!1,this._type="text",this._readonly=!1,this._neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(X=>(0,t.qK)().has(X)),this._iOSKeyupListener=X=>{const W=X.target;!W.value&&0===W.selectionStart&&0===W.selectionEnd&&(W.setSelectionRange(1,1),W.setSelectionRange(0,0))};const S=this._elementRef.nativeElement,V=S.nodeName.toLowerCase();this._inputValueAccessor=f||S,this._previousNativeValue=this.value,this.id=this.id,g.IOS&&p.runOutsideAngular(()=>{s.nativeElement.addEventListener("keyup",this._iOSKeyupListener)}),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===V,this._isTextarea="textarea"===V,this._isInFormField=!!I,this._isNativeSelect&&(this.controlType=S.multiple?"mat-native-select-multiple":"mat-native-select")}get disabled(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled}set disabled(s){this._disabled=(0,e.Ig)(s),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(s){this._id=s||this._uid}get required(){return this._required??this.ngControl?.control?.hasValidator(q.kI.required)??!1}set required(s){this._required=(0,e.Ig)(s)}get type(){return this._type}set type(s){this._type=s||"text",this._validateType(),!this._isTextarea&&(0,t.qK)().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get value(){return this._inputValueAccessor.value}set value(s){s!==this.value&&(this._inputValueAccessor.value=s,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(s){this._readonly=(0,e.Ig)(s)}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(s=>{this.autofilled=s.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement),this._platform.IOS&&this._elementRef.nativeElement.removeEventListener("keyup",this._iOSKeyupListener)}ngDoCheck(){this.ngControl&&this.updateErrorState(),this._dirtyCheckNativeValue(),this._dirtyCheckPlaceholder()}focus(s){this._elementRef.nativeElement.focus(s)}_focusChanged(s){s!==this.focused&&(this.focused=s,this.stateChanges.next())}_onInput(){}_dirtyCheckNativeValue(){const s=this._elementRef.nativeElement.value;this._previousNativeValue!==s&&(this._previousNativeValue=s,this.stateChanges.next())}_dirtyCheckPlaceholder(){const s=this._getPlaceholder();if(s!==this._previousPlaceholder){const g=this._elementRef.nativeElement;this._previousPlaceholder=s,s?g.setAttribute("placeholder",s):g.removeAttribute("placeholder")}}_getPlaceholder(){return this.placeholder||null}_validateType(){D.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let s=this._elementRef.nativeElement.validity;return s&&s.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const s=this._elementRef.nativeElement,g=s.options[0];return this.focused||s.multiple||!this.empty||!!(s.selectedIndex>-1&&g&&g.label)}return this.focused||!this.empty}setDescribedByIds(s){s.length?this._elementRef.nativeElement.setAttribute("aria-describedby",s.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const s=this._elementRef.nativeElement;return this._isNativeSelect&&(s.multiple||s.size>1)}}return O.\u0275fac=function(s){return new(s||O)(v.Y36(v.SBq),v.Y36(t.t4),v.Y36(q.a5,10),v.Y36(q.F,8),v.Y36(q.sg,8),v.Y36(C.rD),v.Y36(H,10),v.Y36(i.Lq),v.Y36(v.R0b),v.Y36(L.G_,8))},O.\u0275dir=v.lG2({type:O,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-mdc-input-element"],hostVars:18,hostBindings:function(s,g){1&s&&v.NdJ("focus",function(){return g._focusChanged(!0)})("blur",function(){return g._focusChanged(!1)})("input",function(){return g._onInput()}),2&s&&(v.Ikx("id",g.id)("disabled",g.disabled)("required",g.required),v.uIk("name",g.name||null)("readonly",g.readonly&&!g._isNativeSelect||null)("aria-invalid",g.empty&&g.required?null:g.errorState)("aria-required",g.required)("id",g.id),v.ekj("mat-input-server",g._isServer)("mat-mdc-form-field-textarea-control",g._isInFormField&&g._isTextarea)("mat-mdc-form-field-input-control",g._isInFormField)("mdc-text-field__input",g._isInFormField)("mat-mdc-native-select-inline",g._isInlineSelect()))},inputs:{disabled:"disabled",id:"id",placeholder:"placeholder",name:"name",required:"required",type:"type",errorStateMatcher:"errorStateMatcher",userAriaDescribedBy:["aria-describedby","userAriaDescribedBy"],value:"value",readonly:"readonly"},exportAs:["matInput"],features:[v._Bn([{provide:L.Eo,useExisting:O}]),v.qOj,v.TTD]}),O})(),F=(()=>{class O{}return O.\u0275fac=function(s){return new(s||O)},O.\u0275mod=v.oAB({type:O}),O.\u0275inj=v.cJS({imports:[C.BQ,L.lN,L.lN,i.Ky,C.BQ]}),O})()},1948:(ne,Q,h)=>{h.d(Q,{Fk:()=>T,U0:()=>x,VQ:()=>R});var e=h(4650),t=h(3238),i=h(2687),v=h(1281),q=h(5017),C=h(4006),L=h(6895);const U=["input"],Z=["*"];let H=0;class D{constructor(f,o){this.source=f,this.value=o}}const N={provide:C.JU,useExisting:(0,e.Gpc)(()=>R),multi:!0},G=new e.OlP("MatRadioGroup"),K=new e.OlP("mat-radio-default-options",{providedIn:"root",factory:function F(){return{color:"accent"}}});let O=(()=>{class c{constructor(o){this._changeDetector=o,this._value=null,this._name="mat-radio-group-"+H++,this._selected=null,this._isInitialized=!1,this._labelPosition="after",this._disabled=!1,this._required=!1,this._controlValueAccessorChangeFn=()=>{},this.onTouched=()=>{},this.change=new e.vpe}get name(){return this._name}set name(o){this._name=o,this._updateRadioButtonNames()}get labelPosition(){return this._labelPosition}set labelPosition(o){this._labelPosition="before"===o?"before":"after",this._markRadiosForCheck()}get value(){return this._value}set value(o){this._value!==o&&(this._value=o,this._updateSelectedRadioFromValue(),this._checkSelectedRadioButton())}_checkSelectedRadioButton(){this._selected&&!this._selected.checked&&(this._selected.checked=!0)}get selected(){return this._selected}set selected(o){this._selected=o,this.value=o?o.value:null,this._checkSelectedRadioButton()}get disabled(){return this._disabled}set disabled(o){this._disabled=(0,v.Ig)(o),this._markRadiosForCheck()}get required(){return this._required}set required(o){this._required=(0,v.Ig)(o),this._markRadiosForCheck()}ngAfterContentInit(){this._isInitialized=!0}_touch(){this.onTouched&&this.onTouched()}_updateRadioButtonNames(){this._radios&&this._radios.forEach(o=>{o.name=this.name,o._markForCheck()})}_updateSelectedRadioFromValue(){this._radios&&(null===this._selected||this._selected.value!==this._value)&&(this._selected=null,this._radios.forEach(p=>{p.checked=this.value===p.value,p.checked&&(this._selected=p)}))}_emitChangeEvent(){this._isInitialized&&this.change.emit(new D(this._selected,this._value))}_markRadiosForCheck(){this._radios&&this._radios.forEach(o=>o._markForCheck())}writeValue(o){this.value=o,this._changeDetector.markForCheck()}registerOnChange(o){this._controlValueAccessorChangeFn=o}registerOnTouched(o){this.onTouched=o}setDisabledState(o){this.disabled=o,this._changeDetector.markForCheck()}}return c.\u0275fac=function(o){return new(o||c)(e.Y36(e.sBO))},c.\u0275dir=e.lG2({type:c,inputs:{color:"color",name:"name",labelPosition:"labelPosition",value:"value",selected:"selected",disabled:"disabled",required:"required"},outputs:{change:"change"}}),c})();class u{constructor(f){this._elementRef=f}}const s=(0,t.Kr)((0,t.sb)(u));let g=(()=>{class c extends s{constructor(o,p,I,S,V,X,W,te){super(p),this._changeDetector=I,this._focusMonitor=S,this._radioDispatcher=V,this._providerOverride=W,this._uniqueId="mat-radio-"+ ++H,this.id=this._uniqueId,this.change=new e.vpe,this._checked=!1,this._value=null,this._removeUniqueSelectionListener=()=>{},this.radioGroup=o,this._noopAnimations="NoopAnimations"===X,te&&(this.tabIndex=(0,v.su)(te,0))}get checked(){return this._checked}set checked(o){const p=(0,v.Ig)(o);this._checked!==p&&(this._checked=p,p&&this.radioGroup&&this.radioGroup.value!==this.value?this.radioGroup.selected=this:!p&&this.radioGroup&&this.radioGroup.value===this.value&&(this.radioGroup.selected=null),p&&this._radioDispatcher.notify(this.id,this.name),this._changeDetector.markForCheck())}get value(){return this._value}set value(o){this._value!==o&&(this._value=o,null!==this.radioGroup&&(this.checked||(this.checked=this.radioGroup.value===o),this.checked&&(this.radioGroup.selected=this)))}get labelPosition(){return this._labelPosition||this.radioGroup&&this.radioGroup.labelPosition||"after"}set labelPosition(o){this._labelPosition=o}get disabled(){return this._disabled||null!==this.radioGroup&&this.radioGroup.disabled}set disabled(o){this._setDisabled((0,v.Ig)(o))}get required(){return this._required||this.radioGroup&&this.radioGroup.required}set required(o){this._required=(0,v.Ig)(o)}get color(){return this._color||this.radioGroup&&this.radioGroup.color||this._providerOverride&&this._providerOverride.color||"accent"}set color(o){this._color=o}get inputId(){return`${this.id||this._uniqueId}-input`}focus(o,p){p?this._focusMonitor.focusVia(this._inputElement,p,o):this._inputElement.nativeElement.focus(o)}_markForCheck(){this._changeDetector.markForCheck()}ngOnInit(){this.radioGroup&&(this.checked=this.radioGroup.value===this._value,this.checked&&(this.radioGroup.selected=this),this.name=this.radioGroup.name),this._removeUniqueSelectionListener=this._radioDispatcher.listen((o,p)=>{o!==this.id&&p===this.name&&(this.checked=!1)})}ngDoCheck(){this._updateTabIndex()}ngAfterViewInit(){this._updateTabIndex(),this._focusMonitor.monitor(this._elementRef,!0).subscribe(o=>{!o&&this.radioGroup&&this.radioGroup._touch()})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._removeUniqueSelectionListener()}_emitChangeEvent(){this.change.emit(new D(this,this._value))}_isRippleDisabled(){return this.disableRipple||this.disabled}_onInputClick(o){o.stopPropagation()}_onInputInteraction(o){if(o.stopPropagation(),!this.checked&&!this.disabled){const p=this.radioGroup&&this.value!==this.radioGroup.value;this.checked=!0,this._emitChangeEvent(),this.radioGroup&&(this.radioGroup._controlValueAccessorChangeFn(this.value),p&&this.radioGroup._emitChangeEvent())}}_setDisabled(o){this._disabled!==o&&(this._disabled=o,this._changeDetector.markForCheck())}_updateTabIndex(){const o=this.radioGroup;let p;if(p=o&&o.selected&&!this.disabled?o.selected===this?this.tabIndex:-1:this.tabIndex,p!==this._previousTabIndex){const I=this._inputElement?.nativeElement;I&&(I.setAttribute("tabindex",p+""),this._previousTabIndex=p)}}}return c.\u0275fac=function(o){e.$Z()},c.\u0275dir=e.lG2({type:c,viewQuery:function(o,p){if(1&o&&e.Gf(U,5),2&o){let I;e.iGM(I=e.CRH())&&(p._inputElement=I.first)}},inputs:{id:"id",name:"name",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],checked:"checked",value:"value",labelPosition:"labelPosition",disabled:"disabled",required:"required",color:"color"},outputs:{change:"change"},features:[e.qOj]}),c})(),R=(()=>{class c extends O{}return c.\u0275fac=function(){let f;return function(p){return(f||(f=e.n5z(c)))(p||c)}}(),c.\u0275dir=e.lG2({type:c,selectors:[["mat-radio-group"]],contentQueries:function(o,p,I){if(1&o&&e.Suo(I,x,5),2&o){let S;e.iGM(S=e.CRH())&&(p._radios=S)}},hostAttrs:["role","radiogroup",1,"mat-mdc-radio-group"],exportAs:["matRadioGroup"],features:[e._Bn([N,{provide:G,useExisting:c}]),e.qOj]}),c})(),x=(()=>{class c extends g{constructor(o,p,I,S,V,X,W,te){super(o,p,I,S,V,X,W,te)}}return c.\u0275fac=function(o){return new(o||c)(e.Y36(G,8),e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(i.tE),e.Y36(q.A8),e.Y36(e.QbO,8),e.Y36(K,8),e.$8M("tabindex"))},c.\u0275cmp=e.Xpm({type:c,selectors:[["mat-radio-button"]],hostAttrs:[1,"mat-mdc-radio-button"],hostVars:15,hostBindings:function(o,p){1&o&&e.NdJ("focus",function(){return p._inputElement.nativeElement.focus()}),2&o&&(e.uIk("id",p.id)("tabindex",null)("aria-label",null)("aria-labelledby",null)("aria-describedby",null),e.ekj("mat-primary","primary"===p.color)("mat-accent","accent"===p.color)("mat-warn","warn"===p.color)("mat-mdc-radio-checked",p.checked)("_mat-animation-noopable",p._noopAnimations))},inputs:{disableRipple:"disableRipple",tabIndex:"tabIndex"},exportAs:["matRadioButton"],features:[e.qOj],ngContentSelectors:Z,decls:13,vars:17,consts:[[1,"mdc-form-field"],["formField",""],[1,"mdc-radio"],[1,"mat-mdc-radio-touch-target",3,"click"],["type","radio",1,"mdc-radio__native-control",3,"id","checked","disabled","required","change"],["input",""],[1,"mdc-radio__background"],[1,"mdc-radio__outer-circle"],[1,"mdc-radio__inner-circle"],["mat-ripple","",1,"mat-radio-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mat-ripple-element","mat-radio-persistent-ripple"],[3,"for"]],template:function(o,p){if(1&o&&(e.F$t(),e.TgZ(0,"div",0,1)(2,"div",2)(3,"div",3),e.NdJ("click",function(S){return p._onInputInteraction(S)}),e.qZA(),e.TgZ(4,"input",4,5),e.NdJ("change",function(S){return p._onInputInteraction(S)}),e.qZA(),e.TgZ(6,"div",6),e._UZ(7,"div",7)(8,"div",8),e.qZA(),e.TgZ(9,"div",9),e._UZ(10,"div",10),e.qZA()(),e.TgZ(11,"label",11),e.Hsn(12),e.qZA()()),2&o){const I=e.MAs(1);e.ekj("mdc-form-field--align-end","before"==p.labelPosition),e.xp6(2),e.ekj("mdc-radio--disabled",p.disabled),e.xp6(2),e.Q6J("id",p.inputId)("checked",p.checked)("disabled",p.disabled)("required",p.required),e.uIk("name",p.name)("value",p.value)("aria-label",p.ariaLabel)("aria-labelledby",p.ariaLabelledby)("aria-describedby",p.ariaDescribedby),e.xp6(5),e.Q6J("matRippleTrigger",I)("matRippleDisabled",p._isRippleDisabled())("matRippleCentered",!0),e.xp6(2),e.Q6J("for",p.inputId)}},dependencies:[t.wG],styles:['.mdc-radio{display:inline-block;position:relative;flex:0 0 auto;box-sizing:content-box;width:20px;height:20px;cursor:pointer;will-change:opacity,transform,border-color,color}.mdc-radio[hidden]{display:none}.mdc-radio__background{display:inline-block;position:relative;box-sizing:border-box;width:20px;height:20px}.mdc-radio__background::before{position:absolute;transform:scale(0, 0);border-radius:50%;opacity:0;pointer-events:none;content:"";transition:opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__outer-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;border-width:2px;border-style:solid;border-radius:50%;transition:border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__inner-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;transform:scale(0, 0);border-width:10px;border-style:solid;border-radius:50%;transition:transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit;z-index:1}.mdc-radio--touch{margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-radio--touch .mdc-radio__native-control{top:calc((40px - 48px) / 2);right:calc((40px - 48px) / 2);left:calc((40px - 48px) / 2);width:48px;height:48px}.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring{border-color:CanvasText}}.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring::after,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring::after,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring::after{border-color:CanvasText}}.mdc-radio__native-control:checked+.mdc-radio__background,.mdc-radio__native-control:disabled+.mdc-radio__background{transition:opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__outer-circle{transition:border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__inner-circle,.mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{transition:transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1),border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio--disabled{cursor:default;pointer-events:none}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__inner-circle{transform:scale(0.5);transition:transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1),border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:disabled+.mdc-radio__background,[aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background{cursor:default}.mdc-radio__native-control:focus+.mdc-radio__background::before{transform:scale(1);opacity:.12;transition:opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-form-field{display:inline-flex;align-items:center;vertical-align:middle}.mdc-form-field[hidden]{display:none}.mdc-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{margin-left:auto;margin-right:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{padding-left:0;padding-right:4px}.mdc-form-field--nowrap>label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.mdc-form-field--align-end>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px;order:-1}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{margin-left:0;margin-right:auto}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{padding-left:4px;padding-right:0}.mdc-form-field--space-between{justify-content:space-between}.mdc-form-field--space-between>label{margin:0}[dir=rtl] .mdc-form-field--space-between>label,.mdc-form-field--space-between>label[dir=rtl]{margin:0}.mat-mdc-radio-button .mdc-radio{padding:calc((var(--mdc-radio-state-layer-size, 40px) - 20px) / 2)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-selected-icon-color, #000)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-disabled-selected-icon-color, #000)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:checked+.mdc-radio__background .mdc-radio__outer-circle{opacity:var(--mdc-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{opacity:var(--mdc-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-unselected-icon-color, #000)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{opacity:var(--mdc-radio-disabled-unselected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-focus-icon-color, #6200ee)}.mat-mdc-radio-button .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-focus-icon-color, #6200ee)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-hover-icon-color, #6200ee)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-hover-icon-color, #6200ee)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-icon-color, #6200ee)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-icon-color, #6200ee)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-pressed-icon-color, #6200ee)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-pressed-icon-color, #6200ee)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-hover-icon-color, #000)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-icon-color, #000)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-pressed-icon-color, #000)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{top:calc(-1 * (var(--mdc-radio-state-layer-size, 40px) - 20px) / 2);left:calc(-1 * (var(--mdc-radio-state-layer-size, 40px) - 20px) / 2);width:var(--mdc-radio-state-layer-size, 40px);height:var(--mdc-radio-state-layer-size, 40px)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control{top:calc((var(--mdc-radio-state-layer-size, 40px) - var(--mdc-radio-state-layer-size, 40px)) / 2);right:calc((var(--mdc-radio-state-layer-size, 40px) - var(--mdc-radio-state-layer-size, 40px)) / 2);left:calc((var(--mdc-radio-state-layer-size, 40px) - var(--mdc-radio-state-layer-size, 40px)) / 2);width:var(--mdc-radio-state-layer-size, 40px);height:var(--mdc-radio-state-layer-size, 40px)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{background-color:var(--mat-mdc-radio-ripple-color, transparent)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:not([disabled]):not(:focus)~.mdc-radio__background::before{opacity:.04;transform:scale(1)}.mat-mdc-radio-button.mat-mdc-radio-checked .mdc-radio__background::before{background-color:var(--mat-mdc-radio-checked-ripple-color, transparent)}.mat-mdc-radio-button.mat-mdc-radio-checked .mat-ripple-element{background-color:var(--mat-mdc-radio-checked-ripple-color, transparent)}.mat-mdc-radio-button .mat-radio-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:50%}.mat-mdc-radio-button .mat-radio-ripple .mat-ripple-element{opacity:.14}.mat-mdc-radio-button .mat-radio-ripple::before{border-radius:50%}.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__background::before,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__outer-circle,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__inner-circle{transition:none !important}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:focus:enabled:not(:checked)~.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-focus-icon-color, black)}.mat-mdc-radio-button.cdk-focused .mat-mdc-focus-indicator::before{content:""}.mat-mdc-radio-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}[dir=rtl] .mat-mdc-radio-touch-target{left:0;right:50%;transform:translate(50%, -50%)}'],encapsulation:2,changeDetection:0}),c})(),T=(()=>{class c{}return c.\u0275fac=function(o){return new(o||c)},c.\u0275mod=e.oAB({type:c}),c.\u0275inj=e.cJS({imports:[t.BQ,L.ez,t.si,t.BQ]}),c})()},4385:(ne,Q,h)=>{h.d(Q,{$L:()=>me,LD:()=>he,gD:()=>ge});var e=h(8184),t=h(6895),i=h(4650),v=h(3238),q=h(9549),C=h(7376),L=h(2687),U=h(445),Z=h(1281),H=h(5017),D=h(9521),N=h(4006),G=h(8929),K=h(8514),F=h(6787),O=h(1059),u=h(7545),s=h(2986),g=h(2198),R=h(4850),x=h(5778),T=h(7625),c=h(7340);const f=["trigger"],o=["panel"];function p(y,B){if(1&y&&(i.TgZ(0,"span",10),i._uU(1),i.qZA()),2&y){const a=i.oxw();i.xp6(1),i.Oqu(a.placeholder)}}function I(y,B){if(1&y&&(i.TgZ(0,"span",14),i._uU(1),i.qZA()),2&y){const a=i.oxw(2);i.xp6(1),i.Oqu(a.triggerValue)}}function S(y,B){1&y&&i.Hsn(0,0,["*ngSwitchCase","true"])}function V(y,B){if(1&y&&(i.TgZ(0,"span",11),i.YNc(1,I,2,1,"span",12),i.YNc(2,S,1,0,"ng-content",13),i.qZA()),2&y){const a=i.oxw();i.Q6J("ngSwitch",!!a.customTrigger),i.xp6(2),i.Q6J("ngSwitchCase",!0)}}function X(y,B){if(1&y){const a=i.EpF();i.O4$(),i.kcU(),i.TgZ(0,"div",15,16),i.NdJ("@transformPanel.done",function(k){i.CHM(a);const z=i.oxw();return i.KtG(z._panelDoneAnimatingStream.next(k.toState))})("keydown",function(k){i.CHM(a);const z=i.oxw();return i.KtG(z._handleKeydown(k))}),i.Hsn(2,1),i.qZA()}if(2&y){const a=i.oxw();i.Gre("mat-mdc-select-panel mdc-menu-surface mdc-menu-surface--open ",a._getPanelTheme(),""),i.Q6J("ngClass",a.panelClass)("@transformPanel","showing"),i.uIk("id",a.id+"-panel")("aria-multiselectable",a.multiple)("aria-label",a.ariaLabel||null)("aria-labelledby",a._getPanelAriaLabelledby())}}const W=[[["mat-select-trigger"]],"*"],te=["mat-select-trigger","*"],re={transformPanelWrap:(0,c.X$)("transformPanelWrap",[(0,c.eR)("* => void",(0,c.IO)("@transformPanel",[(0,c.pV)()],{optional:!0}))]),transformPanel:(0,c.X$)("transformPanel",[(0,c.SB)("void",(0,c.oB)({opacity:0,transform:"scale(1, 0.8)"})),(0,c.eR)("void => showing",(0,c.jt)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,c.oB)({opacity:1,transform:"scale(1, 1)"}))),(0,c.eR)("* => void",(0,c.jt)("100ms linear",(0,c.oB)({opacity:0})))])};let b=0;const A=new i.OlP("mat-select-scroll-strategy"),Y=new i.OlP("MAT_SELECT_CONFIG"),oe={provide:A,deps:[e.aV],useFactory:function j(y){return()=>y.scrollStrategies.reposition()}},de=new i.OlP("MatSelectTrigger");class pe{constructor(B,a){this.source=B,this.value=a}}const se=(0,v.Kr)((0,v.sb)((0,v.Id)((0,v.FD)(class{constructor(y,B,a,r,k){this._elementRef=y,this._defaultErrorStateMatcher=B,this._parentForm=a,this._parentFormGroup=r,this.ngControl=k,this.stateChanges=new G.xQ}}))));let be=(()=>{class y extends se{constructor(a,r,k,z,ee,ae,J,xe,fe,ue,ke,_e,ve,ce){super(ee,z,J,xe,ue),this._viewportRuler=a,this._changeDetectorRef=r,this._ngZone=k,this._dir=ae,this._parentFormField=fe,this._liveAnnouncer=ve,this._defaultOptions=ce,this._panelOpen=!1,this._compareWith=($,d)=>$===d,this._uid="mat-select-"+b++,this._triggerAriaLabelledBy=null,this._destroy=new G.xQ,this._onChange=()=>{},this._onTouched=()=>{},this._valueId="mat-select-value-"+b++,this._panelDoneAnimatingStream=new G.xQ,this._overlayPanelClass=this._defaultOptions?.overlayPanelClass||"",this._focused=!1,this.controlType="mat-select",this._multiple=!1,this._disableOptionCentering=this._defaultOptions?.disableOptionCentering??!1,this.ariaLabel="",this.optionSelectionChanges=(0,K.P)(()=>{const $=this.options;return $?$.changes.pipe((0,O.O)($),(0,u.w)(()=>(0,F.T)(...$.map(d=>d.onSelectionChange)))):this._ngZone.onStable.pipe((0,s.q)(1),(0,u.w)(()=>this.optionSelectionChanges))}),this.openedChange=new i.vpe,this._openedStream=this.openedChange.pipe((0,g.h)($=>$),(0,R.U)(()=>{})),this._closedStream=this.openedChange.pipe((0,g.h)($=>!$),(0,R.U)(()=>{})),this.selectionChange=new i.vpe,this.valueChange=new i.vpe,this.ngControl&&(this.ngControl.valueAccessor=this),null!=ce?.typeaheadDebounceInterval&&(this._typeaheadDebounceInterval=ce.typeaheadDebounceInterval),this._scrollStrategyFactory=_e,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(ke)||0,this.id=this.id}get focused(){return this._focused||this._panelOpen}get placeholder(){return this._placeholder}set placeholder(a){this._placeholder=a,this.stateChanges.next()}get required(){return this._required??this.ngControl?.control?.hasValidator(N.kI.required)??!1}set required(a){this._required=(0,Z.Ig)(a),this.stateChanges.next()}get multiple(){return this._multiple}set multiple(a){this._multiple=(0,Z.Ig)(a)}get disableOptionCentering(){return this._disableOptionCentering}set disableOptionCentering(a){this._disableOptionCentering=(0,Z.Ig)(a)}get compareWith(){return this._compareWith}set compareWith(a){this._compareWith=a,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(a){this._assignValue(a)&&this._onChange(a)}get typeaheadDebounceInterval(){return this._typeaheadDebounceInterval}set typeaheadDebounceInterval(a){this._typeaheadDebounceInterval=(0,Z.su)(a)}get id(){return this._id}set id(a){this._id=a||this._uid,this.stateChanges.next()}ngOnInit(){this._selectionModel=new H.Ov(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe((0,x.x)(),(0,T.R)(this._destroy)).subscribe(()=>this._panelDoneAnimating(this.panelOpen))}ngAfterContentInit(){this._initKeyManager(),this._selectionModel.changed.pipe((0,T.R)(this._destroy)).subscribe(a=>{a.added.forEach(r=>r.select()),a.removed.forEach(r=>r.deselect())}),this.options.changes.pipe((0,O.O)(null),(0,T.R)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const a=this._getTriggerAriaLabelledby(),r=this.ngControl;if(a!==this._triggerAriaLabelledBy){const k=this._elementRef.nativeElement;this._triggerAriaLabelledBy=a,a?k.setAttribute("aria-labelledby",a):k.removeAttribute("aria-labelledby")}r&&(this._previousControl!==r.control&&(void 0!==this._previousControl&&null!==r.disabled&&r.disabled!==this.disabled&&(this.disabled=r.disabled),this._previousControl=r.control),this.updateErrorState())}ngOnChanges(a){(a.disabled||a.userAriaDescribedBy)&&this.stateChanges.next(),a.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}ngOnDestroy(){this._keyManager?.destroy(),this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()}toggle(){this.panelOpen?this.close():this.open()}open(){this._canOpen()&&(this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck())}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched())}writeValue(a){this._assignValue(a)}registerOnChange(a){this._onChange=a}registerOnTouched(a){this._onTouched=a}setDisabledState(a){this.disabled=a,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){return this.multiple?this._selectionModel?.selected||[]:this._selectionModel?.selected[0]}get triggerValue(){if(this.empty)return"";if(this._multiple){const a=this._selectionModel.selected.map(r=>r.viewValue);return this._isRtl()&&a.reverse(),a.join(", ")}return this._selectionModel.selected[0].viewValue}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(a){this.disabled||(this.panelOpen?this._handleOpenKeydown(a):this._handleClosedKeydown(a))}_handleClosedKeydown(a){const r=a.keyCode,k=r===D.JH||r===D.LH||r===D.oh||r===D.SV,z=r===D.K5||r===D.L_,ee=this._keyManager;if(!ee.isTyping()&&z&&!(0,D.Vb)(a)||(this.multiple||a.altKey)&&k)a.preventDefault(),this.open();else if(!this.multiple){const ae=this.selected;ee.onKeydown(a);const J=this.selected;J&&ae!==J&&this._liveAnnouncer.announce(J.viewValue,1e4)}}_handleOpenKeydown(a){const r=this._keyManager,k=a.keyCode,z=k===D.JH||k===D.LH,ee=r.isTyping();if(z&&a.altKey)a.preventDefault(),this.close();else if(ee||k!==D.K5&&k!==D.L_||!r.activeItem||(0,D.Vb)(a))if(!ee&&this._multiple&&k===D.A&&a.ctrlKey){a.preventDefault();const ae=this.options.some(J=>!J.disabled&&!J.selected);this.options.forEach(J=>{J.disabled||(ae?J.select():J.deselect())})}else{const ae=r.activeItemIndex;r.onKeydown(a),this._multiple&&z&&a.shiftKey&&r.activeItem&&r.activeItemIndex!==ae&&r.activeItem._selectViaInteraction()}else a.preventDefault(),r.activeItem._selectViaInteraction()}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this._keyManager?.cancelTypeahead(),!this.disabled&&!this.panelOpen&&(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_onAttached(){this._overlayDir.positionChange.pipe((0,s.q)(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._positioningSettled()})}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:""}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this.ngControl&&(this._value=this.ngControl.value),this._setSelectionByValue(this._value),this.stateChanges.next()})}_setSelectionByValue(a){if(this._selectionModel.selected.forEach(r=>r.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&a)Array.isArray(a),a.forEach(r=>this._selectOptionByValue(r)),this._sortValues();else{const r=this._selectOptionByValue(a);r?this._keyManager.updateActiveItem(r):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(a){const r=this.options.find(k=>{if(this._selectionModel.isSelected(k))return!1;try{return null!=k.value&&this._compareWith(k.value,a)}catch{return!1}});return r&&this._selectionModel.select(r),r}_assignValue(a){return!!(a!==this._value||this._multiple&&Array.isArray(a))&&(this.options&&this._setSelectionByValue(a),this._value=a,!0)}_initKeyManager(){this._keyManager=new L.s1(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withHomeAndEnd().withPageUpDown().withAllowedModifierKeys(["shiftKey"]),this._keyManager.tabOut.subscribe(()=>{this.panelOpen&&(!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close())}),this._keyManager.change.subscribe(()=>{this._panelOpen&&this.panel?this._scrollOptionIntoView(this._keyManager.activeItemIndex||0):!this._panelOpen&&!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const a=(0,F.T)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,T.R)(a)).subscribe(r=>{this._onSelect(r.source,r.isUserInput),r.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,F.T)(...this.options.map(r=>r._stateChanges)).pipe((0,T.R)(a)).subscribe(()=>{this._changeDetectorRef.markForCheck(),this.stateChanges.next()})}_onSelect(a,r){const k=this._selectionModel.isSelected(a);null!=a.value||this._multiple?(k!==a.selected&&(a.selected?this._selectionModel.select(a):this._selectionModel.deselect(a)),r&&this._keyManager.setActiveItem(a),this.multiple&&(this._sortValues(),r&&this.focus())):(a.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(a.value)),k!==this._selectionModel.isSelected(a)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const a=this.options.toArray();this._selectionModel.sort((r,k)=>this.sortComparator?this.sortComparator(r,k,a):a.indexOf(r)-a.indexOf(k)),this.stateChanges.next()}}_propagateChanges(a){let r=null;r=this.multiple?this.selected.map(k=>k.value):this.selected?this.selected.value:a,this._value=r,this.valueChange.emit(r),this._onChange(r),this.selectionChange.emit(this._getChangeEvent(r)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))}_canOpen(){return!this._panelOpen&&!this.disabled&&this.options?.length>0}focus(a){this._elementRef.nativeElement.focus(a)}_getPanelAriaLabelledby(){if(this.ariaLabel)return null;const a=this._parentFormField?.getLabelId();return this.ariaLabelledby?(a?a+" ":"")+this.ariaLabelledby:a}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){if(this.ariaLabel)return null;const a=this._parentFormField?.getLabelId();let r=(a?a+" ":"")+this._valueId;return this.ariaLabelledby&&(r+=" "+this.ariaLabelledby),r}_panelDoneAnimating(a){this.openedChange.emit(a)}setDescribedByIds(a){a.length?this._elementRef.nativeElement.setAttribute("aria-describedby",a.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this._panelOpen||!this.empty||this._focused&&!!this._placeholder}}return y.\u0275fac=function(a){return new(a||y)(i.Y36(C.rL),i.Y36(i.sBO),i.Y36(i.R0b),i.Y36(v.rD),i.Y36(i.SBq),i.Y36(U.Is,8),i.Y36(N.F,8),i.Y36(N.sg,8),i.Y36(q.G_,8),i.Y36(N.a5,10),i.$8M("tabindex"),i.Y36(A),i.Y36(L.Kd),i.Y36(Y,8))},y.\u0275dir=i.lG2({type:y,viewQuery:function(a,r){if(1&a&&(i.Gf(f,5),i.Gf(o,5),i.Gf(e.pI,5)),2&a){let k;i.iGM(k=i.CRH())&&(r.trigger=k.first),i.iGM(k=i.CRH())&&(r.panel=k.first),i.iGM(k=i.CRH())&&(r._overlayDir=k.first)}},inputs:{userAriaDescribedBy:["aria-describedby","userAriaDescribedBy"],panelClass:"panelClass",placeholder:"placeholder",required:"required",multiple:"multiple",disableOptionCentering:"disableOptionCentering",compareWith:"compareWith",value:"value",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],errorStateMatcher:"errorStateMatcher",typeaheadDebounceInterval:"typeaheadDebounceInterval",sortComparator:"sortComparator",id:"id"},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},features:[i.qOj,i.TTD]}),y})(),me=(()=>{class y{}return y.\u0275fac=function(a){return new(a||y)},y.\u0275dir=i.lG2({type:y,selectors:[["mat-select-trigger"]],features:[i._Bn([{provide:de,useExisting:y}])]}),y})(),ge=(()=>{class y extends be{constructor(){super(...arguments),this._positions=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"}]}get shouldLabelFloat(){return this.panelOpen||!this.empty||this.focused&&!!this.placeholder}ngOnInit(){super.ngOnInit(),this._viewportRuler.change().pipe((0,T.R)(this._destroy)).subscribe(()=>{this.panelOpen&&(this._overlayWidth=this._getOverlayWidth(),this._changeDetectorRef.detectChanges())})}ngAfterViewInit(){this._parentFormField&&(this._preferredOverlayOrigin=this._parentFormField.getConnectedOverlayOrigin())}open(){this._overlayWidth=this._getOverlayWidth(),super.open(),this.stateChanges.next()}close(){super.close(),this.stateChanges.next()}_scrollOptionIntoView(a){const r=this.options.toArray()[a];if(r){const k=this.panel.nativeElement,z=(0,v.CB)(a,this.options,this.optionGroups),ee=r._getHostElement();k.scrollTop=0===a&&1===z?0:(0,v.jH)(ee.offsetTop,ee.offsetHeight,k.scrollTop,k.offsetHeight)}}_positioningSettled(){this._scrollOptionIntoView(this._keyManager.activeItemIndex||0)}_getChangeEvent(a){return new pe(this,a)}_getOverlayWidth(){return(this._preferredOverlayOrigin instanceof e.xu?this._preferredOverlayOrigin.elementRef:this._preferredOverlayOrigin||this._elementRef).nativeElement.getBoundingClientRect().width}}return y.\u0275fac=function(){let B;return function(r){return(B||(B=i.n5z(y)))(r||y)}}(),y.\u0275cmp=i.Xpm({type:y,selectors:[["mat-select"]],contentQueries:function(a,r,k){if(1&a&&(i.Suo(k,de,5),i.Suo(k,v.ey,5),i.Suo(k,v.K7,5)),2&a){let z;i.iGM(z=i.CRH())&&(r.customTrigger=z.first),i.iGM(z=i.CRH())&&(r.options=z),i.iGM(z=i.CRH())&&(r.optionGroups=z)}},hostAttrs:["role","combobox","aria-autocomplete","none","aria-haspopup","listbox",1,"mat-mdc-select"],hostVars:19,hostBindings:function(a,r){1&a&&i.NdJ("keydown",function(z){return r._handleKeydown(z)})("focus",function(){return r._onFocus()})("blur",function(){return r._onBlur()}),2&a&&(i.uIk("id",r.id)("tabindex",r.tabIndex)("aria-controls",r.panelOpen?r.id+"-panel":null)("aria-expanded",r.panelOpen)("aria-label",r.ariaLabel||null)("aria-required",r.required.toString())("aria-disabled",r.disabled.toString())("aria-invalid",r.errorState)("aria-activedescendant",r._getAriaActiveDescendant()),i.ekj("mat-mdc-select-disabled",r.disabled)("mat-mdc-select-invalid",r.errorState)("mat-mdc-select-required",r.required)("mat-mdc-select-empty",r.empty)("mat-mdc-select-multiple",r.multiple))},inputs:{disabled:"disabled",disableRipple:"disableRipple",tabIndex:"tabIndex"},exportAs:["matSelect"],features:[i._Bn([{provide:q.Eo,useExisting:y},{provide:v.HF,useExisting:y}]),i.qOj],ngContentSelectors:te,decls:11,vars:11,consts:[["cdk-overlay-origin","",1,"mat-mdc-select-trigger",3,"click"],["fallbackOverlayOrigin","cdkOverlayOrigin","trigger",""],[1,"mat-mdc-select-value",3,"ngSwitch"],["class","mat-mdc-select-placeholder mat-mdc-select-min-line",4,"ngSwitchCase"],["class","mat-mdc-select-value-text",3,"ngSwitch",4,"ngSwitchCase"],[1,"mat-mdc-select-arrow-wrapper"],[1,"mat-mdc-select-arrow"],["viewBox","0 0 24 24","width","24px","height","24px","focusable","false"],["d","M7 10l5 5 5-5z"],["cdk-connected-overlay","","cdkConnectedOverlayLockPosition","","cdkConnectedOverlayHasBackdrop","","cdkConnectedOverlayBackdropClass","cdk-overlay-transparent-backdrop",3,"cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayOpen","cdkConnectedOverlayPositions","cdkConnectedOverlayWidth","backdropClick","attach","detach"],[1,"mat-mdc-select-placeholder","mat-mdc-select-min-line"],[1,"mat-mdc-select-value-text",3,"ngSwitch"],["class","mat-mdc-select-min-line",4,"ngSwitchDefault"],[4,"ngSwitchCase"],[1,"mat-mdc-select-min-line"],["role","listbox","tabindex","-1",3,"ngClass","keydown"],["panel",""]],template:function(a,r){if(1&a&&(i.F$t(W),i.TgZ(0,"div",0,1),i.NdJ("click",function(){return r.toggle()}),i.TgZ(3,"div",2),i.YNc(4,p,2,1,"span",3),i.YNc(5,V,3,2,"span",4),i.qZA(),i.TgZ(6,"div",5)(7,"div",6),i.O4$(),i.TgZ(8,"svg",7),i._UZ(9,"path",8),i.qZA()()()(),i.YNc(10,X,3,9,"ng-template",9),i.NdJ("backdropClick",function(){return r.close()})("attach",function(){return r._onAttached()})("detach",function(){return r.close()})),2&a){const k=i.MAs(1);i.uIk("aria-owns",r.panelOpen?r.id+"-panel":null),i.xp6(3),i.Q6J("ngSwitch",r.empty),i.uIk("id",r._valueId),i.xp6(1),i.Q6J("ngSwitchCase",!0),i.xp6(1),i.Q6J("ngSwitchCase",!1),i.xp6(5),i.Q6J("cdkConnectedOverlayPanelClass",r._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",r._scrollStrategy)("cdkConnectedOverlayOrigin",r._preferredOverlayOrigin||k)("cdkConnectedOverlayOpen",r.panelOpen)("cdkConnectedOverlayPositions",r._positions)("cdkConnectedOverlayWidth",r._overlayWidth)}},dependencies:[t.mk,t.RF,t.n9,t.ED,e.pI,e.xu],styles:['.mdc-menu-surface{display:none;position:absolute;box-sizing:border-box;max-width:calc(100vw - 32px);max-width:var(--mdc-menu-max-width, calc(100vw - 32px));max-height:calc(100vh - 32px);max-height:var(--mdc-menu-max-height, calc(100vh - 32px));margin:0;padding:0;transform:scale(1);transform-origin:top left;opacity:0;overflow:auto;will-change:transform,opacity;z-index:8;border-radius:4px;border-radius:var(--mdc-shape-medium, 4px);transform-origin-left:top left;transform-origin-right:top right}.mdc-menu-surface:focus{outline:none}.mdc-menu-surface--animating-open{display:inline-block;transform:scale(0.8);opacity:0}.mdc-menu-surface--open{display:inline-block;transform:scale(1);opacity:1}.mdc-menu-surface--animating-closed{display:inline-block;opacity:0}[dir=rtl] .mdc-menu-surface,.mdc-menu-surface[dir=rtl]{transform-origin-left:top right;transform-origin-right:top left}.mdc-menu-surface--anchor{position:relative;overflow:visible}.mdc-menu-surface--fixed{position:fixed}.mdc-menu-surface--fullwidth{width:100%}.mat-mdc-select{display:inline-block;width:100%;outline:none}.mat-mdc-select-trigger{display:inline-flex;align-items:center;cursor:pointer;position:relative;box-sizing:border-box;width:100%}.mat-mdc-select-disabled .mat-mdc-select-trigger{-webkit-user-select:none;user-select:none;cursor:default}.mat-mdc-select-value{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-mdc-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-mdc-select-arrow-wrapper{height:24px;flex-shrink:0;display:inline-flex;align-items:center}.mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper{transform:translateY(-8px)}.mat-form-field-appearance-fill .mdc-text-field--no-label .mat-mdc-select-arrow-wrapper{transform:none}.mat-mdc-select-arrow{width:10px;height:5px;position:relative}.mat-mdc-select-arrow svg{fill:currentColor;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:CanvasText}.mat-mdc-select-disabled .cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:GrayText}.mdc-menu-surface.mat-mdc-select-panel{width:100%;max-height:275px;position:static;outline:0;margin:0;padding:8px 0;list-style-type:none}.mdc-menu-surface.mat-mdc-select-panel:focus{outline:none}.cdk-high-contrast-active .mdc-menu-surface.mat-mdc-select-panel{outline:solid 1px}.cdk-overlay-pane:not(.mat-mdc-select-panel-above) .mdc-menu-surface.mat-mdc-select-panel{border-top-left-radius:0;border-top-right-radius:0;transform-origin:top center}.mat-mdc-select-panel-above .mdc-menu-surface.mat-mdc-select-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:bottom center}.mat-mdc-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable .mat-mdc-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-mdc-select-placeholder{color:rgba(0,0,0,0);-webkit-text-fill-color:rgba(0,0,0,0);transition:none;display:block}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mat-mdc-floating-label{max-width:calc(100% - 18px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mdc-floating-label--float-above{max-width:calc(100% / 0.75 - 24px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-text-field--label-floating .mdc-notched-outline__notch{max-width:calc(100% - 24px)}.mat-mdc-select-min-line:empty::before{content:" ";white-space:pre;width:1px;display:inline-block;visibility:hidden}'],encapsulation:2,data:{animation:[re.transformPanel]},changeDetection:0}),y})(),he=(()=>{class y{}return y.\u0275fac=function(a){return new(a||y)},y.\u0275mod=i.oAB({type:y}),y.\u0275inj=i.cJS({providers:[oe],imports:[t.ez,e.U8,v.Ng,v.BQ,C.ZD,q.lN,v.Ng,v.BQ]}),y})()}}]);