-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path4110.f38e0dbee9d78100.js
1 lines (1 loc) · 73.5 KB
/
4110.f38e0dbee9d78100.js
1
"use strict";(self.webpackChunkmaterial_angular_io=self.webpackChunkmaterial_angular_io||[]).push([[4110],{9349:(z,R,f)=>{f.d(R,{IC:()=>A,Ky:()=>S,Lq:()=>O,aC:()=>k});var e=f(3353),t=f(4650),m=f(1281),g=f(8896),F=f(8929),M=f(3753),p=f(7568),P=f(7625),w=f(6895);const T=(0,e.i$)({passive:!0});let O=(()=>{class _{constructor(d,a){this._platform=d,this._ngZone=a,this._monitoredElements=new Map}monitor(d){if(!this._platform.isBrowser)return g.E;const a=(0,m.fI)(d),r=this._monitoredElements.get(a);if(r)return r.subject;const E=new F.xQ,y="cdk-text-field-autofilled",C=D=>{"cdk-text-field-autofill-start"!==D.animationName||a.classList.contains(y)?"cdk-text-field-autofill-end"===D.animationName&&a.classList.contains(y)&&(a.classList.remove(y),this._ngZone.run(()=>E.next({target:D.target,isAutofilled:!1}))):(a.classList.add(y),this._ngZone.run(()=>E.next({target:D.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{a.addEventListener("animationstart",C,T),a.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(a,{subject:E,unlisten:()=>{a.removeEventListener("animationstart",C,T)}}),E}stopMonitoring(d){const a=(0,m.fI)(d),r=this._monitoredElements.get(a);r&&(r.unlisten(),r.subject.complete(),a.classList.remove("cdk-text-field-autofill-monitored"),a.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(a))}ngOnDestroy(){this._monitoredElements.forEach((d,a)=>this.stopMonitoring(a))}}return _.\u0275fac=function(d){return new(d||_)(t.LFG(e.t4),t.LFG(t.R0b))},_.\u0275prov=t.Yz7({token:_,factory:_.\u0275fac,providedIn:"root"}),_})(),k=(()=>{class _{constructor(d,a){this._elementRef=d,this._autofillMonitor=a,this.cdkAutofill=new t.vpe}ngOnInit(){this._autofillMonitor.monitor(this._elementRef).subscribe(d=>this.cdkAutofill.emit(d))}ngOnDestroy(){this._autofillMonitor.stopMonitoring(this._elementRef)}}return _.\u0275fac=function(d){return new(d||_)(t.Y36(t.SBq),t.Y36(O))},_.\u0275dir=t.lG2({type:_,selectors:[["","cdkAutofill",""]],outputs:{cdkAutofill:"cdkAutofill"}}),_})(),A=(()=>{class _{constructor(d,a,r,E){this._elementRef=d,this._platform=a,this._ngZone=r,this._destroyed=new F.xQ,this._enabled=!0,this._previousMinRows=-1,this._isViewInited=!1,this._handleFocusEvent=y=>{this._hasFocus="focus"===y.type},this._document=E,this._textareaElement=this._elementRef.nativeElement}get minRows(){return this._minRows}set minRows(d){this._minRows=(0,m.su)(d),this._setMinHeight()}get maxRows(){return this._maxRows}set maxRows(d){this._maxRows=(0,m.su)(d),this._setMaxHeight()}get enabled(){return this._enabled}set enabled(d){d=(0,m.Ig)(d),this._enabled!==d&&((this._enabled=d)?this.resizeToFitContent(!0):this.reset())}get placeholder(){return this._textareaElement.placeholder}set placeholder(d){this._cachedPlaceholderHeight=void 0,d?this._textareaElement.setAttribute("placeholder",d):this._textareaElement.removeAttribute("placeholder"),this._cacheTextareaPlaceholderHeight()}_setMinHeight(){const d=this.minRows&&this._cachedLineHeight?this.minRows*this._cachedLineHeight+"px":null;d&&(this._textareaElement.style.minHeight=d)}_setMaxHeight(){const d=this.maxRows&&this._cachedLineHeight?this.maxRows*this._cachedLineHeight+"px":null;d&&(this._textareaElement.style.maxHeight=d)}ngAfterViewInit(){this._platform.isBrowser&&(this._initialHeight=this._textareaElement.style.height,this.resizeToFitContent(),this._ngZone.runOutsideAngular(()=>{const d=this._getWindow();(0,M.R)(d,"resize").pipe((0,p.e)(16),(0,P.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 d=this._textareaElement.cloneNode(!1);d.rows=1,d.style.position="absolute",d.style.visibility="hidden",d.style.border="none",d.style.padding="0",d.style.height="",d.style.minHeight="",d.style.maxHeight="",d.style.overflow="hidden",this._textareaElement.parentNode.appendChild(d),this._cachedLineHeight=d.clientHeight,d.remove(),this._setMinHeight(),this._setMaxHeight()}_measureScrollHeight(){const d=this._textareaElement,a=d.style.marginBottom||"",r=this._platform.FIREFOX,E=r&&this._hasFocus,y=r?"cdk-textarea-autosize-measuring-firefox":"cdk-textarea-autosize-measuring";E&&(d.style.marginBottom=`${d.clientHeight}px`),d.classList.add(y);const C=d.scrollHeight-4;return d.classList.remove(y),E&&(d.style.marginBottom=a),C}_cacheTextareaPlaceholderHeight(){if(!this._isViewInited||null!=this._cachedPlaceholderHeight)return;if(!this.placeholder)return void(this._cachedPlaceholderHeight=0);const d=this._textareaElement.value;this._textareaElement.value=this._textareaElement.placeholder,this._cachedPlaceholderHeight=this._measureScrollHeight(),this._textareaElement.value=d}ngDoCheck(){this._platform.isBrowser&&this.resizeToFitContent()}resizeToFitContent(d=!1){if(!this._enabled||(this._cacheTextareaLineHeight(),this._cacheTextareaPlaceholderHeight(),!this._cachedLineHeight))return;const a=this._elementRef.nativeElement,r=a.value;if(!d&&this._minRows===this._previousMinRows&&r===this._previousValue)return;const E=this._measureScrollHeight(),y=Math.max(E,this._cachedPlaceholderHeight||0);a.style.height=`${y}px`,this._ngZone.runOutsideAngular(()=>{typeof requestAnimationFrame<"u"?requestAnimationFrame(()=>this._scrollToCaretPosition(a)):setTimeout(()=>this._scrollToCaretPosition(a))}),this._previousValue=r,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(d){const{selectionStart:a,selectionEnd:r}=d;!this._destroyed.isStopped&&this._hasFocus&&d.setSelectionRange(a,r)}}return _.\u0275fac=function(d){return new(d||_)(t.Y36(t.SBq),t.Y36(e.t4),t.Y36(t.R0b),t.Y36(w.K0,8))},_.\u0275dir=t.lG2({type:_,selectors:[["textarea","cdkTextareaAutosize",""]],hostAttrs:["rows","1",1,"cdk-textarea-autosize"],hostBindings:function(d,a){1&d&&t.NdJ("input",function(){return a._noopInputHandler()})},inputs:{minRows:["cdkAutosizeMinRows","minRows"],maxRows:["cdkAutosizeMaxRows","maxRows"],enabled:["cdkTextareaAutosize","enabled"],placeholder:"placeholder"},exportAs:["cdkTextareaAutosize"]}),_})(),S=(()=>{class _{}return _.\u0275fac=function(d){return new(d||_)},_.\u0275mod=t.oAB({type:_}),_.\u0275inj=t.cJS({}),_})()},4110:(z,R,f)=>{f.r(R),f.d(R,{InputClearableExample:()=>S,InputErrorStateMatcherExample:()=>x,InputErrorsExample:()=>d,InputExamplesModule:()=>N,InputFormExample:()=>a,InputHarnessExample:()=>C,InputHintExample:()=>r,InputOverviewExample:()=>E,InputPrefixSuffixExample:()=>y});var e=f(6895),t=f(4650),m=f(4006),g=f(4859),F=f(7392),M=f(284),p=f(9549);function P(o,u){if(1&o){const c=t.EpF();t.TgZ(0,"button",3),t.NdJ("click",function(){t.CHM(c);const I=t.oxw();return t.KtG(I.value="")}),t.TgZ(1,"mat-icon"),t._uU(2,"close"),t.qZA()()}}function w(o,u){1&o&&(t.TgZ(0,"mat-error"),t._uU(1," Please enter a valid email address "),t.qZA())}function T(o,u){1&o&&(t.TgZ(0,"mat-error"),t._uU(1," Email is "),t.TgZ(2,"strong"),t._uU(3,"required"),t.qZA()())}function O(o,u){1&o&&(t.TgZ(0,"mat-error"),t._uU(1," Please enter a valid email address "),t.qZA())}function k(o,u){1&o&&(t.TgZ(0,"mat-error"),t._uU(1," Email is "),t.TgZ(2,"strong"),t._uU(3,"required"),t.qZA()())}const A=".example-form[_ngcontent-%COMP%] {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width[_ngcontent-%COMP%] {\n width: 100%;\n}";let S=(()=>{class o{constructor(){this.value="Clear me"}}return o.\u0275fac=function(c){return new(c||o)},o.\u0275cmp=t.Xpm({type:o,selectors:[["input-clearable-example"]],decls:5,vars:2,consts:[[1,"example-form-field"],["matInput","","type","text",3,"ngModel","ngModelChange"],["matSuffix","","mat-icon-button","","aria-label","Clear",3,"click",4,"ngIf"],["matSuffix","","mat-icon-button","","aria-label","Clear",3,"click"]],template:function(c,b){1&c&&(t.TgZ(0,"mat-form-field",0)(1,"mat-label"),t._uU(2,"Clearable input"),t.qZA(),t.TgZ(3,"input",1),t.NdJ("ngModelChange",function(Z){return b.value=Z}),t.qZA(),t.YNc(4,P,3,0,"button",2),t.qZA()),2&c&&(t.xp6(3),t.Q6J("ngModel",b.value),t.xp6(1),t.Q6J("ngIf",b.value))},dependencies:[e.O5,g.RK,F.Hw,M.Nt,p.KE,p.hX,p.R9,m.Fj,m.JJ,m.On],styles:[".example-form-field[_ngcontent-%COMP%] {\n width: 200px;\n}"]}),o})();class _{isErrorState(u,c){return!!(u&&u.invalid&&(u.dirty||u.touched||c&&c.submitted))}}let x=(()=>{class o{constructor(){this.emailFormControl=new m.NI("",[m.kI.required,m.kI.email]),this.matcher=new _}}return o.\u0275fac=function(c){return new(c||o)},o.\u0275cmp=t.Xpm({type:o,selectors:[["input-error-state-matcher-example"]],decls:9,vars:4,consts:[[1,"example-form"],[1,"example-full-width"],["type","email","matInput","","placeholder","Ex. [email protected]",3,"formControl","errorStateMatcher"],[4,"ngIf"]],template:function(c,b){1&c&&(t.TgZ(0,"form",0)(1,"mat-form-field",1)(2,"mat-label"),t._uU(3,"Email"),t.qZA(),t._UZ(4,"input",2),t.TgZ(5,"mat-hint"),t._uU(6,"Errors appear instantly!"),t.qZA(),t.YNc(7,w,2,0,"mat-error",3),t.YNc(8,T,4,0,"mat-error",3),t.qZA()()),2&c&&(t.xp6(4),t.Q6J("formControl",b.emailFormControl)("errorStateMatcher",b.matcher),t.xp6(3),t.Q6J("ngIf",b.emailFormControl.hasError("email")&&!b.emailFormControl.hasError("required")),t.xp6(1),t.Q6J("ngIf",b.emailFormControl.hasError("required")))},dependencies:[e.O5,M.Nt,p.KE,p.hX,p.bx,p.TO,m._Y,m.Fj,m.JJ,m.JL,m.F,m.oH],styles:[".example-form[_ngcontent-%COMP%] {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width[_ngcontent-%COMP%] {\n width: 100%;\n}"]}),o})(),d=(()=>{class o{constructor(){this.emailFormControl=new m.NI("",[m.kI.required,m.kI.email])}}return o.\u0275fac=function(c){return new(c||o)},o.\u0275cmp=t.Xpm({type:o,selectors:[["input-errors-example"]],decls:7,vars:3,consts:[[1,"example-form"],[1,"example-full-width"],["type","email","matInput","","placeholder","Ex. [email protected]",3,"formControl"],[4,"ngIf"]],template:function(c,b){1&c&&(t.TgZ(0,"form",0)(1,"mat-form-field",1)(2,"mat-label"),t._uU(3,"Email"),t.qZA(),t._UZ(4,"input",2),t.YNc(5,O,2,0,"mat-error",3),t.YNc(6,k,4,0,"mat-error",3),t.qZA()()),2&c&&(t.xp6(4),t.Q6J("formControl",b.emailFormControl),t.xp6(1),t.Q6J("ngIf",b.emailFormControl.hasError("email")&&!b.emailFormControl.hasError("required")),t.xp6(1),t.Q6J("ngIf",b.emailFormControl.hasError("required")))},dependencies:[e.O5,M.Nt,p.KE,p.hX,p.TO,m._Y,m.Fj,m.JJ,m.JL,m.F,m.oH],styles:[A]}),o})(),a=(()=>{class o{}return o.\u0275fac=function(c){return new(c||o)},o.\u0275cmp=t.Xpm({type:o,selectors:[["input-form-example"]],decls:47,vars:1,consts:[[1,"example-form"],[1,"example-full-width"],["matInput","","disabled","","value","Google"],["cellspacing","0",1,"example-full-width"],["matInput",""],["matInput","","placeholder","Ex. 100 Main St"],["matInput","","placeholder","Ex. San Francisco"],["matInput","","placeholder","Ex. California"],["matInput","","maxlength","5","placeholder","Ex. 94105","value","94043"],["postalCode",""],["align","end"]],template:function(c,b){if(1&c&&(t.TgZ(0,"form",0)(1,"mat-form-field",1)(2,"mat-label"),t._uU(3,"Company (disabled)"),t.qZA(),t._UZ(4,"input",2),t.qZA(),t.TgZ(5,"table",3)(6,"tr")(7,"td")(8,"mat-form-field",1)(9,"mat-label"),t._uU(10,"First name"),t.qZA(),t._UZ(11,"input",4),t.qZA()(),t.TgZ(12,"td")(13,"mat-form-field",1)(14,"mat-label"),t._uU(15,"Long Last Name That Will Be Truncated"),t.qZA(),t._UZ(16,"input",4),t.qZA()()()(),t.TgZ(17,"p")(18,"mat-form-field",1)(19,"mat-label"),t._uU(20,"Address"),t.qZA(),t.TgZ(21,"textarea",5),t._uU(22,"1600 Amphitheatre Pkwy"),t.qZA()(),t.TgZ(23,"mat-form-field",1)(24,"mat-label"),t._uU(25,"Address 2"),t.qZA(),t._UZ(26,"textarea",4),t.qZA()(),t.TgZ(27,"table",3)(28,"tr")(29,"td")(30,"mat-form-field",1)(31,"mat-label"),t._uU(32,"City"),t.qZA(),t._UZ(33,"input",6),t.qZA()(),t.TgZ(34,"td")(35,"mat-form-field",1)(36,"mat-label"),t._uU(37,"State"),t.qZA(),t._UZ(38,"input",7),t.qZA()(),t.TgZ(39,"td")(40,"mat-form-field",1)(41,"mat-label"),t._uU(42,"Postal Code"),t.qZA(),t._UZ(43,"input",8,9),t.TgZ(45,"mat-hint",10),t._uU(46),t.qZA()()()()()()),2&c){const I=t.MAs(44);t.xp6(46),t.hij("",I.value.length," / 5")}},dependencies:[M.Nt,p.KE,p.hX,p.bx,m._Y,m.JL,m.F],styles:[".example-form[_ngcontent-%COMP%] {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width[_ngcontent-%COMP%] {\n width: 100%;\n}\n\ntd[_ngcontent-%COMP%] {\n padding-right: 8px;\n}"]}),o})(),r=(()=>{class o{}return o.\u0275fac=function(c){return new(c||o)},o.\u0275cmp=t.Xpm({type:o,selectors:[["input-hint-example"]],decls:11,vars:1,consts:[[1,"example-form"],[1,"example-full-width"],["matInput","","maxlength","256","placeholder","Ex. I need help with..."],["message",""],["align","start"],["align","end"]],template:function(c,b){if(1&c&&(t.TgZ(0,"form",0)(1,"mat-form-field",1)(2,"mat-label"),t._uU(3,"Message"),t.qZA(),t._UZ(4,"input",2,3),t.TgZ(6,"mat-hint",4)(7,"strong"),t._uU(8,"Don't disclose personal info"),t.qZA()(),t.TgZ(9,"mat-hint",5),t._uU(10),t.qZA()()()),2&c){const I=t.MAs(5);t.xp6(10),t.hij("",I.value.length," / 256")}},dependencies:[M.Nt,p.KE,p.hX,p.bx,m._Y,m.JL,m.F],styles:[A]}),o})(),E=(()=>{class o{}return o.\u0275fac=function(c){return new(c||o)},o.\u0275cmp=t.Xpm({type:o,selectors:[["input-overview-example"]],decls:9,vars:0,consts:[[1,"example-form"],[1,"example-full-width"],["matInput","","placeholder","Ex. Pizza","value","Sushi"],["matInput","","placeholder","Ex. It makes me feel..."]],template:function(c,b){1&c&&(t.TgZ(0,"form",0)(1,"mat-form-field",1)(2,"mat-label"),t._uU(3,"Favorite food"),t.qZA(),t._UZ(4,"input",2),t.qZA(),t.TgZ(5,"mat-form-field",1)(6,"mat-label"),t._uU(7,"Leave a comment"),t.qZA(),t._UZ(8,"textarea",3),t.qZA()())},dependencies:[M.Nt,p.KE,p.hX,m._Y,m.JL,m.F],styles:[A]}),o})(),y=(()=>{class o{}return o.\u0275fac=function(c){return new(c||o)},o.\u0275cmp=t.Xpm({type:o,selectors:[["input-prefix-suffix-example"]],decls:9,vars:0,consts:[[1,"example-form"],[1,"example-full-width"],["matPrefix",""],["type","tel","matInput","","placeholder","555-555-1234"],["matSuffix",""]],template:function(c,b){1&c&&(t.TgZ(0,"form",0)(1,"mat-form-field",1)(2,"mat-label"),t._uU(3,"Telephone"),t.qZA(),t.TgZ(4,"span",2),t._uU(5,"+1 \xa0"),t.qZA(),t._UZ(6,"input",3),t.TgZ(7,"mat-icon",4),t._uU(8,"mode_edit"),t.qZA()()())},dependencies:[F.Hw,M.Nt,p.KE,p.hX,p.qo,p.R9,m._Y,m.JL,m.F],styles:[A]}),o})(),C=(()=>{class o{constructor(){this.inputType="number",this.disabled=!1}}return o.\u0275fac=function(c){return new(c||o)},o.\u0275cmp=t.Xpm({type:o,selectors:[["input-harness-example"]],decls:10,vars:2,consts:[["matInput","","value","Sushi","name","favorite-food"],["matInput","",3,"type","disabled"],["matInput",""]],template:function(c,b){1&c&&(t.TgZ(0,"mat-form-field")(1,"mat-label"),t._uU(2,"Favorite food"),t.qZA(),t._UZ(3,"input",0),t.qZA(),t.TgZ(4,"mat-form-field"),t._UZ(5,"input",1),t.qZA(),t.TgZ(6,"mat-form-field")(7,"mat-label"),t._uU(8,"Leave a comment"),t.qZA(),t._UZ(9,"textarea",2),t.qZA()),2&c&&(t.xp6(5),t.Q6J("type",b.inputType)("disabled",b.disabled))},dependencies:[M.Nt,p.KE,p.hX],encapsulation:2}),o})(),N=(()=>{class o{}return o.\u0275fac=function(c){return new(c||o)},o.\u0275mod=t.oAB({type:o}),o.\u0275inj=t.cJS({imports:[e.ez,g.ot,F.Ps,M.c,m.u5,m.UX]}),o})()},9549:(z,R,f)=>{f.d(R,{Eo:()=>$,G_:()=>ee,KE:()=>be,R9:()=>ue,TO:()=>ce,bx:()=>q,hX:()=>Y,lN:()=>ve,qo:()=>fe});var e=f(4650),t=f(445),m=f(3353),g=f(8929),F=f(6787),M=f(7625),p=f(6895),P=f(1281),w=f(7340),T=f(9643),O=f(3238);const k=["matFormFieldNotchedOutline",""],A=["*"],S=["textField"],_=["iconPrefixContainer"],x=["textPrefixContainer"];function d(n,s){1&n&&e._UZ(0,"span",19)}function a(n,s){if(1&n){const i=e.EpF();e.TgZ(0,"label",17),e.NdJ("cdkObserveContent",function(){e.CHM(i);const h=e.oxw(2);return e.KtG(h._refreshOutlineNotchWidth())}),e.Hsn(1,1),e.YNc(2,d,1,0,"span",18),e.qZA()}if(2&n){const i=e.oxw(2);e.Q6J("floating",i._shouldLabelFloat())("cdkObserveContentDisabled",!i._hasOutline())("id",i._labelId),e.uIk("for",i._control.id)("aria-owns",i._control.id),e.xp6(2),e.Q6J("ngIf",!i.hideRequiredMarker&&i._control.required)}}function r(n,s){if(1&n&&e.YNc(0,a,3,6,"label",16),2&n){const i=e.oxw();e.Q6J("ngIf",i._hasFloatingLabel())}}function E(n,s){1&n&&e._UZ(0,"div",20)}function y(n,s){}function C(n,s){if(1&n&&e.YNc(0,y,0,0,"ng-template",22),2&n){e.oxw(2);const i=e.MAs(1);e.Q6J("ngTemplateOutlet",i)}}function D(n,s){if(1&n&&(e.TgZ(0,"div",21),e.YNc(1,C,1,1,"ng-template",9),e.qZA()),2&n){const i=e.oxw();e.Q6J("matFormFieldNotchedOutlineOpen",i._shouldLabelFloat())("matFormFieldNotchedOutlineLabelWidth",i._labelWidth),e.xp6(1),e.Q6J("ngIf",!i._forceDisplayInfixLabel())}}function N(n,s){1&n&&(e.TgZ(0,"div",23,24),e.Hsn(2,2),e.qZA())}function o(n,s){1&n&&(e.TgZ(0,"div",25,26),e.Hsn(2,3),e.qZA())}function u(n,s){}function c(n,s){if(1&n&&e.YNc(0,u,0,0,"ng-template",22),2&n){e.oxw();const i=e.MAs(1);e.Q6J("ngTemplateOutlet",i)}}function b(n,s){1&n&&(e.TgZ(0,"div",27),e.Hsn(1,4),e.qZA())}function I(n,s){1&n&&(e.TgZ(0,"div",28),e.Hsn(1,5),e.qZA())}function Z(n,s){1&n&&e._UZ(0,"div",29)}function H(n,s){if(1&n&&(e.TgZ(0,"div",30),e.Hsn(1,6),e.qZA()),2&n){const i=e.oxw();e.Q6J("@transitionMessages",i._subscriptAnimationState)}}function ae(n,s){if(1&n&&(e.TgZ(0,"mat-hint",34),e._uU(1),e.qZA()),2&n){const i=e.oxw(2);e.Q6J("id",i._hintLabelId),e.xp6(1),e.Oqu(i.hintLabel)}}function de(n,s){if(1&n&&(e.TgZ(0,"div",31),e.YNc(1,ae,2,2,"mat-hint",32),e.Hsn(2,7),e._UZ(3,"div",33),e.Hsn(4,8),e.qZA()),2&n){const i=e.oxw();e.Q6J("@transitionMessages",i._subscriptAnimationState),e.xp6(1),e.Q6J("ngIf",i.hintLabel)}}const oe=["*",[["mat-label"]],[["","matPrefix",""],["","matIconPrefix",""]],[["","matTextPrefix",""]],[["","matTextSuffix",""]],[["","matSuffix",""],["","matIconSuffix",""]],[["mat-error"],["","matError",""]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],re=["*","mat-label","[matPrefix], [matIconPrefix]","[matTextPrefix]","[matTextSuffix]","[matSuffix], [matIconSuffix]","mat-error, [matError]","mat-hint:not([align='end'])","mat-hint[align='end']"];let Y=(()=>{class n{}return n.\u0275fac=function(i){return new(i||n)},n.\u0275dir=e.lG2({type:n,selectors:[["mat-label"]]}),n})(),se=0;const X=new e.OlP("MatError");let ce=(()=>{class n{constructor(i,l){this.id="mat-mdc-error-"+se++,i||l.nativeElement.setAttribute("aria-live","polite")}}return n.\u0275fac=function(i){return new(i||n)(e.$8M("aria-live"),e.Y36(e.SBq))},n.\u0275dir=e.lG2({type:n,selectors:[["mat-error"],["","matError",""]],hostAttrs:["aria-atomic","true",1,"mat-mdc-form-field-error","mat-mdc-form-field-bottom-align"],hostVars:1,hostBindings:function(i,l){2&i&&e.Ikx("id",l.id)},inputs:{id:"id"},features:[e._Bn([{provide:X,useExisting:n}])]}),n})(),me=0,q=(()=>{class n{constructor(){this.align="start",this.id="mat-mdc-hint-"+me++}}return n.\u0275fac=function(i){return new(i||n)},n.\u0275dir=e.lG2({type:n,selectors:[["mat-hint"]],hostAttrs:[1,"mat-mdc-form-field-hint","mat-mdc-form-field-bottom-align"],hostVars:4,hostBindings:function(i,l){2&i&&(e.Ikx("id",l.id),e.uIk("align",null),e.ekj("mat-mdc-form-field-hint-end","end"===l.align))},inputs:{align:"align",id:"id"}}),n})();const K=new e.OlP("MatPrefix");let fe=(()=>{class n{constructor(i){this._isText=!1,this._isText=i.nativeElement.hasAttribute("matTextPrefix")}}return n.\u0275fac=function(i){return new(i||n)(e.Y36(e.SBq))},n.\u0275dir=e.lG2({type:n,selectors:[["","matPrefix",""],["","matIconPrefix",""],["","matTextPrefix",""]],features:[e._Bn([{provide:K,useExisting:n}])]}),n})();const J=new e.OlP("MatSuffix");let ue=(()=>{class n{constructor(i){this._isText=!1,this._isText=i.nativeElement.hasAttribute("matTextSuffix")}}return n.\u0275fac=function(i){return new(i||n)(e.Y36(e.SBq))},n.\u0275dir=e.lG2({type:n,selectors:[["","matSuffix",""],["","matIconSuffix",""],["","matTextSuffix",""]],features:[e._Bn([{provide:J,useExisting:n}])]}),n})(),Q=(()=>{class n{constructor(i){this._elementRef=i,this.floating=!1}getWidth(){return function pe(n){if(null!==n.offsetParent)return n.scrollWidth;const i=n.cloneNode(!0);i.style.setProperty("position","absolute"),i.style.setProperty("transform","translate(-9999px, -9999px)"),document.documentElement.appendChild(i);const l=i.scrollWidth;return i.remove(),l}(this._elementRef.nativeElement)}get element(){return this._elementRef.nativeElement}}return n.\u0275fac=function(i){return new(i||n)(e.Y36(e.SBq))},n.\u0275dir=e.lG2({type:n,selectors:[["label","matFormFieldFloatingLabel",""]],hostAttrs:[1,"mdc-floating-label","mat-mdc-floating-label"],hostVars:2,hostBindings:function(i,l){2&i&&e.ekj("mdc-floating-label--float-above",l.floating)},inputs:{floating:"floating"}}),n})();const G="mdc-line-ripple--active",B="mdc-line-ripple--deactivating";let j=(()=>{class n{constructor(i,l){this._elementRef=i,this._handleTransitionEnd=h=>{const v=this._elementRef.nativeElement.classList,U=v.contains(B);"opacity"===h.propertyName&&U&&v.remove(G,B)},l.runOutsideAngular(()=>{i.nativeElement.addEventListener("transitionend",this._handleTransitionEnd)})}activate(){const i=this._elementRef.nativeElement.classList;i.remove(B),i.add(G)}deactivate(){this._elementRef.nativeElement.classList.add(B)}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._handleTransitionEnd)}}return n.\u0275fac=function(i){return new(i||n)(e.Y36(e.SBq),e.Y36(e.R0b))},n.\u0275dir=e.lG2({type:n,selectors:[["div","matFormFieldLineRipple",""]],hostAttrs:[1,"mdc-line-ripple"]}),n})(),V=(()=>{class n{constructor(i,l){this._elementRef=i,this._ngZone=l,this.labelWidth=0,this.open=!1}ngAfterViewInit(){const i=this._elementRef.nativeElement.querySelector(".mdc-floating-label");i?(this._elementRef.nativeElement.classList.add("mdc-notched-outline--upgraded"),"function"==typeof requestAnimationFrame&&(i.style.transitionDuration="0s",this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>i.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 n.\u0275fac=function(i){return new(i||n)(e.Y36(e.SBq),e.Y36(e.R0b))},n.\u0275cmp=e.Xpm({type:n,selectors:[["div","matFormFieldNotchedOutline",""]],hostAttrs:[1,"mdc-notched-outline"],hostVars:2,hostBindings:function(i,l){2&i&&e.ekj("mdc-notched-outline--notched",l.open)},inputs:{labelWidth:["matFormFieldNotchedOutlineLabelWidth","labelWidth"],open:["matFormFieldNotchedOutlineOpen","open"]},attrs:k,ngContentSelectors:A,decls:4,vars:2,consts:[[1,"mdc-notched-outline__leading"],[1,"mdc-notched-outline__notch"],[1,"mdc-notched-outline__trailing"]],template:function(i,l){1&i&&(e.F$t(),e._UZ(0,"div",0),e.TgZ(1,"div",1),e.Hsn(2),e.qZA(),e._UZ(3,"div",2)),2&i&&(e.xp6(1),e.Udp("width",l._getNotchWidth()))},encapsulation:2,changeDetection:0}),n})();const he={transitionMessages:(0,w.X$)("transitionMessages",[(0,w.SB)("enter",(0,w.oB)({opacity:1,transform:"translateY(0%)"})),(0,w.eR)("void => enter",[(0,w.oB)({opacity:0,transform:"translateY(-5px)"}),(0,w.jt)("300ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let $=(()=>{class n{}return n.\u0275fac=function(i){return new(i||n)},n.\u0275dir=e.lG2({type:n}),n})();const ee=new e.OlP("MatFormField"),_e=new e.OlP("MAT_FORM_FIELD_DEFAULT_OPTIONS");let te=0,be=(()=>{class n{constructor(i,l,h,v,U,L,W,le){this._elementRef=i,this._changeDetectorRef=l,this._ngZone=h,this._dir=v,this._platform=U,this._defaults=L,this._animationMode=W,this._document=le,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-"+te++,this._hintLabelId="mat-mdc-hint-"+te++,this._subscriptAnimationState="",this._labelWidth=0,this._destroyed=new g.xQ,this._isFocused=null,this._needsOutlineLabelOffsetUpdateOnStable=!1,L&&(L.appearance&&(this.appearance=L.appearance),this._hideRequiredMarker=Boolean(L?.hideRequiredMarker),L.color&&(this.color=L.color))}get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(i){this._hideRequiredMarker=(0,P.Ig)(i)}get floatLabel(){return this._floatLabel||this._defaults?.floatLabel||"auto"}set floatLabel(i){i!==this._floatLabel&&(this._floatLabel=i,this._changeDetectorRef.markForCheck())}get appearance(){return this._appearance}set appearance(i){const l=this._appearance;this._appearance=i||this._defaults?.appearance||"fill","outline"===this._appearance&&this._appearance!==l&&(this._refreshOutlineNotchWidth(),this._needsOutlineLabelOffsetUpdateOnStable=!0)}get subscriptSizing(){return this._subscriptSizing||this._defaults?.subscriptSizing||"fixed"}set subscriptSizing(i){this._subscriptSizing=i||this._defaults?.subscriptSizing||"fixed"}get hintLabel(){return this._hintLabel}set hintLabel(i){this._hintLabel=i,this._processHints()}get _control(){return this._explicitFormFieldControl||this._formFieldControl}set _control(i){this._explicitFormFieldControl=i}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 i=this._control;i.controlType&&this._elementRef.nativeElement.classList.add(`mat-mdc-form-field-type-${i.controlType}`),i.stateChanges.subscribe(()=>{this._updateFocusState(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),i.ngControl&&i.ngControl.valueChanges&&i.ngControl.valueChanges.pipe((0,M.R)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck())}_checkPrefixAndSuffixTypes(){this._hasIconPrefix=!!this._prefixChildren.find(i=>!i._isText),this._hasTextPrefix=!!this._prefixChildren.find(i=>i._isText),this._hasIconSuffix=!!this._suffixChildren.find(i=>!i._isText),this._hasTextSuffix=!!this._suffixChildren.find(i=>i._isText)}_initializePrefixAndSuffix(){this._checkPrefixAndSuffixTypes(),(0,F.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,M.R)(this._destroyed)).subscribe(()=>{this._needsOutlineLabelOffsetUpdateOnStable&&(this._needsOutlineLabelOffsetUpdateOnStable=!1,this._updateOutlineLabelOffset())})}),this._dir.change.pipe((0,M.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(i){const l=this._control?this._control.ngControl:null;return l&&l[i]}_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 i=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&i.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getDisplayedMessages()){const l=this._hintChildren?this._hintChildren.find(v=>"start"===v.align):null,h=this._hintChildren?this._hintChildren.find(v=>"end"===v.align):null;l?i.push(l.id):this._hintLabel&&i.push(this._hintLabelId),h&&i.push(h.id)}else this._errorChildren&&i.push(...this._errorChildren.map(l=>l.id));this._control.setDescribedByIds(i)}}_updateOutlineLabelOffset(){if(!this._platform.isBrowser||!this._hasOutline()||!this._floatingLabel)return;const i=this._floatingLabel.element;if(!this._iconPrefixContainer&&!this._textPrefixContainer)return void(i.style.transform="");if(!this._isAttachedToDom())return void(this._needsOutlineLabelOffsetUpdateOnStable=!0);const l=this._iconPrefixContainer?.nativeElement,h=this._textPrefixContainer?.nativeElement,v=l?.getBoundingClientRect().width??0,U=h?.getBoundingClientRect().width??0;i.style.transform=`var(\n --mat-mdc-form-field-label-transform,\n translateY(-50%) translateX(calc(${"rtl"===this._dir.value?"-1":"1"} * (${v+U}px + var(--mat-mdc-form-field-label-offset-x, 0px))))\n )`}_isAttachedToDom(){const i=this._elementRef.nativeElement;if(i.getRootNode){const l=i.getRootNode();return l&&l!==i}return document.documentElement.contains(i)}}return n.\u0275fac=function(i){return new(i||n)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(e.R0b),e.Y36(t.Is),e.Y36(m.t4),e.Y36(_e,8),e.Y36(e.QbO,8),e.Y36(p.K0))},n.\u0275cmp=e.Xpm({type:n,selectors:[["mat-form-field"]],contentQueries:function(i,l,h){if(1&i&&(e.Suo(h,Y,5),e.Suo(h,Y,7),e.Suo(h,$,5),e.Suo(h,K,5),e.Suo(h,J,5),e.Suo(h,X,5),e.Suo(h,q,5)),2&i){let v;e.iGM(v=e.CRH())&&(l._labelChildNonStatic=v.first),e.iGM(v=e.CRH())&&(l._labelChildStatic=v.first),e.iGM(v=e.CRH())&&(l._formFieldControl=v.first),e.iGM(v=e.CRH())&&(l._prefixChildren=v),e.iGM(v=e.CRH())&&(l._suffixChildren=v),e.iGM(v=e.CRH())&&(l._errorChildren=v),e.iGM(v=e.CRH())&&(l._hintChildren=v)}},viewQuery:function(i,l){if(1&i&&(e.Gf(S,5),e.Gf(_,5),e.Gf(x,5),e.Gf(Q,5),e.Gf(V,5),e.Gf(j,5)),2&i){let h;e.iGM(h=e.CRH())&&(l._textField=h.first),e.iGM(h=e.CRH())&&(l._iconPrefixContainer=h.first),e.iGM(h=e.CRH())&&(l._textPrefixContainer=h.first),e.iGM(h=e.CRH())&&(l._floatingLabel=h.first),e.iGM(h=e.CRH())&&(l._notchedOutline=h.first),e.iGM(h=e.CRH())&&(l._lineRipple=h.first)}},hostAttrs:[1,"mat-mdc-form-field"],hostVars:42,hostBindings:function(i,l){2&i&&e.ekj("mat-mdc-form-field-label-always-float",l._shouldAlwaysFloat())("mat-mdc-form-field-has-icon-prefix",l._hasIconPrefix)("mat-mdc-form-field-has-icon-suffix",l._hasIconSuffix)("mat-form-field-invalid",l._control.errorState)("mat-form-field-disabled",l._control.disabled)("mat-form-field-autofilled",l._control.autofilled)("mat-form-field-no-animations","NoopAnimations"===l._animationMode)("mat-form-field-appearance-fill","fill"==l.appearance)("mat-form-field-appearance-outline","outline"==l.appearance)("mat-form-field-hide-placeholder",l._hasFloatingLabel()&&!l._shouldLabelFloat())("mat-focused",l._control.focused)("mat-primary","accent"!==l.color&&"warn"!==l.color)("mat-accent","accent"===l.color)("mat-warn","warn"===l.color)("ng-untouched",l._shouldForward("untouched"))("ng-touched",l._shouldForward("touched"))("ng-pristine",l._shouldForward("pristine"))("ng-dirty",l._shouldForward("dirty"))("ng-valid",l._shouldForward("valid"))("ng-invalid",l._shouldForward("invalid"))("ng-pending",l._shouldForward("pending"))},inputs:{hideRequiredMarker:"hideRequiredMarker",color:"color",floatLabel:"floatLabel",appearance:"appearance",subscriptSizing:"subscriptSizing",hintLabel:"hintLabel"},exportAs:["matFormField"],features:[e._Bn([{provide:ee,useExisting:n}])],ngContentSelectors:re,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(i,l){1&i&&(e.F$t(oe),e.YNc(0,r,1,1,"ng-template",null,0,e.W1O),e.TgZ(2,"div",1,2),e.NdJ("click",function(v){return l._control.onContainerClick&&l._control.onContainerClick(v)}),e.YNc(4,E,1,0,"div",3),e.TgZ(5,"div",4),e.YNc(6,D,2,3,"div",5),e.YNc(7,N,3,0,"div",6),e.YNc(8,o,3,0,"div",7),e.TgZ(9,"div",8),e.YNc(10,c,1,1,"ng-template",9),e.Hsn(11),e.qZA(),e.YNc(12,b,2,0,"div",10),e.YNc(13,I,2,0,"div",11),e.qZA(),e.YNc(14,Z,1,0,"div",12),e.qZA(),e.TgZ(15,"div",13),e.YNc(16,H,2,1,"div",14),e.YNc(17,de,5,2,"div",15),e.qZA()),2&i&&(e.xp6(2),e.ekj("mdc-text-field--filled",!l._hasOutline())("mdc-text-field--outlined",l._hasOutline())("mdc-text-field--no-label",!l._hasFloatingLabel())("mdc-text-field--disabled",l._control.disabled)("mdc-text-field--invalid",l._control.errorState),e.xp6(2),e.Q6J("ngIf",!l._hasOutline()&&!l._control.disabled),e.xp6(2),e.Q6J("ngIf",l._hasOutline()),e.xp6(1),e.Q6J("ngIf",l._hasIconPrefix),e.xp6(1),e.Q6J("ngIf",l._hasTextPrefix),e.xp6(2),e.Q6J("ngIf",!l._hasOutline()||l._forceDisplayInfixLabel()),e.xp6(2),e.Q6J("ngIf",l._hasTextSuffix),e.xp6(1),e.Q6J("ngIf",l._hasIconSuffix),e.xp6(1),e.Q6J("ngIf",!l._hasOutline()),e.xp6(1),e.ekj("mat-mdc-form-field-subscript-dynamic-size","dynamic"===l.subscriptSizing),e.Q6J("ngSwitch",l._getDisplayedMessages()),e.xp6(1),e.Q6J("ngSwitchCase","error"),e.xp6(1),e.Q6J("ngSwitchCase","hint"))},dependencies:[p.O5,p.tP,p.RF,p.n9,T.wD,q,Q,V,j],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:[he.transitionMessages]},changeDetection:0}),n})(),ve=(()=>{class n{}return n.\u0275fac=function(i){return new(i||n)},n.\u0275mod=e.oAB({type:n}),n.\u0275inj=e.cJS({imports:[O.BQ,p.ez,T.Q8,O.BQ]}),n})()},284:(z,R,f)=>{f.d(R,{Jk:()=>T,Nt:()=>S,c:()=>_});var e=f(1281),t=f(3353),m=f(9349),g=f(4650),F=f(4006),M=f(3238),p=f(9549),P=f(8929);const T=new g.OlP("MAT_INPUT_VALUE_ACCESSOR"),O=["button","checkbox","file","hidden","image","radio","range","reset","submit"];let k=0;const A=(0,M.FD)(class{constructor(x,d,a,r){this._defaultErrorStateMatcher=x,this._parentForm=d,this._parentFormGroup=a,this.ngControl=r,this.stateChanges=new P.xQ}});let S=(()=>{class x extends A{constructor(a,r,E,y,C,D,N,o,u,c){super(D,y,C,E),this._elementRef=a,this._platform=r,this._autofillMonitor=o,this._formField=c,this._uid="mat-input-"+k++,this.focused=!1,this.stateChanges=new P.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(Z=>(0,t.qK)().has(Z)),this._iOSKeyupListener=Z=>{const H=Z.target;!H.value&&0===H.selectionStart&&0===H.selectionEnd&&(H.setSelectionRange(1,1),H.setSelectionRange(0,0))};const b=this._elementRef.nativeElement,I=b.nodeName.toLowerCase();this._inputValueAccessor=N||b,this._previousNativeValue=this.value,this.id=this.id,r.IOS&&u.runOutsideAngular(()=>{a.nativeElement.addEventListener("keyup",this._iOSKeyupListener)}),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===I,this._isTextarea="textarea"===I,this._isInFormField=!!c,this._isNativeSelect&&(this.controlType=b.multiple?"mat-native-select-multiple":"mat-native-select")}get disabled(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled}set disabled(a){this._disabled=(0,e.Ig)(a),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(a){this._id=a||this._uid}get required(){return this._required??this.ngControl?.control?.hasValidator(F.kI.required)??!1}set required(a){this._required=(0,e.Ig)(a)}get type(){return this._type}set type(a){this._type=a||"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(a){a!==this.value&&(this._inputValueAccessor.value=a,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(a){this._readonly=(0,e.Ig)(a)}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(a=>{this.autofilled=a.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(a){this._elementRef.nativeElement.focus(a)}_focusChanged(a){a!==this.focused&&(this.focused=a,this.stateChanges.next())}_onInput(){}_dirtyCheckNativeValue(){const a=this._elementRef.nativeElement.value;this._previousNativeValue!==a&&(this._previousNativeValue=a,this.stateChanges.next())}_dirtyCheckPlaceholder(){const a=this._getPlaceholder();if(a!==this._previousPlaceholder){const r=this._elementRef.nativeElement;this._previousPlaceholder=a,a?r.setAttribute("placeholder",a):r.removeAttribute("placeholder")}}_getPlaceholder(){return this.placeholder||null}_validateType(){O.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let a=this._elementRef.nativeElement.validity;return a&&a.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const a=this._elementRef.nativeElement,r=a.options[0];return this.focused||a.multiple||!this.empty||!!(a.selectedIndex>-1&&r&&r.label)}return this.focused||!this.empty}setDescribedByIds(a){a.length?this._elementRef.nativeElement.setAttribute("aria-describedby",a.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const a=this._elementRef.nativeElement;return this._isNativeSelect&&(a.multiple||a.size>1)}}return x.\u0275fac=function(a){return new(a||x)(g.Y36(g.SBq),g.Y36(t.t4),g.Y36(F.a5,10),g.Y36(F.F,8),g.Y36(F.sg,8),g.Y36(M.rD),g.Y36(T,10),g.Y36(m.Lq),g.Y36(g.R0b),g.Y36(p.G_,8))},x.\u0275dir=g.lG2({type:x,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-mdc-input-element"],hostVars:18,hostBindings:function(a,r){1&a&&g.NdJ("focus",function(){return r._focusChanged(!0)})("blur",function(){return r._focusChanged(!1)})("input",function(){return r._onInput()}),2&a&&(g.Ikx("id",r.id)("disabled",r.disabled)("required",r.required),g.uIk("name",r.name||null)("readonly",r.readonly&&!r._isNativeSelect||null)("aria-invalid",r.empty&&r.required?null:r.errorState)("aria-required",r.required)("id",r.id),g.ekj("mat-input-server",r._isServer)("mat-mdc-form-field-textarea-control",r._isInFormField&&r._isTextarea)("mat-mdc-form-field-input-control",r._isInFormField)("mdc-text-field__input",r._isInFormField)("mat-mdc-native-select-inline",r._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:[g._Bn([{provide:p.Eo,useExisting:x}]),g.qOj,g.TTD]}),x})(),_=(()=>{class x{}return x.\u0275fac=function(a){return new(a||x)},x.\u0275mod=g.oAB({type:x}),x.\u0275inj=g.cJS({imports:[M.BQ,p.lN,p.lN,m.Ky,M.BQ]}),x})()}}]);