@lowcodeunit/applications-flow-common 1.34.64-krakyn-app → 1.34.66-lets-get-social-ish

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/esm2020/lcu.api.mjs +3 -1
  2. package/esm2020/lib/applications-flow.module.mjs +14 -4
  3. package/esm2020/lib/controls/dfs-modifiers-form/dfs-modifiers-form.component.mjs +4 -2
  4. package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +3 -3
  5. package/esm2020/lib/controls/security-toggle/security-toggle.component.mjs +2 -2
  6. package/esm2020/lib/controls/state-config-form/state-config-form.component.mjs +43 -0
  7. package/esm2020/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.mjs +9 -9
  8. package/esm2020/lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component.mjs +11 -3
  9. package/esm2020/lib/dialogs/feed-header-dialog/feed-header-dialog.component.mjs +29 -17
  10. package/esm2020/lib/dialogs/source-control-dialog/source-control-dialog.component.mjs +12 -12
  11. package/esm2020/lib/dialogs/state-config-dialog/state-config-dialog.component.mjs +47 -0
  12. package/esm2020/lib/elements/feed-card-sm/feed-card-sm.component.mjs +2 -2
  13. package/esm2020/lib/elements/feed-header/feed-header.component.mjs +2 -2
  14. package/esm2020/lib/elements/main-feed-card/main-feed-card.component.mjs +5 -6
  15. package/esm2020/lib/elements/project-info-card/project-info-card.component.mjs +2 -2
  16. package/esm2020/lib/elements/projects/controls/project-items/project-items.component.mjs +4 -2
  17. package/esm2020/lib/elements/projects/controls/tabs/devops/devops.component.mjs +4 -6
  18. package/esm2020/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.mjs +4 -2
  19. package/esm2020/lib/elements/skeleton-feed-card/skeleton-feed-card.component.mjs +2 -2
  20. package/esm2020/lib/services/applications-flow.service.mjs +22 -2
  21. package/esm2020/lib/services/eac.service.mjs +19 -58
  22. package/esm2020/lib/services/project.service.mjs +81 -1
  23. package/fesm2015/lowcodeunit-applications-flow-common.mjs +281 -118
  24. package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
  25. package/fesm2020/lowcodeunit-applications-flow-common.mjs +277 -116
  26. package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
  27. package/lcu.api.d.ts +2 -0
  28. package/lib/applications-flow.module.d.ts +12 -10
  29. package/lib/controls/state-config-form/state-config-form.component.d.ts +18 -0
  30. package/lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component.d.ts +1 -0
  31. package/lib/dialogs/feed-header-dialog/feed-header-dialog.component.d.ts +4 -1
  32. package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts +1 -2
  33. package/lib/dialogs/state-config-dialog/state-config-dialog.component.d.ts +29 -0
  34. package/lib/elements/main-feed-card/main-feed-card.component.d.ts +1 -1
  35. package/lib/services/applications-flow.service.d.ts +4 -0
  36. package/lib/services/eac.service.d.ts +6 -5
  37. package/lib/services/project.service.d.ts +4 -0
  38. package/package.json +1 -1
@@ -79,21 +79,20 @@ export class MainFeedCardComponent {
79
79
  }
80
80
  else if (action.ActionType == 'Modal') {
81
81
  if (action.Action == 'AddSourceControl') {
82
- this.OpenSourceControlDialog(null, null);
82
+ this.OpenSourceControlDialog(null);
83
83
  }
84
84
  else {
85
85
  alert('other modaled ' + action.Action);
86
86
  }
87
87
  }
88
88
  }
89
- OpenSourceControlDialog(scLookup, scName) {
89
+ OpenSourceControlDialog(scLookup) {
90
90
  const dialogRef = this.dialog.open(SourceControlDialogComponent, {
91
91
  width: '550px',
92
92
  data: {
93
93
  environment: this.Environment,
94
94
  environmentLookup: this.ActiveEnvironmentLookup,
95
95
  scLookup: scLookup,
96
- scName: scName,
97
96
  },
98
97
  });
99
98
  dialogRef.afterClosed().subscribe((result) => {
@@ -124,12 +123,12 @@ export class MainFeedCardComponent {
124
123
  }
125
124
  }
126
125
  MainFeedCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: MainFeedCardComponent, deps: [{ token: i1.EaCService }, { token: i2.MatDialog }, { token: i3.DomSanitizer }], target: i0.ɵɵFactoryTarget.Component });
127
- MainFeedCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: MainFeedCardComponent, selector: "lcu-main-feed-card", inputs: { FeedItem: ["feed-item", "FeedItem"] }, ngImport: i0, template: "<mat-card class=\"social-card\">\n <mat-card-header>\n <img\n mat-card-avatar\n class=\"example-header-image\"\n [src]=\"FeedItem.Avatar\"\n *ngIf=\"FeedItem.Avatar\"\n />\n\n <mat-card-title *ngIf=\"FeedItem.Title\">{{ FeedItem.Title }}</mat-card-title>\n\n <mat-card-subtitle>\n <div *ngIf=\"FeedItem.Subtitle\">{{ FeedItem.Subtitle }}</div>\n\n <div *ngIf=\"FeedItem.Subtext\">{{ FeedItem.Subtext }}</div>\n\n <div *ngIf=\"FeedItem.Status\">\n <mat-icon\n *ngIf=\"Icon\"\n [style.color]=\"IconColor\"\n [class.spin]=\"FeedItem.Status?.Code == 2\"\n >\n {{ Icon }}\n </mat-icon>\n\n <span *ngIf=\"FeedItem.Timestamp\">\n {{ CalculateTimelapse(FeedItem.Timestamp) }}\n </span>\n </div>\n </mat-card-subtitle>\n </mat-card-header>\n\n <div *ngIf=\"!FeedItem.IsShortForm\">\n <div class=\"feed-card-container\">\n <div class=\"feed-card-main-content\">\n <mat-tab-group>\n <ng-container *ngFor=\"let tab of FeedItem.Tabs\">\n <mat-tab [label]=\"tab.Title\">\n <div class=\"tab\">\n <ng-container *ngIf=\"tab.Data?.Commit?.Message\">\n <div class=\"commit-message\">\n {{ tab.Data?.Commit?.Message }}\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"tab.Data?.Content\">\n <div class=\"content\">\n {{ tab.Data?.Content }}\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"tab.Data?.Video\">\n <div\n class=\"video\"\n [innerHTML]=\"SafeHtml(tab.Data.Video)\"\n ></div>\n </ng-container>\n\n <ng-container *ngIf=\"tab.Data?.Comments\">\n <div class=\"comments\">\n <ng-container *ngIf=\"tab.Data?.Comments?.length <= 0\">\n <h4>No comments provided</h4>\n </ng-container>\n\n <mat-card *ngFor=\"let comment of tab.Data?.Comments\">\n <mat-card-header>\n <img\n mat-card-avatar\n class=\"example-header-image\"\n [src]=\"comment.Avatar\"\n *ngIf=\"comment.Avatar\"\n />\n\n <mat-card-title>\n {{ comment.Author }}\n commented on\n {{ comment.UpdatedAt }}\n </mat-card-title>\n </mat-card-header>\n\n <mat-card-content>\n {{ comment.Comment }}\n </mat-card-content>\n </mat-card>\n </div>\n </ng-container>\n </div>\n </mat-tab>\n </ng-container>\n </mat-tab-group>\n </div>\n </div>\n </div>\n\n <mat-card-actions fxLayout=\"row\" fxLayoutAlign=\"space-around center\">\n <div fxFlex></div>\n\n <ng-container *ngFor=\"let action of FeedItem.Actions\">\n <button mat-button [color]=\"action.Color\" (click)=\"HandleAction(action)\">\n <mat-icon *ngIf=\"action.Icon\">{{ action.Icon }}</mat-icon>\n\n {{ action.Text }}\n </button>\n </ng-container>\n </mat-card-actions>\n</mat-card>\n", styles: [":host{@import url(https://fonts.googleapis.com/icon?family=Material+Icons);@import url(https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:400,900&display=swap);@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap);@import url(https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:400,900&display=swap);@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap);}:host .disable-autofill-background-default input:-webkit-autofill,:host .disable-autofill-background-default input:-webkit-autofill:hover,:host .disable-autofill-background-default input:-webkit-autofill:focus,:host .disable-autofill-background-default textarea:-webkit-autofill,:host .disable-autofill-background-default textarea:-webkit-autofill:hover,:host .disable-autofill-background-default textarea:-webkit-autofill:focus,:host .disable-autofill-background-default select:-webkit-autofill,:host .disable-autofill-background-default select:-webkit-autofill:hover,:host .disable-autofill-background-default select:-webkit-autofill:focus{-webkit-transition:background-color 5000s!important;transition:background-color 5000s!important}:host .list-item-disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed!important}:host .filler{flex:1 1 auto;display:inline-block!important}:host .sticky{position:sticky;z-index:750;top:0}:host .inline{display:inline-block}:host .contents{display:contents}:host .page-element{display:contents}:host .mat-spinner{margin:auto}:host .mat-full-width{width:100%}:host .spread{margin:2rem}:host .spread-thin{margin:1rem}:host .overlay{position:sticky!important}:host .overlay.top{top:0}:host .overlay.bottom{bottom:0}:host .margin-0{margin:0!important}:host .margin-top-0,:host .margin-y-0{margin-top:0!important}:host .margin-right-0,:host .margin-x-0{margin-right:0!important}:host .margin-bottom-0,:host .margin-y-0{margin-bottom:0!important}:host .margin-left-0,:host .margin-x-0{margin-left:0!important}:host .margin-1{margin:.25rem!important}:host .margin-top-1,:host .margin-y-1{margin-top:.25rem!important}:host .margin-right-1,:host .margin-x-1{margin-right:.25rem!important}:host .margin-bottom-1,:host .margin-y-1{margin-bottom:.25rem!important}:host .margin-left-1,:host .margin-x-1{margin-left:.25rem!important}:host .margin-2{margin:.5rem!important}:host .margin-top-2,:host .margin-y-2{margin-top:.5rem!important}:host .margin-right-2,:host .margin-x-2{margin-right:.5rem!important}:host .margin-bottom-2,:host .margin-y-2{margin-bottom:.5rem!important}:host .margin-left-2,:host .margin-x-2{margin-left:.5rem!important}:host .margin-3{margin:1rem!important}:host .margin-top-3,:host .margin-y-3{margin-top:1rem!important}:host .margin-top-bottom-3{margin:1rem 0!important}:host .margin-right-3,:host .margin-x-3{margin-right:1rem!important}:host .margin-bottom-3,:host .margin-y-3{margin-bottom:1rem!important}:host .margin-left-3,:host .margin-x-3{margin-left:1rem!important}:host .margin-4{margin:2rem!important}:host .margin-top-4,:host .margin-y-4{margin-top:2rem!important}:host .margin-right-4,:host .margin-x-4{margin-right:2rem!important}:host .margin-bottom-4,:host .margin-y-4{margin-bottom:2rem!important}:host .margin-left-4,:host .margin-x-4{margin-left:2rem!important}:host .margin-right-5,:host .margin-x-5{margin-right:4rem!important}:host .margin-bottom-5,:host .margin-y-5{margin-bottom:4rem!important}:host .margin-left-5,:host .margin-x-5{margin-left:4rem!important}:host .margin-5{margin:4rem!important}:host .margin-top-5,:host .margin-y-5{margin-top:4rem!important}:host .margin-right-6,:host .margin-x-6{margin-right:4.5rem!important}:host .margin-bottom-6,:host .margin-y-6{margin-bottom:4.5rem!important}:host .margin-left-6,:host .margin-x-6{margin-left:4.5rem!important}:host .margin-7{margin:6rem!important}:host .margin-top-7,:host .margin-y-7{margin-top:6rem!important}:host .margin-right-7,:host .margin-x-7{margin-right:6rem!important}:host .margin-bottom-7,:host .margin-y-7{margin-bottom:6rem!important}:host .margin-left-7,:host .margin-x-7{margin-left:6rem!important}:host .margin-8{margin:7.5rem!important}:host .margin-top-8,:host .margin-y-8{margin-top:7.5rem!important}:host .margin-right-8,:host .margin-x-8{margin-right:7.5rem!important}:host .margin-bottom-8,:host .margin-y-8{margin-bottom:7.5rem!important}:host .margin-left-8,:host .margin-x-8{margin-left:7.5rem!important}:host .margin-9{margin:9rem!important}:host .margin-top-9,:host .margin-y-9{margin-top:9rem!important}:host .margin-right-9,:host .margin-x-9{margin-right:9rem!important}:host .margin-bottom-9,:host .margin-y-9{margin-bottom:9rem!important}:host .margin-left-9,:host .margin-x-9{margin-left:9rem!important}:host .padding-0{padding:0!important}:host .padding-top-0,:host .padding-y-0{padding-top:0!important}:host .padding-right-0,:host .padding-x-0{padding-right:0!important}:host .padding-bottom-0,:host .padding-y-0{padding-bottom:0!important}:host .padding-left-0,:host .padding-x-0{padding-left:0!important}:host .padding-1{padding:.25rem!important}:host .padding-top-1,:host .padding-y-1{padding-top:.25rem!important}:host .padding-right-1,:host .padding-x-1{padding-right:.25rem!important}:host .padding-bottom-1,:host .padding-y-1{padding-bottom:.25rem!important}:host .padding-left-1,:host .padding-x-1{padding-left:.25rem!important}:host .padding-2{padding:.5rem!important}:host .padding-top-2,:host .padding-y-2{padding-top:.5rem!important}:host .padding-right-2,:host .padding-x-2{padding-right:.5rem!important}:host .padding-bottom-2,:host .padding-y-2{padding-bottom:.5rem!important}:host .padding-left-2,:host .padding-x-2{padding-left:.5rem!important}:host .padding-3{padding:1rem!important}:host .padding-top-3,:host .padding-y-3{padding-top:1rem!important}:host .padding-right-3,:host .padding-x-3{padding-right:1rem!important}:host .padding-bottom-3,:host .padding-y-3{padding-bottom:1rem!important}:host .padding-left-3,:host .padding-x-3{padding-left:1rem!important}:host .padding-4{padding:2rem!important}:host .padding-top-4,:host .padding-y-4{padding-top:2rem!important}:host .padding-right-4,:host .padding-x-4{padding-right:2rem!important}:host .padding-bottom-4,:host .padding-y-4{padding-bottom:2rem!important}:host .padding-left-4,:host .padding-x-4{padding-left:2rem!important}:host .padding-5{padding:4rem!important}:host .padding-top-5,:host .padding-y-5{padding-top:4rem!important}:host .padding-right-5,:host .padding-x-5{padding-right:4rem!important}:host .padding-bottom-5,:host .padding-y-5{padding-bottom:4rem!important}:host .padding-left-5,:host .padding-x-5{padding-left:4rem!important}:host .margin-n1{margin:-.25rem!important}:host .margin-top-n1,:host .margin-y-n1{margin-top:-.25rem!important}:host .margin-right-n1,:host .margin-x-n1{margin-right:-.25rem!important}:host .margin-bottom-n1,:host .margin-y-n1{margin-bottom:-.25rem!important}:host .margin-left-n1,:host .margin-x-n1{margin-left:-.25rem!important}:host .margin-n2{margin:-.5rem!important}:host .margin-top-n2,:host .margin-y-n2{margin-top:-.5rem!important}:host .margin-right-n2,:host .margin-x-n2{margin-right:-.5rem!important}:host .margin-bottom-n2,:host .margin-y-n2{margin-bottom:-.5rem!important}:host .margin-left-n2,:host .margin-x-n2{margin-left:-.5rem!important}:host .margin-n3{margin:-1rem!important}:host .margin-top-n3,:host .margin-y-n3{margin-top:-1rem!important}:host .margin-right-n3,:host .margin-x-n3{margin-right:-1rem!important}:host .margin-bottom-n3,:host .margin-y-n3{margin-bottom:-1rem!important}:host .margin-left-n3,:host .margin-x-n3{margin-left:-1rem!important}:host .margin-n4{margin:-2rem!important}:host .margin-top-n4,:host .margin-y-n4{margin-top:-2rem!important}:host .margin-right-n4,:host .margin-x-n4{margin-right:-2rem!important}:host .margin-bottom-n4,:host .margin-y-n4{margin-bottom:-2rem!important}:host .margin-left-n4,:host .margin-x-n4{margin-left:-2rem!important}:host .margin-n5{margin:-4rem!important}:host .margin-top-n5,:host .margin-y-n5{margin-top:-4rem!important}:host .margin-right-n5,:host .margin-x-n5{margin-right:-4rem!important}:host .margin-bottom-n5,:host .margin-y-n5{margin-bottom:-4rem!important}:host .margin-left-n5,:host .margin-x-n5{margin-left:-4rem!important}:host .margin-auto{margin:auto!important}:host .margin-top-auto,:host .margin-y-auto{margin-top:auto!important}:host .margin-right-auto,:host .margin-x-auto{margin-right:auto!important}:host .margin-bottom-auto,:host .margin-y-auto{margin-bottom:auto!important}:host .margin-left-auto,:host .margin-x-auto{margin-left:auto!important}@media (min-width: 576px){:host .margin-sm-0{margin:0!important}:host .margin-top-sm-0,:host .margin-y-sm-0{margin-top:0!important}:host .margin-right-sm-0,:host .margin-x-sm-0{margin-right:0!important}:host .margin-bottom-sm-0,:host .margin-y-sm-0{margin-bottom:0!important}:host .margin-left-sm-0,:host .margin-x-sm-0{margin-left:0!important}:host .margin-sm-1{margin:.25rem!important}:host .margin-top-sm-1,:host .margin-y-sm-1{margin-top:.25rem!important}:host .margin-right-sm-1,:host .margin-x-sm-1{margin-right:.25rem!important}:host .margin-bottom-sm-1,:host .margin-y-sm-1{margin-bottom:.25rem!important}:host .margin-left-sm-1,:host .margin-x-sm-1{margin-left:.25rem!important}:host .margin-sm-2{margin:.5rem!important}:host .margin-top-sm-2,:host .margin-y-sm-2{margin-top:.5rem!important}:host .margin-right-sm-2,:host .margin-x-sm-2{margin-right:.5rem!important}:host .margin-bottom-sm-2,:host .margin-y-sm-2{margin-bottom:.5rem!important}:host .margin-left-sm-2,:host .margin-x-sm-2{margin-left:.5rem!important}:host .margin-sm-3{margin:1rem!important}:host .margin-top-sm-3,:host .margin-y-sm-3{margin-top:1rem!important}:host .margin-right-sm-3,:host .margin-x-sm-3{margin-right:1rem!important}:host .margin-bottom-sm-3,:host .margin-y-sm-3{margin-bottom:1rem!important}:host .margin-left-sm-3,:host .margin-x-sm-3{margin-left:1rem!important}:host .margin-sm-4{margin:2rem!important}:host .margin-top-sm-4,:host .margin-y-sm-4{margin-top:2rem!important}:host .margin-right-sm-4,:host .margin-x-sm-4{margin-right:2rem!important}:host .margin-bottom-sm-4,:host .margin-y-sm-4{margin-bottom:2rem!important}:host .margin-left-sm-4,:host .margin-x-sm-4{margin-left:2rem!important}:host .margin-sm-5{margin:4rem!important}:host .margin-top-sm-5,:host .margin-y-sm-5{margin-top:4rem!important}:host .margin-right-sm-5,:host .margin-x-sm-5{margin-right:4rem!important}:host .margin-bottom-sm-5,:host .margin-y-sm-5{margin-bottom:4rem!important}:host .margin-left-sm-5,:host .margin-x-sm-5{margin-left:4rem!important}:host .padding-sm-0{padding:0!important}:host .padding-top-sm-0,:host .padding-y-sm-0{padding-top:0!important}:host .padding-right-sm-0,:host .padding-x-sm-0{padding-right:0!important}:host .padding-bottom-sm-0,:host .padding-y-sm-0{padding-bottom:0!important}:host .padding-left-sm-0,:host .padding-x-sm-0{padding-left:0!important}:host .padding-sm-1{padding:.25rem!important}:host .padding-top-sm-1,:host .padding-y-sm-1{padding-top:.25rem!important}:host .padding-right-sm-1,:host .padding-x-sm-1{padding-right:.25rem!important}:host .padding-bottom-sm-1,:host .padding-y-sm-1{padding-bottom:.25rem!important}:host .padding-left-sm-1,:host .padding-x-sm-1{padding-left:.25rem!important}:host .padding-sm-2{padding:.5rem!important}:host .padding-top-sm-2,:host .padding-y-sm-2{padding-top:.5rem!important}:host .padding-right-sm-2,:host .padding-x-sm-2{padding-right:.5rem!important}:host .padding-bottom-sm-2,:host .padding-y-sm-2{padding-bottom:.5rem!important}:host .padding-left-sm-2,:host .padding-x-sm-2{padding-left:.5rem!important}:host .padding-sm-3{padding:1rem!important}:host .padding-top-sm-3,:host .padding-y-sm-3{padding-top:1rem!important}:host .padding-right-sm-3,:host .padding-x-sm-3{padding-right:1rem!important}:host .padding-bottom-sm-3,:host .padding-y-sm-3{padding-bottom:1rem!important}:host .padding-left-sm-3,:host .padding-x-sm-3{padding-left:1rem!important}:host .padding-sm-4{padding:2rem!important}:host .padding-top-sm-4,:host .padding-y-sm-4{padding-top:2rem!important}:host .padding-right-sm-4,:host .padding-x-sm-4{padding-right:2rem!important}:host .padding-bottom-sm-4,:host .padding-y-sm-4{padding-bottom:2rem!important}:host .padding-left-sm-4,:host .padding-x-sm-4{padding-left:2rem!important}:host .padding-sm-5{padding:4rem!important}:host .padding-top-sm-5,:host .padding-y-sm-5{padding-top:4rem!important}:host .padding-right-sm-5,:host .padding-x-sm-5{padding-right:4rem!important}:host .padding-bottom-sm-5,:host .padding-y-sm-5{padding-bottom:4rem!important}:host .padding-left-sm-5,:host .padding-x-sm-5{padding-left:4rem!important}:host .margin-sm-n1{margin:-.25rem!important}:host .margin-top-sm-n1,:host .margin-y-sm-n1{margin-top:-.25rem!important}:host .margin-right-sm-n1,:host .margin-x-sm-n1{margin-right:-.25rem!important}:host .margin-bottom-sm-n1,:host .margin-y-sm-n1{margin-bottom:-.25rem!important}:host .margin-left-sm-n1,:host .margin-x-sm-n1{margin-left:-.25rem!important}:host .margin-sm-n2{margin:-.5rem!important}:host .margin-top-sm-n2,:host .margin-y-sm-n2{margin-top:-.5rem!important}:host .margin-right-sm-n2,:host .margin-x-sm-n2{margin-right:-.5rem!important}:host .margin-bottom-sm-n2,:host .margin-y-sm-n2{margin-bottom:-.5rem!important}:host .margin-left-sm-n2,:host .margin-x-sm-n2{margin-left:-.5rem!important}:host .margin-sm-n3{margin:-1rem!important}:host .margin-top-sm-n3,:host .margin-y-sm-n3{margin-top:-1rem!important}:host .margin-right-sm-n3,:host .margin-x-sm-n3{margin-right:-1rem!important}:host .margin-bottom-sm-n3,:host .margin-y-sm-n3{margin-bottom:-1rem!important}:host .margin-left-sm-n3,:host .margin-x-sm-n3{margin-left:-1rem!important}:host .margin-sm-n4{margin:-2rem!important}:host .margin-top-sm-n4,:host .margin-y-sm-n4{margin-top:-2rem!important}:host .margin-right-sm-n4,:host .margin-x-sm-n4{margin-right:-2rem!important}:host .margin-bottom-sm-n4,:host .margin-y-sm-n4{margin-bottom:-2rem!important}:host .margin-left-sm-n4,:host .margin-x-sm-n4{margin-left:-2rem!important}:host .margin-sm-n5{margin:-4rem!important}:host .margin-top-sm-n5,:host .margin-y-sm-n5{margin-top:-4rem!important}:host .margin-right-sm-n5,:host .margin-x-sm-n5{margin-right:-4rem!important}:host .margin-bottom-sm-n5,:host .margin-y-sm-n5{margin-bottom:-4rem!important}:host .margin-left-sm-n5,:host .margin-x-sm-n5{margin-left:-4rem!important}:host .margin-sm-auto{margin:auto!important}:host .margin-top-sm-auto,:host .margin-y-sm-auto{margin-top:auto!important}:host .margin-right-sm-auto,:host .margin-x-sm-auto{margin-right:auto!important}:host .margin-bottom-sm-auto,:host .margin-y-sm-auto{margin-bottom:auto!important}:host .margin-left-sm-auto,:host .margin-x-sm-auto{margin-left:auto!important}}@media (min-width: 768px){:host .margin-md-0{margin:0!important}:host .margin-top-md-0,:host .margin-y-md-0{margin-top:0!important}:host .margin-right-md-0,:host .margin-x-md-0{margin-right:0!important}:host .margin-bottom-md-0,:host .margin-y-md-0{margin-bottom:0!important}:host .margin-left-md-0,:host .margin-x-md-0{margin-left:0!important}:host .margin-md-1{margin:.25rem!important}:host .margin-top-md-1,:host .margin-y-md-1{margin-top:.25rem!important}:host .margin-right-md-1,:host .margin-x-md-1{margin-right:.25rem!important}:host .margin-bottom-md-1,:host .margin-y-md-1{margin-bottom:.25rem!important}:host .margin-left-md-1,:host .margin-x-md-1{margin-left:.25rem!important}:host .margin-md-2{margin:.5rem!important}:host .margin-top-md-2,:host .margin-y-md-2{margin-top:.5rem!important}:host .margin-right-md-2,:host .margin-x-md-2{margin-right:.5rem!important}:host .margin-bottom-md-2,:host .margin-y-md-2{margin-bottom:.5rem!important}:host .margin-left-md-2,:host .margin-x-md-2{margin-left:.5rem!important}:host .margin-md-3{margin:1rem!important}:host .margin-top-md-3,:host .margin-y-md-3{margin-top:1rem!important}:host .margin-right-md-3,:host .margin-x-md-3{margin-right:1rem!important}:host .margin-bottom-md-3,:host .margin-y-md-3{margin-bottom:1rem!important}:host .margin-left-md-3,:host .margin-x-md-3{margin-left:1rem!important}:host .margin-md-4{margin:2rem!important}:host .margin-top-md-4,:host .margin-y-md-4{margin-top:2rem!important}:host .margin-right-md-4,:host .margin-x-md-4{margin-right:2rem!important}:host .margin-bottom-md-4,:host .margin-y-md-4{margin-bottom:2rem!important}:host .margin-left-md-4,:host .margin-x-md-4{margin-left:2rem!important}:host .margin-md-5{margin:4rem!important}:host .margin-top-md-5,:host .margin-y-md-5{margin-top:4rem!important}:host .margin-right-md-5,:host .margin-x-md-5{margin-right:4rem!important}:host .margin-bottom-md-5,:host .margin-y-md-5{margin-bottom:4rem!important}:host .margin-left-md-5,:host .margin-x-md-5{margin-left:4rem!important}:host .padding-md-0{padding:0!important}:host .padding-top-md-0,:host .padding-y-md-0{padding-top:0!important}:host .padding-right-md-0,:host .padding-x-md-0{padding-right:0!important}:host .padding-bottom-md-0,:host .padding-y-md-0{padding-bottom:0!important}:host .padding-left-md-0,:host .padding-x-md-0{padding-left:0!important}:host .padding-md-1{padding:.25rem!important}:host .padding-top-md-1,:host .padding-y-md-1{padding-top:.25rem!important}:host .padding-right-md-1,:host .padding-x-md-1{padding-right:.25rem!important}:host .padding-bottom-md-1,:host .padding-y-md-1{padding-bottom:.25rem!important}:host .padding-left-md-1,:host .padding-x-md-1{padding-left:.25rem!important}:host .padding-md-2{padding:.5rem!important}:host .padding-top-md-2,:host .padding-y-md-2{padding-top:.5rem!important}:host .padding-right-md-2,:host .padding-x-md-2{padding-right:.5rem!important}:host .padding-bottom-md-2,:host .padding-y-md-2{padding-bottom:.5rem!important}:host .padding-left-md-2,:host .padding-x-md-2{padding-left:.5rem!important}:host .padding-md-3{padding:1rem!important}:host .padding-top-md-3,:host .padding-y-md-3{padding-top:1rem!important}:host .padding-right-md-3,:host .padding-x-md-3{padding-right:1rem!important}:host .padding-bottom-md-3,:host .padding-y-md-3{padding-bottom:1rem!important}:host .padding-left-md-3,:host .padding-x-md-3{padding-left:1rem!important}:host .padding-md-4{padding:2rem!important}:host .padding-top-md-4,:host .padding-y-md-4{padding-top:2rem!important}:host .padding-right-md-4,:host .padding-x-md-4{padding-right:2rem!important}:host .padding-bottom-md-4,:host .padding-y-md-4{padding-bottom:2rem!important}:host .padding-left-md-4,:host .padding-x-md-4{padding-left:2rem!important}:host .padding-md-5{padding:4rem!important}:host .padding-top-md-5,:host .padding-y-md-5{padding-top:4rem!important}:host .padding-right-md-5,:host .padding-x-md-5{padding-right:4rem!important}:host .padding-bottom-md-5,:host .padding-y-md-5{padding-bottom:4rem!important}:host .padding-left-md-5,:host .padding-x-md-5{padding-left:4rem!important}:host .margin-md-n1{margin:-.25rem!important}:host .margin-top-md-n1,:host .margin-y-md-n1{margin-top:-.25rem!important}:host .margin-right-md-n1,:host .margin-x-md-n1{margin-right:-.25rem!important}:host .margin-bottom-md-n1,:host .margin-y-md-n1{margin-bottom:-.25rem!important}:host .margin-left-md-n1,:host .margin-x-md-n1{margin-left:-.25rem!important}:host .margin-md-n2{margin:-.5rem!important}:host .margin-top-md-n2,:host .margin-y-md-n2{margin-top:-.5rem!important}:host .margin-right-md-n2,:host .margin-x-md-n2{margin-right:-.5rem!important}:host .margin-bottom-md-n2,:host .margin-y-md-n2{margin-bottom:-.5rem!important}:host .margin-left-md-n2,:host .margin-x-md-n2{margin-left:-.5rem!important}:host .margin-md-n3{margin:-1rem!important}:host .margin-top-md-n3,:host .margin-y-md-n3{margin-top:-1rem!important}:host .margin-right-md-n3,:host .margin-x-md-n3{margin-right:-1rem!important}:host .margin-bottom-md-n3,:host .margin-y-md-n3{margin-bottom:-1rem!important}:host .margin-left-md-n3,:host .margin-x-md-n3{margin-left:-1rem!important}:host .margin-md-n4{margin:-2rem!important}:host .margin-top-md-n4,:host .margin-y-md-n4{margin-top:-2rem!important}:host .margin-right-md-n4,:host .margin-x-md-n4{margin-right:-2rem!important}:host .margin-bottom-md-n4,:host .margin-y-md-n4{margin-bottom:-2rem!important}:host .margin-left-md-n4,:host .margin-x-md-n4{margin-left:-2rem!important}:host .margin-md-n5{margin:-4rem!important}:host .margin-top-md-n5,:host .margin-y-md-n5{margin-top:-4rem!important}:host .margin-right-md-n5,:host .margin-x-md-n5{margin-right:-4rem!important}:host .margin-bottom-md-n5,:host .margin-y-md-n5{margin-bottom:-4rem!important}:host .margin-left-md-n5,:host .margin-x-md-n5{margin-left:-4rem!important}:host .margin-md-auto{margin:auto!important}:host .margin-top-md-auto,:host .margin-y-md-auto{margin-top:auto!important}:host .margin-right-md-auto,:host .margin-x-md-auto{margin-right:auto!important}:host .margin-bottom-md-auto,:host .margin-y-md-auto{margin-bottom:auto!important}:host .margin-left-md-auto,:host .margin-x-md-auto{margin-left:auto!important}}@media (min-width: 992px){:host .margin-lg-0{margin:0!important}:host .margin-top-lg-0,:host .margin-y-lg-0{margin-top:0!important}:host .margin-right-lg-0,:host .margin-x-lg-0{margin-right:0!important}:host .margin-bottom-lg-0,:host .margin-y-lg-0{margin-bottom:0!important}:host .margin-left-lg-0,:host .margin-x-lg-0{margin-left:0!important}:host .margin-lg-1{margin:.25rem!important}:host .margin-top-lg-1,:host .margin-y-lg-1{margin-top:.25rem!important}:host .margin-right-lg-1,:host .margin-x-lg-1{margin-right:.25rem!important}:host .margin-bottom-lg-1,:host .margin-y-lg-1{margin-bottom:.25rem!important}:host .margin-left-lg-1,:host .margin-x-lg-1{margin-left:.25rem!important}:host .margin-lg-2{margin:.5rem!important}:host .margin-top-lg-2,:host .margin-y-lg-2{margin-top:.5rem!important}:host .margin-right-lg-2,:host .margin-x-lg-2{margin-right:.5rem!important}:host .margin-bottom-lg-2,:host .margin-y-lg-2{margin-bottom:.5rem!important}:host .margin-left-lg-2,:host .margin-x-lg-2{margin-left:.5rem!important}:host .margin-lg-3{margin:1rem!important}:host .margin-top-lg-3,:host .margin-y-lg-3{margin-top:1rem!important}:host .margin-right-lg-3,:host .margin-x-lg-3{margin-right:1rem!important}:host .margin-bottom-lg-3,:host .margin-y-lg-3{margin-bottom:1rem!important}:host .margin-left-lg-3,:host .margin-x-lg-3{margin-left:1rem!important}:host .margin-lg-4{margin:2rem!important}:host .margin-top-lg-4,:host .margin-y-lg-4{margin-top:2rem!important}:host .margin-right-lg-4,:host .margin-x-lg-4{margin-right:2rem!important}:host .margin-bottom-lg-4,:host .margin-y-lg-4{margin-bottom:2rem!important}:host .margin-left-lg-4,:host .margin-x-lg-4{margin-left:2rem!important}:host .margin-lg-5{margin:4rem!important}:host .margin-top-lg-5,:host .margin-y-lg-5{margin-top:4rem!important}:host .margin-right-lg-5,:host .margin-x-lg-5{margin-right:4rem!important}:host .margin-bottom-lg-5,:host .margin-y-lg-5{margin-bottom:4rem!important}:host .margin-left-lg-5,:host .margin-x-lg-5{margin-left:4rem!important}:host .padding-lg-0{padding:0!important}:host .padding-top-lg-0,:host .padding-y-lg-0{padding-top:0!important}:host .padding-right-lg-0,:host .padding-x-lg-0{padding-right:0!important}:host .padding-bottom-lg-0,:host .padding-y-lg-0{padding-bottom:0!important}:host .padding-left-lg-0,:host .padding-x-lg-0{padding-left:0!important}:host .padding-lg-1{padding:.25rem!important}:host .padding-top-lg-1,:host .padding-y-lg-1{padding-top:.25rem!important}:host .padding-right-lg-1,:host .padding-x-lg-1{padding-right:.25rem!important}:host .padding-bottom-lg-1,:host .padding-y-lg-1{padding-bottom:.25rem!important}:host .padding-left-lg-1,:host .padding-x-lg-1{padding-left:.25rem!important}:host .padding-lg-2{padding:.5rem!important}:host .padding-top-lg-2,:host .padding-y-lg-2{padding-top:.5rem!important}:host .padding-right-lg-2,:host .padding-x-lg-2{padding-right:.5rem!important}:host .padding-bottom-lg-2,:host .padding-y-lg-2{padding-bottom:.5rem!important}:host .padding-left-lg-2,:host .padding-x-lg-2{padding-left:.5rem!important}:host .padding-lg-3{padding:1rem!important}:host .padding-top-lg-3,:host .padding-y-lg-3{padding-top:1rem!important}:host .padding-right-lg-3,:host .padding-x-lg-3{padding-right:1rem!important}:host .padding-bottom-lg-3,:host .padding-y-lg-3{padding-bottom:1rem!important}:host .padding-left-lg-3,:host .padding-x-lg-3{padding-left:1rem!important}:host .padding-lg-4{padding:2rem!important}:host .padding-top-lg-4,:host .padding-y-lg-4{padding-top:2rem!important}:host .padding-right-lg-4,:host .padding-x-lg-4{padding-right:2rem!important}:host .padding-bottom-lg-4,:host .padding-y-lg-4{padding-bottom:2rem!important}:host .padding-left-lg-4,:host .padding-x-lg-4{padding-left:2rem!important}:host .padding-lg-5{padding:4rem!important}:host .padding-top-lg-5,:host .padding-y-lg-5{padding-top:4rem!important}:host .padding-right-lg-5,:host .padding-x-lg-5{padding-right:4rem!important}:host .padding-bottom-lg-5,:host .padding-y-lg-5{padding-bottom:4rem!important}:host .padding-left-lg-5,:host .padding-x-lg-5{padding-left:4rem!important}:host .margin-lg-n1{margin:-.25rem!important}:host .margin-top-lg-n1,:host .margin-y-lg-n1{margin-top:-.25rem!important}:host .margin-right-lg-n1,:host .margin-x-lg-n1{margin-right:-.25rem!important}:host .margin-bottom-lg-n1,:host .margin-y-lg-n1{margin-bottom:-.25rem!important}:host .margin-left-lg-n1,:host .margin-x-lg-n1{margin-left:-.25rem!important}:host .margin-lg-n2{margin:-.5rem!important}:host .margin-top-lg-n2,:host .margin-y-lg-n2{margin-top:-.5rem!important}:host .margin-right-lg-n2,:host .margin-x-lg-n2{margin-right:-.5rem!important}:host .margin-bottom-lg-n2,:host .margin-y-lg-n2{margin-bottom:-.5rem!important}:host .margin-left-lg-n2,:host .margin-x-lg-n2{margin-left:-.5rem!important}:host .margin-lg-n3{margin:-1rem!important}:host .margin-top-lg-n3,:host .margin-y-lg-n3{margin-top:-1rem!important}:host .margin-right-lg-n3,:host .margin-x-lg-n3{margin-right:-1rem!important}:host .margin-bottom-lg-n3,:host .margin-y-lg-n3{margin-bottom:-1rem!important}:host .margin-left-lg-n3,:host .margin-x-lg-n3{margin-left:-1rem!important}:host .margin-lg-n4{margin:-2rem!important}:host .margin-top-lg-n4,:host .margin-y-lg-n4{margin-top:-2rem!important}:host .margin-right-lg-n4,:host .margin-x-lg-n4{margin-right:-2rem!important}:host .margin-bottom-lg-n4,:host .margin-y-lg-n4{margin-bottom:-2rem!important}:host .margin-left-lg-n4,:host .margin-x-lg-n4{margin-left:-2rem!important}:host .margin-lg-n5{margin:-4rem!important}:host .margin-top-lg-n5,:host .margin-y-lg-n5{margin-top:-4rem!important}:host .margin-right-lg-n5,:host .margin-x-lg-n5{margin-right:-4rem!important}:host .margin-bottom-lg-n5,:host .margin-y-lg-n5{margin-bottom:-4rem!important}:host .margin-left-lg-n5,:host .margin-x-lg-n5{margin-left:-4rem!important}:host .margin-lg-auto{margin:auto!important}:host .margin-top-lg-auto,:host .margin-y-lg-auto{margin-top:auto!important}:host .margin-right-lg-auto,:host .margin-x-lg-auto{margin-right:auto!important}:host .margin-bottom-lg-auto,:host .margin-y-lg-auto{margin-bottom:auto!important}:host .margin-left-lg-auto,:host .margin-x-lg-auto{margin-left:auto!important}}@media (min-width: 1200px){:host .margin-xl-0{margin:0!important}:host .margin-top-xl-0,:host .margin-y-xl-0{margin-top:0!important}:host .margin-right-xl-0,:host .margin-x-xl-0{margin-right:0!important}:host .margin-bottom-xl-0,:host .margin-y-xl-0{margin-bottom:0!important}:host .margin-left-xl-0,:host .margin-x-xl-0{margin-left:0!important}:host .margin-xl-1{margin:.25rem!important}:host .margin-top-xl-1,:host .margin-y-xl-1{margin-top:.25rem!important}:host .margin-right-xl-1,:host .margin-x-xl-1{margin-right:.25rem!important}:host .margin-bottom-xl-1,:host .margin-y-xl-1{margin-bottom:.25rem!important}:host .margin-left-xl-1,:host .margin-x-xl-1{margin-left:.25rem!important}:host .margin-xl-2{margin:.5rem!important}:host .margin-top-xl-2,:host .margin-y-xl-2{margin-top:.5rem!important}:host .margin-right-xl-2,:host .margin-x-xl-2{margin-right:.5rem!important}:host .margin-bottom-xl-2,:host .margin-y-xl-2{margin-bottom:.5rem!important}:host .margin-left-xl-2,:host .margin-x-xl-2{margin-left:.5rem!important}:host .margin-xl-3{margin:1rem!important}:host .margin-top-xl-3,:host .margin-y-xl-3{margin-top:1rem!important}:host .margin-right-xl-3,:host .margin-x-xl-3{margin-right:1rem!important}:host .margin-bottom-xl-3,:host .margin-y-xl-3{margin-bottom:1rem!important}:host .margin-left-xl-3,:host .margin-x-xl-3{margin-left:1rem!important}:host .margin-xl-4{margin:2rem!important}:host .margin-top-xl-4,:host .margin-y-xl-4{margin-top:2rem!important}:host .margin-right-xl-4,:host .margin-x-xl-4{margin-right:2rem!important}:host .margin-bottom-xl-4,:host .margin-y-xl-4{margin-bottom:2rem!important}:host .margin-left-xl-4,:host .margin-x-xl-4{margin-left:2rem!important}:host .margin-xl-5{margin:4rem!important}:host .margin-top-xl-5,:host .margin-y-xl-5{margin-top:4rem!important}:host .margin-right-xl-5,:host .margin-x-xl-5{margin-right:4rem!important}:host .margin-bottom-xl-5,:host .margin-y-xl-5{margin-bottom:4rem!important}:host .margin-left-xl-5,:host .margin-x-xl-5{margin-left:4rem!important}:host .padding-xl-0{padding:0!important}:host .padding-top-xl-0,:host .padding-y-xl-0{padding-top:0!important}:host .padding-right-xl-0,:host .padding-x-xl-0{padding-right:0!important}:host .padding-bottom-xl-0,:host .padding-y-xl-0{padding-bottom:0!important}:host .padding-left-xl-0,:host .padding-x-xl-0{padding-left:0!important}:host .padding-xl-1{padding:.25rem!important}:host .padding-top-xl-1,:host .padding-y-xl-1{padding-top:.25rem!important}:host .padding-right-xl-1,:host .padding-x-xl-1{padding-right:.25rem!important}:host .padding-bottom-xl-1,:host .padding-y-xl-1{padding-bottom:.25rem!important}:host .padding-left-xl-1,:host .padding-x-xl-1{padding-left:.25rem!important}:host .padding-xl-2{padding:.5rem!important}:host .padding-top-xl-2,:host .padding-y-xl-2{padding-top:.5rem!important}:host .padding-right-xl-2,:host .padding-x-xl-2{padding-right:.5rem!important}:host .padding-bottom-xl-2,:host .padding-y-xl-2{padding-bottom:.5rem!important}:host .padding-left-xl-2,:host .padding-x-xl-2{padding-left:.5rem!important}:host .padding-xl-3{padding:1rem!important}:host .padding-top-xl-3,:host .padding-y-xl-3{padding-top:1rem!important}:host .padding-right-xl-3,:host .padding-x-xl-3{padding-right:1rem!important}:host .padding-bottom-xl-3,:host .padding-y-xl-3{padding-bottom:1rem!important}:host .padding-left-xl-3,:host .padding-x-xl-3{padding-left:1rem!important}:host .padding-xl-4{padding:2rem!important}:host .padding-top-xl-4,:host .padding-y-xl-4{padding-top:2rem!important}:host .padding-right-xl-4,:host .padding-x-xl-4{padding-right:2rem!important}:host .padding-bottom-xl-4,:host .padding-y-xl-4{padding-bottom:2rem!important}:host .padding-left-xl-4,:host .padding-x-xl-4{padding-left:2rem!important}:host .padding-xl-5{padding:4rem!important}:host .padding-top-xl-5,:host .padding-y-xl-5{padding-top:4rem!important}:host .padding-right-xl-5,:host .padding-x-xl-5{padding-right:4rem!important}:host .padding-bottom-xl-5,:host .padding-y-xl-5{padding-bottom:4rem!important}:host .padding-left-xl-5,:host .padding-x-xl-5{padding-left:4rem!important}:host .margin-xl-n1{margin:-.25rem!important}:host .margin-top-xl-n1,:host .margin-y-xl-n1{margin-top:-.25rem!important}:host .margin-right-xl-n1,:host .margin-x-xl-n1{margin-right:-.25rem!important}:host .margin-bottom-xl-n1,:host .margin-y-xl-n1{margin-bottom:-.25rem!important}:host .margin-left-xl-n1,:host .margin-x-xl-n1{margin-left:-.25rem!important}:host .margin-xl-n2{margin:-.5rem!important}:host .margin-top-xl-n2,:host .margin-y-xl-n2{margin-top:-.5rem!important}:host .margin-right-xl-n2,:host .margin-x-xl-n2{margin-right:-.5rem!important}:host .margin-bottom-xl-n2,:host .margin-y-xl-n2{margin-bottom:-.5rem!important}:host .margin-left-xl-n2,:host .margin-x-xl-n2{margin-left:-.5rem!important}:host .margin-xl-n3{margin:-1rem!important}:host .margin-top-xl-n3,:host .margin-y-xl-n3{margin-top:-1rem!important}:host .margin-right-xl-n3,:host .margin-x-xl-n3{margin-right:-1rem!important}:host .margin-bottom-xl-n3,:host .margin-y-xl-n3{margin-bottom:-1rem!important}:host .margin-left-xl-n3,:host .margin-x-xl-n3{margin-left:-1rem!important}:host .margin-xl-n4{margin:-2rem!important}:host .margin-top-xl-n4,:host .margin-y-xl-n4{margin-top:-2rem!important}:host .margin-right-xl-n4,:host .margin-x-xl-n4{margin-right:-2rem!important}:host .margin-bottom-xl-n4,:host .margin-y-xl-n4{margin-bottom:-2rem!important}:host .margin-left-xl-n4,:host .margin-x-xl-n4{margin-left:-2rem!important}:host .margin-xl-n5{margin:-4rem!important}:host .margin-top-xl-n5,:host .margin-y-xl-n5{margin-top:-4rem!important}:host .margin-right-xl-n5,:host .margin-x-xl-n5{margin-right:-4rem!important}:host .margin-bottom-xl-n5,:host .margin-y-xl-n5{margin-bottom:-4rem!important}:host .margin-left-xl-n5,:host .margin-x-xl-n5{margin-left:-4rem!important}:host .margin-xl-auto{margin:auto!important}:host .margin-top-xl-auto,:host .margin-y-xl-auto{margin-top:auto!important}:host .margin-right-xl-auto,:host .margin-x-xl-auto{margin-right:auto!important}:host .margin-bottom-xl-auto,:host .margin-y-xl-auto{margin-bottom:auto!important}:host .margin-left-xl-auto,:host .margin-x-xl-auto{margin-left:auto!important}}:host .h1{font-size:2em}:host .h2{font-size:1.5em}:host .h3{font-size:1.17em}:host .h4{font-size:1em}:host .h5{font-size:.83em}:host .h6{font-size:.67em}:host .cursor-alias{cursor:alias}:host .cursor-all-scroll{cursor:all-scroll}:host .cursor-auto{cursor:auto}:host .cursor-cell{cursor:cell}:host .cursor-context-menu{cursor:context-menu}:host .cursor-col-resize{cursor:col-resize}:host .cursor-copy{cursor:copy}:host .cursor-crosshair{cursor:crosshair}:host .cursor-default{cursor:default}:host .cursor-e-resize{cursor:e-resize}:host .cursor-ew-resize{cursor:ew-resize}:host .cursor-grab{cursor:grab}:host .cursor-grabbing{cursor:grabbing}:host .cursor-help{cursor:help}:host .cursor-move{cursor:move}:host .cursor-n-resize{cursor:n-resize}:host .cursor-ne-resize{cursor:ne-resize}:host .cursor-nesw-resize{cursor:nesw-resize}:host .cursor-ns-resize{cursor:ns-resize}:host .cursor-nw-resize{cursor:nw-resize}:host .cursor-nwse-resize{cursor:nwse-resize}:host .cursor-no-drop{cursor:no-drop}:host .cursor-none{cursor:none}:host .cursor-not-allowed{cursor:not-allowed}:host .cursor-pointer{cursor:pointer}:host .cursor-progress{cursor:progress}:host .cursor-row-resize{cursor:row-resize}:host .cursor-s-resize{cursor:s-resize}:host .cursor-se-resize{cursor:se-resize}:host .cursor-sw-resize{cursor:sw-resize}:host .cursor-text{cursor:text}:host .cursor-w-resize{cursor:w-resize}:host .cursor-wait{cursor:wait}:host .cursor-zoom-in{cursor:zoom-in}:host .cursor-zoom-out{cursor:zoom-out}:host .mat-tooltip{font-size:16px!important}:host html,:host body{height:100%}:host body{margin:0;padding:0;font-family:opens sans regular,sans-serif}:host iframe{border:none}:host .mat-badge-content{font-weight:600;font-size:12px;font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-badge-small .mat-badge-content{font-size:9px}:host .mat-badge-large .mat-badge-content{font-size:24px}:host .mat-h1,:host .mat-headline,:host .mat-typography h1{font:400 24px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h2,:host .mat-title,:host .mat-typography h2{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h3,:host .mat-subheading-2,:host .mat-typography h3{font:400 16px/28px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h4,:host .mat-subheading-1,:host .mat-typography h4{font:400 15px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h5,:host .mat-typography h5{font:400 11.62px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}:host .mat-h6,:host .mat-typography h6{font:400 9.38px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}:host .mat-body-strong,:host .mat-body-2{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-body,:host .mat-body-1,:host .mat-typography{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-body p,:host .mat-body-1 p,:host .mat-typography p{margin:0 0 12px}:host .mat-small,:host .mat-caption{font:400 12px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-display-4,:host .mat-typography .mat-display-4{font:300 112px/112px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.05em;margin:0 0 56px}:host .mat-display-3,:host .mat-typography .mat-display-3{font:400 56px/56px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.02em;margin:0 0 64px}:host .mat-display-2,:host .mat-typography .mat-display-2{font:400 45px/48px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.005em;margin:0 0 64px}:host .mat-display-1,:host .mat-typography .mat-display-1{font:400 34px/40px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 64px}:host .mat-bottom-sheet-container{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-button,:host .mat-raised-button,:host .mat-icon-button,:host .mat-stroked-button,:host .mat-flat-button,:host .mat-fab,:host .mat-mini-fab{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}:host .mat-button-toggle{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-card{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-card-title{font-size:24px;font-weight:500}:host .mat-card-header .mat-card-title{font-size:20px}:host .mat-card-subtitle,:host .mat-card-content{font-size:14px}:host .mat-checkbox{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-checkbox-layout .mat-checkbox-label{line-height:24px}:host .mat-chip{font-size:14px;font-weight:500}:host .mat-chip .mat-chip-trailing-icon.mat-icon,:host .mat-chip .mat-chip-remove.mat-icon{font-size:18px}:host .mat-table{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-header-cell{font-size:12px;font-weight:500}:host .mat-cell,:host .mat-footer-cell{font-size:14px}:host .mat-calendar{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-calendar-body{font-size:13px}:host .mat-calendar-body-label,:host .mat-calendar-period-button{font-size:14px;font-weight:500}:host .mat-calendar-table-header th{font-size:11px;font-weight:400}:host .mat-dialog-title{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-expansion-panel-header{font-family:Roboto,Helvetica Neue,sans-serif;font-size:15px;font-weight:400}:host .mat-expansion-panel-content{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-form-field{font-size:inherit;font-weight:400;line-height:1.125;font-family:Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-form-field-wrapper{padding-bottom:1.34375em}:host .mat-form-field-prefix .mat-icon,:host .mat-form-field-suffix .mat-icon{font-size:150%;line-height:1.125}:host .mat-form-field-prefix .mat-icon-button,:host .mat-form-field-suffix .mat-icon-button{height:1.5em;width:1.5em}:host .mat-form-field-prefix .mat-icon-button .mat-icon,:host .mat-form-field-suffix .mat-icon-button .mat-icon{height:1.125em;line-height:1.125}:host .mat-form-field-infix{padding:.5em 0;border-top:.84375em solid transparent}:host .mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34375em) scale(.75);width:133.3333333333%}:host .mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34374em) scale(.75);width:133.3333433333%}:host .mat-form-field-label-wrapper{top:-.84375em;padding-top:.84375em}:host .mat-form-field-label{top:1.34375em}:host .mat-form-field-underline{bottom:1.34375em}:host .mat-form-field-subscript-wrapper{font-size:75%;margin-top:.6666666667em;top:calc(100% - 1.7916666667em)}:host .mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:1.25em}:host .mat-form-field-appearance-legacy .mat-form-field-infix{padding:.4375em 0}:host .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);width:133.3333333333%}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00101px);width:133.3333433333%}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00102px);width:133.3333533333%}:host .mat-form-field-appearance-legacy .mat-form-field-label{top:1.28125em}:host .mat-form-field-appearance-legacy .mat-form-field-underline{bottom:1.25em}:host .mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper{margin-top:.5416666667em;top:calc(100% - 1.6666666667em)}@media print{:host .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28122em) scale(.75)}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28121em) scale(.75)}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.2812em) scale(.75)}}:host .mat-form-field-appearance-fill .mat-form-field-infix{padding:.25em 0 .75em}:host .mat-form-field-appearance-fill .mat-form-field-label{top:1.09375em;margin-top:-.5em}:host .mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59375em) scale(.75);width:133.3333333333%}:host .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59374em) scale(.75);width:133.3333433333%}:host .mat-form-field-appearance-outline .mat-form-field-infix{padding:1em 0}:host .mat-form-field-appearance-outline .mat-form-field-label{top:1.84375em;margin-top:-.25em}:host .mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59375em) scale(.75);width:133.3333333333%}:host .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59374em) scale(.75);width:133.3333433333%}:host .mat-grid-tile-header,:host .mat-grid-tile-footer{font-size:14px}:host .mat-grid-tile-header .mat-line,:host .mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-grid-tile-header .mat-line:nth-child(n+2),:host .mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:12px}:host input.mat-input-element{margin-top:-.0625em}:host .mat-menu-item{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:400}:host .mat-paginator,:host .mat-paginator-page-size .mat-select-trigger{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px}:host .mat-radio-button{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-select{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-select-trigger{height:1.125em}:host .mat-slide-toggle-content{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-slider-thumb-label-text{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}:host .mat-stepper-vertical,:host .mat-stepper-horizontal{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-step-label{font-size:14px;font-weight:400}:host .mat-step-sub-label-error{font-weight:400}:host .mat-step-label-error{font-size:14px}:host .mat-step-label-selected{font-size:14px;font-weight:500}:host .mat-tab-group{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-tab-label,:host .mat-tab-link{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}:host .mat-toolbar,:host .mat-toolbar h1,:host .mat-toolbar h2,:host .mat-toolbar h3,:host .mat-toolbar h4,:host .mat-toolbar h5,:host .mat-toolbar h6{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0}:host .mat-tooltip{font-family:Roboto,Helvetica Neue,sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}:host .mat-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}:host .mat-list-item{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-list-option{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-list-base .mat-list-item{font-size:16px}:host .mat-list-base .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base .mat-list-item .mat-line:nth-child(n+2){font-size:14px}:host .mat-list-base .mat-list-option{font-size:16px}:host .mat-list-base .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base .mat-list-option .mat-line:nth-child(n+2){font-size:14px}:host .mat-list-base .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}:host .mat-list-base[dense] .mat-list-item{font-size:12px}:host .mat-list-base[dense] .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}:host .mat-list-base[dense] .mat-list-option{font-size:12px}:host .mat-list-base[dense] .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2){font-size:12px}:host .mat-list-base[dense] .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}:host .mat-option{font-family:Roboto,Helvetica Neue,sans-serif;font-size:16px}:host .mat-optgroup-label{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-simple-snackbar{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px}:host .mat-simple-snackbar-action{line-height:1;font-family:inherit;font-size:inherit;font-weight:500}:host .mat-tree{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-tree-node,:host .mat-nested-tree-node{font-weight:400;font-size:14px}:host .mat-ripple{overflow:hidden;position:relative}:host .mat-ripple:not(:empty){transform:translateZ(0)}:host .mat-ripple.mat-ripple-unbounded{overflow:visible}:host .mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale(0)}.cdk-high-contrast-active :host .mat-ripple-element{display:none}:host .cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none}:host .cdk-overlay-container,:host .cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}:host .cdk-overlay-container{position:fixed;z-index:1000}:host .cdk-overlay-container:empty{display:none}:host .cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}:host .cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}:host .cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}:host .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active :host .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}:host .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}:host .cdk-overlay-transparent-backdrop,:host .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0}:host .cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}:host .cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}:host textarea.cdk-textarea-autosize{resize:none}:host textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}:host textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0!important;box-sizing:content-box!important;height:0!important}@keyframes cdk-text-field-autofill-start{}@keyframes cdk-text-field-autofill-end{}:host .cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}:host .cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}:host .mat-focus-indicator{position:relative}:host .mat-mdc-focus-indicator{position:relative}:host .title,:host .header{font-family:Encode Sans Condensed,sans-serif;font-weight:900}:host .paragraph-title,:host .tagline{font-family:Open Sans,sans-serif;font-weight:400}:host .paragraph-title-bold .tagLine-bold{font-family:Open Sans,sans-serif;font-weight:700}:host .plain-text,:host .remarks{font-family:Open Sans,sans-serif;font-weight:300}:host .plain-text-bold{font-family:Open Sans,sans-serif;font-weight:700}:host .flex-column{box-sizing:border-box;display:flex;flex-direction:column}:host .flex-row{box-sizing:border-box;display:flex;flex-direction:row}:host .flex-row-center{align-items:center;justify-content:center}:host .mat-button-large{line-height:48px;font-size:18px;font-weight:700;padding:0 24px!important}:host .mat-round{border-radius:.5em}:host :root{--skeleton-color: #ccc;--skeleton-icon-color: rgba(0, 0, 0, .25)}:host .skeleton-block{height:1em;background:var(--skeleton-color)!important;width:100%;display:block}@font-face{:host {font-family: \"skeleton\"; src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAYAAA0AAAAAESgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABMAAAABoAAAAclcTxx09TLzIAAAFMAAAASwAAAGBRtV1jY21hcAAAAZgAAAC9AAABamglddJjdnQgAAACWAAAAAQAAAAEABEBRGdhc3AAAAJcAAAACAAAAAj//wADZ2x5ZgAAAmQAAACTAAAJdL6KsfZoZWFkAAAC+AAAAC4AAAA2GgvLb2hoZWEAAAMoAAAAGgAAACQC8ADFaG10eAAAA0QAAAATAAAAtAMAABFsb2NhAAADWAAAAK4AAACuaF5mEm1heHAAAAQIAAAAHwAAACAAmgA5bmFtZQAABCgAAAE5AAACNKbyxURwb3N0AAAFZAAAAJkAAADOCL0Ic3icY2BgYGQAgts30q6A6DvfXCthNABZwwgPAAB4nGNgYWRgnMDAysDA6MOYxsDA4A6lvzJIMrQwMDAxsHIywAAjAxIISHNNYWhgUGCoZTzw/wCDHuMBBgeYGsYDQB4DUI4RAOnYC70AeJxjYGBgZoBgGQZGBhBIAfIYwXwWBg8gzcfAwcDEwMagxKDFYM0QyxDPUPv/P1BcgUGNQYfBEchP/P///+P/D/7f/3/r/83/N6DmIAFGNga4ICMTkGBCVwB0AgsrkMHGzsHJxcDNw8vHLyAoJCwiKiYuISkFViMtIysnr6CopKyiqqauoamlraOrp29gaGRsYmpmzmDBYGllbWNrZ+/g6OTs4urm7uHp5e3j6+cfEBgUHBKK7iL6AwBJLiG7AAAAABEBRAAAAAH//wACeJztzrENwjAUBNA7O4nrXzBAREEHEm5dsERWyApZIStkBip7ggzCCmyAEmxCQYNESfG7r3un04eBAJjYwcLhGIlTSK7C/Ryb+haSNflEtCWuS5xcw0dILLkXLwcvexmHvme3XIU+rxFYZ4Jz3sROWiEuBgug9tXMh7lN21djxbu1Nf/pZzU1NTU1NbWf7QnZ5mwOAHicY2BkYGAAYrZdrHLx/DZfGbiZGEDgzjfXSgT9/wAjA+MBIJeDASwNAA4cCj0AAHicY2BkYGA88P8Agx6QAQSMYIQCWABQZgK3AAB4nGNkYBBkAAJGKB4KAAAOfQAVAAAAACoAKgAqADgARgBUAGIAcAB+AIwAmgCoALYAxADYAOYA9AECARABHgEsAToBSAFWAWQBcgGAAY4BnAGqAbgBxgHUAeIB8AH+AgwCGgIoAjYCRAJSAmACbgJ8AooCmAKmArQCwgLQAt4C7AL6AwgDFgMkAzIDQANOA1wDagN4A4YDlAOiA7ADvgPMA9oD6AP2BAQEEgQgBC4EPARKBFgEZgR0BIIEkASeBKwEugAAeJxjYGRgYAhj4GBgYgABEMnIABJzYNADCQAADScA1AB4nH2PvW7CMBSFj/krXSpeoJKHDiAR6mRAFStSVIkFMWToFhErWCQkMmFAVR+hax+hY5+vY0+MWTqQ6Mqfj4/vPQbwgB8IXL4xNp4Fhvj03MEdvj138YRfzz0MxbPnPkbizfOA+gedonfP3drdallghHfPHc798tzFKzNcuMc+j577kOLF84D6HktUqHGGhUGOHRpIZt5iwjWCYoWYkhMUSJHRVbIslRXdKanVS/Yw7hTLqj5bk+8aOd5OZKSicCqTIs1Maaxc7VJbpGVtMjqP2EPzuubQCgcKe13opiJtKOY4ud6WW52fipQQO2PjVkuHdilnzCmxYP1veVHbNwSYs64vQlwdmriyuZbRTMmFvI4mRmEwD9rcNxMmFC0Nxs9R/EOXRLk0SLQ9GjZUKpwppeStbn/Mg1tYAAAAeJxdzlkzggEARuGn1EXUWEJFubJU1iyRJcbQJoRC9t/dn8k3XXZu3plz8c4RNmI4kAkmZJzXkQ2bEBEVM2lKXMK0GbPmJM1bsCglHTwsWZaVs2LVmnUb8gqKNm3ZtmPXnpJ9Bw4dKTt2ouLUmXMXqi5duXbjVk1dQ1PLnbZ7Dx51PHn2oqsXdL151/fh05dvP379/QOXKRMwAAAA) format(\"woff\"); font-weight: 100,200,300,400,500,600,700,800,900; font-style: normal,italic; font-display: block;}}:host .skeleton-text{font-family:skeleton!important;-webkit-user-select:none;user-select:none}:host .skeleton-text,:host .skeleton-text *{color:var(--skeleton-color)!important;letter-spacing:-.03em!important}:host .skeleton-image{display:inline-block}:host .skeleton-image svg{max-width:100%;height:auto}:host .skeleton-image polygon{fill:var(--skeleton-color)}:host .skeleton-image path{fill:var(--skeleton-icon-color)}:host .skeleton-avatar{display:inline-block}:host .skeleton-avatar svg{max-width:100%;height:auto}:host .skeleton-avatar rect{fill:var(--skeleton-color)}:host .skeleton-avatar path{fill:var(--skeleton-icon-color)}:host .skeleton-effect-blink,:host .skeleton-effect-wave{-webkit-mask-image:linear-gradient(to right,transparent 0%,black 25%,black 75%,transparent 100%);mask-image:linear-gradient(to right,transparent 0%,black 25%,black 75%,transparent 100%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-position:50% top;mask-position:50% top;animation:skeleton-effect-wave 1s infinite}:host .skeleton-effect-fade{animation:skeleton-effect-fade 1s infinite}:host .skeleton-effect-pulse{animation:skeleton-effect-pulse 1s infinite}@keyframes skeleton-effect-fade{0%{opacity:1}50%{opacity:.2}to{opacity:1}}@keyframes skeleton-effect-wave{0%{-webkit-mask-position:50% top;mask-position:50% top}to{-webkit-mask-position:-150% top;mask-position:-150% top}}@keyframes skeleton-effect-pulse{0%{transform:scale(1)}40%{transform:scale(1)}50%{transform:scale(.975)}to{transform:scale(1)}}:host .mat-ripple-element{background-color:#0000001a}:host .mat-option{color:#000000de}:host .mat-option:hover:not(.mat-option-disabled),:host .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}:host .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}:host .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}:host .mat-option.mat-option-disabled{color:#00000061}:host .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#4a918e}:host .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#9cd8d7}:host .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ef4351}:host .mat-optgroup-label{color:#0000008a}:host .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}:host .mat-pseudo-checkbox{color:#0000008a}:host .mat-pseudo-checkbox:after{color:#fafafa}:host .mat-pseudo-checkbox-disabled{color:#b0b0b0}:host .mat-primary .mat-pseudo-checkbox-checked,:host .mat-primary .mat-pseudo-checkbox-indeterminate{background:#4a918e}:host .mat-pseudo-checkbox-checked,:host .mat-pseudo-checkbox-indeterminate,:host .mat-accent .mat-pseudo-checkbox-checked,:host .mat-accent .mat-pseudo-checkbox-indeterminate{background:#9cd8d7}:host .mat-warn .mat-pseudo-checkbox-checked,:host .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ef4351}:host .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,:host .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}:host .mat-app-background,:host.mat-app-background{background-color:#fafafa;color:#000000de}:host .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}:host .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}:host .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}:host .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}:host .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}:host .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}:host .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}:host .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}:host .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}:host .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}:host .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}:host .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}:host .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}:host .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}:host .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}:host .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}:host .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}:host .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}:host .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}:host .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}:host .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}:host .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}:host .mat-autocomplete-panel{background:white;color:#000000de}:host .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}:host .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}:host .mat-badge{position:relative}:host .mat-badge-hidden .mat-badge-content{display:none}:host .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}:host .ng-animate-disabled .mat-badge-content,:host .mat-badge-content._mat-animation-noopable{transition:none}:host .mat-badge-content.mat-badge-active{transform:none}:host .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}:host .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}:host .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}:host .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] :host .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}:host .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] :host .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}:host .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] :host .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}:host .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] :host .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}:host .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}:host .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}:host .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}:host .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] :host .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}:host .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] :host .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}:host .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] :host .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}:host .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] :host .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}:host .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}:host .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}:host .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}:host .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] :host .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}:host .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] :host .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}:host .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] :host .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}:host .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] :host .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}:host .mat-badge-content{color:#f1f4f6;background:#4a918e}.cdk-high-contrast-active :host .mat-badge-content{outline:solid 1px;border-radius:0}:host .mat-badge-accent .mat-badge-content{background:#9cd8d7;color:#282d35de}:host .mat-badge-warn .mat-badge-content{color:#f1f4f6;background:#ef4351}:host .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}:host .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}:host .mat-button,:host .mat-icon-button,:host .mat-stroked-button{color:inherit;background:transparent}:host .mat-button.mat-primary,:host .mat-icon-button.mat-primary,:host .mat-stroked-button.mat-primary{color:#4a918e}:host .mat-button.mat-accent,:host .mat-icon-button.mat-accent,:host .mat-stroked-button.mat-accent{color:#9cd8d7}:host .mat-button.mat-warn,:host .mat-icon-button.mat-warn,:host .mat-stroked-button.mat-warn{color:#ef4351}:host .mat-button.mat-primary.mat-button-disabled,:host .mat-button.mat-accent.mat-button-disabled,:host .mat-button.mat-warn.mat-button-disabled,:host .mat-button.mat-button-disabled.mat-button-disabled,:host .mat-icon-button.mat-primary.mat-button-disabled,:host .mat-icon-button.mat-accent.mat-button-disabled,:host .mat-icon-button.mat-warn.mat-button-disabled,:host .mat-icon-button.mat-button-disabled.mat-button-disabled,:host .mat-stroked-button.mat-primary.mat-button-disabled,:host .mat-stroked-button.mat-accent.mat-button-disabled,:host .mat-stroked-button.mat-warn.mat-button-disabled,:host .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}:host .mat-button.mat-primary .mat-button-focus-overlay,:host .mat-icon-button.mat-primary .mat-button-focus-overlay,:host .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#4a918e}:host .mat-button.mat-accent .mat-button-focus-overlay,:host .mat-icon-button.mat-accent .mat-button-focus-overlay,:host .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#9cd8d7}:host .mat-button.mat-warn .mat-button-focus-overlay,:host .mat-icon-button.mat-warn .mat-button-focus-overlay,:host .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ef4351}:host .mat-button.mat-button-disabled .mat-button-focus-overlay,:host .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,:host .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}:host .mat-button .mat-ripple-element,:host .mat-icon-button .mat-ripple-element,:host .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}:host .mat-button-focus-overlay{background:black}:host .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}:host .mat-flat-button,:host .mat-raised-button,:host .mat-fab,:host .mat-mini-fab{color:#000000de;background-color:#fff}:host .mat-flat-button.mat-primary,:host .mat-raised-button.mat-primary,:host .mat-fab.mat-primary,:host .mat-mini-fab.mat-primary{color:#f1f4f6}:host .mat-flat-button.mat-accent,:host .mat-raised-button.mat-accent,:host .mat-fab.mat-accent,:host .mat-mini-fab.mat-accent{color:#282d35de}:host .mat-flat-button.mat-warn,:host .mat-raised-button.mat-warn,:host .mat-fab.mat-warn,:host .mat-mini-fab.mat-warn{color:#f1f4f6}:host .mat-flat-button.mat-primary.mat-button-disabled,:host .mat-flat-button.mat-accent.mat-button-disabled,:host .mat-flat-button.mat-warn.mat-button-disabled,:host .mat-flat-button.mat-button-disabled.mat-button-disabled,:host .mat-raised-button.mat-primary.mat-button-disabled,:host .mat-raised-button.mat-accent.mat-button-disabled,:host .mat-raised-button.mat-warn.mat-button-disabled,:host .mat-raised-button.mat-button-disabled.mat-button-disabled,:host .mat-fab.mat-primary.mat-button-disabled,:host .mat-fab.mat-accent.mat-button-disabled,:host .mat-fab.mat-warn.mat-button-disabled,:host .mat-fab.mat-button-disabled.mat-button-disabled,:host .mat-mini-fab.mat-primary.mat-button-disabled,:host .mat-mini-fab.mat-accent.mat-button-disabled,:host .mat-mini-fab.mat-warn.mat-button-disabled,:host .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}:host .mat-flat-button.mat-primary,:host .mat-raised-button.mat-primary,:host .mat-fab.mat-primary,:host .mat-mini-fab.mat-primary{background-color:#4a918e}:host .mat-flat-button.mat-accent,:host .mat-raised-button.mat-accent,:host .mat-fab.mat-accent,:host .mat-mini-fab.mat-accent{background-color:#9cd8d7}:host .mat-flat-button.mat-warn,:host .mat-raised-button.mat-warn,:host .mat-fab.mat-warn,:host .mat-mini-fab.mat-warn{background-color:#ef4351}:host .mat-flat-button.mat-primary.mat-button-disabled,:host .mat-flat-button.mat-accent.mat-button-disabled,:host .mat-flat-button.mat-warn.mat-button-disabled,:host .mat-flat-button.mat-button-disabled.mat-button-disabled,:host .mat-raised-button.mat-primary.mat-button-disabled,:host .mat-raised-button.mat-accent.mat-button-disabled,:host .mat-raised-button.mat-warn.mat-button-disabled,:host .mat-raised-button.mat-button-disabled.mat-button-disabled,:host .mat-fab.mat-primary.mat-button-disabled,:host .mat-fab.mat-accent.mat-button-disabled,:host .mat-fab.mat-warn.mat-button-disabled,:host .mat-fab.mat-button-disabled.mat-button-disabled,:host .mat-mini-fab.mat-primary.mat-button-disabled,:host .mat-mini-fab.mat-accent.mat-button-disabled,:host .mat-mini-fab.mat-warn.mat-button-disabled,:host .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}:host .mat-flat-button.mat-primary .mat-ripple-element,:host .mat-raised-button.mat-primary .mat-ripple-element,:host .mat-fab.mat-primary .mat-ripple-element,:host .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#f1f4f61a}:host .mat-flat-button.mat-accent .mat-ripple-element,:host .mat-raised-button.mat-accent .mat-ripple-element,:host .mat-fab.mat-accent .mat-ripple-element,:host .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#282d351a}:host .mat-flat-button.mat-warn .mat-ripple-element,:host .mat-raised-button.mat-warn .mat-ripple-element,:host .mat-fab.mat-warn .mat-ripple-element,:host .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#f1f4f61a}:host .mat-stroked-button:not([class*=mat-elevation-z]),:host .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}:host .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-fab:not([class*=mat-elevation-z]),:host .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}:host .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),:host .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}:host .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),:host .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-button-toggle-standalone,:host .mat-button-toggle-group{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,:host .mat-button-toggle-group-appearance-standard{box-shadow:none}:host .mat-button-toggle{color:#00000061}:host .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}:host .mat-button-toggle-appearance-standard{color:#000000de;background:white}:host .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}:host .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px rgba(0,0,0,.12)}:host [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}:host .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px rgba(0,0,0,.12)}:host .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}:host .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}:host .mat-button-toggle-disabled{color:#00000042;background-color:#eee}:host .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}:host .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}:host .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,:host .mat-button-toggle-group-appearance-standard{border:solid 1px rgba(0,0,0,.12)}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:48px}:host .mat-card{background:white;color:#000000de}:host .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}:host .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-card-subtitle{color:#0000008a}:host .mat-checkbox-frame{border-color:#0000008a}:host .mat-checkbox-checkmark{fill:#fafafa}:host .mat-checkbox-checkmark-path{stroke:#fafafa!important}:host .mat-checkbox-mixedmark{background-color:#fafafa}:host .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,:host .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#4a918e}:host .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,:host .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#9cd8d7}:host .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,:host .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ef4351}:host .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,:host .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}:host .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}:host .mat-checkbox-disabled .mat-checkbox-label{color:#0000008a}:host .mat-checkbox .mat-ripple-element{background-color:#000}:host .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,:host .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#4a918e}:host .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,:host .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#9cd8d7}:host .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,:host .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ef4351}:host .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}:host .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}:host .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}:host .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}:host .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}:host .mat-chip.mat-standard-chip:after{background:black}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#4a918e;color:#f1f4f6}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#f1f4f6;opacity:.4}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#f1f4f61a}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ef4351;color:#f1f4f6}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#f1f4f6;opacity:.4}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#f1f4f61a}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#9cd8d7;color:#282d35de}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#282d35de;opacity:.4}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#282d351a}:host .mat-table{background:white}:host .mat-table thead,:host .mat-table tbody,:host .mat-table tfoot,:host mat-header-row,:host mat-row,:host mat-footer-row,:host [mat-header-row],:host [mat-row],:host [mat-footer-row],:host .mat-table-sticky{background:inherit}:host mat-row,:host mat-header-row,:host mat-footer-row,:host th.mat-header-cell,:host td.mat-cell,:host td.mat-footer-cell{border-bottom-color:#0000001f}:host .mat-header-cell{color:#0000008a}:host .mat-cell,:host .mat-footer-cell{color:#000000de}:host .mat-calendar-arrow{fill:#0000008a}:host .mat-datepicker-toggle,:host .mat-datepicker-content .mat-calendar-next-button,:host .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}:host .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}:host .mat-calendar-table-header,:host .mat-calendar-body-label{color:#0000008a}:host .mat-calendar-body-cell-content,:host .mat-date-range-input-separator{color:#000000de;border-color:transparent}:host .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}:host .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}:host .mat-calendar-body-in-preview{color:#0000003d}:host .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}:host .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}:host .mat-calendar-body-in-range:before{background:rgba(74,145,142,.2)}:host .mat-calendar-body-comparison-identical,:host .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}:host .mat-calendar-body-comparison-bridge-start:before,:host [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(74,145,142,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-calendar-body-comparison-bridge-end:before,:host [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(74,145,142,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,:host .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}:host .mat-calendar-body-comparison-identical.mat-calendar-body-selected,:host .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}:host .mat-calendar-body-selected{background-color:#4a918e;color:#f1f4f6}:host .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#4a918e66}:host .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #f1f4f6}:host .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),:host .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4a918e4d}@media (hover: hover){:host .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4a918e4d}}:host .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(156,216,215,.2)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,:host .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(156,216,215,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,:host .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(156,216,215,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}:host .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#9cd8d7;color:#282d35de}:host .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#9cd8d766}:host .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #282d35de}:host .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),:host .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#9cd8d74d}@media (hover: hover){:host .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#9cd8d74d}}:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(239,67,81,.2)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,:host .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(239,67,81,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,:host .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(239,67,81,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}:host .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ef4351;color:#f1f4f6}:host .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ef435166}:host .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #f1f4f6}:host .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),:host .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ef43514d}@media (hover: hover){:host .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ef43514d}}:host .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}:host .mat-datepicker-toggle-active{color:#4a918e}:host .mat-datepicker-toggle-active.mat-accent{color:#9cd8d7}:host .mat-datepicker-toggle-active.mat-warn{color:#ef4351}:host .mat-date-range-input-inner[disabled]{color:#00000061}:host .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}:host .mat-divider{border-top-color:#0000001f}:host .mat-divider-vertical{border-right-color:#0000001f}:host .mat-expansion-panel{background:white;color:#000000de}:host .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-action-row{border-top-color:#0000001f}:host .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),:host .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),:host .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){:host .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}:host .mat-expansion-panel-header-title{color:#000000de}:host .mat-expansion-panel-header-description,:host .mat-expansion-indicator:after{color:#0000008a}:host .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}:host .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,:host .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header{height:48px}.mat-expansion-panel-header.mat-expanded{height:64px}:host .mat-form-field-label{color:#0009}:host .mat-hint{color:#0009}:host .mat-form-field.mat-focused .mat-form-field-label{color:#4a918e}:host .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#9cd8d7}:host .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ef4351}:host .mat-focused .mat-form-field-required-marker{color:#9cd8d7}:host .mat-form-field-ripple{background-color:#000000de}:host .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#4a918e}:host .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#9cd8d7}:host .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ef4351}:host .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#4a918e}:host .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#9cd8d7}:host .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ef4351}:host .mat-form-field.mat-form-field-invalid .mat-form-field-label{color:#ef4351}:host .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,:host .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ef4351}:host .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,:host .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ef4351}:host .mat-error{color:#ef4351}:host .mat-form-field-appearance-legacy .mat-form-field-label{color:#0000008a}:host .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}:host .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}:host .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}:host .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}:host .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}:host .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}:host .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}:host .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}:host .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}:host .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}:host .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}:host .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}:host .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#4a918e}:host .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#9cd8d7}:host .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick{color:#ef4351}:host .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ef4351}:host .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}:host .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}:host .mat-icon.mat-primary{color:#4a918e}:host .mat-icon.mat-accent{color:#9cd8d7}:host .mat-icon.mat-warn{color:#ef4351}:host .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}:host .mat-input-element:disabled,:host .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}:host .mat-input-element{caret-color:#4a918e}:host .mat-input-element::placeholder{color:#0000006b}:host .mat-input-element::-moz-placeholder{color:#0000006b}:host .mat-input-element::-webkit-input-placeholder{color:#0000006b}:host .mat-input-element:-ms-input-placeholder{color:#0000006b}:host .mat-form-field.mat-accent .mat-input-element{caret-color:#9cd8d7}:host .mat-form-field.mat-warn .mat-input-element,:host .mat-form-field-invalid .mat-input-element{caret-color:#ef4351}:host .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ef4351}:host .mat-list-base .mat-list-item{color:#000000de}:host .mat-list-base .mat-list-option{color:#000000de}:host .mat-list-base .mat-subheader{color:#0000008a}:host .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}:host .mat-list-option:hover,:host .mat-list-option:focus,:host .mat-nav-list .mat-list-item:hover,:host .mat-nav-list .mat-list-item:focus,:host .mat-action-list .mat-list-item:hover,:host .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}:host .mat-list-single-selected-option,:host .mat-list-single-selected-option:hover,:host .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}:host .mat-menu-panel{background:white}:host .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-menu-item{background:transparent;color:#000000de}:host .mat-menu-item[disabled],:host .mat-menu-item[disabled] .mat-menu-submenu-icon,:host .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}:host .mat-menu-item .mat-icon-no-color,:host .mat-menu-submenu-icon{color:#0000008a}:host .mat-menu-item:hover:not([disabled]),:host .mat-menu-item.cdk-program-focused:not([disabled]),:host .mat-menu-item.cdk-keyboard-focused:not([disabled]),:host .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}:host .mat-paginator{background:white}:host .mat-paginator,:host .mat-paginator-page-size .mat-select-trigger{color:#0000008a}:host .mat-paginator-decrement,:host .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}:host .mat-paginator-first,:host .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}:host .mat-icon-button[disabled] .mat-paginator-decrement,:host .mat-icon-button[disabled] .mat-paginator-increment,:host .mat-icon-button[disabled] .mat-paginator-first,:host .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.mat-paginator-container{min-height:56px}:host .mat-progress-bar-background{fill:#cee0df}:host .mat-progress-bar-buffer{background-color:#cee0df}:host .mat-progress-bar-fill:after{background-color:#4a918e}:host .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#e3f2f1}:host .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#e3f2f1}:host .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#9cd8d7}:host .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#f7ccd0}:host .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#f7ccd0}:host .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ef4351}:host .mat-progress-spinner circle,:host .mat-spinner circle{stroke:#4a918e}:host .mat-progress-spinner.mat-accent circle,:host .mat-spinner.mat-accent circle{stroke:#9cd8d7}:host .mat-progress-spinner.mat-warn circle,:host .mat-spinner.mat-warn circle{stroke:#ef4351}:host .mat-radio-outer-circle{border-color:#0000008a}:host .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#4a918e}:host .mat-radio-button.mat-primary .mat-radio-inner-circle,:host .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),:host .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,:host .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#4a918e}:host .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#9cd8d7}:host .mat-radio-button.mat-accent .mat-radio-inner-circle,:host .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),:host .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,:host .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#9cd8d7}:host .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ef4351}:host .mat-radio-button.mat-warn .mat-radio-inner-circle,:host .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),:host .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,:host .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ef4351}:host .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,:host .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}:host .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,:host .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}:host .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}:host .mat-radio-button .mat-ripple-element{background-color:#000}:host .mat-select-value{color:#000000de}:host .mat-select-placeholder{color:#0000006b}:host .mat-select-disabled .mat-select-value{color:#00000061}:host .mat-select-arrow{color:#0000008a}:host .mat-select-panel{background:white}:host .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}:host .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#4a918e}:host .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#9cd8d7}:host .mat-form-field.mat-focused.mat-warn .mat-select-arrow{color:#ef4351}:host .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ef4351}:host .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}:host .mat-drawer-container{background-color:#fafafa;color:#000000de}:host .mat-drawer{background-color:#fff;color:#000000de}:host .mat-drawer.mat-drawer-push{background-color:#fff}:host .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}:host .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}:host .mat-drawer-side.mat-drawer-end{border-left:solid 1px rgba(0,0,0,.12);border-right:none}:host [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}:host [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}:host .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}:host .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#9cd8d7}:host .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#9cd8d78a}:host .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#9cd8d7}:host .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#4a918e}:host .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#4a918e8a}:host .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#4a918e}:host .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ef4351}:host .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ef43518a}:host .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ef4351}:host .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}:host .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}:host .mat-slide-toggle-bar{background-color:#00000061}:host .mat-slider-track-background{background-color:#00000042}:host .mat-slider.mat-primary .mat-slider-track-fill,:host .mat-slider.mat-primary .mat-slider-thumb,:host .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#4a918e}:host .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#f1f4f6}:host .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#4a918e33}:host .mat-slider.mat-accent .mat-slider-track-fill,:host .mat-slider.mat-accent .mat-slider-thumb,:host .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#9cd8d7}:host .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#282d35de}:host .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#9cd8d733}:host .mat-slider.mat-warn .mat-slider-track-fill,:host .mat-slider.mat-warn .mat-slider-thumb,:host .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ef4351}:host .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#f1f4f6}:host .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ef435133}:host .mat-slider:hover .mat-slider-track-background,:host .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}:host .mat-slider.mat-slider-disabled .mat-slider-track-background,:host .mat-slider.mat-slider-disabled .mat-slider-track-fill,:host .mat-slider.mat-slider-disabled .mat-slider-thumb{background-color:#00000042}:host .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}:host .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}:host .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}:host .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}:host .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}:host .mat-step-header.cdk-keyboard-focused,:host .mat-step-header.cdk-program-focused,:host .mat-step-header:hover:not([aria-disabled]),:host .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}:host .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){:host .mat-step-header:hover{background:none}}:host .mat-step-header .mat-step-label,:host .mat-step-header .mat-step-optional{color:#0000008a}:host .mat-step-header .mat-step-icon{background-color:#0000008a;color:#f1f4f6}:host .mat-step-header .mat-step-icon-selected,:host .mat-step-header .mat-step-icon-state-done,:host .mat-step-header .mat-step-icon-state-edit{background-color:#4a918e;color:#f1f4f6}:host .mat-step-header.mat-accent .mat-step-icon{color:#282d35de}:host .mat-step-header.mat-accent .mat-step-icon-selected,:host .mat-step-header.mat-accent .mat-step-icon-state-done,:host .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#9cd8d7;color:#282d35de}:host .mat-step-header.mat-warn .mat-step-icon{color:#f1f4f6}:host .mat-step-header.mat-warn .mat-step-icon-selected,:host .mat-step-header.mat-warn .mat-step-icon-state-done,:host .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ef4351;color:#f1f4f6}:host .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ef4351}:host .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}:host .mat-step-header .mat-step-label.mat-step-label-error{color:#ef4351}:host .mat-stepper-horizontal,:host .mat-stepper-vertical{background-color:#fff}:host .mat-stepper-vertical-line:before{border-left-color:#0000001f}:host .mat-horizontal-stepper-header:before,:host .mat-horizontal-stepper-header:after,:host .mat-stepper-horizontal-line{border-top-color:#0000001f}.mat-horizontal-stepper-header{height:72px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,.mat-vertical-stepper-header{padding:24px}.mat-stepper-vertical-line:before{top:-16px;bottom:-16px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:after,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:before{top:36px}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{top:36px}:host .mat-sort-header-arrow{color:#757575}:host .mat-tab-nav-bar,:host .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}:host .mat-tab-group-inverted-header .mat-tab-nav-bar,:host .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}:host .mat-tab-label,:host .mat-tab-link{color:#000000de}:host .mat-tab-label.mat-tab-disabled,:host .mat-tab-link.mat-tab-disabled{color:#00000061}:host .mat-tab-header-pagination-chevron{border-color:#000000de}:host .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}:host .mat-tab-group[class*=mat-background-]>.mat-tab-header,:host .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}:host .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#c9dedd4d}:host .mat-tab-group.mat-primary .mat-ink-bar,:host .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#4a918e}:host .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,:host .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,:host .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,:host .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#f1f4f6}:host .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e1f3f34d}:host .mat-tab-group.mat-accent .mat-ink-bar,:host .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#9cd8d7}:host .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,:host .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,:host .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,:host .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#282d35de}:host .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#fac7cb4d}:host .mat-tab-group.mat-warn .mat-ink-bar,:host .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ef4351}:host .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,:host .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,:host .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,:host .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#f1f4f6}:host .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#c9dedd4d}:host .mat-tab-group.mat-background-primary>.mat-tab-header,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#4a918e}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#f1f4f6}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#f1f4f666}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#f1f4f6}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#f1f4f6;opacity:.4}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#f1f4f6;opacity:.12}:host .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e1f3f34d}:host .mat-tab-group.mat-background-accent>.mat-tab-header,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#9cd8d7}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#282d35de}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#282d3566}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#282d35de}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#282d35;opacity:.4}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#282d35;opacity:.12}:host .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#fac7cb4d}:host .mat-tab-group.mat-background-warn>.mat-tab-header,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ef4351}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#f1f4f6}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#f1f4f666}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#f1f4f6}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#f1f4f6;opacity:.4}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#f1f4f6;opacity:.12}:host .mat-toolbar{background:whitesmoke;color:#000000de}:host .mat-toolbar.mat-primary{background:#4a918e;color:#f1f4f6}:host .mat-toolbar.mat-accent{background:#9cd8d7;color:#282d35de}:host .mat-toolbar.mat-warn{background:#ef4351;color:#f1f4f6}:host .mat-toolbar .mat-form-field-underline,:host .mat-toolbar .mat-form-field-ripple,:host .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}:host .mat-toolbar .mat-form-field-label,:host .mat-toolbar .mat-focused .mat-form-field-label,:host .mat-toolbar .mat-select-value,:host .mat-toolbar .mat-select-arrow,:host .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}:host .mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media (max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}:host .mat-tooltip{background:rgba(97,97,97,.9)}:host .mat-tree{background:white}:host .mat-tree-node,:host .mat-nested-tree-node{color:#000000de}.mat-tree-node{min-height:48px}:host .mat-snack-bar-container{color:#f1f4f6b3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}:host .mat-simple-snackbar-action{color:#9cd8d7}:host .primary-50{background-color:#e9f2f1!important;color:#282d35de}:host .primary-100{background-color:#c9dedd!important;color:#282d35de}:host .primary-200{background-color:#a5c8c7!important;color:#282d35de}:host .primary-300{background-color:#80b2b0!important;color:#282d35de}:host .primary-400{background-color:#65a29f!important;color:#282d35de}:host .primary-500{background-color:#4a918e!important;color:#f1f4f6}:host .primary{background-color:#4a918e!important;color:#f1f4f6}:host .primary-600{background-color:#438986!important;color:#f1f4f6}:host .primary-700{background-color:#3a7e7b!important;color:#f1f4f6}:host .primary-800{background-color:#327471!important;color:#f1f4f6}:host .primary-900{background-color:#22625f!important;color:#f1f4f6}:host .primary-A100{background-color:#a4fffb!important;color:#282d35de}:host .primary-A200{background-color:#71fff8!important;color:#282d35de}:host .primary-A400{background-color:#3efff6!important;color:#282d35de}:host .primary-A700{background-color:#25fff4!important;color:#282d35de}:host .primary-contrast-50{color:#282d35de!important}:host .primary-contrast-100{color:#282d35de!important}:host .primary-contrast-200{color:#282d35de!important}:host .primary-contrast-300{color:#282d35de!important}:host .primary-contrast-400{color:#282d35de!important}:host .primary-contrast-500{color:#f1f4f6!important}:host .primary-contrast-600{color:#f1f4f6!important}:host .primary-contrast-700{color:#f1f4f6!important}:host .primary-contrast-800{color:#f1f4f6!important}:host .primary-contrast-900{color:#f1f4f6!important}:host .primary-contrast-A100{color:#282d35de!important}:host .primary-contrast-A200{color:#282d35de!important}:host .primary-contrast-A400{color:#282d35de!important}:host .primary-contrast-A700{color:#282d35de!important}:host .primary-default{background-color:#4a918e!important}:host .primary-lighter{background-color:#c9dedd!important}:host .primary-darker{background-color:#3a7e7b!important}:host .primary-text{background-color:#4a918e!important}:host .primary-default-contrast{background-color:#f1f4f6!important}:host .primary-lighter-contrast{background-color:#282d35de!important}:host .primary-darker-contrast{background-color:#f1f4f6!important}:host .primary-50-contrast{background-color:#282d35de!important}:host .primary-100-contrast{background-color:#282d35de!important}:host .primary-200-contrast{background-color:#282d35de!important}:host .primary-300-contrast{background-color:#282d35de!important}:host .primary-400-contrast{background-color:#282d35de!important}:host .primary-500-contrast{background-color:#f1f4f6!important}:host .primary-600-contrast{background-color:#f1f4f6!important}:host .primary-700-contrast{background-color:#f1f4f6!important}:host .primary-800-contrast{background-color:#f1f4f6!important}:host .primary-900-contrast{background-color:#f1f4f6!important}:host .primary-A100-contrast{background-color:#282d35de!important}:host .primary-A200-contrast{background-color:#282d35de!important}:host .primary-A400-contrast{background-color:#282d35de!important}:host .primary-A700-contrast{background-color:#282d35de!important}:host .primary-contrast-contrast{background-color:!important}:host .accent-50{background-color:#f3fafa!important;color:#282d35de}:host .accent-100{background-color:#e1f3f3!important;color:#282d35de}:host .accent-200{background-color:#ceeceb!important;color:#282d35de}:host .accent-300{background-color:#bae4e3!important;color:#282d35de}:host .accent-400{background-color:#abdedd!important;color:#282d35de}:host .accent-500{background-color:#9cd8d7!important;color:#282d35de}:host .accent{background-color:#9cd8d7!important;color:#282d35de}:host .accent-600{background-color:#94d4d3!important;color:#282d35de}:host .accent-700{background-color:#8acecd!important;color:#f1f4f6}:host .accent-800{background-color:#80c8c7!important;color:#f1f4f6}:host .accent-900{background-color:#6ebfbe!important;color:#f1f4f6}:host .accent-A100{background-color:#fff!important;color:#282d35de}:host .accent-A200{background-color:#fff!important;color:#282d35de}:host .accent-A400{background-color:#d2fffe!important;color:#282d35de}:host .accent-A700{background-color:#b8fffe!important;color:#282d35de}:host .accent-contrast-50{color:#282d35de!important}:host .accent-contrast-100{color:#282d35de!important}:host .accent-contrast-200{color:#282d35de!important}:host .accent-contrast-300{color:#282d35de!important}:host .accent-contrast-400{color:#282d35de!important}:host .accent-contrast-500{color:#282d35de!important}:host .accent-contrast-600{color:#282d35de!important}:host .accent-contrast-700{color:#f1f4f6!important}:host .accent-contrast-800{color:#f1f4f6!important}:host .accent-contrast-900{color:#f1f4f6!important}:host .accent-contrast-A100{color:#282d35de!important}:host .accent-contrast-A200{color:#282d35de!important}:host .accent-contrast-A400{color:#282d35de!important}:host .accent-contrast-A700{color:#282d35de!important}:host .accent-default{background-color:#9cd8d7!important}:host .accent-lighter{background-color:#e1f3f3!important}:host .accent-darker{background-color:#8acecd!important}:host .accent-text{background-color:#9cd8d7!important}:host .accent-default-contrast{background-color:#282d35de!important}:host .accent-lighter-contrast{background-color:#282d35de!important}:host .accent-darker-contrast{background-color:#f1f4f6!important}:host .accent-50-contrast{background-color:#282d35de!important}:host .accent-100-contrast{background-color:#282d35de!important}:host .accent-200-contrast{background-color:#282d35de!important}:host .accent-300-contrast{background-color:#282d35de!important}:host .accent-400-contrast{background-color:#282d35de!important}:host .accent-500-contrast{background-color:#282d35de!important}:host .accent-600-contrast{background-color:#282d35de!important}:host .accent-700-contrast{background-color:#f1f4f6!important}:host .accent-800-contrast{background-color:#f1f4f6!important}:host .accent-900-contrast{background-color:#f1f4f6!important}:host .accent-A100-contrast{background-color:#282d35de!important}:host .accent-A200-contrast{background-color:#282d35de!important}:host .accent-A400-contrast{background-color:#282d35de!important}:host .accent-A700-contrast{background-color:#282d35de!important}:host .accent-contrast-contrast{background-color:!important}:host .warn-50{background-color:#fde8ea!important;color:#282d35de}:host .warn-100{background-color:#fac7cb!important;color:#282d35de}:host .warn-200{background-color:#f7a1a8!important;color:#282d35de}:host .warn-300{background-color:#f47b85!important;color:#282d35de}:host .warn-400{background-color:#f15f6b!important;color:#282d35de}:host .warn-500{background-color:#ef4351!important;color:#f1f4f6}:host .warn{background-color:#ef4351!important;color:#f1f4f6}:host .warn-600{background-color:#ed3d4a!important;color:#f1f4f6}:host .warn-700{background-color:#eb3440!important;color:#f1f4f6}:host .warn-800{background-color:#e82c37!important;color:#f1f4f6}:host .warn-900{background-color:#e41e27!important;color:#f1f4f6}:host .warn-A100{background-color:#fff!important;color:#282d35de}:host .warn-A200{background-color:#ffe6e7!important;color:#282d35de}:host .warn-A400{background-color:#ffb3b6!important;color:#282d35de}:host .warn-A700{background-color:#ff9a9e!important;color:#282d35de}:host .warn-contrast-50{color:#282d35de!important}:host .warn-contrast-100{color:#282d35de!important}:host .warn-contrast-200{color:#282d35de!important}:host .warn-contrast-300{color:#282d35de!important}:host .warn-contrast-400{color:#282d35de!important}:host .warn-contrast-500{color:#f1f4f6!important}:host .warn-contrast-600{color:#f1f4f6!important}:host .warn-contrast-700{color:#f1f4f6!important}:host .warn-contrast-800{color:#f1f4f6!important}:host .warn-contrast-900{color:#f1f4f6!important}:host .warn-contrast-A100{color:#282d35de!important}:host .warn-contrast-A200{color:#282d35de!important}:host .warn-contrast-A400{color:#282d35de!important}:host .warn-contrast-A700{color:#282d35de!important}:host .warn-default{background-color:#ef4351!important}:host .warn-lighter{background-color:#fac7cb!important}:host .warn-darker{background-color:#eb3440!important}:host .warn-text{background-color:#ef4351!important}:host .warn-default-contrast{background-color:#f1f4f6!important}:host .warn-lighter-contrast{background-color:#282d35de!important}:host .warn-darker-contrast{background-color:#f1f4f6!important}:host .warn-50-contrast{background-color:#282d35de!important}:host .warn-100-contrast{background-color:#282d35de!important}:host .warn-200-contrast{background-color:#282d35de!important}:host .warn-300-contrast{background-color:#282d35de!important}:host .warn-400-contrast{background-color:#282d35de!important}:host .warn-500-contrast{background-color:#f1f4f6!important}:host .warn-600-contrast{background-color:#f1f4f6!important}:host .warn-700-contrast{background-color:#f1f4f6!important}:host .warn-800-contrast{background-color:#f1f4f6!important}:host .warn-900-contrast{background-color:#f1f4f6!important}:host .warn-A100-contrast{background-color:#282d35de!important}:host .warn-A200-contrast{background-color:#282d35de!important}:host .warn-A400-contrast{background-color:#282d35de!important}:host .warn-A700-contrast{background-color:#282d35de!important}:host .warn-contrast-contrast{background-color:!important}:host ::-webkit-scrollbar{width:.75rem}:host ::-webkit-scrollbar-track{background:#4a918e}:host ::-webkit-scrollbar-thumb{background:#9cd8d7}:host .primary-logo{height:100%;width:auto;background-image:url('data:image/svg+xml;utf8,<svg id=\"thinky-black\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 75 64.53\"><defs><style>.cls-1{fill:%23000;}<\\/style></defs><title>thinky_logos</title><path class=\"cls-1\" d=\"M205,238.68l.07.6c.4,3.5,1.61,14.14,13.89,14.14a12.8,12.8,0,0,0,10-4.31A12.44,12.44,0,0,0,231.55,239a28.41,28.41,0,0,0-2-6.31,22,22,0,0,1-2-9.17c0-3.37,1-11.23,10.81-11.23s10.82,7.86,10.82,11.23a21.79,21.79,0,0,1-2,9.17,29.69,29.69,0,0,0-2,6.31,12.41,12.41,0,0,0,2.62,10.15,12.8,12.8,0,0,0,10,4.31c12.27,0,13.49-10.63,13.88-14.14l.07-.6c.35-3.1.63-3.1,1.83-3.1v-7.85c-5.66,0-8.9,3.39-9.64,10.08l-.07.58c-.58,5.05-1.54,7.16-6.08,7.16a5.08,5.08,0,0,1-4-1.52,4.62,4.62,0,0,1-.86-3.77,22.5,22.5,0,0,1,1.5-4.68,29.28,29.28,0,0,0,2.61-12.1c0-9.51-5.74-19.1-18.65-19.1s-18.68,9.59-18.68,19.1a29.44,29.44,0,0,0,2.61,12.1,21.92,21.92,0,0,1,1.5,4.68,4.58,4.58,0,0,1-.86,3.77,5.06,5.06,0,0,1-4,1.52c-4.53,0-5.51-2.11-6.09-7.16l-.06-.58c-.74-6.69-4-10.08-9.64-10.08v7.85C204.33,235.58,204.62,235.58,205,238.68Z\" transform=\"translate(-200.96 -204.38)\"/><rect class=\"cls-1\" x=\"32.35\" y=\"23.32\" width=\"3.7\" height=\"6.42\"/><rect class=\"cls-1\" x=\"38.78\" y=\"23.32\" width=\"3.7\" height=\"6.42\"/><path class=\"cls-1\" d=\"M271.4,257.35c-4.55,4.26-10.46,4.91-13.58,4.91a18.82,18.82,0,0,1-14.69-6.48,17.09,17.09,0,0,1-1.86-2.68L240.08,251h-3.42l-1.18,2.09a18.61,18.61,0,0,1-1.87,2.68,18.8,18.8,0,0,1-14.69,6.48c-3.08,0-8.93-.62-13.45-4.78l-4.51,4.9c6.19,5.69,13.91,6.54,18,6.54a25.43,25.43,0,0,0,19.45-8.47,25.41,25.41,0,0,0,19.45,8.47c4.1,0,11.93-.87,18.14-6.72Z\" transform=\"translate(-200.96 -204.38)\"/></svg>');background-position:center;background-repeat:no-repeat;background-size:150px}:host :root{--initial-primary: #4a918e;--initial-accent: #9cd8d7;--initial-warn: #ef4351;--initial-dark-background: #222222;--initial-light-background: #f2f2f2;--initial-light-background: white;--initial-light-text: rgba(0, 0, 0, .87);--initial-dark-text: rgba(255, 255, 255, .87);--background: #050505;--orange-accent: #ff9800;--green-accent: #00e676;--yellow-accent: #fdd835;--purple-accent: #9c27b0;--cyan-accent: rgba(132, 255, 255, .75);--pink-accent: #e91e63;--success: #00e676}:host body{background-color:var(--initial-dark-background)}:host ::ng-deep .mat-tooltip{font-size:16px!important}:host :host .valid-control{color:var(--green-accent)}:host :host .invalid-control{color:var(--theme-warn-500)}:host :host .actions .item:not(:last-child){margin-right:0}:host :host .project-thumbnail img{height:50px;width:auto}:host :host .active{background-color:var(--theme-accent-400);transition:background-color 1s linear}:host :host .inactive{background-color:#f2f5a900;transition:background-color 1s linear}:host :host .expansion-panel{width:100%;margin-bottom:10px}:host :host .expansion-container{max-height:300px;overflow-y:auto}:host :host .divider-fill-vert{background-color:var(--theme-accent-500);min-height:100%;top:10%;bottom:10%;min-width:5px}:host :host .divider-fill-hor{background-color:var(--theme-accent-500);height:5px;width:100%}:host :host .form-disabled{background-color:#797979;opacity:.5;border-radius:4px}:host ::ng-deep input:-webkit-autofill,:host input:-webkit-autofill:hover,:host input:-webkit-autofill:focus,:host input:-webkit-autofill:active{-webkit-transition:background-color 5000s ease-in-out 0s;transition:background-color 5000s ease-in-out 0s;-webkit-text-fill-color:currentColor}@media (max-width: 768px){:host .spread{margin:1em!important}}@media (max-width: 480px){:host .spread{margin:.5em!important}}:host .spinner-logo{display:none!important}:host :host ::ng-deep .social-card{margin:20px;padding:15px 5px}:host :host ::ng-deep mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}:host :host ::ng-deep .main-slot-container{padding:10px}:host :host ::ng-deep .slot-header{align-items:center;cursor:pointer}:host :host ::ng-deep .slot-header:hover{color:var(--initial-primary)}:host :host ::ng-deep .slot-content{width:100%}:host :host ::ng-deep .slot-name{font-size:13px;font-weight:600}:host :host ::ng-deep .slot-header-anchor{font-size:10px;text-decoration:none;color:#000;min-width:100px}:host :host ::ng-deep .slot-header-anchor:hover{color:var(--initial-primary)}:host :host ::ng-deep .slot-description{font-size:12px;margin-right:10px}:host :host ::ng-deep .slot-action-anchor{font-size:10px;text-decoration:none;color:#000}:host :host ::ng-deep .slot-action-anchor:hover{color:var(--initial-primary)}:host :host ::ng-deep .action-icon{height:24px;width:24px;font-size:24px;cursor:pointer}:host .example-header-image{background-size:cover}:host .mat-icon{display:inline-flex;vertical-align:middle}:host .mat-icon.spin{animation:rotate 1s ease-in-out infinite}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(-360deg)}}:host .tab{margin:2em}:host .tab .video iframe{display:block;margin:auto}\n"], components: [{ type: i4.MatCard, selector: "mat-card", exportAs: ["matCard"] }, { type: i4.MatCardHeader, selector: "mat-card-header" }, { type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: i6.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "disableRipple"], exportAs: ["matTabGroup"] }, { type: i6.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { type: i7.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], directives: [{ type: i8.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.MatCardAvatar, selector: "[mat-card-avatar], [matCardAvatar]" }, { type: i4.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { type: i4.MatCardSubtitle, selector: "mat-card-subtitle, [mat-card-subtitle], [matCardSubtitle]" }, { type: i8.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i4.MatCardContent, selector: "mat-card-content, [mat-card-content], [matCardContent]" }, { type: i4.MatCardActions, selector: "mat-card-actions", inputs: ["align"], exportAs: ["matCardActions"] }, { type: i9.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { type: i9.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { type: i9.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }] });
126
+ MainFeedCardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: MainFeedCardComponent, selector: "lcu-main-feed-card", inputs: { FeedItem: ["feed-item", "FeedItem"] }, ngImport: i0, template: "<mat-card class=\"social-card\">\n <mat-card-header>\n <img\n mat-card-avatar\n class=\"example-header-image\"\n [src]=\"FeedItem.Avatar\"\n *ngIf=\"FeedItem.Avatar\"\n />\n\n <mat-card-title *ngIf=\"FeedItem.Title\">{{ FeedItem.Title }}</mat-card-title>\n\n <mat-card-subtitle>\n <div *ngIf=\"FeedItem.Subtitle\">{{ FeedItem.Subtitle }}</div>\n\n <div *ngIf=\"FeedItem.Subtext\">{{ FeedItem.Subtext }}</div>\n\n <div *ngIf=\"FeedItem.Status\">\n <mat-icon\n *ngIf=\"Icon\"\n [style.color]=\"IconColor\"\n [class.spin]=\"FeedItem.Status?.Code == 2\"\n >\n {{ Icon }}\n </mat-icon>\n\n <span *ngIf=\"FeedItem.Timestamp\">\n {{ CalculateTimelapse(FeedItem.Timestamp) }}\n </span>\n </div>\n </mat-card-subtitle>\n </mat-card-header>\n\n <div *ngIf=\"!FeedItem.IsShortForm\">\n <div class=\"feed-card-container\">\n <div class=\"feed-card-main-content\">\n <mat-tab-group>\n <ng-container *ngFor=\"let tab of FeedItem.Tabs\">\n <mat-tab [label]=\"tab.Title\">\n <div class=\"tab\">\n <ng-container *ngIf=\"tab.Data?.Commit?.Message\">\n <div class=\"commit-message\">\n {{ tab.Data?.Commit?.Message }}\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"tab.Data?.Content\">\n <div class=\"content\">\n {{ tab.Data?.Content }}\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"tab.Data?.Video\">\n <div\n class=\"video\"\n [innerHTML]=\"SafeHtml(tab.Data.Video)\"\n ></div>\n </ng-container>\n\n <ng-container *ngIf=\"tab.Data?.Comments\">\n <div class=\"comments\">\n <ng-container *ngIf=\"tab.Data?.Comments?.length <= 0\">\n <h4>No comments provided</h4>\n </ng-container>\n\n <mat-card *ngFor=\"let comment of tab.Data?.Comments\">\n <mat-card-header>\n <img\n mat-card-avatar\n class=\"example-header-image\"\n [src]=\"comment.Avatar\"\n *ngIf=\"comment.Avatar\"\n />\n\n <mat-card-title>\n {{ comment.Author }}\n commented on\n {{ comment.UpdatedAt }}\n </mat-card-title>\n </mat-card-header>\n\n <mat-card-content>\n {{ comment.Comment }}\n </mat-card-content>\n </mat-card>\n </div>\n </ng-container>\n </div>\n </mat-tab>\n </ng-container>\n </mat-tab-group>\n </div>\n </div>\n </div>\n\n <mat-card-actions fxLayout=\"row\" fxLayoutAlign=\"space-around center\">\n <div fxFlex></div>\n\n <ng-container *ngFor=\"let action of FeedItem.Actions\">\n <button mat-button [color]=\"action.Color\" (click)=\"HandleAction(action)\">\n <mat-icon *ngIf=\"action.Icon\">{{ action.Icon }}</mat-icon>\n\n {{ action.Text }}\n </button>\n </ng-container>\n </mat-card-actions>\n</mat-card>\n", styles: [":host{@import url(https://fonts.googleapis.com/icon?family=Material+Icons);@import url(https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:400,900&display=swap);@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap);@import url(https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:400,900&display=swap);@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap);}:host .disable-autofill-background-default input:-webkit-autofill,:host .disable-autofill-background-default input:-webkit-autofill:hover,:host .disable-autofill-background-default input:-webkit-autofill:focus,:host .disable-autofill-background-default textarea:-webkit-autofill,:host .disable-autofill-background-default textarea:-webkit-autofill:hover,:host .disable-autofill-background-default textarea:-webkit-autofill:focus,:host .disable-autofill-background-default select:-webkit-autofill,:host .disable-autofill-background-default select:-webkit-autofill:hover,:host .disable-autofill-background-default select:-webkit-autofill:focus{-webkit-transition:background-color 5000s!important;transition:background-color 5000s!important}:host .list-item-disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed!important}:host .filler{flex:1 1 auto;display:inline-block!important}:host .sticky{position:sticky;z-index:750;top:0}:host .inline{display:inline-block}:host .contents{display:contents}:host .page-element{display:contents}:host .mat-spinner{margin:auto}:host .mat-full-width{width:100%}:host .spread{margin:2rem}:host .spread-thin{margin:1rem}:host .overlay{position:sticky!important}:host .overlay.top{top:0}:host .overlay.bottom{bottom:0}:host .margin-0{margin:0!important}:host .margin-top-0,:host .margin-y-0{margin-top:0!important}:host .margin-right-0,:host .margin-x-0{margin-right:0!important}:host .margin-bottom-0,:host .margin-y-0{margin-bottom:0!important}:host .margin-left-0,:host .margin-x-0{margin-left:0!important}:host .margin-1{margin:.25rem!important}:host .margin-top-1,:host .margin-y-1{margin-top:.25rem!important}:host .margin-right-1,:host .margin-x-1{margin-right:.25rem!important}:host .margin-bottom-1,:host .margin-y-1{margin-bottom:.25rem!important}:host .margin-left-1,:host .margin-x-1{margin-left:.25rem!important}:host .margin-2{margin:.5rem!important}:host .margin-top-2,:host .margin-y-2{margin-top:.5rem!important}:host .margin-right-2,:host .margin-x-2{margin-right:.5rem!important}:host .margin-bottom-2,:host .margin-y-2{margin-bottom:.5rem!important}:host .margin-left-2,:host .margin-x-2{margin-left:.5rem!important}:host .margin-3{margin:1rem!important}:host .margin-top-3,:host .margin-y-3{margin-top:1rem!important}:host .margin-top-bottom-3{margin:1rem 0!important}:host .margin-right-3,:host .margin-x-3{margin-right:1rem!important}:host .margin-bottom-3,:host .margin-y-3{margin-bottom:1rem!important}:host .margin-left-3,:host .margin-x-3{margin-left:1rem!important}:host .margin-4{margin:2rem!important}:host .margin-top-4,:host .margin-y-4{margin-top:2rem!important}:host .margin-right-4,:host .margin-x-4{margin-right:2rem!important}:host .margin-bottom-4,:host .margin-y-4{margin-bottom:2rem!important}:host .margin-left-4,:host .margin-x-4{margin-left:2rem!important}:host .margin-right-5,:host .margin-x-5{margin-right:4rem!important}:host .margin-bottom-5,:host .margin-y-5{margin-bottom:4rem!important}:host .margin-left-5,:host .margin-x-5{margin-left:4rem!important}:host .margin-5{margin:4rem!important}:host .margin-top-5,:host .margin-y-5{margin-top:4rem!important}:host .margin-right-6,:host .margin-x-6{margin-right:4.5rem!important}:host .margin-bottom-6,:host .margin-y-6{margin-bottom:4.5rem!important}:host .margin-left-6,:host .margin-x-6{margin-left:4.5rem!important}:host .margin-7{margin:6rem!important}:host .margin-top-7,:host .margin-y-7{margin-top:6rem!important}:host .margin-right-7,:host .margin-x-7{margin-right:6rem!important}:host .margin-bottom-7,:host .margin-y-7{margin-bottom:6rem!important}:host .margin-left-7,:host .margin-x-7{margin-left:6rem!important}:host .margin-8{margin:7.5rem!important}:host .margin-top-8,:host .margin-y-8{margin-top:7.5rem!important}:host .margin-right-8,:host .margin-x-8{margin-right:7.5rem!important}:host .margin-bottom-8,:host .margin-y-8{margin-bottom:7.5rem!important}:host .margin-left-8,:host .margin-x-8{margin-left:7.5rem!important}:host .margin-9{margin:9rem!important}:host .margin-top-9,:host .margin-y-9{margin-top:9rem!important}:host .margin-right-9,:host .margin-x-9{margin-right:9rem!important}:host .margin-bottom-9,:host .margin-y-9{margin-bottom:9rem!important}:host .margin-left-9,:host .margin-x-9{margin-left:9rem!important}:host .padding-0{padding:0!important}:host .padding-top-0,:host .padding-y-0{padding-top:0!important}:host .padding-right-0,:host .padding-x-0{padding-right:0!important}:host .padding-bottom-0,:host .padding-y-0{padding-bottom:0!important}:host .padding-left-0,:host .padding-x-0{padding-left:0!important}:host .padding-1{padding:.25rem!important}:host .padding-top-1,:host .padding-y-1{padding-top:.25rem!important}:host .padding-right-1,:host .padding-x-1{padding-right:.25rem!important}:host .padding-bottom-1,:host .padding-y-1{padding-bottom:.25rem!important}:host .padding-left-1,:host .padding-x-1{padding-left:.25rem!important}:host .padding-2{padding:.5rem!important}:host .padding-top-2,:host .padding-y-2{padding-top:.5rem!important}:host .padding-right-2,:host .padding-x-2{padding-right:.5rem!important}:host .padding-bottom-2,:host .padding-y-2{padding-bottom:.5rem!important}:host .padding-left-2,:host .padding-x-2{padding-left:.5rem!important}:host .padding-3{padding:1rem!important}:host .padding-top-3,:host .padding-y-3{padding-top:1rem!important}:host .padding-right-3,:host .padding-x-3{padding-right:1rem!important}:host .padding-bottom-3,:host .padding-y-3{padding-bottom:1rem!important}:host .padding-left-3,:host .padding-x-3{padding-left:1rem!important}:host .padding-4{padding:2rem!important}:host .padding-top-4,:host .padding-y-4{padding-top:2rem!important}:host .padding-right-4,:host .padding-x-4{padding-right:2rem!important}:host .padding-bottom-4,:host .padding-y-4{padding-bottom:2rem!important}:host .padding-left-4,:host .padding-x-4{padding-left:2rem!important}:host .padding-5{padding:4rem!important}:host .padding-top-5,:host .padding-y-5{padding-top:4rem!important}:host .padding-right-5,:host .padding-x-5{padding-right:4rem!important}:host .padding-bottom-5,:host .padding-y-5{padding-bottom:4rem!important}:host .padding-left-5,:host .padding-x-5{padding-left:4rem!important}:host .margin-n1{margin:-.25rem!important}:host .margin-top-n1,:host .margin-y-n1{margin-top:-.25rem!important}:host .margin-right-n1,:host .margin-x-n1{margin-right:-.25rem!important}:host .margin-bottom-n1,:host .margin-y-n1{margin-bottom:-.25rem!important}:host .margin-left-n1,:host .margin-x-n1{margin-left:-.25rem!important}:host .margin-n2{margin:-.5rem!important}:host .margin-top-n2,:host .margin-y-n2{margin-top:-.5rem!important}:host .margin-right-n2,:host .margin-x-n2{margin-right:-.5rem!important}:host .margin-bottom-n2,:host .margin-y-n2{margin-bottom:-.5rem!important}:host .margin-left-n2,:host .margin-x-n2{margin-left:-.5rem!important}:host .margin-n3{margin:-1rem!important}:host .margin-top-n3,:host .margin-y-n3{margin-top:-1rem!important}:host .margin-right-n3,:host .margin-x-n3{margin-right:-1rem!important}:host .margin-bottom-n3,:host .margin-y-n3{margin-bottom:-1rem!important}:host .margin-left-n3,:host .margin-x-n3{margin-left:-1rem!important}:host .margin-n4{margin:-2rem!important}:host .margin-top-n4,:host .margin-y-n4{margin-top:-2rem!important}:host .margin-right-n4,:host .margin-x-n4{margin-right:-2rem!important}:host .margin-bottom-n4,:host .margin-y-n4{margin-bottom:-2rem!important}:host .margin-left-n4,:host .margin-x-n4{margin-left:-2rem!important}:host .margin-n5{margin:-4rem!important}:host .margin-top-n5,:host .margin-y-n5{margin-top:-4rem!important}:host .margin-right-n5,:host .margin-x-n5{margin-right:-4rem!important}:host .margin-bottom-n5,:host .margin-y-n5{margin-bottom:-4rem!important}:host .margin-left-n5,:host .margin-x-n5{margin-left:-4rem!important}:host .margin-auto{margin:auto!important}:host .margin-top-auto,:host .margin-y-auto{margin-top:auto!important}:host .margin-right-auto,:host .margin-x-auto{margin-right:auto!important}:host .margin-bottom-auto,:host .margin-y-auto{margin-bottom:auto!important}:host .margin-left-auto,:host .margin-x-auto{margin-left:auto!important}@media (min-width: 576px){:host .margin-sm-0{margin:0!important}:host .margin-top-sm-0,:host .margin-y-sm-0{margin-top:0!important}:host .margin-right-sm-0,:host .margin-x-sm-0{margin-right:0!important}:host .margin-bottom-sm-0,:host .margin-y-sm-0{margin-bottom:0!important}:host .margin-left-sm-0,:host .margin-x-sm-0{margin-left:0!important}:host .margin-sm-1{margin:.25rem!important}:host .margin-top-sm-1,:host .margin-y-sm-1{margin-top:.25rem!important}:host .margin-right-sm-1,:host .margin-x-sm-1{margin-right:.25rem!important}:host .margin-bottom-sm-1,:host .margin-y-sm-1{margin-bottom:.25rem!important}:host .margin-left-sm-1,:host .margin-x-sm-1{margin-left:.25rem!important}:host .margin-sm-2{margin:.5rem!important}:host .margin-top-sm-2,:host .margin-y-sm-2{margin-top:.5rem!important}:host .margin-right-sm-2,:host .margin-x-sm-2{margin-right:.5rem!important}:host .margin-bottom-sm-2,:host .margin-y-sm-2{margin-bottom:.5rem!important}:host .margin-left-sm-2,:host .margin-x-sm-2{margin-left:.5rem!important}:host .margin-sm-3{margin:1rem!important}:host .margin-top-sm-3,:host .margin-y-sm-3{margin-top:1rem!important}:host .margin-right-sm-3,:host .margin-x-sm-3{margin-right:1rem!important}:host .margin-bottom-sm-3,:host .margin-y-sm-3{margin-bottom:1rem!important}:host .margin-left-sm-3,:host .margin-x-sm-3{margin-left:1rem!important}:host .margin-sm-4{margin:2rem!important}:host .margin-top-sm-4,:host .margin-y-sm-4{margin-top:2rem!important}:host .margin-right-sm-4,:host .margin-x-sm-4{margin-right:2rem!important}:host .margin-bottom-sm-4,:host .margin-y-sm-4{margin-bottom:2rem!important}:host .margin-left-sm-4,:host .margin-x-sm-4{margin-left:2rem!important}:host .margin-sm-5{margin:4rem!important}:host .margin-top-sm-5,:host .margin-y-sm-5{margin-top:4rem!important}:host .margin-right-sm-5,:host .margin-x-sm-5{margin-right:4rem!important}:host .margin-bottom-sm-5,:host .margin-y-sm-5{margin-bottom:4rem!important}:host .margin-left-sm-5,:host .margin-x-sm-5{margin-left:4rem!important}:host .padding-sm-0{padding:0!important}:host .padding-top-sm-0,:host .padding-y-sm-0{padding-top:0!important}:host .padding-right-sm-0,:host .padding-x-sm-0{padding-right:0!important}:host .padding-bottom-sm-0,:host .padding-y-sm-0{padding-bottom:0!important}:host .padding-left-sm-0,:host .padding-x-sm-0{padding-left:0!important}:host .padding-sm-1{padding:.25rem!important}:host .padding-top-sm-1,:host .padding-y-sm-1{padding-top:.25rem!important}:host .padding-right-sm-1,:host .padding-x-sm-1{padding-right:.25rem!important}:host .padding-bottom-sm-1,:host .padding-y-sm-1{padding-bottom:.25rem!important}:host .padding-left-sm-1,:host .padding-x-sm-1{padding-left:.25rem!important}:host .padding-sm-2{padding:.5rem!important}:host .padding-top-sm-2,:host .padding-y-sm-2{padding-top:.5rem!important}:host .padding-right-sm-2,:host .padding-x-sm-2{padding-right:.5rem!important}:host .padding-bottom-sm-2,:host .padding-y-sm-2{padding-bottom:.5rem!important}:host .padding-left-sm-2,:host .padding-x-sm-2{padding-left:.5rem!important}:host .padding-sm-3{padding:1rem!important}:host .padding-top-sm-3,:host .padding-y-sm-3{padding-top:1rem!important}:host .padding-right-sm-3,:host .padding-x-sm-3{padding-right:1rem!important}:host .padding-bottom-sm-3,:host .padding-y-sm-3{padding-bottom:1rem!important}:host .padding-left-sm-3,:host .padding-x-sm-3{padding-left:1rem!important}:host .padding-sm-4{padding:2rem!important}:host .padding-top-sm-4,:host .padding-y-sm-4{padding-top:2rem!important}:host .padding-right-sm-4,:host .padding-x-sm-4{padding-right:2rem!important}:host .padding-bottom-sm-4,:host .padding-y-sm-4{padding-bottom:2rem!important}:host .padding-left-sm-4,:host .padding-x-sm-4{padding-left:2rem!important}:host .padding-sm-5{padding:4rem!important}:host .padding-top-sm-5,:host .padding-y-sm-5{padding-top:4rem!important}:host .padding-right-sm-5,:host .padding-x-sm-5{padding-right:4rem!important}:host .padding-bottom-sm-5,:host .padding-y-sm-5{padding-bottom:4rem!important}:host .padding-left-sm-5,:host .padding-x-sm-5{padding-left:4rem!important}:host .margin-sm-n1{margin:-.25rem!important}:host .margin-top-sm-n1,:host .margin-y-sm-n1{margin-top:-.25rem!important}:host .margin-right-sm-n1,:host .margin-x-sm-n1{margin-right:-.25rem!important}:host .margin-bottom-sm-n1,:host .margin-y-sm-n1{margin-bottom:-.25rem!important}:host .margin-left-sm-n1,:host .margin-x-sm-n1{margin-left:-.25rem!important}:host .margin-sm-n2{margin:-.5rem!important}:host .margin-top-sm-n2,:host .margin-y-sm-n2{margin-top:-.5rem!important}:host .margin-right-sm-n2,:host .margin-x-sm-n2{margin-right:-.5rem!important}:host .margin-bottom-sm-n2,:host .margin-y-sm-n2{margin-bottom:-.5rem!important}:host .margin-left-sm-n2,:host .margin-x-sm-n2{margin-left:-.5rem!important}:host .margin-sm-n3{margin:-1rem!important}:host .margin-top-sm-n3,:host .margin-y-sm-n3{margin-top:-1rem!important}:host .margin-right-sm-n3,:host .margin-x-sm-n3{margin-right:-1rem!important}:host .margin-bottom-sm-n3,:host .margin-y-sm-n3{margin-bottom:-1rem!important}:host .margin-left-sm-n3,:host .margin-x-sm-n3{margin-left:-1rem!important}:host .margin-sm-n4{margin:-2rem!important}:host .margin-top-sm-n4,:host .margin-y-sm-n4{margin-top:-2rem!important}:host .margin-right-sm-n4,:host .margin-x-sm-n4{margin-right:-2rem!important}:host .margin-bottom-sm-n4,:host .margin-y-sm-n4{margin-bottom:-2rem!important}:host .margin-left-sm-n4,:host .margin-x-sm-n4{margin-left:-2rem!important}:host .margin-sm-n5{margin:-4rem!important}:host .margin-top-sm-n5,:host .margin-y-sm-n5{margin-top:-4rem!important}:host .margin-right-sm-n5,:host .margin-x-sm-n5{margin-right:-4rem!important}:host .margin-bottom-sm-n5,:host .margin-y-sm-n5{margin-bottom:-4rem!important}:host .margin-left-sm-n5,:host .margin-x-sm-n5{margin-left:-4rem!important}:host .margin-sm-auto{margin:auto!important}:host .margin-top-sm-auto,:host .margin-y-sm-auto{margin-top:auto!important}:host .margin-right-sm-auto,:host .margin-x-sm-auto{margin-right:auto!important}:host .margin-bottom-sm-auto,:host .margin-y-sm-auto{margin-bottom:auto!important}:host .margin-left-sm-auto,:host .margin-x-sm-auto{margin-left:auto!important}}@media (min-width: 768px){:host .margin-md-0{margin:0!important}:host .margin-top-md-0,:host .margin-y-md-0{margin-top:0!important}:host .margin-right-md-0,:host .margin-x-md-0{margin-right:0!important}:host .margin-bottom-md-0,:host .margin-y-md-0{margin-bottom:0!important}:host .margin-left-md-0,:host .margin-x-md-0{margin-left:0!important}:host .margin-md-1{margin:.25rem!important}:host .margin-top-md-1,:host .margin-y-md-1{margin-top:.25rem!important}:host .margin-right-md-1,:host .margin-x-md-1{margin-right:.25rem!important}:host .margin-bottom-md-1,:host .margin-y-md-1{margin-bottom:.25rem!important}:host .margin-left-md-1,:host .margin-x-md-1{margin-left:.25rem!important}:host .margin-md-2{margin:.5rem!important}:host .margin-top-md-2,:host .margin-y-md-2{margin-top:.5rem!important}:host .margin-right-md-2,:host .margin-x-md-2{margin-right:.5rem!important}:host .margin-bottom-md-2,:host .margin-y-md-2{margin-bottom:.5rem!important}:host .margin-left-md-2,:host .margin-x-md-2{margin-left:.5rem!important}:host .margin-md-3{margin:1rem!important}:host .margin-top-md-3,:host .margin-y-md-3{margin-top:1rem!important}:host .margin-right-md-3,:host .margin-x-md-3{margin-right:1rem!important}:host .margin-bottom-md-3,:host .margin-y-md-3{margin-bottom:1rem!important}:host .margin-left-md-3,:host .margin-x-md-3{margin-left:1rem!important}:host .margin-md-4{margin:2rem!important}:host .margin-top-md-4,:host .margin-y-md-4{margin-top:2rem!important}:host .margin-right-md-4,:host .margin-x-md-4{margin-right:2rem!important}:host .margin-bottom-md-4,:host .margin-y-md-4{margin-bottom:2rem!important}:host .margin-left-md-4,:host .margin-x-md-4{margin-left:2rem!important}:host .margin-md-5{margin:4rem!important}:host .margin-top-md-5,:host .margin-y-md-5{margin-top:4rem!important}:host .margin-right-md-5,:host .margin-x-md-5{margin-right:4rem!important}:host .margin-bottom-md-5,:host .margin-y-md-5{margin-bottom:4rem!important}:host .margin-left-md-5,:host .margin-x-md-5{margin-left:4rem!important}:host .padding-md-0{padding:0!important}:host .padding-top-md-0,:host .padding-y-md-0{padding-top:0!important}:host .padding-right-md-0,:host .padding-x-md-0{padding-right:0!important}:host .padding-bottom-md-0,:host .padding-y-md-0{padding-bottom:0!important}:host .padding-left-md-0,:host .padding-x-md-0{padding-left:0!important}:host .padding-md-1{padding:.25rem!important}:host .padding-top-md-1,:host .padding-y-md-1{padding-top:.25rem!important}:host .padding-right-md-1,:host .padding-x-md-1{padding-right:.25rem!important}:host .padding-bottom-md-1,:host .padding-y-md-1{padding-bottom:.25rem!important}:host .padding-left-md-1,:host .padding-x-md-1{padding-left:.25rem!important}:host .padding-md-2{padding:.5rem!important}:host .padding-top-md-2,:host .padding-y-md-2{padding-top:.5rem!important}:host .padding-right-md-2,:host .padding-x-md-2{padding-right:.5rem!important}:host .padding-bottom-md-2,:host .padding-y-md-2{padding-bottom:.5rem!important}:host .padding-left-md-2,:host .padding-x-md-2{padding-left:.5rem!important}:host .padding-md-3{padding:1rem!important}:host .padding-top-md-3,:host .padding-y-md-3{padding-top:1rem!important}:host .padding-right-md-3,:host .padding-x-md-3{padding-right:1rem!important}:host .padding-bottom-md-3,:host .padding-y-md-3{padding-bottom:1rem!important}:host .padding-left-md-3,:host .padding-x-md-3{padding-left:1rem!important}:host .padding-md-4{padding:2rem!important}:host .padding-top-md-4,:host .padding-y-md-4{padding-top:2rem!important}:host .padding-right-md-4,:host .padding-x-md-4{padding-right:2rem!important}:host .padding-bottom-md-4,:host .padding-y-md-4{padding-bottom:2rem!important}:host .padding-left-md-4,:host .padding-x-md-4{padding-left:2rem!important}:host .padding-md-5{padding:4rem!important}:host .padding-top-md-5,:host .padding-y-md-5{padding-top:4rem!important}:host .padding-right-md-5,:host .padding-x-md-5{padding-right:4rem!important}:host .padding-bottom-md-5,:host .padding-y-md-5{padding-bottom:4rem!important}:host .padding-left-md-5,:host .padding-x-md-5{padding-left:4rem!important}:host .margin-md-n1{margin:-.25rem!important}:host .margin-top-md-n1,:host .margin-y-md-n1{margin-top:-.25rem!important}:host .margin-right-md-n1,:host .margin-x-md-n1{margin-right:-.25rem!important}:host .margin-bottom-md-n1,:host .margin-y-md-n1{margin-bottom:-.25rem!important}:host .margin-left-md-n1,:host .margin-x-md-n1{margin-left:-.25rem!important}:host .margin-md-n2{margin:-.5rem!important}:host .margin-top-md-n2,:host .margin-y-md-n2{margin-top:-.5rem!important}:host .margin-right-md-n2,:host .margin-x-md-n2{margin-right:-.5rem!important}:host .margin-bottom-md-n2,:host .margin-y-md-n2{margin-bottom:-.5rem!important}:host .margin-left-md-n2,:host .margin-x-md-n2{margin-left:-.5rem!important}:host .margin-md-n3{margin:-1rem!important}:host .margin-top-md-n3,:host .margin-y-md-n3{margin-top:-1rem!important}:host .margin-right-md-n3,:host .margin-x-md-n3{margin-right:-1rem!important}:host .margin-bottom-md-n3,:host .margin-y-md-n3{margin-bottom:-1rem!important}:host .margin-left-md-n3,:host .margin-x-md-n3{margin-left:-1rem!important}:host .margin-md-n4{margin:-2rem!important}:host .margin-top-md-n4,:host .margin-y-md-n4{margin-top:-2rem!important}:host .margin-right-md-n4,:host .margin-x-md-n4{margin-right:-2rem!important}:host .margin-bottom-md-n4,:host .margin-y-md-n4{margin-bottom:-2rem!important}:host .margin-left-md-n4,:host .margin-x-md-n4{margin-left:-2rem!important}:host .margin-md-n5{margin:-4rem!important}:host .margin-top-md-n5,:host .margin-y-md-n5{margin-top:-4rem!important}:host .margin-right-md-n5,:host .margin-x-md-n5{margin-right:-4rem!important}:host .margin-bottom-md-n5,:host .margin-y-md-n5{margin-bottom:-4rem!important}:host .margin-left-md-n5,:host .margin-x-md-n5{margin-left:-4rem!important}:host .margin-md-auto{margin:auto!important}:host .margin-top-md-auto,:host .margin-y-md-auto{margin-top:auto!important}:host .margin-right-md-auto,:host .margin-x-md-auto{margin-right:auto!important}:host .margin-bottom-md-auto,:host .margin-y-md-auto{margin-bottom:auto!important}:host .margin-left-md-auto,:host .margin-x-md-auto{margin-left:auto!important}}@media (min-width: 992px){:host .margin-lg-0{margin:0!important}:host .margin-top-lg-0,:host .margin-y-lg-0{margin-top:0!important}:host .margin-right-lg-0,:host .margin-x-lg-0{margin-right:0!important}:host .margin-bottom-lg-0,:host .margin-y-lg-0{margin-bottom:0!important}:host .margin-left-lg-0,:host .margin-x-lg-0{margin-left:0!important}:host .margin-lg-1{margin:.25rem!important}:host .margin-top-lg-1,:host .margin-y-lg-1{margin-top:.25rem!important}:host .margin-right-lg-1,:host .margin-x-lg-1{margin-right:.25rem!important}:host .margin-bottom-lg-1,:host .margin-y-lg-1{margin-bottom:.25rem!important}:host .margin-left-lg-1,:host .margin-x-lg-1{margin-left:.25rem!important}:host .margin-lg-2{margin:.5rem!important}:host .margin-top-lg-2,:host .margin-y-lg-2{margin-top:.5rem!important}:host .margin-right-lg-2,:host .margin-x-lg-2{margin-right:.5rem!important}:host .margin-bottom-lg-2,:host .margin-y-lg-2{margin-bottom:.5rem!important}:host .margin-left-lg-2,:host .margin-x-lg-2{margin-left:.5rem!important}:host .margin-lg-3{margin:1rem!important}:host .margin-top-lg-3,:host .margin-y-lg-3{margin-top:1rem!important}:host .margin-right-lg-3,:host .margin-x-lg-3{margin-right:1rem!important}:host .margin-bottom-lg-3,:host .margin-y-lg-3{margin-bottom:1rem!important}:host .margin-left-lg-3,:host .margin-x-lg-3{margin-left:1rem!important}:host .margin-lg-4{margin:2rem!important}:host .margin-top-lg-4,:host .margin-y-lg-4{margin-top:2rem!important}:host .margin-right-lg-4,:host .margin-x-lg-4{margin-right:2rem!important}:host .margin-bottom-lg-4,:host .margin-y-lg-4{margin-bottom:2rem!important}:host .margin-left-lg-4,:host .margin-x-lg-4{margin-left:2rem!important}:host .margin-lg-5{margin:4rem!important}:host .margin-top-lg-5,:host .margin-y-lg-5{margin-top:4rem!important}:host .margin-right-lg-5,:host .margin-x-lg-5{margin-right:4rem!important}:host .margin-bottom-lg-5,:host .margin-y-lg-5{margin-bottom:4rem!important}:host .margin-left-lg-5,:host .margin-x-lg-5{margin-left:4rem!important}:host .padding-lg-0{padding:0!important}:host .padding-top-lg-0,:host .padding-y-lg-0{padding-top:0!important}:host .padding-right-lg-0,:host .padding-x-lg-0{padding-right:0!important}:host .padding-bottom-lg-0,:host .padding-y-lg-0{padding-bottom:0!important}:host .padding-left-lg-0,:host .padding-x-lg-0{padding-left:0!important}:host .padding-lg-1{padding:.25rem!important}:host .padding-top-lg-1,:host .padding-y-lg-1{padding-top:.25rem!important}:host .padding-right-lg-1,:host .padding-x-lg-1{padding-right:.25rem!important}:host .padding-bottom-lg-1,:host .padding-y-lg-1{padding-bottom:.25rem!important}:host .padding-left-lg-1,:host .padding-x-lg-1{padding-left:.25rem!important}:host .padding-lg-2{padding:.5rem!important}:host .padding-top-lg-2,:host .padding-y-lg-2{padding-top:.5rem!important}:host .padding-right-lg-2,:host .padding-x-lg-2{padding-right:.5rem!important}:host .padding-bottom-lg-2,:host .padding-y-lg-2{padding-bottom:.5rem!important}:host .padding-left-lg-2,:host .padding-x-lg-2{padding-left:.5rem!important}:host .padding-lg-3{padding:1rem!important}:host .padding-top-lg-3,:host .padding-y-lg-3{padding-top:1rem!important}:host .padding-right-lg-3,:host .padding-x-lg-3{padding-right:1rem!important}:host .padding-bottom-lg-3,:host .padding-y-lg-3{padding-bottom:1rem!important}:host .padding-left-lg-3,:host .padding-x-lg-3{padding-left:1rem!important}:host .padding-lg-4{padding:2rem!important}:host .padding-top-lg-4,:host .padding-y-lg-4{padding-top:2rem!important}:host .padding-right-lg-4,:host .padding-x-lg-4{padding-right:2rem!important}:host .padding-bottom-lg-4,:host .padding-y-lg-4{padding-bottom:2rem!important}:host .padding-left-lg-4,:host .padding-x-lg-4{padding-left:2rem!important}:host .padding-lg-5{padding:4rem!important}:host .padding-top-lg-5,:host .padding-y-lg-5{padding-top:4rem!important}:host .padding-right-lg-5,:host .padding-x-lg-5{padding-right:4rem!important}:host .padding-bottom-lg-5,:host .padding-y-lg-5{padding-bottom:4rem!important}:host .padding-left-lg-5,:host .padding-x-lg-5{padding-left:4rem!important}:host .margin-lg-n1{margin:-.25rem!important}:host .margin-top-lg-n1,:host .margin-y-lg-n1{margin-top:-.25rem!important}:host .margin-right-lg-n1,:host .margin-x-lg-n1{margin-right:-.25rem!important}:host .margin-bottom-lg-n1,:host .margin-y-lg-n1{margin-bottom:-.25rem!important}:host .margin-left-lg-n1,:host .margin-x-lg-n1{margin-left:-.25rem!important}:host .margin-lg-n2{margin:-.5rem!important}:host .margin-top-lg-n2,:host .margin-y-lg-n2{margin-top:-.5rem!important}:host .margin-right-lg-n2,:host .margin-x-lg-n2{margin-right:-.5rem!important}:host .margin-bottom-lg-n2,:host .margin-y-lg-n2{margin-bottom:-.5rem!important}:host .margin-left-lg-n2,:host .margin-x-lg-n2{margin-left:-.5rem!important}:host .margin-lg-n3{margin:-1rem!important}:host .margin-top-lg-n3,:host .margin-y-lg-n3{margin-top:-1rem!important}:host .margin-right-lg-n3,:host .margin-x-lg-n3{margin-right:-1rem!important}:host .margin-bottom-lg-n3,:host .margin-y-lg-n3{margin-bottom:-1rem!important}:host .margin-left-lg-n3,:host .margin-x-lg-n3{margin-left:-1rem!important}:host .margin-lg-n4{margin:-2rem!important}:host .margin-top-lg-n4,:host .margin-y-lg-n4{margin-top:-2rem!important}:host .margin-right-lg-n4,:host .margin-x-lg-n4{margin-right:-2rem!important}:host .margin-bottom-lg-n4,:host .margin-y-lg-n4{margin-bottom:-2rem!important}:host .margin-left-lg-n4,:host .margin-x-lg-n4{margin-left:-2rem!important}:host .margin-lg-n5{margin:-4rem!important}:host .margin-top-lg-n5,:host .margin-y-lg-n5{margin-top:-4rem!important}:host .margin-right-lg-n5,:host .margin-x-lg-n5{margin-right:-4rem!important}:host .margin-bottom-lg-n5,:host .margin-y-lg-n5{margin-bottom:-4rem!important}:host .margin-left-lg-n5,:host .margin-x-lg-n5{margin-left:-4rem!important}:host .margin-lg-auto{margin:auto!important}:host .margin-top-lg-auto,:host .margin-y-lg-auto{margin-top:auto!important}:host .margin-right-lg-auto,:host .margin-x-lg-auto{margin-right:auto!important}:host .margin-bottom-lg-auto,:host .margin-y-lg-auto{margin-bottom:auto!important}:host .margin-left-lg-auto,:host .margin-x-lg-auto{margin-left:auto!important}}@media (min-width: 1200px){:host .margin-xl-0{margin:0!important}:host .margin-top-xl-0,:host .margin-y-xl-0{margin-top:0!important}:host .margin-right-xl-0,:host .margin-x-xl-0{margin-right:0!important}:host .margin-bottom-xl-0,:host .margin-y-xl-0{margin-bottom:0!important}:host .margin-left-xl-0,:host .margin-x-xl-0{margin-left:0!important}:host .margin-xl-1{margin:.25rem!important}:host .margin-top-xl-1,:host .margin-y-xl-1{margin-top:.25rem!important}:host .margin-right-xl-1,:host .margin-x-xl-1{margin-right:.25rem!important}:host .margin-bottom-xl-1,:host .margin-y-xl-1{margin-bottom:.25rem!important}:host .margin-left-xl-1,:host .margin-x-xl-1{margin-left:.25rem!important}:host .margin-xl-2{margin:.5rem!important}:host .margin-top-xl-2,:host .margin-y-xl-2{margin-top:.5rem!important}:host .margin-right-xl-2,:host .margin-x-xl-2{margin-right:.5rem!important}:host .margin-bottom-xl-2,:host .margin-y-xl-2{margin-bottom:.5rem!important}:host .margin-left-xl-2,:host .margin-x-xl-2{margin-left:.5rem!important}:host .margin-xl-3{margin:1rem!important}:host .margin-top-xl-3,:host .margin-y-xl-3{margin-top:1rem!important}:host .margin-right-xl-3,:host .margin-x-xl-3{margin-right:1rem!important}:host .margin-bottom-xl-3,:host .margin-y-xl-3{margin-bottom:1rem!important}:host .margin-left-xl-3,:host .margin-x-xl-3{margin-left:1rem!important}:host .margin-xl-4{margin:2rem!important}:host .margin-top-xl-4,:host .margin-y-xl-4{margin-top:2rem!important}:host .margin-right-xl-4,:host .margin-x-xl-4{margin-right:2rem!important}:host .margin-bottom-xl-4,:host .margin-y-xl-4{margin-bottom:2rem!important}:host .margin-left-xl-4,:host .margin-x-xl-4{margin-left:2rem!important}:host .margin-xl-5{margin:4rem!important}:host .margin-top-xl-5,:host .margin-y-xl-5{margin-top:4rem!important}:host .margin-right-xl-5,:host .margin-x-xl-5{margin-right:4rem!important}:host .margin-bottom-xl-5,:host .margin-y-xl-5{margin-bottom:4rem!important}:host .margin-left-xl-5,:host .margin-x-xl-5{margin-left:4rem!important}:host .padding-xl-0{padding:0!important}:host .padding-top-xl-0,:host .padding-y-xl-0{padding-top:0!important}:host .padding-right-xl-0,:host .padding-x-xl-0{padding-right:0!important}:host .padding-bottom-xl-0,:host .padding-y-xl-0{padding-bottom:0!important}:host .padding-left-xl-0,:host .padding-x-xl-0{padding-left:0!important}:host .padding-xl-1{padding:.25rem!important}:host .padding-top-xl-1,:host .padding-y-xl-1{padding-top:.25rem!important}:host .padding-right-xl-1,:host .padding-x-xl-1{padding-right:.25rem!important}:host .padding-bottom-xl-1,:host .padding-y-xl-1{padding-bottom:.25rem!important}:host .padding-left-xl-1,:host .padding-x-xl-1{padding-left:.25rem!important}:host .padding-xl-2{padding:.5rem!important}:host .padding-top-xl-2,:host .padding-y-xl-2{padding-top:.5rem!important}:host .padding-right-xl-2,:host .padding-x-xl-2{padding-right:.5rem!important}:host .padding-bottom-xl-2,:host .padding-y-xl-2{padding-bottom:.5rem!important}:host .padding-left-xl-2,:host .padding-x-xl-2{padding-left:.5rem!important}:host .padding-xl-3{padding:1rem!important}:host .padding-top-xl-3,:host .padding-y-xl-3{padding-top:1rem!important}:host .padding-right-xl-3,:host .padding-x-xl-3{padding-right:1rem!important}:host .padding-bottom-xl-3,:host .padding-y-xl-3{padding-bottom:1rem!important}:host .padding-left-xl-3,:host .padding-x-xl-3{padding-left:1rem!important}:host .padding-xl-4{padding:2rem!important}:host .padding-top-xl-4,:host .padding-y-xl-4{padding-top:2rem!important}:host .padding-right-xl-4,:host .padding-x-xl-4{padding-right:2rem!important}:host .padding-bottom-xl-4,:host .padding-y-xl-4{padding-bottom:2rem!important}:host .padding-left-xl-4,:host .padding-x-xl-4{padding-left:2rem!important}:host .padding-xl-5{padding:4rem!important}:host .padding-top-xl-5,:host .padding-y-xl-5{padding-top:4rem!important}:host .padding-right-xl-5,:host .padding-x-xl-5{padding-right:4rem!important}:host .padding-bottom-xl-5,:host .padding-y-xl-5{padding-bottom:4rem!important}:host .padding-left-xl-5,:host .padding-x-xl-5{padding-left:4rem!important}:host .margin-xl-n1{margin:-.25rem!important}:host .margin-top-xl-n1,:host .margin-y-xl-n1{margin-top:-.25rem!important}:host .margin-right-xl-n1,:host .margin-x-xl-n1{margin-right:-.25rem!important}:host .margin-bottom-xl-n1,:host .margin-y-xl-n1{margin-bottom:-.25rem!important}:host .margin-left-xl-n1,:host .margin-x-xl-n1{margin-left:-.25rem!important}:host .margin-xl-n2{margin:-.5rem!important}:host .margin-top-xl-n2,:host .margin-y-xl-n2{margin-top:-.5rem!important}:host .margin-right-xl-n2,:host .margin-x-xl-n2{margin-right:-.5rem!important}:host .margin-bottom-xl-n2,:host .margin-y-xl-n2{margin-bottom:-.5rem!important}:host .margin-left-xl-n2,:host .margin-x-xl-n2{margin-left:-.5rem!important}:host .margin-xl-n3{margin:-1rem!important}:host .margin-top-xl-n3,:host .margin-y-xl-n3{margin-top:-1rem!important}:host .margin-right-xl-n3,:host .margin-x-xl-n3{margin-right:-1rem!important}:host .margin-bottom-xl-n3,:host .margin-y-xl-n3{margin-bottom:-1rem!important}:host .margin-left-xl-n3,:host .margin-x-xl-n3{margin-left:-1rem!important}:host .margin-xl-n4{margin:-2rem!important}:host .margin-top-xl-n4,:host .margin-y-xl-n4{margin-top:-2rem!important}:host .margin-right-xl-n4,:host .margin-x-xl-n4{margin-right:-2rem!important}:host .margin-bottom-xl-n4,:host .margin-y-xl-n4{margin-bottom:-2rem!important}:host .margin-left-xl-n4,:host .margin-x-xl-n4{margin-left:-2rem!important}:host .margin-xl-n5{margin:-4rem!important}:host .margin-top-xl-n5,:host .margin-y-xl-n5{margin-top:-4rem!important}:host .margin-right-xl-n5,:host .margin-x-xl-n5{margin-right:-4rem!important}:host .margin-bottom-xl-n5,:host .margin-y-xl-n5{margin-bottom:-4rem!important}:host .margin-left-xl-n5,:host .margin-x-xl-n5{margin-left:-4rem!important}:host .margin-xl-auto{margin:auto!important}:host .margin-top-xl-auto,:host .margin-y-xl-auto{margin-top:auto!important}:host .margin-right-xl-auto,:host .margin-x-xl-auto{margin-right:auto!important}:host .margin-bottom-xl-auto,:host .margin-y-xl-auto{margin-bottom:auto!important}:host .margin-left-xl-auto,:host .margin-x-xl-auto{margin-left:auto!important}}:host .h1{font-size:2em}:host .h2{font-size:1.5em}:host .h3{font-size:1.17em}:host .h4{font-size:1em}:host .h5{font-size:.83em}:host .h6{font-size:.67em}:host .cursor-alias{cursor:alias}:host .cursor-all-scroll{cursor:all-scroll}:host .cursor-auto{cursor:auto}:host .cursor-cell{cursor:cell}:host .cursor-context-menu{cursor:context-menu}:host .cursor-col-resize{cursor:col-resize}:host .cursor-copy{cursor:copy}:host .cursor-crosshair{cursor:crosshair}:host .cursor-default{cursor:default}:host .cursor-e-resize{cursor:e-resize}:host .cursor-ew-resize{cursor:ew-resize}:host .cursor-grab{cursor:grab}:host .cursor-grabbing{cursor:grabbing}:host .cursor-help{cursor:help}:host .cursor-move{cursor:move}:host .cursor-n-resize{cursor:n-resize}:host .cursor-ne-resize{cursor:ne-resize}:host .cursor-nesw-resize{cursor:nesw-resize}:host .cursor-ns-resize{cursor:ns-resize}:host .cursor-nw-resize{cursor:nw-resize}:host .cursor-nwse-resize{cursor:nwse-resize}:host .cursor-no-drop{cursor:no-drop}:host .cursor-none{cursor:none}:host .cursor-not-allowed{cursor:not-allowed}:host .cursor-pointer{cursor:pointer}:host .cursor-progress{cursor:progress}:host .cursor-row-resize{cursor:row-resize}:host .cursor-s-resize{cursor:s-resize}:host .cursor-se-resize{cursor:se-resize}:host .cursor-sw-resize{cursor:sw-resize}:host .cursor-text{cursor:text}:host .cursor-w-resize{cursor:w-resize}:host .cursor-wait{cursor:wait}:host .cursor-zoom-in{cursor:zoom-in}:host .cursor-zoom-out{cursor:zoom-out}:host .mat-tooltip{font-size:16px!important}:host html,:host body{height:100%}:host body{margin:0;padding:0;font-family:opens sans regular,sans-serif}:host iframe{border:none}:host .mat-badge-content{font-weight:600;font-size:12px;font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-badge-small .mat-badge-content{font-size:9px}:host .mat-badge-large .mat-badge-content{font-size:24px}:host .mat-h1,:host .mat-headline,:host .mat-typography h1{font:400 24px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h2,:host .mat-title,:host .mat-typography h2{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h3,:host .mat-subheading-2,:host .mat-typography h3{font:400 16px/28px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h4,:host .mat-subheading-1,:host .mat-typography h4{font:400 15px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h5,:host .mat-typography h5{font:400 11.62px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}:host .mat-h6,:host .mat-typography h6{font:400 9.38px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}:host .mat-body-strong,:host .mat-body-2{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-body,:host .mat-body-1,:host .mat-typography{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-body p,:host .mat-body-1 p,:host .mat-typography p{margin:0 0 12px}:host .mat-small,:host .mat-caption{font:400 12px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-display-4,:host .mat-typography .mat-display-4{font:300 112px/112px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.05em;margin:0 0 56px}:host .mat-display-3,:host .mat-typography .mat-display-3{font:400 56px/56px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.02em;margin:0 0 64px}:host .mat-display-2,:host .mat-typography .mat-display-2{font:400 45px/48px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.005em;margin:0 0 64px}:host .mat-display-1,:host .mat-typography .mat-display-1{font:400 34px/40px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 64px}:host .mat-bottom-sheet-container{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-button,:host .mat-raised-button,:host .mat-icon-button,:host .mat-stroked-button,:host .mat-flat-button,:host .mat-fab,:host .mat-mini-fab{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}:host .mat-button-toggle{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-card{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-card-title{font-size:24px;font-weight:500}:host .mat-card-header .mat-card-title{font-size:20px}:host .mat-card-subtitle,:host .mat-card-content{font-size:14px}:host .mat-checkbox{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-checkbox-layout .mat-checkbox-label{line-height:24px}:host .mat-chip{font-size:14px;font-weight:500}:host .mat-chip .mat-chip-trailing-icon.mat-icon,:host .mat-chip .mat-chip-remove.mat-icon{font-size:18px}:host .mat-table{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-header-cell{font-size:12px;font-weight:500}:host .mat-cell,:host .mat-footer-cell{font-size:14px}:host .mat-calendar{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-calendar-body{font-size:13px}:host .mat-calendar-body-label,:host .mat-calendar-period-button{font-size:14px;font-weight:500}:host .mat-calendar-table-header th{font-size:11px;font-weight:400}:host .mat-dialog-title{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-expansion-panel-header{font-family:Roboto,Helvetica Neue,sans-serif;font-size:15px;font-weight:400}:host .mat-expansion-panel-content{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-form-field{font-size:inherit;font-weight:400;line-height:1.125;font-family:Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-form-field-wrapper{padding-bottom:1.34375em}:host .mat-form-field-prefix .mat-icon,:host .mat-form-field-suffix .mat-icon{font-size:150%;line-height:1.125}:host .mat-form-field-prefix .mat-icon-button,:host .mat-form-field-suffix .mat-icon-button{height:1.5em;width:1.5em}:host .mat-form-field-prefix .mat-icon-button .mat-icon,:host .mat-form-field-suffix .mat-icon-button .mat-icon{height:1.125em;line-height:1.125}:host .mat-form-field-infix{padding:.5em 0;border-top:.84375em solid transparent}:host .mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34375em) scale(.75);width:133.3333333333%}:host .mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34374em) scale(.75);width:133.3333433333%}:host .mat-form-field-label-wrapper{top:-.84375em;padding-top:.84375em}:host .mat-form-field-label{top:1.34375em}:host .mat-form-field-underline{bottom:1.34375em}:host .mat-form-field-subscript-wrapper{font-size:75%;margin-top:.6666666667em;top:calc(100% - 1.7916666667em)}:host .mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:1.25em}:host .mat-form-field-appearance-legacy .mat-form-field-infix{padding:.4375em 0}:host .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);width:133.3333333333%}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00101px);width:133.3333433333%}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00102px);width:133.3333533333%}:host .mat-form-field-appearance-legacy .mat-form-field-label{top:1.28125em}:host .mat-form-field-appearance-legacy .mat-form-field-underline{bottom:1.25em}:host .mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper{margin-top:.5416666667em;top:calc(100% - 1.6666666667em)}@media print{:host .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28122em) scale(.75)}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28121em) scale(.75)}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.2812em) scale(.75)}}:host .mat-form-field-appearance-fill .mat-form-field-infix{padding:.25em 0 .75em}:host .mat-form-field-appearance-fill .mat-form-field-label{top:1.09375em;margin-top:-.5em}:host .mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59375em) scale(.75);width:133.3333333333%}:host .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59374em) scale(.75);width:133.3333433333%}:host .mat-form-field-appearance-outline .mat-form-field-infix{padding:1em 0}:host .mat-form-field-appearance-outline .mat-form-field-label{top:1.84375em;margin-top:-.25em}:host .mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59375em) scale(.75);width:133.3333333333%}:host .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59374em) scale(.75);width:133.3333433333%}:host .mat-grid-tile-header,:host .mat-grid-tile-footer{font-size:14px}:host .mat-grid-tile-header .mat-line,:host .mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-grid-tile-header .mat-line:nth-child(n+2),:host .mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:12px}:host input.mat-input-element{margin-top:-.0625em}:host .mat-menu-item{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:400}:host .mat-paginator,:host .mat-paginator-page-size .mat-select-trigger{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px}:host .mat-radio-button{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-select{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-select-trigger{height:1.125em}:host .mat-slide-toggle-content{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-slider-thumb-label-text{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}:host .mat-stepper-vertical,:host .mat-stepper-horizontal{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-step-label{font-size:14px;font-weight:400}:host .mat-step-sub-label-error{font-weight:400}:host .mat-step-label-error{font-size:14px}:host .mat-step-label-selected{font-size:14px;font-weight:500}:host .mat-tab-group{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-tab-label,:host .mat-tab-link{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}:host .mat-toolbar,:host .mat-toolbar h1,:host .mat-toolbar h2,:host .mat-toolbar h3,:host .mat-toolbar h4,:host .mat-toolbar h5,:host .mat-toolbar h6{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0}:host .mat-tooltip{font-family:Roboto,Helvetica Neue,sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}:host .mat-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}:host .mat-list-item{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-list-option{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-list-base .mat-list-item{font-size:16px}:host .mat-list-base .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base .mat-list-item .mat-line:nth-child(n+2){font-size:14px}:host .mat-list-base .mat-list-option{font-size:16px}:host .mat-list-base .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base .mat-list-option .mat-line:nth-child(n+2){font-size:14px}:host .mat-list-base .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}:host .mat-list-base[dense] .mat-list-item{font-size:12px}:host .mat-list-base[dense] .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}:host .mat-list-base[dense] .mat-list-option{font-size:12px}:host .mat-list-base[dense] .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2){font-size:12px}:host .mat-list-base[dense] .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}:host .mat-option{font-family:Roboto,Helvetica Neue,sans-serif;font-size:16px}:host .mat-optgroup-label{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-simple-snackbar{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px}:host .mat-simple-snackbar-action{line-height:1;font-family:inherit;font-size:inherit;font-weight:500}:host .mat-tree{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-tree-node,:host .mat-nested-tree-node{font-weight:400;font-size:14px}:host .mat-ripple{overflow:hidden;position:relative}:host .mat-ripple:not(:empty){transform:translateZ(0)}:host .mat-ripple.mat-ripple-unbounded{overflow:visible}:host .mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale(0)}.cdk-high-contrast-active :host .mat-ripple-element{display:none}:host .cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none}:host .cdk-overlay-container,:host .cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}:host .cdk-overlay-container{position:fixed;z-index:1000}:host .cdk-overlay-container:empty{display:none}:host .cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}:host .cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}:host .cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}:host .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active :host .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}:host .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}:host .cdk-overlay-transparent-backdrop,:host .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0}:host .cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}:host .cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}:host textarea.cdk-textarea-autosize{resize:none}:host textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}:host textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0!important;box-sizing:content-box!important;height:0!important}@keyframes cdk-text-field-autofill-start{}@keyframes cdk-text-field-autofill-end{}:host .cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}:host .cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}:host .mat-focus-indicator{position:relative}:host .mat-mdc-focus-indicator{position:relative}:host .title,:host .header{font-family:Encode Sans Condensed,sans-serif;font-weight:900}:host .paragraph-title,:host .tagline{font-family:Open Sans,sans-serif;font-weight:400}:host .paragraph-title-bold .tagLine-bold{font-family:Open Sans,sans-serif;font-weight:700}:host .plain-text,:host .remarks{font-family:Open Sans,sans-serif;font-weight:300}:host .plain-text-bold{font-family:Open Sans,sans-serif;font-weight:700}:host .flex-column{box-sizing:border-box;display:flex;flex-direction:column}:host .flex-row{box-sizing:border-box;display:flex;flex-direction:row}:host .flex-row-center{align-items:center;justify-content:center}:host .mat-button-large{line-height:48px;font-size:18px;font-weight:700;padding:0 24px!important}:host .mat-round{border-radius:.5em}:host :root{--skeleton-color: #ccc;--skeleton-icon-color: rgba(0, 0, 0, .25)}:host .skeleton-block{height:1em;background:var(--skeleton-color)!important;width:100%;display:block}@font-face{:host {font-family: \"skeleton\"; src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAYAAA0AAAAAESgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABMAAAABoAAAAclcTxx09TLzIAAAFMAAAASwAAAGBRtV1jY21hcAAAAZgAAAC9AAABamglddJjdnQgAAACWAAAAAQAAAAEABEBRGdhc3AAAAJcAAAACAAAAAj//wADZ2x5ZgAAAmQAAACTAAAJdL6KsfZoZWFkAAAC+AAAAC4AAAA2GgvLb2hoZWEAAAMoAAAAGgAAACQC8ADFaG10eAAAA0QAAAATAAAAtAMAABFsb2NhAAADWAAAAK4AAACuaF5mEm1heHAAAAQIAAAAHwAAACAAmgA5bmFtZQAABCgAAAE5AAACNKbyxURwb3N0AAAFZAAAAJkAAADOCL0Ic3icY2BgYGQAgts30q6A6DvfXCthNABZwwgPAAB4nGNgYWRgnMDAysDA6MOYxsDA4A6lvzJIMrQwMDAxsHIywAAjAxIISHNNYWhgUGCoZTzw/wCDHuMBBgeYGsYDQB4DUI4RAOnYC70AeJxjYGBgZoBgGQZGBhBIAfIYwXwWBg8gzcfAwcDEwMagxKDFYM0QyxDPUPv/P1BcgUGNQYfBEchP/P///+P/D/7f/3/r/83/N6DmIAFGNga4ICMTkGBCVwB0AgsrkMHGzsHJxcDNw8vHLyAoJCwiKiYuISkFViMtIysnr6CopKyiqqauoamlraOrp29gaGRsYmpmzmDBYGllbWNrZ+/g6OTs4urm7uHp5e3j6+cfEBgUHBKK7iL6AwBJLiG7AAAAABEBRAAAAAH//wACeJztzrENwjAUBNA7O4nrXzBAREEHEm5dsERWyApZIStkBip7ggzCCmyAEmxCQYNESfG7r3un04eBAJjYwcLhGIlTSK7C/Ryb+haSNflEtCWuS5xcw0dILLkXLwcvexmHvme3XIU+rxFYZ4Jz3sROWiEuBgug9tXMh7lN21djxbu1Nf/pZzU1NTU1NbWf7QnZ5mwOAHicY2BkYGAAYrZdrHLx/DZfGbiZGEDgzjfXSgT9/wAjA+MBIJeDASwNAA4cCj0AAHicY2BkYGA88P8Agx6QAQSMYIQCWABQZgK3AAB4nGNkYBBkAAJGKB4KAAAOfQAVAAAAACoAKgAqADgARgBUAGIAcAB+AIwAmgCoALYAxADYAOYA9AECARABHgEsAToBSAFWAWQBcgGAAY4BnAGqAbgBxgHUAeIB8AH+AgwCGgIoAjYCRAJSAmACbgJ8AooCmAKmArQCwgLQAt4C7AL6AwgDFgMkAzIDQANOA1wDagN4A4YDlAOiA7ADvgPMA9oD6AP2BAQEEgQgBC4EPARKBFgEZgR0BIIEkASeBKwEugAAeJxjYGRgYAhj4GBgYgABEMnIABJzYNADCQAADScA1AB4nH2PvW7CMBSFj/krXSpeoJKHDiAR6mRAFStSVIkFMWToFhErWCQkMmFAVR+hax+hY5+vY0+MWTqQ6Mqfj4/vPQbwgB8IXL4xNp4Fhvj03MEdvj138YRfzz0MxbPnPkbizfOA+gedonfP3drdallghHfPHc798tzFKzNcuMc+j577kOLF84D6HktUqHGGhUGOHRpIZt5iwjWCYoWYkhMUSJHRVbIslRXdKanVS/Yw7hTLqj5bk+8aOd5OZKSicCqTIs1Maaxc7VJbpGVtMjqP2EPzuubQCgcKe13opiJtKOY4ud6WW52fipQQO2PjVkuHdilnzCmxYP1veVHbNwSYs64vQlwdmriyuZbRTMmFvI4mRmEwD9rcNxMmFC0Nxs9R/EOXRLk0SLQ9GjZUKpwppeStbn/Mg1tYAAAAeJxdzlkzggEARuGn1EXUWEJFubJU1iyRJcbQJoRC9t/dn8k3XXZu3plz8c4RNmI4kAkmZJzXkQ2bEBEVM2lKXMK0GbPmJM1bsCglHTwsWZaVs2LVmnUb8gqKNm3ZtmPXnpJ9Bw4dKTt2ouLUmXMXqi5duXbjVk1dQ1PLnbZ7Dx51PHn2oqsXdL151/fh05dvP379/QOXKRMwAAAA) format(\"woff\"); font-weight: 100,200,300,400,500,600,700,800,900; font-style: normal,italic; font-display: block;}}:host .skeleton-text{font-family:skeleton!important;-webkit-user-select:none;user-select:none}:host .skeleton-text,:host .skeleton-text *{color:var(--skeleton-color)!important;letter-spacing:-.03em!important}:host .skeleton-image{display:inline-block}:host .skeleton-image svg{max-width:100%;height:auto}:host .skeleton-image polygon{fill:var(--skeleton-color)}:host .skeleton-image path{fill:var(--skeleton-icon-color)}:host .skeleton-avatar{display:inline-block}:host .skeleton-avatar svg{max-width:100%;height:auto}:host .skeleton-avatar rect{fill:var(--skeleton-color)}:host .skeleton-avatar path{fill:var(--skeleton-icon-color)}:host .skeleton-effect-blink,:host .skeleton-effect-wave{-webkit-mask-image:linear-gradient(to right,transparent 0%,black 25%,black 75%,transparent 100%);mask-image:linear-gradient(to right,transparent 0%,black 25%,black 75%,transparent 100%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-position:50% top;mask-position:50% top;animation:skeleton-effect-wave 1s infinite}:host .skeleton-effect-fade{animation:skeleton-effect-fade 1s infinite}:host .skeleton-effect-pulse{animation:skeleton-effect-pulse 1s infinite}@keyframes skeleton-effect-fade{0%{opacity:1}50%{opacity:.2}to{opacity:1}}@keyframes skeleton-effect-wave{0%{-webkit-mask-position:50% top;mask-position:50% top}to{-webkit-mask-position:-150% top;mask-position:-150% top}}@keyframes skeleton-effect-pulse{0%{transform:scale(1)}40%{transform:scale(1)}50%{transform:scale(.975)}to{transform:scale(1)}}:host .mat-ripple-element{background-color:#0000001a}:host .mat-option{color:#000000de}:host .mat-option:hover:not(.mat-option-disabled),:host .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}:host .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}:host .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}:host .mat-option.mat-option-disabled{color:#00000061}:host .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#4a918e}:host .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#9cd8d7}:host .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ef4351}:host .mat-optgroup-label{color:#0000008a}:host .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}:host .mat-pseudo-checkbox{color:#0000008a}:host .mat-pseudo-checkbox:after{color:#fafafa}:host .mat-pseudo-checkbox-disabled{color:#b0b0b0}:host .mat-primary .mat-pseudo-checkbox-checked,:host .mat-primary .mat-pseudo-checkbox-indeterminate{background:#4a918e}:host .mat-pseudo-checkbox-checked,:host .mat-pseudo-checkbox-indeterminate,:host .mat-accent .mat-pseudo-checkbox-checked,:host .mat-accent .mat-pseudo-checkbox-indeterminate{background:#9cd8d7}:host .mat-warn .mat-pseudo-checkbox-checked,:host .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ef4351}:host .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,:host .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}:host .mat-app-background,:host.mat-app-background{background-color:#fafafa;color:#000000de}:host .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}:host .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}:host .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}:host .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}:host .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}:host .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}:host .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}:host .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}:host .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}:host .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}:host .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}:host .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}:host .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}:host .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}:host .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}:host .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}:host .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}:host .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}:host .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}:host .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}:host .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}:host .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}:host .mat-autocomplete-panel{background:white;color:#000000de}:host .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}:host .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}:host .mat-badge{position:relative}:host .mat-badge-hidden .mat-badge-content{display:none}:host .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}:host .ng-animate-disabled .mat-badge-content,:host .mat-badge-content._mat-animation-noopable{transition:none}:host .mat-badge-content.mat-badge-active{transform:none}:host .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}:host .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}:host .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}:host .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] :host .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}:host .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] :host .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}:host .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] :host .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}:host .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] :host .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}:host .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}:host .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}:host .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}:host .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] :host .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}:host .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] :host .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}:host .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] :host .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}:host .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] :host .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}:host .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}:host .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}:host .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}:host .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] :host .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}:host .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] :host .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}:host .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] :host .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}:host .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] :host .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}:host .mat-badge-content{color:#f1f4f6;background:#4a918e}.cdk-high-contrast-active :host .mat-badge-content{outline:solid 1px;border-radius:0}:host .mat-badge-accent .mat-badge-content{background:#9cd8d7;color:#282d35de}:host .mat-badge-warn .mat-badge-content{color:#f1f4f6;background:#ef4351}:host .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}:host .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}:host .mat-button,:host .mat-icon-button,:host .mat-stroked-button{color:inherit;background:transparent}:host .mat-button.mat-primary,:host .mat-icon-button.mat-primary,:host .mat-stroked-button.mat-primary{color:#4a918e}:host .mat-button.mat-accent,:host .mat-icon-button.mat-accent,:host .mat-stroked-button.mat-accent{color:#9cd8d7}:host .mat-button.mat-warn,:host .mat-icon-button.mat-warn,:host .mat-stroked-button.mat-warn{color:#ef4351}:host .mat-button.mat-primary.mat-button-disabled,:host .mat-button.mat-accent.mat-button-disabled,:host .mat-button.mat-warn.mat-button-disabled,:host .mat-button.mat-button-disabled.mat-button-disabled,:host .mat-icon-button.mat-primary.mat-button-disabled,:host .mat-icon-button.mat-accent.mat-button-disabled,:host .mat-icon-button.mat-warn.mat-button-disabled,:host .mat-icon-button.mat-button-disabled.mat-button-disabled,:host .mat-stroked-button.mat-primary.mat-button-disabled,:host .mat-stroked-button.mat-accent.mat-button-disabled,:host .mat-stroked-button.mat-warn.mat-button-disabled,:host .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}:host .mat-button.mat-primary .mat-button-focus-overlay,:host .mat-icon-button.mat-primary .mat-button-focus-overlay,:host .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#4a918e}:host .mat-button.mat-accent .mat-button-focus-overlay,:host .mat-icon-button.mat-accent .mat-button-focus-overlay,:host .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#9cd8d7}:host .mat-button.mat-warn .mat-button-focus-overlay,:host .mat-icon-button.mat-warn .mat-button-focus-overlay,:host .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ef4351}:host .mat-button.mat-button-disabled .mat-button-focus-overlay,:host .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,:host .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}:host .mat-button .mat-ripple-element,:host .mat-icon-button .mat-ripple-element,:host .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}:host .mat-button-focus-overlay{background:black}:host .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}:host .mat-flat-button,:host .mat-raised-button,:host .mat-fab,:host .mat-mini-fab{color:#000000de;background-color:#fff}:host .mat-flat-button.mat-primary,:host .mat-raised-button.mat-primary,:host .mat-fab.mat-primary,:host .mat-mini-fab.mat-primary{color:#f1f4f6}:host .mat-flat-button.mat-accent,:host .mat-raised-button.mat-accent,:host .mat-fab.mat-accent,:host .mat-mini-fab.mat-accent{color:#282d35de}:host .mat-flat-button.mat-warn,:host .mat-raised-button.mat-warn,:host .mat-fab.mat-warn,:host .mat-mini-fab.mat-warn{color:#f1f4f6}:host .mat-flat-button.mat-primary.mat-button-disabled,:host .mat-flat-button.mat-accent.mat-button-disabled,:host .mat-flat-button.mat-warn.mat-button-disabled,:host .mat-flat-button.mat-button-disabled.mat-button-disabled,:host .mat-raised-button.mat-primary.mat-button-disabled,:host .mat-raised-button.mat-accent.mat-button-disabled,:host .mat-raised-button.mat-warn.mat-button-disabled,:host .mat-raised-button.mat-button-disabled.mat-button-disabled,:host .mat-fab.mat-primary.mat-button-disabled,:host .mat-fab.mat-accent.mat-button-disabled,:host .mat-fab.mat-warn.mat-button-disabled,:host .mat-fab.mat-button-disabled.mat-button-disabled,:host .mat-mini-fab.mat-primary.mat-button-disabled,:host .mat-mini-fab.mat-accent.mat-button-disabled,:host .mat-mini-fab.mat-warn.mat-button-disabled,:host .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}:host .mat-flat-button.mat-primary,:host .mat-raised-button.mat-primary,:host .mat-fab.mat-primary,:host .mat-mini-fab.mat-primary{background-color:#4a918e}:host .mat-flat-button.mat-accent,:host .mat-raised-button.mat-accent,:host .mat-fab.mat-accent,:host .mat-mini-fab.mat-accent{background-color:#9cd8d7}:host .mat-flat-button.mat-warn,:host .mat-raised-button.mat-warn,:host .mat-fab.mat-warn,:host .mat-mini-fab.mat-warn{background-color:#ef4351}:host .mat-flat-button.mat-primary.mat-button-disabled,:host .mat-flat-button.mat-accent.mat-button-disabled,:host .mat-flat-button.mat-warn.mat-button-disabled,:host .mat-flat-button.mat-button-disabled.mat-button-disabled,:host .mat-raised-button.mat-primary.mat-button-disabled,:host .mat-raised-button.mat-accent.mat-button-disabled,:host .mat-raised-button.mat-warn.mat-button-disabled,:host .mat-raised-button.mat-button-disabled.mat-button-disabled,:host .mat-fab.mat-primary.mat-button-disabled,:host .mat-fab.mat-accent.mat-button-disabled,:host .mat-fab.mat-warn.mat-button-disabled,:host .mat-fab.mat-button-disabled.mat-button-disabled,:host .mat-mini-fab.mat-primary.mat-button-disabled,:host .mat-mini-fab.mat-accent.mat-button-disabled,:host .mat-mini-fab.mat-warn.mat-button-disabled,:host .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}:host .mat-flat-button.mat-primary .mat-ripple-element,:host .mat-raised-button.mat-primary .mat-ripple-element,:host .mat-fab.mat-primary .mat-ripple-element,:host .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#f1f4f61a}:host .mat-flat-button.mat-accent .mat-ripple-element,:host .mat-raised-button.mat-accent .mat-ripple-element,:host .mat-fab.mat-accent .mat-ripple-element,:host .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#282d351a}:host .mat-flat-button.mat-warn .mat-ripple-element,:host .mat-raised-button.mat-warn .mat-ripple-element,:host .mat-fab.mat-warn .mat-ripple-element,:host .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#f1f4f61a}:host .mat-stroked-button:not([class*=mat-elevation-z]),:host .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}:host .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-fab:not([class*=mat-elevation-z]),:host .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}:host .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),:host .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}:host .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),:host .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-button-toggle-standalone,:host .mat-button-toggle-group{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,:host .mat-button-toggle-group-appearance-standard{box-shadow:none}:host .mat-button-toggle{color:#00000061}:host .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}:host .mat-button-toggle-appearance-standard{color:#000000de;background:white}:host .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}:host .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px rgba(0,0,0,.12)}:host [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}:host .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px rgba(0,0,0,.12)}:host .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}:host .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}:host .mat-button-toggle-disabled{color:#00000042;background-color:#eee}:host .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}:host .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}:host .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,:host .mat-button-toggle-group-appearance-standard{border:solid 1px rgba(0,0,0,.12)}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:48px}:host .mat-card{background:white;color:#000000de}:host .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}:host .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-card-subtitle{color:#0000008a}:host .mat-checkbox-frame{border-color:#0000008a}:host .mat-checkbox-checkmark{fill:#fafafa}:host .mat-checkbox-checkmark-path{stroke:#fafafa!important}:host .mat-checkbox-mixedmark{background-color:#fafafa}:host .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,:host .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#4a918e}:host .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,:host .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#9cd8d7}:host .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,:host .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ef4351}:host .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,:host .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}:host .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}:host .mat-checkbox-disabled .mat-checkbox-label{color:#0000008a}:host .mat-checkbox .mat-ripple-element{background-color:#000}:host .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,:host .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#4a918e}:host .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,:host .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#9cd8d7}:host .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,:host .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ef4351}:host .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}:host .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}:host .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}:host .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}:host .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}:host .mat-chip.mat-standard-chip:after{background:black}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#4a918e;color:#f1f4f6}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#f1f4f6;opacity:.4}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#f1f4f61a}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ef4351;color:#f1f4f6}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#f1f4f6;opacity:.4}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#f1f4f61a}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#9cd8d7;color:#282d35de}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#282d35de;opacity:.4}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#282d351a}:host .mat-table{background:white}:host .mat-table thead,:host .mat-table tbody,:host .mat-table tfoot,:host mat-header-row,:host mat-row,:host mat-footer-row,:host [mat-header-row],:host [mat-row],:host [mat-footer-row],:host .mat-table-sticky{background:inherit}:host mat-row,:host mat-header-row,:host mat-footer-row,:host th.mat-header-cell,:host td.mat-cell,:host td.mat-footer-cell{border-bottom-color:#0000001f}:host .mat-header-cell{color:#0000008a}:host .mat-cell,:host .mat-footer-cell{color:#000000de}:host .mat-calendar-arrow{fill:#0000008a}:host .mat-datepicker-toggle,:host .mat-datepicker-content .mat-calendar-next-button,:host .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}:host .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}:host .mat-calendar-table-header,:host .mat-calendar-body-label{color:#0000008a}:host .mat-calendar-body-cell-content,:host .mat-date-range-input-separator{color:#000000de;border-color:transparent}:host .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}:host .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}:host .mat-calendar-body-in-preview{color:#0000003d}:host .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}:host .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}:host .mat-calendar-body-in-range:before{background:rgba(74,145,142,.2)}:host .mat-calendar-body-comparison-identical,:host .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}:host .mat-calendar-body-comparison-bridge-start:before,:host [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(74,145,142,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-calendar-body-comparison-bridge-end:before,:host [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(74,145,142,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,:host .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}:host .mat-calendar-body-comparison-identical.mat-calendar-body-selected,:host .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}:host .mat-calendar-body-selected{background-color:#4a918e;color:#f1f4f6}:host .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#4a918e66}:host .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #f1f4f6}:host .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),:host .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4a918e4d}@media (hover: hover){:host .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4a918e4d}}:host .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(156,216,215,.2)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,:host .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(156,216,215,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,:host .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(156,216,215,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}:host .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#9cd8d7;color:#282d35de}:host .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#9cd8d766}:host .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #282d35de}:host .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),:host .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#9cd8d74d}@media (hover: hover){:host .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#9cd8d74d}}:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(239,67,81,.2)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,:host .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(239,67,81,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,:host .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(239,67,81,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}:host .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ef4351;color:#f1f4f6}:host .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ef435166}:host .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #f1f4f6}:host .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),:host .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ef43514d}@media (hover: hover){:host .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ef43514d}}:host .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}:host .mat-datepicker-toggle-active{color:#4a918e}:host .mat-datepicker-toggle-active.mat-accent{color:#9cd8d7}:host .mat-datepicker-toggle-active.mat-warn{color:#ef4351}:host .mat-date-range-input-inner[disabled]{color:#00000061}:host .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}:host .mat-divider{border-top-color:#0000001f}:host .mat-divider-vertical{border-right-color:#0000001f}:host .mat-expansion-panel{background:white;color:#000000de}:host .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-action-row{border-top-color:#0000001f}:host .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),:host .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),:host .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){:host .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}:host .mat-expansion-panel-header-title{color:#000000de}:host .mat-expansion-panel-header-description,:host .mat-expansion-indicator:after{color:#0000008a}:host .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}:host .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,:host .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header{height:48px}.mat-expansion-panel-header.mat-expanded{height:64px}:host .mat-form-field-label{color:#0009}:host .mat-hint{color:#0009}:host .mat-form-field.mat-focused .mat-form-field-label{color:#4a918e}:host .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#9cd8d7}:host .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ef4351}:host .mat-focused .mat-form-field-required-marker{color:#9cd8d7}:host .mat-form-field-ripple{background-color:#000000de}:host .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#4a918e}:host .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#9cd8d7}:host .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ef4351}:host .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#4a918e}:host .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#9cd8d7}:host .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ef4351}:host .mat-form-field.mat-form-field-invalid .mat-form-field-label{color:#ef4351}:host .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,:host .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ef4351}:host .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,:host .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ef4351}:host .mat-error{color:#ef4351}:host .mat-form-field-appearance-legacy .mat-form-field-label{color:#0000008a}:host .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}:host .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}:host .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}:host .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}:host .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}:host .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}:host .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}:host .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}:host .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}:host .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}:host .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}:host .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}:host .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#4a918e}:host .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#9cd8d7}:host .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick{color:#ef4351}:host .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ef4351}:host .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}:host .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}:host .mat-icon.mat-primary{color:#4a918e}:host .mat-icon.mat-accent{color:#9cd8d7}:host .mat-icon.mat-warn{color:#ef4351}:host .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}:host .mat-input-element:disabled,:host .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}:host .mat-input-element{caret-color:#4a918e}:host .mat-input-element::placeholder{color:#0000006b}:host .mat-input-element::-moz-placeholder{color:#0000006b}:host .mat-input-element::-webkit-input-placeholder{color:#0000006b}:host .mat-input-element:-ms-input-placeholder{color:#0000006b}:host .mat-form-field.mat-accent .mat-input-element{caret-color:#9cd8d7}:host .mat-form-field.mat-warn .mat-input-element,:host .mat-form-field-invalid .mat-input-element{caret-color:#ef4351}:host .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ef4351}:host .mat-list-base .mat-list-item{color:#000000de}:host .mat-list-base .mat-list-option{color:#000000de}:host .mat-list-base .mat-subheader{color:#0000008a}:host .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}:host .mat-list-option:hover,:host .mat-list-option:focus,:host .mat-nav-list .mat-list-item:hover,:host .mat-nav-list .mat-list-item:focus,:host .mat-action-list .mat-list-item:hover,:host .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}:host .mat-list-single-selected-option,:host .mat-list-single-selected-option:hover,:host .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}:host .mat-menu-panel{background:white}:host .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-menu-item{background:transparent;color:#000000de}:host .mat-menu-item[disabled],:host .mat-menu-item[disabled] .mat-menu-submenu-icon,:host .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}:host .mat-menu-item .mat-icon-no-color,:host .mat-menu-submenu-icon{color:#0000008a}:host .mat-menu-item:hover:not([disabled]),:host .mat-menu-item.cdk-program-focused:not([disabled]),:host .mat-menu-item.cdk-keyboard-focused:not([disabled]),:host .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}:host .mat-paginator{background:white}:host .mat-paginator,:host .mat-paginator-page-size .mat-select-trigger{color:#0000008a}:host .mat-paginator-decrement,:host .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}:host .mat-paginator-first,:host .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}:host .mat-icon-button[disabled] .mat-paginator-decrement,:host .mat-icon-button[disabled] .mat-paginator-increment,:host .mat-icon-button[disabled] .mat-paginator-first,:host .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.mat-paginator-container{min-height:56px}:host .mat-progress-bar-background{fill:#cee0df}:host .mat-progress-bar-buffer{background-color:#cee0df}:host .mat-progress-bar-fill:after{background-color:#4a918e}:host .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#e3f2f1}:host .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#e3f2f1}:host .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#9cd8d7}:host .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#f7ccd0}:host .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#f7ccd0}:host .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ef4351}:host .mat-progress-spinner circle,:host .mat-spinner circle{stroke:#4a918e}:host .mat-progress-spinner.mat-accent circle,:host .mat-spinner.mat-accent circle{stroke:#9cd8d7}:host .mat-progress-spinner.mat-warn circle,:host .mat-spinner.mat-warn circle{stroke:#ef4351}:host .mat-radio-outer-circle{border-color:#0000008a}:host .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#4a918e}:host .mat-radio-button.mat-primary .mat-radio-inner-circle,:host .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),:host .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,:host .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#4a918e}:host .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#9cd8d7}:host .mat-radio-button.mat-accent .mat-radio-inner-circle,:host .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),:host .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,:host .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#9cd8d7}:host .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ef4351}:host .mat-radio-button.mat-warn .mat-radio-inner-circle,:host .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),:host .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,:host .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ef4351}:host .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,:host .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}:host .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,:host .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}:host .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}:host .mat-radio-button .mat-ripple-element{background-color:#000}:host .mat-select-value{color:#000000de}:host .mat-select-placeholder{color:#0000006b}:host .mat-select-disabled .mat-select-value{color:#00000061}:host .mat-select-arrow{color:#0000008a}:host .mat-select-panel{background:white}:host .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}:host .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#4a918e}:host .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#9cd8d7}:host .mat-form-field.mat-focused.mat-warn .mat-select-arrow{color:#ef4351}:host .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ef4351}:host .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}:host .mat-drawer-container{background-color:#fafafa;color:#000000de}:host .mat-drawer{background-color:#fff;color:#000000de}:host .mat-drawer.mat-drawer-push{background-color:#fff}:host .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}:host .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}:host .mat-drawer-side.mat-drawer-end{border-left:solid 1px rgba(0,0,0,.12);border-right:none}:host [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}:host [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}:host .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}:host .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#9cd8d7}:host .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#9cd8d78a}:host .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#9cd8d7}:host .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#4a918e}:host .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#4a918e8a}:host .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#4a918e}:host .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ef4351}:host .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ef43518a}:host .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ef4351}:host .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}:host .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}:host .mat-slide-toggle-bar{background-color:#00000061}:host .mat-slider-track-background{background-color:#00000042}:host .mat-slider.mat-primary .mat-slider-track-fill,:host .mat-slider.mat-primary .mat-slider-thumb,:host .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#4a918e}:host .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#f1f4f6}:host .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#4a918e33}:host .mat-slider.mat-accent .mat-slider-track-fill,:host .mat-slider.mat-accent .mat-slider-thumb,:host .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#9cd8d7}:host .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#282d35de}:host .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#9cd8d733}:host .mat-slider.mat-warn .mat-slider-track-fill,:host .mat-slider.mat-warn .mat-slider-thumb,:host .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ef4351}:host .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#f1f4f6}:host .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ef435133}:host .mat-slider:hover .mat-slider-track-background,:host .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}:host .mat-slider.mat-slider-disabled .mat-slider-track-background,:host .mat-slider.mat-slider-disabled .mat-slider-track-fill,:host .mat-slider.mat-slider-disabled .mat-slider-thumb{background-color:#00000042}:host .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}:host .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}:host .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}:host .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}:host .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}:host .mat-step-header.cdk-keyboard-focused,:host .mat-step-header.cdk-program-focused,:host .mat-step-header:hover:not([aria-disabled]),:host .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}:host .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){:host .mat-step-header:hover{background:none}}:host .mat-step-header .mat-step-label,:host .mat-step-header .mat-step-optional{color:#0000008a}:host .mat-step-header .mat-step-icon{background-color:#0000008a;color:#f1f4f6}:host .mat-step-header .mat-step-icon-selected,:host .mat-step-header .mat-step-icon-state-done,:host .mat-step-header .mat-step-icon-state-edit{background-color:#4a918e;color:#f1f4f6}:host .mat-step-header.mat-accent .mat-step-icon{color:#282d35de}:host .mat-step-header.mat-accent .mat-step-icon-selected,:host .mat-step-header.mat-accent .mat-step-icon-state-done,:host .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#9cd8d7;color:#282d35de}:host .mat-step-header.mat-warn .mat-step-icon{color:#f1f4f6}:host .mat-step-header.mat-warn .mat-step-icon-selected,:host .mat-step-header.mat-warn .mat-step-icon-state-done,:host .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ef4351;color:#f1f4f6}:host .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ef4351}:host .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}:host .mat-step-header .mat-step-label.mat-step-label-error{color:#ef4351}:host .mat-stepper-horizontal,:host .mat-stepper-vertical{background-color:#fff}:host .mat-stepper-vertical-line:before{border-left-color:#0000001f}:host .mat-horizontal-stepper-header:before,:host .mat-horizontal-stepper-header:after,:host .mat-stepper-horizontal-line{border-top-color:#0000001f}.mat-horizontal-stepper-header{height:72px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,.mat-vertical-stepper-header{padding:24px}.mat-stepper-vertical-line:before{top:-16px;bottom:-16px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:after,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:before{top:36px}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{top:36px}:host .mat-sort-header-arrow{color:#757575}:host .mat-tab-nav-bar,:host .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}:host .mat-tab-group-inverted-header .mat-tab-nav-bar,:host .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}:host .mat-tab-label,:host .mat-tab-link{color:#000000de}:host .mat-tab-label.mat-tab-disabled,:host .mat-tab-link.mat-tab-disabled{color:#00000061}:host .mat-tab-header-pagination-chevron{border-color:#000000de}:host .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}:host .mat-tab-group[class*=mat-background-]>.mat-tab-header,:host .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}:host .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#c9dedd4d}:host .mat-tab-group.mat-primary .mat-ink-bar,:host .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#4a918e}:host .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,:host .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,:host .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,:host .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#f1f4f6}:host .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e1f3f34d}:host .mat-tab-group.mat-accent .mat-ink-bar,:host .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#9cd8d7}:host .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,:host .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,:host .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,:host .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#282d35de}:host .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#fac7cb4d}:host .mat-tab-group.mat-warn .mat-ink-bar,:host .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ef4351}:host .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,:host .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,:host .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,:host .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#f1f4f6}:host .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#c9dedd4d}:host .mat-tab-group.mat-background-primary>.mat-tab-header,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#4a918e}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#f1f4f6}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#f1f4f666}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#f1f4f6}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#f1f4f6;opacity:.4}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#f1f4f6;opacity:.12}:host .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e1f3f34d}:host .mat-tab-group.mat-background-accent>.mat-tab-header,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#9cd8d7}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#282d35de}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#282d3566}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#282d35de}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#282d35;opacity:.4}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#282d35;opacity:.12}:host .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#fac7cb4d}:host .mat-tab-group.mat-background-warn>.mat-tab-header,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ef4351}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#f1f4f6}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#f1f4f666}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#f1f4f6}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#f1f4f6;opacity:.4}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#f1f4f6;opacity:.12}:host .mat-toolbar{background:whitesmoke;color:#000000de}:host .mat-toolbar.mat-primary{background:#4a918e;color:#f1f4f6}:host .mat-toolbar.mat-accent{background:#9cd8d7;color:#282d35de}:host .mat-toolbar.mat-warn{background:#ef4351;color:#f1f4f6}:host .mat-toolbar .mat-form-field-underline,:host .mat-toolbar .mat-form-field-ripple,:host .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}:host .mat-toolbar .mat-form-field-label,:host .mat-toolbar .mat-focused .mat-form-field-label,:host .mat-toolbar .mat-select-value,:host .mat-toolbar .mat-select-arrow,:host .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}:host .mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media (max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}:host .mat-tooltip{background:rgba(97,97,97,.9)}:host .mat-tree{background:white}:host .mat-tree-node,:host .mat-nested-tree-node{color:#000000de}.mat-tree-node{min-height:48px}:host .mat-snack-bar-container{color:#f1f4f6b3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}:host .mat-simple-snackbar-action{color:#9cd8d7}:host .primary-50{background-color:#e9f2f1!important;color:#282d35de}:host .primary-100{background-color:#c9dedd!important;color:#282d35de}:host .primary-200{background-color:#a5c8c7!important;color:#282d35de}:host .primary-300{background-color:#80b2b0!important;color:#282d35de}:host .primary-400{background-color:#65a29f!important;color:#282d35de}:host .primary-500{background-color:#4a918e!important;color:#f1f4f6}:host .primary{background-color:#4a918e!important;color:#f1f4f6}:host .primary-600{background-color:#438986!important;color:#f1f4f6}:host .primary-700{background-color:#3a7e7b!important;color:#f1f4f6}:host .primary-800{background-color:#327471!important;color:#f1f4f6}:host .primary-900{background-color:#22625f!important;color:#f1f4f6}:host .primary-A100{background-color:#a4fffb!important;color:#282d35de}:host .primary-A200{background-color:#71fff8!important;color:#282d35de}:host .primary-A400{background-color:#3efff6!important;color:#282d35de}:host .primary-A700{background-color:#25fff4!important;color:#282d35de}:host .primary-contrast-50{color:#282d35de!important}:host .primary-contrast-100{color:#282d35de!important}:host .primary-contrast-200{color:#282d35de!important}:host .primary-contrast-300{color:#282d35de!important}:host .primary-contrast-400{color:#282d35de!important}:host .primary-contrast-500{color:#f1f4f6!important}:host .primary-contrast-600{color:#f1f4f6!important}:host .primary-contrast-700{color:#f1f4f6!important}:host .primary-contrast-800{color:#f1f4f6!important}:host .primary-contrast-900{color:#f1f4f6!important}:host .primary-contrast-A100{color:#282d35de!important}:host .primary-contrast-A200{color:#282d35de!important}:host .primary-contrast-A400{color:#282d35de!important}:host .primary-contrast-A700{color:#282d35de!important}:host .primary-default{background-color:#4a918e!important}:host .primary-lighter{background-color:#c9dedd!important}:host .primary-darker{background-color:#3a7e7b!important}:host .primary-text{background-color:#4a918e!important}:host .primary-default-contrast{background-color:#f1f4f6!important}:host .primary-lighter-contrast{background-color:#282d35de!important}:host .primary-darker-contrast{background-color:#f1f4f6!important}:host .primary-50-contrast{background-color:#282d35de!important}:host .primary-100-contrast{background-color:#282d35de!important}:host .primary-200-contrast{background-color:#282d35de!important}:host .primary-300-contrast{background-color:#282d35de!important}:host .primary-400-contrast{background-color:#282d35de!important}:host .primary-500-contrast{background-color:#f1f4f6!important}:host .primary-600-contrast{background-color:#f1f4f6!important}:host .primary-700-contrast{background-color:#f1f4f6!important}:host .primary-800-contrast{background-color:#f1f4f6!important}:host .primary-900-contrast{background-color:#f1f4f6!important}:host .primary-A100-contrast{background-color:#282d35de!important}:host .primary-A200-contrast{background-color:#282d35de!important}:host .primary-A400-contrast{background-color:#282d35de!important}:host .primary-A700-contrast{background-color:#282d35de!important}:host .primary-contrast-contrast{background-color:!important}:host .accent-50{background-color:#f3fafa!important;color:#282d35de}:host .accent-100{background-color:#e1f3f3!important;color:#282d35de}:host .accent-200{background-color:#ceeceb!important;color:#282d35de}:host .accent-300{background-color:#bae4e3!important;color:#282d35de}:host .accent-400{background-color:#abdedd!important;color:#282d35de}:host .accent-500{background-color:#9cd8d7!important;color:#282d35de}:host .accent{background-color:#9cd8d7!important;color:#282d35de}:host .accent-600{background-color:#94d4d3!important;color:#282d35de}:host .accent-700{background-color:#8acecd!important;color:#f1f4f6}:host .accent-800{background-color:#80c8c7!important;color:#f1f4f6}:host .accent-900{background-color:#6ebfbe!important;color:#f1f4f6}:host .accent-A100{background-color:#fff!important;color:#282d35de}:host .accent-A200{background-color:#fff!important;color:#282d35de}:host .accent-A400{background-color:#d2fffe!important;color:#282d35de}:host .accent-A700{background-color:#b8fffe!important;color:#282d35de}:host .accent-contrast-50{color:#282d35de!important}:host .accent-contrast-100{color:#282d35de!important}:host .accent-contrast-200{color:#282d35de!important}:host .accent-contrast-300{color:#282d35de!important}:host .accent-contrast-400{color:#282d35de!important}:host .accent-contrast-500{color:#282d35de!important}:host .accent-contrast-600{color:#282d35de!important}:host .accent-contrast-700{color:#f1f4f6!important}:host .accent-contrast-800{color:#f1f4f6!important}:host .accent-contrast-900{color:#f1f4f6!important}:host .accent-contrast-A100{color:#282d35de!important}:host .accent-contrast-A200{color:#282d35de!important}:host .accent-contrast-A400{color:#282d35de!important}:host .accent-contrast-A700{color:#282d35de!important}:host .accent-default{background-color:#9cd8d7!important}:host .accent-lighter{background-color:#e1f3f3!important}:host .accent-darker{background-color:#8acecd!important}:host .accent-text{background-color:#9cd8d7!important}:host .accent-default-contrast{background-color:#282d35de!important}:host .accent-lighter-contrast{background-color:#282d35de!important}:host .accent-darker-contrast{background-color:#f1f4f6!important}:host .accent-50-contrast{background-color:#282d35de!important}:host .accent-100-contrast{background-color:#282d35de!important}:host .accent-200-contrast{background-color:#282d35de!important}:host .accent-300-contrast{background-color:#282d35de!important}:host .accent-400-contrast{background-color:#282d35de!important}:host .accent-500-contrast{background-color:#282d35de!important}:host .accent-600-contrast{background-color:#282d35de!important}:host .accent-700-contrast{background-color:#f1f4f6!important}:host .accent-800-contrast{background-color:#f1f4f6!important}:host .accent-900-contrast{background-color:#f1f4f6!important}:host .accent-A100-contrast{background-color:#282d35de!important}:host .accent-A200-contrast{background-color:#282d35de!important}:host .accent-A400-contrast{background-color:#282d35de!important}:host .accent-A700-contrast{background-color:#282d35de!important}:host .accent-contrast-contrast{background-color:!important}:host .warn-50{background-color:#fde8ea!important;color:#282d35de}:host .warn-100{background-color:#fac7cb!important;color:#282d35de}:host .warn-200{background-color:#f7a1a8!important;color:#282d35de}:host .warn-300{background-color:#f47b85!important;color:#282d35de}:host .warn-400{background-color:#f15f6b!important;color:#282d35de}:host .warn-500{background-color:#ef4351!important;color:#f1f4f6}:host .warn{background-color:#ef4351!important;color:#f1f4f6}:host .warn-600{background-color:#ed3d4a!important;color:#f1f4f6}:host .warn-700{background-color:#eb3440!important;color:#f1f4f6}:host .warn-800{background-color:#e82c37!important;color:#f1f4f6}:host .warn-900{background-color:#e41e27!important;color:#f1f4f6}:host .warn-A100{background-color:#fff!important;color:#282d35de}:host .warn-A200{background-color:#ffe6e7!important;color:#282d35de}:host .warn-A400{background-color:#ffb3b6!important;color:#282d35de}:host .warn-A700{background-color:#ff9a9e!important;color:#282d35de}:host .warn-contrast-50{color:#282d35de!important}:host .warn-contrast-100{color:#282d35de!important}:host .warn-contrast-200{color:#282d35de!important}:host .warn-contrast-300{color:#282d35de!important}:host .warn-contrast-400{color:#282d35de!important}:host .warn-contrast-500{color:#f1f4f6!important}:host .warn-contrast-600{color:#f1f4f6!important}:host .warn-contrast-700{color:#f1f4f6!important}:host .warn-contrast-800{color:#f1f4f6!important}:host .warn-contrast-900{color:#f1f4f6!important}:host .warn-contrast-A100{color:#282d35de!important}:host .warn-contrast-A200{color:#282d35de!important}:host .warn-contrast-A400{color:#282d35de!important}:host .warn-contrast-A700{color:#282d35de!important}:host .warn-default{background-color:#ef4351!important}:host .warn-lighter{background-color:#fac7cb!important}:host .warn-darker{background-color:#eb3440!important}:host .warn-text{background-color:#ef4351!important}:host .warn-default-contrast{background-color:#f1f4f6!important}:host .warn-lighter-contrast{background-color:#282d35de!important}:host .warn-darker-contrast{background-color:#f1f4f6!important}:host .warn-50-contrast{background-color:#282d35de!important}:host .warn-100-contrast{background-color:#282d35de!important}:host .warn-200-contrast{background-color:#282d35de!important}:host .warn-300-contrast{background-color:#282d35de!important}:host .warn-400-contrast{background-color:#282d35de!important}:host .warn-500-contrast{background-color:#f1f4f6!important}:host .warn-600-contrast{background-color:#f1f4f6!important}:host .warn-700-contrast{background-color:#f1f4f6!important}:host .warn-800-contrast{background-color:#f1f4f6!important}:host .warn-900-contrast{background-color:#f1f4f6!important}:host .warn-A100-contrast{background-color:#282d35de!important}:host .warn-A200-contrast{background-color:#282d35de!important}:host .warn-A400-contrast{background-color:#282d35de!important}:host .warn-A700-contrast{background-color:#282d35de!important}:host .warn-contrast-contrast{background-color:!important}:host ::-webkit-scrollbar{width:.75rem}:host ::-webkit-scrollbar-track{background:#4a918e}:host ::-webkit-scrollbar-thumb{background:#9cd8d7}:host .primary-logo{height:100%;width:auto;background-image:url('data:image/svg+xml;utf8,<svg id=\"thinky-black\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 75 64.53\"><defs><style>.cls-1{fill:%23000;}<\\/style></defs><title>thinky_logos</title><path class=\"cls-1\" d=\"M205,238.68l.07.6c.4,3.5,1.61,14.14,13.89,14.14a12.8,12.8,0,0,0,10-4.31A12.44,12.44,0,0,0,231.55,239a28.41,28.41,0,0,0-2-6.31,22,22,0,0,1-2-9.17c0-3.37,1-11.23,10.81-11.23s10.82,7.86,10.82,11.23a21.79,21.79,0,0,1-2,9.17,29.69,29.69,0,0,0-2,6.31,12.41,12.41,0,0,0,2.62,10.15,12.8,12.8,0,0,0,10,4.31c12.27,0,13.49-10.63,13.88-14.14l.07-.6c.35-3.1.63-3.1,1.83-3.1v-7.85c-5.66,0-8.9,3.39-9.64,10.08l-.07.58c-.58,5.05-1.54,7.16-6.08,7.16a5.08,5.08,0,0,1-4-1.52,4.62,4.62,0,0,1-.86-3.77,22.5,22.5,0,0,1,1.5-4.68,29.28,29.28,0,0,0,2.61-12.1c0-9.51-5.74-19.1-18.65-19.1s-18.68,9.59-18.68,19.1a29.44,29.44,0,0,0,2.61,12.1,21.92,21.92,0,0,1,1.5,4.68,4.58,4.58,0,0,1-.86,3.77,5.06,5.06,0,0,1-4,1.52c-4.53,0-5.51-2.11-6.09-7.16l-.06-.58c-.74-6.69-4-10.08-9.64-10.08v7.85C204.33,235.58,204.62,235.58,205,238.68Z\" transform=\"translate(-200.96 -204.38)\"/><rect class=\"cls-1\" x=\"32.35\" y=\"23.32\" width=\"3.7\" height=\"6.42\"/><rect class=\"cls-1\" x=\"38.78\" y=\"23.32\" width=\"3.7\" height=\"6.42\"/><path class=\"cls-1\" d=\"M271.4,257.35c-4.55,4.26-10.46,4.91-13.58,4.91a18.82,18.82,0,0,1-14.69-6.48,17.09,17.09,0,0,1-1.86-2.68L240.08,251h-3.42l-1.18,2.09a18.61,18.61,0,0,1-1.87,2.68,18.8,18.8,0,0,1-14.69,6.48c-3.08,0-8.93-.62-13.45-4.78l-4.51,4.9c6.19,5.69,13.91,6.54,18,6.54a25.43,25.43,0,0,0,19.45-8.47,25.41,25.41,0,0,0,19.45,8.47c4.1,0,11.93-.87,18.14-6.72Z\" transform=\"translate(-200.96 -204.38)\"/></svg>');background-position:center;background-repeat:no-repeat;background-size:150px}:host :root{--initial-primary: #4a918e;--initial-accent: #9cd8d7;--initial-warn: #ef4351;--initial-dark-background: #222222;--initial-light-background: #f2f2f2;--initial-light-background: white;--initial-light-text: rgba(0, 0, 0, .87);--initial-dark-text: rgba(255, 255, 255, .87);--background: #050505;--orange-accent: #ff9800;--green-accent: #00e676;--yellow-accent: #fdd835;--purple-accent: #9c27b0;--cyan-accent: rgba(132, 255, 255, .75);--pink-accent: #e91e63;--success: #00e676}:host body{background-color:var(--initial-dark-background)}:host ::ng-deep .mat-tooltip{font-size:16px!important}:host :host .valid-control{color:var(--green-accent)}:host :host .invalid-control{color:var(--theme-warn-500)}:host :host .actions .item:not(:last-child){margin-right:0}:host :host .project-thumbnail img{height:50px;width:auto}:host :host .active{background-color:var(--theme-accent-400);transition:background-color 1s linear}:host :host .inactive{background-color:#f2f5a900;transition:background-color 1s linear}:host :host .expansion-panel{width:100%;margin-bottom:10px}:host :host .expansion-container{max-height:300px;overflow-y:auto}:host :host .divider-fill-vert{background-color:var(--theme-accent-500);min-height:100%;top:10%;bottom:10%;min-width:5px}:host :host .divider-fill-hor{background-color:var(--theme-accent-500);height:5px;width:100%}:host :host .form-disabled{background-color:#797979;opacity:.5;border-radius:4px}:host ::ng-deep input:-webkit-autofill,:host input:-webkit-autofill:hover,:host input:-webkit-autofill:focus,:host input:-webkit-autofill:active{-webkit-transition:background-color 5000s ease-in-out 0s;transition:background-color 5000s ease-in-out 0s;-webkit-text-fill-color:currentColor}@media (max-width: 768px){:host .spread{margin:1em!important}}@media (max-width: 480px){:host .spread{margin:.5em!important}}:host .spinner-logo{display:none!important}:host :host ::ng-deep .social-card{margin:20px;padding:15px 5px}:host :host ::ng-deep .social-card mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}:host :host ::ng-deep .promo-container{cursor:pointer;margin:10px}:host :host ::ng-deep .info-card-btn{width:100%;border-radius:0 0 2px 2px;border-top:1px solid #b9dddd;margin:0!important}:host :host ::ng-deep .main-slot-container{padding:10px}:host :host ::ng-deep .slot-header{align-items:center;cursor:pointer}:host :host ::ng-deep .slot-header:hover{color:var(--initial-primary)}:host :host ::ng-deep .slot-content{width:100%}:host :host ::ng-deep .slot-name{font-size:13px;font-weight:600}:host :host ::ng-deep .slot-header-anchor{font-size:10px;text-decoration:none;color:#000;min-width:100px}:host :host ::ng-deep .slot-header-anchor:hover{color:var(--initial-primary)}:host :host ::ng-deep .slot-description{font-size:12px;margin-right:10px}:host :host ::ng-deep .slot-action-anchor{font-size:10px;text-decoration:none;color:#000}:host :host ::ng-deep .slot-action-anchor:hover{color:var(--initial-primary)}:host :host ::ng-deep .action-icon{height:24px;width:24px;font-size:24px;cursor:pointer}:host .example-header-image{background-size:cover}:host .mat-icon{display:inline-flex;vertical-align:middle}:host .mat-icon.spin{animation:rotate 1s ease-in-out infinite}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(-360deg)}}:host .tab{margin:2em}:host .tab .video iframe{display:block;margin:auto}\n"], components: [{ type: i4.MatCard, selector: "mat-card", exportAs: ["matCard"] }, { type: i4.MatCardHeader, selector: "mat-card-header" }, { type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: i6.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "disableRipple"], exportAs: ["matTabGroup"] }, { type: i6.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { type: i7.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], directives: [{ type: i8.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.MatCardAvatar, selector: "[mat-card-avatar], [matCardAvatar]" }, { type: i4.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { type: i4.MatCardSubtitle, selector: "mat-card-subtitle, [mat-card-subtitle], [matCardSubtitle]" }, { type: i8.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i4.MatCardContent, selector: "mat-card-content, [mat-card-content], [matCardContent]" }, { type: i4.MatCardActions, selector: "mat-card-actions", inputs: ["align"], exportAs: ["matCardActions"] }, { type: i9.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { type: i9.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { type: i9.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }] });
128
127
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: MainFeedCardComponent, decorators: [{
129
128
  type: Component,
130
- args: [{ selector: 'lcu-main-feed-card', template: "<mat-card class=\"social-card\">\n <mat-card-header>\n <img\n mat-card-avatar\n class=\"example-header-image\"\n [src]=\"FeedItem.Avatar\"\n *ngIf=\"FeedItem.Avatar\"\n />\n\n <mat-card-title *ngIf=\"FeedItem.Title\">{{ FeedItem.Title }}</mat-card-title>\n\n <mat-card-subtitle>\n <div *ngIf=\"FeedItem.Subtitle\">{{ FeedItem.Subtitle }}</div>\n\n <div *ngIf=\"FeedItem.Subtext\">{{ FeedItem.Subtext }}</div>\n\n <div *ngIf=\"FeedItem.Status\">\n <mat-icon\n *ngIf=\"Icon\"\n [style.color]=\"IconColor\"\n [class.spin]=\"FeedItem.Status?.Code == 2\"\n >\n {{ Icon }}\n </mat-icon>\n\n <span *ngIf=\"FeedItem.Timestamp\">\n {{ CalculateTimelapse(FeedItem.Timestamp) }}\n </span>\n </div>\n </mat-card-subtitle>\n </mat-card-header>\n\n <div *ngIf=\"!FeedItem.IsShortForm\">\n <div class=\"feed-card-container\">\n <div class=\"feed-card-main-content\">\n <mat-tab-group>\n <ng-container *ngFor=\"let tab of FeedItem.Tabs\">\n <mat-tab [label]=\"tab.Title\">\n <div class=\"tab\">\n <ng-container *ngIf=\"tab.Data?.Commit?.Message\">\n <div class=\"commit-message\">\n {{ tab.Data?.Commit?.Message }}\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"tab.Data?.Content\">\n <div class=\"content\">\n {{ tab.Data?.Content }}\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"tab.Data?.Video\">\n <div\n class=\"video\"\n [innerHTML]=\"SafeHtml(tab.Data.Video)\"\n ></div>\n </ng-container>\n\n <ng-container *ngIf=\"tab.Data?.Comments\">\n <div class=\"comments\">\n <ng-container *ngIf=\"tab.Data?.Comments?.length <= 0\">\n <h4>No comments provided</h4>\n </ng-container>\n\n <mat-card *ngFor=\"let comment of tab.Data?.Comments\">\n <mat-card-header>\n <img\n mat-card-avatar\n class=\"example-header-image\"\n [src]=\"comment.Avatar\"\n *ngIf=\"comment.Avatar\"\n />\n\n <mat-card-title>\n {{ comment.Author }}\n commented on\n {{ comment.UpdatedAt }}\n </mat-card-title>\n </mat-card-header>\n\n <mat-card-content>\n {{ comment.Comment }}\n </mat-card-content>\n </mat-card>\n </div>\n </ng-container>\n </div>\n </mat-tab>\n </ng-container>\n </mat-tab-group>\n </div>\n </div>\n </div>\n\n <mat-card-actions fxLayout=\"row\" fxLayoutAlign=\"space-around center\">\n <div fxFlex></div>\n\n <ng-container *ngFor=\"let action of FeedItem.Actions\">\n <button mat-button [color]=\"action.Color\" (click)=\"HandleAction(action)\">\n <mat-icon *ngIf=\"action.Icon\">{{ action.Icon }}</mat-icon>\n\n {{ action.Text }}\n </button>\n </ng-container>\n </mat-card-actions>\n</mat-card>\n", styles: [":host{@import url(https://fonts.googleapis.com/icon?family=Material+Icons);@import url(https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:400,900&display=swap);@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap);@import url(https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:400,900&display=swap);@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap);}:host .disable-autofill-background-default input:-webkit-autofill,:host .disable-autofill-background-default input:-webkit-autofill:hover,:host .disable-autofill-background-default input:-webkit-autofill:focus,:host .disable-autofill-background-default textarea:-webkit-autofill,:host .disable-autofill-background-default textarea:-webkit-autofill:hover,:host .disable-autofill-background-default textarea:-webkit-autofill:focus,:host .disable-autofill-background-default select:-webkit-autofill,:host .disable-autofill-background-default select:-webkit-autofill:hover,:host .disable-autofill-background-default select:-webkit-autofill:focus{-webkit-transition:background-color 5000s!important;transition:background-color 5000s!important}:host .list-item-disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed!important}:host .filler{flex:1 1 auto;display:inline-block!important}:host .sticky{position:sticky;z-index:750;top:0}:host .inline{display:inline-block}:host .contents{display:contents}:host .page-element{display:contents}:host .mat-spinner{margin:auto}:host .mat-full-width{width:100%}:host .spread{margin:2rem}:host .spread-thin{margin:1rem}:host .overlay{position:sticky!important}:host .overlay.top{top:0}:host .overlay.bottom{bottom:0}:host .margin-0{margin:0!important}:host .margin-top-0,:host .margin-y-0{margin-top:0!important}:host .margin-right-0,:host .margin-x-0{margin-right:0!important}:host .margin-bottom-0,:host .margin-y-0{margin-bottom:0!important}:host .margin-left-0,:host .margin-x-0{margin-left:0!important}:host .margin-1{margin:.25rem!important}:host .margin-top-1,:host .margin-y-1{margin-top:.25rem!important}:host .margin-right-1,:host .margin-x-1{margin-right:.25rem!important}:host .margin-bottom-1,:host .margin-y-1{margin-bottom:.25rem!important}:host .margin-left-1,:host .margin-x-1{margin-left:.25rem!important}:host .margin-2{margin:.5rem!important}:host .margin-top-2,:host .margin-y-2{margin-top:.5rem!important}:host .margin-right-2,:host .margin-x-2{margin-right:.5rem!important}:host .margin-bottom-2,:host .margin-y-2{margin-bottom:.5rem!important}:host .margin-left-2,:host .margin-x-2{margin-left:.5rem!important}:host .margin-3{margin:1rem!important}:host .margin-top-3,:host .margin-y-3{margin-top:1rem!important}:host .margin-top-bottom-3{margin:1rem 0!important}:host .margin-right-3,:host .margin-x-3{margin-right:1rem!important}:host .margin-bottom-3,:host .margin-y-3{margin-bottom:1rem!important}:host .margin-left-3,:host .margin-x-3{margin-left:1rem!important}:host .margin-4{margin:2rem!important}:host .margin-top-4,:host .margin-y-4{margin-top:2rem!important}:host .margin-right-4,:host .margin-x-4{margin-right:2rem!important}:host .margin-bottom-4,:host .margin-y-4{margin-bottom:2rem!important}:host .margin-left-4,:host .margin-x-4{margin-left:2rem!important}:host .margin-right-5,:host .margin-x-5{margin-right:4rem!important}:host .margin-bottom-5,:host .margin-y-5{margin-bottom:4rem!important}:host .margin-left-5,:host .margin-x-5{margin-left:4rem!important}:host .margin-5{margin:4rem!important}:host .margin-top-5,:host .margin-y-5{margin-top:4rem!important}:host .margin-right-6,:host .margin-x-6{margin-right:4.5rem!important}:host .margin-bottom-6,:host .margin-y-6{margin-bottom:4.5rem!important}:host .margin-left-6,:host .margin-x-6{margin-left:4.5rem!important}:host .margin-7{margin:6rem!important}:host .margin-top-7,:host .margin-y-7{margin-top:6rem!important}:host .margin-right-7,:host .margin-x-7{margin-right:6rem!important}:host .margin-bottom-7,:host .margin-y-7{margin-bottom:6rem!important}:host .margin-left-7,:host .margin-x-7{margin-left:6rem!important}:host .margin-8{margin:7.5rem!important}:host .margin-top-8,:host .margin-y-8{margin-top:7.5rem!important}:host .margin-right-8,:host .margin-x-8{margin-right:7.5rem!important}:host .margin-bottom-8,:host .margin-y-8{margin-bottom:7.5rem!important}:host .margin-left-8,:host .margin-x-8{margin-left:7.5rem!important}:host .margin-9{margin:9rem!important}:host .margin-top-9,:host .margin-y-9{margin-top:9rem!important}:host .margin-right-9,:host .margin-x-9{margin-right:9rem!important}:host .margin-bottom-9,:host .margin-y-9{margin-bottom:9rem!important}:host .margin-left-9,:host .margin-x-9{margin-left:9rem!important}:host .padding-0{padding:0!important}:host .padding-top-0,:host .padding-y-0{padding-top:0!important}:host .padding-right-0,:host .padding-x-0{padding-right:0!important}:host .padding-bottom-0,:host .padding-y-0{padding-bottom:0!important}:host .padding-left-0,:host .padding-x-0{padding-left:0!important}:host .padding-1{padding:.25rem!important}:host .padding-top-1,:host .padding-y-1{padding-top:.25rem!important}:host .padding-right-1,:host .padding-x-1{padding-right:.25rem!important}:host .padding-bottom-1,:host .padding-y-1{padding-bottom:.25rem!important}:host .padding-left-1,:host .padding-x-1{padding-left:.25rem!important}:host .padding-2{padding:.5rem!important}:host .padding-top-2,:host .padding-y-2{padding-top:.5rem!important}:host .padding-right-2,:host .padding-x-2{padding-right:.5rem!important}:host .padding-bottom-2,:host .padding-y-2{padding-bottom:.5rem!important}:host .padding-left-2,:host .padding-x-2{padding-left:.5rem!important}:host .padding-3{padding:1rem!important}:host .padding-top-3,:host .padding-y-3{padding-top:1rem!important}:host .padding-right-3,:host .padding-x-3{padding-right:1rem!important}:host .padding-bottom-3,:host .padding-y-3{padding-bottom:1rem!important}:host .padding-left-3,:host .padding-x-3{padding-left:1rem!important}:host .padding-4{padding:2rem!important}:host .padding-top-4,:host .padding-y-4{padding-top:2rem!important}:host .padding-right-4,:host .padding-x-4{padding-right:2rem!important}:host .padding-bottom-4,:host .padding-y-4{padding-bottom:2rem!important}:host .padding-left-4,:host .padding-x-4{padding-left:2rem!important}:host .padding-5{padding:4rem!important}:host .padding-top-5,:host .padding-y-5{padding-top:4rem!important}:host .padding-right-5,:host .padding-x-5{padding-right:4rem!important}:host .padding-bottom-5,:host .padding-y-5{padding-bottom:4rem!important}:host .padding-left-5,:host .padding-x-5{padding-left:4rem!important}:host .margin-n1{margin:-.25rem!important}:host .margin-top-n1,:host .margin-y-n1{margin-top:-.25rem!important}:host .margin-right-n1,:host .margin-x-n1{margin-right:-.25rem!important}:host .margin-bottom-n1,:host .margin-y-n1{margin-bottom:-.25rem!important}:host .margin-left-n1,:host .margin-x-n1{margin-left:-.25rem!important}:host .margin-n2{margin:-.5rem!important}:host .margin-top-n2,:host .margin-y-n2{margin-top:-.5rem!important}:host .margin-right-n2,:host .margin-x-n2{margin-right:-.5rem!important}:host .margin-bottom-n2,:host .margin-y-n2{margin-bottom:-.5rem!important}:host .margin-left-n2,:host .margin-x-n2{margin-left:-.5rem!important}:host .margin-n3{margin:-1rem!important}:host .margin-top-n3,:host .margin-y-n3{margin-top:-1rem!important}:host .margin-right-n3,:host .margin-x-n3{margin-right:-1rem!important}:host .margin-bottom-n3,:host .margin-y-n3{margin-bottom:-1rem!important}:host .margin-left-n3,:host .margin-x-n3{margin-left:-1rem!important}:host .margin-n4{margin:-2rem!important}:host .margin-top-n4,:host .margin-y-n4{margin-top:-2rem!important}:host .margin-right-n4,:host .margin-x-n4{margin-right:-2rem!important}:host .margin-bottom-n4,:host .margin-y-n4{margin-bottom:-2rem!important}:host .margin-left-n4,:host .margin-x-n4{margin-left:-2rem!important}:host .margin-n5{margin:-4rem!important}:host .margin-top-n5,:host .margin-y-n5{margin-top:-4rem!important}:host .margin-right-n5,:host .margin-x-n5{margin-right:-4rem!important}:host .margin-bottom-n5,:host .margin-y-n5{margin-bottom:-4rem!important}:host .margin-left-n5,:host .margin-x-n5{margin-left:-4rem!important}:host .margin-auto{margin:auto!important}:host .margin-top-auto,:host .margin-y-auto{margin-top:auto!important}:host .margin-right-auto,:host .margin-x-auto{margin-right:auto!important}:host .margin-bottom-auto,:host .margin-y-auto{margin-bottom:auto!important}:host .margin-left-auto,:host .margin-x-auto{margin-left:auto!important}@media (min-width: 576px){:host .margin-sm-0{margin:0!important}:host .margin-top-sm-0,:host .margin-y-sm-0{margin-top:0!important}:host .margin-right-sm-0,:host .margin-x-sm-0{margin-right:0!important}:host .margin-bottom-sm-0,:host .margin-y-sm-0{margin-bottom:0!important}:host .margin-left-sm-0,:host .margin-x-sm-0{margin-left:0!important}:host .margin-sm-1{margin:.25rem!important}:host .margin-top-sm-1,:host .margin-y-sm-1{margin-top:.25rem!important}:host .margin-right-sm-1,:host .margin-x-sm-1{margin-right:.25rem!important}:host .margin-bottom-sm-1,:host .margin-y-sm-1{margin-bottom:.25rem!important}:host .margin-left-sm-1,:host .margin-x-sm-1{margin-left:.25rem!important}:host .margin-sm-2{margin:.5rem!important}:host .margin-top-sm-2,:host .margin-y-sm-2{margin-top:.5rem!important}:host .margin-right-sm-2,:host .margin-x-sm-2{margin-right:.5rem!important}:host .margin-bottom-sm-2,:host .margin-y-sm-2{margin-bottom:.5rem!important}:host .margin-left-sm-2,:host .margin-x-sm-2{margin-left:.5rem!important}:host .margin-sm-3{margin:1rem!important}:host .margin-top-sm-3,:host .margin-y-sm-3{margin-top:1rem!important}:host .margin-right-sm-3,:host .margin-x-sm-3{margin-right:1rem!important}:host .margin-bottom-sm-3,:host .margin-y-sm-3{margin-bottom:1rem!important}:host .margin-left-sm-3,:host .margin-x-sm-3{margin-left:1rem!important}:host .margin-sm-4{margin:2rem!important}:host .margin-top-sm-4,:host .margin-y-sm-4{margin-top:2rem!important}:host .margin-right-sm-4,:host .margin-x-sm-4{margin-right:2rem!important}:host .margin-bottom-sm-4,:host .margin-y-sm-4{margin-bottom:2rem!important}:host .margin-left-sm-4,:host .margin-x-sm-4{margin-left:2rem!important}:host .margin-sm-5{margin:4rem!important}:host .margin-top-sm-5,:host .margin-y-sm-5{margin-top:4rem!important}:host .margin-right-sm-5,:host .margin-x-sm-5{margin-right:4rem!important}:host .margin-bottom-sm-5,:host .margin-y-sm-5{margin-bottom:4rem!important}:host .margin-left-sm-5,:host .margin-x-sm-5{margin-left:4rem!important}:host .padding-sm-0{padding:0!important}:host .padding-top-sm-0,:host .padding-y-sm-0{padding-top:0!important}:host .padding-right-sm-0,:host .padding-x-sm-0{padding-right:0!important}:host .padding-bottom-sm-0,:host .padding-y-sm-0{padding-bottom:0!important}:host .padding-left-sm-0,:host .padding-x-sm-0{padding-left:0!important}:host .padding-sm-1{padding:.25rem!important}:host .padding-top-sm-1,:host .padding-y-sm-1{padding-top:.25rem!important}:host .padding-right-sm-1,:host .padding-x-sm-1{padding-right:.25rem!important}:host .padding-bottom-sm-1,:host .padding-y-sm-1{padding-bottom:.25rem!important}:host .padding-left-sm-1,:host .padding-x-sm-1{padding-left:.25rem!important}:host .padding-sm-2{padding:.5rem!important}:host .padding-top-sm-2,:host .padding-y-sm-2{padding-top:.5rem!important}:host .padding-right-sm-2,:host .padding-x-sm-2{padding-right:.5rem!important}:host .padding-bottom-sm-2,:host .padding-y-sm-2{padding-bottom:.5rem!important}:host .padding-left-sm-2,:host .padding-x-sm-2{padding-left:.5rem!important}:host .padding-sm-3{padding:1rem!important}:host .padding-top-sm-3,:host .padding-y-sm-3{padding-top:1rem!important}:host .padding-right-sm-3,:host .padding-x-sm-3{padding-right:1rem!important}:host .padding-bottom-sm-3,:host .padding-y-sm-3{padding-bottom:1rem!important}:host .padding-left-sm-3,:host .padding-x-sm-3{padding-left:1rem!important}:host .padding-sm-4{padding:2rem!important}:host .padding-top-sm-4,:host .padding-y-sm-4{padding-top:2rem!important}:host .padding-right-sm-4,:host .padding-x-sm-4{padding-right:2rem!important}:host .padding-bottom-sm-4,:host .padding-y-sm-4{padding-bottom:2rem!important}:host .padding-left-sm-4,:host .padding-x-sm-4{padding-left:2rem!important}:host .padding-sm-5{padding:4rem!important}:host .padding-top-sm-5,:host .padding-y-sm-5{padding-top:4rem!important}:host .padding-right-sm-5,:host .padding-x-sm-5{padding-right:4rem!important}:host .padding-bottom-sm-5,:host .padding-y-sm-5{padding-bottom:4rem!important}:host .padding-left-sm-5,:host .padding-x-sm-5{padding-left:4rem!important}:host .margin-sm-n1{margin:-.25rem!important}:host .margin-top-sm-n1,:host .margin-y-sm-n1{margin-top:-.25rem!important}:host .margin-right-sm-n1,:host .margin-x-sm-n1{margin-right:-.25rem!important}:host .margin-bottom-sm-n1,:host .margin-y-sm-n1{margin-bottom:-.25rem!important}:host .margin-left-sm-n1,:host .margin-x-sm-n1{margin-left:-.25rem!important}:host .margin-sm-n2{margin:-.5rem!important}:host .margin-top-sm-n2,:host .margin-y-sm-n2{margin-top:-.5rem!important}:host .margin-right-sm-n2,:host .margin-x-sm-n2{margin-right:-.5rem!important}:host .margin-bottom-sm-n2,:host .margin-y-sm-n2{margin-bottom:-.5rem!important}:host .margin-left-sm-n2,:host .margin-x-sm-n2{margin-left:-.5rem!important}:host .margin-sm-n3{margin:-1rem!important}:host .margin-top-sm-n3,:host .margin-y-sm-n3{margin-top:-1rem!important}:host .margin-right-sm-n3,:host .margin-x-sm-n3{margin-right:-1rem!important}:host .margin-bottom-sm-n3,:host .margin-y-sm-n3{margin-bottom:-1rem!important}:host .margin-left-sm-n3,:host .margin-x-sm-n3{margin-left:-1rem!important}:host .margin-sm-n4{margin:-2rem!important}:host .margin-top-sm-n4,:host .margin-y-sm-n4{margin-top:-2rem!important}:host .margin-right-sm-n4,:host .margin-x-sm-n4{margin-right:-2rem!important}:host .margin-bottom-sm-n4,:host .margin-y-sm-n4{margin-bottom:-2rem!important}:host .margin-left-sm-n4,:host .margin-x-sm-n4{margin-left:-2rem!important}:host .margin-sm-n5{margin:-4rem!important}:host .margin-top-sm-n5,:host .margin-y-sm-n5{margin-top:-4rem!important}:host .margin-right-sm-n5,:host .margin-x-sm-n5{margin-right:-4rem!important}:host .margin-bottom-sm-n5,:host .margin-y-sm-n5{margin-bottom:-4rem!important}:host .margin-left-sm-n5,:host .margin-x-sm-n5{margin-left:-4rem!important}:host .margin-sm-auto{margin:auto!important}:host .margin-top-sm-auto,:host .margin-y-sm-auto{margin-top:auto!important}:host .margin-right-sm-auto,:host .margin-x-sm-auto{margin-right:auto!important}:host .margin-bottom-sm-auto,:host .margin-y-sm-auto{margin-bottom:auto!important}:host .margin-left-sm-auto,:host .margin-x-sm-auto{margin-left:auto!important}}@media (min-width: 768px){:host .margin-md-0{margin:0!important}:host .margin-top-md-0,:host .margin-y-md-0{margin-top:0!important}:host .margin-right-md-0,:host .margin-x-md-0{margin-right:0!important}:host .margin-bottom-md-0,:host .margin-y-md-0{margin-bottom:0!important}:host .margin-left-md-0,:host .margin-x-md-0{margin-left:0!important}:host .margin-md-1{margin:.25rem!important}:host .margin-top-md-1,:host .margin-y-md-1{margin-top:.25rem!important}:host .margin-right-md-1,:host .margin-x-md-1{margin-right:.25rem!important}:host .margin-bottom-md-1,:host .margin-y-md-1{margin-bottom:.25rem!important}:host .margin-left-md-1,:host .margin-x-md-1{margin-left:.25rem!important}:host .margin-md-2{margin:.5rem!important}:host .margin-top-md-2,:host .margin-y-md-2{margin-top:.5rem!important}:host .margin-right-md-2,:host .margin-x-md-2{margin-right:.5rem!important}:host .margin-bottom-md-2,:host .margin-y-md-2{margin-bottom:.5rem!important}:host .margin-left-md-2,:host .margin-x-md-2{margin-left:.5rem!important}:host .margin-md-3{margin:1rem!important}:host .margin-top-md-3,:host .margin-y-md-3{margin-top:1rem!important}:host .margin-right-md-3,:host .margin-x-md-3{margin-right:1rem!important}:host .margin-bottom-md-3,:host .margin-y-md-3{margin-bottom:1rem!important}:host .margin-left-md-3,:host .margin-x-md-3{margin-left:1rem!important}:host .margin-md-4{margin:2rem!important}:host .margin-top-md-4,:host .margin-y-md-4{margin-top:2rem!important}:host .margin-right-md-4,:host .margin-x-md-4{margin-right:2rem!important}:host .margin-bottom-md-4,:host .margin-y-md-4{margin-bottom:2rem!important}:host .margin-left-md-4,:host .margin-x-md-4{margin-left:2rem!important}:host .margin-md-5{margin:4rem!important}:host .margin-top-md-5,:host .margin-y-md-5{margin-top:4rem!important}:host .margin-right-md-5,:host .margin-x-md-5{margin-right:4rem!important}:host .margin-bottom-md-5,:host .margin-y-md-5{margin-bottom:4rem!important}:host .margin-left-md-5,:host .margin-x-md-5{margin-left:4rem!important}:host .padding-md-0{padding:0!important}:host .padding-top-md-0,:host .padding-y-md-0{padding-top:0!important}:host .padding-right-md-0,:host .padding-x-md-0{padding-right:0!important}:host .padding-bottom-md-0,:host .padding-y-md-0{padding-bottom:0!important}:host .padding-left-md-0,:host .padding-x-md-0{padding-left:0!important}:host .padding-md-1{padding:.25rem!important}:host .padding-top-md-1,:host .padding-y-md-1{padding-top:.25rem!important}:host .padding-right-md-1,:host .padding-x-md-1{padding-right:.25rem!important}:host .padding-bottom-md-1,:host .padding-y-md-1{padding-bottom:.25rem!important}:host .padding-left-md-1,:host .padding-x-md-1{padding-left:.25rem!important}:host .padding-md-2{padding:.5rem!important}:host .padding-top-md-2,:host .padding-y-md-2{padding-top:.5rem!important}:host .padding-right-md-2,:host .padding-x-md-2{padding-right:.5rem!important}:host .padding-bottom-md-2,:host .padding-y-md-2{padding-bottom:.5rem!important}:host .padding-left-md-2,:host .padding-x-md-2{padding-left:.5rem!important}:host .padding-md-3{padding:1rem!important}:host .padding-top-md-3,:host .padding-y-md-3{padding-top:1rem!important}:host .padding-right-md-3,:host .padding-x-md-3{padding-right:1rem!important}:host .padding-bottom-md-3,:host .padding-y-md-3{padding-bottom:1rem!important}:host .padding-left-md-3,:host .padding-x-md-3{padding-left:1rem!important}:host .padding-md-4{padding:2rem!important}:host .padding-top-md-4,:host .padding-y-md-4{padding-top:2rem!important}:host .padding-right-md-4,:host .padding-x-md-4{padding-right:2rem!important}:host .padding-bottom-md-4,:host .padding-y-md-4{padding-bottom:2rem!important}:host .padding-left-md-4,:host .padding-x-md-4{padding-left:2rem!important}:host .padding-md-5{padding:4rem!important}:host .padding-top-md-5,:host .padding-y-md-5{padding-top:4rem!important}:host .padding-right-md-5,:host .padding-x-md-5{padding-right:4rem!important}:host .padding-bottom-md-5,:host .padding-y-md-5{padding-bottom:4rem!important}:host .padding-left-md-5,:host .padding-x-md-5{padding-left:4rem!important}:host .margin-md-n1{margin:-.25rem!important}:host .margin-top-md-n1,:host .margin-y-md-n1{margin-top:-.25rem!important}:host .margin-right-md-n1,:host .margin-x-md-n1{margin-right:-.25rem!important}:host .margin-bottom-md-n1,:host .margin-y-md-n1{margin-bottom:-.25rem!important}:host .margin-left-md-n1,:host .margin-x-md-n1{margin-left:-.25rem!important}:host .margin-md-n2{margin:-.5rem!important}:host .margin-top-md-n2,:host .margin-y-md-n2{margin-top:-.5rem!important}:host .margin-right-md-n2,:host .margin-x-md-n2{margin-right:-.5rem!important}:host .margin-bottom-md-n2,:host .margin-y-md-n2{margin-bottom:-.5rem!important}:host .margin-left-md-n2,:host .margin-x-md-n2{margin-left:-.5rem!important}:host .margin-md-n3{margin:-1rem!important}:host .margin-top-md-n3,:host .margin-y-md-n3{margin-top:-1rem!important}:host .margin-right-md-n3,:host .margin-x-md-n3{margin-right:-1rem!important}:host .margin-bottom-md-n3,:host .margin-y-md-n3{margin-bottom:-1rem!important}:host .margin-left-md-n3,:host .margin-x-md-n3{margin-left:-1rem!important}:host .margin-md-n4{margin:-2rem!important}:host .margin-top-md-n4,:host .margin-y-md-n4{margin-top:-2rem!important}:host .margin-right-md-n4,:host .margin-x-md-n4{margin-right:-2rem!important}:host .margin-bottom-md-n4,:host .margin-y-md-n4{margin-bottom:-2rem!important}:host .margin-left-md-n4,:host .margin-x-md-n4{margin-left:-2rem!important}:host .margin-md-n5{margin:-4rem!important}:host .margin-top-md-n5,:host .margin-y-md-n5{margin-top:-4rem!important}:host .margin-right-md-n5,:host .margin-x-md-n5{margin-right:-4rem!important}:host .margin-bottom-md-n5,:host .margin-y-md-n5{margin-bottom:-4rem!important}:host .margin-left-md-n5,:host .margin-x-md-n5{margin-left:-4rem!important}:host .margin-md-auto{margin:auto!important}:host .margin-top-md-auto,:host .margin-y-md-auto{margin-top:auto!important}:host .margin-right-md-auto,:host .margin-x-md-auto{margin-right:auto!important}:host .margin-bottom-md-auto,:host .margin-y-md-auto{margin-bottom:auto!important}:host .margin-left-md-auto,:host .margin-x-md-auto{margin-left:auto!important}}@media (min-width: 992px){:host .margin-lg-0{margin:0!important}:host .margin-top-lg-0,:host .margin-y-lg-0{margin-top:0!important}:host .margin-right-lg-0,:host .margin-x-lg-0{margin-right:0!important}:host .margin-bottom-lg-0,:host .margin-y-lg-0{margin-bottom:0!important}:host .margin-left-lg-0,:host .margin-x-lg-0{margin-left:0!important}:host .margin-lg-1{margin:.25rem!important}:host .margin-top-lg-1,:host .margin-y-lg-1{margin-top:.25rem!important}:host .margin-right-lg-1,:host .margin-x-lg-1{margin-right:.25rem!important}:host .margin-bottom-lg-1,:host .margin-y-lg-1{margin-bottom:.25rem!important}:host .margin-left-lg-1,:host .margin-x-lg-1{margin-left:.25rem!important}:host .margin-lg-2{margin:.5rem!important}:host .margin-top-lg-2,:host .margin-y-lg-2{margin-top:.5rem!important}:host .margin-right-lg-2,:host .margin-x-lg-2{margin-right:.5rem!important}:host .margin-bottom-lg-2,:host .margin-y-lg-2{margin-bottom:.5rem!important}:host .margin-left-lg-2,:host .margin-x-lg-2{margin-left:.5rem!important}:host .margin-lg-3{margin:1rem!important}:host .margin-top-lg-3,:host .margin-y-lg-3{margin-top:1rem!important}:host .margin-right-lg-3,:host .margin-x-lg-3{margin-right:1rem!important}:host .margin-bottom-lg-3,:host .margin-y-lg-3{margin-bottom:1rem!important}:host .margin-left-lg-3,:host .margin-x-lg-3{margin-left:1rem!important}:host .margin-lg-4{margin:2rem!important}:host .margin-top-lg-4,:host .margin-y-lg-4{margin-top:2rem!important}:host .margin-right-lg-4,:host .margin-x-lg-4{margin-right:2rem!important}:host .margin-bottom-lg-4,:host .margin-y-lg-4{margin-bottom:2rem!important}:host .margin-left-lg-4,:host .margin-x-lg-4{margin-left:2rem!important}:host .margin-lg-5{margin:4rem!important}:host .margin-top-lg-5,:host .margin-y-lg-5{margin-top:4rem!important}:host .margin-right-lg-5,:host .margin-x-lg-5{margin-right:4rem!important}:host .margin-bottom-lg-5,:host .margin-y-lg-5{margin-bottom:4rem!important}:host .margin-left-lg-5,:host .margin-x-lg-5{margin-left:4rem!important}:host .padding-lg-0{padding:0!important}:host .padding-top-lg-0,:host .padding-y-lg-0{padding-top:0!important}:host .padding-right-lg-0,:host .padding-x-lg-0{padding-right:0!important}:host .padding-bottom-lg-0,:host .padding-y-lg-0{padding-bottom:0!important}:host .padding-left-lg-0,:host .padding-x-lg-0{padding-left:0!important}:host .padding-lg-1{padding:.25rem!important}:host .padding-top-lg-1,:host .padding-y-lg-1{padding-top:.25rem!important}:host .padding-right-lg-1,:host .padding-x-lg-1{padding-right:.25rem!important}:host .padding-bottom-lg-1,:host .padding-y-lg-1{padding-bottom:.25rem!important}:host .padding-left-lg-1,:host .padding-x-lg-1{padding-left:.25rem!important}:host .padding-lg-2{padding:.5rem!important}:host .padding-top-lg-2,:host .padding-y-lg-2{padding-top:.5rem!important}:host .padding-right-lg-2,:host .padding-x-lg-2{padding-right:.5rem!important}:host .padding-bottom-lg-2,:host .padding-y-lg-2{padding-bottom:.5rem!important}:host .padding-left-lg-2,:host .padding-x-lg-2{padding-left:.5rem!important}:host .padding-lg-3{padding:1rem!important}:host .padding-top-lg-3,:host .padding-y-lg-3{padding-top:1rem!important}:host .padding-right-lg-3,:host .padding-x-lg-3{padding-right:1rem!important}:host .padding-bottom-lg-3,:host .padding-y-lg-3{padding-bottom:1rem!important}:host .padding-left-lg-3,:host .padding-x-lg-3{padding-left:1rem!important}:host .padding-lg-4{padding:2rem!important}:host .padding-top-lg-4,:host .padding-y-lg-4{padding-top:2rem!important}:host .padding-right-lg-4,:host .padding-x-lg-4{padding-right:2rem!important}:host .padding-bottom-lg-4,:host .padding-y-lg-4{padding-bottom:2rem!important}:host .padding-left-lg-4,:host .padding-x-lg-4{padding-left:2rem!important}:host .padding-lg-5{padding:4rem!important}:host .padding-top-lg-5,:host .padding-y-lg-5{padding-top:4rem!important}:host .padding-right-lg-5,:host .padding-x-lg-5{padding-right:4rem!important}:host .padding-bottom-lg-5,:host .padding-y-lg-5{padding-bottom:4rem!important}:host .padding-left-lg-5,:host .padding-x-lg-5{padding-left:4rem!important}:host .margin-lg-n1{margin:-.25rem!important}:host .margin-top-lg-n1,:host .margin-y-lg-n1{margin-top:-.25rem!important}:host .margin-right-lg-n1,:host .margin-x-lg-n1{margin-right:-.25rem!important}:host .margin-bottom-lg-n1,:host .margin-y-lg-n1{margin-bottom:-.25rem!important}:host .margin-left-lg-n1,:host .margin-x-lg-n1{margin-left:-.25rem!important}:host .margin-lg-n2{margin:-.5rem!important}:host .margin-top-lg-n2,:host .margin-y-lg-n2{margin-top:-.5rem!important}:host .margin-right-lg-n2,:host .margin-x-lg-n2{margin-right:-.5rem!important}:host .margin-bottom-lg-n2,:host .margin-y-lg-n2{margin-bottom:-.5rem!important}:host .margin-left-lg-n2,:host .margin-x-lg-n2{margin-left:-.5rem!important}:host .margin-lg-n3{margin:-1rem!important}:host .margin-top-lg-n3,:host .margin-y-lg-n3{margin-top:-1rem!important}:host .margin-right-lg-n3,:host .margin-x-lg-n3{margin-right:-1rem!important}:host .margin-bottom-lg-n3,:host .margin-y-lg-n3{margin-bottom:-1rem!important}:host .margin-left-lg-n3,:host .margin-x-lg-n3{margin-left:-1rem!important}:host .margin-lg-n4{margin:-2rem!important}:host .margin-top-lg-n4,:host .margin-y-lg-n4{margin-top:-2rem!important}:host .margin-right-lg-n4,:host .margin-x-lg-n4{margin-right:-2rem!important}:host .margin-bottom-lg-n4,:host .margin-y-lg-n4{margin-bottom:-2rem!important}:host .margin-left-lg-n4,:host .margin-x-lg-n4{margin-left:-2rem!important}:host .margin-lg-n5{margin:-4rem!important}:host .margin-top-lg-n5,:host .margin-y-lg-n5{margin-top:-4rem!important}:host .margin-right-lg-n5,:host .margin-x-lg-n5{margin-right:-4rem!important}:host .margin-bottom-lg-n5,:host .margin-y-lg-n5{margin-bottom:-4rem!important}:host .margin-left-lg-n5,:host .margin-x-lg-n5{margin-left:-4rem!important}:host .margin-lg-auto{margin:auto!important}:host .margin-top-lg-auto,:host .margin-y-lg-auto{margin-top:auto!important}:host .margin-right-lg-auto,:host .margin-x-lg-auto{margin-right:auto!important}:host .margin-bottom-lg-auto,:host .margin-y-lg-auto{margin-bottom:auto!important}:host .margin-left-lg-auto,:host .margin-x-lg-auto{margin-left:auto!important}}@media (min-width: 1200px){:host .margin-xl-0{margin:0!important}:host .margin-top-xl-0,:host .margin-y-xl-0{margin-top:0!important}:host .margin-right-xl-0,:host .margin-x-xl-0{margin-right:0!important}:host .margin-bottom-xl-0,:host .margin-y-xl-0{margin-bottom:0!important}:host .margin-left-xl-0,:host .margin-x-xl-0{margin-left:0!important}:host .margin-xl-1{margin:.25rem!important}:host .margin-top-xl-1,:host .margin-y-xl-1{margin-top:.25rem!important}:host .margin-right-xl-1,:host .margin-x-xl-1{margin-right:.25rem!important}:host .margin-bottom-xl-1,:host .margin-y-xl-1{margin-bottom:.25rem!important}:host .margin-left-xl-1,:host .margin-x-xl-1{margin-left:.25rem!important}:host .margin-xl-2{margin:.5rem!important}:host .margin-top-xl-2,:host .margin-y-xl-2{margin-top:.5rem!important}:host .margin-right-xl-2,:host .margin-x-xl-2{margin-right:.5rem!important}:host .margin-bottom-xl-2,:host .margin-y-xl-2{margin-bottom:.5rem!important}:host .margin-left-xl-2,:host .margin-x-xl-2{margin-left:.5rem!important}:host .margin-xl-3{margin:1rem!important}:host .margin-top-xl-3,:host .margin-y-xl-3{margin-top:1rem!important}:host .margin-right-xl-3,:host .margin-x-xl-3{margin-right:1rem!important}:host .margin-bottom-xl-3,:host .margin-y-xl-3{margin-bottom:1rem!important}:host .margin-left-xl-3,:host .margin-x-xl-3{margin-left:1rem!important}:host .margin-xl-4{margin:2rem!important}:host .margin-top-xl-4,:host .margin-y-xl-4{margin-top:2rem!important}:host .margin-right-xl-4,:host .margin-x-xl-4{margin-right:2rem!important}:host .margin-bottom-xl-4,:host .margin-y-xl-4{margin-bottom:2rem!important}:host .margin-left-xl-4,:host .margin-x-xl-4{margin-left:2rem!important}:host .margin-xl-5{margin:4rem!important}:host .margin-top-xl-5,:host .margin-y-xl-5{margin-top:4rem!important}:host .margin-right-xl-5,:host .margin-x-xl-5{margin-right:4rem!important}:host .margin-bottom-xl-5,:host .margin-y-xl-5{margin-bottom:4rem!important}:host .margin-left-xl-5,:host .margin-x-xl-5{margin-left:4rem!important}:host .padding-xl-0{padding:0!important}:host .padding-top-xl-0,:host .padding-y-xl-0{padding-top:0!important}:host .padding-right-xl-0,:host .padding-x-xl-0{padding-right:0!important}:host .padding-bottom-xl-0,:host .padding-y-xl-0{padding-bottom:0!important}:host .padding-left-xl-0,:host .padding-x-xl-0{padding-left:0!important}:host .padding-xl-1{padding:.25rem!important}:host .padding-top-xl-1,:host .padding-y-xl-1{padding-top:.25rem!important}:host .padding-right-xl-1,:host .padding-x-xl-1{padding-right:.25rem!important}:host .padding-bottom-xl-1,:host .padding-y-xl-1{padding-bottom:.25rem!important}:host .padding-left-xl-1,:host .padding-x-xl-1{padding-left:.25rem!important}:host .padding-xl-2{padding:.5rem!important}:host .padding-top-xl-2,:host .padding-y-xl-2{padding-top:.5rem!important}:host .padding-right-xl-2,:host .padding-x-xl-2{padding-right:.5rem!important}:host .padding-bottom-xl-2,:host .padding-y-xl-2{padding-bottom:.5rem!important}:host .padding-left-xl-2,:host .padding-x-xl-2{padding-left:.5rem!important}:host .padding-xl-3{padding:1rem!important}:host .padding-top-xl-3,:host .padding-y-xl-3{padding-top:1rem!important}:host .padding-right-xl-3,:host .padding-x-xl-3{padding-right:1rem!important}:host .padding-bottom-xl-3,:host .padding-y-xl-3{padding-bottom:1rem!important}:host .padding-left-xl-3,:host .padding-x-xl-3{padding-left:1rem!important}:host .padding-xl-4{padding:2rem!important}:host .padding-top-xl-4,:host .padding-y-xl-4{padding-top:2rem!important}:host .padding-right-xl-4,:host .padding-x-xl-4{padding-right:2rem!important}:host .padding-bottom-xl-4,:host .padding-y-xl-4{padding-bottom:2rem!important}:host .padding-left-xl-4,:host .padding-x-xl-4{padding-left:2rem!important}:host .padding-xl-5{padding:4rem!important}:host .padding-top-xl-5,:host .padding-y-xl-5{padding-top:4rem!important}:host .padding-right-xl-5,:host .padding-x-xl-5{padding-right:4rem!important}:host .padding-bottom-xl-5,:host .padding-y-xl-5{padding-bottom:4rem!important}:host .padding-left-xl-5,:host .padding-x-xl-5{padding-left:4rem!important}:host .margin-xl-n1{margin:-.25rem!important}:host .margin-top-xl-n1,:host .margin-y-xl-n1{margin-top:-.25rem!important}:host .margin-right-xl-n1,:host .margin-x-xl-n1{margin-right:-.25rem!important}:host .margin-bottom-xl-n1,:host .margin-y-xl-n1{margin-bottom:-.25rem!important}:host .margin-left-xl-n1,:host .margin-x-xl-n1{margin-left:-.25rem!important}:host .margin-xl-n2{margin:-.5rem!important}:host .margin-top-xl-n2,:host .margin-y-xl-n2{margin-top:-.5rem!important}:host .margin-right-xl-n2,:host .margin-x-xl-n2{margin-right:-.5rem!important}:host .margin-bottom-xl-n2,:host .margin-y-xl-n2{margin-bottom:-.5rem!important}:host .margin-left-xl-n2,:host .margin-x-xl-n2{margin-left:-.5rem!important}:host .margin-xl-n3{margin:-1rem!important}:host .margin-top-xl-n3,:host .margin-y-xl-n3{margin-top:-1rem!important}:host .margin-right-xl-n3,:host .margin-x-xl-n3{margin-right:-1rem!important}:host .margin-bottom-xl-n3,:host .margin-y-xl-n3{margin-bottom:-1rem!important}:host .margin-left-xl-n3,:host .margin-x-xl-n3{margin-left:-1rem!important}:host .margin-xl-n4{margin:-2rem!important}:host .margin-top-xl-n4,:host .margin-y-xl-n4{margin-top:-2rem!important}:host .margin-right-xl-n4,:host .margin-x-xl-n4{margin-right:-2rem!important}:host .margin-bottom-xl-n4,:host .margin-y-xl-n4{margin-bottom:-2rem!important}:host .margin-left-xl-n4,:host .margin-x-xl-n4{margin-left:-2rem!important}:host .margin-xl-n5{margin:-4rem!important}:host .margin-top-xl-n5,:host .margin-y-xl-n5{margin-top:-4rem!important}:host .margin-right-xl-n5,:host .margin-x-xl-n5{margin-right:-4rem!important}:host .margin-bottom-xl-n5,:host .margin-y-xl-n5{margin-bottom:-4rem!important}:host .margin-left-xl-n5,:host .margin-x-xl-n5{margin-left:-4rem!important}:host .margin-xl-auto{margin:auto!important}:host .margin-top-xl-auto,:host .margin-y-xl-auto{margin-top:auto!important}:host .margin-right-xl-auto,:host .margin-x-xl-auto{margin-right:auto!important}:host .margin-bottom-xl-auto,:host .margin-y-xl-auto{margin-bottom:auto!important}:host .margin-left-xl-auto,:host .margin-x-xl-auto{margin-left:auto!important}}:host .h1{font-size:2em}:host .h2{font-size:1.5em}:host .h3{font-size:1.17em}:host .h4{font-size:1em}:host .h5{font-size:.83em}:host .h6{font-size:.67em}:host .cursor-alias{cursor:alias}:host .cursor-all-scroll{cursor:all-scroll}:host .cursor-auto{cursor:auto}:host .cursor-cell{cursor:cell}:host .cursor-context-menu{cursor:context-menu}:host .cursor-col-resize{cursor:col-resize}:host .cursor-copy{cursor:copy}:host .cursor-crosshair{cursor:crosshair}:host .cursor-default{cursor:default}:host .cursor-e-resize{cursor:e-resize}:host .cursor-ew-resize{cursor:ew-resize}:host .cursor-grab{cursor:grab}:host .cursor-grabbing{cursor:grabbing}:host .cursor-help{cursor:help}:host .cursor-move{cursor:move}:host .cursor-n-resize{cursor:n-resize}:host .cursor-ne-resize{cursor:ne-resize}:host .cursor-nesw-resize{cursor:nesw-resize}:host .cursor-ns-resize{cursor:ns-resize}:host .cursor-nw-resize{cursor:nw-resize}:host .cursor-nwse-resize{cursor:nwse-resize}:host .cursor-no-drop{cursor:no-drop}:host .cursor-none{cursor:none}:host .cursor-not-allowed{cursor:not-allowed}:host .cursor-pointer{cursor:pointer}:host .cursor-progress{cursor:progress}:host .cursor-row-resize{cursor:row-resize}:host .cursor-s-resize{cursor:s-resize}:host .cursor-se-resize{cursor:se-resize}:host .cursor-sw-resize{cursor:sw-resize}:host .cursor-text{cursor:text}:host .cursor-w-resize{cursor:w-resize}:host .cursor-wait{cursor:wait}:host .cursor-zoom-in{cursor:zoom-in}:host .cursor-zoom-out{cursor:zoom-out}:host .mat-tooltip{font-size:16px!important}:host html,:host body{height:100%}:host body{margin:0;padding:0;font-family:opens sans regular,sans-serif}:host iframe{border:none}:host .mat-badge-content{font-weight:600;font-size:12px;font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-badge-small .mat-badge-content{font-size:9px}:host .mat-badge-large .mat-badge-content{font-size:24px}:host .mat-h1,:host .mat-headline,:host .mat-typography h1{font:400 24px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h2,:host .mat-title,:host .mat-typography h2{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h3,:host .mat-subheading-2,:host .mat-typography h3{font:400 16px/28px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h4,:host .mat-subheading-1,:host .mat-typography h4{font:400 15px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h5,:host .mat-typography h5{font:400 11.62px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}:host .mat-h6,:host .mat-typography h6{font:400 9.38px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}:host .mat-body-strong,:host .mat-body-2{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-body,:host .mat-body-1,:host .mat-typography{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-body p,:host .mat-body-1 p,:host .mat-typography p{margin:0 0 12px}:host .mat-small,:host .mat-caption{font:400 12px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-display-4,:host .mat-typography .mat-display-4{font:300 112px/112px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.05em;margin:0 0 56px}:host .mat-display-3,:host .mat-typography .mat-display-3{font:400 56px/56px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.02em;margin:0 0 64px}:host .mat-display-2,:host .mat-typography .mat-display-2{font:400 45px/48px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.005em;margin:0 0 64px}:host .mat-display-1,:host .mat-typography .mat-display-1{font:400 34px/40px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 64px}:host .mat-bottom-sheet-container{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-button,:host .mat-raised-button,:host .mat-icon-button,:host .mat-stroked-button,:host .mat-flat-button,:host .mat-fab,:host .mat-mini-fab{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}:host .mat-button-toggle{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-card{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-card-title{font-size:24px;font-weight:500}:host .mat-card-header .mat-card-title{font-size:20px}:host .mat-card-subtitle,:host .mat-card-content{font-size:14px}:host .mat-checkbox{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-checkbox-layout .mat-checkbox-label{line-height:24px}:host .mat-chip{font-size:14px;font-weight:500}:host .mat-chip .mat-chip-trailing-icon.mat-icon,:host .mat-chip .mat-chip-remove.mat-icon{font-size:18px}:host .mat-table{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-header-cell{font-size:12px;font-weight:500}:host .mat-cell,:host .mat-footer-cell{font-size:14px}:host .mat-calendar{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-calendar-body{font-size:13px}:host .mat-calendar-body-label,:host .mat-calendar-period-button{font-size:14px;font-weight:500}:host .mat-calendar-table-header th{font-size:11px;font-weight:400}:host .mat-dialog-title{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-expansion-panel-header{font-family:Roboto,Helvetica Neue,sans-serif;font-size:15px;font-weight:400}:host .mat-expansion-panel-content{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-form-field{font-size:inherit;font-weight:400;line-height:1.125;font-family:Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-form-field-wrapper{padding-bottom:1.34375em}:host .mat-form-field-prefix .mat-icon,:host .mat-form-field-suffix .mat-icon{font-size:150%;line-height:1.125}:host .mat-form-field-prefix .mat-icon-button,:host .mat-form-field-suffix .mat-icon-button{height:1.5em;width:1.5em}:host .mat-form-field-prefix .mat-icon-button .mat-icon,:host .mat-form-field-suffix .mat-icon-button .mat-icon{height:1.125em;line-height:1.125}:host .mat-form-field-infix{padding:.5em 0;border-top:.84375em solid transparent}:host .mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34375em) scale(.75);width:133.3333333333%}:host .mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34374em) scale(.75);width:133.3333433333%}:host .mat-form-field-label-wrapper{top:-.84375em;padding-top:.84375em}:host .mat-form-field-label{top:1.34375em}:host .mat-form-field-underline{bottom:1.34375em}:host .mat-form-field-subscript-wrapper{font-size:75%;margin-top:.6666666667em;top:calc(100% - 1.7916666667em)}:host .mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:1.25em}:host .mat-form-field-appearance-legacy .mat-form-field-infix{padding:.4375em 0}:host .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);width:133.3333333333%}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00101px);width:133.3333433333%}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00102px);width:133.3333533333%}:host .mat-form-field-appearance-legacy .mat-form-field-label{top:1.28125em}:host .mat-form-field-appearance-legacy .mat-form-field-underline{bottom:1.25em}:host .mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper{margin-top:.5416666667em;top:calc(100% - 1.6666666667em)}@media print{:host .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28122em) scale(.75)}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28121em) scale(.75)}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.2812em) scale(.75)}}:host .mat-form-field-appearance-fill .mat-form-field-infix{padding:.25em 0 .75em}:host .mat-form-field-appearance-fill .mat-form-field-label{top:1.09375em;margin-top:-.5em}:host .mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59375em) scale(.75);width:133.3333333333%}:host .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59374em) scale(.75);width:133.3333433333%}:host .mat-form-field-appearance-outline .mat-form-field-infix{padding:1em 0}:host .mat-form-field-appearance-outline .mat-form-field-label{top:1.84375em;margin-top:-.25em}:host .mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59375em) scale(.75);width:133.3333333333%}:host .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59374em) scale(.75);width:133.3333433333%}:host .mat-grid-tile-header,:host .mat-grid-tile-footer{font-size:14px}:host .mat-grid-tile-header .mat-line,:host .mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-grid-tile-header .mat-line:nth-child(n+2),:host .mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:12px}:host input.mat-input-element{margin-top:-.0625em}:host .mat-menu-item{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:400}:host .mat-paginator,:host .mat-paginator-page-size .mat-select-trigger{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px}:host .mat-radio-button{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-select{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-select-trigger{height:1.125em}:host .mat-slide-toggle-content{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-slider-thumb-label-text{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}:host .mat-stepper-vertical,:host .mat-stepper-horizontal{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-step-label{font-size:14px;font-weight:400}:host .mat-step-sub-label-error{font-weight:400}:host .mat-step-label-error{font-size:14px}:host .mat-step-label-selected{font-size:14px;font-weight:500}:host .mat-tab-group{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-tab-label,:host .mat-tab-link{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}:host .mat-toolbar,:host .mat-toolbar h1,:host .mat-toolbar h2,:host .mat-toolbar h3,:host .mat-toolbar h4,:host .mat-toolbar h5,:host .mat-toolbar h6{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0}:host .mat-tooltip{font-family:Roboto,Helvetica Neue,sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}:host .mat-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}:host .mat-list-item{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-list-option{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-list-base .mat-list-item{font-size:16px}:host .mat-list-base .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base .mat-list-item .mat-line:nth-child(n+2){font-size:14px}:host .mat-list-base .mat-list-option{font-size:16px}:host .mat-list-base .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base .mat-list-option .mat-line:nth-child(n+2){font-size:14px}:host .mat-list-base .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}:host .mat-list-base[dense] .mat-list-item{font-size:12px}:host .mat-list-base[dense] .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}:host .mat-list-base[dense] .mat-list-option{font-size:12px}:host .mat-list-base[dense] .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2){font-size:12px}:host .mat-list-base[dense] .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}:host .mat-option{font-family:Roboto,Helvetica Neue,sans-serif;font-size:16px}:host .mat-optgroup-label{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-simple-snackbar{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px}:host .mat-simple-snackbar-action{line-height:1;font-family:inherit;font-size:inherit;font-weight:500}:host .mat-tree{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-tree-node,:host .mat-nested-tree-node{font-weight:400;font-size:14px}:host .mat-ripple{overflow:hidden;position:relative}:host .mat-ripple:not(:empty){transform:translateZ(0)}:host .mat-ripple.mat-ripple-unbounded{overflow:visible}:host .mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale(0)}.cdk-high-contrast-active :host .mat-ripple-element{display:none}:host .cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none}:host .cdk-overlay-container,:host .cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}:host .cdk-overlay-container{position:fixed;z-index:1000}:host .cdk-overlay-container:empty{display:none}:host .cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}:host .cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}:host .cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}:host .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active :host .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}:host .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}:host .cdk-overlay-transparent-backdrop,:host .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0}:host .cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}:host .cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}:host textarea.cdk-textarea-autosize{resize:none}:host textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}:host textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0!important;box-sizing:content-box!important;height:0!important}@keyframes cdk-text-field-autofill-start{}@keyframes cdk-text-field-autofill-end{}:host .cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}:host .cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}:host .mat-focus-indicator{position:relative}:host .mat-mdc-focus-indicator{position:relative}:host .title,:host .header{font-family:Encode Sans Condensed,sans-serif;font-weight:900}:host .paragraph-title,:host .tagline{font-family:Open Sans,sans-serif;font-weight:400}:host .paragraph-title-bold .tagLine-bold{font-family:Open Sans,sans-serif;font-weight:700}:host .plain-text,:host .remarks{font-family:Open Sans,sans-serif;font-weight:300}:host .plain-text-bold{font-family:Open Sans,sans-serif;font-weight:700}:host .flex-column{box-sizing:border-box;display:flex;flex-direction:column}:host .flex-row{box-sizing:border-box;display:flex;flex-direction:row}:host .flex-row-center{align-items:center;justify-content:center}:host .mat-button-large{line-height:48px;font-size:18px;font-weight:700;padding:0 24px!important}:host .mat-round{border-radius:.5em}:host :root{--skeleton-color: #ccc;--skeleton-icon-color: rgba(0, 0, 0, .25)}:host .skeleton-block{height:1em;background:var(--skeleton-color)!important;width:100%;display:block}@font-face{:host {font-family: \"skeleton\"; src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAYAAA0AAAAAESgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABMAAAABoAAAAclcTxx09TLzIAAAFMAAAASwAAAGBRtV1jY21hcAAAAZgAAAC9AAABamglddJjdnQgAAACWAAAAAQAAAAEABEBRGdhc3AAAAJcAAAACAAAAAj//wADZ2x5ZgAAAmQAAACTAAAJdL6KsfZoZWFkAAAC+AAAAC4AAAA2GgvLb2hoZWEAAAMoAAAAGgAAACQC8ADFaG10eAAAA0QAAAATAAAAtAMAABFsb2NhAAADWAAAAK4AAACuaF5mEm1heHAAAAQIAAAAHwAAACAAmgA5bmFtZQAABCgAAAE5AAACNKbyxURwb3N0AAAFZAAAAJkAAADOCL0Ic3icY2BgYGQAgts30q6A6DvfXCthNABZwwgPAAB4nGNgYWRgnMDAysDA6MOYxsDA4A6lvzJIMrQwMDAxsHIywAAjAxIISHNNYWhgUGCoZTzw/wCDHuMBBgeYGsYDQB4DUI4RAOnYC70AeJxjYGBgZoBgGQZGBhBIAfIYwXwWBg8gzcfAwcDEwMagxKDFYM0QyxDPUPv/P1BcgUGNQYfBEchP/P///+P/D/7f/3/r/83/N6DmIAFGNga4ICMTkGBCVwB0AgsrkMHGzsHJxcDNw8vHLyAoJCwiKiYuISkFViMtIysnr6CopKyiqqauoamlraOrp29gaGRsYmpmzmDBYGllbWNrZ+/g6OTs4urm7uHp5e3j6+cfEBgUHBKK7iL6AwBJLiG7AAAAABEBRAAAAAH//wACeJztzrENwjAUBNA7O4nrXzBAREEHEm5dsERWyApZIStkBip7ggzCCmyAEmxCQYNESfG7r3un04eBAJjYwcLhGIlTSK7C/Ryb+haSNflEtCWuS5xcw0dILLkXLwcvexmHvme3XIU+rxFYZ4Jz3sROWiEuBgug9tXMh7lN21djxbu1Nf/pZzU1NTU1NbWf7QnZ5mwOAHicY2BkYGAAYrZdrHLx/DZfGbiZGEDgzjfXSgT9/wAjA+MBIJeDASwNAA4cCj0AAHicY2BkYGA88P8Agx6QAQSMYIQCWABQZgK3AAB4nGNkYBBkAAJGKB4KAAAOfQAVAAAAACoAKgAqADgARgBUAGIAcAB+AIwAmgCoALYAxADYAOYA9AECARABHgEsAToBSAFWAWQBcgGAAY4BnAGqAbgBxgHUAeIB8AH+AgwCGgIoAjYCRAJSAmACbgJ8AooCmAKmArQCwgLQAt4C7AL6AwgDFgMkAzIDQANOA1wDagN4A4YDlAOiA7ADvgPMA9oD6AP2BAQEEgQgBC4EPARKBFgEZgR0BIIEkASeBKwEugAAeJxjYGRgYAhj4GBgYgABEMnIABJzYNADCQAADScA1AB4nH2PvW7CMBSFj/krXSpeoJKHDiAR6mRAFStSVIkFMWToFhErWCQkMmFAVR+hax+hY5+vY0+MWTqQ6Mqfj4/vPQbwgB8IXL4xNp4Fhvj03MEdvj138YRfzz0MxbPnPkbizfOA+gedonfP3drdallghHfPHc798tzFKzNcuMc+j577kOLF84D6HktUqHGGhUGOHRpIZt5iwjWCYoWYkhMUSJHRVbIslRXdKanVS/Yw7hTLqj5bk+8aOd5OZKSicCqTIs1Maaxc7VJbpGVtMjqP2EPzuubQCgcKe13opiJtKOY4ud6WW52fipQQO2PjVkuHdilnzCmxYP1veVHbNwSYs64vQlwdmriyuZbRTMmFvI4mRmEwD9rcNxMmFC0Nxs9R/EOXRLk0SLQ9GjZUKpwppeStbn/Mg1tYAAAAeJxdzlkzggEARuGn1EXUWEJFubJU1iyRJcbQJoRC9t/dn8k3XXZu3plz8c4RNmI4kAkmZJzXkQ2bEBEVM2lKXMK0GbPmJM1bsCglHTwsWZaVs2LVmnUb8gqKNm3ZtmPXnpJ9Bw4dKTt2ouLUmXMXqi5duXbjVk1dQ1PLnbZ7Dx51PHn2oqsXdL151/fh05dvP379/QOXKRMwAAAA) format(\"woff\"); font-weight: 100,200,300,400,500,600,700,800,900; font-style: normal,italic; font-display: block;}}:host .skeleton-text{font-family:skeleton!important;-webkit-user-select:none;user-select:none}:host .skeleton-text,:host .skeleton-text *{color:var(--skeleton-color)!important;letter-spacing:-.03em!important}:host .skeleton-image{display:inline-block}:host .skeleton-image svg{max-width:100%;height:auto}:host .skeleton-image polygon{fill:var(--skeleton-color)}:host .skeleton-image path{fill:var(--skeleton-icon-color)}:host .skeleton-avatar{display:inline-block}:host .skeleton-avatar svg{max-width:100%;height:auto}:host .skeleton-avatar rect{fill:var(--skeleton-color)}:host .skeleton-avatar path{fill:var(--skeleton-icon-color)}:host .skeleton-effect-blink,:host .skeleton-effect-wave{-webkit-mask-image:linear-gradient(to right,transparent 0%,black 25%,black 75%,transparent 100%);mask-image:linear-gradient(to right,transparent 0%,black 25%,black 75%,transparent 100%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-position:50% top;mask-position:50% top;animation:skeleton-effect-wave 1s infinite}:host .skeleton-effect-fade{animation:skeleton-effect-fade 1s infinite}:host .skeleton-effect-pulse{animation:skeleton-effect-pulse 1s infinite}@keyframes skeleton-effect-fade{0%{opacity:1}50%{opacity:.2}to{opacity:1}}@keyframes skeleton-effect-wave{0%{-webkit-mask-position:50% top;mask-position:50% top}to{-webkit-mask-position:-150% top;mask-position:-150% top}}@keyframes skeleton-effect-pulse{0%{transform:scale(1)}40%{transform:scale(1)}50%{transform:scale(.975)}to{transform:scale(1)}}:host .mat-ripple-element{background-color:#0000001a}:host .mat-option{color:#000000de}:host .mat-option:hover:not(.mat-option-disabled),:host .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}:host .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}:host .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}:host .mat-option.mat-option-disabled{color:#00000061}:host .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#4a918e}:host .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#9cd8d7}:host .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ef4351}:host .mat-optgroup-label{color:#0000008a}:host .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}:host .mat-pseudo-checkbox{color:#0000008a}:host .mat-pseudo-checkbox:after{color:#fafafa}:host .mat-pseudo-checkbox-disabled{color:#b0b0b0}:host .mat-primary .mat-pseudo-checkbox-checked,:host .mat-primary .mat-pseudo-checkbox-indeterminate{background:#4a918e}:host .mat-pseudo-checkbox-checked,:host .mat-pseudo-checkbox-indeterminate,:host .mat-accent .mat-pseudo-checkbox-checked,:host .mat-accent .mat-pseudo-checkbox-indeterminate{background:#9cd8d7}:host .mat-warn .mat-pseudo-checkbox-checked,:host .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ef4351}:host .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,:host .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}:host .mat-app-background,:host.mat-app-background{background-color:#fafafa;color:#000000de}:host .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}:host .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}:host .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}:host .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}:host .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}:host .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}:host .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}:host .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}:host .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}:host .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}:host .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}:host .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}:host .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}:host .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}:host .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}:host .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}:host .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}:host .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}:host .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}:host .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}:host .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}:host .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}:host .mat-autocomplete-panel{background:white;color:#000000de}:host .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}:host .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}:host .mat-badge{position:relative}:host .mat-badge-hidden .mat-badge-content{display:none}:host .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}:host .ng-animate-disabled .mat-badge-content,:host .mat-badge-content._mat-animation-noopable{transition:none}:host .mat-badge-content.mat-badge-active{transform:none}:host .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}:host .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}:host .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}:host .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] :host .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}:host .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] :host .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}:host .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] :host .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}:host .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] :host .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}:host .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}:host .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}:host .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}:host .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] :host .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}:host .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] :host .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}:host .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] :host .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}:host .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] :host .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}:host .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}:host .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}:host .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}:host .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] :host .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}:host .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] :host .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}:host .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] :host .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}:host .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] :host .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}:host .mat-badge-content{color:#f1f4f6;background:#4a918e}.cdk-high-contrast-active :host .mat-badge-content{outline:solid 1px;border-radius:0}:host .mat-badge-accent .mat-badge-content{background:#9cd8d7;color:#282d35de}:host .mat-badge-warn .mat-badge-content{color:#f1f4f6;background:#ef4351}:host .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}:host .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}:host .mat-button,:host .mat-icon-button,:host .mat-stroked-button{color:inherit;background:transparent}:host .mat-button.mat-primary,:host .mat-icon-button.mat-primary,:host .mat-stroked-button.mat-primary{color:#4a918e}:host .mat-button.mat-accent,:host .mat-icon-button.mat-accent,:host .mat-stroked-button.mat-accent{color:#9cd8d7}:host .mat-button.mat-warn,:host .mat-icon-button.mat-warn,:host .mat-stroked-button.mat-warn{color:#ef4351}:host .mat-button.mat-primary.mat-button-disabled,:host .mat-button.mat-accent.mat-button-disabled,:host .mat-button.mat-warn.mat-button-disabled,:host .mat-button.mat-button-disabled.mat-button-disabled,:host .mat-icon-button.mat-primary.mat-button-disabled,:host .mat-icon-button.mat-accent.mat-button-disabled,:host .mat-icon-button.mat-warn.mat-button-disabled,:host .mat-icon-button.mat-button-disabled.mat-button-disabled,:host .mat-stroked-button.mat-primary.mat-button-disabled,:host .mat-stroked-button.mat-accent.mat-button-disabled,:host .mat-stroked-button.mat-warn.mat-button-disabled,:host .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}:host .mat-button.mat-primary .mat-button-focus-overlay,:host .mat-icon-button.mat-primary .mat-button-focus-overlay,:host .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#4a918e}:host .mat-button.mat-accent .mat-button-focus-overlay,:host .mat-icon-button.mat-accent .mat-button-focus-overlay,:host .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#9cd8d7}:host .mat-button.mat-warn .mat-button-focus-overlay,:host .mat-icon-button.mat-warn .mat-button-focus-overlay,:host .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ef4351}:host .mat-button.mat-button-disabled .mat-button-focus-overlay,:host .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,:host .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}:host .mat-button .mat-ripple-element,:host .mat-icon-button .mat-ripple-element,:host .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}:host .mat-button-focus-overlay{background:black}:host .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}:host .mat-flat-button,:host .mat-raised-button,:host .mat-fab,:host .mat-mini-fab{color:#000000de;background-color:#fff}:host .mat-flat-button.mat-primary,:host .mat-raised-button.mat-primary,:host .mat-fab.mat-primary,:host .mat-mini-fab.mat-primary{color:#f1f4f6}:host .mat-flat-button.mat-accent,:host .mat-raised-button.mat-accent,:host .mat-fab.mat-accent,:host .mat-mini-fab.mat-accent{color:#282d35de}:host .mat-flat-button.mat-warn,:host .mat-raised-button.mat-warn,:host .mat-fab.mat-warn,:host .mat-mini-fab.mat-warn{color:#f1f4f6}:host .mat-flat-button.mat-primary.mat-button-disabled,:host .mat-flat-button.mat-accent.mat-button-disabled,:host .mat-flat-button.mat-warn.mat-button-disabled,:host .mat-flat-button.mat-button-disabled.mat-button-disabled,:host .mat-raised-button.mat-primary.mat-button-disabled,:host .mat-raised-button.mat-accent.mat-button-disabled,:host .mat-raised-button.mat-warn.mat-button-disabled,:host .mat-raised-button.mat-button-disabled.mat-button-disabled,:host .mat-fab.mat-primary.mat-button-disabled,:host .mat-fab.mat-accent.mat-button-disabled,:host .mat-fab.mat-warn.mat-button-disabled,:host .mat-fab.mat-button-disabled.mat-button-disabled,:host .mat-mini-fab.mat-primary.mat-button-disabled,:host .mat-mini-fab.mat-accent.mat-button-disabled,:host .mat-mini-fab.mat-warn.mat-button-disabled,:host .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}:host .mat-flat-button.mat-primary,:host .mat-raised-button.mat-primary,:host .mat-fab.mat-primary,:host .mat-mini-fab.mat-primary{background-color:#4a918e}:host .mat-flat-button.mat-accent,:host .mat-raised-button.mat-accent,:host .mat-fab.mat-accent,:host .mat-mini-fab.mat-accent{background-color:#9cd8d7}:host .mat-flat-button.mat-warn,:host .mat-raised-button.mat-warn,:host .mat-fab.mat-warn,:host .mat-mini-fab.mat-warn{background-color:#ef4351}:host .mat-flat-button.mat-primary.mat-button-disabled,:host .mat-flat-button.mat-accent.mat-button-disabled,:host .mat-flat-button.mat-warn.mat-button-disabled,:host .mat-flat-button.mat-button-disabled.mat-button-disabled,:host .mat-raised-button.mat-primary.mat-button-disabled,:host .mat-raised-button.mat-accent.mat-button-disabled,:host .mat-raised-button.mat-warn.mat-button-disabled,:host .mat-raised-button.mat-button-disabled.mat-button-disabled,:host .mat-fab.mat-primary.mat-button-disabled,:host .mat-fab.mat-accent.mat-button-disabled,:host .mat-fab.mat-warn.mat-button-disabled,:host .mat-fab.mat-button-disabled.mat-button-disabled,:host .mat-mini-fab.mat-primary.mat-button-disabled,:host .mat-mini-fab.mat-accent.mat-button-disabled,:host .mat-mini-fab.mat-warn.mat-button-disabled,:host .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}:host .mat-flat-button.mat-primary .mat-ripple-element,:host .mat-raised-button.mat-primary .mat-ripple-element,:host .mat-fab.mat-primary .mat-ripple-element,:host .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#f1f4f61a}:host .mat-flat-button.mat-accent .mat-ripple-element,:host .mat-raised-button.mat-accent .mat-ripple-element,:host .mat-fab.mat-accent .mat-ripple-element,:host .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#282d351a}:host .mat-flat-button.mat-warn .mat-ripple-element,:host .mat-raised-button.mat-warn .mat-ripple-element,:host .mat-fab.mat-warn .mat-ripple-element,:host .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#f1f4f61a}:host .mat-stroked-button:not([class*=mat-elevation-z]),:host .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}:host .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-fab:not([class*=mat-elevation-z]),:host .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}:host .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),:host .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}:host .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),:host .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-button-toggle-standalone,:host .mat-button-toggle-group{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,:host .mat-button-toggle-group-appearance-standard{box-shadow:none}:host .mat-button-toggle{color:#00000061}:host .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}:host .mat-button-toggle-appearance-standard{color:#000000de;background:white}:host .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}:host .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px rgba(0,0,0,.12)}:host [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}:host .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px rgba(0,0,0,.12)}:host .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}:host .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}:host .mat-button-toggle-disabled{color:#00000042;background-color:#eee}:host .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}:host .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}:host .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,:host .mat-button-toggle-group-appearance-standard{border:solid 1px rgba(0,0,0,.12)}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:48px}:host .mat-card{background:white;color:#000000de}:host .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}:host .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-card-subtitle{color:#0000008a}:host .mat-checkbox-frame{border-color:#0000008a}:host .mat-checkbox-checkmark{fill:#fafafa}:host .mat-checkbox-checkmark-path{stroke:#fafafa!important}:host .mat-checkbox-mixedmark{background-color:#fafafa}:host .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,:host .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#4a918e}:host .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,:host .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#9cd8d7}:host .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,:host .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ef4351}:host .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,:host .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}:host .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}:host .mat-checkbox-disabled .mat-checkbox-label{color:#0000008a}:host .mat-checkbox .mat-ripple-element{background-color:#000}:host .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,:host .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#4a918e}:host .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,:host .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#9cd8d7}:host .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,:host .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ef4351}:host .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}:host .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}:host .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}:host .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}:host .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}:host .mat-chip.mat-standard-chip:after{background:black}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#4a918e;color:#f1f4f6}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#f1f4f6;opacity:.4}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#f1f4f61a}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ef4351;color:#f1f4f6}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#f1f4f6;opacity:.4}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#f1f4f61a}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#9cd8d7;color:#282d35de}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#282d35de;opacity:.4}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#282d351a}:host .mat-table{background:white}:host .mat-table thead,:host .mat-table tbody,:host .mat-table tfoot,:host mat-header-row,:host mat-row,:host mat-footer-row,:host [mat-header-row],:host [mat-row],:host [mat-footer-row],:host .mat-table-sticky{background:inherit}:host mat-row,:host mat-header-row,:host mat-footer-row,:host th.mat-header-cell,:host td.mat-cell,:host td.mat-footer-cell{border-bottom-color:#0000001f}:host .mat-header-cell{color:#0000008a}:host .mat-cell,:host .mat-footer-cell{color:#000000de}:host .mat-calendar-arrow{fill:#0000008a}:host .mat-datepicker-toggle,:host .mat-datepicker-content .mat-calendar-next-button,:host .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}:host .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}:host .mat-calendar-table-header,:host .mat-calendar-body-label{color:#0000008a}:host .mat-calendar-body-cell-content,:host .mat-date-range-input-separator{color:#000000de;border-color:transparent}:host .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}:host .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}:host .mat-calendar-body-in-preview{color:#0000003d}:host .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}:host .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}:host .mat-calendar-body-in-range:before{background:rgba(74,145,142,.2)}:host .mat-calendar-body-comparison-identical,:host .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}:host .mat-calendar-body-comparison-bridge-start:before,:host [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(74,145,142,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-calendar-body-comparison-bridge-end:before,:host [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(74,145,142,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,:host .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}:host .mat-calendar-body-comparison-identical.mat-calendar-body-selected,:host .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}:host .mat-calendar-body-selected{background-color:#4a918e;color:#f1f4f6}:host .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#4a918e66}:host .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #f1f4f6}:host .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),:host .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4a918e4d}@media (hover: hover){:host .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4a918e4d}}:host .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(156,216,215,.2)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,:host .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(156,216,215,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,:host .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(156,216,215,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}:host .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#9cd8d7;color:#282d35de}:host .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#9cd8d766}:host .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #282d35de}:host .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),:host .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#9cd8d74d}@media (hover: hover){:host .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#9cd8d74d}}:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(239,67,81,.2)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,:host .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(239,67,81,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,:host .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(239,67,81,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}:host .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ef4351;color:#f1f4f6}:host .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ef435166}:host .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #f1f4f6}:host .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),:host .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ef43514d}@media (hover: hover){:host .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ef43514d}}:host .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}:host .mat-datepicker-toggle-active{color:#4a918e}:host .mat-datepicker-toggle-active.mat-accent{color:#9cd8d7}:host .mat-datepicker-toggle-active.mat-warn{color:#ef4351}:host .mat-date-range-input-inner[disabled]{color:#00000061}:host .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}:host .mat-divider{border-top-color:#0000001f}:host .mat-divider-vertical{border-right-color:#0000001f}:host .mat-expansion-panel{background:white;color:#000000de}:host .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-action-row{border-top-color:#0000001f}:host .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),:host .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),:host .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){:host .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}:host .mat-expansion-panel-header-title{color:#000000de}:host .mat-expansion-panel-header-description,:host .mat-expansion-indicator:after{color:#0000008a}:host .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}:host .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,:host .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header{height:48px}.mat-expansion-panel-header.mat-expanded{height:64px}:host .mat-form-field-label{color:#0009}:host .mat-hint{color:#0009}:host .mat-form-field.mat-focused .mat-form-field-label{color:#4a918e}:host .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#9cd8d7}:host .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ef4351}:host .mat-focused .mat-form-field-required-marker{color:#9cd8d7}:host .mat-form-field-ripple{background-color:#000000de}:host .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#4a918e}:host .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#9cd8d7}:host .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ef4351}:host .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#4a918e}:host .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#9cd8d7}:host .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ef4351}:host .mat-form-field.mat-form-field-invalid .mat-form-field-label{color:#ef4351}:host .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,:host .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ef4351}:host .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,:host .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ef4351}:host .mat-error{color:#ef4351}:host .mat-form-field-appearance-legacy .mat-form-field-label{color:#0000008a}:host .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}:host .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}:host .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}:host .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}:host .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}:host .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}:host .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}:host .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}:host .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}:host .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}:host .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}:host .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}:host .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#4a918e}:host .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#9cd8d7}:host .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick{color:#ef4351}:host .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ef4351}:host .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}:host .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}:host .mat-icon.mat-primary{color:#4a918e}:host .mat-icon.mat-accent{color:#9cd8d7}:host .mat-icon.mat-warn{color:#ef4351}:host .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}:host .mat-input-element:disabled,:host .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}:host .mat-input-element{caret-color:#4a918e}:host .mat-input-element::placeholder{color:#0000006b}:host .mat-input-element::-moz-placeholder{color:#0000006b}:host .mat-input-element::-webkit-input-placeholder{color:#0000006b}:host .mat-input-element:-ms-input-placeholder{color:#0000006b}:host .mat-form-field.mat-accent .mat-input-element{caret-color:#9cd8d7}:host .mat-form-field.mat-warn .mat-input-element,:host .mat-form-field-invalid .mat-input-element{caret-color:#ef4351}:host .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ef4351}:host .mat-list-base .mat-list-item{color:#000000de}:host .mat-list-base .mat-list-option{color:#000000de}:host .mat-list-base .mat-subheader{color:#0000008a}:host .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}:host .mat-list-option:hover,:host .mat-list-option:focus,:host .mat-nav-list .mat-list-item:hover,:host .mat-nav-list .mat-list-item:focus,:host .mat-action-list .mat-list-item:hover,:host .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}:host .mat-list-single-selected-option,:host .mat-list-single-selected-option:hover,:host .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}:host .mat-menu-panel{background:white}:host .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-menu-item{background:transparent;color:#000000de}:host .mat-menu-item[disabled],:host .mat-menu-item[disabled] .mat-menu-submenu-icon,:host .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}:host .mat-menu-item .mat-icon-no-color,:host .mat-menu-submenu-icon{color:#0000008a}:host .mat-menu-item:hover:not([disabled]),:host .mat-menu-item.cdk-program-focused:not([disabled]),:host .mat-menu-item.cdk-keyboard-focused:not([disabled]),:host .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}:host .mat-paginator{background:white}:host .mat-paginator,:host .mat-paginator-page-size .mat-select-trigger{color:#0000008a}:host .mat-paginator-decrement,:host .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}:host .mat-paginator-first,:host .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}:host .mat-icon-button[disabled] .mat-paginator-decrement,:host .mat-icon-button[disabled] .mat-paginator-increment,:host .mat-icon-button[disabled] .mat-paginator-first,:host .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.mat-paginator-container{min-height:56px}:host .mat-progress-bar-background{fill:#cee0df}:host .mat-progress-bar-buffer{background-color:#cee0df}:host .mat-progress-bar-fill:after{background-color:#4a918e}:host .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#e3f2f1}:host .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#e3f2f1}:host .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#9cd8d7}:host .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#f7ccd0}:host .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#f7ccd0}:host .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ef4351}:host .mat-progress-spinner circle,:host .mat-spinner circle{stroke:#4a918e}:host .mat-progress-spinner.mat-accent circle,:host .mat-spinner.mat-accent circle{stroke:#9cd8d7}:host .mat-progress-spinner.mat-warn circle,:host .mat-spinner.mat-warn circle{stroke:#ef4351}:host .mat-radio-outer-circle{border-color:#0000008a}:host .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#4a918e}:host .mat-radio-button.mat-primary .mat-radio-inner-circle,:host .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),:host .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,:host .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#4a918e}:host .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#9cd8d7}:host .mat-radio-button.mat-accent .mat-radio-inner-circle,:host .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),:host .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,:host .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#9cd8d7}:host .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ef4351}:host .mat-radio-button.mat-warn .mat-radio-inner-circle,:host .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),:host .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,:host .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ef4351}:host .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,:host .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}:host .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,:host .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}:host .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}:host .mat-radio-button .mat-ripple-element{background-color:#000}:host .mat-select-value{color:#000000de}:host .mat-select-placeholder{color:#0000006b}:host .mat-select-disabled .mat-select-value{color:#00000061}:host .mat-select-arrow{color:#0000008a}:host .mat-select-panel{background:white}:host .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}:host .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#4a918e}:host .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#9cd8d7}:host .mat-form-field.mat-focused.mat-warn .mat-select-arrow{color:#ef4351}:host .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ef4351}:host .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}:host .mat-drawer-container{background-color:#fafafa;color:#000000de}:host .mat-drawer{background-color:#fff;color:#000000de}:host .mat-drawer.mat-drawer-push{background-color:#fff}:host .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}:host .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}:host .mat-drawer-side.mat-drawer-end{border-left:solid 1px rgba(0,0,0,.12);border-right:none}:host [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}:host [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}:host .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}:host .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#9cd8d7}:host .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#9cd8d78a}:host .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#9cd8d7}:host .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#4a918e}:host .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#4a918e8a}:host .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#4a918e}:host .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ef4351}:host .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ef43518a}:host .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ef4351}:host .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}:host .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}:host .mat-slide-toggle-bar{background-color:#00000061}:host .mat-slider-track-background{background-color:#00000042}:host .mat-slider.mat-primary .mat-slider-track-fill,:host .mat-slider.mat-primary .mat-slider-thumb,:host .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#4a918e}:host .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#f1f4f6}:host .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#4a918e33}:host .mat-slider.mat-accent .mat-slider-track-fill,:host .mat-slider.mat-accent .mat-slider-thumb,:host .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#9cd8d7}:host .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#282d35de}:host .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#9cd8d733}:host .mat-slider.mat-warn .mat-slider-track-fill,:host .mat-slider.mat-warn .mat-slider-thumb,:host .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ef4351}:host .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#f1f4f6}:host .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ef435133}:host .mat-slider:hover .mat-slider-track-background,:host .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}:host .mat-slider.mat-slider-disabled .mat-slider-track-background,:host .mat-slider.mat-slider-disabled .mat-slider-track-fill,:host .mat-slider.mat-slider-disabled .mat-slider-thumb{background-color:#00000042}:host .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}:host .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}:host .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}:host .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}:host .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}:host .mat-step-header.cdk-keyboard-focused,:host .mat-step-header.cdk-program-focused,:host .mat-step-header:hover:not([aria-disabled]),:host .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}:host .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){:host .mat-step-header:hover{background:none}}:host .mat-step-header .mat-step-label,:host .mat-step-header .mat-step-optional{color:#0000008a}:host .mat-step-header .mat-step-icon{background-color:#0000008a;color:#f1f4f6}:host .mat-step-header .mat-step-icon-selected,:host .mat-step-header .mat-step-icon-state-done,:host .mat-step-header .mat-step-icon-state-edit{background-color:#4a918e;color:#f1f4f6}:host .mat-step-header.mat-accent .mat-step-icon{color:#282d35de}:host .mat-step-header.mat-accent .mat-step-icon-selected,:host .mat-step-header.mat-accent .mat-step-icon-state-done,:host .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#9cd8d7;color:#282d35de}:host .mat-step-header.mat-warn .mat-step-icon{color:#f1f4f6}:host .mat-step-header.mat-warn .mat-step-icon-selected,:host .mat-step-header.mat-warn .mat-step-icon-state-done,:host .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ef4351;color:#f1f4f6}:host .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ef4351}:host .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}:host .mat-step-header .mat-step-label.mat-step-label-error{color:#ef4351}:host .mat-stepper-horizontal,:host .mat-stepper-vertical{background-color:#fff}:host .mat-stepper-vertical-line:before{border-left-color:#0000001f}:host .mat-horizontal-stepper-header:before,:host .mat-horizontal-stepper-header:after,:host .mat-stepper-horizontal-line{border-top-color:#0000001f}.mat-horizontal-stepper-header{height:72px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,.mat-vertical-stepper-header{padding:24px}.mat-stepper-vertical-line:before{top:-16px;bottom:-16px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:after,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:before{top:36px}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{top:36px}:host .mat-sort-header-arrow{color:#757575}:host .mat-tab-nav-bar,:host .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}:host .mat-tab-group-inverted-header .mat-tab-nav-bar,:host .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}:host .mat-tab-label,:host .mat-tab-link{color:#000000de}:host .mat-tab-label.mat-tab-disabled,:host .mat-tab-link.mat-tab-disabled{color:#00000061}:host .mat-tab-header-pagination-chevron{border-color:#000000de}:host .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}:host .mat-tab-group[class*=mat-background-]>.mat-tab-header,:host .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}:host .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#c9dedd4d}:host .mat-tab-group.mat-primary .mat-ink-bar,:host .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#4a918e}:host .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,:host .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,:host .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,:host .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#f1f4f6}:host .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e1f3f34d}:host .mat-tab-group.mat-accent .mat-ink-bar,:host .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#9cd8d7}:host .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,:host .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,:host .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,:host .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#282d35de}:host .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#fac7cb4d}:host .mat-tab-group.mat-warn .mat-ink-bar,:host .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ef4351}:host .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,:host .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,:host .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,:host .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#f1f4f6}:host .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#c9dedd4d}:host .mat-tab-group.mat-background-primary>.mat-tab-header,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#4a918e}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#f1f4f6}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#f1f4f666}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#f1f4f6}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#f1f4f6;opacity:.4}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#f1f4f6;opacity:.12}:host .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e1f3f34d}:host .mat-tab-group.mat-background-accent>.mat-tab-header,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#9cd8d7}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#282d35de}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#282d3566}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#282d35de}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#282d35;opacity:.4}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#282d35;opacity:.12}:host .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#fac7cb4d}:host .mat-tab-group.mat-background-warn>.mat-tab-header,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ef4351}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#f1f4f6}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#f1f4f666}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#f1f4f6}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#f1f4f6;opacity:.4}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#f1f4f6;opacity:.12}:host .mat-toolbar{background:whitesmoke;color:#000000de}:host .mat-toolbar.mat-primary{background:#4a918e;color:#f1f4f6}:host .mat-toolbar.mat-accent{background:#9cd8d7;color:#282d35de}:host .mat-toolbar.mat-warn{background:#ef4351;color:#f1f4f6}:host .mat-toolbar .mat-form-field-underline,:host .mat-toolbar .mat-form-field-ripple,:host .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}:host .mat-toolbar .mat-form-field-label,:host .mat-toolbar .mat-focused .mat-form-field-label,:host .mat-toolbar .mat-select-value,:host .mat-toolbar .mat-select-arrow,:host .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}:host .mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media (max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}:host .mat-tooltip{background:rgba(97,97,97,.9)}:host .mat-tree{background:white}:host .mat-tree-node,:host .mat-nested-tree-node{color:#000000de}.mat-tree-node{min-height:48px}:host .mat-snack-bar-container{color:#f1f4f6b3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}:host .mat-simple-snackbar-action{color:#9cd8d7}:host .primary-50{background-color:#e9f2f1!important;color:#282d35de}:host .primary-100{background-color:#c9dedd!important;color:#282d35de}:host .primary-200{background-color:#a5c8c7!important;color:#282d35de}:host .primary-300{background-color:#80b2b0!important;color:#282d35de}:host .primary-400{background-color:#65a29f!important;color:#282d35de}:host .primary-500{background-color:#4a918e!important;color:#f1f4f6}:host .primary{background-color:#4a918e!important;color:#f1f4f6}:host .primary-600{background-color:#438986!important;color:#f1f4f6}:host .primary-700{background-color:#3a7e7b!important;color:#f1f4f6}:host .primary-800{background-color:#327471!important;color:#f1f4f6}:host .primary-900{background-color:#22625f!important;color:#f1f4f6}:host .primary-A100{background-color:#a4fffb!important;color:#282d35de}:host .primary-A200{background-color:#71fff8!important;color:#282d35de}:host .primary-A400{background-color:#3efff6!important;color:#282d35de}:host .primary-A700{background-color:#25fff4!important;color:#282d35de}:host .primary-contrast-50{color:#282d35de!important}:host .primary-contrast-100{color:#282d35de!important}:host .primary-contrast-200{color:#282d35de!important}:host .primary-contrast-300{color:#282d35de!important}:host .primary-contrast-400{color:#282d35de!important}:host .primary-contrast-500{color:#f1f4f6!important}:host .primary-contrast-600{color:#f1f4f6!important}:host .primary-contrast-700{color:#f1f4f6!important}:host .primary-contrast-800{color:#f1f4f6!important}:host .primary-contrast-900{color:#f1f4f6!important}:host .primary-contrast-A100{color:#282d35de!important}:host .primary-contrast-A200{color:#282d35de!important}:host .primary-contrast-A400{color:#282d35de!important}:host .primary-contrast-A700{color:#282d35de!important}:host .primary-default{background-color:#4a918e!important}:host .primary-lighter{background-color:#c9dedd!important}:host .primary-darker{background-color:#3a7e7b!important}:host .primary-text{background-color:#4a918e!important}:host .primary-default-contrast{background-color:#f1f4f6!important}:host .primary-lighter-contrast{background-color:#282d35de!important}:host .primary-darker-contrast{background-color:#f1f4f6!important}:host .primary-50-contrast{background-color:#282d35de!important}:host .primary-100-contrast{background-color:#282d35de!important}:host .primary-200-contrast{background-color:#282d35de!important}:host .primary-300-contrast{background-color:#282d35de!important}:host .primary-400-contrast{background-color:#282d35de!important}:host .primary-500-contrast{background-color:#f1f4f6!important}:host .primary-600-contrast{background-color:#f1f4f6!important}:host .primary-700-contrast{background-color:#f1f4f6!important}:host .primary-800-contrast{background-color:#f1f4f6!important}:host .primary-900-contrast{background-color:#f1f4f6!important}:host .primary-A100-contrast{background-color:#282d35de!important}:host .primary-A200-contrast{background-color:#282d35de!important}:host .primary-A400-contrast{background-color:#282d35de!important}:host .primary-A700-contrast{background-color:#282d35de!important}:host .primary-contrast-contrast{background-color:!important}:host .accent-50{background-color:#f3fafa!important;color:#282d35de}:host .accent-100{background-color:#e1f3f3!important;color:#282d35de}:host .accent-200{background-color:#ceeceb!important;color:#282d35de}:host .accent-300{background-color:#bae4e3!important;color:#282d35de}:host .accent-400{background-color:#abdedd!important;color:#282d35de}:host .accent-500{background-color:#9cd8d7!important;color:#282d35de}:host .accent{background-color:#9cd8d7!important;color:#282d35de}:host .accent-600{background-color:#94d4d3!important;color:#282d35de}:host .accent-700{background-color:#8acecd!important;color:#f1f4f6}:host .accent-800{background-color:#80c8c7!important;color:#f1f4f6}:host .accent-900{background-color:#6ebfbe!important;color:#f1f4f6}:host .accent-A100{background-color:#fff!important;color:#282d35de}:host .accent-A200{background-color:#fff!important;color:#282d35de}:host .accent-A400{background-color:#d2fffe!important;color:#282d35de}:host .accent-A700{background-color:#b8fffe!important;color:#282d35de}:host .accent-contrast-50{color:#282d35de!important}:host .accent-contrast-100{color:#282d35de!important}:host .accent-contrast-200{color:#282d35de!important}:host .accent-contrast-300{color:#282d35de!important}:host .accent-contrast-400{color:#282d35de!important}:host .accent-contrast-500{color:#282d35de!important}:host .accent-contrast-600{color:#282d35de!important}:host .accent-contrast-700{color:#f1f4f6!important}:host .accent-contrast-800{color:#f1f4f6!important}:host .accent-contrast-900{color:#f1f4f6!important}:host .accent-contrast-A100{color:#282d35de!important}:host .accent-contrast-A200{color:#282d35de!important}:host .accent-contrast-A400{color:#282d35de!important}:host .accent-contrast-A700{color:#282d35de!important}:host .accent-default{background-color:#9cd8d7!important}:host .accent-lighter{background-color:#e1f3f3!important}:host .accent-darker{background-color:#8acecd!important}:host .accent-text{background-color:#9cd8d7!important}:host .accent-default-contrast{background-color:#282d35de!important}:host .accent-lighter-contrast{background-color:#282d35de!important}:host .accent-darker-contrast{background-color:#f1f4f6!important}:host .accent-50-contrast{background-color:#282d35de!important}:host .accent-100-contrast{background-color:#282d35de!important}:host .accent-200-contrast{background-color:#282d35de!important}:host .accent-300-contrast{background-color:#282d35de!important}:host .accent-400-contrast{background-color:#282d35de!important}:host .accent-500-contrast{background-color:#282d35de!important}:host .accent-600-contrast{background-color:#282d35de!important}:host .accent-700-contrast{background-color:#f1f4f6!important}:host .accent-800-contrast{background-color:#f1f4f6!important}:host .accent-900-contrast{background-color:#f1f4f6!important}:host .accent-A100-contrast{background-color:#282d35de!important}:host .accent-A200-contrast{background-color:#282d35de!important}:host .accent-A400-contrast{background-color:#282d35de!important}:host .accent-A700-contrast{background-color:#282d35de!important}:host .accent-contrast-contrast{background-color:!important}:host .warn-50{background-color:#fde8ea!important;color:#282d35de}:host .warn-100{background-color:#fac7cb!important;color:#282d35de}:host .warn-200{background-color:#f7a1a8!important;color:#282d35de}:host .warn-300{background-color:#f47b85!important;color:#282d35de}:host .warn-400{background-color:#f15f6b!important;color:#282d35de}:host .warn-500{background-color:#ef4351!important;color:#f1f4f6}:host .warn{background-color:#ef4351!important;color:#f1f4f6}:host .warn-600{background-color:#ed3d4a!important;color:#f1f4f6}:host .warn-700{background-color:#eb3440!important;color:#f1f4f6}:host .warn-800{background-color:#e82c37!important;color:#f1f4f6}:host .warn-900{background-color:#e41e27!important;color:#f1f4f6}:host .warn-A100{background-color:#fff!important;color:#282d35de}:host .warn-A200{background-color:#ffe6e7!important;color:#282d35de}:host .warn-A400{background-color:#ffb3b6!important;color:#282d35de}:host .warn-A700{background-color:#ff9a9e!important;color:#282d35de}:host .warn-contrast-50{color:#282d35de!important}:host .warn-contrast-100{color:#282d35de!important}:host .warn-contrast-200{color:#282d35de!important}:host .warn-contrast-300{color:#282d35de!important}:host .warn-contrast-400{color:#282d35de!important}:host .warn-contrast-500{color:#f1f4f6!important}:host .warn-contrast-600{color:#f1f4f6!important}:host .warn-contrast-700{color:#f1f4f6!important}:host .warn-contrast-800{color:#f1f4f6!important}:host .warn-contrast-900{color:#f1f4f6!important}:host .warn-contrast-A100{color:#282d35de!important}:host .warn-contrast-A200{color:#282d35de!important}:host .warn-contrast-A400{color:#282d35de!important}:host .warn-contrast-A700{color:#282d35de!important}:host .warn-default{background-color:#ef4351!important}:host .warn-lighter{background-color:#fac7cb!important}:host .warn-darker{background-color:#eb3440!important}:host .warn-text{background-color:#ef4351!important}:host .warn-default-contrast{background-color:#f1f4f6!important}:host .warn-lighter-contrast{background-color:#282d35de!important}:host .warn-darker-contrast{background-color:#f1f4f6!important}:host .warn-50-contrast{background-color:#282d35de!important}:host .warn-100-contrast{background-color:#282d35de!important}:host .warn-200-contrast{background-color:#282d35de!important}:host .warn-300-contrast{background-color:#282d35de!important}:host .warn-400-contrast{background-color:#282d35de!important}:host .warn-500-contrast{background-color:#f1f4f6!important}:host .warn-600-contrast{background-color:#f1f4f6!important}:host .warn-700-contrast{background-color:#f1f4f6!important}:host .warn-800-contrast{background-color:#f1f4f6!important}:host .warn-900-contrast{background-color:#f1f4f6!important}:host .warn-A100-contrast{background-color:#282d35de!important}:host .warn-A200-contrast{background-color:#282d35de!important}:host .warn-A400-contrast{background-color:#282d35de!important}:host .warn-A700-contrast{background-color:#282d35de!important}:host .warn-contrast-contrast{background-color:!important}:host ::-webkit-scrollbar{width:.75rem}:host ::-webkit-scrollbar-track{background:#4a918e}:host ::-webkit-scrollbar-thumb{background:#9cd8d7}:host .primary-logo{height:100%;width:auto;background-image:url('data:image/svg+xml;utf8,<svg id=\"thinky-black\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 75 64.53\"><defs><style>.cls-1{fill:%23000;}<\\/style></defs><title>thinky_logos</title><path class=\"cls-1\" d=\"M205,238.68l.07.6c.4,3.5,1.61,14.14,13.89,14.14a12.8,12.8,0,0,0,10-4.31A12.44,12.44,0,0,0,231.55,239a28.41,28.41,0,0,0-2-6.31,22,22,0,0,1-2-9.17c0-3.37,1-11.23,10.81-11.23s10.82,7.86,10.82,11.23a21.79,21.79,0,0,1-2,9.17,29.69,29.69,0,0,0-2,6.31,12.41,12.41,0,0,0,2.62,10.15,12.8,12.8,0,0,0,10,4.31c12.27,0,13.49-10.63,13.88-14.14l.07-.6c.35-3.1.63-3.1,1.83-3.1v-7.85c-5.66,0-8.9,3.39-9.64,10.08l-.07.58c-.58,5.05-1.54,7.16-6.08,7.16a5.08,5.08,0,0,1-4-1.52,4.62,4.62,0,0,1-.86-3.77,22.5,22.5,0,0,1,1.5-4.68,29.28,29.28,0,0,0,2.61-12.1c0-9.51-5.74-19.1-18.65-19.1s-18.68,9.59-18.68,19.1a29.44,29.44,0,0,0,2.61,12.1,21.92,21.92,0,0,1,1.5,4.68,4.58,4.58,0,0,1-.86,3.77,5.06,5.06,0,0,1-4,1.52c-4.53,0-5.51-2.11-6.09-7.16l-.06-.58c-.74-6.69-4-10.08-9.64-10.08v7.85C204.33,235.58,204.62,235.58,205,238.68Z\" transform=\"translate(-200.96 -204.38)\"/><rect class=\"cls-1\" x=\"32.35\" y=\"23.32\" width=\"3.7\" height=\"6.42\"/><rect class=\"cls-1\" x=\"38.78\" y=\"23.32\" width=\"3.7\" height=\"6.42\"/><path class=\"cls-1\" d=\"M271.4,257.35c-4.55,4.26-10.46,4.91-13.58,4.91a18.82,18.82,0,0,1-14.69-6.48,17.09,17.09,0,0,1-1.86-2.68L240.08,251h-3.42l-1.18,2.09a18.61,18.61,0,0,1-1.87,2.68,18.8,18.8,0,0,1-14.69,6.48c-3.08,0-8.93-.62-13.45-4.78l-4.51,4.9c6.19,5.69,13.91,6.54,18,6.54a25.43,25.43,0,0,0,19.45-8.47,25.41,25.41,0,0,0,19.45,8.47c4.1,0,11.93-.87,18.14-6.72Z\" transform=\"translate(-200.96 -204.38)\"/></svg>');background-position:center;background-repeat:no-repeat;background-size:150px}:host :root{--initial-primary: #4a918e;--initial-accent: #9cd8d7;--initial-warn: #ef4351;--initial-dark-background: #222222;--initial-light-background: #f2f2f2;--initial-light-background: white;--initial-light-text: rgba(0, 0, 0, .87);--initial-dark-text: rgba(255, 255, 255, .87);--background: #050505;--orange-accent: #ff9800;--green-accent: #00e676;--yellow-accent: #fdd835;--purple-accent: #9c27b0;--cyan-accent: rgba(132, 255, 255, .75);--pink-accent: #e91e63;--success: #00e676}:host body{background-color:var(--initial-dark-background)}:host ::ng-deep .mat-tooltip{font-size:16px!important}:host :host .valid-control{color:var(--green-accent)}:host :host .invalid-control{color:var(--theme-warn-500)}:host :host .actions .item:not(:last-child){margin-right:0}:host :host .project-thumbnail img{height:50px;width:auto}:host :host .active{background-color:var(--theme-accent-400);transition:background-color 1s linear}:host :host .inactive{background-color:#f2f5a900;transition:background-color 1s linear}:host :host .expansion-panel{width:100%;margin-bottom:10px}:host :host .expansion-container{max-height:300px;overflow-y:auto}:host :host .divider-fill-vert{background-color:var(--theme-accent-500);min-height:100%;top:10%;bottom:10%;min-width:5px}:host :host .divider-fill-hor{background-color:var(--theme-accent-500);height:5px;width:100%}:host :host .form-disabled{background-color:#797979;opacity:.5;border-radius:4px}:host ::ng-deep input:-webkit-autofill,:host input:-webkit-autofill:hover,:host input:-webkit-autofill:focus,:host input:-webkit-autofill:active{-webkit-transition:background-color 5000s ease-in-out 0s;transition:background-color 5000s ease-in-out 0s;-webkit-text-fill-color:currentColor}@media (max-width: 768px){:host .spread{margin:1em!important}}@media (max-width: 480px){:host .spread{margin:.5em!important}}:host .spinner-logo{display:none!important}:host :host ::ng-deep .social-card{margin:20px;padding:15px 5px}:host :host ::ng-deep mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}:host :host ::ng-deep .main-slot-container{padding:10px}:host :host ::ng-deep .slot-header{align-items:center;cursor:pointer}:host :host ::ng-deep .slot-header:hover{color:var(--initial-primary)}:host :host ::ng-deep .slot-content{width:100%}:host :host ::ng-deep .slot-name{font-size:13px;font-weight:600}:host :host ::ng-deep .slot-header-anchor{font-size:10px;text-decoration:none;color:#000;min-width:100px}:host :host ::ng-deep .slot-header-anchor:hover{color:var(--initial-primary)}:host :host ::ng-deep .slot-description{font-size:12px;margin-right:10px}:host :host ::ng-deep .slot-action-anchor{font-size:10px;text-decoration:none;color:#000}:host :host ::ng-deep .slot-action-anchor:hover{color:var(--initial-primary)}:host :host ::ng-deep .action-icon{height:24px;width:24px;font-size:24px;cursor:pointer}:host .example-header-image{background-size:cover}:host .mat-icon{display:inline-flex;vertical-align:middle}:host .mat-icon.spin{animation:rotate 1s ease-in-out infinite}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(-360deg)}}:host .tab{margin:2em}:host .tab .video iframe{display:block;margin:auto}\n"] }]
129
+ args: [{ selector: 'lcu-main-feed-card', template: "<mat-card class=\"social-card\">\n <mat-card-header>\n <img\n mat-card-avatar\n class=\"example-header-image\"\n [src]=\"FeedItem.Avatar\"\n *ngIf=\"FeedItem.Avatar\"\n />\n\n <mat-card-title *ngIf=\"FeedItem.Title\">{{ FeedItem.Title }}</mat-card-title>\n\n <mat-card-subtitle>\n <div *ngIf=\"FeedItem.Subtitle\">{{ FeedItem.Subtitle }}</div>\n\n <div *ngIf=\"FeedItem.Subtext\">{{ FeedItem.Subtext }}</div>\n\n <div *ngIf=\"FeedItem.Status\">\n <mat-icon\n *ngIf=\"Icon\"\n [style.color]=\"IconColor\"\n [class.spin]=\"FeedItem.Status?.Code == 2\"\n >\n {{ Icon }}\n </mat-icon>\n\n <span *ngIf=\"FeedItem.Timestamp\">\n {{ CalculateTimelapse(FeedItem.Timestamp) }}\n </span>\n </div>\n </mat-card-subtitle>\n </mat-card-header>\n\n <div *ngIf=\"!FeedItem.IsShortForm\">\n <div class=\"feed-card-container\">\n <div class=\"feed-card-main-content\">\n <mat-tab-group>\n <ng-container *ngFor=\"let tab of FeedItem.Tabs\">\n <mat-tab [label]=\"tab.Title\">\n <div class=\"tab\">\n <ng-container *ngIf=\"tab.Data?.Commit?.Message\">\n <div class=\"commit-message\">\n {{ tab.Data?.Commit?.Message }}\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"tab.Data?.Content\">\n <div class=\"content\">\n {{ tab.Data?.Content }}\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"tab.Data?.Video\">\n <div\n class=\"video\"\n [innerHTML]=\"SafeHtml(tab.Data.Video)\"\n ></div>\n </ng-container>\n\n <ng-container *ngIf=\"tab.Data?.Comments\">\n <div class=\"comments\">\n <ng-container *ngIf=\"tab.Data?.Comments?.length <= 0\">\n <h4>No comments provided</h4>\n </ng-container>\n\n <mat-card *ngFor=\"let comment of tab.Data?.Comments\">\n <mat-card-header>\n <img\n mat-card-avatar\n class=\"example-header-image\"\n [src]=\"comment.Avatar\"\n *ngIf=\"comment.Avatar\"\n />\n\n <mat-card-title>\n {{ comment.Author }}\n commented on\n {{ comment.UpdatedAt }}\n </mat-card-title>\n </mat-card-header>\n\n <mat-card-content>\n {{ comment.Comment }}\n </mat-card-content>\n </mat-card>\n </div>\n </ng-container>\n </div>\n </mat-tab>\n </ng-container>\n </mat-tab-group>\n </div>\n </div>\n </div>\n\n <mat-card-actions fxLayout=\"row\" fxLayoutAlign=\"space-around center\">\n <div fxFlex></div>\n\n <ng-container *ngFor=\"let action of FeedItem.Actions\">\n <button mat-button [color]=\"action.Color\" (click)=\"HandleAction(action)\">\n <mat-icon *ngIf=\"action.Icon\">{{ action.Icon }}</mat-icon>\n\n {{ action.Text }}\n </button>\n </ng-container>\n </mat-card-actions>\n</mat-card>\n", styles: [":host{@import url(https://fonts.googleapis.com/icon?family=Material+Icons);@import url(https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:400,900&display=swap);@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap);@import url(https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:400,900&display=swap);@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap);}:host .disable-autofill-background-default input:-webkit-autofill,:host .disable-autofill-background-default input:-webkit-autofill:hover,:host .disable-autofill-background-default input:-webkit-autofill:focus,:host .disable-autofill-background-default textarea:-webkit-autofill,:host .disable-autofill-background-default textarea:-webkit-autofill:hover,:host .disable-autofill-background-default textarea:-webkit-autofill:focus,:host .disable-autofill-background-default select:-webkit-autofill,:host .disable-autofill-background-default select:-webkit-autofill:hover,:host .disable-autofill-background-default select:-webkit-autofill:focus{-webkit-transition:background-color 5000s!important;transition:background-color 5000s!important}:host .list-item-disabled{opacity:.5;filter:alpha(opacity=50);cursor:not-allowed!important}:host .filler{flex:1 1 auto;display:inline-block!important}:host .sticky{position:sticky;z-index:750;top:0}:host .inline{display:inline-block}:host .contents{display:contents}:host .page-element{display:contents}:host .mat-spinner{margin:auto}:host .mat-full-width{width:100%}:host .spread{margin:2rem}:host .spread-thin{margin:1rem}:host .overlay{position:sticky!important}:host .overlay.top{top:0}:host .overlay.bottom{bottom:0}:host .margin-0{margin:0!important}:host .margin-top-0,:host .margin-y-0{margin-top:0!important}:host .margin-right-0,:host .margin-x-0{margin-right:0!important}:host .margin-bottom-0,:host .margin-y-0{margin-bottom:0!important}:host .margin-left-0,:host .margin-x-0{margin-left:0!important}:host .margin-1{margin:.25rem!important}:host .margin-top-1,:host .margin-y-1{margin-top:.25rem!important}:host .margin-right-1,:host .margin-x-1{margin-right:.25rem!important}:host .margin-bottom-1,:host .margin-y-1{margin-bottom:.25rem!important}:host .margin-left-1,:host .margin-x-1{margin-left:.25rem!important}:host .margin-2{margin:.5rem!important}:host .margin-top-2,:host .margin-y-2{margin-top:.5rem!important}:host .margin-right-2,:host .margin-x-2{margin-right:.5rem!important}:host .margin-bottom-2,:host .margin-y-2{margin-bottom:.5rem!important}:host .margin-left-2,:host .margin-x-2{margin-left:.5rem!important}:host .margin-3{margin:1rem!important}:host .margin-top-3,:host .margin-y-3{margin-top:1rem!important}:host .margin-top-bottom-3{margin:1rem 0!important}:host .margin-right-3,:host .margin-x-3{margin-right:1rem!important}:host .margin-bottom-3,:host .margin-y-3{margin-bottom:1rem!important}:host .margin-left-3,:host .margin-x-3{margin-left:1rem!important}:host .margin-4{margin:2rem!important}:host .margin-top-4,:host .margin-y-4{margin-top:2rem!important}:host .margin-right-4,:host .margin-x-4{margin-right:2rem!important}:host .margin-bottom-4,:host .margin-y-4{margin-bottom:2rem!important}:host .margin-left-4,:host .margin-x-4{margin-left:2rem!important}:host .margin-right-5,:host .margin-x-5{margin-right:4rem!important}:host .margin-bottom-5,:host .margin-y-5{margin-bottom:4rem!important}:host .margin-left-5,:host .margin-x-5{margin-left:4rem!important}:host .margin-5{margin:4rem!important}:host .margin-top-5,:host .margin-y-5{margin-top:4rem!important}:host .margin-right-6,:host .margin-x-6{margin-right:4.5rem!important}:host .margin-bottom-6,:host .margin-y-6{margin-bottom:4.5rem!important}:host .margin-left-6,:host .margin-x-6{margin-left:4.5rem!important}:host .margin-7{margin:6rem!important}:host .margin-top-7,:host .margin-y-7{margin-top:6rem!important}:host .margin-right-7,:host .margin-x-7{margin-right:6rem!important}:host .margin-bottom-7,:host .margin-y-7{margin-bottom:6rem!important}:host .margin-left-7,:host .margin-x-7{margin-left:6rem!important}:host .margin-8{margin:7.5rem!important}:host .margin-top-8,:host .margin-y-8{margin-top:7.5rem!important}:host .margin-right-8,:host .margin-x-8{margin-right:7.5rem!important}:host .margin-bottom-8,:host .margin-y-8{margin-bottom:7.5rem!important}:host .margin-left-8,:host .margin-x-8{margin-left:7.5rem!important}:host .margin-9{margin:9rem!important}:host .margin-top-9,:host .margin-y-9{margin-top:9rem!important}:host .margin-right-9,:host .margin-x-9{margin-right:9rem!important}:host .margin-bottom-9,:host .margin-y-9{margin-bottom:9rem!important}:host .margin-left-9,:host .margin-x-9{margin-left:9rem!important}:host .padding-0{padding:0!important}:host .padding-top-0,:host .padding-y-0{padding-top:0!important}:host .padding-right-0,:host .padding-x-0{padding-right:0!important}:host .padding-bottom-0,:host .padding-y-0{padding-bottom:0!important}:host .padding-left-0,:host .padding-x-0{padding-left:0!important}:host .padding-1{padding:.25rem!important}:host .padding-top-1,:host .padding-y-1{padding-top:.25rem!important}:host .padding-right-1,:host .padding-x-1{padding-right:.25rem!important}:host .padding-bottom-1,:host .padding-y-1{padding-bottom:.25rem!important}:host .padding-left-1,:host .padding-x-1{padding-left:.25rem!important}:host .padding-2{padding:.5rem!important}:host .padding-top-2,:host .padding-y-2{padding-top:.5rem!important}:host .padding-right-2,:host .padding-x-2{padding-right:.5rem!important}:host .padding-bottom-2,:host .padding-y-2{padding-bottom:.5rem!important}:host .padding-left-2,:host .padding-x-2{padding-left:.5rem!important}:host .padding-3{padding:1rem!important}:host .padding-top-3,:host .padding-y-3{padding-top:1rem!important}:host .padding-right-3,:host .padding-x-3{padding-right:1rem!important}:host .padding-bottom-3,:host .padding-y-3{padding-bottom:1rem!important}:host .padding-left-3,:host .padding-x-3{padding-left:1rem!important}:host .padding-4{padding:2rem!important}:host .padding-top-4,:host .padding-y-4{padding-top:2rem!important}:host .padding-right-4,:host .padding-x-4{padding-right:2rem!important}:host .padding-bottom-4,:host .padding-y-4{padding-bottom:2rem!important}:host .padding-left-4,:host .padding-x-4{padding-left:2rem!important}:host .padding-5{padding:4rem!important}:host .padding-top-5,:host .padding-y-5{padding-top:4rem!important}:host .padding-right-5,:host .padding-x-5{padding-right:4rem!important}:host .padding-bottom-5,:host .padding-y-5{padding-bottom:4rem!important}:host .padding-left-5,:host .padding-x-5{padding-left:4rem!important}:host .margin-n1{margin:-.25rem!important}:host .margin-top-n1,:host .margin-y-n1{margin-top:-.25rem!important}:host .margin-right-n1,:host .margin-x-n1{margin-right:-.25rem!important}:host .margin-bottom-n1,:host .margin-y-n1{margin-bottom:-.25rem!important}:host .margin-left-n1,:host .margin-x-n1{margin-left:-.25rem!important}:host .margin-n2{margin:-.5rem!important}:host .margin-top-n2,:host .margin-y-n2{margin-top:-.5rem!important}:host .margin-right-n2,:host .margin-x-n2{margin-right:-.5rem!important}:host .margin-bottom-n2,:host .margin-y-n2{margin-bottom:-.5rem!important}:host .margin-left-n2,:host .margin-x-n2{margin-left:-.5rem!important}:host .margin-n3{margin:-1rem!important}:host .margin-top-n3,:host .margin-y-n3{margin-top:-1rem!important}:host .margin-right-n3,:host .margin-x-n3{margin-right:-1rem!important}:host .margin-bottom-n3,:host .margin-y-n3{margin-bottom:-1rem!important}:host .margin-left-n3,:host .margin-x-n3{margin-left:-1rem!important}:host .margin-n4{margin:-2rem!important}:host .margin-top-n4,:host .margin-y-n4{margin-top:-2rem!important}:host .margin-right-n4,:host .margin-x-n4{margin-right:-2rem!important}:host .margin-bottom-n4,:host .margin-y-n4{margin-bottom:-2rem!important}:host .margin-left-n4,:host .margin-x-n4{margin-left:-2rem!important}:host .margin-n5{margin:-4rem!important}:host .margin-top-n5,:host .margin-y-n5{margin-top:-4rem!important}:host .margin-right-n5,:host .margin-x-n5{margin-right:-4rem!important}:host .margin-bottom-n5,:host .margin-y-n5{margin-bottom:-4rem!important}:host .margin-left-n5,:host .margin-x-n5{margin-left:-4rem!important}:host .margin-auto{margin:auto!important}:host .margin-top-auto,:host .margin-y-auto{margin-top:auto!important}:host .margin-right-auto,:host .margin-x-auto{margin-right:auto!important}:host .margin-bottom-auto,:host .margin-y-auto{margin-bottom:auto!important}:host .margin-left-auto,:host .margin-x-auto{margin-left:auto!important}@media (min-width: 576px){:host .margin-sm-0{margin:0!important}:host .margin-top-sm-0,:host .margin-y-sm-0{margin-top:0!important}:host .margin-right-sm-0,:host .margin-x-sm-0{margin-right:0!important}:host .margin-bottom-sm-0,:host .margin-y-sm-0{margin-bottom:0!important}:host .margin-left-sm-0,:host .margin-x-sm-0{margin-left:0!important}:host .margin-sm-1{margin:.25rem!important}:host .margin-top-sm-1,:host .margin-y-sm-1{margin-top:.25rem!important}:host .margin-right-sm-1,:host .margin-x-sm-1{margin-right:.25rem!important}:host .margin-bottom-sm-1,:host .margin-y-sm-1{margin-bottom:.25rem!important}:host .margin-left-sm-1,:host .margin-x-sm-1{margin-left:.25rem!important}:host .margin-sm-2{margin:.5rem!important}:host .margin-top-sm-2,:host .margin-y-sm-2{margin-top:.5rem!important}:host .margin-right-sm-2,:host .margin-x-sm-2{margin-right:.5rem!important}:host .margin-bottom-sm-2,:host .margin-y-sm-2{margin-bottom:.5rem!important}:host .margin-left-sm-2,:host .margin-x-sm-2{margin-left:.5rem!important}:host .margin-sm-3{margin:1rem!important}:host .margin-top-sm-3,:host .margin-y-sm-3{margin-top:1rem!important}:host .margin-right-sm-3,:host .margin-x-sm-3{margin-right:1rem!important}:host .margin-bottom-sm-3,:host .margin-y-sm-3{margin-bottom:1rem!important}:host .margin-left-sm-3,:host .margin-x-sm-3{margin-left:1rem!important}:host .margin-sm-4{margin:2rem!important}:host .margin-top-sm-4,:host .margin-y-sm-4{margin-top:2rem!important}:host .margin-right-sm-4,:host .margin-x-sm-4{margin-right:2rem!important}:host .margin-bottom-sm-4,:host .margin-y-sm-4{margin-bottom:2rem!important}:host .margin-left-sm-4,:host .margin-x-sm-4{margin-left:2rem!important}:host .margin-sm-5{margin:4rem!important}:host .margin-top-sm-5,:host .margin-y-sm-5{margin-top:4rem!important}:host .margin-right-sm-5,:host .margin-x-sm-5{margin-right:4rem!important}:host .margin-bottom-sm-5,:host .margin-y-sm-5{margin-bottom:4rem!important}:host .margin-left-sm-5,:host .margin-x-sm-5{margin-left:4rem!important}:host .padding-sm-0{padding:0!important}:host .padding-top-sm-0,:host .padding-y-sm-0{padding-top:0!important}:host .padding-right-sm-0,:host .padding-x-sm-0{padding-right:0!important}:host .padding-bottom-sm-0,:host .padding-y-sm-0{padding-bottom:0!important}:host .padding-left-sm-0,:host .padding-x-sm-0{padding-left:0!important}:host .padding-sm-1{padding:.25rem!important}:host .padding-top-sm-1,:host .padding-y-sm-1{padding-top:.25rem!important}:host .padding-right-sm-1,:host .padding-x-sm-1{padding-right:.25rem!important}:host .padding-bottom-sm-1,:host .padding-y-sm-1{padding-bottom:.25rem!important}:host .padding-left-sm-1,:host .padding-x-sm-1{padding-left:.25rem!important}:host .padding-sm-2{padding:.5rem!important}:host .padding-top-sm-2,:host .padding-y-sm-2{padding-top:.5rem!important}:host .padding-right-sm-2,:host .padding-x-sm-2{padding-right:.5rem!important}:host .padding-bottom-sm-2,:host .padding-y-sm-2{padding-bottom:.5rem!important}:host .padding-left-sm-2,:host .padding-x-sm-2{padding-left:.5rem!important}:host .padding-sm-3{padding:1rem!important}:host .padding-top-sm-3,:host .padding-y-sm-3{padding-top:1rem!important}:host .padding-right-sm-3,:host .padding-x-sm-3{padding-right:1rem!important}:host .padding-bottom-sm-3,:host .padding-y-sm-3{padding-bottom:1rem!important}:host .padding-left-sm-3,:host .padding-x-sm-3{padding-left:1rem!important}:host .padding-sm-4{padding:2rem!important}:host .padding-top-sm-4,:host .padding-y-sm-4{padding-top:2rem!important}:host .padding-right-sm-4,:host .padding-x-sm-4{padding-right:2rem!important}:host .padding-bottom-sm-4,:host .padding-y-sm-4{padding-bottom:2rem!important}:host .padding-left-sm-4,:host .padding-x-sm-4{padding-left:2rem!important}:host .padding-sm-5{padding:4rem!important}:host .padding-top-sm-5,:host .padding-y-sm-5{padding-top:4rem!important}:host .padding-right-sm-5,:host .padding-x-sm-5{padding-right:4rem!important}:host .padding-bottom-sm-5,:host .padding-y-sm-5{padding-bottom:4rem!important}:host .padding-left-sm-5,:host .padding-x-sm-5{padding-left:4rem!important}:host .margin-sm-n1{margin:-.25rem!important}:host .margin-top-sm-n1,:host .margin-y-sm-n1{margin-top:-.25rem!important}:host .margin-right-sm-n1,:host .margin-x-sm-n1{margin-right:-.25rem!important}:host .margin-bottom-sm-n1,:host .margin-y-sm-n1{margin-bottom:-.25rem!important}:host .margin-left-sm-n1,:host .margin-x-sm-n1{margin-left:-.25rem!important}:host .margin-sm-n2{margin:-.5rem!important}:host .margin-top-sm-n2,:host .margin-y-sm-n2{margin-top:-.5rem!important}:host .margin-right-sm-n2,:host .margin-x-sm-n2{margin-right:-.5rem!important}:host .margin-bottom-sm-n2,:host .margin-y-sm-n2{margin-bottom:-.5rem!important}:host .margin-left-sm-n2,:host .margin-x-sm-n2{margin-left:-.5rem!important}:host .margin-sm-n3{margin:-1rem!important}:host .margin-top-sm-n3,:host .margin-y-sm-n3{margin-top:-1rem!important}:host .margin-right-sm-n3,:host .margin-x-sm-n3{margin-right:-1rem!important}:host .margin-bottom-sm-n3,:host .margin-y-sm-n3{margin-bottom:-1rem!important}:host .margin-left-sm-n3,:host .margin-x-sm-n3{margin-left:-1rem!important}:host .margin-sm-n4{margin:-2rem!important}:host .margin-top-sm-n4,:host .margin-y-sm-n4{margin-top:-2rem!important}:host .margin-right-sm-n4,:host .margin-x-sm-n4{margin-right:-2rem!important}:host .margin-bottom-sm-n4,:host .margin-y-sm-n4{margin-bottom:-2rem!important}:host .margin-left-sm-n4,:host .margin-x-sm-n4{margin-left:-2rem!important}:host .margin-sm-n5{margin:-4rem!important}:host .margin-top-sm-n5,:host .margin-y-sm-n5{margin-top:-4rem!important}:host .margin-right-sm-n5,:host .margin-x-sm-n5{margin-right:-4rem!important}:host .margin-bottom-sm-n5,:host .margin-y-sm-n5{margin-bottom:-4rem!important}:host .margin-left-sm-n5,:host .margin-x-sm-n5{margin-left:-4rem!important}:host .margin-sm-auto{margin:auto!important}:host .margin-top-sm-auto,:host .margin-y-sm-auto{margin-top:auto!important}:host .margin-right-sm-auto,:host .margin-x-sm-auto{margin-right:auto!important}:host .margin-bottom-sm-auto,:host .margin-y-sm-auto{margin-bottom:auto!important}:host .margin-left-sm-auto,:host .margin-x-sm-auto{margin-left:auto!important}}@media (min-width: 768px){:host .margin-md-0{margin:0!important}:host .margin-top-md-0,:host .margin-y-md-0{margin-top:0!important}:host .margin-right-md-0,:host .margin-x-md-0{margin-right:0!important}:host .margin-bottom-md-0,:host .margin-y-md-0{margin-bottom:0!important}:host .margin-left-md-0,:host .margin-x-md-0{margin-left:0!important}:host .margin-md-1{margin:.25rem!important}:host .margin-top-md-1,:host .margin-y-md-1{margin-top:.25rem!important}:host .margin-right-md-1,:host .margin-x-md-1{margin-right:.25rem!important}:host .margin-bottom-md-1,:host .margin-y-md-1{margin-bottom:.25rem!important}:host .margin-left-md-1,:host .margin-x-md-1{margin-left:.25rem!important}:host .margin-md-2{margin:.5rem!important}:host .margin-top-md-2,:host .margin-y-md-2{margin-top:.5rem!important}:host .margin-right-md-2,:host .margin-x-md-2{margin-right:.5rem!important}:host .margin-bottom-md-2,:host .margin-y-md-2{margin-bottom:.5rem!important}:host .margin-left-md-2,:host .margin-x-md-2{margin-left:.5rem!important}:host .margin-md-3{margin:1rem!important}:host .margin-top-md-3,:host .margin-y-md-3{margin-top:1rem!important}:host .margin-right-md-3,:host .margin-x-md-3{margin-right:1rem!important}:host .margin-bottom-md-3,:host .margin-y-md-3{margin-bottom:1rem!important}:host .margin-left-md-3,:host .margin-x-md-3{margin-left:1rem!important}:host .margin-md-4{margin:2rem!important}:host .margin-top-md-4,:host .margin-y-md-4{margin-top:2rem!important}:host .margin-right-md-4,:host .margin-x-md-4{margin-right:2rem!important}:host .margin-bottom-md-4,:host .margin-y-md-4{margin-bottom:2rem!important}:host .margin-left-md-4,:host .margin-x-md-4{margin-left:2rem!important}:host .margin-md-5{margin:4rem!important}:host .margin-top-md-5,:host .margin-y-md-5{margin-top:4rem!important}:host .margin-right-md-5,:host .margin-x-md-5{margin-right:4rem!important}:host .margin-bottom-md-5,:host .margin-y-md-5{margin-bottom:4rem!important}:host .margin-left-md-5,:host .margin-x-md-5{margin-left:4rem!important}:host .padding-md-0{padding:0!important}:host .padding-top-md-0,:host .padding-y-md-0{padding-top:0!important}:host .padding-right-md-0,:host .padding-x-md-0{padding-right:0!important}:host .padding-bottom-md-0,:host .padding-y-md-0{padding-bottom:0!important}:host .padding-left-md-0,:host .padding-x-md-0{padding-left:0!important}:host .padding-md-1{padding:.25rem!important}:host .padding-top-md-1,:host .padding-y-md-1{padding-top:.25rem!important}:host .padding-right-md-1,:host .padding-x-md-1{padding-right:.25rem!important}:host .padding-bottom-md-1,:host .padding-y-md-1{padding-bottom:.25rem!important}:host .padding-left-md-1,:host .padding-x-md-1{padding-left:.25rem!important}:host .padding-md-2{padding:.5rem!important}:host .padding-top-md-2,:host .padding-y-md-2{padding-top:.5rem!important}:host .padding-right-md-2,:host .padding-x-md-2{padding-right:.5rem!important}:host .padding-bottom-md-2,:host .padding-y-md-2{padding-bottom:.5rem!important}:host .padding-left-md-2,:host .padding-x-md-2{padding-left:.5rem!important}:host .padding-md-3{padding:1rem!important}:host .padding-top-md-3,:host .padding-y-md-3{padding-top:1rem!important}:host .padding-right-md-3,:host .padding-x-md-3{padding-right:1rem!important}:host .padding-bottom-md-3,:host .padding-y-md-3{padding-bottom:1rem!important}:host .padding-left-md-3,:host .padding-x-md-3{padding-left:1rem!important}:host .padding-md-4{padding:2rem!important}:host .padding-top-md-4,:host .padding-y-md-4{padding-top:2rem!important}:host .padding-right-md-4,:host .padding-x-md-4{padding-right:2rem!important}:host .padding-bottom-md-4,:host .padding-y-md-4{padding-bottom:2rem!important}:host .padding-left-md-4,:host .padding-x-md-4{padding-left:2rem!important}:host .padding-md-5{padding:4rem!important}:host .padding-top-md-5,:host .padding-y-md-5{padding-top:4rem!important}:host .padding-right-md-5,:host .padding-x-md-5{padding-right:4rem!important}:host .padding-bottom-md-5,:host .padding-y-md-5{padding-bottom:4rem!important}:host .padding-left-md-5,:host .padding-x-md-5{padding-left:4rem!important}:host .margin-md-n1{margin:-.25rem!important}:host .margin-top-md-n1,:host .margin-y-md-n1{margin-top:-.25rem!important}:host .margin-right-md-n1,:host .margin-x-md-n1{margin-right:-.25rem!important}:host .margin-bottom-md-n1,:host .margin-y-md-n1{margin-bottom:-.25rem!important}:host .margin-left-md-n1,:host .margin-x-md-n1{margin-left:-.25rem!important}:host .margin-md-n2{margin:-.5rem!important}:host .margin-top-md-n2,:host .margin-y-md-n2{margin-top:-.5rem!important}:host .margin-right-md-n2,:host .margin-x-md-n2{margin-right:-.5rem!important}:host .margin-bottom-md-n2,:host .margin-y-md-n2{margin-bottom:-.5rem!important}:host .margin-left-md-n2,:host .margin-x-md-n2{margin-left:-.5rem!important}:host .margin-md-n3{margin:-1rem!important}:host .margin-top-md-n3,:host .margin-y-md-n3{margin-top:-1rem!important}:host .margin-right-md-n3,:host .margin-x-md-n3{margin-right:-1rem!important}:host .margin-bottom-md-n3,:host .margin-y-md-n3{margin-bottom:-1rem!important}:host .margin-left-md-n3,:host .margin-x-md-n3{margin-left:-1rem!important}:host .margin-md-n4{margin:-2rem!important}:host .margin-top-md-n4,:host .margin-y-md-n4{margin-top:-2rem!important}:host .margin-right-md-n4,:host .margin-x-md-n4{margin-right:-2rem!important}:host .margin-bottom-md-n4,:host .margin-y-md-n4{margin-bottom:-2rem!important}:host .margin-left-md-n4,:host .margin-x-md-n4{margin-left:-2rem!important}:host .margin-md-n5{margin:-4rem!important}:host .margin-top-md-n5,:host .margin-y-md-n5{margin-top:-4rem!important}:host .margin-right-md-n5,:host .margin-x-md-n5{margin-right:-4rem!important}:host .margin-bottom-md-n5,:host .margin-y-md-n5{margin-bottom:-4rem!important}:host .margin-left-md-n5,:host .margin-x-md-n5{margin-left:-4rem!important}:host .margin-md-auto{margin:auto!important}:host .margin-top-md-auto,:host .margin-y-md-auto{margin-top:auto!important}:host .margin-right-md-auto,:host .margin-x-md-auto{margin-right:auto!important}:host .margin-bottom-md-auto,:host .margin-y-md-auto{margin-bottom:auto!important}:host .margin-left-md-auto,:host .margin-x-md-auto{margin-left:auto!important}}@media (min-width: 992px){:host .margin-lg-0{margin:0!important}:host .margin-top-lg-0,:host .margin-y-lg-0{margin-top:0!important}:host .margin-right-lg-0,:host .margin-x-lg-0{margin-right:0!important}:host .margin-bottom-lg-0,:host .margin-y-lg-0{margin-bottom:0!important}:host .margin-left-lg-0,:host .margin-x-lg-0{margin-left:0!important}:host .margin-lg-1{margin:.25rem!important}:host .margin-top-lg-1,:host .margin-y-lg-1{margin-top:.25rem!important}:host .margin-right-lg-1,:host .margin-x-lg-1{margin-right:.25rem!important}:host .margin-bottom-lg-1,:host .margin-y-lg-1{margin-bottom:.25rem!important}:host .margin-left-lg-1,:host .margin-x-lg-1{margin-left:.25rem!important}:host .margin-lg-2{margin:.5rem!important}:host .margin-top-lg-2,:host .margin-y-lg-2{margin-top:.5rem!important}:host .margin-right-lg-2,:host .margin-x-lg-2{margin-right:.5rem!important}:host .margin-bottom-lg-2,:host .margin-y-lg-2{margin-bottom:.5rem!important}:host .margin-left-lg-2,:host .margin-x-lg-2{margin-left:.5rem!important}:host .margin-lg-3{margin:1rem!important}:host .margin-top-lg-3,:host .margin-y-lg-3{margin-top:1rem!important}:host .margin-right-lg-3,:host .margin-x-lg-3{margin-right:1rem!important}:host .margin-bottom-lg-3,:host .margin-y-lg-3{margin-bottom:1rem!important}:host .margin-left-lg-3,:host .margin-x-lg-3{margin-left:1rem!important}:host .margin-lg-4{margin:2rem!important}:host .margin-top-lg-4,:host .margin-y-lg-4{margin-top:2rem!important}:host .margin-right-lg-4,:host .margin-x-lg-4{margin-right:2rem!important}:host .margin-bottom-lg-4,:host .margin-y-lg-4{margin-bottom:2rem!important}:host .margin-left-lg-4,:host .margin-x-lg-4{margin-left:2rem!important}:host .margin-lg-5{margin:4rem!important}:host .margin-top-lg-5,:host .margin-y-lg-5{margin-top:4rem!important}:host .margin-right-lg-5,:host .margin-x-lg-5{margin-right:4rem!important}:host .margin-bottom-lg-5,:host .margin-y-lg-5{margin-bottom:4rem!important}:host .margin-left-lg-5,:host .margin-x-lg-5{margin-left:4rem!important}:host .padding-lg-0{padding:0!important}:host .padding-top-lg-0,:host .padding-y-lg-0{padding-top:0!important}:host .padding-right-lg-0,:host .padding-x-lg-0{padding-right:0!important}:host .padding-bottom-lg-0,:host .padding-y-lg-0{padding-bottom:0!important}:host .padding-left-lg-0,:host .padding-x-lg-0{padding-left:0!important}:host .padding-lg-1{padding:.25rem!important}:host .padding-top-lg-1,:host .padding-y-lg-1{padding-top:.25rem!important}:host .padding-right-lg-1,:host .padding-x-lg-1{padding-right:.25rem!important}:host .padding-bottom-lg-1,:host .padding-y-lg-1{padding-bottom:.25rem!important}:host .padding-left-lg-1,:host .padding-x-lg-1{padding-left:.25rem!important}:host .padding-lg-2{padding:.5rem!important}:host .padding-top-lg-2,:host .padding-y-lg-2{padding-top:.5rem!important}:host .padding-right-lg-2,:host .padding-x-lg-2{padding-right:.5rem!important}:host .padding-bottom-lg-2,:host .padding-y-lg-2{padding-bottom:.5rem!important}:host .padding-left-lg-2,:host .padding-x-lg-2{padding-left:.5rem!important}:host .padding-lg-3{padding:1rem!important}:host .padding-top-lg-3,:host .padding-y-lg-3{padding-top:1rem!important}:host .padding-right-lg-3,:host .padding-x-lg-3{padding-right:1rem!important}:host .padding-bottom-lg-3,:host .padding-y-lg-3{padding-bottom:1rem!important}:host .padding-left-lg-3,:host .padding-x-lg-3{padding-left:1rem!important}:host .padding-lg-4{padding:2rem!important}:host .padding-top-lg-4,:host .padding-y-lg-4{padding-top:2rem!important}:host .padding-right-lg-4,:host .padding-x-lg-4{padding-right:2rem!important}:host .padding-bottom-lg-4,:host .padding-y-lg-4{padding-bottom:2rem!important}:host .padding-left-lg-4,:host .padding-x-lg-4{padding-left:2rem!important}:host .padding-lg-5{padding:4rem!important}:host .padding-top-lg-5,:host .padding-y-lg-5{padding-top:4rem!important}:host .padding-right-lg-5,:host .padding-x-lg-5{padding-right:4rem!important}:host .padding-bottom-lg-5,:host .padding-y-lg-5{padding-bottom:4rem!important}:host .padding-left-lg-5,:host .padding-x-lg-5{padding-left:4rem!important}:host .margin-lg-n1{margin:-.25rem!important}:host .margin-top-lg-n1,:host .margin-y-lg-n1{margin-top:-.25rem!important}:host .margin-right-lg-n1,:host .margin-x-lg-n1{margin-right:-.25rem!important}:host .margin-bottom-lg-n1,:host .margin-y-lg-n1{margin-bottom:-.25rem!important}:host .margin-left-lg-n1,:host .margin-x-lg-n1{margin-left:-.25rem!important}:host .margin-lg-n2{margin:-.5rem!important}:host .margin-top-lg-n2,:host .margin-y-lg-n2{margin-top:-.5rem!important}:host .margin-right-lg-n2,:host .margin-x-lg-n2{margin-right:-.5rem!important}:host .margin-bottom-lg-n2,:host .margin-y-lg-n2{margin-bottom:-.5rem!important}:host .margin-left-lg-n2,:host .margin-x-lg-n2{margin-left:-.5rem!important}:host .margin-lg-n3{margin:-1rem!important}:host .margin-top-lg-n3,:host .margin-y-lg-n3{margin-top:-1rem!important}:host .margin-right-lg-n3,:host .margin-x-lg-n3{margin-right:-1rem!important}:host .margin-bottom-lg-n3,:host .margin-y-lg-n3{margin-bottom:-1rem!important}:host .margin-left-lg-n3,:host .margin-x-lg-n3{margin-left:-1rem!important}:host .margin-lg-n4{margin:-2rem!important}:host .margin-top-lg-n4,:host .margin-y-lg-n4{margin-top:-2rem!important}:host .margin-right-lg-n4,:host .margin-x-lg-n4{margin-right:-2rem!important}:host .margin-bottom-lg-n4,:host .margin-y-lg-n4{margin-bottom:-2rem!important}:host .margin-left-lg-n4,:host .margin-x-lg-n4{margin-left:-2rem!important}:host .margin-lg-n5{margin:-4rem!important}:host .margin-top-lg-n5,:host .margin-y-lg-n5{margin-top:-4rem!important}:host .margin-right-lg-n5,:host .margin-x-lg-n5{margin-right:-4rem!important}:host .margin-bottom-lg-n5,:host .margin-y-lg-n5{margin-bottom:-4rem!important}:host .margin-left-lg-n5,:host .margin-x-lg-n5{margin-left:-4rem!important}:host .margin-lg-auto{margin:auto!important}:host .margin-top-lg-auto,:host .margin-y-lg-auto{margin-top:auto!important}:host .margin-right-lg-auto,:host .margin-x-lg-auto{margin-right:auto!important}:host .margin-bottom-lg-auto,:host .margin-y-lg-auto{margin-bottom:auto!important}:host .margin-left-lg-auto,:host .margin-x-lg-auto{margin-left:auto!important}}@media (min-width: 1200px){:host .margin-xl-0{margin:0!important}:host .margin-top-xl-0,:host .margin-y-xl-0{margin-top:0!important}:host .margin-right-xl-0,:host .margin-x-xl-0{margin-right:0!important}:host .margin-bottom-xl-0,:host .margin-y-xl-0{margin-bottom:0!important}:host .margin-left-xl-0,:host .margin-x-xl-0{margin-left:0!important}:host .margin-xl-1{margin:.25rem!important}:host .margin-top-xl-1,:host .margin-y-xl-1{margin-top:.25rem!important}:host .margin-right-xl-1,:host .margin-x-xl-1{margin-right:.25rem!important}:host .margin-bottom-xl-1,:host .margin-y-xl-1{margin-bottom:.25rem!important}:host .margin-left-xl-1,:host .margin-x-xl-1{margin-left:.25rem!important}:host .margin-xl-2{margin:.5rem!important}:host .margin-top-xl-2,:host .margin-y-xl-2{margin-top:.5rem!important}:host .margin-right-xl-2,:host .margin-x-xl-2{margin-right:.5rem!important}:host .margin-bottom-xl-2,:host .margin-y-xl-2{margin-bottom:.5rem!important}:host .margin-left-xl-2,:host .margin-x-xl-2{margin-left:.5rem!important}:host .margin-xl-3{margin:1rem!important}:host .margin-top-xl-3,:host .margin-y-xl-3{margin-top:1rem!important}:host .margin-right-xl-3,:host .margin-x-xl-3{margin-right:1rem!important}:host .margin-bottom-xl-3,:host .margin-y-xl-3{margin-bottom:1rem!important}:host .margin-left-xl-3,:host .margin-x-xl-3{margin-left:1rem!important}:host .margin-xl-4{margin:2rem!important}:host .margin-top-xl-4,:host .margin-y-xl-4{margin-top:2rem!important}:host .margin-right-xl-4,:host .margin-x-xl-4{margin-right:2rem!important}:host .margin-bottom-xl-4,:host .margin-y-xl-4{margin-bottom:2rem!important}:host .margin-left-xl-4,:host .margin-x-xl-4{margin-left:2rem!important}:host .margin-xl-5{margin:4rem!important}:host .margin-top-xl-5,:host .margin-y-xl-5{margin-top:4rem!important}:host .margin-right-xl-5,:host .margin-x-xl-5{margin-right:4rem!important}:host .margin-bottom-xl-5,:host .margin-y-xl-5{margin-bottom:4rem!important}:host .margin-left-xl-5,:host .margin-x-xl-5{margin-left:4rem!important}:host .padding-xl-0{padding:0!important}:host .padding-top-xl-0,:host .padding-y-xl-0{padding-top:0!important}:host .padding-right-xl-0,:host .padding-x-xl-0{padding-right:0!important}:host .padding-bottom-xl-0,:host .padding-y-xl-0{padding-bottom:0!important}:host .padding-left-xl-0,:host .padding-x-xl-0{padding-left:0!important}:host .padding-xl-1{padding:.25rem!important}:host .padding-top-xl-1,:host .padding-y-xl-1{padding-top:.25rem!important}:host .padding-right-xl-1,:host .padding-x-xl-1{padding-right:.25rem!important}:host .padding-bottom-xl-1,:host .padding-y-xl-1{padding-bottom:.25rem!important}:host .padding-left-xl-1,:host .padding-x-xl-1{padding-left:.25rem!important}:host .padding-xl-2{padding:.5rem!important}:host .padding-top-xl-2,:host .padding-y-xl-2{padding-top:.5rem!important}:host .padding-right-xl-2,:host .padding-x-xl-2{padding-right:.5rem!important}:host .padding-bottom-xl-2,:host .padding-y-xl-2{padding-bottom:.5rem!important}:host .padding-left-xl-2,:host .padding-x-xl-2{padding-left:.5rem!important}:host .padding-xl-3{padding:1rem!important}:host .padding-top-xl-3,:host .padding-y-xl-3{padding-top:1rem!important}:host .padding-right-xl-3,:host .padding-x-xl-3{padding-right:1rem!important}:host .padding-bottom-xl-3,:host .padding-y-xl-3{padding-bottom:1rem!important}:host .padding-left-xl-3,:host .padding-x-xl-3{padding-left:1rem!important}:host .padding-xl-4{padding:2rem!important}:host .padding-top-xl-4,:host .padding-y-xl-4{padding-top:2rem!important}:host .padding-right-xl-4,:host .padding-x-xl-4{padding-right:2rem!important}:host .padding-bottom-xl-4,:host .padding-y-xl-4{padding-bottom:2rem!important}:host .padding-left-xl-4,:host .padding-x-xl-4{padding-left:2rem!important}:host .padding-xl-5{padding:4rem!important}:host .padding-top-xl-5,:host .padding-y-xl-5{padding-top:4rem!important}:host .padding-right-xl-5,:host .padding-x-xl-5{padding-right:4rem!important}:host .padding-bottom-xl-5,:host .padding-y-xl-5{padding-bottom:4rem!important}:host .padding-left-xl-5,:host .padding-x-xl-5{padding-left:4rem!important}:host .margin-xl-n1{margin:-.25rem!important}:host .margin-top-xl-n1,:host .margin-y-xl-n1{margin-top:-.25rem!important}:host .margin-right-xl-n1,:host .margin-x-xl-n1{margin-right:-.25rem!important}:host .margin-bottom-xl-n1,:host .margin-y-xl-n1{margin-bottom:-.25rem!important}:host .margin-left-xl-n1,:host .margin-x-xl-n1{margin-left:-.25rem!important}:host .margin-xl-n2{margin:-.5rem!important}:host .margin-top-xl-n2,:host .margin-y-xl-n2{margin-top:-.5rem!important}:host .margin-right-xl-n2,:host .margin-x-xl-n2{margin-right:-.5rem!important}:host .margin-bottom-xl-n2,:host .margin-y-xl-n2{margin-bottom:-.5rem!important}:host .margin-left-xl-n2,:host .margin-x-xl-n2{margin-left:-.5rem!important}:host .margin-xl-n3{margin:-1rem!important}:host .margin-top-xl-n3,:host .margin-y-xl-n3{margin-top:-1rem!important}:host .margin-right-xl-n3,:host .margin-x-xl-n3{margin-right:-1rem!important}:host .margin-bottom-xl-n3,:host .margin-y-xl-n3{margin-bottom:-1rem!important}:host .margin-left-xl-n3,:host .margin-x-xl-n3{margin-left:-1rem!important}:host .margin-xl-n4{margin:-2rem!important}:host .margin-top-xl-n4,:host .margin-y-xl-n4{margin-top:-2rem!important}:host .margin-right-xl-n4,:host .margin-x-xl-n4{margin-right:-2rem!important}:host .margin-bottom-xl-n4,:host .margin-y-xl-n4{margin-bottom:-2rem!important}:host .margin-left-xl-n4,:host .margin-x-xl-n4{margin-left:-2rem!important}:host .margin-xl-n5{margin:-4rem!important}:host .margin-top-xl-n5,:host .margin-y-xl-n5{margin-top:-4rem!important}:host .margin-right-xl-n5,:host .margin-x-xl-n5{margin-right:-4rem!important}:host .margin-bottom-xl-n5,:host .margin-y-xl-n5{margin-bottom:-4rem!important}:host .margin-left-xl-n5,:host .margin-x-xl-n5{margin-left:-4rem!important}:host .margin-xl-auto{margin:auto!important}:host .margin-top-xl-auto,:host .margin-y-xl-auto{margin-top:auto!important}:host .margin-right-xl-auto,:host .margin-x-xl-auto{margin-right:auto!important}:host .margin-bottom-xl-auto,:host .margin-y-xl-auto{margin-bottom:auto!important}:host .margin-left-xl-auto,:host .margin-x-xl-auto{margin-left:auto!important}}:host .h1{font-size:2em}:host .h2{font-size:1.5em}:host .h3{font-size:1.17em}:host .h4{font-size:1em}:host .h5{font-size:.83em}:host .h6{font-size:.67em}:host .cursor-alias{cursor:alias}:host .cursor-all-scroll{cursor:all-scroll}:host .cursor-auto{cursor:auto}:host .cursor-cell{cursor:cell}:host .cursor-context-menu{cursor:context-menu}:host .cursor-col-resize{cursor:col-resize}:host .cursor-copy{cursor:copy}:host .cursor-crosshair{cursor:crosshair}:host .cursor-default{cursor:default}:host .cursor-e-resize{cursor:e-resize}:host .cursor-ew-resize{cursor:ew-resize}:host .cursor-grab{cursor:grab}:host .cursor-grabbing{cursor:grabbing}:host .cursor-help{cursor:help}:host .cursor-move{cursor:move}:host .cursor-n-resize{cursor:n-resize}:host .cursor-ne-resize{cursor:ne-resize}:host .cursor-nesw-resize{cursor:nesw-resize}:host .cursor-ns-resize{cursor:ns-resize}:host .cursor-nw-resize{cursor:nw-resize}:host .cursor-nwse-resize{cursor:nwse-resize}:host .cursor-no-drop{cursor:no-drop}:host .cursor-none{cursor:none}:host .cursor-not-allowed{cursor:not-allowed}:host .cursor-pointer{cursor:pointer}:host .cursor-progress{cursor:progress}:host .cursor-row-resize{cursor:row-resize}:host .cursor-s-resize{cursor:s-resize}:host .cursor-se-resize{cursor:se-resize}:host .cursor-sw-resize{cursor:sw-resize}:host .cursor-text{cursor:text}:host .cursor-w-resize{cursor:w-resize}:host .cursor-wait{cursor:wait}:host .cursor-zoom-in{cursor:zoom-in}:host .cursor-zoom-out{cursor:zoom-out}:host .mat-tooltip{font-size:16px!important}:host html,:host body{height:100%}:host body{margin:0;padding:0;font-family:opens sans regular,sans-serif}:host iframe{border:none}:host .mat-badge-content{font-weight:600;font-size:12px;font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-badge-small .mat-badge-content{font-size:9px}:host .mat-badge-large .mat-badge-content{font-size:24px}:host .mat-h1,:host .mat-headline,:host .mat-typography h1{font:400 24px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h2,:host .mat-title,:host .mat-typography h2{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h3,:host .mat-subheading-2,:host .mat-typography h3{font:400 16px/28px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h4,:host .mat-subheading-1,:host .mat-typography h4{font:400 15px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 16px}:host .mat-h5,:host .mat-typography h5{font:400 11.62px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}:host .mat-h6,:host .mat-typography h6{font:400 9.38px/20px Roboto,Helvetica Neue,sans-serif;margin:0 0 12px}:host .mat-body-strong,:host .mat-body-2{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-body,:host .mat-body-1,:host .mat-typography{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-body p,:host .mat-body-1 p,:host .mat-typography p{margin:0 0 12px}:host .mat-small,:host .mat-caption{font:400 12px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-display-4,:host .mat-typography .mat-display-4{font:300 112px/112px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.05em;margin:0 0 56px}:host .mat-display-3,:host .mat-typography .mat-display-3{font:400 56px/56px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.02em;margin:0 0 64px}:host .mat-display-2,:host .mat-typography .mat-display-2{font:400 45px/48px Roboto,Helvetica Neue,sans-serif;letter-spacing:-.005em;margin:0 0 64px}:host .mat-display-1,:host .mat-typography .mat-display-1{font:400 34px/40px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0 0 64px}:host .mat-bottom-sheet-container{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-button,:host .mat-raised-button,:host .mat-icon-button,:host .mat-stroked-button,:host .mat-flat-button,:host .mat-fab,:host .mat-mini-fab{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}:host .mat-button-toggle{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-card{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-card-title{font-size:24px;font-weight:500}:host .mat-card-header .mat-card-title{font-size:20px}:host .mat-card-subtitle,:host .mat-card-content{font-size:14px}:host .mat-checkbox{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-checkbox-layout .mat-checkbox-label{line-height:24px}:host .mat-chip{font-size:14px;font-weight:500}:host .mat-chip .mat-chip-trailing-icon.mat-icon,:host .mat-chip .mat-chip-remove.mat-icon{font-size:18px}:host .mat-table{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-header-cell{font-size:12px;font-weight:500}:host .mat-cell,:host .mat-footer-cell{font-size:14px}:host .mat-calendar{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-calendar-body{font-size:13px}:host .mat-calendar-body-label,:host .mat-calendar-period-button{font-size:14px;font-weight:500}:host .mat-calendar-table-header th{font-size:11px;font-weight:400}:host .mat-dialog-title{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-expansion-panel-header{font-family:Roboto,Helvetica Neue,sans-serif;font-size:15px;font-weight:400}:host .mat-expansion-panel-content{font:400 14px/20px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-form-field{font-size:inherit;font-weight:400;line-height:1.125;font-family:Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-form-field-wrapper{padding-bottom:1.34375em}:host .mat-form-field-prefix .mat-icon,:host .mat-form-field-suffix .mat-icon{font-size:150%;line-height:1.125}:host .mat-form-field-prefix .mat-icon-button,:host .mat-form-field-suffix .mat-icon-button{height:1.5em;width:1.5em}:host .mat-form-field-prefix .mat-icon-button .mat-icon,:host .mat-form-field-suffix .mat-icon-button .mat-icon{height:1.125em;line-height:1.125}:host .mat-form-field-infix{padding:.5em 0;border-top:.84375em solid transparent}:host .mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34375em) scale(.75);width:133.3333333333%}:host .mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34374em) scale(.75);width:133.3333433333%}:host .mat-form-field-label-wrapper{top:-.84375em;padding-top:.84375em}:host .mat-form-field-label{top:1.34375em}:host .mat-form-field-underline{bottom:1.34375em}:host .mat-form-field-subscript-wrapper{font-size:75%;margin-top:.6666666667em;top:calc(100% - 1.7916666667em)}:host .mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:1.25em}:host .mat-form-field-appearance-legacy .mat-form-field-infix{padding:.4375em 0}:host .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);width:133.3333333333%}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00101px);width:133.3333433333%}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00102px);width:133.3333533333%}:host .mat-form-field-appearance-legacy .mat-form-field-label{top:1.28125em}:host .mat-form-field-appearance-legacy .mat-form-field-underline{bottom:1.25em}:host .mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper{margin-top:.5416666667em;top:calc(100% - 1.6666666667em)}@media print{:host .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28122em) scale(.75)}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28121em) scale(.75)}:host .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.2812em) scale(.75)}}:host .mat-form-field-appearance-fill .mat-form-field-infix{padding:.25em 0 .75em}:host .mat-form-field-appearance-fill .mat-form-field-label{top:1.09375em;margin-top:-.5em}:host .mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59375em) scale(.75);width:133.3333333333%}:host .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-.59374em) scale(.75);width:133.3333433333%}:host .mat-form-field-appearance-outline .mat-form-field-infix{padding:1em 0}:host .mat-form-field-appearance-outline .mat-form-field-label{top:1.84375em;margin-top:-.25em}:host .mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,:host .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59375em) scale(.75);width:133.3333333333%}:host .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59374em) scale(.75);width:133.3333433333%}:host .mat-grid-tile-header,:host .mat-grid-tile-footer{font-size:14px}:host .mat-grid-tile-header .mat-line,:host .mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-grid-tile-header .mat-line:nth-child(n+2),:host .mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:12px}:host input.mat-input-element{margin-top:-.0625em}:host .mat-menu-item{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:400}:host .mat-paginator,:host .mat-paginator-page-size .mat-select-trigger{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px}:host .mat-radio-button{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-select{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-select-trigger{height:1.125em}:host .mat-slide-toggle-content{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-slider-thumb-label-text{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}:host .mat-stepper-vertical,:host .mat-stepper-horizontal{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-step-label{font-size:14px;font-weight:400}:host .mat-step-sub-label-error{font-weight:400}:host .mat-step-label-error{font-size:14px}:host .mat-step-label-selected{font-size:14px;font-weight:500}:host .mat-tab-group{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-tab-label,:host .mat-tab-link{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}:host .mat-toolbar,:host .mat-toolbar h1,:host .mat-toolbar h2,:host .mat-toolbar h3,:host .mat-toolbar h4,:host .mat-toolbar h5,:host .mat-toolbar h6{font:500 20px/32px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;margin:0}:host .mat-tooltip{font-family:Roboto,Helvetica Neue,sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}:host .mat-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}:host .mat-list-item{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-list-option{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-list-base .mat-list-item{font-size:16px}:host .mat-list-base .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base .mat-list-item .mat-line:nth-child(n+2){font-size:14px}:host .mat-list-base .mat-list-option{font-size:16px}:host .mat-list-base .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base .mat-list-option .mat-line:nth-child(n+2){font-size:14px}:host .mat-list-base .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px;font-weight:500}:host .mat-list-base[dense] .mat-list-item{font-size:12px}:host .mat-list-base[dense] .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}:host .mat-list-base[dense] .mat-list-option{font-size:12px}:host .mat-list-base[dense] .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}:host .mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2){font-size:12px}:host .mat-list-base[dense] .mat-subheader{font-family:Roboto,Helvetica Neue,sans-serif;font-size:12px;font-weight:500}:host .mat-option{font-family:Roboto,Helvetica Neue,sans-serif;font-size:16px}:host .mat-optgroup-label{font:500 14px/24px Roboto,Helvetica Neue,sans-serif;letter-spacing:normal}:host .mat-simple-snackbar{font-family:Roboto,Helvetica Neue,sans-serif;font-size:14px}:host .mat-simple-snackbar-action{line-height:1;font-family:inherit;font-size:inherit;font-weight:500}:host .mat-tree{font-family:Roboto,Helvetica Neue,sans-serif}:host .mat-tree-node,:host .mat-nested-tree-node{font-weight:400;font-size:14px}:host .mat-ripple{overflow:hidden;position:relative}:host .mat-ripple:not(:empty){transform:translateZ(0)}:host .mat-ripple.mat-ripple-unbounded{overflow:visible}:host .mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale(0)}.cdk-high-contrast-active :host .mat-ripple-element{display:none}:host .cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none}:host .cdk-overlay-container,:host .cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}:host .cdk-overlay-container{position:fixed;z-index:1000}:host .cdk-overlay-container:empty{display:none}:host .cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}:host .cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}:host .cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}:host .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active :host .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}:host .cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}:host .cdk-overlay-transparent-backdrop,:host .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0}:host .cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}:host .cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}:host textarea.cdk-textarea-autosize{resize:none}:host textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}:host textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0!important;box-sizing:content-box!important;height:0!important}@keyframes cdk-text-field-autofill-start{}@keyframes cdk-text-field-autofill-end{}:host .cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}:host .cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}:host .mat-focus-indicator{position:relative}:host .mat-mdc-focus-indicator{position:relative}:host .title,:host .header{font-family:Encode Sans Condensed,sans-serif;font-weight:900}:host .paragraph-title,:host .tagline{font-family:Open Sans,sans-serif;font-weight:400}:host .paragraph-title-bold .tagLine-bold{font-family:Open Sans,sans-serif;font-weight:700}:host .plain-text,:host .remarks{font-family:Open Sans,sans-serif;font-weight:300}:host .plain-text-bold{font-family:Open Sans,sans-serif;font-weight:700}:host .flex-column{box-sizing:border-box;display:flex;flex-direction:column}:host .flex-row{box-sizing:border-box;display:flex;flex-direction:row}:host .flex-row-center{align-items:center;justify-content:center}:host .mat-button-large{line-height:48px;font-size:18px;font-weight:700;padding:0 24px!important}:host .mat-round{border-radius:.5em}:host :root{--skeleton-color: #ccc;--skeleton-icon-color: rgba(0, 0, 0, .25)}:host .skeleton-block{height:1em;background:var(--skeleton-color)!important;width:100%;display:block}@font-face{:host {font-family: \"skeleton\"; src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAYAAA0AAAAAESgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABMAAAABoAAAAclcTxx09TLzIAAAFMAAAASwAAAGBRtV1jY21hcAAAAZgAAAC9AAABamglddJjdnQgAAACWAAAAAQAAAAEABEBRGdhc3AAAAJcAAAACAAAAAj//wADZ2x5ZgAAAmQAAACTAAAJdL6KsfZoZWFkAAAC+AAAAC4AAAA2GgvLb2hoZWEAAAMoAAAAGgAAACQC8ADFaG10eAAAA0QAAAATAAAAtAMAABFsb2NhAAADWAAAAK4AAACuaF5mEm1heHAAAAQIAAAAHwAAACAAmgA5bmFtZQAABCgAAAE5AAACNKbyxURwb3N0AAAFZAAAAJkAAADOCL0Ic3icY2BgYGQAgts30q6A6DvfXCthNABZwwgPAAB4nGNgYWRgnMDAysDA6MOYxsDA4A6lvzJIMrQwMDAxsHIywAAjAxIISHNNYWhgUGCoZTzw/wCDHuMBBgeYGsYDQB4DUI4RAOnYC70AeJxjYGBgZoBgGQZGBhBIAfIYwXwWBg8gzcfAwcDEwMagxKDFYM0QyxDPUPv/P1BcgUGNQYfBEchP/P///+P/D/7f/3/r/83/N6DmIAFGNga4ICMTkGBCVwB0AgsrkMHGzsHJxcDNw8vHLyAoJCwiKiYuISkFViMtIysnr6CopKyiqqauoamlraOrp29gaGRsYmpmzmDBYGllbWNrZ+/g6OTs4urm7uHp5e3j6+cfEBgUHBKK7iL6AwBJLiG7AAAAABEBRAAAAAH//wACeJztzrENwjAUBNA7O4nrXzBAREEHEm5dsERWyApZIStkBip7ggzCCmyAEmxCQYNESfG7r3un04eBAJjYwcLhGIlTSK7C/Ryb+haSNflEtCWuS5xcw0dILLkXLwcvexmHvme3XIU+rxFYZ4Jz3sROWiEuBgug9tXMh7lN21djxbu1Nf/pZzU1NTU1NbWf7QnZ5mwOAHicY2BkYGAAYrZdrHLx/DZfGbiZGEDgzjfXSgT9/wAjA+MBIJeDASwNAA4cCj0AAHicY2BkYGA88P8Agx6QAQSMYIQCWABQZgK3AAB4nGNkYBBkAAJGKB4KAAAOfQAVAAAAACoAKgAqADgARgBUAGIAcAB+AIwAmgCoALYAxADYAOYA9AECARABHgEsAToBSAFWAWQBcgGAAY4BnAGqAbgBxgHUAeIB8AH+AgwCGgIoAjYCRAJSAmACbgJ8AooCmAKmArQCwgLQAt4C7AL6AwgDFgMkAzIDQANOA1wDagN4A4YDlAOiA7ADvgPMA9oD6AP2BAQEEgQgBC4EPARKBFgEZgR0BIIEkASeBKwEugAAeJxjYGRgYAhj4GBgYgABEMnIABJzYNADCQAADScA1AB4nH2PvW7CMBSFj/krXSpeoJKHDiAR6mRAFStSVIkFMWToFhErWCQkMmFAVR+hax+hY5+vY0+MWTqQ6Mqfj4/vPQbwgB8IXL4xNp4Fhvj03MEdvj138YRfzz0MxbPnPkbizfOA+gedonfP3drdallghHfPHc798tzFKzNcuMc+j577kOLF84D6HktUqHGGhUGOHRpIZt5iwjWCYoWYkhMUSJHRVbIslRXdKanVS/Yw7hTLqj5bk+8aOd5OZKSicCqTIs1Maaxc7VJbpGVtMjqP2EPzuubQCgcKe13opiJtKOY4ud6WW52fipQQO2PjVkuHdilnzCmxYP1veVHbNwSYs64vQlwdmriyuZbRTMmFvI4mRmEwD9rcNxMmFC0Nxs9R/EOXRLk0SLQ9GjZUKpwppeStbn/Mg1tYAAAAeJxdzlkzggEARuGn1EXUWEJFubJU1iyRJcbQJoRC9t/dn8k3XXZu3plz8c4RNmI4kAkmZJzXkQ2bEBEVM2lKXMK0GbPmJM1bsCglHTwsWZaVs2LVmnUb8gqKNm3ZtmPXnpJ9Bw4dKTt2ouLUmXMXqi5duXbjVk1dQ1PLnbZ7Dx51PHn2oqsXdL151/fh05dvP379/QOXKRMwAAAA) format(\"woff\"); font-weight: 100,200,300,400,500,600,700,800,900; font-style: normal,italic; font-display: block;}}:host .skeleton-text{font-family:skeleton!important;-webkit-user-select:none;user-select:none}:host .skeleton-text,:host .skeleton-text *{color:var(--skeleton-color)!important;letter-spacing:-.03em!important}:host .skeleton-image{display:inline-block}:host .skeleton-image svg{max-width:100%;height:auto}:host .skeleton-image polygon{fill:var(--skeleton-color)}:host .skeleton-image path{fill:var(--skeleton-icon-color)}:host .skeleton-avatar{display:inline-block}:host .skeleton-avatar svg{max-width:100%;height:auto}:host .skeleton-avatar rect{fill:var(--skeleton-color)}:host .skeleton-avatar path{fill:var(--skeleton-icon-color)}:host .skeleton-effect-blink,:host .skeleton-effect-wave{-webkit-mask-image:linear-gradient(to right,transparent 0%,black 25%,black 75%,transparent 100%);mask-image:linear-gradient(to right,transparent 0%,black 25%,black 75%,transparent 100%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-position:50% top;mask-position:50% top;animation:skeleton-effect-wave 1s infinite}:host .skeleton-effect-fade{animation:skeleton-effect-fade 1s infinite}:host .skeleton-effect-pulse{animation:skeleton-effect-pulse 1s infinite}@keyframes skeleton-effect-fade{0%{opacity:1}50%{opacity:.2}to{opacity:1}}@keyframes skeleton-effect-wave{0%{-webkit-mask-position:50% top;mask-position:50% top}to{-webkit-mask-position:-150% top;mask-position:-150% top}}@keyframes skeleton-effect-pulse{0%{transform:scale(1)}40%{transform:scale(1)}50%{transform:scale(.975)}to{transform:scale(1)}}:host .mat-ripple-element{background-color:#0000001a}:host .mat-option{color:#000000de}:host .mat-option:hover:not(.mat-option-disabled),:host .mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}:host .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}:host .mat-option.mat-active{background:rgba(0,0,0,.04);color:#000000de}:host .mat-option.mat-option-disabled{color:#00000061}:host .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#4a918e}:host .mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#9cd8d7}:host .mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#ef4351}:host .mat-optgroup-label{color:#0000008a}:host .mat-optgroup-disabled .mat-optgroup-label{color:#00000061}:host .mat-pseudo-checkbox{color:#0000008a}:host .mat-pseudo-checkbox:after{color:#fafafa}:host .mat-pseudo-checkbox-disabled{color:#b0b0b0}:host .mat-primary .mat-pseudo-checkbox-checked,:host .mat-primary .mat-pseudo-checkbox-indeterminate{background:#4a918e}:host .mat-pseudo-checkbox-checked,:host .mat-pseudo-checkbox-indeterminate,:host .mat-accent .mat-pseudo-checkbox-checked,:host .mat-accent .mat-pseudo-checkbox-indeterminate{background:#9cd8d7}:host .mat-warn .mat-pseudo-checkbox-checked,:host .mat-warn .mat-pseudo-checkbox-indeterminate{background:#ef4351}:host .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,:host .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}:host .mat-app-background,:host.mat-app-background{background-color:#fafafa;color:#000000de}:host .mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}:host .mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}:host .mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}:host .mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}:host .mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}:host .mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}:host .mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}:host .mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}:host .mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}:host .mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}:host .mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}:host .mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}:host .mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}:host .mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}:host .mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}:host .mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}:host .mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}:host .mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}:host .mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}:host .mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}:host .mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}:host .mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}:host .mat-autocomplete-panel{background:white;color:#000000de}:host .mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:white}:host .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:#000000de}:host .mat-badge{position:relative}:host .mat-badge-hidden .mat-badge-content{display:none}:host .mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform .2s ease-in-out;transform:scale(.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}:host .ng-animate-disabled .mat-badge-content,:host .mat-badge-content._mat-animation-noopable{transition:none}:host .mat-badge-content.mat-badge-active{transform:none}:host .mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}:host .mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}:host .mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}:host .mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] :host .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}:host .mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] :host .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}:host .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] :host .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}:host .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] :host .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}:host .mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}:host .mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}:host .mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}:host .mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] :host .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}:host .mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] :host .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}:host .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] :host .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}:host .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] :host .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}:host .mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}:host .mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}:host .mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}:host .mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] :host .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}:host .mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] :host .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}:host .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] :host .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}:host .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] :host .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}:host .mat-badge-content{color:#f1f4f6;background:#4a918e}.cdk-high-contrast-active :host .mat-badge-content{outline:solid 1px;border-radius:0}:host .mat-badge-accent .mat-badge-content{background:#9cd8d7;color:#282d35de}:host .mat-badge-warn .mat-badge-content{color:#f1f4f6;background:#ef4351}:host .mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:#00000061}:host .mat-bottom-sheet-container{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f;background:white;color:#000000de}:host .mat-button,:host .mat-icon-button,:host .mat-stroked-button{color:inherit;background:transparent}:host .mat-button.mat-primary,:host .mat-icon-button.mat-primary,:host .mat-stroked-button.mat-primary{color:#4a918e}:host .mat-button.mat-accent,:host .mat-icon-button.mat-accent,:host .mat-stroked-button.mat-accent{color:#9cd8d7}:host .mat-button.mat-warn,:host .mat-icon-button.mat-warn,:host .mat-stroked-button.mat-warn{color:#ef4351}:host .mat-button.mat-primary.mat-button-disabled,:host .mat-button.mat-accent.mat-button-disabled,:host .mat-button.mat-warn.mat-button-disabled,:host .mat-button.mat-button-disabled.mat-button-disabled,:host .mat-icon-button.mat-primary.mat-button-disabled,:host .mat-icon-button.mat-accent.mat-button-disabled,:host .mat-icon-button.mat-warn.mat-button-disabled,:host .mat-icon-button.mat-button-disabled.mat-button-disabled,:host .mat-stroked-button.mat-primary.mat-button-disabled,:host .mat-stroked-button.mat-accent.mat-button-disabled,:host .mat-stroked-button.mat-warn.mat-button-disabled,:host .mat-stroked-button.mat-button-disabled.mat-button-disabled{color:#00000042}:host .mat-button.mat-primary .mat-button-focus-overlay,:host .mat-icon-button.mat-primary .mat-button-focus-overlay,:host .mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#4a918e}:host .mat-button.mat-accent .mat-button-focus-overlay,:host .mat-icon-button.mat-accent .mat-button-focus-overlay,:host .mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#9cd8d7}:host .mat-button.mat-warn .mat-button-focus-overlay,:host .mat-icon-button.mat-warn .mat-button-focus-overlay,:host .mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#ef4351}:host .mat-button.mat-button-disabled .mat-button-focus-overlay,:host .mat-icon-button.mat-button-disabled .mat-button-focus-overlay,:host .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}:host .mat-button .mat-ripple-element,:host .mat-icon-button .mat-ripple-element,:host .mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}:host .mat-button-focus-overlay{background:black}:host .mat-stroked-button:not(.mat-button-disabled){border-color:#0000001f}:host .mat-flat-button,:host .mat-raised-button,:host .mat-fab,:host .mat-mini-fab{color:#000000de;background-color:#fff}:host .mat-flat-button.mat-primary,:host .mat-raised-button.mat-primary,:host .mat-fab.mat-primary,:host .mat-mini-fab.mat-primary{color:#f1f4f6}:host .mat-flat-button.mat-accent,:host .mat-raised-button.mat-accent,:host .mat-fab.mat-accent,:host .mat-mini-fab.mat-accent{color:#282d35de}:host .mat-flat-button.mat-warn,:host .mat-raised-button.mat-warn,:host .mat-fab.mat-warn,:host .mat-mini-fab.mat-warn{color:#f1f4f6}:host .mat-flat-button.mat-primary.mat-button-disabled,:host .mat-flat-button.mat-accent.mat-button-disabled,:host .mat-flat-button.mat-warn.mat-button-disabled,:host .mat-flat-button.mat-button-disabled.mat-button-disabled,:host .mat-raised-button.mat-primary.mat-button-disabled,:host .mat-raised-button.mat-accent.mat-button-disabled,:host .mat-raised-button.mat-warn.mat-button-disabled,:host .mat-raised-button.mat-button-disabled.mat-button-disabled,:host .mat-fab.mat-primary.mat-button-disabled,:host .mat-fab.mat-accent.mat-button-disabled,:host .mat-fab.mat-warn.mat-button-disabled,:host .mat-fab.mat-button-disabled.mat-button-disabled,:host .mat-mini-fab.mat-primary.mat-button-disabled,:host .mat-mini-fab.mat-accent.mat-button-disabled,:host .mat-mini-fab.mat-warn.mat-button-disabled,:host .mat-mini-fab.mat-button-disabled.mat-button-disabled{color:#00000042}:host .mat-flat-button.mat-primary,:host .mat-raised-button.mat-primary,:host .mat-fab.mat-primary,:host .mat-mini-fab.mat-primary{background-color:#4a918e}:host .mat-flat-button.mat-accent,:host .mat-raised-button.mat-accent,:host .mat-fab.mat-accent,:host .mat-mini-fab.mat-accent{background-color:#9cd8d7}:host .mat-flat-button.mat-warn,:host .mat-raised-button.mat-warn,:host .mat-fab.mat-warn,:host .mat-mini-fab.mat-warn{background-color:#ef4351}:host .mat-flat-button.mat-primary.mat-button-disabled,:host .mat-flat-button.mat-accent.mat-button-disabled,:host .mat-flat-button.mat-warn.mat-button-disabled,:host .mat-flat-button.mat-button-disabled.mat-button-disabled,:host .mat-raised-button.mat-primary.mat-button-disabled,:host .mat-raised-button.mat-accent.mat-button-disabled,:host .mat-raised-button.mat-warn.mat-button-disabled,:host .mat-raised-button.mat-button-disabled.mat-button-disabled,:host .mat-fab.mat-primary.mat-button-disabled,:host .mat-fab.mat-accent.mat-button-disabled,:host .mat-fab.mat-warn.mat-button-disabled,:host .mat-fab.mat-button-disabled.mat-button-disabled,:host .mat-mini-fab.mat-primary.mat-button-disabled,:host .mat-mini-fab.mat-accent.mat-button-disabled,:host .mat-mini-fab.mat-warn.mat-button-disabled,:host .mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:#0000001f}:host .mat-flat-button.mat-primary .mat-ripple-element,:host .mat-raised-button.mat-primary .mat-ripple-element,:host .mat-fab.mat-primary .mat-ripple-element,:host .mat-mini-fab.mat-primary .mat-ripple-element{background-color:#f1f4f61a}:host .mat-flat-button.mat-accent .mat-ripple-element,:host .mat-raised-button.mat-accent .mat-ripple-element,:host .mat-fab.mat-accent .mat-ripple-element,:host .mat-mini-fab.mat-accent .mat-ripple-element{background-color:#282d351a}:host .mat-flat-button.mat-warn .mat-ripple-element,:host .mat-raised-button.mat-warn .mat-ripple-element,:host .mat-fab.mat-warn .mat-ripple-element,:host .mat-mini-fab.mat-warn .mat-ripple-element{background-color:#f1f4f61a}:host .mat-stroked-button:not([class*=mat-elevation-z]),:host .mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}:host .mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-fab:not([class*=mat-elevation-z]),:host .mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}:host .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),:host .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}:host .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),:host .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-button-toggle-standalone,:host .mat-button-toggle-group{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,:host .mat-button-toggle-group-appearance-standard{box-shadow:none}:host .mat-button-toggle{color:#00000061}:host .mat-button-toggle .mat-button-toggle-focus-overlay{background-color:#0000001f}:host .mat-button-toggle-appearance-standard{color:#000000de;background:white}:host .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}:host .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px rgba(0,0,0,.12)}:host [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}:host .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px rgba(0,0,0,.12)}:host .mat-button-toggle-checked{background-color:#e0e0e0;color:#0000008a}:host .mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:#000000de}:host .mat-button-toggle-disabled{color:#00000042;background-color:#eee}:host .mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:white}:host .mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}:host .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,:host .mat-button-toggle-group-appearance-standard{border:solid 1px rgba(0,0,0,.12)}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:48px}:host .mat-card{background:white;color:#000000de}:host .mat-card:not([class*=mat-elevation-z]){box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}:host .mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}:host .mat-card-subtitle{color:#0000008a}:host .mat-checkbox-frame{border-color:#0000008a}:host .mat-checkbox-checkmark{fill:#fafafa}:host .mat-checkbox-checkmark-path{stroke:#fafafa!important}:host .mat-checkbox-mixedmark{background-color:#fafafa}:host .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,:host .mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#4a918e}:host .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,:host .mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#9cd8d7}:host .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,:host .mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#ef4351}:host .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,:host .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}:host .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}:host .mat-checkbox-disabled .mat-checkbox-label{color:#0000008a}:host .mat-checkbox .mat-ripple-element{background-color:#000}:host .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,:host .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#4a918e}:host .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,:host .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#9cd8d7}:host .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,:host .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#ef4351}:host .mat-chip.mat-standard-chip{background-color:#e0e0e0;color:#000000de}:host .mat-chip.mat-standard-chip .mat-chip-remove{color:#000000de;opacity:.4}:host .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}:host .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}:host .mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}:host .mat-chip.mat-standard-chip:after{background:black}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#4a918e;color:#f1f4f6}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#f1f4f6;opacity:.4}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:#f1f4f61a}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#ef4351;color:#f1f4f6}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#f1f4f6;opacity:.4}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:#f1f4f61a}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#9cd8d7;color:#282d35de}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#282d35de;opacity:.4}:host .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:#282d351a}:host .mat-table{background:white}:host .mat-table thead,:host .mat-table tbody,:host .mat-table tfoot,:host mat-header-row,:host mat-row,:host mat-footer-row,:host [mat-header-row],:host [mat-row],:host [mat-footer-row],:host .mat-table-sticky{background:inherit}:host mat-row,:host mat-header-row,:host mat-footer-row,:host th.mat-header-cell,:host td.mat-cell,:host td.mat-footer-cell{border-bottom-color:#0000001f}:host .mat-header-cell{color:#0000008a}:host .mat-cell,:host .mat-footer-cell{color:#000000de}:host .mat-calendar-arrow{fill:#0000008a}:host .mat-datepicker-toggle,:host .mat-datepicker-content .mat-calendar-next-button,:host .mat-datepicker-content .mat-calendar-previous-button{color:#0000008a}:host .mat-calendar-table-header-divider:after{background:rgba(0,0,0,.12)}:host .mat-calendar-table-header,:host .mat-calendar-body-label{color:#0000008a}:host .mat-calendar-body-cell-content,:host .mat-date-range-input-separator{color:#000000de;border-color:transparent}:host .mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:#00000061}:host .mat-form-field-disabled .mat-date-range-input-separator{color:#00000061}:host .mat-calendar-body-in-preview{color:#0000003d}:host .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#00000061}:host .mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:#0000002e}:host .mat-calendar-body-in-range:before{background:rgba(74,145,142,.2)}:host .mat-calendar-body-comparison-identical,:host .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}:host .mat-calendar-body-comparison-bridge-start:before,:host [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(74,145,142,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-calendar-body-comparison-bridge-end:before,:host [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(74,145,142,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,:host .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}:host .mat-calendar-body-comparison-identical.mat-calendar-body-selected,:host .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}:host .mat-calendar-body-selected{background-color:#4a918e;color:#f1f4f6}:host .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#4a918e66}:host .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #f1f4f6}:host .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),:host .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4a918e4d}@media (hover: hover){:host .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#4a918e4d}}:host .mat-datepicker-content{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f;background-color:#fff;color:#000000de}:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before{background:rgba(156,216,215,.2)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before,:host .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(156,216,215,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before,:host .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(156,216,215,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}:host .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,:host .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}:host .mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#9cd8d7;color:#282d35de}:host .mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#9cd8d766}:host .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #282d35de}:host .mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),:host .mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#9cd8d74d}@media (hover: hover){:host .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#9cd8d74d}}:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before{background:rgba(239,67,81,.2)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before{background:rgba(249,171,0,.2)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before,:host .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before{background:linear-gradient(to right,rgba(239,67,81,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before,:host .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before{background:linear-gradient(to left,rgba(239,67,81,.2) 50%,rgba(249,171,0,.2) 50%)}:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after{background:#a8dab5}:host .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,:host .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}:host .mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#ef4351;color:#f1f4f6}:host .mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:#ef435166}:host .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #f1f4f6}:host .mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),:host .mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ef43514d}@media (hover: hover){:host .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:#ef43514d}}:host .mat-datepicker-content-touch{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}:host .mat-datepicker-toggle-active{color:#4a918e}:host .mat-datepicker-toggle-active.mat-accent{color:#9cd8d7}:host .mat-datepicker-toggle-active.mat-warn{color:#ef4351}:host .mat-date-range-input-inner[disabled]{color:#00000061}:host .mat-dialog-container{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f;background:white;color:#000000de}:host .mat-divider{border-top-color:#0000001f}:host .mat-divider-vertical{border-right-color:#0000001f}:host .mat-expansion-panel{background:white;color:#000000de}:host .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}:host .mat-action-row{border-top-color:#0000001f}:host .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),:host .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),:host .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media (hover: none){:host .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:white}}:host .mat-expansion-panel-header-title{color:#000000de}:host .mat-expansion-panel-header-description,:host .mat-expansion-indicator:after{color:#0000008a}:host .mat-expansion-panel-header[aria-disabled=true]{color:#00000042}:host .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,:host .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header{height:48px}.mat-expansion-panel-header.mat-expanded{height:64px}:host .mat-form-field-label{color:#0009}:host .mat-hint{color:#0009}:host .mat-form-field.mat-focused .mat-form-field-label{color:#4a918e}:host .mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#9cd8d7}:host .mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#ef4351}:host .mat-focused .mat-form-field-required-marker{color:#9cd8d7}:host .mat-form-field-ripple{background-color:#000000de}:host .mat-form-field.mat-focused .mat-form-field-ripple{background-color:#4a918e}:host .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#9cd8d7}:host .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#ef4351}:host .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after{color:#4a918e}:host .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after{color:#9cd8d7}:host .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after{color:#ef4351}:host .mat-form-field.mat-form-field-invalid .mat-form-field-label{color:#ef4351}:host .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,:host .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#ef4351}:host .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,:host .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#ef4351}:host .mat-error{color:#ef4351}:host .mat-form-field-appearance-legacy .mat-form-field-label{color:#0000008a}:host .mat-form-field-appearance-legacy .mat-hint{color:#0000008a}:host .mat-form-field-appearance-legacy .mat-form-field-underline{background-color:#0000006b}:host .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}:host .mat-form-field-appearance-standard .mat-form-field-underline{background-color:#0000006b}:host .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0%,rgba(0,0,0,.42) 33%,transparent 0%);background-size:4px 100%;background-repeat:repeat-x}:host .mat-form-field-appearance-fill .mat-form-field-flex{background-color:#0000000a}:host .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:#00000005}:host .mat-form-field-appearance-fill .mat-form-field-underline:before{background-color:#0000006b}:host .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:#00000061}:host .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before{background-color:transparent}:host .mat-form-field-appearance-outline .mat-form-field-outline{color:#0000001f}:host .mat-form-field-appearance-outline .mat-form-field-outline-thick{color:#000000de}:host .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#4a918e}:host .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#9cd8d7}:host .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick{color:#ef4351}:host .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#ef4351}:host .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:#00000061}:host .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:#0000000f}:host .mat-icon.mat-primary{color:#4a918e}:host .mat-icon.mat-accent{color:#9cd8d7}:host .mat-icon.mat-warn{color:#ef4351}:host .mat-form-field-type-mat-native-select .mat-form-field-infix:after{color:#0000008a}:host .mat-input-element:disabled,:host .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after{color:#00000061}:host .mat-input-element{caret-color:#4a918e}:host .mat-input-element::placeholder{color:#0000006b}:host .mat-input-element::-moz-placeholder{color:#0000006b}:host .mat-input-element::-webkit-input-placeholder{color:#0000006b}:host .mat-input-element:-ms-input-placeholder{color:#0000006b}:host .mat-form-field.mat-accent .mat-input-element{caret-color:#9cd8d7}:host .mat-form-field.mat-warn .mat-input-element,:host .mat-form-field-invalid .mat-input-element{caret-color:#ef4351}:host .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after{color:#ef4351}:host .mat-list-base .mat-list-item{color:#000000de}:host .mat-list-base .mat-list-option{color:#000000de}:host .mat-list-base .mat-subheader{color:#0000008a}:host .mat-list-base .mat-list-item-disabled{background-color:#eee;color:#00000061}:host .mat-list-option:hover,:host .mat-list-option:focus,:host .mat-nav-list .mat-list-item:hover,:host .mat-nav-list .mat-list-item:focus,:host .mat-action-list .mat-list-item:hover,:host .mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}:host .mat-list-single-selected-option,:host .mat-list-single-selected-option:hover,:host .mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}:host .mat-menu-panel{background:white}:host .mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-menu-item{background:transparent;color:#000000de}:host .mat-menu-item[disabled],:host .mat-menu-item[disabled] .mat-menu-submenu-icon,:host .mat-menu-item[disabled] .mat-icon-no-color{color:#00000061}:host .mat-menu-item .mat-icon-no-color,:host .mat-menu-submenu-icon{color:#0000008a}:host .mat-menu-item:hover:not([disabled]),:host .mat-menu-item.cdk-program-focused:not([disabled]),:host .mat-menu-item.cdk-keyboard-focused:not([disabled]),:host .mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}:host .mat-paginator{background:white}:host .mat-paginator,:host .mat-paginator-page-size .mat-select-trigger{color:#0000008a}:host .mat-paginator-decrement,:host .mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}:host .mat-paginator-first,:host .mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}:host .mat-icon-button[disabled] .mat-paginator-decrement,:host .mat-icon-button[disabled] .mat-paginator-increment,:host .mat-icon-button[disabled] .mat-paginator-first,:host .mat-icon-button[disabled] .mat-paginator-last{border-color:#00000061}.mat-paginator-container{min-height:56px}:host .mat-progress-bar-background{fill:#cee0df}:host .mat-progress-bar-buffer{background-color:#cee0df}:host .mat-progress-bar-fill:after{background-color:#4a918e}:host .mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#e3f2f1}:host .mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#e3f2f1}:host .mat-progress-bar.mat-accent .mat-progress-bar-fill:after{background-color:#9cd8d7}:host .mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#f7ccd0}:host .mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#f7ccd0}:host .mat-progress-bar.mat-warn .mat-progress-bar-fill:after{background-color:#ef4351}:host .mat-progress-spinner circle,:host .mat-spinner circle{stroke:#4a918e}:host .mat-progress-spinner.mat-accent circle,:host .mat-spinner.mat-accent circle{stroke:#9cd8d7}:host .mat-progress-spinner.mat-warn circle,:host .mat-spinner.mat-warn circle{stroke:#ef4351}:host .mat-radio-outer-circle{border-color:#0000008a}:host .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#4a918e}:host .mat-radio-button.mat-primary .mat-radio-inner-circle,:host .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),:host .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,:host .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#4a918e}:host .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#9cd8d7}:host .mat-radio-button.mat-accent .mat-radio-inner-circle,:host .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),:host .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,:host .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#9cd8d7}:host .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#ef4351}:host .mat-radio-button.mat-warn .mat-radio-inner-circle,:host .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),:host .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,:host .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#ef4351}:host .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,:host .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:#00000061}:host .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,:host .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:#00000061}:host .mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:#00000061}:host .mat-radio-button .mat-ripple-element{background-color:#000}:host .mat-select-value{color:#000000de}:host .mat-select-placeholder{color:#0000006b}:host .mat-select-disabled .mat-select-value{color:#00000061}:host .mat-select-arrow{color:#0000008a}:host .mat-select-panel{background:white}:host .mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}:host .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}:host .mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#4a918e}:host .mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#9cd8d7}:host .mat-form-field.mat-focused.mat-warn .mat-select-arrow{color:#ef4351}:host .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#ef4351}:host .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:#00000061}:host .mat-drawer-container{background-color:#fafafa;color:#000000de}:host .mat-drawer{background-color:#fff;color:#000000de}:host .mat-drawer.mat-drawer-push{background-color:#fff}:host .mat-drawer:not(.mat-drawer-side){box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}:host .mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}:host .mat-drawer-side.mat-drawer-end{border-left:solid 1px rgba(0,0,0,.12);border-right:none}:host [dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}:host [dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}:host .mat-drawer-backdrop.mat-drawer-shown{background-color:#0009}:host .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#9cd8d7}:host .mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:#9cd8d78a}:host .mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#9cd8d7}:host .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#4a918e}:host .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:#4a918e8a}:host .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#4a918e}:host .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#ef4351}:host .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:#ef43518a}:host .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#ef4351}:host .mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}:host .mat-slide-toggle-thumb{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f;background-color:#fafafa}:host .mat-slide-toggle-bar{background-color:#00000061}:host .mat-slider-track-background{background-color:#00000042}:host .mat-slider.mat-primary .mat-slider-track-fill,:host .mat-slider.mat-primary .mat-slider-thumb,:host .mat-slider.mat-primary .mat-slider-thumb-label{background-color:#4a918e}:host .mat-slider.mat-primary .mat-slider-thumb-label-text{color:#f1f4f6}:host .mat-slider.mat-primary .mat-slider-focus-ring{background-color:#4a918e33}:host .mat-slider.mat-accent .mat-slider-track-fill,:host .mat-slider.mat-accent .mat-slider-thumb,:host .mat-slider.mat-accent .mat-slider-thumb-label{background-color:#9cd8d7}:host .mat-slider.mat-accent .mat-slider-thumb-label-text{color:#282d35de}:host .mat-slider.mat-accent .mat-slider-focus-ring{background-color:#9cd8d733}:host .mat-slider.mat-warn .mat-slider-track-fill,:host .mat-slider.mat-warn .mat-slider-thumb,:host .mat-slider.mat-warn .mat-slider-thumb-label{background-color:#ef4351}:host .mat-slider.mat-warn .mat-slider-thumb-label-text{color:#f1f4f6}:host .mat-slider.mat-warn .mat-slider-focus-ring{background-color:#ef435133}:host .mat-slider:hover .mat-slider-track-background,:host .mat-slider.cdk-focused .mat-slider-track-background{background-color:#00000061}:host .mat-slider.mat-slider-disabled .mat-slider-track-background,:host .mat-slider.mat-slider-disabled .mat-slider-track-fill,:host .mat-slider.mat-slider-disabled .mat-slider-thumb{background-color:#00000042}:host .mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:#00000042}:host .mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:#0000001f}:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:#000000de}:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,:host .mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:#00000042}:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:#00000042;background-color:transparent}:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:#00000061}:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,:host .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:#00000042}:host .mat-slider-has-ticks .mat-slider-wrapper:after{border-color:#000000b3}:host .mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}:host .mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}:host .mat-step-header.cdk-keyboard-focused,:host .mat-step-header.cdk-program-focused,:host .mat-step-header:hover:not([aria-disabled]),:host .mat-step-header:hover[aria-disabled=false]{background-color:#0000000a}:host .mat-step-header:hover[aria-disabled=true]{cursor:default}@media (hover: none){:host .mat-step-header:hover{background:none}}:host .mat-step-header .mat-step-label,:host .mat-step-header .mat-step-optional{color:#0000008a}:host .mat-step-header .mat-step-icon{background-color:#0000008a;color:#f1f4f6}:host .mat-step-header .mat-step-icon-selected,:host .mat-step-header .mat-step-icon-state-done,:host .mat-step-header .mat-step-icon-state-edit{background-color:#4a918e;color:#f1f4f6}:host .mat-step-header.mat-accent .mat-step-icon{color:#282d35de}:host .mat-step-header.mat-accent .mat-step-icon-selected,:host .mat-step-header.mat-accent .mat-step-icon-state-done,:host .mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#9cd8d7;color:#282d35de}:host .mat-step-header.mat-warn .mat-step-icon{color:#f1f4f6}:host .mat-step-header.mat-warn .mat-step-icon-selected,:host .mat-step-header.mat-warn .mat-step-icon-state-done,:host .mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#ef4351;color:#f1f4f6}:host .mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#ef4351}:host .mat-step-header .mat-step-label.mat-step-label-active{color:#000000de}:host .mat-step-header .mat-step-label.mat-step-label-error{color:#ef4351}:host .mat-stepper-horizontal,:host .mat-stepper-vertical{background-color:#fff}:host .mat-stepper-vertical-line:before{border-left-color:#0000001f}:host .mat-horizontal-stepper-header:before,:host .mat-horizontal-stepper-header:after,:host .mat-stepper-horizontal-line{border-top-color:#0000001f}.mat-horizontal-stepper-header{height:72px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,.mat-vertical-stepper-header{padding:24px}.mat-stepper-vertical-line:before{top:-16px;bottom:-16px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:after,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:before{top:36px}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{top:36px}:host .mat-sort-header-arrow{color:#757575}:host .mat-tab-nav-bar,:host .mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}:host .mat-tab-group-inverted-header .mat-tab-nav-bar,:host .mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}:host .mat-tab-label,:host .mat-tab-link{color:#000000de}:host .mat-tab-label.mat-tab-disabled,:host .mat-tab-link.mat-tab-disabled{color:#00000061}:host .mat-tab-header-pagination-chevron{border-color:#000000de}:host .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#00000061}:host .mat-tab-group[class*=mat-background-]>.mat-tab-header,:host .mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}:host .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#c9dedd4d}:host .mat-tab-group.mat-primary .mat-ink-bar,:host .mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#4a918e}:host .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,:host .mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,:host .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,:host .mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#f1f4f6}:host .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e1f3f34d}:host .mat-tab-group.mat-accent .mat-ink-bar,:host .mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#9cd8d7}:host .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,:host .mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,:host .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,:host .mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:#282d35de}:host .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#fac7cb4d}:host .mat-tab-group.mat-warn .mat-ink-bar,:host .mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#ef4351}:host .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,:host .mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,:host .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,:host .mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#f1f4f6}:host .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#c9dedd4d}:host .mat-tab-group.mat-background-primary>.mat-tab-header,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#4a918e}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#f1f4f6}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#f1f4f666}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator:before{border-color:#f1f4f6}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#f1f4f6;opacity:.4}:host .mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,:host .mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#f1f4f6;opacity:.12}:host .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#e1f3f34d}:host .mat-tab-group.mat-background-accent>.mat-tab-header,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#9cd8d7}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:#282d35de}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#282d3566}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator:before{border-color:#282d35de}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#282d35;opacity:.4}:host .mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,:host .mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#282d35;opacity:.12}:host .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),:host .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:#fac7cb4d}:host .mat-tab-group.mat-background-warn>.mat-tab-header,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#ef4351}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#f1f4f6}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:#f1f4f666}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator:before,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator:before{border-color:#f1f4f6}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#f1f4f6;opacity:.4}:host .mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,:host .mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,:host .mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#f1f4f6;opacity:.12}:host .mat-toolbar{background:whitesmoke;color:#000000de}:host .mat-toolbar.mat-primary{background:#4a918e;color:#f1f4f6}:host .mat-toolbar.mat-accent{background:#9cd8d7;color:#282d35de}:host .mat-toolbar.mat-warn{background:#ef4351;color:#f1f4f6}:host .mat-toolbar .mat-form-field-underline,:host .mat-toolbar .mat-form-field-ripple,:host .mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}:host .mat-toolbar .mat-form-field-label,:host .mat-toolbar .mat-focused .mat-form-field-label,:host .mat-toolbar .mat-select-value,:host .mat-toolbar .mat-select-arrow,:host .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}:host .mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media (max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}:host .mat-tooltip{background:rgba(97,97,97,.9)}:host .mat-tree{background:white}:host .mat-tree-node,:host .mat-nested-tree-node{color:#000000de}.mat-tree-node{min-height:48px}:host .mat-snack-bar-container{color:#f1f4f6b3;background:#323232;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}:host .mat-simple-snackbar-action{color:#9cd8d7}:host .primary-50{background-color:#e9f2f1!important;color:#282d35de}:host .primary-100{background-color:#c9dedd!important;color:#282d35de}:host .primary-200{background-color:#a5c8c7!important;color:#282d35de}:host .primary-300{background-color:#80b2b0!important;color:#282d35de}:host .primary-400{background-color:#65a29f!important;color:#282d35de}:host .primary-500{background-color:#4a918e!important;color:#f1f4f6}:host .primary{background-color:#4a918e!important;color:#f1f4f6}:host .primary-600{background-color:#438986!important;color:#f1f4f6}:host .primary-700{background-color:#3a7e7b!important;color:#f1f4f6}:host .primary-800{background-color:#327471!important;color:#f1f4f6}:host .primary-900{background-color:#22625f!important;color:#f1f4f6}:host .primary-A100{background-color:#a4fffb!important;color:#282d35de}:host .primary-A200{background-color:#71fff8!important;color:#282d35de}:host .primary-A400{background-color:#3efff6!important;color:#282d35de}:host .primary-A700{background-color:#25fff4!important;color:#282d35de}:host .primary-contrast-50{color:#282d35de!important}:host .primary-contrast-100{color:#282d35de!important}:host .primary-contrast-200{color:#282d35de!important}:host .primary-contrast-300{color:#282d35de!important}:host .primary-contrast-400{color:#282d35de!important}:host .primary-contrast-500{color:#f1f4f6!important}:host .primary-contrast-600{color:#f1f4f6!important}:host .primary-contrast-700{color:#f1f4f6!important}:host .primary-contrast-800{color:#f1f4f6!important}:host .primary-contrast-900{color:#f1f4f6!important}:host .primary-contrast-A100{color:#282d35de!important}:host .primary-contrast-A200{color:#282d35de!important}:host .primary-contrast-A400{color:#282d35de!important}:host .primary-contrast-A700{color:#282d35de!important}:host .primary-default{background-color:#4a918e!important}:host .primary-lighter{background-color:#c9dedd!important}:host .primary-darker{background-color:#3a7e7b!important}:host .primary-text{background-color:#4a918e!important}:host .primary-default-contrast{background-color:#f1f4f6!important}:host .primary-lighter-contrast{background-color:#282d35de!important}:host .primary-darker-contrast{background-color:#f1f4f6!important}:host .primary-50-contrast{background-color:#282d35de!important}:host .primary-100-contrast{background-color:#282d35de!important}:host .primary-200-contrast{background-color:#282d35de!important}:host .primary-300-contrast{background-color:#282d35de!important}:host .primary-400-contrast{background-color:#282d35de!important}:host .primary-500-contrast{background-color:#f1f4f6!important}:host .primary-600-contrast{background-color:#f1f4f6!important}:host .primary-700-contrast{background-color:#f1f4f6!important}:host .primary-800-contrast{background-color:#f1f4f6!important}:host .primary-900-contrast{background-color:#f1f4f6!important}:host .primary-A100-contrast{background-color:#282d35de!important}:host .primary-A200-contrast{background-color:#282d35de!important}:host .primary-A400-contrast{background-color:#282d35de!important}:host .primary-A700-contrast{background-color:#282d35de!important}:host .primary-contrast-contrast{background-color:!important}:host .accent-50{background-color:#f3fafa!important;color:#282d35de}:host .accent-100{background-color:#e1f3f3!important;color:#282d35de}:host .accent-200{background-color:#ceeceb!important;color:#282d35de}:host .accent-300{background-color:#bae4e3!important;color:#282d35de}:host .accent-400{background-color:#abdedd!important;color:#282d35de}:host .accent-500{background-color:#9cd8d7!important;color:#282d35de}:host .accent{background-color:#9cd8d7!important;color:#282d35de}:host .accent-600{background-color:#94d4d3!important;color:#282d35de}:host .accent-700{background-color:#8acecd!important;color:#f1f4f6}:host .accent-800{background-color:#80c8c7!important;color:#f1f4f6}:host .accent-900{background-color:#6ebfbe!important;color:#f1f4f6}:host .accent-A100{background-color:#fff!important;color:#282d35de}:host .accent-A200{background-color:#fff!important;color:#282d35de}:host .accent-A400{background-color:#d2fffe!important;color:#282d35de}:host .accent-A700{background-color:#b8fffe!important;color:#282d35de}:host .accent-contrast-50{color:#282d35de!important}:host .accent-contrast-100{color:#282d35de!important}:host .accent-contrast-200{color:#282d35de!important}:host .accent-contrast-300{color:#282d35de!important}:host .accent-contrast-400{color:#282d35de!important}:host .accent-contrast-500{color:#282d35de!important}:host .accent-contrast-600{color:#282d35de!important}:host .accent-contrast-700{color:#f1f4f6!important}:host .accent-contrast-800{color:#f1f4f6!important}:host .accent-contrast-900{color:#f1f4f6!important}:host .accent-contrast-A100{color:#282d35de!important}:host .accent-contrast-A200{color:#282d35de!important}:host .accent-contrast-A400{color:#282d35de!important}:host .accent-contrast-A700{color:#282d35de!important}:host .accent-default{background-color:#9cd8d7!important}:host .accent-lighter{background-color:#e1f3f3!important}:host .accent-darker{background-color:#8acecd!important}:host .accent-text{background-color:#9cd8d7!important}:host .accent-default-contrast{background-color:#282d35de!important}:host .accent-lighter-contrast{background-color:#282d35de!important}:host .accent-darker-contrast{background-color:#f1f4f6!important}:host .accent-50-contrast{background-color:#282d35de!important}:host .accent-100-contrast{background-color:#282d35de!important}:host .accent-200-contrast{background-color:#282d35de!important}:host .accent-300-contrast{background-color:#282d35de!important}:host .accent-400-contrast{background-color:#282d35de!important}:host .accent-500-contrast{background-color:#282d35de!important}:host .accent-600-contrast{background-color:#282d35de!important}:host .accent-700-contrast{background-color:#f1f4f6!important}:host .accent-800-contrast{background-color:#f1f4f6!important}:host .accent-900-contrast{background-color:#f1f4f6!important}:host .accent-A100-contrast{background-color:#282d35de!important}:host .accent-A200-contrast{background-color:#282d35de!important}:host .accent-A400-contrast{background-color:#282d35de!important}:host .accent-A700-contrast{background-color:#282d35de!important}:host .accent-contrast-contrast{background-color:!important}:host .warn-50{background-color:#fde8ea!important;color:#282d35de}:host .warn-100{background-color:#fac7cb!important;color:#282d35de}:host .warn-200{background-color:#f7a1a8!important;color:#282d35de}:host .warn-300{background-color:#f47b85!important;color:#282d35de}:host .warn-400{background-color:#f15f6b!important;color:#282d35de}:host .warn-500{background-color:#ef4351!important;color:#f1f4f6}:host .warn{background-color:#ef4351!important;color:#f1f4f6}:host .warn-600{background-color:#ed3d4a!important;color:#f1f4f6}:host .warn-700{background-color:#eb3440!important;color:#f1f4f6}:host .warn-800{background-color:#e82c37!important;color:#f1f4f6}:host .warn-900{background-color:#e41e27!important;color:#f1f4f6}:host .warn-A100{background-color:#fff!important;color:#282d35de}:host .warn-A200{background-color:#ffe6e7!important;color:#282d35de}:host .warn-A400{background-color:#ffb3b6!important;color:#282d35de}:host .warn-A700{background-color:#ff9a9e!important;color:#282d35de}:host .warn-contrast-50{color:#282d35de!important}:host .warn-contrast-100{color:#282d35de!important}:host .warn-contrast-200{color:#282d35de!important}:host .warn-contrast-300{color:#282d35de!important}:host .warn-contrast-400{color:#282d35de!important}:host .warn-contrast-500{color:#f1f4f6!important}:host .warn-contrast-600{color:#f1f4f6!important}:host .warn-contrast-700{color:#f1f4f6!important}:host .warn-contrast-800{color:#f1f4f6!important}:host .warn-contrast-900{color:#f1f4f6!important}:host .warn-contrast-A100{color:#282d35de!important}:host .warn-contrast-A200{color:#282d35de!important}:host .warn-contrast-A400{color:#282d35de!important}:host .warn-contrast-A700{color:#282d35de!important}:host .warn-default{background-color:#ef4351!important}:host .warn-lighter{background-color:#fac7cb!important}:host .warn-darker{background-color:#eb3440!important}:host .warn-text{background-color:#ef4351!important}:host .warn-default-contrast{background-color:#f1f4f6!important}:host .warn-lighter-contrast{background-color:#282d35de!important}:host .warn-darker-contrast{background-color:#f1f4f6!important}:host .warn-50-contrast{background-color:#282d35de!important}:host .warn-100-contrast{background-color:#282d35de!important}:host .warn-200-contrast{background-color:#282d35de!important}:host .warn-300-contrast{background-color:#282d35de!important}:host .warn-400-contrast{background-color:#282d35de!important}:host .warn-500-contrast{background-color:#f1f4f6!important}:host .warn-600-contrast{background-color:#f1f4f6!important}:host .warn-700-contrast{background-color:#f1f4f6!important}:host .warn-800-contrast{background-color:#f1f4f6!important}:host .warn-900-contrast{background-color:#f1f4f6!important}:host .warn-A100-contrast{background-color:#282d35de!important}:host .warn-A200-contrast{background-color:#282d35de!important}:host .warn-A400-contrast{background-color:#282d35de!important}:host .warn-A700-contrast{background-color:#282d35de!important}:host .warn-contrast-contrast{background-color:!important}:host ::-webkit-scrollbar{width:.75rem}:host ::-webkit-scrollbar-track{background:#4a918e}:host ::-webkit-scrollbar-thumb{background:#9cd8d7}:host .primary-logo{height:100%;width:auto;background-image:url('data:image/svg+xml;utf8,<svg id=\"thinky-black\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 75 64.53\"><defs><style>.cls-1{fill:%23000;}<\\/style></defs><title>thinky_logos</title><path class=\"cls-1\" d=\"M205,238.68l.07.6c.4,3.5,1.61,14.14,13.89,14.14a12.8,12.8,0,0,0,10-4.31A12.44,12.44,0,0,0,231.55,239a28.41,28.41,0,0,0-2-6.31,22,22,0,0,1-2-9.17c0-3.37,1-11.23,10.81-11.23s10.82,7.86,10.82,11.23a21.79,21.79,0,0,1-2,9.17,29.69,29.69,0,0,0-2,6.31,12.41,12.41,0,0,0,2.62,10.15,12.8,12.8,0,0,0,10,4.31c12.27,0,13.49-10.63,13.88-14.14l.07-.6c.35-3.1.63-3.1,1.83-3.1v-7.85c-5.66,0-8.9,3.39-9.64,10.08l-.07.58c-.58,5.05-1.54,7.16-6.08,7.16a5.08,5.08,0,0,1-4-1.52,4.62,4.62,0,0,1-.86-3.77,22.5,22.5,0,0,1,1.5-4.68,29.28,29.28,0,0,0,2.61-12.1c0-9.51-5.74-19.1-18.65-19.1s-18.68,9.59-18.68,19.1a29.44,29.44,0,0,0,2.61,12.1,21.92,21.92,0,0,1,1.5,4.68,4.58,4.58,0,0,1-.86,3.77,5.06,5.06,0,0,1-4,1.52c-4.53,0-5.51-2.11-6.09-7.16l-.06-.58c-.74-6.69-4-10.08-9.64-10.08v7.85C204.33,235.58,204.62,235.58,205,238.68Z\" transform=\"translate(-200.96 -204.38)\"/><rect class=\"cls-1\" x=\"32.35\" y=\"23.32\" width=\"3.7\" height=\"6.42\"/><rect class=\"cls-1\" x=\"38.78\" y=\"23.32\" width=\"3.7\" height=\"6.42\"/><path class=\"cls-1\" d=\"M271.4,257.35c-4.55,4.26-10.46,4.91-13.58,4.91a18.82,18.82,0,0,1-14.69-6.48,17.09,17.09,0,0,1-1.86-2.68L240.08,251h-3.42l-1.18,2.09a18.61,18.61,0,0,1-1.87,2.68,18.8,18.8,0,0,1-14.69,6.48c-3.08,0-8.93-.62-13.45-4.78l-4.51,4.9c6.19,5.69,13.91,6.54,18,6.54a25.43,25.43,0,0,0,19.45-8.47,25.41,25.41,0,0,0,19.45,8.47c4.1,0,11.93-.87,18.14-6.72Z\" transform=\"translate(-200.96 -204.38)\"/></svg>');background-position:center;background-repeat:no-repeat;background-size:150px}:host :root{--initial-primary: #4a918e;--initial-accent: #9cd8d7;--initial-warn: #ef4351;--initial-dark-background: #222222;--initial-light-background: #f2f2f2;--initial-light-background: white;--initial-light-text: rgba(0, 0, 0, .87);--initial-dark-text: rgba(255, 255, 255, .87);--background: #050505;--orange-accent: #ff9800;--green-accent: #00e676;--yellow-accent: #fdd835;--purple-accent: #9c27b0;--cyan-accent: rgba(132, 255, 255, .75);--pink-accent: #e91e63;--success: #00e676}:host body{background-color:var(--initial-dark-background)}:host ::ng-deep .mat-tooltip{font-size:16px!important}:host :host .valid-control{color:var(--green-accent)}:host :host .invalid-control{color:var(--theme-warn-500)}:host :host .actions .item:not(:last-child){margin-right:0}:host :host .project-thumbnail img{height:50px;width:auto}:host :host .active{background-color:var(--theme-accent-400);transition:background-color 1s linear}:host :host .inactive{background-color:#f2f5a900;transition:background-color 1s linear}:host :host .expansion-panel{width:100%;margin-bottom:10px}:host :host .expansion-container{max-height:300px;overflow-y:auto}:host :host .divider-fill-vert{background-color:var(--theme-accent-500);min-height:100%;top:10%;bottom:10%;min-width:5px}:host :host .divider-fill-hor{background-color:var(--theme-accent-500);height:5px;width:100%}:host :host .form-disabled{background-color:#797979;opacity:.5;border-radius:4px}:host ::ng-deep input:-webkit-autofill,:host input:-webkit-autofill:hover,:host input:-webkit-autofill:focus,:host input:-webkit-autofill:active{-webkit-transition:background-color 5000s ease-in-out 0s;transition:background-color 5000s ease-in-out 0s;-webkit-text-fill-color:currentColor}@media (max-width: 768px){:host .spread{margin:1em!important}}@media (max-width: 480px){:host .spread{margin:.5em!important}}:host .spinner-logo{display:none!important}:host :host ::ng-deep .social-card{margin:20px;padding:15px 5px}:host :host ::ng-deep .social-card mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}:host :host ::ng-deep .promo-container{cursor:pointer;margin:10px}:host :host ::ng-deep .info-card-btn{width:100%;border-radius:0 0 2px 2px;border-top:1px solid #b9dddd;margin:0!important}:host :host ::ng-deep .main-slot-container{padding:10px}:host :host ::ng-deep .slot-header{align-items:center;cursor:pointer}:host :host ::ng-deep .slot-header:hover{color:var(--initial-primary)}:host :host ::ng-deep .slot-content{width:100%}:host :host ::ng-deep .slot-name{font-size:13px;font-weight:600}:host :host ::ng-deep .slot-header-anchor{font-size:10px;text-decoration:none;color:#000;min-width:100px}:host :host ::ng-deep .slot-header-anchor:hover{color:var(--initial-primary)}:host :host ::ng-deep .slot-description{font-size:12px;margin-right:10px}:host :host ::ng-deep .slot-action-anchor{font-size:10px;text-decoration:none;color:#000}:host :host ::ng-deep .slot-action-anchor:hover{color:var(--initial-primary)}:host :host ::ng-deep .action-icon{height:24px;width:24px;font-size:24px;cursor:pointer}:host .example-header-image{background-size:cover}:host .mat-icon{display:inline-flex;vertical-align:middle}:host .mat-icon.spin{animation:rotate 1s ease-in-out infinite}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(-360deg)}}:host .tab{margin:2em}:host .tab .video iframe{display:block;margin:auto}\n"] }]
131
130
  }], ctorParameters: function () { return [{ type: i1.EaCService }, { type: i2.MatDialog }, { type: i3.DomSanitizer }]; }, propDecorators: { FeedItem: [{
132
131
  type: Input,
133
132
  args: ['feed-item']
134
133
  }] } });
135
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFpbi1mZWVkLWNhcmQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tbW9uL3NyYy9saWIvZWxlbWVudHMvbWFpbi1mZWVkLWNhcmQvbWFpbi1mZWVkLWNhcmQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tbW9uL3NyYy9saWIvZWxlbWVudHMvbWFpbi1mZWVkLWNhcmQvbWFpbi1mZWVkLWNhcmQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFFekQsT0FBTyxNQUFNLE1BQU0sUUFBUSxDQUFDO0FBSTVCLE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxNQUFNLHFFQUFxRSxDQUFDOzs7Ozs7Ozs7OztBQVduSCxNQUFNLE9BQU8scUJBQXFCO0lBa0RoQyxZQUNZLE1BQWtCLEVBQ2xCLE1BQWlCLEVBQ25CLFNBQXVCO1FBRnJCLFdBQU0sR0FBTixNQUFNLENBQVk7UUFDbEIsV0FBTSxHQUFOLE1BQU0sQ0FBVztRQUNuQixjQUFTLEdBQVQsU0FBUyxDQUFjO0lBQzlCLENBQUM7SUFyREosSUFBVyxpQkFBaUI7UUFDMUIsT0FBTyxJQUFJLENBQUMsS0FBSyxFQUFFLEdBQUcsRUFBRSxZQUFZLENBQUMsSUFBSSxDQUFDLHVCQUF1QixDQUFDLENBQUM7SUFDckUsQ0FBQztJQUVELElBQVcsdUJBQXVCO1FBQ2hDLG1EQUFtRDtRQUNuRCxNQUFNLFVBQVUsR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsR0FBRyxFQUFFLFlBQVksSUFBSSxFQUFFLENBQUMsQ0FBQztRQUVwRSxPQUFPLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUN2QixDQUFDO0lBRUQsSUFBVyxXQUFXO1FBQ3BCLHdIQUF3SDtRQUN4SCxPQUFPLElBQUksQ0FBQyxLQUFLLEVBQUUsR0FBRyxFQUFFLFlBQVksQ0FDbEMsSUFBSSxDQUFDLEtBQUssRUFBRSxHQUFHLEVBQUUsVUFBVSxFQUFFLGtCQUFrQixDQUNoRCxDQUFDO0lBQ0osQ0FBQztJQUtELElBQVcsSUFBSTtRQUNiLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsRUFBRTtZQUNuQyxPQUFPLGNBQWMsQ0FBQztTQUN2QjthQUFNLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsRUFBRTtZQUMxQyxPQUFPLFFBQVEsQ0FBQztTQUNqQjthQUFNLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsRUFBRTtZQUMxQyxPQUFPLE1BQU0sQ0FBQztTQUNmO2FBQU07WUFDTCxPQUFPLGNBQWMsQ0FBQztTQUN2QjtJQUNILENBQUM7SUFFRCxJQUFXLFNBQVM7UUFDbEIsSUFBSSxJQUFJLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxFQUFFO1lBQ25DLE9BQU8sT0FBTyxDQUFDO1NBQ2hCO2FBQU0sSUFBSSxJQUFJLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxFQUFFO1lBQzFDLE9BQU8sS0FBSyxDQUFDO1NBQ2Q7YUFBTSxJQUFJLElBQUksQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLElBQUksS0FBSyxDQUFDLEVBQUU7WUFDMUMsT0FBTyxNQUFNLENBQUM7U0FDZjthQUFNO1lBQ0wsT0FBTyxNQUFNLENBQUM7U0FDZjtJQUNILENBQUM7SUFFRCxJQUFXLEtBQUs7UUFDZCxPQUFPLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDO0lBQzNCLENBQUM7SUFRRCxjQUFjO0lBQ1AsUUFBUTtRQUNiLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUN2QixDQUFDO0lBRUQsZUFBZTtJQUNSLGtCQUFrQixDQUFDLFNBQWU7UUFDdkMsT0FBTyxNQUFNLENBQUMsU0FBUyxDQUFDLENBQUMsT0FBTyxFQUFFLENBQUM7SUFDckMsQ0FBQztJQUVNLFlBQVksQ0FBQyxNQUFzQjtRQUN4QyxJQUFJLE1BQU0sQ0FBQyxVQUFVLElBQUksTUFBTSxFQUFFO1lBQy9CLElBQUksTUFBTSxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsTUFBTSxDQUFDLEVBQUU7Z0JBQ3BDLE1BQU0sQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLE1BQU0sRUFBRSxRQUFRLENBQUMsQ0FBQzthQUN0QztpQkFBTTtnQkFDTCxNQUFNLENBQUMsUUFBUSxDQUFDLElBQUksR0FBRyxNQUFNLENBQUMsTUFBTSxDQUFDO2FBQ3RDO1NBQ0Y7YUFBTSxJQUFJLE1BQU0sQ0FBQyxVQUFVLElBQUksT0FBTyxFQUFFO1lBQ3ZDLElBQUksTUFBTSxDQUFDLE1BQU0sSUFBSSxrQkFBa0IsRUFBRTtnQkFDdkMsSUFBSSxDQUFDLHVCQUF1QixDQUFDLElBQUksRUFBRSxJQUFJLENBQUMsQ0FBQzthQUMxQztpQkFBTTtnQkFDTCxLQUFLLENBQUMsZ0JBQWdCLEdBQUcsTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDO2FBQ3pDO1NBQ0Y7SUFDSCxDQUFDO0lBRU0sdUJBQXVCLENBQUMsUUFBZ0IsRUFBRSxNQUFjO1FBQzdELE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLDRCQUE0QixFQUFFO1lBQy9ELEtBQUssRUFBRSxPQUFPO1lBQ2QsSUFBSSxFQUFFO2dCQUNKLFdBQVcsRUFBRSxJQUFJLENBQUMsV0FBVztnQkFDN0IsaUJBQWlCLEVBQUUsSUFBSSxDQUFDLHVCQUF1QjtnQkFDL0MsUUFBUSxFQUFFLFFBQVE7Z0JBQ2xCLE1BQU0sRUFBRSxNQUFNO2FBQ2Y7U0FDRixDQUFDLENBQUM7UUFFSCxTQUFTLENBQUMsV0FBVyxFQUFFLENBQUMsU0FBUyxDQUFDLENBQUMsTUFBTSxFQUFFLEVBQUU7WUFDM0Msd0NBQXdDO1lBQ3hDLGlDQUFpQztRQUNuQyxDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFTSxRQUFRLENBQUMsSUFBWTtRQUMxQixPQUFPLElBQUksQ0FBQyxTQUFTLENBQUMsdUJBQXVCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDdEQsQ0FBQztJQUVELFdBQVc7SUFDRCxhQUFhO1FBQ3JCLElBQUksSUFBSSxDQUFDLFFBQVEsRUFBRSxXQUFXLEVBQUU7WUFDOUIsVUFBVSxDQUFDLEdBQUcsRUFBRTtnQkFDZCxJQUFJLENBQUMsTUFBTSxDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxTQUFTLENBQ3BELEtBQUssRUFBRSxRQUF1QyxFQUFFLEVBQUU7b0JBQ2hELElBQUksUUFBUSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxFQUFFO3dCQUM5QixJQUFJLENBQUMsUUFBUSxHQUFHLFFBQVEsQ0FBQyxLQUFLLENBQUM7d0JBRS9CLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQztxQkFDdEI7eUJBQU07d0JBQ0wsT0FBTyxDQUFDLEdBQUcsQ0FBQyxRQUFRLENBQUMsQ0FBQztxQkFDdkI7Z0JBQ0gsQ0FBQyxFQUNELENBQUMsR0FBRyxFQUFFLEVBQUU7b0JBQ04sT0FBTyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQztnQkFDbkIsQ0FBQyxDQUNGLENBQUM7WUFDSixDQUFDLEVBQUUsSUFBSSxDQUFDLENBQUM7U0FDVjtJQUNILENBQUM7O2tIQTNIVSxxQkFBcUI7c0dBQXJCLHFCQUFxQiwyR0NqQmxDLDArR0EwR0E7MkZEekZhLHFCQUFxQjtrQkFMakMsU0FBUzsrQkFDRSxvQkFBb0I7b0pBd0J2QixRQUFRO3NCQURkLEtBQUs7dUJBQUMsV0FBVyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRmVlZEl0ZW0sIEZlZWRJdGVtQWN0aW9uIH0gZnJvbSAnLi4vLi4vbW9kZWxzL3VzZXItZmVlZC5tb2RlbCc7XG5pbXBvcnQgbW9tZW50IGZyb20gJ21vbWVudCc7XG5pbXBvcnQgeyBKc29uSHViUHJvdG9jb2wgfSBmcm9tICdAYXNwbmV0L3NpZ25hbHInO1xuaW1wb3J0IHsgRWFDU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2VhYy5zZXJ2aWNlJztcbmltcG9ydCB7IEJhc2VNb2RlbGVkUmVzcG9uc2UgfSBmcm9tICdAbGN1L2NvbW1vbic7XG5pbXBvcnQgeyBTb3VyY2VDb250cm9sRGlhbG9nQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vZGlhbG9ncy9zb3VyY2UtY29udHJvbC1kaWFsb2cvc291cmNlLWNvbnRyb2wtZGlhbG9nLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBNYXREaWFsb2cgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xuaW1wb3J0IHsgRWFDRW52aXJvbm1lbnRBc0NvZGUgfSBmcm9tICdAc2VtYW50aWNqcy9jb21tb24nO1xuaW1wb3J0IHsgQXBwbGljYXRpb25zRmxvd1N0YXRlIH0gZnJvbSAnLi4vLi4vc3RhdGUvYXBwbGljYXRpb25zLWZsb3cuc3RhdGUnO1xuaW1wb3J0IHsgRG9tU2FuaXRpemVyLCBTYWZlSHRtbCB9IGZyb20gJ0Bhbmd1bGFyL3BsYXRmb3JtLWJyb3dzZXInO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsY3UtbWFpbi1mZWVkLWNhcmQnLFxuICB0ZW1wbGF0ZVVybDogJy4vbWFpbi1mZWVkLWNhcmQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9tYWluLWZlZWQtY2FyZC5jb21wb25lbnQuc2NzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBNYWluRmVlZENhcmRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICBwdWJsaWMgZ2V0IEFjdGl2ZUVudmlyb25tZW50KCk6IEVhQ0Vudmlyb25tZW50QXNDb2RlIHtcbiAgICByZXR1cm4gdGhpcy5TdGF0ZT8uRWFDPy5FbnZpcm9ubWVudHNbdGhpcy5BY3RpdmVFbnZpcm9ubWVudExvb2t1cF07XG4gIH1cblxuICBwdWJsaWMgZ2V0IEFjdGl2ZUVudmlyb25tZW50TG9va3VwKCk6IHN0cmluZyB7XG4gICAgLy8gIFRPRE86ICBFdmVudHVhbGx5IHN1cHBvcnQgbXVsdGlwbGUgZW52aXJvbm1lbnRzXG4gICAgY29uc3QgZW52TG9va3VwcyA9IE9iamVjdC5rZXlzKHRoaXMuU3RhdGU/LkVhQz8uRW52aXJvbm1lbnRzIHx8IHt9KTtcblxuICAgIHJldHVybiBlbnZMb29rdXBzWzBdO1xuICB9XG5cbiAgcHVibGljIGdldCBFbnZpcm9ubWVudCgpOiBFYUNFbnZpcm9ubWVudEFzQ29kZSB7XG4gICAgLy8gY29uc29sZS5sb2coXCJFbnQgRW52aXJvbm1lbnQgdmFyOiBcIiwgdGhpcy5TdGF0ZT8uRWFDPy5FbnZpcm9ubWVudHNbdGhpcy5TdGF0ZT8uRWFDPy5FbnRlcnByaXNlPy5QcmltYXJ5RW52aXJvbm1lbnRdKTtcbiAgICByZXR1cm4gdGhpcy5TdGF0ZT8uRWFDPy5FbnZpcm9ubWVudHNbXG4gICAgICB0aGlzLlN0YXRlPy5FYUM/LkVudGVycHJpc2U/LlByaW1hcnlFbnZpcm9ubWVudFxuICAgIF07XG4gIH1cblxuICBASW5wdXQoJ2ZlZWQtaXRlbScpXG4gIHB1YmxpYyBGZWVkSXRlbTogRmVlZEl0ZW07XG5cbiAgcHVibGljIGdldCBJY29uKCk6IHN0cmluZyB7XG4gICAgaWYgKHRoaXMuRmVlZEl0ZW0uU3RhdHVzLkNvZGUgPT09IDApIHtcbiAgICAgIHJldHVybiAnY2hlY2tfY2lyY2xlJztcbiAgICB9IGVsc2UgaWYgKHRoaXMuRmVlZEl0ZW0uU3RhdHVzLkNvZGUgPT09IDEpIHtcbiAgICAgIHJldHVybiAnY2FuY2VsJztcbiAgICB9IGVsc2UgaWYgKHRoaXMuRmVlZEl0ZW0uU3RhdHVzLkNvZGUgPT09IDIpIHtcbiAgICAgIHJldHVybiAnc3luYyc7XG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiAnaGVscF9vdXRsaW5lJztcbiAgICB9XG4gIH1cblxuICBwdWJsaWMgZ2V0IEljb25Db2xvcigpOiBzdHJpbmcge1xuICAgIGlmICh0aGlzLkZlZWRJdGVtLlN0YXR1cy5Db2RlID09PSAwKSB7XG4gICAgICByZXR1cm4gJ2dyZWVuJztcbiAgICB9IGVsc2UgaWYgKHRoaXMuRmVlZEl0ZW0uU3RhdHVzLkNvZGUgPT09IDEpIHtcbiAgICAgIHJldHVybiAncmVkJztcbiAgICB9IGVsc2UgaWYgKHRoaXMuRmVlZEl0ZW0uU3RhdHVzLkNvZGUgPT09IDIpIHtcbiAgICAgIHJldHVybiAnYmx1ZSc7XG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiAnZ3JheSc7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIGdldCBTdGF0ZSgpOiBBcHBsaWNhdGlvbnNGbG93U3RhdGUge1xuICAgIHJldHVybiB0aGlzLmVhY1N2Yy5TdGF0ZTtcbiAgfVxuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByb3RlY3RlZCBlYWNTdmM6IEVhQ1NlcnZpY2UsXG4gICAgcHJvdGVjdGVkIGRpYWxvZzogTWF0RGlhbG9nLFxuICAgIHByaXZhdGUgc2FuaXRpemVyOiBEb21TYW5pdGl6ZXJcbiAgKSB7fVxuXG4gIC8vICBMaWZlIEN5Y2xlXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmhhbmRsZVJlZnJlc2goKTtcbiAgfVxuXG4gIC8vICBBUEkgTWV0aG9kc1xuICBwdWJsaWMgQ2FsY3VsYXRlVGltZWxhcHNlKHRpbWVzdGFtcDogRGF0ZSkge1xuICAgIHJldHVybiBtb21lbnQodGltZXN0YW1wKS5mcm9tTm93KCk7XG4gIH1cblxuICBwdWJsaWMgSGFuZGxlQWN0aW9uKGFjdGlvbjogRmVlZEl0ZW1BY3Rpb24pIHtcbiAgICBpZiAoYWN0aW9uLkFjdGlvblR5cGUgPT0gJ0xpbmsnKSB7XG4gICAgICBpZiAoYWN0aW9uLkFjdGlvbi5zdGFydHNXaXRoKCdodHRwJykpIHtcbiAgICAgICAgd2luZG93Lm9wZW4oYWN0aW9uLkFjdGlvbiwgJ19ibGFuaycpO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgd2luZG93LmxvY2F0aW9uLmhyZWYgPSBhY3Rpb24uQWN0aW9uO1xuICAgICAgfVxuICAgIH0gZWxzZSBpZiAoYWN0aW9uLkFjdGlvblR5cGUgPT0gJ01vZGFsJykge1xuICAgICAgaWYgKGFjdGlvbi5BY3Rpb24gPT0gJ0FkZFNvdXJjZUNvbnRyb2wnKSB7XG4gICAgICAgIHRoaXMuT3BlblNvdXJjZUNvbnRyb2xEaWFsb2cobnVsbCwgbnVsbCk7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBhbGVydCgnb3RoZXIgbW9kYWxlZCAnICsgYWN0aW9uLkFjdGlvbik7XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgcHVibGljIE9wZW5Tb3VyY2VDb250cm9sRGlhbG9nKHNjTG9va3VwOiBzdHJpbmcsIHNjTmFtZTogc3RyaW5nKTogdm9pZCB7XG4gICAgY29uc3QgZGlhbG9nUmVmID0gdGhpcy5kaWFsb2cub3BlbihTb3VyY2VDb250cm9sRGlhbG9nQ29tcG9uZW50LCB7XG4gICAgICB3aWR0aDogJzU1MHB4JyxcbiAgICAgIGRhdGE6IHtcbiAgICAgICAgZW52aXJvbm1lbnQ6IHRoaXMuRW52aXJvbm1lbnQsXG4gICAgICAgIGVudmlyb25tZW50TG9va3VwOiB0aGlzLkFjdGl2ZUVudmlyb25tZW50TG9va3VwLFxuICAgICAgICBzY0xvb2t1cDogc2NMb29rdXAsXG4gICAgICAgIHNjTmFtZTogc2NOYW1lLFxuICAgICAgfSxcbiAgICB9KTtcblxuICAgIGRpYWxvZ1JlZi5hZnRlckNsb3NlZCgpLnN1YnNjcmliZSgocmVzdWx0KSA9PiB7XG4gICAgICAvLyBjb25zb2xlLmxvZygnVGhlIGRpYWxvZyB3YXMgY2xvc2VkJyk7XG4gICAgICAvLyBjb25zb2xlLmxvZyhcInJlc3VsdDpcIiwgcmVzdWx0KVxuICAgIH0pO1xuICB9XG5cbiAgcHVibGljIFNhZmVIdG1sKGh0bWw6IHN0cmluZyk6IFNhZmVIdG1sIHtcbiAgICByZXR1cm4gdGhpcy5zYW5pdGl6ZXIuYnlwYXNzU2VjdXJpdHlUcnVzdEh0bWwoaHRtbCk7XG4gIH1cblxuICAvLyAgSGVscGVyc1xuICBwcm90ZWN0ZWQgaGFuZGxlUmVmcmVzaCgpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5GZWVkSXRlbT8uUmVmcmVzaExpbmspIHtcbiAgICAgIHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICB0aGlzLmVhY1N2Yy5DaGVja1VzZXJGZWVkSXRlbSh0aGlzLkZlZWRJdGVtKS5zdWJzY3JpYmUoXG4gICAgICAgICAgYXN5bmMgKHJlc3BvbnNlOiBCYXNlTW9kZWxlZFJlc3BvbnNlPEZlZWRJdGVtPikgPT4ge1xuICAgICAgICAgICAgaWYgKHJlc3BvbnNlLlN0YXR1cy5Db2RlID09PSAwKSB7XG4gICAgICAgICAgICAgIHRoaXMuRmVlZEl0ZW0gPSByZXNwb25zZS5Nb2RlbDtcblxuICAgICAgICAgICAgICB0aGlzLmhhbmRsZVJlZnJlc2goKTtcbiAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgIGNvbnNvbGUubG9nKHJlc3BvbnNlKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICB9LFxuICAgICAgICAgIChlcnIpID0+IHtcbiAgICAgICAgICAgIGNvbnNvbGUubG9nKGVycik7XG4gICAgICAgICAgfVxuICAgICAgICApO1xuICAgICAgfSwgNTAwMCk7XG4gICAgfVxuICB9XG59XG4iLCI8bWF0LWNhcmQgY2xhc3M9XCJzb2NpYWwtY2FyZFwiPlxuICA8bWF0LWNhcmQtaGVhZGVyPlxuICAgIDxpbWdcbiAgICAgIG1hdC1jYXJkLWF2YXRhclxuICAgICAgY2xhc3M9XCJleGFtcGxlLWhlYWRlci1pbWFnZVwiXG4gICAgICBbc3JjXT1cIkZlZWRJdGVtLkF2YXRhclwiXG4gICAgICAqbmdJZj1cIkZlZWRJdGVtLkF2YXRhclwiXG4gICAgLz5cblxuICAgIDxtYXQtY2FyZC10aXRsZSAqbmdJZj1cIkZlZWRJdGVtLlRpdGxlXCI+e3sgRmVlZEl0ZW0uVGl0bGUgfX08L21hdC1jYXJkLXRpdGxlPlxuXG4gICAgPG1hdC1jYXJkLXN1YnRpdGxlPlxuICAgICAgPGRpdiAqbmdJZj1cIkZlZWRJdGVtLlN1YnRpdGxlXCI+e3sgRmVlZEl0ZW0uU3VidGl0bGUgfX08L2Rpdj5cblxuICAgICAgPGRpdiAqbmdJZj1cIkZlZWRJdGVtLlN1YnRleHRcIj57eyBGZWVkSXRlbS5TdWJ0ZXh0IH19PC9kaXY+XG5cbiAgICAgIDxkaXYgKm5nSWY9XCJGZWVkSXRlbS5TdGF0dXNcIj5cbiAgICAgICAgPG1hdC1pY29uXG4gICAgICAgICAgKm5nSWY9XCJJY29uXCJcbiAgICAgICAgICBbc3R5bGUuY29sb3JdPVwiSWNvbkNvbG9yXCJcbiAgICAgICAgICBbY2xhc3Muc3Bpbl09XCJGZWVkSXRlbS5TdGF0dXM/LkNvZGUgPT0gMlwiXG4gICAgICAgID5cbiAgICAgICAgICB7eyBJY29uIH19XG4gICAgICAgIDwvbWF0LWljb24+XG5cbiAgICAgICAgPHNwYW4gKm5nSWY9XCJGZWVkSXRlbS5UaW1lc3RhbXBcIj5cbiAgICAgICAgICB7eyBDYWxjdWxhdGVUaW1lbGFwc2UoRmVlZEl0ZW0uVGltZXN0YW1wKSB9fVxuICAgICAgICA8L3NwYW4+XG4gICAgICA8L2Rpdj5cbiAgICA8L21hdC1jYXJkLXN1YnRpdGxlPlxuICA8L21hdC1jYXJkLWhlYWRlcj5cblxuICA8ZGl2ICpuZ0lmPVwiIUZlZWRJdGVtLklzU2hvcnRGb3JtXCI+XG4gICAgPGRpdiBjbGFzcz1cImZlZWQtY2FyZC1jb250YWluZXJcIj5cbiAgICAgIDxkaXYgY2xhc3M9XCJmZWVkLWNhcmQtbWFpbi1jb250ZW50XCI+XG4gICAgICAgIDxtYXQtdGFiLWdyb3VwPlxuICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IHRhYiBvZiBGZWVkSXRlbS5UYWJzXCI+XG4gICAgICAgICAgICA8bWF0LXRhYiBbbGFiZWxdPVwidGFiLlRpdGxlXCI+XG4gICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0YWJcIj5cbiAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwidGFiLkRhdGE/LkNvbW1pdD8uTWVzc2FnZVwiPlxuICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNvbW1pdC1tZXNzYWdlXCI+XG4gICAgICAgICAgICAgICAgICAgIHt7IHRhYi5EYXRhPy5Db21taXQ/Lk1lc3NhZ2UgfX1cbiAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuXG4gICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInRhYi5EYXRhPy5Db250ZW50XCI+XG4gICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY29udGVudFwiPlxuICAgICAgICAgICAgICAgICAgICB7eyB0YWIuRGF0YT8uQ29udGVudCB9fVxuICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwidGFiLkRhdGE/LlZpZGVvXCI+XG4gICAgICAgICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgICAgIGNsYXNzPVwidmlkZW9cIlxuICAgICAgICAgICAgICAgICAgICBbaW5uZXJIVE1MXT1cIlNhZmVIdG1sKHRhYi5EYXRhLlZpZGVvKVwiXG4gICAgICAgICAgICAgICAgICA+PC9kaXY+XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwidGFiLkRhdGE/LkNvbW1lbnRzXCI+XG4gICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY29tbWVudHNcIj5cbiAgICAgICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInRhYi5EYXRhPy5Db21tZW50cz8ubGVuZ3RoIDw9IDBcIj5cbiAgICAgICAgICAgICAgICAgICAgICA8aDQ+Tm8gY29tbWVudHMgcHJvdmlkZWQ8L2g0PlxuICAgICAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgICAgICAgICAgICAgICAgICA8bWF0LWNhcmQgKm5nRm9yPVwibGV0IGNvbW1lbnQgb2YgdGFiLkRhdGE/LkNvbW1lbnRzXCI+XG4gICAgICAgICAgICAgICAgICAgICAgPG1hdC1jYXJkLWhlYWRlcj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxpbWdcbiAgICAgICAgICAgICAgICAgICAgICAgICAgbWF0LWNhcmQtYXZhdGFyXG4gICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwiZXhhbXBsZS1oZWFkZXItaW1hZ2VcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICBbc3JjXT1cImNvbW1lbnQuQXZhdGFyXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgKm5nSWY9XCJjb21tZW50LkF2YXRhclwiXG4gICAgICAgICAgICAgICAgICAgICAgICAvPlxuXG4gICAgICAgICAgICAgICAgICAgICAgICA8bWF0LWNhcmQtdGl0bGU+XG4gICAgICAgICAgICAgICAgICAgICAgICAgIHt7IGNvbW1lbnQuQXV0aG9yIH19XG4gICAgICAgICAgICAgICAgICAgICAgICAgIGNvbW1lbnRlZCBvblxuICAgICAgICAgICAgICAgICAgICAgICAgICB7eyBjb21tZW50LlVwZGF0ZWRBdCB9fVxuICAgICAgICAgICAgICAgICAgICAgICAgPC9tYXQtY2FyZC10aXRsZT5cbiAgICAgICAgICAgICAgICAgICAgICA8L21hdC1jYXJkLWhlYWRlcj5cblxuICAgICAgICAgICAgICAgICAgICAgIDxtYXQtY2FyZC1jb250ZW50PlxuICAgICAgICAgICAgICAgICAgICAgICAge3sgY29tbWVudC5Db21tZW50IH19XG4gICAgICAgICAgICAgICAgICAgICAgPC9tYXQtY2FyZC1jb250ZW50PlxuICAgICAgICAgICAgICAgICAgICA8L21hdC1jYXJkPlxuICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPC9tYXQtdGFiPlxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICA8L21hdC10YWItZ3JvdXA+XG4gICAgICA8L2Rpdj5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG5cbiAgPG1hdC1jYXJkLWFjdGlvbnMgZnhMYXlvdXQ9XCJyb3dcIiBmeExheW91dEFsaWduPVwic3BhY2UtYXJvdW5kIGNlbnRlclwiPlxuICAgIDxkaXYgZnhGbGV4PjwvZGl2PlxuXG4gICAgPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgYWN0aW9uIG9mIEZlZWRJdGVtLkFjdGlvbnNcIj5cbiAgICAgIDxidXR0b24gbWF0LWJ1dHRvbiBbY29sb3JdPVwiYWN0aW9uLkNvbG9yXCIgKGNsaWNrKT1cIkhhbmRsZUFjdGlvbihhY3Rpb24pXCI+XG4gICAgICAgIDxtYXQtaWNvbiAqbmdJZj1cImFjdGlvbi5JY29uXCI+e3sgYWN0aW9uLkljb24gfX08L21hdC1pY29uPlxuXG4gICAgICAgIHt7IGFjdGlvbi5UZXh0IH19XG4gICAgICA8L2J1dHRvbj5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgPC9tYXQtY2FyZC1hY3Rpb25zPlxuPC9tYXQtY2FyZD5cbiJdfQ==
134
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFpbi1mZWVkLWNhcmQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tbW9uL3NyYy9saWIvZWxlbWVudHMvbWFpbi1mZWVkLWNhcmQvbWFpbi1mZWVkLWNhcmQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tbW9uL3NyYy9saWIvZWxlbWVudHMvbWFpbi1mZWVkLWNhcmQvbWFpbi1mZWVkLWNhcmQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFFekQsT0FBTyxNQUFNLE1BQU0sUUFBUSxDQUFDO0FBSTVCLE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxNQUFNLHFFQUFxRSxDQUFDOzs7Ozs7Ozs7OztBQVduSCxNQUFNLE9BQU8scUJBQXFCO0lBa0RoQyxZQUNZLE1BQWtCLEVBQ2xCLE1BQWlCLEVBQ25CLFNBQXVCO1FBRnJCLFdBQU0sR0FBTixNQUFNLENBQVk7UUFDbEIsV0FBTSxHQUFOLE1BQU0sQ0FBVztRQUNuQixjQUFTLEdBQVQsU0FBUyxDQUFjO0lBQzlCLENBQUM7SUFyREosSUFBVyxpQkFBaUI7UUFDMUIsT0FBTyxJQUFJLENBQUMsS0FBSyxFQUFFLEdBQUcsRUFBRSxZQUFZLENBQUMsSUFBSSxDQUFDLHVCQUF1QixDQUFDLENBQUM7SUFDckUsQ0FBQztJQUVELElBQVcsdUJBQXVCO1FBQ2hDLG1EQUFtRDtRQUNuRCxNQUFNLFVBQVUsR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsR0FBRyxFQUFFLFlBQVksSUFBSSxFQUFFLENBQUMsQ0FBQztRQUVwRSxPQUFPLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUN2QixDQUFDO0lBRUQsSUFBVyxXQUFXO1FBQ3BCLHdIQUF3SDtRQUN4SCxPQUFPLElBQUksQ0FBQyxLQUFLLEVBQUUsR0FBRyxFQUFFLFlBQVksQ0FDbEMsSUFBSSxDQUFDLEtBQUssRUFBRSxHQUFHLEVBQUUsVUFBVSxFQUFFLGtCQUFrQixDQUNoRCxDQUFDO0lBQ0osQ0FBQztJQUtELElBQVcsSUFBSTtRQUNiLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsRUFBRTtZQUNuQyxPQUFPLGNBQWMsQ0FBQztTQUN2QjthQUFNLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsRUFBRTtZQUMxQyxPQUFPLFFBQVEsQ0FBQztTQUNqQjthQUFNLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsRUFBRTtZQUMxQyxPQUFPLE1BQU0sQ0FBQztTQUNmO2FBQU07WUFDTCxPQUFPLGNBQWMsQ0FBQztTQUN2QjtJQUNILENBQUM7SUFFRCxJQUFXLFNBQVM7UUFDbEIsSUFBSSxJQUFJLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxFQUFFO1lBQ25DLE9BQU8sT0FBTyxDQUFDO1NBQ2hCO2FBQU0sSUFBSSxJQUFJLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEtBQUssQ0FBQyxFQUFFO1lBQzFDLE9BQU8sS0FBSyxDQUFDO1NBQ2Q7YUFBTSxJQUFJLElBQUksQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLElBQUksS0FBSyxDQUFDLEVBQUU7WUFDMUMsT0FBTyxNQUFNLENBQUM7U0FDZjthQUFNO1lBQ0wsT0FBTyxNQUFNLENBQUM7U0FDZjtJQUNILENBQUM7SUFFRCxJQUFXLEtBQUs7UUFDZCxPQUFPLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDO0lBQzNCLENBQUM7SUFRRCxjQUFjO0lBQ1AsUUFBUTtRQUNiLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUN2QixDQUFDO0lBRUQsZUFBZTtJQUNSLGtCQUFrQixDQUFDLFNBQWU7UUFDdkMsT0FBTyxNQUFNLENBQUMsU0FBUyxDQUFDLENBQUMsT0FBTyxFQUFFLENBQUM7SUFDckMsQ0FBQztJQUVNLFlBQVksQ0FBQyxNQUFzQjtRQUN4QyxJQUFJLE1BQU0sQ0FBQyxVQUFVLElBQUksTUFBTSxFQUFFO1lBQy9CLElBQUksTUFBTSxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsTUFBTSxDQUFDLEVBQUU7Z0JBQ3BDLE1BQU0sQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLE1BQU0sRUFBRSxRQUFRLENBQUMsQ0FBQzthQUN0QztpQkFBTTtnQkFDTCxNQUFNLENBQUMsUUFBUSxDQUFDLElBQUksR0FBRyxNQUFNLENBQUMsTUFBTSxDQUFDO2FBQ3RDO1NBQ0Y7YUFBTSxJQUFJLE1BQU0sQ0FBQyxVQUFVLElBQUksT0FBTyxFQUFFO1lBQ3ZDLElBQUksTUFBTSxDQUFDLE1BQU0sSUFBSSxrQkFBa0IsRUFBRTtnQkFDdkMsSUFBSSxDQUFDLHVCQUF1QixDQUFDLElBQUksQ0FBQyxDQUFDO2FBQ3BDO2lCQUFNO2dCQUNMLEtBQUssQ0FBQyxnQkFBZ0IsR0FBRyxNQUFNLENBQUMsTUFBTSxDQUFDLENBQUM7YUFDekM7U0FDRjtJQUNILENBQUM7SUFFTSx1QkFBdUIsQ0FBQyxRQUFnQjtRQUM3QyxNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyw0QkFBNEIsRUFBRTtZQUMvRCxLQUFLLEVBQUUsT0FBTztZQUNkLElBQUksRUFBRTtnQkFDSixXQUFXLEVBQUUsSUFBSSxDQUFDLFdBQVc7Z0JBQzdCLGlCQUFpQixFQUFFLElBQUksQ0FBQyx1QkFBdUI7Z0JBQy9DLFFBQVEsRUFBRSxRQUFRO2FBQ25CO1NBQ0YsQ0FBQyxDQUFDO1FBRUgsU0FBUyxDQUFDLFdBQVcsRUFBRSxDQUFDLFNBQVMsQ0FBQyxDQUFDLE1BQU0sRUFBRSxFQUFFO1lBQzNDLHdDQUF3QztZQUN4QyxpQ0FBaUM7UUFDbkMsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRU0sUUFBUSxDQUFDLElBQVk7UUFDMUIsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLHVCQUF1QixDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3RELENBQUM7SUFFRCxXQUFXO0lBQ0QsYUFBYTtRQUNyQixJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUUsV0FBVyxFQUFFO1lBQzlCLFVBQVUsQ0FBQyxHQUFHLEVBQUU7Z0JBQ2QsSUFBSSxDQUFDLE1BQU0sQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsU0FBUyxDQUNwRCxLQUFLLEVBQUUsUUFBdUMsRUFBRSxFQUFFO29CQUNoRCxJQUFJLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsRUFBRTt3QkFDOUIsSUFBSSxDQUFDLFFBQVEsR0FBRyxRQUFRLENBQUMsS0FBSyxDQUFDO3dCQUUvQixJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7cUJBQ3RCO3lCQUFNO3dCQUNMLE9BQU8sQ0FBQyxHQUFHLENBQUMsUUFBUSxDQUFDLENBQUM7cUJBQ3ZCO2dCQUNILENBQUMsRUFDRCxDQUFDLEdBQUcsRUFBRSxFQUFFO29CQUNOLE9BQU8sQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUM7Z0JBQ25CLENBQUMsQ0FDRixDQUFDO1lBQ0osQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO1NBQ1Y7SUFDSCxDQUFDOztrSEExSFUscUJBQXFCO3NHQUFyQixxQkFBcUIsMkdDakJsQywwK0dBMEdBOzJGRHpGYSxxQkFBcUI7a0JBTGpDLFNBQVM7K0JBQ0Usb0JBQW9CO29KQXdCdkIsUUFBUTtzQkFEZCxLQUFLO3VCQUFDLFdBQVciLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZlZWRJdGVtLCBGZWVkSXRlbUFjdGlvbiB9IGZyb20gJy4uLy4uL21vZGVscy91c2VyLWZlZWQubW9kZWwnO1xuaW1wb3J0IG1vbWVudCBmcm9tICdtb21lbnQnO1xuaW1wb3J0IHsgSnNvbkh1YlByb3RvY29sIH0gZnJvbSAnQGFzcG5ldC9zaWduYWxyJztcbmltcG9ydCB7IEVhQ1NlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9lYWMuc2VydmljZSc7XG5pbXBvcnQgeyBCYXNlTW9kZWxlZFJlc3BvbnNlIH0gZnJvbSAnQGxjdS9jb21tb24nO1xuaW1wb3J0IHsgU291cmNlQ29udHJvbERpYWxvZ0NvbXBvbmVudCB9IGZyb20gJy4uLy4uL2RpYWxvZ3Mvc291cmNlLWNvbnRyb2wtZGlhbG9nL3NvdXJjZS1jb250cm9sLWRpYWxvZy5jb21wb25lbnQnO1xuaW1wb3J0IHsgTWF0RGlhbG9nIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nJztcbmltcG9ydCB7IEVhQ0Vudmlyb25tZW50QXNDb2RlIH0gZnJvbSAnQHNlbWFudGljanMvY29tbW9uJztcbmltcG9ydCB7IEFwcGxpY2F0aW9uc0Zsb3dTdGF0ZSB9IGZyb20gJy4uLy4uL3N0YXRlL2FwcGxpY2F0aW9ucy1mbG93LnN0YXRlJztcbmltcG9ydCB7IERvbVNhbml0aXplciwgU2FmZUh0bWwgfSBmcm9tICdAYW5ndWxhci9wbGF0Zm9ybS1icm93c2VyJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGN1LW1haW4tZmVlZC1jYXJkJyxcbiAgdGVtcGxhdGVVcmw6ICcuL21haW4tZmVlZC1jYXJkLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vbWFpbi1mZWVkLWNhcmQuY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgTWFpbkZlZWRDYXJkQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcbiAgcHVibGljIGdldCBBY3RpdmVFbnZpcm9ubWVudCgpOiBFYUNFbnZpcm9ubWVudEFzQ29kZSB7XG4gICAgcmV0dXJuIHRoaXMuU3RhdGU/LkVhQz8uRW52aXJvbm1lbnRzW3RoaXMuQWN0aXZlRW52aXJvbm1lbnRMb29rdXBdO1xuICB9XG5cbiAgcHVibGljIGdldCBBY3RpdmVFbnZpcm9ubWVudExvb2t1cCgpOiBzdHJpbmcge1xuICAgIC8vICBUT0RPOiAgRXZlbnR1YWxseSBzdXBwb3J0IG11bHRpcGxlIGVudmlyb25tZW50c1xuICAgIGNvbnN0IGVudkxvb2t1cHMgPSBPYmplY3Qua2V5cyh0aGlzLlN0YXRlPy5FYUM/LkVudmlyb25tZW50cyB8fCB7fSk7XG5cbiAgICByZXR1cm4gZW52TG9va3Vwc1swXTtcbiAgfVxuXG4gIHB1YmxpYyBnZXQgRW52aXJvbm1lbnQoKTogRWFDRW52aXJvbm1lbnRBc0NvZGUge1xuICAgIC8vIGNvbnNvbGUubG9nKFwiRW50IEVudmlyb25tZW50IHZhcjogXCIsIHRoaXMuU3RhdGU/LkVhQz8uRW52aXJvbm1lbnRzW3RoaXMuU3RhdGU/LkVhQz8uRW50ZXJwcmlzZT8uUHJpbWFyeUVudmlyb25tZW50XSk7XG4gICAgcmV0dXJuIHRoaXMuU3RhdGU/LkVhQz8uRW52aXJvbm1lbnRzW1xuICAgICAgdGhpcy5TdGF0ZT8uRWFDPy5FbnRlcnByaXNlPy5QcmltYXJ5RW52aXJvbm1lbnRcbiAgICBdO1xuICB9XG5cbiAgQElucHV0KCdmZWVkLWl0ZW0nKVxuICBwdWJsaWMgRmVlZEl0ZW06IEZlZWRJdGVtO1xuXG4gIHB1YmxpYyBnZXQgSWNvbigpOiBzdHJpbmcge1xuICAgIGlmICh0aGlzLkZlZWRJdGVtLlN0YXR1cy5Db2RlID09PSAwKSB7XG4gICAgICByZXR1cm4gJ2NoZWNrX2NpcmNsZSc7XG4gICAgfSBlbHNlIGlmICh0aGlzLkZlZWRJdGVtLlN0YXR1cy5Db2RlID09PSAxKSB7XG4gICAgICByZXR1cm4gJ2NhbmNlbCc7XG4gICAgfSBlbHNlIGlmICh0aGlzLkZlZWRJdGVtLlN0YXR1cy5Db2RlID09PSAyKSB7XG4gICAgICByZXR1cm4gJ3N5bmMnO1xuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4gJ2hlbHBfb3V0bGluZSc7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIGdldCBJY29uQ29sb3IoKTogc3RyaW5nIHtcbiAgICBpZiAodGhpcy5GZWVkSXRlbS5TdGF0dXMuQ29kZSA9PT0gMCkge1xuICAgICAgcmV0dXJuICdncmVlbic7XG4gICAgfSBlbHNlIGlmICh0aGlzLkZlZWRJdGVtLlN0YXR1cy5Db2RlID09PSAxKSB7XG4gICAgICByZXR1cm4gJ3JlZCc7XG4gICAgfSBlbHNlIGlmICh0aGlzLkZlZWRJdGVtLlN0YXR1cy5Db2RlID09PSAyKSB7XG4gICAgICByZXR1cm4gJ2JsdWUnO1xuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4gJ2dyYXknO1xuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBnZXQgU3RhdGUoKTogQXBwbGljYXRpb25zRmxvd1N0YXRlIHtcbiAgICByZXR1cm4gdGhpcy5lYWNTdmMuU3RhdGU7XG4gIH1cblxuICBjb25zdHJ1Y3RvcihcbiAgICBwcm90ZWN0ZWQgZWFjU3ZjOiBFYUNTZXJ2aWNlLFxuICAgIHByb3RlY3RlZCBkaWFsb2c6IE1hdERpYWxvZyxcbiAgICBwcml2YXRlIHNhbml0aXplcjogRG9tU2FuaXRpemVyXG4gICkge31cblxuICAvLyAgTGlmZSBDeWNsZVxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5oYW5kbGVSZWZyZXNoKCk7XG4gIH1cblxuICAvLyAgQVBJIE1ldGhvZHNcbiAgcHVibGljIENhbGN1bGF0ZVRpbWVsYXBzZSh0aW1lc3RhbXA6IERhdGUpIHtcbiAgICByZXR1cm4gbW9tZW50KHRpbWVzdGFtcCkuZnJvbU5vdygpO1xuICB9XG5cbiAgcHVibGljIEhhbmRsZUFjdGlvbihhY3Rpb246IEZlZWRJdGVtQWN0aW9uKSB7XG4gICAgaWYgKGFjdGlvbi5BY3Rpb25UeXBlID09ICdMaW5rJykge1xuICAgICAgaWYgKGFjdGlvbi5BY3Rpb24uc3RhcnRzV2l0aCgnaHR0cCcpKSB7XG4gICAgICAgIHdpbmRvdy5vcGVuKGFjdGlvbi5BY3Rpb24sICdfYmxhbmsnKTtcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIHdpbmRvdy5sb2NhdGlvbi5ocmVmID0gYWN0aW9uLkFjdGlvbjtcbiAgICAgIH1cbiAgICB9IGVsc2UgaWYgKGFjdGlvbi5BY3Rpb25UeXBlID09ICdNb2RhbCcpIHtcbiAgICAgIGlmIChhY3Rpb24uQWN0aW9uID09ICdBZGRTb3VyY2VDb250cm9sJykge1xuICAgICAgICB0aGlzLk9wZW5Tb3VyY2VDb250cm9sRGlhbG9nKG51bGwpO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgYWxlcnQoJ290aGVyIG1vZGFsZWQgJyArIGFjdGlvbi5BY3Rpb24pO1xuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBPcGVuU291cmNlQ29udHJvbERpYWxvZyhzY0xvb2t1cDogc3RyaW5nKTogdm9pZCB7XG4gICAgY29uc3QgZGlhbG9nUmVmID0gdGhpcy5kaWFsb2cub3BlbihTb3VyY2VDb250cm9sRGlhbG9nQ29tcG9uZW50LCB7XG4gICAgICB3aWR0aDogJzU1MHB4JyxcbiAgICAgIGRhdGE6IHtcbiAgICAgICAgZW52aXJvbm1lbnQ6IHRoaXMuRW52aXJvbm1lbnQsXG4gICAgICAgIGVudmlyb25tZW50TG9va3VwOiB0aGlzLkFjdGl2ZUVudmlyb25tZW50TG9va3VwLFxuICAgICAgICBzY0xvb2t1cDogc2NMb29rdXAsXG4gICAgICB9LFxuICAgIH0pO1xuXG4gICAgZGlhbG9nUmVmLmFmdGVyQ2xvc2VkKCkuc3Vic2NyaWJlKChyZXN1bHQpID0+IHtcbiAgICAgIC8vIGNvbnNvbGUubG9nKCdUaGUgZGlhbG9nIHdhcyBjbG9zZWQnKTtcbiAgICAgIC8vIGNvbnNvbGUubG9nKFwicmVzdWx0OlwiLCByZXN1bHQpXG4gICAgfSk7XG4gIH1cblxuICBwdWJsaWMgU2FmZUh0bWwoaHRtbDogc3RyaW5nKTogU2FmZUh0bWwge1xuICAgIHJldHVybiB0aGlzLnNhbml0aXplci5ieXBhc3NTZWN1cml0eVRydXN0SHRtbChodG1sKTtcbiAgfVxuXG4gIC8vICBIZWxwZXJzXG4gIHByb3RlY3RlZCBoYW5kbGVSZWZyZXNoKCk6IHZvaWQge1xuICAgIGlmICh0aGlzLkZlZWRJdGVtPy5SZWZyZXNoTGluaykge1xuICAgICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgIHRoaXMuZWFjU3ZjLkNoZWNrVXNlckZlZWRJdGVtKHRoaXMuRmVlZEl0ZW0pLnN1YnNjcmliZShcbiAgICAgICAgICBhc3luYyAocmVzcG9uc2U6IEJhc2VNb2RlbGVkUmVzcG9uc2U8RmVlZEl0ZW0+KSA9PiB7XG4gICAgICAgICAgICBpZiAocmVzcG9uc2UuU3RhdHVzLkNvZGUgPT09IDApIHtcbiAgICAgICAgICAgICAgdGhpcy5GZWVkSXRlbSA9IHJlc3BvbnNlLk1vZGVsO1xuXG4gICAgICAgICAgICAgIHRoaXMuaGFuZGxlUmVmcmVzaCgpO1xuICAgICAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgICAgY29uc29sZS5sb2cocmVzcG9uc2UpO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH0sXG4gICAgICAgICAgKGVycikgPT4ge1xuICAgICAgICAgICAgY29uc29sZS5sb2coZXJyKTtcbiAgICAgICAgICB9XG4gICAgICAgICk7XG4gICAgICB9LCA1MDAwKTtcbiAgICB9XG4gIH1cbn1cbiIsIjxtYXQtY2FyZCBjbGFzcz1cInNvY2lhbC1jYXJkXCI+XG4gIDxtYXQtY2FyZC1oZWFkZXI+XG4gICAgPGltZ1xuICAgICAgbWF0LWNhcmQtYXZhdGFyXG4gICAgICBjbGFzcz1cImV4YW1wbGUtaGVhZGVyLWltYWdlXCJcbiAgICAgIFtzcmNdPVwiRmVlZEl0ZW0uQXZhdGFyXCJcbiAgICAgICpuZ0lmPVwiRmVlZEl0ZW0uQXZhdGFyXCJcbiAgICAvPlxuXG4gICAgPG1hdC1jYXJkLXRpdGxlICpuZ0lmPVwiRmVlZEl0ZW0uVGl0bGVcIj57eyBGZWVkSXRlbS5UaXRsZSB9fTwvbWF0LWNhcmQtdGl0bGU+XG5cbiAgICA8bWF0LWNhcmQtc3VidGl0bGU+XG4gICAgICA8ZGl2ICpuZ0lmPVwiRmVlZEl0ZW0uU3VidGl0bGVcIj57eyBGZWVkSXRlbS5TdWJ0aXRsZSB9fTwvZGl2PlxuXG4gICAgICA8ZGl2ICpuZ0lmPVwiRmVlZEl0ZW0uU3VidGV4dFwiPnt7IEZlZWRJdGVtLlN1YnRleHQgfX08L2Rpdj5cblxuICAgICAgPGRpdiAqbmdJZj1cIkZlZWRJdGVtLlN0YXR1c1wiPlxuICAgICAgICA8bWF0LWljb25cbiAgICAgICAgICAqbmdJZj1cIkljb25cIlxuICAgICAgICAgIFtzdHlsZS5jb2xvcl09XCJJY29uQ29sb3JcIlxuICAgICAgICAgIFtjbGFzcy5zcGluXT1cIkZlZWRJdGVtLlN0YXR1cz8uQ29kZSA9PSAyXCJcbiAgICAgICAgPlxuICAgICAgICAgIHt7IEljb24gfX1cbiAgICAgICAgPC9tYXQtaWNvbj5cblxuICAgICAgICA8c3BhbiAqbmdJZj1cIkZlZWRJdGVtLlRpbWVzdGFtcFwiPlxuICAgICAgICAgIHt7IENhbGN1bGF0ZVRpbWVsYXBzZShGZWVkSXRlbS5UaW1lc3RhbXApIH19XG4gICAgICAgIDwvc3Bhbj5cbiAgICAgIDwvZGl2PlxuICAgIDwvbWF0LWNhcmQtc3VidGl0bGU+XG4gIDwvbWF0LWNhcmQtaGVhZGVyPlxuXG4gIDxkaXYgKm5nSWY9XCIhRmVlZEl0ZW0uSXNTaG9ydEZvcm1cIj5cbiAgICA8ZGl2IGNsYXNzPVwiZmVlZC1jYXJkLWNvbnRhaW5lclwiPlxuICAgICAgPGRpdiBjbGFzcz1cImZlZWQtY2FyZC1tYWluLWNvbnRlbnRcIj5cbiAgICAgICAgPG1hdC10YWItZ3JvdXA+XG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgdGFiIG9mIEZlZWRJdGVtLlRhYnNcIj5cbiAgICAgICAgICAgIDxtYXQtdGFiIFtsYWJlbF09XCJ0YWIuVGl0bGVcIj5cbiAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInRhYlwiPlxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJ0YWIuRGF0YT8uQ29tbWl0Py5NZXNzYWdlXCI+XG4gICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY29tbWl0LW1lc3NhZ2VcIj5cbiAgICAgICAgICAgICAgICAgICAge3sgdGFiLkRhdGE/LkNvbW1pdD8uTWVzc2FnZSB9fVxuICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwidGFiLkRhdGE/LkNvbnRlbnRcIj5cbiAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb250ZW50XCI+XG4gICAgICAgICAgICAgICAgICAgIHt7IHRhYi5EYXRhPy5Db250ZW50IH19XG4gICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJ0YWIuRGF0YT8uVmlkZW9cIj5cbiAgICAgICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJ2aWRlb1wiXG4gICAgICAgICAgICAgICAgICAgIFtpbm5lckhUTUxdPVwiU2FmZUh0bWwodGFiLkRhdGEuVmlkZW8pXCJcbiAgICAgICAgICAgICAgICAgID48L2Rpdj5cbiAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJ0YWIuRGF0YT8uQ29tbWVudHNcIj5cbiAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb21tZW50c1wiPlxuICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwidGFiLkRhdGE/LkNvbW1lbnRzPy5sZW5ndGggPD0gMFwiPlxuICAgICAgICAgICAgICAgICAgICAgIDxoND5ObyBjb21tZW50cyBwcm92aWRlZDwvaDQ+XG4gICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuXG4gICAgICAgICAgICAgICAgICAgIDxtYXQtY2FyZCAqbmdGb3I9XCJsZXQgY29tbWVudCBvZiB0YWIuRGF0YT8uQ29tbWVudHNcIj5cbiAgICAgICAgICAgICAgICAgICAgICA8bWF0LWNhcmQtaGVhZGVyPlxuICAgICAgICAgICAgICAgICAgICAgICAgPGltZ1xuICAgICAgICAgICAgICAgICAgICAgICAgICBtYXQtY2FyZC1hdmF0YXJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJleGFtcGxlLWhlYWRlci1pbWFnZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgIFtzcmNdPVwiY29tbWVudC5BdmF0YXJcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAqbmdJZj1cImNvbW1lbnQuQXZhdGFyXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIC8+XG5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxtYXQtY2FyZC10aXRsZT5cbiAgICAgICAgICAgICAgICAgICAgICAgICAge3sgY29tbWVudC5BdXRob3IgfX1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgY29tbWVudGVkIG9uXG4gICAgICAgICAgICAgICAgICAgICAgICAgIHt7IGNvbW1lbnQuVXBkYXRlZEF0IH19XG4gICAgICAgICAgICAgICAgICAgICAgICA8L21hdC1jYXJkLXRpdGxlPlxuICAgICAgICAgICAgICAgICAgICAgIDwvbWF0LWNhcmQtaGVhZGVyPlxuXG4gICAgICAgICAgICAgICAgICAgICAgPG1hdC1jYXJkLWNvbnRlbnQ+XG4gICAgICAgICAgICAgICAgICAgICAgICB7eyBjb21tZW50LkNvbW1lbnQgfX1cbiAgICAgICAgICAgICAgICAgICAgICA8L21hdC1jYXJkLWNvbnRlbnQ+XG4gICAgICAgICAgICAgICAgICAgIDwvbWF0LWNhcmQ+XG4gICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8L21hdC10YWI+XG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgIDwvbWF0LXRhYi1ncm91cD5cbiAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuICA8L2Rpdj5cblxuICA8bWF0LWNhcmQtYWN0aW9ucyBmeExheW91dD1cInJvd1wiIGZ4TGF5b3V0QWxpZ249XCJzcGFjZS1hcm91bmQgY2VudGVyXCI+XG4gICAgPGRpdiBmeEZsZXg+PC9kaXY+XG5cbiAgICA8bmctY29udGFpbmVyICpuZ0Zvcj1cImxldCBhY3Rpb24gb2YgRmVlZEl0ZW0uQWN0aW9uc1wiPlxuICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uIFtjb2xvcl09XCJhY3Rpb24uQ29sb3JcIiAoY2xpY2spPVwiSGFuZGxlQWN0aW9uKGFjdGlvbilcIj5cbiAgICAgICAgPG1hdC1pY29uICpuZ0lmPVwiYWN0aW9uLkljb25cIj57eyBhY3Rpb24uSWNvbiB9fTwvbWF0LWljb24+XG5cbiAgICAgICAge3sgYWN0aW9uLlRleHQgfX1cbiAgICAgIDwvYnV0dG9uPlxuICAgIDwvbmctY29udGFpbmVyPlxuICA8L21hdC1jYXJkLWFjdGlvbnM+XG48L21hdC1jYXJkPlxuIl19