info-library 2.14.52 → 2.14.53-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,20 +1,21 @@
1
1
  import * as i0 from '@angular/core';
2
- import { InjectionToken, Injectable, Inject, Pipe, Component, Input, EventEmitter, forwardRef, Output, ViewChild, Renderer2, ElementRef, Directive, HostListener, ContentChildren, HostBinding, SecurityContext, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
2
+ import { InjectionToken, SecurityContext, Directive, Inject, Input, Injectable, Pipe, Component, EventEmitter, forwardRef, Output, ViewChild, Renderer2, ElementRef, HostListener, ContentChildren, HostBinding, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
3
+ import DOMPurify from 'dompurify';
4
+ import * as i1 from '@angular/platform-browser';
3
5
  import { conformToMask, createTextMaskInputElement } from 'text-mask-core/dist/textMaskCore';
4
6
  import { __awaiter } from 'tslib';
5
7
  import { of, Observable } from 'rxjs';
6
8
  import { map, catchError, switchMap, debounceTime, distinctUntilChanged } from 'rxjs/operators';
7
- import * as i1$1 from '@angular/router';
9
+ import * as i1$2 from '@angular/router';
8
10
  import { NavigationStart, GuardsCheckStart, NavigationEnd, RouterModule } from '@angular/router';
9
- import * as i1 from '@angular/common/http';
11
+ import * as i1$1 from '@angular/common/http';
10
12
  import { HttpHeaders, HttpClientModule } from '@angular/common/http';
11
13
  import * as CryptoJS from 'crypto-js';
12
- import * as i1$3 from '@angular/material/dialog';
14
+ import * as i1$4 from '@angular/material/dialog';
13
15
  import { MAT_DIALOG_DATA, MatDialogModule } from '@angular/material/dialog';
14
- import * as i9 from '@angular/platform-browser';
15
16
  import * as i2 from '@angular/forms';
16
17
  import { NG_VALUE_ACCESSOR, UntypedFormControl, FormControl, NgControl, NgModel, NgForm, FormsModule, ReactiveFormsModule } from '@angular/forms';
17
- import * as i1$2 from '@angular/common';
18
+ import * as i1$3 from '@angular/common';
18
19
  import { CommonModule } from '@angular/common';
19
20
  import * as i4 from '@angular/material/icon';
20
21
  import { MatIconModule } from '@angular/material/icon';
@@ -22,14 +23,14 @@ import * as i13 from '@angular/material/button';
22
23
  import { MatButtonModule } from '@angular/material/button';
23
24
  import * as i7 from '@angular/material/progress-bar';
24
25
  import { MatProgressBarModule } from '@angular/material/progress-bar';
25
- import * as i1$4 from '@angular/cdk/overlay';
26
+ import * as i1$5 from '@angular/cdk/overlay';
26
27
  import * as i4$1 from '@angular/material/form-field';
27
28
  import { MatFormFieldModule } from '@angular/material/form-field';
28
29
  import * as i6 from '@angular/material/input';
29
30
  import { MatInputModule } from '@angular/material/input';
30
31
  import * as i6$1 from '@angular/material/core';
31
32
  import { MAT_DATE_LOCALE, DateAdapter, MAT_DATE_FORMATS } from '@angular/material/core';
32
- import * as i9$1 from '@angular/material/autocomplete';
33
+ import * as i9 from '@angular/material/autocomplete';
33
34
  import { MatAutocompleteModule } from '@angular/material/autocomplete';
34
35
  import * as i7$1 from '@angular/material/list';
35
36
  import { MatListModule } from '@angular/material/list';
@@ -56,7 +57,56 @@ import { MatChipsModule } from '@angular/material/chips';
56
57
  import { MatRadioModule } from '@angular/material/radio';
57
58
 
58
59
  const DICTIONARIES_CONFIG = new InjectionToken('DICTIONARIES_CONFIG');
59
- const APICONTROLLER_CONFIG = new InjectionToken('APICONTROLLER_CONFIG');
60
+ const APICONTROLLER_CONFIG = new InjectionToken('APICONTROLLER_CONFIG');
61
+ const HTML_SANITIZER_CONFIG = new InjectionToken('HTML_SANITIZER_CONFIG');
62
+
63
+ class HtmlSanitizerConfig {
64
+ constructor() {
65
+ //allowedTags: string[] = ['small', 'b', 'strong', 'i', 'em', 'u', 'br', 'p', 'span', 'ul', 'ol', 'li'];
66
+ //allowedAttributes: string[] = [ 'class' ];
67
+ this.forbiddenTags = ['img', 'iframe', 'script', 'svg', 'object', 'embed', 'video', 'audio', 'source', 'style'];
68
+ this.forbiddenAttributes = ['style', 'src', 'srcset', 'onerror', 'onclick', 'onload'];
69
+ }
70
+ }
71
+
72
+ class InfoSafeHtmlDirective {
73
+ constructor(elementRef, sanitizer, config) {
74
+ var _a, _b, _c, _d;
75
+ this.elementRef = elementRef;
76
+ this.sanitizer = sanitizer;
77
+ this.config = config;
78
+ this.safeHtml = '';
79
+ this.defaultConfig = new HtmlSanitizerConfig();
80
+ this.domPurifyConfig = {
81
+ FORBID_TAGS: (_b = (_a = this.config) === null || _a === void 0 ? void 0 : _a.forbiddenTags) !== null && _b !== void 0 ? _b : this.defaultConfig.forbiddenTags,
82
+ FORBID_ATTR: (_d = (_c = this.config) === null || _c === void 0 ? void 0 : _c.forbiddenAttributes) !== null && _d !== void 0 ? _d : this.defaultConfig.forbiddenAttributes
83
+ };
84
+ }
85
+ ngOnChanges() {
86
+ if (!this.safeHtml)
87
+ return;
88
+ const sanitized = DOMPurify.sanitize(this.safeHtml, this.domPurifyConfig);
89
+ const finalHtml = this.sanitizer.sanitize(SecurityContext.HTML, sanitized) || '';
90
+ this.elementRef.nativeElement.innerHTML = finalHtml;
91
+ }
92
+ }
93
+ /** @nocollapse */ InfoSafeHtmlDirective.ɵfac = function InfoSafeHtmlDirective_Factory(t) { return new (t || InfoSafeHtmlDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i1.DomSanitizer), i0.ɵɵdirectiveInject(HTML_SANITIZER_CONFIG)); };
94
+ /** @nocollapse */ InfoSafeHtmlDirective.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: InfoSafeHtmlDirective, selectors: [["", "safeHtml", ""]], inputs: { safeHtml: "safeHtml" }, features: [i0.ɵɵNgOnChangesFeature] });
95
+ (function () {
96
+ (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoSafeHtmlDirective, [{
97
+ type: Directive,
98
+ args: [{
99
+ selector: '[safeHtml]'
100
+ }]
101
+ }], function () {
102
+ return [{ type: i0.ElementRef }, { type: i1.DomSanitizer }, { type: HtmlSanitizerConfig, decorators: [{
103
+ type: Inject,
104
+ args: [HTML_SANITIZER_CONFIG]
105
+ }] }];
106
+ }, { safeHtml: [{
107
+ type: Input
108
+ }] });
109
+ })();
60
110
 
61
111
  class InfoAppConfigModel {
62
112
  constructor() {
@@ -703,7 +753,7 @@ class InfoDataService {
703
753
  return method.substring(0, method.indexOf('?')) + '?' + encodeURIComponent(this._utilities.jsonToEncrypt(method.substring(method.indexOf('?') + 1).replace(/null/g, '').replace(/undefined/g, '')));
704
754
  }
705
755
  }
706
- /** @nocollapse */ InfoDataService.ɵfac = function InfoDataService_Factory(t) { return new (t || InfoDataService)(i0.ɵɵinject(APICONTROLLER_CONFIG), i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(i1$1.Router), i0.ɵɵinject(InfoPlatformModel), i0.ɵɵinject(Utilities)); };
756
+ /** @nocollapse */ InfoDataService.ɵfac = function InfoDataService_Factory(t) { return new (t || InfoDataService)(i0.ɵɵinject(APICONTROLLER_CONFIG), i0.ɵɵinject(i1$1.HttpClient), i0.ɵɵinject(i1$2.Router), i0.ɵɵinject(InfoPlatformModel), i0.ɵɵinject(Utilities)); };
707
757
  /** @nocollapse */ InfoDataService.ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: InfoDataService, factory: InfoDataService.ɵfac, providedIn: 'root' });
708
758
  (function () {
709
759
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoDataService, [{
@@ -715,7 +765,7 @@ class InfoDataService {
715
765
  return [{ type: undefined, decorators: [{
716
766
  type: Inject,
717
767
  args: [APICONTROLLER_CONFIG]
718
- }] }, { type: i1.HttpClient }, { type: i1$1.Router }, { type: InfoPlatformModel }, { type: Utilities }];
768
+ }] }, { type: i1$1.HttpClient }, { type: i1$2.Router }, { type: InfoPlatformModel }, { type: Utilities }];
719
769
  }, null);
720
770
  })();
721
771
 
@@ -778,7 +828,7 @@ class InfoAlertComponent {
778
828
  if (rf & 2) {
779
829
  i0.ɵɵproperty("ngIf", ctx.messages != i0.ɵɵpureFunction0(1, _c0$i) && ctx.messages.length > 0);
780
830
  }
781
- }, dependencies: [i1$2.NgForOf, i1$2.NgIf, i4.MatIcon, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%]{display:block;position:fixed;bottom:70px;right:30px;margin-left:280px;min-width:350px;z-index:100}[_nghost-%COMP%]:last-child{margin-bottom:0}[_nghost-%COMP%] .alert[_ngcontent-%COMP%]{box-shadow:0 5px 5px 2px #00000040;padding:1.0476190667rem 1.5714286rem;position:relative}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] h5[_ngcontent-%COMP%]{text-align:center;padding-bottom:10px;margin:0 -20px 5px;border-bottom:solid 1px rgba(255,255,255,.1)}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{padding:0;margin:0;list-style:none}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{border-bottom:solid 1px rgba(255,255,255,.1);padding:7px 5px}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:last-child{border-bottom:none}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]{color:#fff;font-size:20px;line-height:1;position:absolute;right:10px;top:15px;transition:background .2s ease-in-out,color .2s ease-in-out}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]:hover{cursor:pointer;color:#ddd}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] .close[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{color:inherit;font-size:inherit;margin:0;vertical-align:top}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] .material-icons{color:main-color(A100);margin:0 1.5714286rem 0 0;vertical-align:top}"] });
831
+ }, dependencies: [i1$3.NgForOf, i1$3.NgIf, i4.MatIcon, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%]{display:block;position:fixed;bottom:70px;right:30px;margin-left:280px;min-width:350px;z-index:100}[_nghost-%COMP%]:last-child{margin-bottom:0}[_nghost-%COMP%] .alert[_ngcontent-%COMP%]{box-shadow:0 5px 5px 2px #00000040;padding:1.0476190667rem 1.5714286rem;position:relative}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] h5[_ngcontent-%COMP%]{text-align:center;padding-bottom:10px;margin:0 -20px 5px;border-bottom:solid 1px rgba(255,255,255,.1)}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{padding:0;margin:0;list-style:none}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{border-bottom:solid 1px rgba(255,255,255,.1);padding:7px 5px}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:last-child{border-bottom:none}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]{color:#fff;font-size:20px;line-height:1;position:absolute;right:10px;top:15px;transition:background .2s ease-in-out,color .2s ease-in-out}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]:hover{cursor:pointer;color:#ddd}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] .close[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{color:inherit;font-size:inherit;margin:0;vertical-align:top}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] .material-icons{color:main-color(A100);margin:0 1.5714286rem 0 0;vertical-align:top}"] });
782
832
  (function () {
783
833
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoAlertComponent, [{
784
834
  type: Component,
@@ -987,7 +1037,7 @@ class InfoModalComponent {
987
1037
  }
988
1038
  setDisabledState(isDisabled) { }
989
1039
  }
990
- /** @nocollapse */ InfoModalComponent.ɵfac = function InfoModalComponent_Factory(t) { return new (t || InfoModalComponent)(i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(MAT_DIALOG_DATA), i0.ɵɵdirectiveInject(i1$3.MatDialogRef)); };
1040
+ /** @nocollapse */ InfoModalComponent.ɵfac = function InfoModalComponent_Factory(t) { return new (t || InfoModalComponent)(i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(MAT_DIALOG_DATA), i0.ɵɵdirectiveInject(i1$4.MatDialogRef)); };
991
1041
  /** @nocollapse */ InfoModalComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoModalComponent, selectors: [["info-modal"]], inputs: { modaltitle: "modaltitle", showcloseicon: "showcloseicon", api: "api", method: "method", readonly: "readonly", loading: "loading", loadingblock: "loadingblock", form: "form", labelclose: "labelclose", labelcancel: "labelcancel", labelsubmit: "labelsubmit", messages: "messages", width: "width" }, outputs: { onsave: "onsave", onsuccess: "onsuccess" }, features: [i0.ɵɵProvidersFeature([
992
1042
  {
993
1043
  provide: NG_VALUE_ACCESSOR,
@@ -1027,7 +1077,7 @@ class InfoModalComponent {
1027
1077
  i0.ɵɵadvance(1);
1028
1078
  i0.ɵɵproperty("messages", ctx.messages);
1029
1079
  }
1030
- }, dependencies: [i1$2.NgIf, i4.MatIcon, i13.MatButton, i1$3.MatDialogTitle, i1$3.MatDialogContent, i1$3.MatDialogActions, i7.MatProgressBar, InfoAlertComponent, InfoTranslatePipe], encapsulation: 2 });
1080
+ }, dependencies: [i1$3.NgIf, i4.MatIcon, i13.MatButton, i1$4.MatDialogTitle, i1$4.MatDialogContent, i1$4.MatDialogActions, i7.MatProgressBar, InfoAlertComponent, InfoTranslatePipe], encapsulation: 2 });
1031
1081
  (function () {
1032
1082
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoModalComponent, [{
1033
1083
  type: Component,
@@ -1042,7 +1092,7 @@ class InfoModalComponent {
1042
1092
  return [{ type: InfoDataService }, { type: InfoFormPropModel, decorators: [{
1043
1093
  type: Inject,
1044
1094
  args: [MAT_DIALOG_DATA]
1045
- }] }, { type: i1$3.MatDialogRef }];
1095
+ }] }, { type: i1$4.MatDialogRef }];
1046
1096
  }, { modaltitle: [{
1047
1097
  type: Input
1048
1098
  }], showcloseicon: [{
@@ -1396,7 +1446,7 @@ class InfoAuthenticationService {
1396
1446
  return value.replace(/(^\w|-\w)/g, (w1, w2, i) => i == 0 ? w1.toUpperCase() : w1[1].toUpperCase());
1397
1447
  }
1398
1448
  }
1399
- /** @nocollapse */ InfoAuthenticationService.ɵfac = function InfoAuthenticationService_Factory(t) { return new (t || InfoAuthenticationService)(i0.ɵɵinject(i1$1.Router), i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(InfoSessionModel), i0.ɵɵinject(InfoPlatformModel), i0.ɵɵinject(InfoDataService), i0.ɵɵinject(i1$3.MatDialog), i0.ɵɵinject(Utilities), i0.ɵɵinject(InfoTranslateService), i0.ɵɵinject(i9.Title)); };
1449
+ /** @nocollapse */ InfoAuthenticationService.ɵfac = function InfoAuthenticationService_Factory(t) { return new (t || InfoAuthenticationService)(i0.ɵɵinject(i1$2.Router), i0.ɵɵinject(i1$1.HttpClient), i0.ɵɵinject(InfoSessionModel), i0.ɵɵinject(InfoPlatformModel), i0.ɵɵinject(InfoDataService), i0.ɵɵinject(i1$4.MatDialog), i0.ɵɵinject(Utilities), i0.ɵɵinject(InfoTranslateService), i0.ɵɵinject(i1.Title)); };
1400
1450
  /** @nocollapse */ InfoAuthenticationService.ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: InfoAuthenticationService, factory: InfoAuthenticationService.ɵfac, providedIn: 'root' });
1401
1451
  (function () {
1402
1452
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoAuthenticationService, [{
@@ -1404,7 +1454,7 @@ class InfoAuthenticationService {
1404
1454
  args: [{
1405
1455
  providedIn: 'root'
1406
1456
  }]
1407
- }], function () { return [{ type: i1$1.Router }, { type: i1.HttpClient }, { type: InfoSessionModel }, { type: InfoPlatformModel }, { type: InfoDataService }, { type: i1$3.MatDialog }, { type: Utilities }, { type: InfoTranslateService }, { type: i9.Title }]; }, null);
1457
+ }], function () { return [{ type: i1$2.Router }, { type: i1$1.HttpClient }, { type: InfoSessionModel }, { type: InfoPlatformModel }, { type: InfoDataService }, { type: i1$4.MatDialog }, { type: Utilities }, { type: InfoTranslateService }, { type: i1.Title }]; }, null);
1408
1458
  })();
1409
1459
  class RefreshSessionTimeModalComponent {
1410
1460
  constructor(_ref) {
@@ -1426,7 +1476,7 @@ class RefreshSessionTimeModalComponent {
1426
1476
  this._ref.close({ modalAction: ativo ? InfoModalAction.Yes : InfoModalAction.No });
1427
1477
  }
1428
1478
  }
1429
- /** @nocollapse */ RefreshSessionTimeModalComponent.ɵfac = function RefreshSessionTimeModalComponent_Factory(t) { return new (t || RefreshSessionTimeModalComponent)(i0.ɵɵdirectiveInject(i1$3.MatDialogRef)); };
1479
+ /** @nocollapse */ RefreshSessionTimeModalComponent.ɵfac = function RefreshSessionTimeModalComponent_Factory(t) { return new (t || RefreshSessionTimeModalComponent)(i0.ɵɵdirectiveInject(i1$4.MatDialogRef)); };
1430
1480
  /** @nocollapse */ RefreshSessionTimeModalComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: RefreshSessionTimeModalComponent, selectors: [["ng-component"]], decls: 5, vars: 7, consts: [["modaltitle", "Inatividade", "labelsubmit", "Sim", 3, "labelcancel", "onsave"], [2, "font-size", "130%"]], template: function RefreshSessionTimeModalComponent_Template(rf, ctx) {
1431
1481
  if (rf & 1) {
1432
1482
  i0.ɵɵelementStart(0, "info-modal", 0);
@@ -1453,7 +1503,7 @@ class RefreshSessionTimeModalComponent {
1453
1503
  </info-modal>
1454
1504
  `
1455
1505
  }]
1456
- }], function () { return [{ type: i1$3.MatDialogRef }]; }, null);
1506
+ }], function () { return [{ type: i1$4.MatDialogRef }]; }, null);
1457
1507
  })();
1458
1508
 
1459
1509
  class InfoThemeService {
@@ -1525,7 +1575,7 @@ class InfoThemeService {
1525
1575
  localStorage.setItem('mp', this._plataform.ModoPrime.toString());
1526
1576
  }
1527
1577
  }
1528
- /** @nocollapse */ InfoThemeService.ɵfac = function InfoThemeService_Factory(t) { return new (t || InfoThemeService)(i0.ɵɵinject(i1$4.OverlayContainer), i0.ɵɵinject(InfoPlatformModel), i0.ɵɵinject(InfoSessionModel)); };
1578
+ /** @nocollapse */ InfoThemeService.ɵfac = function InfoThemeService_Factory(t) { return new (t || InfoThemeService)(i0.ɵɵinject(i1$5.OverlayContainer), i0.ɵɵinject(InfoPlatformModel), i0.ɵɵinject(InfoSessionModel)); };
1529
1579
  /** @nocollapse */ InfoThemeService.ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: InfoThemeService, factory: InfoThemeService.ɵfac, providedIn: 'root' });
1530
1580
  (function () {
1531
1581
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoThemeService, [{
@@ -1533,7 +1583,7 @@ class InfoThemeService {
1533
1583
  args: [{
1534
1584
  providedIn: 'root'
1535
1585
  }]
1536
- }], function () { return [{ type: i1$4.OverlayContainer }, { type: InfoPlatformModel }, { type: InfoSessionModel }]; }, null);
1586
+ }], function () { return [{ type: i1$5.OverlayContainer }, { type: InfoPlatformModel }, { type: InfoSessionModel }]; }, null);
1537
1587
  })();
1538
1588
 
1539
1589
  class InfoConfigurationService {
@@ -1588,6 +1638,7 @@ class InfoConfigurationService {
1588
1638
  this._themeService.setTheme(activeTheme || 'default-theme');
1589
1639
  this._themeService.setMenuMin(menuMin == 'true');
1590
1640
  this._themeService.setModePrime(prime == 'true');
1641
+ this.configDOMPurify();
1591
1642
  r(config);
1592
1643
  });
1593
1644
  });
@@ -1602,8 +1653,25 @@ class InfoConfigurationService {
1602
1653
  cssFile.innerHTML = this._utilities.descriptografar(xmlhttp.responseText);
1603
1654
  document.head.appendChild(cssFile);
1604
1655
  }
1656
+ configDOMPurify() {
1657
+ DOMPurify.addHook('afterSanitizeAttributes', (node) => {
1658
+ if (node.tagName === 'A') {
1659
+ const href = node.getAttribute('href');
1660
+ if (!href)
1661
+ return;
1662
+ const isInternal = href.startsWith('/') ||
1663
+ href.startsWith('#') ||
1664
+ href.startsWith('mailto:');
1665
+ if (!isInternal)
1666
+ node.removeAttribute('href');
1667
+ }
1668
+ });
1669
+ // DOMPurify.addHook('uponSanitizeElement', (node, data) => {
1670
+ // if (!data.allowedTags[data.tagName]) console.warn('Blocked HTML tag:', data.tagName);
1671
+ // });
1672
+ }
1605
1673
  }
1606
- /** @nocollapse */ InfoConfigurationService.ɵfac = function InfoConfigurationService_Factory(t) { return new (t || InfoConfigurationService)(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(InfoPlatformModel), i0.ɵɵinject(InfoThemeService), i0.ɵɵinject(Utilities)); };
1674
+ /** @nocollapse */ InfoConfigurationService.ɵfac = function InfoConfigurationService_Factory(t) { return new (t || InfoConfigurationService)(i0.ɵɵinject(i1$1.HttpClient), i0.ɵɵinject(InfoPlatformModel), i0.ɵɵinject(InfoThemeService), i0.ɵɵinject(Utilities)); };
1607
1675
  /** @nocollapse */ InfoConfigurationService.ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: InfoConfigurationService, factory: InfoConfigurationService.ɵfac, providedIn: 'root' });
1608
1676
  (function () {
1609
1677
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoConfigurationService, [{
@@ -1611,7 +1679,7 @@ class InfoConfigurationService {
1611
1679
  args: [{
1612
1680
  providedIn: 'root'
1613
1681
  }]
1614
- }], function () { return [{ type: i1.HttpClient }, { type: InfoPlatformModel }, { type: InfoThemeService }, { type: Utilities }]; }, null);
1682
+ }], function () { return [{ type: i1$1.HttpClient }, { type: InfoPlatformModel }, { type: InfoThemeService }, { type: Utilities }]; }, null);
1615
1683
  })();
1616
1684
 
1617
1685
  function InfoAutoCompleteComponent_mat_option_6_Template(rf, ctx) {
@@ -1821,7 +1889,7 @@ class InfoAutoCompleteComponent {
1821
1889
  i0.ɵɵadvance(4);
1822
1890
  i0.ɵɵproperty("ngIf", ctx.loading);
1823
1891
  }
1824
- }, dependencies: [i1$2.NgForOf, i1$2.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.RequiredValidator, i2.FormControlDirective, i4.MatIcon, i4$1.MatFormField, i4$1.MatSuffix, i6.MatInput, i6$1.MatOption, i7.MatProgressBar, i9$1.MatAutocomplete, i9$1.MatAutocompleteTrigger, InfoTranslatePipe], styles: ["[_nghost-%COMP%] .select-loading[_ngcontent-%COMP%]{position:relative;bottom:15px;opacity:.3;height:1px}[_nghost-%COMP%] .select-loading[_ngcontent-%COMP%] .mat-progress-bar[_ngcontent-%COMP%]{height:1px;margin:0}[_nghost-%COMP%] mat-option[_ngcontent-%COMP%] small[_ngcontent-%COMP%]{margin-left:10px;font-style:italic}"] });
1892
+ }, dependencies: [i1$3.NgForOf, i1$3.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.RequiredValidator, i2.FormControlDirective, i4.MatIcon, i4$1.MatFormField, i4$1.MatSuffix, i6.MatInput, i6$1.MatOption, i7.MatProgressBar, i9.MatAutocomplete, i9.MatAutocompleteTrigger, InfoTranslatePipe], styles: ["[_nghost-%COMP%] .select-loading[_ngcontent-%COMP%]{position:relative;bottom:15px;opacity:.3;height:1px}[_nghost-%COMP%] .select-loading[_ngcontent-%COMP%] .mat-progress-bar[_ngcontent-%COMP%]{height:1px;margin:0}[_nghost-%COMP%] mat-option[_ngcontent-%COMP%] small[_ngcontent-%COMP%]{margin-left:10px;font-style:italic}"] });
1825
1893
  (function () {
1826
1894
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoAutoCompleteComponent, [{
1827
1895
  type: Component,
@@ -2146,7 +2214,7 @@ class InfoBigCheckboxComponent {
2146
2214
  i0.ɵɵadvance(1);
2147
2215
  i0.ɵɵproperty("ngIf", !ctx.existData());
2148
2216
  }
2149
- }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.NgModel, i4.MatIcon, i4$1.MatFormField, i4$1.MatHint, i4$1.MatSuffix, i6.MatInput, i7$1.MatList, i7$1.MatListItem, i7$1.MatSelectionList, i7$1.MatListOption, InfoTranslatePipe], styles: ["[_nghost-%COMP%] mat-list-option[_ngcontent-%COMP%]{font-size:14px;cursor:pointer;padding:0!important;font-family:Open Sans,sans-serif}[_nghost-%COMP%] mat-list-option[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{padding-left:5px}[_nghost-%COMP%] mat-list-item[_ngcontent-%COMP%]{height:38px;font-size:14px;cursor:pointer;padding:0 10px 0 20px}[_nghost-%COMP%] mat-list-item[_ngcontent-%COMP%]:hover{background:rgba(0,0,0,.04)}[_nghost-%COMP%] mat-list-item[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{position:absolute;right:3px;top:8px}[_nghost-%COMP%] mat-list-option.silver[_ngcontent-%COMP%], [_nghost-%COMP%] mat-list-item.silver[_ngcontent-%COMP%]{background:#f5f5f5}[_nghost-%COMP%] mat-list-option[_ngcontent-%COMP%]:hover, [_nghost-%COMP%] mat-list-item[_ngcontent-%COMP%]:hover{background:#eee}[_nghost-%COMP%] mat-list-item-content[_ngcontent-%COMP%]{padding-left:0!important}[_nghost-%COMP%] .none-data[_ngcontent-%COMP%]{font-size:14px;color:#666;background:#f5f5f5;text-align:center;padding:5px 0}[_nghost-%COMP%] .none-data[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{margin-right:5px;font-size:18px;top:4px;left:5px}"] });
2217
+ }, dependencies: [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.NgModel, i4.MatIcon, i4$1.MatFormField, i4$1.MatHint, i4$1.MatSuffix, i6.MatInput, i7$1.MatList, i7$1.MatListItem, i7$1.MatSelectionList, i7$1.MatListOption, InfoTranslatePipe], styles: ["[_nghost-%COMP%] mat-list-option[_ngcontent-%COMP%]{font-size:14px;cursor:pointer;padding:0!important;font-family:Open Sans,sans-serif}[_nghost-%COMP%] mat-list-option[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{padding-left:5px}[_nghost-%COMP%] mat-list-item[_ngcontent-%COMP%]{height:38px;font-size:14px;cursor:pointer;padding:0 10px 0 20px}[_nghost-%COMP%] mat-list-item[_ngcontent-%COMP%]:hover{background:rgba(0,0,0,.04)}[_nghost-%COMP%] mat-list-item[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{position:absolute;right:3px;top:8px}[_nghost-%COMP%] mat-list-option.silver[_ngcontent-%COMP%], [_nghost-%COMP%] mat-list-item.silver[_ngcontent-%COMP%]{background:#f5f5f5}[_nghost-%COMP%] mat-list-option[_ngcontent-%COMP%]:hover, [_nghost-%COMP%] mat-list-item[_ngcontent-%COMP%]:hover{background:#eee}[_nghost-%COMP%] mat-list-item-content[_ngcontent-%COMP%]{padding-left:0!important}[_nghost-%COMP%] .none-data[_ngcontent-%COMP%]{font-size:14px;color:#666;background:#f5f5f5;text-align:center;padding:5px 0}[_nghost-%COMP%] .none-data[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{margin-right:5px;font-size:18px;top:4px;left:5px}"] });
2150
2218
  (function () {
2151
2219
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoBigCheckboxComponent, [{
2152
2220
  type: Component,
@@ -2222,7 +2290,7 @@ class InfoCardComponent {
2222
2290
  this._router.navigateByUrl(this.url);
2223
2291
  }
2224
2292
  }
2225
- /** @nocollapse */ InfoCardComponent.ɵfac = function InfoCardComponent_Factory(t) { return new (t || InfoCardComponent)(i0.ɵɵdirectiveInject(i1$1.Router)); };
2293
+ /** @nocollapse */ InfoCardComponent.ɵfac = function InfoCardComponent_Factory(t) { return new (t || InfoCardComponent)(i0.ɵɵdirectiveInject(i1$2.Router)); };
2226
2294
  /** @nocollapse */ InfoCardComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoCardComponent, selectors: [["info-card"]], inputs: { label: "label", description: "description", mark: "mark", url: "url", icon: "icon" }, outputs: { onclick: "onclick" }, decls: 10, vars: 6, consts: [[3, "click"], [3, "innerHTML", 4, "ngIf"], [4, "ngIf"], [3, "innerHTML"]], template: function InfoCardComponent_Template(rf, ctx) {
2227
2295
  if (rf & 1) {
2228
2296
  i0.ɵɵelementStart(0, "mat-card", 0);
@@ -2248,12 +2316,12 @@ class InfoCardComponent {
2248
2316
  i0.ɵɵadvance(3);
2249
2317
  i0.ɵɵtextInterpolate(ctx.icon);
2250
2318
  }
2251
- }, dependencies: [i1$2.NgIf, i3.MatCard, i3.MatCardContent, i3.MatCardFooter, i4.MatIcon, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%] mat-card-footer[_ngcontent-%COMP%]{position:relative;overflow:hidden;height:70px}[_nghost-%COMP%] mat-card-footer[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{color:#aaa;position:absolute;bottom:36px;right:42px;font-size:5.71rem;opacity:.4}"] });
2319
+ }, dependencies: [i1$3.NgIf, i3.MatCard, i3.MatCardContent, i3.MatCardFooter, i4.MatIcon, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%] mat-card-footer[_ngcontent-%COMP%]{position:relative;overflow:hidden;height:70px}[_nghost-%COMP%] mat-card-footer[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{color:#aaa;position:absolute;bottom:36px;right:42px;font-size:5.71rem;opacity:.4}"] });
2252
2320
  (function () {
2253
2321
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoCardComponent, [{
2254
2322
  type: Component,
2255
2323
  args: [{ selector: 'info-card', template: "<mat-card (click)=\"onCardClick()\">\r\n <mat-card-content>\r\n <h4>{{ label | translate }}</h4>\r\n <p *ngIf=\"description\" [innerHTML]=\"description | translate\"></p>\r\n <mark *ngIf=\"mark\"><small>{{ mark }}</small></mark>\r\n </mat-card-content>\r\n <mat-card-footer>\r\n <mat-icon>{{icon}}</mat-icon>\r\n </mat-card-footer>\r\n</mat-card>", styles: ["body{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}:host mat-card-footer{position:relative;overflow:hidden;height:70px}:host mat-card-footer mat-icon{color:#aaa;position:absolute;bottom:36px;right:42px;font-size:5.71rem;opacity:.4}\n"] }]
2256
- }], function () { return [{ type: i1$1.Router }]; }, { label: [{
2324
+ }], function () { return [{ type: i1$2.Router }]; }, { label: [{
2257
2325
  type: Input
2258
2326
  }], description: [{
2259
2327
  type: Input
@@ -2408,7 +2476,7 @@ class InfoMenuCardComponent {
2408
2476
  i0.ɵɵadvance(1);
2409
2477
  i0.ɵɵproperty("ngIf", ctx.icon == null);
2410
2478
  }
2411
- }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i3.MatCard, i3.MatCardContent, i3.MatCardFooter, i4.MatIcon, i7$1.MatNavList, i7$1.MatListItem, i1$1.RouterLink, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%] h6[_ngcontent-%COMP%]{width:100%;padding-bottom:10px;font-size:11px}[_nghost-%COMP%] .mat-nav-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:40px!important}[_nghost-%COMP%] mat-card-footer[_ngcontent-%COMP%]{position:relative;overflow:hidden;height:40px}[_nghost-%COMP%] mat-card-footer[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{color:#aaa;position:absolute;bottom:36px;right:0;width:100%;text-align:right;font-size:5.71rem;opacity:.4}"] });
2479
+ }, dependencies: [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i3.MatCard, i3.MatCardContent, i3.MatCardFooter, i4.MatIcon, i7$1.MatNavList, i7$1.MatListItem, i1$2.RouterLink, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%] h6[_ngcontent-%COMP%]{width:100%;padding-bottom:10px;font-size:11px}[_nghost-%COMP%] .mat-nav-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:40px!important}[_nghost-%COMP%] mat-card-footer[_ngcontent-%COMP%]{position:relative;overflow:hidden;height:40px}[_nghost-%COMP%] mat-card-footer[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{color:#aaa;position:absolute;bottom:36px;right:0;width:100%;text-align:right;font-size:5.71rem;opacity:.4}"] });
2412
2480
  (function () {
2413
2481
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoMenuCardComponent, [{
2414
2482
  type: Component,
@@ -2499,7 +2567,7 @@ class InfoCheckboxComponent {
2499
2567
  i0.ɵɵadvance(1);
2500
2568
  i0.ɵɵproperty("innerHtml", i0.ɵɵpipeBind1(3, 4, ctx.placeholder), i0.ɵɵsanitizeHtml);
2501
2569
  }
2502
- }, dependencies: [i1$2.NgClass, i2.NgControlStatus, i2.NgModel, i3$1.MatCheckbox, InfoTranslatePipe], styles: [".info-checkbox-content[_ngcontent-%COMP%]{padding-top:20px}.info-checkbox-min[_ngcontent-%COMP%]{padding-top:0!important;margin:0 0 13px!important}"] });
2570
+ }, dependencies: [i1$3.NgClass, i2.NgControlStatus, i2.NgModel, i3$1.MatCheckbox, InfoTranslatePipe], styles: [".info-checkbox-content[_ngcontent-%COMP%]{padding-top:20px}.info-checkbox-min[_ngcontent-%COMP%]{padding-top:0!important;margin:0 0 13px!important}"] });
2503
2571
  (function () {
2504
2572
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoCheckboxComponent, [{
2505
2573
  type: Component,
@@ -2653,7 +2721,7 @@ class InfoDateComponent {
2653
2721
  i0.ɵɵadvance(1);
2654
2722
  i0.ɵɵproperty("ngIf", ctx.button);
2655
2723
  }
2656
- }, dependencies: [i1$2.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.RequiredValidator, i2.NgModel, i4$1.MatFormField, i4$1.MatSuffix, i6.MatInput, i5.MatDatepicker, i5.MatDatepickerInput, i5.MatDatepickerToggle, InfoTranslatePipe], encapsulation: 2 });
2724
+ }, dependencies: [i1$3.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.RequiredValidator, i2.NgModel, i4$1.MatFormField, i4$1.MatSuffix, i6.MatInput, i5.MatDatepicker, i5.MatDatepickerInput, i5.MatDatepickerToggle, InfoTranslatePipe], encapsulation: 2 });
2657
2725
  (function () {
2658
2726
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoDateComponent, [{
2659
2727
  type: Component,
@@ -2834,7 +2902,7 @@ class InfoDateMonthComponent {
2834
2902
  i0.ɵɵadvance(1);
2835
2903
  i0.ɵɵproperty("ngIf", ctx.button);
2836
2904
  }
2837
- }, dependencies: [i1$2.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.RequiredValidator, i2.NgModel, i4$1.MatFormField, i4$1.MatSuffix, i6.MatInput, i5.MatDatepicker, i5.MatDatepickerInput, i5.MatDatepickerToggle, InfoTranslatePipe], encapsulation: 2 });
2905
+ }, dependencies: [i1$3.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.RequiredValidator, i2.NgModel, i4$1.MatFormField, i4$1.MatSuffix, i6.MatInput, i5.MatDatepicker, i5.MatDatepickerInput, i5.MatDatepickerToggle, InfoTranslatePipe], encapsulation: 2 });
2838
2906
  (function () {
2839
2907
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoDateMonthComponent, [{
2840
2908
  type: Component,
@@ -2903,7 +2971,7 @@ class InfoMessageComponent {
2903
2971
  i0.ɵɵadvance(3);
2904
2972
  i0.ɵɵproperty("ngIf", ctx.close);
2905
2973
  }
2906
- }, dependencies: [i1$2.NgClass, i1$2.NgIf], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%]{display:block;margin-bottom:0;padding-right:0!important}[_nghost-%COMP%] .message[_ngcontent-%COMP%]{padding:20px 20px 16px;position:relative;border-radius:3px;font-size:14px}[_nghost-%COMP%] .message.min[_ngcontent-%COMP%]{padding:10px 15px}[_nghost-%COMP%] .message[_ngcontent-%COMP%]:not(.outline-message){color:#fff}[_nghost-%COMP%] .message[_ngcontent-%COMP%]:not(.outline-message) a{color:#fffc}[_nghost-%COMP%] .message[_ngcontent-%COMP%]:not(.outline-message) a:hover{color:#fff}[_nghost-%COMP%] .message[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]{background:rgba(0,0,0,.1);font-size:20px;line-height:1;position:absolute;right:0;top:0;transition:background .2s ease-in-out,color .2s ease-in-out}[_nghost-%COMP%] .message[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]:hover{background:rgba(255,255,255,.3);color:red}[_nghost-%COMP%] .message[_ngcontent-%COMP%] .close[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{color:inherit;font-size:inherit;margin:0;vertical-align:top}[_nghost-%COMP%] .message[_ngcontent-%COMP%] .material-icons{margin:0 10px 0 0;vertical-align:top;font-size:21px}[_nghost-%COMP%] .message.success-message[_ngcontent-%COMP%]{background:#cbefc4;color:#005e00;border:none}[_nghost-%COMP%] .message.success-message[_ngcontent-%COMP%] .material-icons{color:#005e00}[_nghost-%COMP%] .message.info-message[_ngcontent-%COMP%]{background:#f0f0f0;color:#666;border:none}[_nghost-%COMP%] .message.info-message[_ngcontent-%COMP%] .material-icons{color:#666}[_nghost-%COMP%] .message.warning-message[_ngcontent-%COMP%]{background:#efefc0;color:#705b20;border:none}[_nghost-%COMP%] .message.warning-message[_ngcontent-%COMP%] .material-icons{color:#b59334}[_nghost-%COMP%] .message.danger-message[_ngcontent-%COMP%]{background:#efb7ae;color:#771702;border:none}[_nghost-%COMP%] .message.danger-message[_ngcontent-%COMP%] .material-icons{color:#771702}"] });
2974
+ }, dependencies: [i1$3.NgClass, i1$3.NgIf], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%]{display:block;margin-bottom:0;padding-right:0!important}[_nghost-%COMP%] .message[_ngcontent-%COMP%]{padding:20px 20px 16px;position:relative;border-radius:3px;font-size:14px}[_nghost-%COMP%] .message.min[_ngcontent-%COMP%]{padding:10px 15px}[_nghost-%COMP%] .message[_ngcontent-%COMP%]:not(.outline-message){color:#fff}[_nghost-%COMP%] .message[_ngcontent-%COMP%]:not(.outline-message) a{color:#fffc}[_nghost-%COMP%] .message[_ngcontent-%COMP%]:not(.outline-message) a:hover{color:#fff}[_nghost-%COMP%] .message[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]{background:rgba(0,0,0,.1);font-size:20px;line-height:1;position:absolute;right:0;top:0;transition:background .2s ease-in-out,color .2s ease-in-out}[_nghost-%COMP%] .message[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]:hover{background:rgba(255,255,255,.3);color:red}[_nghost-%COMP%] .message[_ngcontent-%COMP%] .close[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{color:inherit;font-size:inherit;margin:0;vertical-align:top}[_nghost-%COMP%] .message[_ngcontent-%COMP%] .material-icons{margin:0 10px 0 0;vertical-align:top;font-size:21px}[_nghost-%COMP%] .message.success-message[_ngcontent-%COMP%]{background:#cbefc4;color:#005e00;border:none}[_nghost-%COMP%] .message.success-message[_ngcontent-%COMP%] .material-icons{color:#005e00}[_nghost-%COMP%] .message.info-message[_ngcontent-%COMP%]{background:#f0f0f0;color:#666;border:none}[_nghost-%COMP%] .message.info-message[_ngcontent-%COMP%] .material-icons{color:#666}[_nghost-%COMP%] .message.warning-message[_ngcontent-%COMP%]{background:#efefc0;color:#705b20;border:none}[_nghost-%COMP%] .message.warning-message[_ngcontent-%COMP%] .material-icons{color:#b59334}[_nghost-%COMP%] .message.danger-message[_ngcontent-%COMP%]{background:#efb7ae;color:#771702;border:none}[_nghost-%COMP%] .message.danger-message[_ngcontent-%COMP%] .material-icons{color:#771702}"] });
2907
2975
  (function () {
2908
2976
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoMessageComponent, [{
2909
2977
  type: Component,
@@ -3044,12 +3112,12 @@ class InfoDialogModal {
3044
3112
  return ref.afterClosed();
3045
3113
  }
3046
3114
  }
3047
- /** @nocollapse */ InfoDialogModal.ɵfac = function InfoDialogModal_Factory(t) { return new (t || InfoDialogModal)(i0.ɵɵinject(i1$3.MatDialog)); };
3115
+ /** @nocollapse */ InfoDialogModal.ɵfac = function InfoDialogModal_Factory(t) { return new (t || InfoDialogModal)(i0.ɵɵinject(i1$4.MatDialog)); };
3048
3116
  /** @nocollapse */ InfoDialogModal.ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: InfoDialogModal, factory: InfoDialogModal.ɵfac });
3049
3117
  (function () {
3050
3118
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoDialogModal, [{
3051
3119
  type: Injectable
3052
- }], function () { return [{ type: i1$3.MatDialog }]; }, null);
3120
+ }], function () { return [{ type: i1$4.MatDialog }]; }, null);
3053
3121
  })();
3054
3122
  class InfoDialogComponent {
3055
3123
  constructor(ref, model) {
@@ -3072,7 +3140,7 @@ class InfoDialogComponent {
3072
3140
  this.ref.close(new InfoDialogResult(InfoDialogButtons.Aux));
3073
3141
  }
3074
3142
  }
3075
- /** @nocollapse */ InfoDialogComponent.ɵfac = function InfoDialogComponent_Factory(t) { return new (t || InfoDialogComponent)(i0.ɵɵdirectiveInject(i1$3.MatDialogRef), i0.ɵɵdirectiveInject(MAT_DIALOG_DATA)); };
3143
+ /** @nocollapse */ InfoDialogComponent.ɵfac = function InfoDialogComponent_Factory(t) { return new (t || InfoDialogComponent)(i0.ɵɵdirectiveInject(i1$4.MatDialogRef), i0.ɵɵdirectiveInject(MAT_DIALOG_DATA)); };
3076
3144
  /** @nocollapse */ InfoDialogComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoDialogComponent, selectors: [["info-dialog"]], decls: 10, vars: 9, consts: [["mat-dialog-title", "", 3, "innerHTML", 4, "ngIf"], ["mat-dialog-content", "", 1, "mb-3"], [3, "innerHTML", 4, "ngIf"], ["color", "danger", 4, "ngIf"], ["mat-dialog-actions", "", 1, "buttons"], ["mat-button", "", 3, "color", "click", 4, "ngIf"], ["mat-button", "", "cdkFocusInitial", "", 3, "color", "click"], ["mat-dialog-title", "", 3, "innerHTML"], [3, "innerHTML"], ["color", "danger"], ["mat-button", "", 3, "color", "click"]], template: function InfoDialogComponent_Template(rf, ctx) {
3077
3145
  if (rf & 1) {
3078
3146
  i0.ɵɵtemplate(0, InfoDialogComponent_h1_0_Template, 2, 3, "h1", 0);
@@ -3105,13 +3173,13 @@ class InfoDialogComponent {
3105
3173
  i0.ɵɵadvance(2);
3106
3174
  i0.ɵɵproperty("ngIf", ctx.model.labelCancel);
3107
3175
  }
3108
- }, dependencies: [i1$2.NgIf, i13.MatButton, i1$3.MatDialogTitle, i1$3.MatDialogContent, i1$3.MatDialogActions, InfoMessageComponent, InfoTranslatePipe], encapsulation: 2 });
3176
+ }, dependencies: [i1$3.NgIf, i13.MatButton, i1$4.MatDialogTitle, i1$4.MatDialogContent, i1$4.MatDialogActions, InfoMessageComponent, InfoTranslatePipe], encapsulation: 2 });
3109
3177
  (function () {
3110
3178
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoDialogComponent, [{
3111
3179
  type: Component,
3112
3180
  args: [{ selector: 'info-dialog', template: "<h1 mat-dialog-title *ngIf=\"model.title\" [innerHTML]=\"model.title | translate\" ></h1>\r\n\r\n<div mat-dialog-content class=\"mb-3\">\r\n <p *ngIf=\"!model.processingMode\" [innerHTML]=\"model.message | translate\"></p>\r\n <info-message *ngIf=\"model.processingMode\" color=\"danger\">{{ 'A plataforma est\u00E1 efetuando o processamento em segundo plano.<br /> Isto pode levar alguns minutos e assim que conclu\u00EDdo, uma notifica\u00E7\u00E3o ser\u00E1 enviada.' | translate}}</info-message>\r\n</div>\r\n\r\n<div mat-dialog-actions class=\"buttons\">\r\n <button mat-button (click)=\"onclickAux()\" [color]=\"model.colorAux\" *ngIf=\"model.labelAux\" >{{ model.labelAux | translate }}</button>\r\n <button mat-button (click)=\"onclickOk()\" [color]=\"model.colorOk\" cdkFocusInitial>{{ model.labelOk | translate }}</button>\r\n <button mat-button (click)=\"onclickCancel()\" [color]=\"model.colorCancel\" *ngIf=\"model.labelCancel\" >{{ model.labelCancel | translate }}</button>\r\n</div> " }]
3113
3181
  }], function () {
3114
- return [{ type: i1$3.MatDialogRef }, { type: InfoDialogModel, decorators: [{
3182
+ return [{ type: i1$4.MatDialogRef }, { type: InfoDialogModel, decorators: [{
3115
3183
  type: Inject,
3116
3184
  args: [MAT_DIALOG_DATA]
3117
3185
  }] }];
@@ -3283,7 +3351,7 @@ class InfoPaginatorComponent {
3283
3351
  if (rf & 2) {
3284
3352
  i0.ɵɵproperty("ngIf", ctx.show);
3285
3353
  }
3286
- }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i4.MatIcon, i13.MatButton, i15.MatTooltip, InfoTranslatePipe], styles: ["[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] .descriptions[_ngcontent-%COMP%], [_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] .pages[_ngcontent-%COMP%]{padding-right:10px!important;padding-left:10px!important}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] .descriptions-min[_ngcontent-%COMP%], [_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] .pages-min[_ngcontent-%COMP%]{padding-right:0!important;padding-left:0!important}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{list-style:none;margin:0;padding:0}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{display:inline-block;font-size:14px}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%]{min-width:34px;line-height:25px;padding:0;margin:0 2px}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .mat-button.active[_ngcontent-%COMP%]{font-weight:700}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:20px}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.icon[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%]{padding:0 2px}"] });
3354
+ }, dependencies: [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i4.MatIcon, i13.MatButton, i15.MatTooltip, InfoTranslatePipe], styles: ["[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] .descriptions[_ngcontent-%COMP%], [_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] .pages[_ngcontent-%COMP%]{padding-right:10px!important;padding-left:10px!important}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] .descriptions-min[_ngcontent-%COMP%], [_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] .pages-min[_ngcontent-%COMP%]{padding-right:0!important;padding-left:0!important}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{list-style:none;margin:0;padding:0}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{display:inline-block;font-size:14px}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%]{min-width:34px;line-height:25px;padding:0;margin:0 2px}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .mat-button.active[_ngcontent-%COMP%]{font-weight:700}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:20px}[_nghost-%COMP%] > .info-paginator[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.icon[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%]{padding:0 2px}"] });
3287
3355
  (function () {
3288
3356
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoPaginatorComponent, [{
3289
3357
  type: Component,
@@ -3838,7 +3906,7 @@ class InfoInputComponent {
3838
3906
  i0.ɵɵadvance(1);
3839
3907
  i0.ɵɵproperty("ngIf", ctx.type == "color");
3840
3908
  }
3841
- }, dependencies: [i1$2.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.RequiredValidator, i2.MaxLengthValidator, i2.NgModel, i2.FormControlDirective, i4.MatIcon, i4$1.MatError, i4$1.MatFormField, i4$1.MatPrefix, i4$1.MatSuffix, i6.MatInput, i6$2.CurrencyMaskDirective, InfoMaskDirective, InfoUnmaskDirective, InfoTranslatePipe], styles: ["[_nghost-%COMP%] .input-color[_ngcontent-%COMP%] .mat-form-field-label{transition:transform .4s cubic-bezier(.25,.8,.25,1),color .4s cubic-bezier(.25,.8,.25,1),width .4s cubic-bezier(.25,.8,.25,1),margin .4s cubic-bezier(.25,.8,.25,1)}[_nghost-%COMP%] .input-color[_ngcontent-%COMP%]:not(.mat-form-field-should-float) .mat-form-field-label{margin-left:40px}[_nghost-%COMP%] .input-color.mat-form-field-should-float[_ngcontent-%COMP%] .mat-form-field-label{margin-left:0}[_nghost-%COMP%] .input-color[_ngcontent-%COMP%] .input-color-container[_ngcontent-%COMP%]{display:flex}[_nghost-%COMP%] .input-color[_ngcontent-%COMP%] .input-color-container[_ngcontent-%COMP%] input[type=color][_ngcontent-%COMP%]{width:0px;height:0px;visibility:hidden}[_nghost-%COMP%] .input-color[_ngcontent-%COMP%] .input-color-container[_ngcontent-%COMP%] .color-picker[_ngcontent-%COMP%]{width:30px;border:solid 1px black;border-radius:5px;margin-right:5px}"] });
3909
+ }, dependencies: [i1$3.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.RequiredValidator, i2.MaxLengthValidator, i2.NgModel, i2.FormControlDirective, i4.MatIcon, i4$1.MatError, i4$1.MatFormField, i4$1.MatPrefix, i4$1.MatSuffix, i6.MatInput, i6$2.CurrencyMaskDirective, InfoMaskDirective, InfoUnmaskDirective, InfoTranslatePipe], styles: ["[_nghost-%COMP%] .input-color[_ngcontent-%COMP%] .mat-form-field-label{transition:transform .4s cubic-bezier(.25,.8,.25,1),color .4s cubic-bezier(.25,.8,.25,1),width .4s cubic-bezier(.25,.8,.25,1),margin .4s cubic-bezier(.25,.8,.25,1)}[_nghost-%COMP%] .input-color[_ngcontent-%COMP%]:not(.mat-form-field-should-float) .mat-form-field-label{margin-left:40px}[_nghost-%COMP%] .input-color.mat-form-field-should-float[_ngcontent-%COMP%] .mat-form-field-label{margin-left:0}[_nghost-%COMP%] .input-color[_ngcontent-%COMP%] .input-color-container[_ngcontent-%COMP%]{display:flex}[_nghost-%COMP%] .input-color[_ngcontent-%COMP%] .input-color-container[_ngcontent-%COMP%] input[type=color][_ngcontent-%COMP%]{width:0px;height:0px;visibility:hidden}[_nghost-%COMP%] .input-color[_ngcontent-%COMP%] .input-color-container[_ngcontent-%COMP%] .color-picker[_ngcontent-%COMP%]{width:30px;border:solid 1px black;border-radius:5px;margin-right:5px}"] });
3842
3910
  (function () {
3843
3911
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoInputComponent, [{
3844
3912
  type: Component,
@@ -4257,7 +4325,7 @@ class InfoPagebarComponent {
4257
4325
  return ref.afterClosed();
4258
4326
  }
4259
4327
  }
4260
- /** @nocollapse */ InfoPagebarComponent.ɵfac = function InfoPagebarComponent_Factory(t) { return new (t || InfoPagebarComponent)(i0.ɵɵdirectiveInject(i1$1.Router), i0.ɵɵdirectiveInject(i1$3.MatDialog), i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(InfoTranslateService), i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef)); };
4328
+ /** @nocollapse */ InfoPagebarComponent.ɵfac = function InfoPagebarComponent_Factory(t) { return new (t || InfoPagebarComponent)(i0.ɵɵdirectiveInject(i1$2.Router), i0.ɵɵdirectiveInject(i1$4.MatDialog), i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(InfoTranslateService), i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef)); };
4261
4329
  /** @nocollapse */ InfoPagebarComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoPagebarComponent, selectors: [["info-pagebar"]], inputs: { margintop: "margintop", icon: "icon", description: "description", backurl: "backurl", access: "access", transparent: "transparent", pagetitle: "pagetitle" }, ngContentSelectors: _c5$1, decls: 6, vars: 9, consts: [[3, "ngStyle", "ngClass"], [4, "ngIf"], ["class", "row", 4, "ngIf"], ["class", "loading-bar", 4, "ngIf"], ["content", ""], [3, "ngClass"], [3, "innerHTML"], [1, "link-button"], ["mat-button", "", "type", "button", "color", "primary", 3, "click", 4, "ngIf"], [4, "ngTemplateOutlet"], ["class", "acesso-rapido", 3, "mouseenter", "mouseleave", 4, "ngIf"], ["mat-button", "", "type", "button", "color", "primary", 3, "click"], [1, "fs-20"], [1, "acesso-rapido", 3, "mouseenter", "mouseleave"], [4, "ngFor", "ngForOf"], ["target", "_blank", 3, "routerLink"], [1, "row"], [1, "col-md-6"], ["id", "page-title", 4, "ngIf"], [3, "outerHTML"], ["type", "button", "mat-icon-button", "", "class", "shortcut-button", 3, "ngClass", "disabled", "click", 4, "ngIf"], [1, "pagebar-description", 3, "innerHTML"], [1, "col-md-6", "align-right", "buttons"], ["id", "page-title"], ["type", "button", "mat-icon-button", "", 1, "shortcut-button", 3, "ngClass", "disabled", "click"], ["inline", ""], [1, "loading-bar"], ["color", "primary", "mode", "indeterminate"]], template: function InfoPagebarComponent_Template(rf, ctx) {
4262
4330
  if (rf & 1) {
4263
4331
  i0.ɵɵprojectionDef();
@@ -4277,12 +4345,12 @@ class InfoPagebarComponent {
4277
4345
  i0.ɵɵadvance(1);
4278
4346
  i0.ɵɵproperty("ngIf", ctx.loading);
4279
4347
  }
4280
- }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i1$2.NgTemplateOutlet, i1$2.NgStyle, i4.MatIcon, i13.MatButton, i7.MatProgressBar, i1$1.RouterLinkWithHref, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}.topmenu[_nghost-%COMP%] > div[_ngcontent-%COMP%]{left:0!important;top:125px!important;width:100%!important}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%]{position:fixed;left:120px;z-index:100;top:80px;background:#FFF;padding:15px 20px 10px;min-height:60px;width:calc(100% - 120px);transition:left .2s ease-in-out,width .2s ease-in-out}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] h2[_ngcontent-%COMP%]{font-size:1.7em;font-weight:500;display:inline-block;padding-right:20px;margin:0;max-width:65%;background:inherit}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] h2[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{top:3px;font-size:22px}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] h2[_ngcontent-%COMP%] > small[_ngcontent-%COMP%]{font-size:70%}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] h2.title-icon[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{top:14px;left:0;font-size:42px;position:absolute}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] h2.title-icon[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{font-size:30px;margin-left:40px;position:relative;top:3px}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] .link-button[_ngcontent-%COMP%]{display:block;background:inherit;position:absolute;right:20px;top:18px;padding-left:20px}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{position:absolute;top:50%;margin:0;width:calc(100% - 40px);z-index:-1}@media only screen and (max-width: 991px){.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%]{left:0}}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%]{position:fixed;left:120px;right:0;z-index:100;top:70px;background:#fff;padding:10px 20px;min-height:60px;border-bottom:solid 1px #e4e9f0;box-shadow:0 0 5px #eee}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%]{left:0}}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] h2[_ngcontent-%COMP%]{margin:0;padding:0;font-size:1.2em;display:inline}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{font-size:.9em;width:100%;padding-top:3px;margin:0}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{display:none}}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] .buttons[_ngcontent-%COMP%]{padding-top:2px}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] .buttons[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%]{margin-left:8px}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%]:hover .shortcut-button[_ngcontent-%COMP%]{opacity:1}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] .shortcut-button[_ngcontent-%COMP%]{width:22px;height:22px;line-height:22px;text-align:center;opacity:0;transition:opacity .2s}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] .shortcut-button.tem-atalho[_ngcontent-%COMP%]{opacity:1!important}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] .shortcut-button[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:14px;color:#b99206;top:-2px}"] });
4348
+ }, dependencies: [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i1$3.NgTemplateOutlet, i1$3.NgStyle, i4.MatIcon, i13.MatButton, i7.MatProgressBar, i1$2.RouterLinkWithHref, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}.topmenu[_nghost-%COMP%] > div[_ngcontent-%COMP%]{left:0!important;top:125px!important;width:100%!important}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%]{position:fixed;left:120px;z-index:100;top:80px;background:#FFF;padding:15px 20px 10px;min-height:60px;width:calc(100% - 120px);transition:left .2s ease-in-out,width .2s ease-in-out}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] h2[_ngcontent-%COMP%]{font-size:1.7em;font-weight:500;display:inline-block;padding-right:20px;margin:0;max-width:65%;background:inherit}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] h2[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{top:3px;font-size:22px}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] h2[_ngcontent-%COMP%] > small[_ngcontent-%COMP%]{font-size:70%}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] h2.title-icon[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{top:14px;left:0;font-size:42px;position:absolute}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] h2.title-icon[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{font-size:30px;margin-left:40px;position:relative;top:3px}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] .link-button[_ngcontent-%COMP%]{display:block;background:inherit;position:absolute;right:20px;top:18px;padding-left:20px}.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{position:absolute;top:50%;margin:0;width:calc(100% - 40px);z-index:-1}@media only screen and (max-width: 991px){.uxc3[_nghost-%COMP%] > div[_ngcontent-%COMP%]{left:0}}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%]{position:fixed;left:120px;right:0;z-index:100;top:70px;background:#fff;padding:10px 20px;min-height:60px;border-bottom:solid 1px #e4e9f0;box-shadow:0 0 5px #eee}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%]{left:0}}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] h2[_ngcontent-%COMP%]{margin:0;padding:0;font-size:1.2em;display:inline}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{font-size:.9em;width:100%;padding-top:3px;margin:0}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{display:none}}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] .buttons[_ngcontent-%COMP%]{padding-top:2px}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] .buttons[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%]{margin-left:8px}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%]:hover .shortcut-button[_ngcontent-%COMP%]{opacity:1}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] .shortcut-button[_ngcontent-%COMP%]{width:22px;height:22px;line-height:22px;text-align:center;opacity:0;transition:opacity .2s}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] .shortcut-button.tem-atalho[_ngcontent-%COMP%]{opacity:1!important}.uxc2[_nghost-%COMP%] > div[_ngcontent-%COMP%] .shortcut-button[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:14px;color:#b99206;top:-2px}"] });
4281
4349
  (function () {
4282
4350
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoPagebarComponent, [{
4283
4351
  type: Component,
4284
4352
  args: [{ selector: 'info-pagebar', template: "<div [ngStyle]=\"{ 'marginTop': margintop + 'px' }\" [ngClass]=\"{ 'transparent': transparent }\" >\r\n \r\n <ng-container *ngIf=\"_platform.Config.ux >= 3\" >\r\n <h2 [ngClass]=\"{ 'title-icon': icon }\">\r\n <mat-icon *ngIf=\"icon\">{{ icon }}</mat-icon>\r\n <span [innerHTML]=\"pagetitle | translate\"></span>\r\n </h2>\r\n \r\n <div class=\"link-button\">\r\n <button mat-button type=\"button\" *ngIf=\"backurl\" color=\"primary\" (click)=\"goBack()\">\r\n <mat-icon class=\"fs-20\">chevron_left</mat-icon>{{ 'Voltar' | translate}}</button>\r\n\r\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\r\n\r\n <dl *ngIf=\"(access || []).length > 0\" class=\"acesso-rapido\" (mouseenter)=\"exibirAcessos = true\" (mouseleave)=\"exibirAcessos = false\">\r\n <dt>\r\n <mat-icon class=\"fs-20\">share</mat-icon>\r\n </dt>\r\n <dd *ngIf=\"exibirAcessos\">\r\n <ul>\r\n <li *ngFor=\"let a of access\">\r\n <a target=\"_blank\" [routerLink]=\"a.Url\" ><mat-icon>chevron_right</mat-icon> {{ a.Label | translate }}</a>\r\n </li>\r\n </ul> \r\n </dd>\r\n </dl>\r\n </div>\r\n <hr>\r\n </ng-container>\r\n \r\n <div class=\"row\" *ngIf=\"_platform.Config.ux <= 2\" >\r\n <div class=\"col-md-6\">\r\n <h2>\r\n <label id=\"page-title\" *ngIf=\"_platform.PaginaAtiva\">\r\n <mat-icon>{{ _platform.PaginaAtiva.Icone }}</mat-icon>\r\n {{ _platform.PaginaAtiva.Titulo | translate }}\r\n\r\n <ng-container *ngIf=\"pagetitle != null && pagetitle != ''\"> / </ng-container>\r\n </label>\r\n <label [outerHTML]=\"pagetitle | translate\"></label>\r\n </h2>\r\n <button *ngIf=\"podeCriarAtalho\" type=\"button\" mat-icon-button class=\"shortcut-button\" [ngClass]=\"{ 'tem-atalho': !!atalhoId }\" (click)=\"toggleAtalho()\" [disabled]=\"loading\">\r\n <mat-icon inline>{{ atalhoId ? 'star' : 'star_border' }}</mat-icon>\r\n </button>\r\n \r\n <p class=\"pagebar-description\" [innerHTML]=\"description | translate\"></p>\r\n </div>\r\n\r\n <div class=\"col-md-6 align-right buttons\">\r\n <button mat-button type=\"button\" *ngIf=\"backurl\" color=\"primary\" (click)=\"goBack()\">\r\n <mat-icon class=\"fs-20\">chevron_left</mat-icon>{{ 'Voltar' | translate}}\r\n </button>\r\n \r\n <ng-container *ngTemplateOutlet=\"content\"></ng-container>\r\n\r\n <dl *ngIf=\"(access || []).length > 0\" class=\"acesso-rapido\" (mouseenter)=\"exibirAcessos = true\" (mouseleave)=\"exibirAcessos = false\">\r\n <dt>\r\n <mat-icon class=\"fs-20\">share</mat-icon>\r\n </dt>\r\n <dd *ngIf=\"exibirAcessos\">\r\n <ul>\r\n <li *ngFor=\"let a of access\">\r\n <a target=\"_blank\" [routerLink]=\"a.Url\" ><mat-icon>chevron_right</mat-icon> {{ a.Label | translate }}</a>\r\n </li>\r\n </ul> \r\n </dd>\r\n </dl>\r\n </div>\r\n </div>\r\n</div>\r\n<section class=\"loading-bar\" *ngIf=\"loading\">\r\n <mat-progress-bar color=\"primary\" mode=\"indeterminate\"></mat-progress-bar>\r\n</section>\r\n\r\n<ng-template #content><ng-content></ng-content></ng-template>", styles: ["body{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}:host.topmenu>div{left:0!important;top:125px!important;width:100%!important}:host.uxc3>div{position:fixed;left:120px;z-index:100;top:80px;background:#FFF;padding:15px 20px 10px;min-height:60px;width:calc(100% - 120px);transition:left .2s ease-in-out,width .2s ease-in-out}:host.uxc3>div h2{font-size:1.7em;font-weight:500;display:inline-block;padding-right:20px;margin:0;max-width:65%;background:inherit}:host.uxc3>div h2 .mat-icon{top:3px;font-size:22px}:host.uxc3>div h2>small{font-size:70%}:host.uxc3>div h2.title-icon mat-icon{top:14px;left:0;font-size:42px;position:absolute}:host.uxc3>div h2.title-icon span{font-size:30px;margin-left:40px;position:relative;top:3px}:host.uxc3>div .link-button{display:block;background:inherit;position:absolute;right:20px;top:18px;padding-left:20px}:host.uxc3>div hr{position:absolute;top:50%;margin:0;width:calc(100% - 40px);z-index:-1}@media only screen and (max-width: 991px){:host.uxc3>div{left:0}}:host.uxc2>div{position:fixed;left:120px;right:0;z-index:100;top:70px;background:#fff;padding:10px 20px;min-height:60px;border-bottom:solid 1px #e4e9f0;box-shadow:0 0 5px #eee}@media only screen and (max-width: 543px){:host.uxc2>div{left:0}}:host.uxc2>div h2{margin:0;padding:0;font-size:1.2em;display:inline}:host.uxc2>div p{font-size:.9em;width:100%;padding-top:3px;margin:0}@media only screen and (max-width: 543px){:host.uxc2>div p{display:none}}:host.uxc2>div .buttons{padding-top:2px}:host.uxc2>div .buttons .mat-button{margin-left:8px}:host.uxc2>div:hover .shortcut-button{opacity:1}:host.uxc2>div .shortcut-button{width:22px;height:22px;line-height:22px;text-align:center;opacity:0;transition:opacity .2s}:host.uxc2>div .shortcut-button.tem-atalho{opacity:1!important}:host.uxc2>div .shortcut-button .mat-icon{font-size:14px;color:#b99206;top:-2px}\n"] }]
4285
- }], function () { return [{ type: i1$1.Router }, { type: i1$3.MatDialog }, { type: InfoDataService }, { type: InfoTranslateService }, { type: InfoPlatformModel }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, { margintop: [{
4353
+ }], function () { return [{ type: i1$2.Router }, { type: i1$4.MatDialog }, { type: InfoDataService }, { type: InfoTranslateService }, { type: InfoPlatformModel }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, { margintop: [{
4286
4354
  type: Input
4287
4355
  }], icon: [{
4288
4356
  type: Input
@@ -6050,7 +6118,7 @@ class InfoGridComponent {
6050
6118
  }
6051
6119
  }
6052
6120
  }
6053
- /** @nocollapse */ InfoGridComponent.ɵfac = function InfoGridComponent_Factory(t) { return new (t || InfoGridComponent)(i0.ɵɵdirectiveInject(InfoDialogModal), i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(i1$3.MatDialog), i0.ɵɵdirectiveInject(InfoFormPropModel), i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(i1$1.Router), i0.ɵɵdirectiveInject(i1$1.ActivatedRoute), i0.ɵɵdirectiveInject(InfoAuthenticationService), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(InfoTranslateService), i0.ɵɵdirectiveInject(InfoLastSearchModel), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef)); };
6121
+ /** @nocollapse */ InfoGridComponent.ɵfac = function InfoGridComponent_Factory(t) { return new (t || InfoGridComponent)(i0.ɵɵdirectiveInject(InfoDialogModal), i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(i1$4.MatDialog), i0.ɵɵdirectiveInject(InfoFormPropModel), i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(i1$2.Router), i0.ɵɵdirectiveInject(i1$2.ActivatedRoute), i0.ɵɵdirectiveInject(InfoAuthenticationService), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(InfoTranslateService), i0.ɵɵdirectiveInject(InfoLastSearchModel), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef)); };
6054
6122
  /** @nocollapse */ InfoGridComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoGridComponent, selectors: [["info-grid"]], contentQueries: function InfoGridComponent_ContentQueries(rf, ctx, dirIndex) {
6055
6123
  if (rf & 1) {
6056
6124
  i0.ɵɵcontentQuery(dirIndex, NgModel, 4);
@@ -6112,12 +6180,12 @@ class InfoGridComponent {
6112
6180
  i0.ɵɵadvance(1);
6113
6181
  i0.ɵɵproperty("messages", ctx.messages);
6114
6182
  }
6115
- }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i1$2.NgStyle, i1$2.NgSwitch, i1$2.NgSwitchCase, i2.ɵNgNoValidate, i2.NgControlStatusGroup, i2.NgForm, i4.MatIcon, i13.MatButton, i13.MatAnchor, i7.MatProgressBar, i15.MatTooltip, InfoAlertComponent, InfoPaginatorComponent, InfoPagebarComponent, i1$2.DecimalPipe, i1$2.DatePipe, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%]{display:block;position:relative}[_nghost-%COMP%] #auto-refresh[_ngcontent-%COMP%]{position:absolute;top:8px;right:0;margin:0;padding:0;background:transparent}[_nghost-%COMP%] #auto-refresh[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{font-size:18px;cursor:default}[_nghost-%COMP%] .loading-bar[_ngcontent-%COMP%] .mat-progress-bar[_ngcontent-%COMP%]{height:3px;top:25px;opacity:.1}[_nghost-%COMP%] .table-title[_ngcontent-%COMP%]{background:#fcfcfc}[_nghost-%COMP%] .table-title[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%]{width:25px;height:25px;line-height:25px;text-align:center}[_nghost-%COMP%] .table-title[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:18px}[_nghost-%COMP%] .table-title[_ngcontent-%COMP%] [_ngcontent-%COMP%]:hover{transition:color .2s}[_nghost-%COMP%] .search-container[_ngcontent-%COMP%]{margin-top:10px;position:relative}[_nghost-%COMP%] .title-grid[_ngcontent-%COMP%]{padding-top:8px;font-size:.8rem;text-transform:uppercase;font-weight:700}[_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_id[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_dia[_ngcontent-%COMP%]{width:80px}[_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_moeda[_ngcontent-%COMP%]{width:90px}[_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_dataposicao[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_referencia[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_data[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_datacotacao[_ngcontent-%COMP%]{width:125px}[_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_conta[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_identificador[_ngcontent-%COMP%]{width:250px}[_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_cliente[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_nome[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_descricao[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_nome[_ngcontent-%COMP%]{width:400px}[_nghost-%COMP%] table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] .icone-secundario[_ngcontent-%COMP%]{font-size:12px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table-title[_ngcontent-%COMP%]{padding:0!important}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%]{background:transparent}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] th[_ngcontent-%COMP%]{border-top:none;text-transform:capitalize;padding:5px;font-size:10px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] th.actions[_ngcontent-%COMP%]{border-bottom-width:0}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] th[_ngcontent-%COMP%]:after{display:none}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] th[_ngcontent-%COMP%] .managercols[_ngcontent-%COMP%]{background-color:var(--ux-cor-P);right:0;opacity:0;transition:opacity .3s ease-in-out}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%]:hover .managercols[_ngcontent-%COMP%]{opacity:1!important}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]{height:35px;background:#f9f9f9}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%]{font-size:13px;font-weight:600;cursor:default;padding:8px 5px 0;transition:color .2s ease-in-out}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] .mostrar-mais[_ngcontent-%COMP%]{width:100%;display:flex;position:relative;bottom:18px;box-shadow:0 -6px 6px -3px RGB(0 0 0/20%);align-items:baseline;justify-content:center;background-color:#f9f9f9}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] .mostrar-mais[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{height:5px;line-height:11px;cursor:pointer;transition:transform .2s ease-in-out;transform:rotate(0)}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] .mostrar-mais[_ngcontent-%COMP%] .mat-icon.icone-expandido[_ngcontent-%COMP%]{transform:rotate(180deg)}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] .mostrar-mais.mostrar-mais-expandido[_ngcontent-%COMP%]{bottom:0;box-shadow:none}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td.td-actions[_ngcontent-%COMP%]{border-radius:5px;padding-top:7px;padding-bottom:4px;border-bottom:none;margin-top:1px;right:2px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td.td-actions[_ngcontent-%COMP%] button[_ngcontent-%COMP%]:disabled{pointer-events:none;opacity:.4}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{height:17px;line-height:17px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{position:relative;text-transform:uppercase;border:solid 1px;border-radius:3px;padding:2px 5px;font-size:8px;display:inline-block;margin:0 0 0 5px;top:-2px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] .td-expansivel[_ngcontent-%COMP%] .label-expansivel[_ngcontent-%COMP%]{overflow:hidden;height:35px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] .td-expansivel[_ngcontent-%COMP%] .label-expansivel.break-word[_ngcontent-%COMP%]{word-break:break-word}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] .td-expansivel[_ngcontent-%COMP%] .label-expansivel.label-expandida[_ngcontent-%COMP%]{height:100%}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:hover{background:#f9f9f9}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:hover .mostrar-mais[_ngcontent-%COMP%]{background-color:#f9f9f9}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:nth-child(even):hover{background:#fff}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:nth-child(even):hover .mostrar-mais[_ngcontent-%COMP%]{background-color:#fff}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:nth-child(even):hover .td-actions[_ngcontent-%COMP%]{background:#fff}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr.clickable[_ngcontent-%COMP%]{position:relative;z-index:0}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr.clickable[_ngcontent-%COMP%] *[_ngcontent-%COMP%]{cursor:pointer}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr.clickable[_ngcontent-%COMP%] td[_ngcontent-%COMP%]:first-child{padding-left:8px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr.clickable[_ngcontent-%COMP%]:hover:after{z-index:-1;content:\" \";display:block;width:100%;height:100%;position:absolute;top:0;border-right:solid 2px var(--cor-C);border-left:solid 2px var(--cor-C);left:0;opacity:.4}"] });
6183
+ }, dependencies: [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i1$3.NgStyle, i1$3.NgSwitch, i1$3.NgSwitchCase, i2.ɵNgNoValidate, i2.NgControlStatusGroup, i2.NgForm, i4.MatIcon, i13.MatButton, i13.MatAnchor, i7.MatProgressBar, i15.MatTooltip, InfoAlertComponent, InfoPaginatorComponent, InfoPagebarComponent, i1$3.DecimalPipe, i1$3.DatePipe, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%]{display:block;position:relative}[_nghost-%COMP%] #auto-refresh[_ngcontent-%COMP%]{position:absolute;top:8px;right:0;margin:0;padding:0;background:transparent}[_nghost-%COMP%] #auto-refresh[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{font-size:18px;cursor:default}[_nghost-%COMP%] .loading-bar[_ngcontent-%COMP%] .mat-progress-bar[_ngcontent-%COMP%]{height:3px;top:25px;opacity:.1}[_nghost-%COMP%] .table-title[_ngcontent-%COMP%]{background:#fcfcfc}[_nghost-%COMP%] .table-title[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%]{width:25px;height:25px;line-height:25px;text-align:center}[_nghost-%COMP%] .table-title[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:18px}[_nghost-%COMP%] .table-title[_ngcontent-%COMP%] [_ngcontent-%COMP%]:hover{transition:color .2s}[_nghost-%COMP%] .search-container[_ngcontent-%COMP%]{margin-top:10px;position:relative}[_nghost-%COMP%] .title-grid[_ngcontent-%COMP%]{padding-top:8px;font-size:.8rem;text-transform:uppercase;font-weight:700}[_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_id[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_dia[_ngcontent-%COMP%]{width:80px}[_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_moeda[_ngcontent-%COMP%]{width:90px}[_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_dataposicao[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_referencia[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_data[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_datacotacao[_ngcontent-%COMP%]{width:125px}[_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_conta[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_identificador[_ngcontent-%COMP%]{width:250px}[_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_cliente[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_nome[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_descricao[_ngcontent-%COMP%], [_nghost-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] .col_nome[_ngcontent-%COMP%]{width:400px}[_nghost-%COMP%] table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] .icone-secundario[_ngcontent-%COMP%]{font-size:12px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table-title[_ngcontent-%COMP%]{padding:0!important}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%]{background:transparent}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] th[_ngcontent-%COMP%]{border-top:none;text-transform:capitalize;padding:5px;font-size:10px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] th.actions[_ngcontent-%COMP%]{border-bottom-width:0}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] th[_ngcontent-%COMP%]:after{display:none}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] th[_ngcontent-%COMP%] .managercols[_ngcontent-%COMP%]{background-color:var(--ux-cor-P);right:0;opacity:0;transition:opacity .3s ease-in-out}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%]:hover .managercols[_ngcontent-%COMP%]{opacity:1!important}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]{height:35px;background:#f9f9f9}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%]{font-size:13px;font-weight:600;cursor:default;padding:8px 5px 0;transition:color .2s ease-in-out}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] .mostrar-mais[_ngcontent-%COMP%]{width:100%;display:flex;position:relative;bottom:18px;box-shadow:0 -6px 6px -3px RGB(0 0 0/20%);align-items:baseline;justify-content:center;background-color:#f9f9f9}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] .mostrar-mais[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{height:5px;line-height:11px;cursor:pointer;transition:transform .2s ease-in-out;transform:rotate(0)}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] .mostrar-mais[_ngcontent-%COMP%] .mat-icon.icone-expandido[_ngcontent-%COMP%]{transform:rotate(180deg)}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] .mostrar-mais.mostrar-mais-expandido[_ngcontent-%COMP%]{bottom:0;box-shadow:none}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td.td-actions[_ngcontent-%COMP%]{border-radius:5px;padding-top:7px;padding-bottom:4px;border-bottom:none;margin-top:1px;right:2px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td.td-actions[_ngcontent-%COMP%] button[_ngcontent-%COMP%]:disabled{pointer-events:none;opacity:.4}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{height:17px;line-height:17px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{position:relative;text-transform:uppercase;border:solid 1px;border-radius:3px;padding:2px 5px;font-size:8px;display:inline-block;margin:0 0 0 5px;top:-2px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] .td-expansivel[_ngcontent-%COMP%] .label-expansivel[_ngcontent-%COMP%]{overflow:hidden;height:35px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] .td-expansivel[_ngcontent-%COMP%] .label-expansivel.break-word[_ngcontent-%COMP%]{word-break:break-word}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] .td-expansivel[_ngcontent-%COMP%] .label-expansivel.label-expandida[_ngcontent-%COMP%]{height:100%}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:hover{background:#f9f9f9}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:hover .mostrar-mais[_ngcontent-%COMP%]{background-color:#f9f9f9}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:nth-child(even):hover{background:#fff}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:nth-child(even):hover .mostrar-mais[_ngcontent-%COMP%]{background-color:#fff}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:nth-child(even):hover .td-actions[_ngcontent-%COMP%]{background:#fff}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr.clickable[_ngcontent-%COMP%]{position:relative;z-index:0}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr.clickable[_ngcontent-%COMP%] *[_ngcontent-%COMP%]{cursor:pointer}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr.clickable[_ngcontent-%COMP%] td[_ngcontent-%COMP%]:first-child{padding-left:8px}.uxc3[_nghost-%COMP%] div.table-responsive[_ngcontent-%COMP%] .table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr.clickable[_ngcontent-%COMP%]:hover:after{z-index:-1;content:\" \";display:block;width:100%;height:100%;position:absolute;top:0;border-right:solid 2px var(--cor-C);border-left:solid 2px var(--cor-C);left:0;opacity:.4}"] });
6116
6184
  (function () {
6117
6185
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoGridComponent, [{
6118
6186
  type: Component,
6119
6187
  args: [{ selector: 'info-grid', providers: [InfoFormPropModel], template: "<info-pagebar *ngIf=\"showPagebar\" [pagetitle]=\"pagebarTitle\" [description]=\"description\">\r\n <button mat-button type=\"button\" *ngIf=\"backurl != null && backurl != ''\" color=\"primary\" (click)=\"back()\">\r\n <mat-icon class=\"fs-20\">chevron_left</mat-icon>{{\"Voltar\" | translate}}\r\n </button>\r\n\r\n <ng-container *ngFor=\"let b of pagebarbuttons\">\r\n <button type=\"button\" mat-button color=\"primary\" (click)=\"b.modal == null ? navigateTo(b.url, false, null) : openCustomModal(b.modal, b.modalwidth, null)\">\r\n <mat-icon *ngIf=\"b.icon != 'chevron_right'\" class=\"fs-20\">{{ b.icon }}</mat-icon>\r\n {{ b.label | translate }}\r\n </button>\r\n </ng-container>\r\n\r\n <button mat-button type=\"button\" *ngIf=\"searchmodel != null && !enabledSearch\" color=\"primary\" (click)=\"enabledSearch = !enabledSearch\">\r\n <mat-icon class=\"fs-20\">search</mat-icon> {{ \"Pesquisar\" | translate}}\r\n </button>\r\n\r\n <button mat-button type=\"button\" *ngIf=\"searchmodel != null && enabledSearch\" color=\"primary\" (click)=\"enabledSearch = !enabledSearch\">\r\n <mat-icon class=\"fs-20\">search_off</mat-icon> {{ \"Ocultar\" | translate}}\r\n </button>\r\n\r\n <button mat-button type=\"button\" *ngIf=\"enablednew && hasPermissionNew\" color=\"primary\" (click)=\"add()\">\r\n <mat-icon class=\"fs-20\">add</mat-icon> {{ newlabel | translate}}\r\n </button>\r\n</info-pagebar>\r\n\r\n<div [ngClass]=\"{ 'table-full': fullarea }\">\r\n <div class=\"table-responsive white\">\r\n <div class=\"table-title grid-search\" [ngStyle]=\"{ 'padding': (enabledSearch ? 10 : 0) + 'px 20px' }\">\r\n <form autocomplete=\"off\" #formSearch=\"ngForm\" (ngSubmit)=\"search()\">\r\n <div *ngIf=\"enabledSearch\" class=\"search-container row\">\r\n <div class=\"col-md-{{(searchbuttons || []).length == 0 ? '10' : '9' }}\">\r\n <div class=\"row\">\r\n <ng-content></ng-content>\r\n </div>\r\n </div>\r\n <div class=\"col-md-{{(searchbuttons || []).length == 0 ? '2' : '3' }} align-right\" *ngIf=\"searchmodel != null\">\r\n <div class=\"search-buttons \">\r\n <ng-container *ngIf=\"searchonlyonebutton\">\r\n <button mat-button type=\"submit\" color=\"primary\" [disabled]=\"formSearch.invalid || loading\">\r\n {{ 'Buscar' | translate }}\r\n </button>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"!searchonlyonebutton\">\r\n <button mat-button type=\"button\" color=\"warn\" (click)=\"cancelSearch()\" *ngIf=\"enabledcancelsearch\">\r\n <mat-icon class=\"fs-20\">close</mat-icon>\r\n </button>\r\n <button mat-button type=\"submit\" color=\"primary\" [disabled]=\"formSearch.invalid || loading\">\r\n <mat-icon class=\"fs-20\">search</mat-icon>\r\n </button>\r\n \r\n <ng-container *ngFor=\"let b of searchbuttons\">\r\n <button mat-button type=\"button\" color=\"primary\" [disabled]=\"formSearch.invalid || loading\" (click)=\"b.method()\">\r\n <mat-icon *ngIf=\"b.icon\" class=\"fs-20\">{{b.icon | translate}}</mat-icon> {{b.label | translate}}\r\n </button>\r\n </ng-container>\r\n \r\n </ng-container>\r\n </div>\r\n </div>\r\n </div>\r\n </form>\r\n </div>\r\n\r\n <fieldset *ngIf=\"!showPagebar\"><legend [innerHTML]=\"pagebarTitle | translate\"></legend></fieldset>\r\n <section class=\"loading-bar\"><mat-progress-bar color=\"primary\" mode=\"indeterminate\" *ngIf=\"loading\"></mat-progress-bar></section>\r\n\r\n <!-- <div id=\"auto-refresh\" *ngIf=\"autorefresh > 0\">\r\n <i class=\"material-icons\" matTooltip=\"{{ 'AutoRefresh' | translate }} {{ autorefresh }} seg\" matTooltipPosition=\"left\">access_time</i>\r\n </div> -->\r\n\r\n <table class=\"table table-hover\" [ngStyle]=\"{ 'min-height.px': tableHeight }\" [ngClass]=\"{ 'loading': loading, 'clickaccess': enabledclickaccess }\" *ngIf=\"data != null\">\r\n <thead>\r\n <tr>\r\n <th style=\"width: 5%;\" *ngIf=\"enabledclassicons && data?.length > 0 && data[0]?.Icon != null\"></th>\r\n\r\n <ng-container *ngFor=\"let col of colunasHeaders; let i = index\">\r\n <th *ngIf=\"colunasWidth[i] == ''\" [class]=\"'col_' + col.toLowerCase()\" [ngClass]=\"{ 'text-center': colunasType[i] == 'check', 'align-right': colunasType[i].startsWith('n') }\">{{ col | translate }}</th>\r\n <th *ngIf=\"colunasWidth[i] != ''\" [ngStyle]=\"{ 'width': colunasWidth[i] }\" [ngClass]=\"{ 'text-center': colunasType[i] == 'check', 'align-right': colunasType[i].startsWith('n') }\">{{ col | translate }}</th>\r\n </ng-container>\r\n\r\n <th class=\"actions align-right buttons\" *ngIf=\"(templateurl != '') || (buttons != null && buttons.length > 0) || enableddetail || enabledview || enabledcols || ((disabledcol == '') && enablededit && hasPermissionEdit) || ((disabledcol == '') && enableddelete && hasPermissionDelete)\">\r\n <button mat-icon-button type=\"button\"[matTooltip]=\"newlabel | translate\" matTooltipPosition=\"left\" (click)=\"add()\" *ngIf=\"!showPagebar && enablednew && hasPermissionNew\">\r\n <mat-icon>add_circle</mat-icon>\r\n </button>\r\n <button mat-icon-button type=\"button\" class=\"managercols\" [matTooltip]=\"'CustomizarTabela' | translate\" matTooltipPosition=\"left\" (click)=\"customizeTable()\" *ngIf=\"enabledcols\">\r\n <mat-icon class=\"icon-out\">settings</mat-icon>\r\n </button>\r\n </th>\r\n </tr>\r\n </thead>\r\n <tbody class=\"grid-content\">\r\n <tr *ngFor=\"let mod of data; let j = index\" [ngClass]=\"{ 'default-color': !enabledclassicons, 'clickable': (((disabledcol == '' || mod[disabledcol] === true) && enablededit && hasPermissionEdit) || enabledview) }\" [class]=\"mod.Class\" (click)=\"access(mod, $event)\">\r\n <td *ngIf=\"enabledclassicons && mod?.Icon != null\">\r\n <ng-container *ngFor=\"let icon of icons\">\r\n <i class=\"material-icons\" [matTooltip]=\"icon.Tooltip | translate\" *ngIf=\"icon.Name == mod.Icon\" [ngClass]=\"{ 'icone-secundario': icon.Principal == false }\">{{icon.Icon}}</i>\r\n </ng-container>\r\n </td>\r\n\r\n <ng-container *ngFor=\"let col of colunasItens; let i = index\">\r\n <td *ngIf=\"mod[col] == null || mod[col] == undefined\"></td>\r\n <ng-container [ngSwitch]=\"colunasType[i]\" *ngIf=\"mod[col] != null && mod[col] != undefined\">\r\n <ng-container *ngSwitchCase=\"'label'\">\r\n <td [ngClass]=\"{ 'td-expansivel': mod[col].length > limitcharacters && enabledexpand == true}\" *ngIf=\"mod[col] !== true && mod[col] !== false && mod[col] !== 0 && mod[col] !== '0'\">\r\n <label [ngClass]=\"{'label-expansivel': enabledexpand == true && mod[col].length > limitcharacters, 'label-expandida': (colunasItensExpandidos[j] || [])[i] }\" *ngIf=\"colunasHtml[i] === true\" [innerHTML]=\"(mod[col] | translate:colunasTranslate[i]) || '' \"></label>\r\n <label class=\"break-word\" [ngClass]=\"{'label-expansivel': enabledexpand == true && mod[col].length > limitcharacters, 'label-expandida': (colunasItensExpandidos[j] || [])[i] }\" *ngIf=\"colunasHtml[i] === false\">{{ (mod[col] | translate:colunasHtml[i]) || '' }}</label>\r\n <div *ngIf=\"enabledexpand == true && mod[col].length > limitcharacters\" [ngClass]=\"{'mostrar-mais-expandido': (colunasItensExpandidos[j] || [])[i] }\" class=\"mostrar-mais\" (click)=\"mostrarMais(j, i, $event)\">\r\n <mat-icon [ngClass]=\"{'icone-expandido': (colunasItensExpandidos[j] || [])[i] }\">keyboard_arrow_down</mat-icon>\r\n </div>\r\n <p *ngIf=\"i == 0 && mod.Badge != null && mod.Badge != undefined\">{{ mod.Badge | translate:colunasTranslate[i] }}</p>\r\n </td>\r\n <td *ngIf=\"mod[col] === true\"><mat-icon>check_box</mat-icon></td>\r\n <td *ngIf=\"mod[col] === false\"><mat-icon>check_box_outline_blank</mat-icon></td>\r\n <td *ngIf=\"mod[col] === 0 || mod[col] === '0'\">0</td>\r\n </ng-container>\r\n\r\n <td nowrap *ngSwitchCase=\"'date'\" [innerHTML]=\"mod[col] | date:'shortDate'\"></td>\r\n <td nowrap *ngSwitchCase=\"'datetime'\">{{ mod[col] | date:'shortDate' }} {{ mod[col] | date:'mediumTime' }}</td>\r\n <td nowrap *ngSwitchCase=\"'monthyear'\" [innerHTML]=\"mod[col] | date:'MM/yyyy'\"></td>\r\n <td nowrap *ngSwitchCase=\"'n0'\" [class]=\"'align-right ' + (mod[col] < 0 ? 'text-red' : '')\">{{ mod[col] | number:'1.0-0' }}</td>\r\n <td nowrap *ngSwitchCase=\"'n2'\" [class]=\"'align-right ' + (mod[col] < 0 ? 'text-red' : '')\">{{ mod[col] | number:'1.2-2' }}</td>\r\n <td nowrap *ngSwitchCase=\"'n4'\" [class]=\"'align-right ' + (mod[col] < 0 ? 'text-red' : '')\">{{ mod[col] | number:'1.4-4' }}</td>\r\n <td nowrap *ngSwitchCase=\"'n6'\" [class]=\"'align-right ' + (mod[col] < 0 ? 'text-red' : '')\">{{ mod[col] | number:'1.6-6' }}</td>\r\n <td nowrap *ngSwitchCase=\"'n9'\" [class]=\"'align-right ' + (mod[col] < 0 ? 'text-red' : '')\">{{ mod[col] | number:'1.9-9' }}</td>\r\n <td nowrap *ngSwitchCase=\"'n12'\" [class]=\"'align-right ' + (mod[col] < 0 ? 'text-red' : '')\">{{ mod[col] | number:'1.12-12' }}</td>\r\n \r\n <td *ngSwitchCase=\"'check'\" class=\"text-center\">\r\n <ng-container *ngIf=\"mod[col] != null && (mod[col] === true || mod[col] == 1 || mod[col].toLowerCase() == 's'); then checked; else unchecked\"></ng-container>\r\n <ng-template #checked><mat-icon>check_box</mat-icon></ng-template>\r\n <ng-template #unchecked><mat-icon>check_box_outline_blank</mat-icon></ng-template>\r\n </td>\r\n </ng-container>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"enabledclickaccess\">\r\n <td class=\"td-actions clickaccess\">\r\n <button mat-icon-button type=\"button\" (click)=\"access(mod, $event)\" *ngIf=\"enabledview\">\r\n <mat-icon>{{accessicon || 'arrow_forward'}}</mat-icon>\r\n </button>\r\n </td>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"!enabledclickaccess\">\r\n <td class=\"td-actions\" *ngIf=\"(templateurl != '') || (buttons != null && buttons.length > 0) || (mod.Download != null) || enableddetail || (mod?.Info != null) || enabledview || ((disabledcol == '' || mod[disabledcol] === true) && enablededit && hasPermissionEdit) || ((disabledcol == '' || mod[disabledcol] === true) && enableddelete && hasPermissionDelete)\">\r\n\r\n <a mat-icon-button href=\"{{ templateurl.replace('{id}', mod.Id) }}\" target=\"_blank\" [matTooltip]=\"'Abrir' | translate\" *ngIf=\"templateurl != ''\">\r\n <mat-icon>visibility</mat-icon>\r\n </a>\r\n\r\n <ng-container *ngFor=\"let b of buttons\">\r\n <button mat-icon-button type=\"button\" [matTooltip]=\"b.label | translate\" (click)=\"$event.stopPropagation(); b.modalComponent != null ? openCustomModal(b.modalComponent, b.widthModalComponent, mod) : b.api != null ? eventButton(mod, b.api, b.method, b.confirm) : navigateTo(b.navigateTo, b.passId, mod.Id)\" *ngIf=\"b.showOnlyClass == null || b.showOnlyClass == mod.Class\" [disabled]=\"b.disabledField && mod[b.disabledField] === true\">\r\n <mat-icon>{{b.icon}}</mat-icon>\r\n </button>\r\n </ng-container>\r\n\r\n <button mat-icon-button type=\"button\" [matTooltip]=\"'Download' | translate\" (click)=\"$event.stopPropagation(); download(mod.Download)\" *ngIf=\"mod.Download != null\">\r\n <mat-icon>file_download</mat-icon>\r\n </button>\r\n \r\n <button mat-icon-button type=\"button\" [matTooltip]=\"'Detalhe' | translate\" (click)=\"$event.stopPropagation(); detail(mod)\" *ngIf=\"enableddetail\">\r\n <mat-icon>list</mat-icon>\r\n </button>\r\n \r\n <button mat-icon-button type=\"button\" [matTooltip]=\"'Informacao' | translate\" (click)=\"$event.stopPropagation(); info(mod?.Info)\" *ngIf=\"mod?.Info != null\" [disabled]=\"mod?.Info == ''\">\r\n <mat-icon>info</mat-icon>\r\n </button>\r\n \r\n <button mat-icon-button type=\"button\" [matTooltip]=\"'Excluir' | translate\" (click)=\"delete(mod, $event)\" *ngIf=\"(disabledcol == '' || mod[disabledcol] === true) && enableddelete && hasPermissionDelete && !mod.HideDelete\">\r\n <mat-icon>delete</mat-icon>\r\n </button>\r\n\r\n <button mat-icon-button type=\"button\" [matTooltip]=\"'Acessar' | translate\" (click)=\"edit(mod, $event)\" *ngIf=\"((disabledcol == '' || mod[disabledcol] === true) && enablededit && hasPermissionEdit) || enabledview\">\r\n <mat-icon>arrow_forward</mat-icon>\r\n </button>\r\n </td>\r\n </ng-container>\r\n </tr>\r\n </tbody>\r\n </table>\r\n <span class=\"blank-table\" *ngIf=\"data != null && data.length == 0\">{{\"NenhumItemEncontrado\" | translate}}</span>\r\n\r\n <info-paginator #paginator [hidden]=\"!paged || (data != null && data.length == 0)\" [size]=\"size\" (change)=\"changePage($event)\" ></info-paginator>\r\n </div>\r\n</div>\r\n\r\n<div class=\"block\" *ngIf=\"loading\"></div>\r\n<info-alert [messages]=\"messages\"></info-alert>", styles: ["body{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}:host{display:block;position:relative}:host #auto-refresh{position:absolute;top:8px;right:0;margin:0;padding:0;background:transparent}:host #auto-refresh i{font-size:18px;cursor:default}:host .loading-bar .mat-progress-bar{height:3px;top:25px;opacity:.1}:host .table-title{background:#fcfcfc}:host .table-title .mat-icon-button{width:25px;height:25px;line-height:25px;text-align:center}:host .table-title .mat-icon-button .mat-icon{font-size:18px}:host .table-title :hover{transition:color .2s}:host .search-container{margin-top:10px;position:relative}:host .title-grid{padding-top:8px;font-size:.8rem;text-transform:uppercase;font-weight:700}:host table thead .col_id,:host table thead .col_dia{width:80px}:host table thead .col_moeda{width:90px}:host table thead .col_dataposicao,:host table thead .col_referencia,:host table thead .col_data,:host table thead .col_datacotacao{width:125px}:host table thead .col_conta,:host table thead .col_identificador{width:250px}:host table thead .col_cliente,:host table thead .col_nome,:host table thead .col_descricao,:host table thead .col_nome{width:400px}:host table tbody .icone-secundario{font-size:12px}:host.uxc3 div.table-responsive .table-title{padding:0!important}:host.uxc3 div.table-responsive .table thead{background:transparent}:host.uxc3 div.table-responsive .table thead th{border-top:none;text-transform:capitalize;padding:5px;font-size:10px}:host.uxc3 div.table-responsive .table thead th.actions{border-bottom-width:0}:host.uxc3 div.table-responsive .table thead th:after{display:none}:host.uxc3 div.table-responsive .table thead th .managercols{background-color:var(--ux-cor-P);right:0;opacity:0;transition:opacity .3s ease-in-out}:host.uxc3 div.table-responsive .table thead:hover .managercols{opacity:1!important}:host.uxc3 div.table-responsive .table tbody tr{height:35px;background:#f9f9f9}:host.uxc3 div.table-responsive .table tbody tr td{font-size:13px;font-weight:600;cursor:default;padding:8px 5px 0;transition:color .2s ease-in-out}:host.uxc3 div.table-responsive .table tbody tr td .mostrar-mais{width:100%;display:flex;position:relative;bottom:18px;box-shadow:0 -6px 6px -3px RGB(0 0 0/20%);align-items:baseline;justify-content:center;background-color:#f9f9f9}:host.uxc3 div.table-responsive .table tbody tr td .mostrar-mais .mat-icon{height:5px;line-height:11px;cursor:pointer;transition:transform .2s ease-in-out;transform:rotate(0)}:host.uxc3 div.table-responsive .table tbody tr td .mostrar-mais .mat-icon.icone-expandido{transform:rotate(180deg)}:host.uxc3 div.table-responsive .table tbody tr td .mostrar-mais.mostrar-mais-expandido{bottom:0;box-shadow:none}:host.uxc3 div.table-responsive .table tbody tr td.td-actions{border-radius:5px;padding-top:7px;padding-bottom:4px;border-bottom:none;margin-top:1px;right:2px}:host.uxc3 div.table-responsive .table tbody tr td.td-actions button:disabled{pointer-events:none;opacity:.4}:host.uxc3 div.table-responsive .table tbody tr td mat-icon{height:17px;line-height:17px}:host.uxc3 div.table-responsive .table tbody tr td p{position:relative;text-transform:uppercase;border:solid 1px;border-radius:3px;padding:2px 5px;font-size:8px;display:inline-block;margin:0 0 0 5px;top:-2px}:host.uxc3 div.table-responsive .table tbody tr .td-expansivel .label-expansivel{overflow:hidden;height:35px}:host.uxc3 div.table-responsive .table tbody tr .td-expansivel .label-expansivel.break-word{word-break:break-word}:host.uxc3 div.table-responsive .table tbody tr .td-expansivel .label-expansivel.label-expandida{height:100%}:host.uxc3 div.table-responsive .table tbody tr:hover{background:#f9f9f9}:host.uxc3 div.table-responsive .table tbody tr:hover .mostrar-mais{background-color:#f9f9f9}:host.uxc3 div.table-responsive .table tbody tr:nth-child(even):hover{background:#fff}:host.uxc3 div.table-responsive .table tbody tr:nth-child(even):hover .mostrar-mais{background-color:#fff}:host.uxc3 div.table-responsive .table tbody tr:nth-child(even):hover .td-actions{background:#fff}:host.uxc3 div.table-responsive .table tbody tr.clickable{position:relative;z-index:0}:host.uxc3 div.table-responsive .table tbody tr.clickable *{cursor:pointer}:host.uxc3 div.table-responsive .table tbody tr.clickable td:first-child{padding-left:8px}:host.uxc3 div.table-responsive .table tbody tr.clickable:hover:after{z-index:-1;content:\" \";display:block;width:100%;height:100%;position:absolute;top:0;border-right:solid 2px var(--cor-C);border-left:solid 2px var(--cor-C);left:0;opacity:.4}\n"] }]
6120
- }], function () { return [{ type: InfoDialogModal }, { type: InfoPlatformModel }, { type: i1$3.MatDialog }, { type: InfoFormPropModel }, { type: InfoDataService }, { type: i1$1.Router }, { type: i1$1.ActivatedRoute }, { type: InfoAuthenticationService }, { type: i0.ChangeDetectorRef }, { type: InfoTranslateService }, { type: InfoLastSearchModel }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, { pagetitle: [{
6188
+ }], function () { return [{ type: InfoDialogModal }, { type: InfoPlatformModel }, { type: i1$4.MatDialog }, { type: InfoFormPropModel }, { type: InfoDataService }, { type: i1$2.Router }, { type: i1$2.ActivatedRoute }, { type: InfoAuthenticationService }, { type: i0.ChangeDetectorRef }, { type: InfoTranslateService }, { type: InfoLastSearchModel }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, { pagetitle: [{
6121
6189
  type: Input
6122
6190
  }], prefixtitle: [{
6123
6191
  type: Input
@@ -6274,7 +6342,7 @@ class InfoGridModalComponent {
6274
6342
  this._ref.close(this._prop);
6275
6343
  }
6276
6344
  }
6277
- /** @nocollapse */ InfoGridModalComponent.ɵfac = function InfoGridModalComponent_Factory(t) { return new (t || InfoGridModalComponent)(i0.ɵɵdirectiveInject(MAT_DIALOG_DATA), i0.ɵɵdirectiveInject(i1$3.MatDialogRef), i0.ɵɵdirectiveInject(i1$3.MatDialog)); };
6345
+ /** @nocollapse */ InfoGridModalComponent.ɵfac = function InfoGridModalComponent_Factory(t) { return new (t || InfoGridModalComponent)(i0.ɵɵdirectiveInject(MAT_DIALOG_DATA), i0.ɵɵdirectiveInject(i1$4.MatDialogRef), i0.ɵɵdirectiveInject(i1$4.MatDialog)); };
6278
6346
  /** @nocollapse */ InfoGridModalComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoGridModalComponent, selectors: [["ng-component"]], features: [i0.ɵɵProvidersFeature([InfoFormPropModel])], decls: 15, vars: 7, consts: [["modaltitle", "CustomizarTabela", 3, "onsave"], ["color", "warning", 1, "min"], [1, "icon-out"], [1, "listagem"], [4, "ngFor", "ngForOf"], [4, "ngIf"], [3, "ngModel", "placeholder", "name", "ngModelChange"]], template: function InfoGridModalComponent_Template(rf, ctx) {
6279
6347
  if (rf & 1) {
6280
6348
  i0.ɵɵelementStart(0, "info-modal", 0);
@@ -6303,7 +6371,7 @@ class InfoGridModalComponent {
6303
6371
  i0.ɵɵadvance(3);
6304
6372
  i0.ɵɵproperty("ngForOf", ctx.colunas);
6305
6373
  }
6306
- }, dependencies: [i1$2.NgForOf, i1$2.NgIf, i2.NgControlStatus, i2.NgModel, i4.MatIcon, InfoCheckboxComponent, InfoMessageComponent, InfoModalComponent, InfoTranslatePipe], encapsulation: 2 });
6374
+ }, dependencies: [i1$3.NgForOf, i1$3.NgIf, i2.NgControlStatus, i2.NgModel, i4.MatIcon, InfoCheckboxComponent, InfoMessageComponent, InfoModalComponent, InfoTranslatePipe], encapsulation: 2 });
6307
6375
  (function () {
6308
6376
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoGridModalComponent, [{
6309
6377
  type: Component,
@@ -6312,7 +6380,7 @@ class InfoGridModalComponent {
6312
6380
  return [{ type: InfoFormPropModel, decorators: [{
6313
6381
  type: Inject,
6314
6382
  args: [MAT_DIALOG_DATA]
6315
- }] }, { type: i1$3.MatDialogRef }, { type: i1$3.MatDialog }];
6383
+ }] }, { type: i1$4.MatDialogRef }, { type: i1$4.MatDialog }];
6316
6384
  }, null);
6317
6385
  })();
6318
6386
 
@@ -6573,7 +6641,7 @@ class InfoInputListComponent {
6573
6641
  i0.ɵɵadvance(1);
6574
6642
  i0.ɵɵproperty("messages", ctx.messages);
6575
6643
  }
6576
- }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i2.NgControlStatus, i2.NgModel, i4.MatIcon, i13.MatButton, i15.MatTooltip, InfoAlertComponent, InfoInputComponent, InfoTranslatePipe], styles: ["[_nghost-%COMP%] .header[_ngcontent-%COMP%]{background:#fafafa;border-top:solid 1px #f0f0f0;border-bottom:solid 2px #f0f0f0;color:#333;text-transform:uppercase;text-align:right;font-size:9px;font-family:Open Sans;font-weight:700;padding:10px 20px 0 0}[_nghost-%COMP%] #list-values[_ngcontent-%COMP%]{padding:0}[_nghost-%COMP%] #list-values[_ngcontent-%COMP%] li.silver[_ngcontent-%COMP%]{background:#f5f5f5}[_nghost-%COMP%] #list-values[_ngcontent-%COMP%] li.hover[_ngcontent-%COMP%]{background:#eee}[_nghost-%COMP%] #list-values[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{margin-bottom:5px}[_nghost-%COMP%] #list-values[_ngcontent-%COMP%] button[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{font-size:18px}"] });
6644
+ }, dependencies: [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i2.NgControlStatus, i2.NgModel, i4.MatIcon, i13.MatButton, i15.MatTooltip, InfoAlertComponent, InfoInputComponent, InfoTranslatePipe], styles: ["[_nghost-%COMP%] .header[_ngcontent-%COMP%]{background:#fafafa;border-top:solid 1px #f0f0f0;border-bottom:solid 2px #f0f0f0;color:#333;text-transform:uppercase;text-align:right;font-size:9px;font-family:Open Sans;font-weight:700;padding:10px 20px 0 0}[_nghost-%COMP%] #list-values[_ngcontent-%COMP%]{padding:0}[_nghost-%COMP%] #list-values[_ngcontent-%COMP%] li.silver[_ngcontent-%COMP%]{background:#f5f5f5}[_nghost-%COMP%] #list-values[_ngcontent-%COMP%] li.hover[_ngcontent-%COMP%]{background:#eee}[_nghost-%COMP%] #list-values[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{margin-bottom:5px}[_nghost-%COMP%] #list-values[_ngcontent-%COMP%] button[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{font-size:18px}"] });
6577
6645
  (function () {
6578
6646
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoInputListComponent, [{
6579
6647
  type: Component,
@@ -6823,7 +6891,7 @@ class InfoListCheckboxComponent {
6823
6891
  i0.ɵɵadvance(1);
6824
6892
  i0.ɵɵproperty("ngIf", !ctx.onelist);
6825
6893
  }
6826
- }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.NgModel, i4$1.MatFormField, i6.MatInput, i3$1.MatCheckbox, InfoTranslatePipe], styles: ["ul.checkbox-list[_ngcontent-%COMP%]{height:270px;overflow-y:auto}"] });
6894
+ }, dependencies: [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.NgModel, i4$1.MatFormField, i6.MatInput, i3$1.MatCheckbox, InfoTranslatePipe], styles: ["ul.checkbox-list[_ngcontent-%COMP%]{height:270px;overflow-y:auto}"] });
6827
6895
  (function () {
6828
6896
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoListCheckboxComponent, [{
6829
6897
  type: Component,
@@ -6990,7 +7058,7 @@ class InfoSelectComponent {
6990
7058
  i0.ɵɵadvance(2);
6991
7059
  i0.ɵɵproperty("ngIf", ctx.loading);
6992
7060
  }
6993
- }, dependencies: [i1$2.NgForOf, i1$2.NgIf, i2.NgControlStatus, i2.RequiredValidator, i2.NgModel, i4$1.MatFormField, i5$1.MatSelect, i6$1.MatOption, i7.MatProgressBar, InfoTranslatePipe], styles: ["[_nghost-%COMP%] .mat-select-trigger[_ngcontent-%COMP%]{height:19px}[_nghost-%COMP%] .mat-form-field-type-mat-select[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{height:20px}[_nghost-%COMP%] .mat-option[_ngcontent-%COMP%]{height:unset;white-space:normal}[_nghost-%COMP%] .select-loading[_ngcontent-%COMP%]{position:relative;bottom:15px;opacity:.3;height:1px}[_nghost-%COMP%] .select-loading[_ngcontent-%COMP%] .mat-progress-bar[_ngcontent-%COMP%]{height:1px;margin:0}.min[_nghost-%COMP%] .mat-form-field[_ngcontent-%COMP%]{margin:0!important}"] });
7061
+ }, dependencies: [i1$3.NgForOf, i1$3.NgIf, i2.NgControlStatus, i2.RequiredValidator, i2.NgModel, i4$1.MatFormField, i5$1.MatSelect, i6$1.MatOption, i7.MatProgressBar, InfoTranslatePipe], styles: ["[_nghost-%COMP%] .mat-select-trigger[_ngcontent-%COMP%]{height:19px}[_nghost-%COMP%] .mat-form-field-type-mat-select[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{height:20px}[_nghost-%COMP%] .mat-option[_ngcontent-%COMP%]{height:unset;white-space:normal}[_nghost-%COMP%] .select-loading[_ngcontent-%COMP%]{position:relative;bottom:15px;opacity:.3;height:1px}[_nghost-%COMP%] .select-loading[_ngcontent-%COMP%] .mat-progress-bar[_ngcontent-%COMP%]{height:1px;margin:0}.min[_nghost-%COMP%] .mat-form-field[_ngcontent-%COMP%]{margin:0!important}"] });
6994
7062
  (function () {
6995
7063
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoSelectComponent, [{
6996
7064
  type: Component,
@@ -7133,7 +7201,7 @@ class InfoTimelineComponent {
7133
7201
  i0.ɵɵadvance(2);
7134
7202
  i0.ɵɵproperty("ngForOf", ctx.data);
7135
7203
  }
7136
- }, dependencies: [i1$2.NgForOf, i1$2.NgIf, i1$2.NgStyle, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%]{display:block;position:relative;margin:20px 0 10px;font-size:.9em}[_nghost-%COMP%] .line[_ngcontent-%COMP%]{border-left:2px solid #eee;height:100%;left:6px;margin-left:-1px;position:absolute;top:0}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-label[_ngcontent-%COMP%]{display:flex;padding:.7857143rem 0}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-label[_ngcontent-%COMP%] .label-text[_ngcontent-%COMP%]{border-radius:0;color:#fff;display:inline-block;min-width:6.2857144rem;padding:.39285715rem .7857143rem;position:relative;text-align:center}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%]{display:flex;flex-direction:column}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{margin:0;padding-left:50px;position:relative}@media only screen and (max-width: 543px){[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{padding-left:32px}}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-point[_ngcontent-%COMP%]{background:#fff;border-radius:50%;display:block;height:12px;left:0;position:absolute;top:calc(1.17857145rem + 1px);width:12px}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-date[_ngcontent-%COMP%]{font-size:.875rem;margin-bottom:.7857143rem}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]{margin-bottom:5px;background:#eee;border-radius:0;display:inline-block;padding:12px;position:relative;width:auto;min-width:180px;box-shadow:0 0 5px #f5f5f5}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:after, [_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:before{border:10px solid transparent;content:\"\";display:block;height:0;position:absolute;top:14px;width:0}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:before{border-right-color:#eee;right:100%}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:after{display:none;left:100%;border-left-color:#eee}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%] .item-title[_ngcontent-%COMP%]{margin-top:0}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%] h2[_ngcontent-%COMP%]{font-weight:700;font-size:.9em;margin:0;display:block}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin:5px 0!important}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%] h3[_ngcontent-%COMP%]{font-size:.7em;text-align:right;color:#666;display:block;margin:0}.show-date[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-point[_ngcontent-%COMP%]{top:calc(1.17857145rem + 1px)}.align-right[_nghost-%COMP%] .line[_ngcontent-%COMP%]{left:auto;margin:0 -1px 0 auto;right:6px}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-label[_ngcontent-%COMP%]{justify-content:flex-end}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%]{align-items:flex-end}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{padding:0 50px 0 0}@media only screen and (max-width: 543px){.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{padding:0 32px 0 0}}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-point[_ngcontent-%COMP%]{left:auto;right:0}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-date[_ngcontent-%COMP%]{text-align:right}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:before{display:none}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:after{display:block}.align-center[_nghost-%COMP%] .line[_ngcontent-%COMP%]{left:50%}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-label[_ngcontent-%COMP%]{justify-content:center}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%]{align-items:center}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{padding:0;text-align:center}@media only screen and (max-width: 543px){.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{padding:0}}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-point[_ngcontent-%COMP%]{left:50%;margin:-26px 0 0 -6px;top:0}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-date[_ngcontent-%COMP%]{margin-bottom:33px;text-align:center}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-date[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{background:#eee;border:1px solid #eee;border-radius:0;display:inline-block;padding:.39285715rem .7857143rem}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:before{border-color:transparent transparent #ddd transparent;left:50%;margin:-20px 0 0 -10px;top:0}.align-center.show-date[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-point[_ngcontent-%COMP%]{margin-top:40px}@media only screen and (min-width: 768px){.align-between[_nghost-%COMP%] .line[_ngcontent-%COMP%]{left:50%}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-label[_ngcontent-%COMP%]{justify-content:center}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{width:50%}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(even){align-self:flex-end}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(even) .item-point[_ngcontent-%COMP%]{left:0;margin-left:-6px}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(odd){padding:0 50px 0 0;text-align:right}}@media only screen and (min-width: 768px) and (max-width: 543px){.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(odd){padding:0 32px 0 0}}@media only screen and (min-width: 768px){.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(odd) .item-point[_ngcontent-%COMP%]{left:100%;margin-left:-6px}}@media only screen and (min-width: 768px){.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(odd) .item-content[_ngcontent-%COMP%]{text-align:left}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(odd) .item-content[_ngcontent-%COMP%]:before{display:none}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(odd) .item-content[_ngcontent-%COMP%]:after{display:block}}"] });
7204
+ }, dependencies: [i1$3.NgForOf, i1$3.NgIf, i1$3.NgStyle, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%]{display:block;position:relative;margin:20px 0 10px;font-size:.9em}[_nghost-%COMP%] .line[_ngcontent-%COMP%]{border-left:2px solid #eee;height:100%;left:6px;margin-left:-1px;position:absolute;top:0}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-label[_ngcontent-%COMP%]{display:flex;padding:.7857143rem 0}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-label[_ngcontent-%COMP%] .label-text[_ngcontent-%COMP%]{border-radius:0;color:#fff;display:inline-block;min-width:6.2857144rem;padding:.39285715rem .7857143rem;position:relative;text-align:center}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%]{display:flex;flex-direction:column}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{margin:0;padding-left:50px;position:relative}@media only screen and (max-width: 543px){[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{padding-left:32px}}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-point[_ngcontent-%COMP%]{background:#fff;border-radius:50%;display:block;height:12px;left:0;position:absolute;top:calc(1.17857145rem + 1px);width:12px}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-date[_ngcontent-%COMP%]{font-size:.875rem;margin-bottom:.7857143rem}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]{margin-bottom:5px;background:#eee;border-radius:0;display:inline-block;padding:12px;position:relative;width:auto;min-width:180px;box-shadow:0 0 5px #f5f5f5}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:after, [_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:before{border:10px solid transparent;content:\"\";display:block;height:0;position:absolute;top:14px;width:0}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:before{border-right-color:#eee;right:100%}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:after{display:none;left:100%;border-left-color:#eee}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%] .item-title[_ngcontent-%COMP%]{margin-top:0}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%] h2[_ngcontent-%COMP%]{font-weight:700;font-size:.9em;margin:0;display:block}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin:5px 0!important}[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%] h3[_ngcontent-%COMP%]{font-size:.7em;text-align:right;color:#666;display:block;margin:0}.show-date[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-point[_ngcontent-%COMP%]{top:calc(1.17857145rem + 1px)}.align-right[_nghost-%COMP%] .line[_ngcontent-%COMP%]{left:auto;margin:0 -1px 0 auto;right:6px}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-label[_ngcontent-%COMP%]{justify-content:flex-end}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%]{align-items:flex-end}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{padding:0 50px 0 0}@media only screen and (max-width: 543px){.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{padding:0 32px 0 0}}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-point[_ngcontent-%COMP%]{left:auto;right:0}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-date[_ngcontent-%COMP%]{text-align:right}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:before{display:none}.align-right[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:after{display:block}.align-center[_nghost-%COMP%] .line[_ngcontent-%COMP%]{left:50%}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-label[_ngcontent-%COMP%]{justify-content:center}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%]{align-items:center}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{padding:0;text-align:center}@media only screen and (max-width: 543px){.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{padding:0}}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-point[_ngcontent-%COMP%]{left:50%;margin:-26px 0 0 -6px;top:0}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-date[_ngcontent-%COMP%]{margin-bottom:33px;text-align:center}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-date[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{background:#eee;border:1px solid #eee;border-radius:0;display:inline-block;padding:.39285715rem .7857143rem}.align-center[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-content[_ngcontent-%COMP%]:before{border-color:transparent transparent #ddd transparent;left:50%;margin:-20px 0 0 -10px;top:0}.align-center.show-date[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%] .item-point[_ngcontent-%COMP%]{margin-top:40px}@media only screen and (min-width: 768px){.align-between[_nghost-%COMP%] .line[_ngcontent-%COMP%]{left:50%}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-label[_ngcontent-%COMP%]{justify-content:center}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]{width:50%}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(even){align-self:flex-end}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(even) .item-point[_ngcontent-%COMP%]{left:0;margin-left:-6px}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(odd){padding:0 50px 0 0;text-align:right}}@media only screen and (min-width: 768px) and (max-width: 543px){.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(odd){padding:0 32px 0 0}}@media only screen and (min-width: 768px){.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(odd) .item-point[_ngcontent-%COMP%]{left:100%;margin-left:-6px}}@media only screen and (min-width: 768px){.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(odd) .item-content[_ngcontent-%COMP%]{text-align:left}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(odd) .item-content[_ngcontent-%COMP%]:before{display:none}.align-between[_nghost-%COMP%] .timeline-box[_ngcontent-%COMP%] .box-items[_ngcontent-%COMP%] .item[_ngcontent-%COMP%]:nth-child(odd) .item-content[_ngcontent-%COMP%]:after{display:block}}"] });
7137
7205
  (function () {
7138
7206
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoTimelineComponent, [{
7139
7207
  type: Component,
@@ -7245,7 +7313,7 @@ class InfoEditorComponent {
7245
7313
  this.disabled = isDisabled;
7246
7314
  }
7247
7315
  }
7248
- /** @nocollapse */ InfoEditorComponent.ɵfac = function InfoEditorComponent_Factory(t) { return new (t || InfoEditorComponent)(i0.ɵɵdirectiveInject(i9.DomSanitizer)); };
7316
+ /** @nocollapse */ InfoEditorComponent.ɵfac = function InfoEditorComponent_Factory(t) { return new (t || InfoEditorComponent)(i0.ɵɵdirectiveInject(i1.DomSanitizer)); };
7249
7317
  /** @nocollapse */ InfoEditorComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoEditorComponent, selectors: [["info-editor"]], viewQuery: function InfoEditorComponent_Query(rf, ctx) {
7250
7318
  if (rf & 1) {
7251
7319
  i0.ɵɵviewQuery(_c0$5, 5);
@@ -7277,7 +7345,7 @@ class InfoEditorComponent {
7277
7345
  useExisting: forwardRef((() => InfoEditorComponent)),
7278
7346
  multi: true
7279
7347
  }], template: "<angular-editor [attr.id]=\"id\" [attr.focused]=\"focused\" [attr.htmlmode]=\"enabledhtmlmode\" [(ngModel)]=\"value\" name=\"editor\" [config]=\"editorConfig\" (ngModelChange)=\"onChangeValue()\" [required]=\"required\" #editor></angular-editor>\r\n", styles: [":host ::ng-deep [htmlmode=false] .angular-editor-toolbar-set #toggleEditorMode-{display:none}:host ::ng-deep .angular-editor-toolbar-set #insertVideo-{display:none}:host ::ng-deep .angular-editor-textarea{outline:none;border-top:none!important;border-left:none!important;border-right:none!important;border-bottom:solid 1px!important}:host ::ng-deep .angular-editor-textarea[contenteditable=false]{border-bottom:dotted 1.5px lightgray!important}:host ::ng-deep .angular-editor-wrapper:after{content:\"\";position:absolute;left:0;width:100%;height:2px;bottom:0;transform-origin:50%;transform:scaleX(.5);opacity:0;background-color:#000;transition:background-color .3s cubic-bezier(.55,0,.55,.2)}:host ::ng-deep [focused=true] .angular-editor-wrapper:after{opacity:1;transform:scaleX(1);transition:transform .3s cubic-bezier(.25,.8,.25,1),opacity .1s cubic-bezier(.25,.8,.25,1),background-color .3s cubic-bezier(.25,.8,.25,1)}:host ::ng-deep .ng-touched.ng-invalid .angular-editor-wrapper:after{background-color:#f44336!important}:host ::ng-deep .ng-touched.ng-invalid .angular-editor-textarea[contenteditable=true]{border-bottom-color:#f44336!important}\n"] }]
7280
- }], function () { return [{ type: i9.DomSanitizer }]; }, { editor: [{
7348
+ }], function () { return [{ type: i1.DomSanitizer }]; }, { editor: [{
7281
7349
  type: ViewChild,
7282
7350
  args: ['editor']
7283
7351
  }], required: [{
@@ -7430,7 +7498,7 @@ class InfoMultiSelectComponent {
7430
7498
  i0.ɵɵadvance(2);
7431
7499
  i0.ɵɵproperty("ngIf", ctx.loading);
7432
7500
  }
7433
- }, dependencies: [i1$2.NgForOf, i1$2.NgIf, i2.NgControlStatus, i2.RequiredValidator, i2.NgModel, i4$1.MatFormField, i4$1.MatLabel, i5$1.MatSelect, i6$1.MatOption, i7.MatProgressBar, InfoTranslatePipe], styles: ["[_nghost-%COMP%] .mat-select-trigger[_ngcontent-%COMP%]{height:19px}[_nghost-%COMP%] .mat-form-field-type-mat-select[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{height:20px}[_nghost-%COMP%] .select-loading[_ngcontent-%COMP%]{position:relative;bottom:15px;opacity:.3;height:1px}[_nghost-%COMP%] .select-loading[_ngcontent-%COMP%] .mat-progress-bar[_ngcontent-%COMP%]{height:1px;margin:0}.min[_nghost-%COMP%] .mat-form-field[_ngcontent-%COMP%]{margin:0!important}"] });
7501
+ }, dependencies: [i1$3.NgForOf, i1$3.NgIf, i2.NgControlStatus, i2.RequiredValidator, i2.NgModel, i4$1.MatFormField, i4$1.MatLabel, i5$1.MatSelect, i6$1.MatOption, i7.MatProgressBar, InfoTranslatePipe], styles: ["[_nghost-%COMP%] .mat-select-trigger[_ngcontent-%COMP%]{height:19px}[_nghost-%COMP%] .mat-form-field-type-mat-select[_ngcontent-%COMP%] .mat-form-field-label[_ngcontent-%COMP%]{height:20px}[_nghost-%COMP%] .select-loading[_ngcontent-%COMP%]{position:relative;bottom:15px;opacity:.3;height:1px}[_nghost-%COMP%] .select-loading[_ngcontent-%COMP%] .mat-progress-bar[_ngcontent-%COMP%]{height:1px;margin:0}.min[_nghost-%COMP%] .mat-form-field[_ngcontent-%COMP%]{margin:0!important}"] });
7434
7502
  (function () {
7435
7503
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoMultiSelectComponent, [{
7436
7504
  type: Component,
@@ -7562,7 +7630,7 @@ class InfoChipsComponent {
7562
7630
  i0.ɵɵadvance(1);
7563
7631
  i0.ɵɵproperty("placeholder", i0.ɵɵpipeBind1(5, 5, ctx.placeholder))("matChipInputFor", _r0)("matChipInputSeparatorKeyCodes", ctx.separatorKeysCodes)("disabled", ctx.disabled);
7564
7632
  }
7565
- }, dependencies: [i1$2.NgForOf, i1$2.NgIf, i4.MatIcon, i4$1.MatFormField, i4$2.MatChipList, i4$2.MatChip, i4$2.MatChipInput, i4$2.MatChipRemove, InfoTranslatePipe], encapsulation: 2 });
7633
+ }, dependencies: [i1$3.NgForOf, i1$3.NgIf, i4.MatIcon, i4$1.MatFormField, i4$2.MatChipList, i4$2.MatChip, i4$2.MatChipInput, i4$2.MatChipRemove, InfoTranslatePipe], encapsulation: 2 });
7566
7634
  (function () {
7567
7635
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoChipsComponent, [{
7568
7636
  type: Component,
@@ -8036,7 +8104,7 @@ class InfoSidebarComponent {
8036
8104
  this._themeService.setMenuMin();
8037
8105
  }
8038
8106
  }
8039
- /** @nocollapse */ InfoSidebarComponent.ɵfac = function InfoSidebarComponent_Factory(t) { return new (t || InfoSidebarComponent)(i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(InfoAuthenticationService), i0.ɵɵdirectiveInject(InfoThemeService), i0.ɵɵdirectiveInject(InfoSessionModel), i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(InfoLastSearchModel), i0.ɵɵdirectiveInject(i1$1.Router), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef)); };
8107
+ /** @nocollapse */ InfoSidebarComponent.ɵfac = function InfoSidebarComponent_Factory(t) { return new (t || InfoSidebarComponent)(i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(InfoAuthenticationService), i0.ɵɵdirectiveInject(InfoThemeService), i0.ɵɵdirectiveInject(InfoSessionModel), i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(InfoLastSearchModel), i0.ɵɵdirectiveInject(i1$2.Router), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef)); };
8040
8108
  /** @nocollapse */ InfoSidebarComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoSidebarComponent, selectors: [["info-sidebar"]], inputs: { api: "api", method: "method", activemenubyurl: "activemenubyurl" }, outputs: { onchangestate: "onchangestate" }, decls: 3, vars: 2, consts: [[4, "ngIf"], [1, "sidebar-overlay"], [1, "site-sidebar", 3, "ngClass"], [1, "main-menu"], ["id", "menu-min-icon", 3, "click"], ["matTooltipPosition", "right", 3, "ngClass", "matTooltip"], [1, "sub-menu-overlay", 3, "click"], ["class", "menu-item", 3, "ngClass", 4, "ngFor", "ngForOf"], [1, "menu-item", 3, "ngClass"], ["class", "item-link", 3, "routerLink", "click", 4, "ngIf"], [1, "item-link", 3, "routerLink", "click"], ["matTooltipPosition", "right", "matTooltipClass", "mat-tooltip", 3, "matTooltip", "matTooltipDisabled", "matTooltipShowDelay"], ["tooltip", "matTooltip"], [1, "title"], [1, "item-link", 3, "click"], [1, "sub-menu"], [4, "ngFor", "ngForOf"], ["class", "group-menu", 4, "ngFor", "ngForOf"], [1, "group-menu"], [1, "site-sidebar"], [1, "logo"], ["href", "/"], [1, "logo-img"], [1, "info"], ["class", "loading-bar", 4, "ngIf"], [1, "loading-bar"], ["color", "primary", "mode", "indeterminate"], ["class", "group-title", 4, "ngIf"], ["href", "#", "class", "item-link", 3, "routerLink", "click", 4, "ngIf"], ["class", "item-link", 4, "ngIf"], ["href", "#", "class", "item-link", 3, "click", 4, "ngIf"], ["class", "sub", 4, "ngIf"], [1, "group-title"], ["href", "#", 1, "item-link", 3, "routerLink", "click"], [1, "item-link"], ["href", "#", 1, "item-link", 3, "click"], [1, "icon"], ["class", "caret fa fa-angle-right", 4, "ngIf"], [1, "caret", "fa", "fa-angle-right"], [1, "sub"], ["class", "menu-item", 4, "ngFor", "ngForOf"], [1, "menu-item"]], template: function InfoSidebarComponent_Template(rf, ctx) {
8041
8109
  if (rf & 1) {
8042
8110
  i0.ɵɵtemplate(0, InfoSidebarComponent_ng_container_0_Template, 10, 10, "ng-container", 0);
@@ -8048,12 +8116,12 @@ class InfoSidebarComponent {
8048
8116
  i0.ɵɵadvance(1);
8049
8117
  i0.ɵɵproperty("ngIf", ctx._platform.Config.ux <= 2);
8050
8118
  }
8051
- }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i4.MatIcon, i7.MatProgressBar, i15.MatTooltip, i1$1.RouterLinkWithHref, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}.uxc3[_nghost-%COMP%]{display:block;height:100%;left:0;position:fixed;top:80px;transition:left .2s ease-in-out,width .2s ease-in-out;width:120px;z-index:9997}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%]{left:-120px;top:84px}}.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:100%;width:100%;min-height:60px}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]{position:relative}.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]:before{top:180px}}.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]:before{position:fixed;content:\" \";visibility:hidden;left:120px;top:0;width:370px;height:100%;z-index:-1;transition:opacity .2s ease-in-out,visibility .2s ease-in-out}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]:before{display:none}}.uxc3[_nghost-%COMP%] .site-sidebar.opened[_ngcontent-%COMP%]:before{opacity:1;visibility:visible}.uxc3[_nghost-%COMP%] .site-sidebar.opened[_ngcontent-%COMP%] .sub-menu-overlay[_ngcontent-%COMP%]{opacity:.5;visibility:visible}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-sidebar.opened[_ngcontent-%COMP%] .sub-menu-overlay[_ngcontent-%COMP%]{opacity:0!important}}.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .sub-menu-overlay[_ngcontent-%COMP%]{height:100%;left:0;opacity:0;position:fixed;top:0;transition:opacity .2s ease-in-out,visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:-2}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%]{display:block;padding-top:5px;overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] #menu-min-icon[_ngcontent-%COMP%]{position:absolute;top:20px;right:20px;width:20px;height:20px;cursor:pointer;transition:right .2s ease-in-out}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] #menu-min-icon[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{font-size:20px;width:inherit;height:inherit;transition:transform .2s ease-in-out;transform:rotate(180deg)}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] #menu-min-icon[_ngcontent-%COMP%] mat-icon.min[_ngcontent-%COMP%]{transform:rotate(0)}@media (max-width: 991px){.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] #menu-min-icon[_ngcontent-%COMP%]{display:none}}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%]{width:120px;overflow-y:auto}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{list-style-type:none;margin:30px 0 0;padding:10px 0 90px}@media (max-width: 991px){.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{margin-top:0}}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]{position:relative;margin-bottom:3px}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:after{bottom:0;content:\"\";position:absolute;left:-5px;top:0;transition:transform .2s ease-in-out;width:5px}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{display:block;font-size:14px;font-weight:500;padding:5px 5px 10px 20px;position:relative;text-decoration:none;transition:background .2s ease-in-out,color .2s ease-in-out;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{height:auto;top:6px;margin-right:15px}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{margin-bottom:0;transition:opacity .2s ease-in-out}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:hover > .item-link[_ngcontent-%COMP%]{font-weight:600}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:hover:after{transform:translate(4px)}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.active[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.opened[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{background:transparent;font-weight:600}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.active[_ngcontent-%COMP%]:after, .uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.opened[_ngcontent-%COMP%]:after{transform:translate(4px)}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.disabled[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{opacity:.5;cursor:default}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{font-family:Open Sans,sans-serif;visibility:hidden;opacity:0;position:fixed;left:120px;width:370px;padding:0 40px;top:100px;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;height:100%}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{display:none}}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] h4[_ngcontent-%COMP%]{font-size:24px;font-weight:500}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{max-height:calc(100% - 170px);overflow-y:auto;margin:0;padding:0;list-style:none}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin:10px 3px}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{font-size:14px;font-weight:500;cursor:pointer;padding:5px 0;margin:0;transition:color .2s ease-in-out}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{text-decoration:none!important;font-weight:600!important}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.opened[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{visibility:visible;opacity:1}.uxc3[_nghost-%COMP%] .sidebar-overlay[_ngcontent-%COMP%]{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:-3}.uxc2[_nghost-%COMP%]{display:block;height:100%;left:0;position:fixed;top:0;transition:left .2s ease-in-out;width:120px;z-index:997}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%]{left:-120px}}.uxc2[_nghost-%COMP%] .logo[_ngcontent-%COMP%]{background:main-color(600);display:block;height:70px}.uxc2[_nghost-%COMP%] .logo[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{align-items:flex-end;display:flex;font-family:Open Sans,sans-serif;height:inherit;padding:5px 15px;text-decoration:none}.uxc2[_nghost-%COMP%] .logo[_ngcontent-%COMP%] a[_ngcontent-%COMP%] i.logo-img[_ngcontent-%COMP%]{width:210px;height:50px;margin:auto;vertical-align:top}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:100%;width:100%;min-height:60px}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]{position:relative;z-index:9999}}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{background-size:cover;padding:8px 20px}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{margin:0;font-size:1.2em}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] small[_ngcontent-%COMP%]{display:block}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{display:block}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin-top:5px}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] p[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{font-size:.9em;cursor:pointer}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] p[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{text-decoration:underline}.uxc2[_nghost-%COMP%] .sidebar-overlay[_ngcontent-%COMP%]{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%]{display:block;overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%]{width:120px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{list-style-type:none;margin:0;padding:10px 0 22px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]{position:relative;margin-bottom:3px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:after{bottom:0;content:\"\";position:absolute;right:100%;top:0;transition:transform .2s ease-in-out;width:4px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%]{display:block;font-size:1rem;font-weight:400;padding:11px 22px;position:relative;text-decoration:none;transition:background .2s ease-in-out,color .2s ease-in-out}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%] .item-badge[_ngcontent-%COMP%]{border-radius:8px;float:right;font-size:10px;line-height:1;margin-top:2px;padding:2px 6px 4px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%] .icon[_ngcontent-%COMP%]{transition:color .2s ease-in-out;width:22px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:18px;height:auto;width:25px;top:4px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.menu-item-group[_ngcontent-%COMP%]:after{display:none}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .group-title[_ngcontent-%COMP%]{color:#0009;display:block;font-size:.8rem;font-weight:600;padding:6px 22px 5px;text-transform:uppercase}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub[_ngcontent-%COMP%]{list-style-type:none;overflow:hidden;margin:0;max-height:0;padding:0;transition:max-height .1s ease-in-out}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%]{padding:5px 22px 6px 48px;font-size:.9em}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:first-child > .item-link[_ngcontent-%COMP%]:before{border-top:1px solid transparent;content:\"\";left:0;position:absolute;right:0;top:0;transition:border .2s ease-in-out}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:hover:not(.disabled):after{transform:translate(4px)}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.active[_ngcontent-%COMP%]:after{transform:translate(4px)}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.disabled[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{opacity:.5;cursor:default}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub[_ngcontent-%COMP%]{position:relative}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{position:relative}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%] .caret[_ngcontent-%COMP%]{margin-top:.55rem;position:absolute;right:13px;top:6px;transition:transform .1s ease-in-out}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub.active[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%] .caret[_ngcontent-%COMP%]{transform:rotate(90deg)}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub.active[_ngcontent-%COMP%] > .sub[_ngcontent-%COMP%]{max-height:1000px}"] });
8119
+ }, dependencies: [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i4.MatIcon, i7.MatProgressBar, i15.MatTooltip, i1$2.RouterLinkWithHref, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}.uxc3[_nghost-%COMP%]{display:block;height:100%;left:0;position:fixed;top:80px;transition:left .2s ease-in-out,width .2s ease-in-out;width:120px;z-index:9997}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%]{left:-120px;top:84px}}.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:100%;width:100%;min-height:60px}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]{position:relative}.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]:before{top:180px}}.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]:before{position:fixed;content:\" \";visibility:hidden;left:120px;top:0;width:370px;height:100%;z-index:-1;transition:opacity .2s ease-in-out,visibility .2s ease-in-out}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]:before{display:none}}.uxc3[_nghost-%COMP%] .site-sidebar.opened[_ngcontent-%COMP%]:before{opacity:1;visibility:visible}.uxc3[_nghost-%COMP%] .site-sidebar.opened[_ngcontent-%COMP%] .sub-menu-overlay[_ngcontent-%COMP%]{opacity:.5;visibility:visible}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-sidebar.opened[_ngcontent-%COMP%] .sub-menu-overlay[_ngcontent-%COMP%]{opacity:0!important}}.uxc3[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .sub-menu-overlay[_ngcontent-%COMP%]{height:100%;left:0;opacity:0;position:fixed;top:0;transition:opacity .2s ease-in-out,visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:-2}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%]{display:block;padding-top:5px;overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] #menu-min-icon[_ngcontent-%COMP%]{position:absolute;top:20px;right:20px;width:20px;height:20px;cursor:pointer;transition:right .2s ease-in-out}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] #menu-min-icon[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{font-size:20px;width:inherit;height:inherit;transition:transform .2s ease-in-out;transform:rotate(180deg)}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] #menu-min-icon[_ngcontent-%COMP%] mat-icon.min[_ngcontent-%COMP%]{transform:rotate(0)}@media (max-width: 991px){.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] #menu-min-icon[_ngcontent-%COMP%]{display:none}}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%]{width:120px;overflow-y:auto}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{list-style-type:none;margin:30px 0 0;padding:10px 0 90px}@media (max-width: 991px){.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{margin-top:0}}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]{position:relative;margin-bottom:3px}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:after{bottom:0;content:\"\";position:absolute;left:-5px;top:0;transition:transform .2s ease-in-out;width:5px}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{display:block;font-size:14px;font-weight:500;padding:5px 5px 10px 20px;position:relative;text-decoration:none;transition:background .2s ease-in-out,color .2s ease-in-out;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{height:auto;top:6px;margin-right:15px}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{margin-bottom:0;transition:opacity .2s ease-in-out}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:hover > .item-link[_ngcontent-%COMP%]{font-weight:600}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:hover:after{transform:translate(4px)}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.active[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.opened[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{background:transparent;font-weight:600}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.active[_ngcontent-%COMP%]:after, .uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.opened[_ngcontent-%COMP%]:after{transform:translate(4px)}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.disabled[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{opacity:.5;cursor:default}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{font-family:Open Sans,sans-serif;visibility:hidden;opacity:0;position:fixed;left:120px;width:370px;padding:0 40px;top:100px;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;height:100%}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{display:none}}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] h4[_ngcontent-%COMP%]{font-size:24px;font-weight:500}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{max-height:calc(100% - 170px);overflow-y:auto;margin:0;padding:0;list-style:none}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin:10px 3px}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{font-size:14px;font-weight:500;cursor:pointer;padding:5px 0;margin:0;transition:color .2s ease-in-out}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{text-decoration:none!important;font-weight:600!important}.uxc3[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.opened[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{visibility:visible;opacity:1}.uxc3[_nghost-%COMP%] .sidebar-overlay[_ngcontent-%COMP%]{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:-3}.uxc2[_nghost-%COMP%]{display:block;height:100%;left:0;position:fixed;top:0;transition:left .2s ease-in-out;width:120px;z-index:997}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%]{left:-120px}}.uxc2[_nghost-%COMP%] .logo[_ngcontent-%COMP%]{background:main-color(600);display:block;height:70px}.uxc2[_nghost-%COMP%] .logo[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{align-items:flex-end;display:flex;font-family:Open Sans,sans-serif;height:inherit;padding:5px 15px;text-decoration:none}.uxc2[_nghost-%COMP%] .logo[_ngcontent-%COMP%] a[_ngcontent-%COMP%] i.logo-img[_ngcontent-%COMP%]{width:210px;height:50px;margin:auto;vertical-align:top}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:100%;width:100%;min-height:60px}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%]{position:relative;z-index:9999}}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{background-size:cover;padding:8px 20px}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{margin:0;font-size:1.2em}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] small[_ngcontent-%COMP%]{display:block}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] label[_ngcontent-%COMP%]{display:block}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin-top:5px}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] p[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{font-size:.9em;cursor:pointer}.uxc2[_nghost-%COMP%] .site-sidebar[_ngcontent-%COMP%] .info[_ngcontent-%COMP%] p[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{text-decoration:underline}.uxc2[_nghost-%COMP%] .sidebar-overlay[_ngcontent-%COMP%]{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%]{display:block;overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%]{width:120px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{list-style-type:none;margin:0;padding:10px 0 22px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]{position:relative;margin-bottom:3px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:after{bottom:0;content:\"\";position:absolute;right:100%;top:0;transition:transform .2s ease-in-out;width:4px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%]{display:block;font-size:1rem;font-weight:400;padding:11px 22px;position:relative;text-decoration:none;transition:background .2s ease-in-out,color .2s ease-in-out}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%] .item-badge[_ngcontent-%COMP%]{border-radius:8px;float:right;font-size:10px;line-height:1;margin-top:2px;padding:2px 6px 4px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%] .icon[_ngcontent-%COMP%]{transition:color .2s ease-in-out;width:22px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:18px;height:auto;width:25px;top:4px}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.menu-item-group[_ngcontent-%COMP%]:after{display:none}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .group-title[_ngcontent-%COMP%]{color:#0009;display:block;font-size:.8rem;font-weight:600;padding:6px 22px 5px;text-transform:uppercase}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub[_ngcontent-%COMP%]{list-style-type:none;overflow:hidden;margin:0;max-height:0;padding:0;transition:max-height .1s ease-in-out}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .item-link[_ngcontent-%COMP%]{padding:5px 22px 6px 48px;font-size:.9em}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%] .sub[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:first-child > .item-link[_ngcontent-%COMP%]:before{border-top:1px solid transparent;content:\"\";left:0;position:absolute;right:0;top:0;transition:border .2s ease-in-out}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item[_ngcontent-%COMP%]:hover:not(.disabled):after{transform:translate(4px)}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.active[_ngcontent-%COMP%]:after{transform:translate(4px)}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.disabled[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{opacity:.5;cursor:default}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub[_ngcontent-%COMP%]{position:relative}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%]{position:relative}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%] .caret[_ngcontent-%COMP%]{margin-top:.55rem;position:absolute;right:13px;top:6px;transition:transform .1s ease-in-out}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub.active[_ngcontent-%COMP%] > .item-link[_ngcontent-%COMP%] .caret[_ngcontent-%COMP%]{transform:rotate(90deg)}.uxc2[_nghost-%COMP%] nav[_ngcontent-%COMP%] .main-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] .menu-item.has-sub.active[_ngcontent-%COMP%] > .sub[_ngcontent-%COMP%]{max-height:1000px}"] });
8052
8120
  (function () {
8053
8121
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoSidebarComponent, [{
8054
8122
  type: Component,
8055
8123
  args: [{ selector: 'info-sidebar', template: "<ng-container *ngIf=\"_platform.Config.ux >= 3\">\r\n <div class=\"site-sidebar\" [ngClass]=\"{ 'opened': openSubmenu }\" >\r\n <nav>\r\n <div class=\"main-menu\">\r\n <a id=\"menu-min-icon\" (click)=\"toggleSidebar()\">\r\n <mat-icon [ngClass]=\"{ 'min': _platform.MenuMin }\" [matTooltip]=\"_platform.MenuMin ? 'Exibir' : 'Ocultar' | translate\" matTooltipPosition=\"right\" >arrow_menu_close</mat-icon>\r\n </a>\r\n\r\n <ul *ngIf=\"menu\">\r\n \r\n <li class=\"menu-item\" *ngFor=\"let m of menu\" [ngClass]=\"{ 'active': menuAtivo == m.Title, 'disabled': !m.Enabled, 'opened': openSubmenu == m.Title }\">\r\n \r\n <a *ngIf=\"m.Sub == null\" [routerLink]=\"m.Routing\" class=\"item-link\" (click)=\"changeSidebar();access(m.Title);tooltip.hide();\" >\r\n <mat-icon #tooltip=\"matTooltip\" [matTooltip]=\"m.Title | translate\" [matTooltipDisabled]=\"!_platform.MenuMin\" matTooltipPosition=\"right\" [matTooltipShowDelay]=\"600\" matTooltipClass=\"mat-tooltip\">{{ m.Icon }}</mat-icon>\r\n <label class=\"title\">{{ m.Title | translate }}</label>\r\n </a>\r\n \r\n <ng-container *ngIf=\"m.Sub != null || m.SubGroup != null\">\r\n <a class=\"item-link\" (click)=\"toggleSubmenu(m.Title);tooltip.hide();\" >\r\n <mat-icon #tooltip=\"matTooltip\" [matTooltip]=\"m.Title | translate\" [matTooltipDisabled]=\"!_platform.MenuMin\" matTooltipPosition=\"right\" [matTooltipShowDelay]=\"600\" matTooltipClass=\"mat-tooltip\" >{{ m.Icon }}</mat-icon>\r\n <label class=\"title\">{{ m.Title | translate }}</label>\r\n </a>\r\n \r\n <div class=\"sub-menu\">\r\n <h4>{{ m.Title | translate }}</h4>\r\n \r\n <ul>\r\n <li *ngFor=\"let s of m.Sub\">\r\n <a [routerLink]=\"s.Routing\" class=\"item-link\" (click)=\"changeSidebar();access(m.Title);\" >{{ s.Title | translate }}</a>\r\n </li>\r\n </ul>\r\n\r\n <ng-container *ngIf=\"m.SubGroup != null\">\r\n <div class=\"group-menu\" *ngFor=\"let g of m.SubGroup\">\r\n <h5>{{ g.Title | translate }}</h5>\r\n \r\n <ul>\r\n <li *ngFor=\"let s of g.Sub\">\r\n <a [routerLink]=\"s.Routing\" class=\"item-link\" (click)=\"changeSidebar();access(m.Title);\" >{{ s.Title | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </ng-container>\r\n </div>\r\n </ng-container>\r\n </li>\r\n </ul>\r\n </div>\r\n </nav>\r\n <div class=\"sub-menu-overlay\" (click)=\"openSubmenu = ''\"></div>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"_platform.Config.ux <= 2\">\r\n <div class=\"site-sidebar\">\r\n\r\n <div class=\"logo\">\r\n <a href=\"/\" >\r\n <i class=\"logo-img\"></i>\r\n </a>\r\n </div>\r\n\r\n <div class=\"info\">\r\n <span>{{ _session.Usuario }}</span>\r\n <small>{{ _session.Perfil }}</small>\r\n </div>\r\n\r\n <nav>\r\n <div class=\"main-menu\">\r\n <section class=\"loading-bar\" *ngIf=\"loading\">\r\n <mat-progress-bar color=\"primary\" mode=\"indeterminate\"></mat-progress-bar>\r\n </section>\r\n <ul *ngIf=\"menu\">\r\n <li class=\"menu-item\" *ngFor=\"let m of menu\" [ngClass]=\"{ 'has-sub': m.Sub != null, 'active': m.Active, 'menu-item-group': m.Group, 'disabled': !m.Enabled }\">\r\n \r\n <!-- Grupos -->\r\n <span class=\"group-title\" *ngIf=\"m.Group\">{{ m.Title }} </span>\r\n \r\n <!-- Itens -->\r\n <a href=\"#\" [routerLink]=\"m.Routing\" class=\"item-link\" *ngIf=\"!m.Group && m.Sub == null && m.Enabled\" (click)=\"toggle($event, m);resetLastSearch();\">\r\n <mat-icon>{{ m.Icon }}</mat-icon>{{ m.Title | translate }}\r\n </a>\r\n \r\n <a class=\"item-link\" *ngIf=\"!m.Group && m.Sub == null && !m.Enabled\">\r\n <mat-icon>{{ m.Icon }}</mat-icon>{{ m.Title | translate }} \r\n </a>\r\n \r\n <!-- Item com submenu -->\r\n <a href=\"#\" class=\"item-link\" *ngIf=\"!m.Group && m.Sub != null\" (click)=\"toggle($event, m)\">\r\n <mat-icon class=\"icon\">{{ m.Icon }}</mat-icon>{{ m.Title | translate }}\r\n <i class=\"caret fa fa-angle-right\" *ngIf=\"m.Sub\"></i>\r\n </a>\r\n \r\n <!-- Sub Menu -->\r\n <ul class=\"sub\" *ngIf=\"!m.Group && m.Sub != null\">\r\n <li class=\"menu-item\" *ngFor=\"let s of m.Sub\">\r\n <a [routerLink]=\"s.Routing\" (click)=\"resetLastSearch()\" class=\"item-link\" >{{ s.Title | translate }}</a>\r\n </li>\r\n </ul>\r\n </li>\r\n </ul>\r\n </div>\r\n </nav>\r\n </div>\r\n</ng-container>\r\n\r\n<div class=\"sidebar-overlay\"></div>", styles: ["body{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}:host.uxc3{display:block;height:100%;left:0;position:fixed;top:80px;transition:left .2s ease-in-out,width .2s ease-in-out;width:120px;z-index:9997}@media screen and (max-width: 991px){:host.uxc3{left:-120px;top:84px}}:host.uxc3 .site-sidebar{display:flex;flex-direction:column;height:100%;width:100%;min-height:60px}@media screen and (max-width: 991px){:host.uxc3 .site-sidebar{position:relative}:host.uxc3 .site-sidebar:before{top:180px}}:host.uxc3 .site-sidebar:before{position:fixed;content:\" \";visibility:hidden;left:120px;top:0;width:370px;height:100%;z-index:-1;transition:opacity .2s ease-in-out,visibility .2s ease-in-out}@media screen and (max-width: 991px){:host.uxc3 .site-sidebar:before{display:none}}:host.uxc3 .site-sidebar.opened:before{opacity:1;visibility:visible}:host.uxc3 .site-sidebar.opened .sub-menu-overlay{opacity:.5;visibility:visible}@media screen and (max-width: 991px){:host.uxc3 .site-sidebar.opened .sub-menu-overlay{opacity:0!important}}:host.uxc3 .site-sidebar .sub-menu-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;transition:opacity .2s ease-in-out,visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:-2}:host.uxc3 nav{display:block;padding-top:5px;overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch}:host.uxc3 nav #menu-min-icon{position:absolute;top:20px;right:20px;width:20px;height:20px;cursor:pointer;transition:right .2s ease-in-out}:host.uxc3 nav #menu-min-icon mat-icon{font-size:20px;width:inherit;height:inherit;transition:transform .2s ease-in-out;transform:rotate(180deg)}:host.uxc3 nav #menu-min-icon mat-icon.min{transform:rotate(0)}@media (max-width: 991px){:host.uxc3 nav #menu-min-icon{display:none}}:host.uxc3 nav .main-menu{width:120px;overflow-y:auto}:host.uxc3 nav .main-menu>ul{list-style-type:none;margin:30px 0 0;padding:10px 0 90px}@media (max-width: 991px){:host.uxc3 nav .main-menu>ul{margin-top:0}}:host.uxc3 nav .main-menu>ul .menu-item{position:relative;margin-bottom:3px}:host.uxc3 nav .main-menu>ul .menu-item:after{bottom:0;content:\"\";position:absolute;left:-5px;top:0;transition:transform .2s ease-in-out;width:5px}:host.uxc3 nav .main-menu>ul .menu-item>.item-link{display:block;font-size:14px;font-weight:500;padding:5px 5px 10px 20px;position:relative;text-decoration:none;transition:background .2s ease-in-out,color .2s ease-in-out;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}:host.uxc3 nav .main-menu>ul .menu-item>.item-link .mat-icon{height:auto;top:6px;margin-right:15px}:host.uxc3 nav .main-menu>ul .menu-item>.item-link .title{margin-bottom:0;transition:opacity .2s ease-in-out}:host.uxc3 nav .main-menu>ul .menu-item:hover>.item-link{font-weight:600}:host.uxc3 nav .main-menu>ul .menu-item:hover:after{transform:translate(4px)}:host.uxc3 nav .main-menu>ul .menu-item.active>.item-link,:host.uxc3 nav .main-menu>ul .menu-item.opened>.item-link{background:transparent;font-weight:600}:host.uxc3 nav .main-menu>ul .menu-item.active:after,:host.uxc3 nav .main-menu>ul .menu-item.opened:after{transform:translate(4px)}:host.uxc3 nav .main-menu>ul .menu-item.disabled>.item-link{opacity:.5;cursor:default}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu{font-family:Open Sans,sans-serif;visibility:hidden;opacity:0;position:fixed;left:120px;width:370px;padding:0 40px;top:100px;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;height:100%}@media screen and (max-width: 991px){:host.uxc3 nav .main-menu>ul .menu-item .sub-menu{display:none}}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu h4{font-size:24px;font-weight:500}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu ul{max-height:calc(100% - 170px);overflow-y:auto;margin:0;padding:0;list-style:none}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu ul li{margin:10px 3px}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu ul li a{font-size:14px;font-weight:500;cursor:pointer;padding:5px 0;margin:0;transition:color .2s ease-in-out}:host.uxc3 nav .main-menu>ul .menu-item .sub-menu ul li a:hover{text-decoration:none!important;font-weight:600!important}:host.uxc3 nav .main-menu>ul .menu-item.opened .sub-menu{visibility:visible;opacity:1}:host.uxc3 .sidebar-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:-3}:host.uxc2{display:block;height:100%;left:0;position:fixed;top:0;transition:left .2s ease-in-out;width:120px;z-index:997}@media only screen and (max-width: 991px){:host.uxc2{left:-120px}}:host.uxc2 .logo{background:main-color(600);display:block;height:70px}:host.uxc2 .logo a{align-items:flex-end;display:flex;font-family:Open Sans,sans-serif;height:inherit;padding:5px 15px;text-decoration:none}:host.uxc2 .logo a i.logo-img{width:210px;height:50px;margin:auto;vertical-align:top}:host.uxc2 .site-sidebar{display:flex;flex-direction:column;height:100%;width:100%;min-height:60px}@media only screen and (max-width: 991px){:host.uxc2 .site-sidebar{position:relative;z-index:9999}}:host.uxc2 .site-sidebar .info{background-size:cover;padding:8px 20px}:host.uxc2 .site-sidebar .info span{margin:0;font-size:1.2em}:host.uxc2 .site-sidebar .info small{display:block}:host.uxc2 .site-sidebar .info label{display:block}:host.uxc2 .site-sidebar .info p{margin-top:5px}:host.uxc2 .site-sidebar .info p a{font-size:.9em;cursor:pointer}:host.uxc2 .site-sidebar .info p a:hover{text-decoration:underline}:host.uxc2 .sidebar-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}:host.uxc2 nav{display:block;overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch}:host.uxc2 nav .main-menu{width:120px}:host.uxc2 nav .main-menu>ul{list-style-type:none;margin:0;padding:10px 0 22px}:host.uxc2 nav .main-menu>ul .menu-item{position:relative;margin-bottom:3px}:host.uxc2 nav .main-menu>ul .menu-item:after{bottom:0;content:\"\";position:absolute;right:100%;top:0;transition:transform .2s ease-in-out;width:4px}:host.uxc2 nav .main-menu>ul .menu-item .item-link{display:block;font-size:1rem;font-weight:400;padding:11px 22px;position:relative;text-decoration:none;transition:background .2s ease-in-out,color .2s ease-in-out}:host.uxc2 nav .main-menu>ul .menu-item .item-link .item-badge{border-radius:8px;float:right;font-size:10px;line-height:1;margin-top:2px;padding:2px 6px 4px}:host.uxc2 nav .main-menu>ul .menu-item .item-link .icon{transition:color .2s ease-in-out;width:22px}:host.uxc2 nav .main-menu>ul .menu-item .item-link .mat-icon{font-size:18px;height:auto;width:25px;top:4px}:host.uxc2 nav .main-menu>ul .menu-item.menu-item-group:after{display:none}:host.uxc2 nav .main-menu>ul .menu-item .group-title{color:#0009;display:block;font-size:.8rem;font-weight:600;padding:6px 22px 5px;text-transform:uppercase}:host.uxc2 nav .main-menu>ul .menu-item .sub{list-style-type:none;overflow:hidden;margin:0;max-height:0;padding:0;transition:max-height .1s ease-in-out}:host.uxc2 nav .main-menu>ul .menu-item .sub .menu-item .item-link{padding:5px 22px 6px 48px;font-size:.9em}:host.uxc2 nav .main-menu>ul .menu-item .sub .menu-item:first-child>.item-link:before{border-top:1px solid transparent;content:\"\";left:0;position:absolute;right:0;top:0;transition:border .2s ease-in-out}:host.uxc2 nav .main-menu>ul .menu-item:hover:not(.disabled):after{transform:translate(4px)}:host.uxc2 nav .main-menu>ul .menu-item.active:after{transform:translate(4px)}:host.uxc2 nav .main-menu>ul .menu-item.disabled>.item-link{opacity:.5;cursor:default}:host.uxc2 nav .main-menu>ul .menu-item.has-sub{position:relative}:host.uxc2 nav .main-menu>ul .menu-item.has-sub>.item-link{position:relative}:host.uxc2 nav .main-menu>ul .menu-item.has-sub>.item-link .caret{margin-top:.55rem;position:absolute;right:13px;top:6px;transition:transform .1s ease-in-out}:host.uxc2 nav .main-menu>ul .menu-item.has-sub.active>.item-link .caret{transform:rotate(90deg)}:host.uxc2 nav .main-menu>ul .menu-item.has-sub.active>.sub{max-height:1000px}\n"] }]
8056
- }], function () { return [{ type: InfoDataService }, { type: InfoAuthenticationService }, { type: InfoThemeService }, { type: InfoSessionModel }, { type: InfoPlatformModel }, { type: InfoLastSearchModel }, { type: i1$1.Router }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, { api: [{
8124
+ }], function () { return [{ type: InfoDataService }, { type: InfoAuthenticationService }, { type: InfoThemeService }, { type: InfoSessionModel }, { type: InfoPlatformModel }, { type: InfoLastSearchModel }, { type: i1$2.Router }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, { api: [{
8057
8125
  type: Input
8058
8126
  }], method: [{
8059
8127
  type: Input
@@ -9104,7 +9172,7 @@ class InfoTopbarComponent {
9104
9172
  });
9105
9173
  }
9106
9174
  }
9107
- /** @nocollapse */ InfoTopbarComponent.ɵfac = function InfoTopbarComponent_Factory(t) { return new (t || InfoTopbarComponent)(i0.ɵɵdirectiveInject(InfoTranslateService), i0.ɵɵdirectiveInject(InfoAuthenticationService), i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(InfoThemeService), i0.ɵɵdirectiveInject(i1$1.Router), i0.ɵɵdirectiveInject(InfoDialogModal), i0.ɵɵdirectiveInject(InfoSessionModel), i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(i1$3.MatDialog), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(Utilities)); };
9175
+ /** @nocollapse */ InfoTopbarComponent.ɵfac = function InfoTopbarComponent_Factory(t) { return new (t || InfoTopbarComponent)(i0.ɵɵdirectiveInject(InfoTranslateService), i0.ɵɵdirectiveInject(InfoAuthenticationService), i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(InfoThemeService), i0.ɵɵdirectiveInject(i1$2.Router), i0.ɵɵdirectiveInject(InfoDialogModal), i0.ɵɵdirectiveInject(InfoSessionModel), i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(i1$4.MatDialog), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(Utilities)); };
9108
9176
  /** @nocollapse */ InfoTopbarComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoTopbarComponent, selectors: [["info-topbar"]], inputs: { opened: "opened", languages: "languages", themes: "themes", notificationapi: "notificationapi", notificationgetmethod: "notificationgetmethod", notificationpostmethod: "notificationpostmethod", notificationverifymethod: "notificationverifymethod", notificationverifyenabled: "notificationverifyenabled", fastsearchform: "fastsearchform", fastsearchformwidth: "fastsearchformwidth", fastsearchtitle: "fastsearchtitle", profileurl: "profileurl", setthemeonchangecompany: "setthemeonchangecompany", enabledia: "enabledia" }, outputs: { onchangestate: "onchangestate", ongetnotification: "ongetnotification", onverifynotification: "onverifynotification" }, ngContentSelectors: _c3$2, decls: 4, vars: 4, consts: [[4, "ngIf"], ["class", "loading-bar", 4, "ngIf"], ["class", "block", 4, "ngIf"], [1, "site-navbar"], [1, "logo"], [1, "logo-img"], [1, "logo-img-resp"], [1, "nav-items"], [1, "nav-item", "usuario-logado", 3, "ngClass"], [3, "click"], [1, "menu-lateral-direita"], [1, "fechar", 3, "click"], [1, "empresas"], [4, "ngFor", "ngForOf"], ["class", "nav-item selecao-empresa", 3, "ngClass", 4, "ngIf"], ["class", "nav-item selecao-infoia", 3, "ngClass", 4, "ngIf"], [1, "nav-item"], ["mat-icon-button", "", 3, "matTooltip", "click"], ["class", "nav-item", 4, "ngIf"], ["class", "nav-item", 3, "ngClass", 4, "ngIf"], ["class", "nav-item selecao-tema", 3, "ngClass", 4, "ngIf"], ["class", "nav-item selecao-idioma", 3, "ngClass", 4, "ngIf"], [1, "items-overlay", 3, "click"], ["divModal", ""], [1, "navbar-button", 3, "ngClass", "click"], [1, "nav-item", "selecao-empresa", 3, "ngClass"], [1, "nav-item", "selecao-infoia", 3, "ngClass"], [1, "menu-lateral-direita", "infoia"], [1, "nav-item", 3, "ngClass"], ["class", "badge", 4, "ngIf"], [1, "badge"], [2, "cursor", "default"], [1, "content"], [3, "innerHtml"], [1, "nav-item", "selecao-tema", 3, "ngClass"], [1, "temas"], [1, "nav-item", "selecao-idioma", 3, "ngClass"], [1, "idiomas"], ["class", "sessao-clone text-lightgray", 4, "ngIf"], ["id", "page-title", "class", "page-title", 4, "ngIf"], [1, "nav-item", "user-profile", 3, "ngClass"], ["mat-button", "", 3, "click"], [1, "name"], [1, "dropdown-menu"], [1, "menu-title"], [1, "company"], [1, "sessao-clone", "text-lightgray"], ["id", "page-title", 1, "page-title"], [1, "desc", 3, "innerHtml"], [1, "date"], [1, "languages"], [1, "themes"], ["mat-icon-button", "", 3, "matTooltip", "routerLink"], [1, "loading-bar"], ["color", "primary", "mode", "indeterminate"], [1, "block"]], template: function InfoTopbarComponent_Template(rf, ctx) {
9109
9177
  if (rf & 1) {
9110
9178
  i0.ɵɵprojectionDef();
@@ -9122,12 +9190,12 @@ class InfoTopbarComponent {
9122
9190
  i0.ɵɵadvance(1);
9123
9191
  i0.ɵɵproperty("ngIf", ctx.loading);
9124
9192
  }
9125
- }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i4.MatIcon, i13.MatButton, i7.MatProgressBar, i15.MatTooltip, i1$1.RouterLink, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}.topmenu[_nghost-%COMP%]{border-bottom-width:0!important;box-shadow:none!important}.uxc3[_nghost-%COMP%]{transition:left .2s ease-in-out;display:block;height:85px;left:0;position:fixed;right:0;top:0;z-index:9998}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%]{left:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{width:100%}.uxc3[_nghost-%COMP%] .logo[_ngcontent-%COMP%]{position:absolute;top:17px}.uxc3[_nghost-%COMP%] .logo[_ngcontent-%COMP%] .logo-img[_ngcontent-%COMP%]{display:none!important}.uxc3[_nghost-%COMP%] .logo[_ngcontent-%COMP%] .logo-img-resp[_ngcontent-%COMP%]{display:block!important;height:45px!important}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%]{position:absolute;top:70px!important;left:-100%;width:calc(100% + 6px);border-right:none!important;padding-left:25px!important;padding-top:15px!important;transition:left .2s ease-in-out}.uxc3[_nghost-%COMP%] .usuario-logado.menu-aberto[_ngcontent-%COMP%]{left:0%}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{text-align:left!important}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dt[_ngcontent-%COMP%]{display:inline-block;font-size:14px}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dd[_ngcontent-%COMP%]{position:relative;display:inline-block;padding-right:20px;margin-right:5px}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dd[_ngcontent-%COMP%]:after{position:absolute;top:2px;right:0;content:\"-\";width:10px;height:10px}.uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%]{position:absolute;top:115px!important;left:-100%;width:calc(100% + 6px);margin:0!important;padding:5px 15px 6px 25px;transition:left .2s ease-in-out}.uxc3[_nghost-%COMP%] .selecao-empresa.menu-aberto[_ngcontent-%COMP%]{left:0%}.uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%] button[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{width:100%!important}}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%]{align-items:center;display:flex;flex-wrap:nowrap;height:100%;justify-content:space-between;padding:0 22px}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%]{flex-wrap:wrap}}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .logo[_ngcontent-%COMP%]{display:block;height:60px;width:500px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .logo[_ngcontent-%COMP%] .logo-img[_ngcontent-%COMP%]{display:block;height:100%;width:100%}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .logo[_ngcontent-%COMP%] .logo-img-resp[_ngcontent-%COMP%]{display:none;height:100%;width:100%}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%]{cursor:pointer;display:none;height:24px;margin:0;position:absolute;transform:rotate(0);width:35px;top:20px;left:70px}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%]{display:block}}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] sub[_ngcontent-%COMP%]{position:absolute;bottom:-10px;text-transform:uppercase}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{display:block;height:3px;opacity:1;position:absolute;transform:rotate(0);transition:.25s ease-in-out;width:50%;top:10px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(even){left:50%}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(odd){left:0}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2){top:0}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(3), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(4){top:10px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){top:20px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){transform:rotate(45deg)}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5){transform:rotate(-45deg)}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1){left:2px;top:6px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2){left:calc(50% - 7px);top:6px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(3){left:-50%;opacity:0}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(4){left:100%;opacity:0}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5){left:2px;top:15px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){left:calc(50% - 7px);top:15px}.uxc3[_nghost-%COMP%] dl[_ngcontent-%COMP%]{line-height:20px;text-transform:none;transition:border .2s ease-in-out}.uxc3[_nghost-%COMP%] dl[_ngcontent-%COMP%] dt[_ngcontent-%COMP%]{font-size:10px;font-weight:500;transition:color .2s ease-in-out}.uxc3[_nghost-%COMP%] dl[_ngcontent-%COMP%] dd[_ngcontent-%COMP%]{position:relative;top:0;font-size:14px;font-weight:600;margin-bottom:0;transition:color .2s ease-in-out}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%]{top:-1px;padding:5px 20px 5px 0;cursor:pointer}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{top:5px;margin:0}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{position:absolute;font-size:22px;top:17px;right:0;text-align:center}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%]{padding-left:10px}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{text-align:right}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{left:0}.uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%]{padding-left:20px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{display:block;height:100%;margin:0 -5px;text-align:right}@media screen and (min-width: 544px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{width:100%}}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{display:block;top:0;position:absolute;right:10px}}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%]{align-items:center;display:inline-block;text-align:left;margin:15px 3px 0 0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%]{position:relative;cursor:pointer;min-width:40px;padding:0;transition:color .2s ease-in-out;top:-14px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%]{display:flex;height:100%;padding:5px;width:100%}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:24px;height:auto!important;line-height:auto!important;vertical-align:middle;width:auto!important}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%] .marker[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%] .marker[_ngcontent-%COMP%]{border-radius:50%;height:6px;position:absolute;right:0;top:0;width:6px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .badge[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .badge[_ngcontent-%COMP%]{position:absolute;background:#af1b11;border-radius:8px;font-size:10px;color:#fff;padding:0 5px;line-height:16px;right:0;top:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-ripple[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-ripple[_ngcontent-%COMP%]{display:none}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]{display:none;top:0;right:0;padding:0;position:fixed;width:420px;height:100%;z-index:9999}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]{left:auto;margin-left:0;right:0}}@media screen and (max-width: 543px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]{left:0;margin-left:0;width:100%}}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]:before{border:10px solid transparent;bottom:100%;content:\"\";left:50%;margin:0 0 0 -10px;position:absolute}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]:before{left:100%;margin-left:-34px}}@media screen and (max-width: 543px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]:before{display:none}}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > .fechar[_ngcontent-%COMP%]{position:absolute;top:30px;right:30px;font-size:28px;cursor:pointer;opacity:.8}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > .fechar[_ngcontent-%COMP%]:hover{opacity:1}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > h4[_ngcontent-%COMP%]{font-size:24px;font-weight:500;margin:30px 0 30px 38px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{list-style-type:none;margin:0;height:calc(100% - 170px);overflow-y:auto;border-radius:0 0 4px 4px;padding:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:hover{background:rgba(0,0,0,.05)}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li.disabled[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{cursor:default!important;opacity:.4}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:last-child{border-bottom:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{line-height:20px;padding:5px 0;margin-bottom:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dt[_ngcontent-%COMP%]{font-weight:600;font-size:13px;margin-bottom:5px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dd[_ngcontent-%COMP%]{font-size:14px;font-weight:500}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:14px;font-weight:500;padding:10px 40px!important;align-items:center;display:flex;padding:11px;transition:background .2s ease-in-out;cursor:pointer}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{background:rgba(255,255,255,.1);border-radius:50%;font-size:22px;height:auto;margin-right:11px;padding:7px;width:auto}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] .lista-empresas[_ngcontent-%COMP%]{display:block}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] ~ .items-overlay[_ngcontent-%COMP%]{transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible;opacity:.5}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .items-overlay[_ngcontent-%COMP%]{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%]{width:100%}}.uxc2[_nghost-%COMP%]{background:#fff;border-bottom:1px solid #e4e9f0;display:block;height:70px;left:120px;position:fixed;right:0;top:0;z-index:9998}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%]{left:0}}.uxc2[_nghost-%COMP%] .sessao-clone[_ngcontent-%COMP%]{position:absolute;padding:8px;top:0;background-color:#a80707;z-index:1}.uxc2[_nghost-%COMP%] .sessao-clone[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%]{font-size:10px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%]{align-items:center;display:flex;flex-wrap:nowrap;height:100%;justify-content:space-between;padding:0 22px}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%]{flex-wrap:wrap}}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%]{cursor:pointer;display:none;height:24px;margin:0;position:relative;transform:rotate(0);width:30px}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%]{display:block}}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{display:block;height:3px;opacity:1;position:absolute;transform:rotate(0);transition:.25s ease-in-out;width:50%}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(even){left:50%}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(odd){left:0}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2){top:0}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(3), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(4){top:10px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){top:20px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){transform:rotate(45deg)}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5){transform:rotate(-45deg)}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1){left:3px;top:6px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2){left:calc(50% - 3px);top:6px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(3){left:-50%;opacity:0}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(4){left:100%;opacity:0}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5){left:3px;top:15px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){left:calc(50% - 3px);top:15px}.uxc2[_nghost-%COMP%] .page-title[_ngcontent-%COMP%]{font-size:1.4rem;font-weight:400;line-height:1;margin:0;width:100%}.uxc2[_nghost-%COMP%] .page-title[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{top:4px;left:0;font-size:1.1em}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .page-title[_ngcontent-%COMP%]{display:none}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{display:block;height:100%;margin:0 -5px;text-align:right}@media only screen and (min-width: 544px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{width:100%}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%]{align-items:center;display:inline-block;text-align:left;margin:15px 3px 0 0}@media only screen and (min-width: 544px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%]{position:relative}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button{position:relative;cursor:pointer;min-width:40px;padding:0;transition:color .2s ease-in-out}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper{display:flex;height:100%;padding:5px;width:100%}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .mat-icon, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .mat-icon{font-size:22px;height:30px;line-height:30px;vertical-align:top;width:30px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .mat-icon .marker, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .mat-icon .marker{border-radius:50%;height:6px;position:absolute;right:0;top:0;width:6px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .badge, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .badge{position:absolute;background:#af1b11;border-radius:8px;font-size:10px;color:#fff;padding:0 5px;line-height:16px;right:0;top:0}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .avatar, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .avatar{border-radius:50%;height:40px;overflow:hidden;width:40px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .name, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .name{top:10px;padding-left:10px;white-space:nowrap;line-height:19px;text-align:left;font-size:12px;margin-top:-3px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .name label, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .name label{display:block;margin:0;font-size:10px;line-height:12px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .name span, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .name span{top:-3px}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .name, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .name{display:none}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-focus-overlay, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-ripple, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-focus-overlay, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-ripple{display:none}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]{box-shadow:0 5px 10px 2px #00000040;display:none;left:50%;margin:0 0 0 -150px;padding:0;position:absolute;top:100%;width:300px;z-index:9999}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]{left:auto;margin-left:0;right:0}}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]{left:0;margin-left:0;width:100%}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.calendar[_ngcontent-%COMP%]{left:-34%}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.calendar[_ngcontent-%COMP%]:before{left:60%}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]:before{border:10px solid transparent;bottom:100%;content:\"\";left:50%;margin:0 0 0 -10px;position:absolute}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]:before{left:100%;margin-left:-34px}}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]:before{display:none}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .company[_ngcontent-%COMP%] a[_ngcontent-%COMP%], .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .languages[_ngcontent-%COMP%] a[_ngcontent-%COMP%], .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .themesa[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{cursor:pointer!important}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .themes[_ngcontent-%COMP%]{max-height:500px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .pesquisa-rapida[_ngcontent-%COMP%] input[_ngcontent-%COMP%]{color:#fff}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-footer[_ngcontent-%COMP%], .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-title[_ngcontent-%COMP%]{margin:0;padding:11px;text-align:center}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-title[_ngcontent-%COMP%]{border-bottom:1px solid rgba(255,255,255,.1);color:#fff;font-size:16px;line-height:1.3}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-footer[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{color:#fff}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-footer[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{color:#fffc}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{list-style-type:none;margin:0;max-height:241px;overflow:auto;padding:0}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]{border-bottom:1px solid rgba(255,255,255,.05)}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li.disabled[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{cursor:default!important;opacity:.4}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li.disabled[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]:hover{background:inherit!important}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:last-child{border-bottom:0}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{align-items:center;color:#fff;display:flex;padding:11px;transition:background .2s ease-in-out;cursor:pointer}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{background:rgba(255,255,255,.1);border-radius:50%;font-size:22px;height:auto;margin-right:11px;padding:7px;width:auto}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .avatar[_ngcontent-%COMP%]{border-radius:50%;height:40px;margin-right:11px;width:40px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%]{font-size:.85rem}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%] .desc[_ngcontent-%COMP%]{display:block}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%] .date[_ngcontent-%COMP%]{display:block;font-size:.75rem;font-style:italic;margin-top:4px;opacity:.6}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%] .meta[_ngcontent-%COMP%]{align-items:flex-end;display:flex;justify-content:space-between;line-height:1.3;margin-bottom:4px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%] .meta[_ngcontent-%COMP%] .date[_ngcontent-%COMP%]{margin:0 0 0 11px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%]{left:auto;right:0;width:220px}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%]{width:100%}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%]:before{display:none}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{padding-top:8px;padding-bottom:8px;cursor:pointer}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .fa[_ngcontent-%COMP%]{margin-right:11px;min-width:15px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]{display:block}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] ~ .items-overlay[_ngcontent-%COMP%]{opacity:1;transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .items-overlay[_ngcontent-%COMP%]{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}"] });
9193
+ }, dependencies: [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i4.MatIcon, i13.MatButton, i7.MatProgressBar, i15.MatTooltip, i1$2.RouterLink, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}.topmenu[_nghost-%COMP%]{border-bottom-width:0!important;box-shadow:none!important}.uxc3[_nghost-%COMP%]{transition:left .2s ease-in-out;display:block;height:85px;left:0;position:fixed;right:0;top:0;z-index:9998}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%]{left:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{width:100%}.uxc3[_nghost-%COMP%] .logo[_ngcontent-%COMP%]{position:absolute;top:17px}.uxc3[_nghost-%COMP%] .logo[_ngcontent-%COMP%] .logo-img[_ngcontent-%COMP%]{display:none!important}.uxc3[_nghost-%COMP%] .logo[_ngcontent-%COMP%] .logo-img-resp[_ngcontent-%COMP%]{display:block!important;height:45px!important}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%]{position:absolute;top:70px!important;left:-100%;width:calc(100% + 6px);border-right:none!important;padding-left:25px!important;padding-top:15px!important;transition:left .2s ease-in-out}.uxc3[_nghost-%COMP%] .usuario-logado.menu-aberto[_ngcontent-%COMP%]{left:0%}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{text-align:left!important}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dt[_ngcontent-%COMP%]{display:inline-block;font-size:14px}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dd[_ngcontent-%COMP%]{position:relative;display:inline-block;padding-right:20px;margin-right:5px}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dd[_ngcontent-%COMP%]:after{position:absolute;top:2px;right:0;content:\"-\";width:10px;height:10px}.uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%]{position:absolute;top:115px!important;left:-100%;width:calc(100% + 6px);margin:0!important;padding:5px 15px 6px 25px;transition:left .2s ease-in-out}.uxc3[_nghost-%COMP%] .selecao-empresa.menu-aberto[_ngcontent-%COMP%]{left:0%}.uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%] button[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{width:100%!important}}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%]{align-items:center;display:flex;flex-wrap:nowrap;height:100%;justify-content:space-between;padding:0 22px}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%]{flex-wrap:wrap}}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .logo[_ngcontent-%COMP%]{display:block;height:60px;width:500px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .logo[_ngcontent-%COMP%] .logo-img[_ngcontent-%COMP%]{display:block;height:100%;width:100%}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .logo[_ngcontent-%COMP%] .logo-img-resp[_ngcontent-%COMP%]{display:none;height:100%;width:100%}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%]{cursor:pointer;display:none;height:24px;margin:0;position:absolute;transform:rotate(0);width:35px;top:20px;left:70px}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%]{display:block}}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] sub[_ngcontent-%COMP%]{position:absolute;bottom:-10px;text-transform:uppercase}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{display:block;height:3px;opacity:1;position:absolute;transform:rotate(0);transition:.25s ease-in-out;width:50%;top:10px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(even){left:50%}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(odd){left:0}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2){top:0}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(3), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(4){top:10px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){top:20px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){transform:rotate(45deg)}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2), .uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5){transform:rotate(-45deg)}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1){left:2px;top:6px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2){left:calc(50% - 7px);top:6px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(3){left:-50%;opacity:0}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(4){left:100%;opacity:0}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5){left:2px;top:15px}.uxc3[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){left:calc(50% - 7px);top:15px}.uxc3[_nghost-%COMP%] dl[_ngcontent-%COMP%]{line-height:20px;text-transform:none;transition:border .2s ease-in-out}.uxc3[_nghost-%COMP%] dl[_ngcontent-%COMP%] dt[_ngcontent-%COMP%]{font-size:10px;font-weight:500;transition:color .2s ease-in-out}.uxc3[_nghost-%COMP%] dl[_ngcontent-%COMP%] dd[_ngcontent-%COMP%]{position:relative;top:0;font-size:14px;font-weight:600;margin-bottom:0;transition:color .2s ease-in-out}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%]{top:-1px;padding:5px 20px 5px 0;cursor:pointer}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{top:5px;margin:0}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{position:absolute;font-size:22px;top:17px;right:0;text-align:center}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%]{padding-left:10px}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{text-align:right}.uxc3[_nghost-%COMP%] .usuario-logado[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{left:0}.uxc3[_nghost-%COMP%] .selecao-empresa[_ngcontent-%COMP%]{padding-left:20px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{display:block;height:100%;margin:0 -5px;text-align:right}@media screen and (min-width: 544px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{width:100%}}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{display:block;top:0;position:absolute;right:10px}}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%]{align-items:center;display:inline-block;text-align:left;margin:15px 3px 0 0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%]{position:relative;cursor:pointer;min-width:40px;padding:0;transition:color .2s ease-in-out;top:-14px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%]{display:flex;height:100%;padding:5px;width:100%}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{font-size:24px;height:auto!important;line-height:auto!important;vertical-align:middle;width:auto!important}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%] .marker[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%] .marker[_ngcontent-%COMP%]{border-radius:50%;height:6px;position:absolute;right:0;top:0;width:6px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .badge[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%] .badge[_ngcontent-%COMP%]{position:absolute;background:#af1b11;border-radius:8px;font-size:10px;color:#fff;padding:0 5px;line-height:16px;right:0;top:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button[_ngcontent-%COMP%] .mat-button-ripple[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-focus-overlay[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%] .mat-button-ripple[_ngcontent-%COMP%]{display:none}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]{display:none;top:0;right:0;padding:0;position:fixed;width:420px;height:100%;z-index:9999}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]{left:auto;margin-left:0;right:0}}@media screen and (max-width: 543px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]{left:0;margin-left:0;width:100%}}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]:before{border:10px solid transparent;bottom:100%;content:\"\";left:50%;margin:0 0 0 -10px;position:absolute}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]:before{left:100%;margin-left:-34px}}@media screen and (max-width: 543px){.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%]:before{display:none}}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > .fechar[_ngcontent-%COMP%]{position:absolute;top:30px;right:30px;font-size:28px;cursor:pointer;opacity:.8}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > .fechar[_ngcontent-%COMP%]:hover{opacity:1}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > h4[_ngcontent-%COMP%]{font-size:24px;font-weight:500;margin:30px 0 30px 38px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{list-style-type:none;margin:0;height:calc(100% - 170px);overflow-y:auto;border-radius:0 0 4px 4px;padding:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:hover{background:rgba(0,0,0,.05)}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li.disabled[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{cursor:default!important;opacity:.4}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:last-child{border-bottom:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] dl[_ngcontent-%COMP%]{line-height:20px;padding:5px 0;margin-bottom:0}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dt[_ngcontent-%COMP%]{font-weight:600;font-size:13px;margin-bottom:5px}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] dl[_ngcontent-%COMP%] dd[_ngcontent-%COMP%]{font-size:14px;font-weight:500}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:14px;font-weight:500;padding:10px 40px!important;align-items:center;display:flex;padding:11px;transition:background .2s ease-in-out;cursor:pointer}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{background:rgba(255,255,255,.1);border-radius:50%;font-size:22px;height:auto;margin-right:11px;padding:7px;width:auto}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] .menu-lateral-direita[_ngcontent-%COMP%], .uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] .lista-empresas[_ngcontent-%COMP%]{display:block}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] ~ .items-overlay[_ngcontent-%COMP%]{transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible;opacity:.5}.uxc3[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .items-overlay[_ngcontent-%COMP%]{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%]{width:100%}}.uxc2[_nghost-%COMP%]{background:#fff;border-bottom:1px solid #e4e9f0;display:block;height:70px;left:120px;position:fixed;right:0;top:0;z-index:9998}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%]{left:0}}.uxc2[_nghost-%COMP%] .sessao-clone[_ngcontent-%COMP%]{position:absolute;padding:8px;top:0;background-color:#a80707;z-index:1}.uxc2[_nghost-%COMP%] .sessao-clone[_ngcontent-%COMP%] .mat-icon-button[_ngcontent-%COMP%]{font-size:10px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%]{align-items:center;display:flex;flex-wrap:nowrap;height:100%;justify-content:space-between;padding:0 22px}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%]{flex-wrap:wrap}}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%]{cursor:pointer;display:none;height:24px;margin:0;position:relative;transform:rotate(0);width:30px}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%]{display:block}}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{display:block;height:3px;opacity:1;position:absolute;transform:rotate(0);transition:.25s ease-in-out;width:50%}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(even){left:50%}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(odd){left:0}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2){top:0}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(3), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(4){top:10px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){top:20px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){transform:rotate(45deg)}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2), .uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5){transform:rotate(-45deg)}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(1){left:3px;top:6px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(2){left:calc(50% - 3px);top:6px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(3){left:-50%;opacity:0}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(4){left:100%;opacity:0}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(5){left:3px;top:15px}.uxc2[_nghost-%COMP%] .site-navbar[_ngcontent-%COMP%] .navbar-button.open[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-child(6){left:calc(50% - 3px);top:15px}.uxc2[_nghost-%COMP%] .page-title[_ngcontent-%COMP%]{font-size:1.4rem;font-weight:400;line-height:1;margin:0;width:100%}.uxc2[_nghost-%COMP%] .page-title[_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{top:4px;left:0;font-size:1.1em}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .page-title[_ngcontent-%COMP%]{display:none}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{display:block;height:100%;margin:0 -5px;text-align:right}@media only screen and (min-width: 544px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%]{width:100%}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%]{align-items:center;display:inline-block;text-align:left;margin:15px 3px 0 0}@media only screen and (min-width: 544px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%]{position:relative}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button{position:relative;cursor:pointer;min-width:40px;padding:0;transition:color .2s ease-in-out}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper{display:flex;height:100%;padding:5px;width:100%}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .mat-icon, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .mat-icon{font-size:22px;height:30px;line-height:30px;vertical-align:top;width:30px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .mat-icon .marker, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .mat-icon .marker{border-radius:50%;height:6px;position:absolute;right:0;top:0;width:6px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .badge, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .badge{position:absolute;background:#af1b11;border-radius:8px;font-size:10px;color:#fff;padding:0 5px;line-height:16px;right:0;top:0}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .avatar, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .avatar{border-radius:50%;height:40px;overflow:hidden;width:40px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .name, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .name{top:10px;padding-left:10px;white-space:nowrap;line-height:19px;text-align:left;font-size:12px;margin-top:-3px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .name label, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .name label{display:block;margin:0;font-size:10px;line-height:12px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .name span, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .name span{top:-3px}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-wrapper .name, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-wrapper .name{display:none}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-focus-overlay, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-button .mat-button-ripple, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-focus-overlay, .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .mat-icon-button .mat-button-ripple{display:none}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]{box-shadow:0 5px 10px 2px #00000040;display:none;left:50%;margin:0 0 0 -150px;padding:0;position:absolute;top:100%;width:300px;z-index:9999}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]{left:auto;margin-left:0;right:0}}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]{left:0;margin-left:0;width:100%}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.calendar[_ngcontent-%COMP%]{left:-34%}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.calendar[_ngcontent-%COMP%]:before{left:60%}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]:before{border:10px solid transparent;bottom:100%;content:\"\";left:50%;margin:0 0 0 -10px;position:absolute}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]:before{left:100%;margin-left:-34px}}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]:before{display:none}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .company[_ngcontent-%COMP%] a[_ngcontent-%COMP%], .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .languages[_ngcontent-%COMP%] a[_ngcontent-%COMP%], .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .themesa[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{cursor:pointer!important}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .themes[_ngcontent-%COMP%]{max-height:500px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .pesquisa-rapida[_ngcontent-%COMP%] input[_ngcontent-%COMP%]{color:#fff}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-footer[_ngcontent-%COMP%], .uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-title[_ngcontent-%COMP%]{margin:0;padding:11px;text-align:center}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-title[_ngcontent-%COMP%]{border-bottom:1px solid rgba(255,255,255,.1);color:#fff;font-size:16px;line-height:1.3}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-footer[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{color:#fff}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] .menu-footer[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{color:#fffc}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{list-style-type:none;margin:0;max-height:241px;overflow:auto;padding:0}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]{border-bottom:1px solid rgba(255,255,255,.05)}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li.disabled[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{cursor:default!important;opacity:.4}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li.disabled[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]:hover{background:inherit!important}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:last-child{border-bottom:0}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{align-items:center;color:#fff;display:flex;padding:11px;transition:background .2s ease-in-out;cursor:pointer}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .mat-icon[_ngcontent-%COMP%]{background:rgba(255,255,255,.1);border-radius:50%;font-size:22px;height:auto;margin-right:11px;padding:7px;width:auto}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .avatar[_ngcontent-%COMP%]{border-radius:50%;height:40px;margin-right:11px;width:40px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%]{font-size:.85rem}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%] .desc[_ngcontent-%COMP%]{display:block}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%] .date[_ngcontent-%COMP%]{display:block;font-size:.75rem;font-style:italic;margin-top:4px;opacity:.6}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%] .meta[_ngcontent-%COMP%]{align-items:flex-end;display:flex;justify-content:space-between;line-height:1.3;margin-bottom:4px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .content[_ngcontent-%COMP%] .meta[_ngcontent-%COMP%] .date[_ngcontent-%COMP%]{margin:0 0 0 11px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%]{left:auto;right:0;width:220px}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%]{width:100%}}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%]:before{display:none}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{padding-top:8px;padding-bottom:8px;cursor:pointer}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item[_ngcontent-%COMP%] .dropdown-menu.mini-menu[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] > a[_ngcontent-%COMP%] .fa[_ngcontent-%COMP%]{margin-right:11px;min-width:15px}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] .dropdown-menu[_ngcontent-%COMP%]{display:block}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .nav-item.opened[_ngcontent-%COMP%] ~ .items-overlay[_ngcontent-%COMP%]{opacity:1;transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible}.uxc2[_nghost-%COMP%] .nav-items[_ngcontent-%COMP%] .items-overlay[_ngcontent-%COMP%]{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}"] });
9126
9194
  (function () {
9127
9195
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoTopbarComponent, [{
9128
9196
  type: Component,
9129
9197
  args: [{ selector: 'info-topbar', template: "<ng-container *ngIf=\"_platform.Config.ux >= 3\">\r\n <div class=\"site-navbar\">\r\n <a class=\"logo\" >\r\n <i class=\"logo-img\"></i>\r\n <i class=\"logo-img-resp\"></i>\r\n </a>\r\n \r\n <div class=\"nav-items\">\r\n <div class=\"nav-item usuario-logado\" [class.separador]=\"_session.Empresas.length > 1 || _session.Unidades\" [ngClass]=\"{ 'opened' : topMenu.cliente }\">\r\n <dl (click)=\"(_session.Clientes || []).length > 1 ? open('cliente') : null\">\r\n <dt>{{ _session.Perfil }}</dt>\r\n <dd>{{ _session.Usuario }}</dd>\r\n </dl>\r\n\r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Clientes' | translate }}</h4>\r\n \r\n <ul class=\"empresas\">\r\n <li *ngFor=\"let client of _session.Clientes\" >\r\n <a (click)=\"setClient(client); divModal.click();\">{{ client.Nome }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item selecao-empresa\" *ngIf=\"_session.Empresas.length > 1\" [ngClass]=\"{ 'opened' : topMenu.empresa }\">\r\n <dl (click)=\"open('empresa')\">\r\n <dt>{{ 'Empresa' | translate }}</dt>\r\n <dd>{{ _session.Empresa }}</dd>\r\n </dl>\r\n \r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Empresas' | translate }}</h4>\r\n \r\n <ul class=\"empresas\">\r\n <li *ngFor=\"let company of _session.Empresas\" >\r\n <a (click)=\"setCompany(company); divModal.click();\">{{ company.Nome }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item selecao-empresa\" *ngIf=\"_session.Unidade && (_session.Unidades || []).length > 1\" [ngClass]=\"{ 'opened' : topMenu.unidade }\">\r\n <dl (click)=\"open('unidade')\">\r\n <dt>{{ 'Unidade' | translate }}</dt>\r\n <dd>{{ _session.Unidade }}</dd>\r\n </dl>\r\n \r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Unidades' | translate }}</h4>\r\n \r\n <ul class=\"empresas\">\r\n <li *ngFor=\"let unity of _session.Unidades\" >\r\n <a (click)=\"setUnity(unity); divModal.click();\">{{ unity.Nome }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item selecao-infoia\" [ngClass]=\"{ 'opened': topMenu.infoia }\" *ngIf=\"enabledia\">\r\n <button mat-icon-button (click)=\"open('infoia')\" [matTooltip]=\"'Info IA' | translate\">\r\n <label>{{ 'InfoIA' | translate }}</label>\r\n <mat-icon>diversity_2</mat-icon>\r\n </button>\r\n \r\n <div class=\"menu-lateral-direita infoia\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'InfoIA' | translate }}</h4>\r\n <div>\r\n <ng-content></ng-content>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item\">\r\n <button mat-icon-button (click)=\"navigate(profileurl)\" [matTooltip]=\"'MeuPerfil' | translate\">\r\n <mat-icon>person</mat-icon>\r\n </button>\r\n </div>\r\n \r\n <div class=\"nav-item\" *ngIf=\"fastsearchform\">\r\n <button mat-icon-button (click)=\"openFastSearch()\" [matTooltip]=\"fastsearchtitle | translate\">\r\n <mat-icon>search</mat-icon>\r\n </button>\r\n </div>\r\n \r\n <div class=\"nav-item\" [ngClass]=\"{ 'opened' : topMenu.notificacao }\" *ngIf=\"notificationapi\">\r\n <button mat-icon-button (click)=\"setNotificationStatus(true, false, false);open('notificacao')\" [matTooltip]=\"'Notificacoes' | translate\"><mat-icon>notifications_none</mat-icon>\r\n <span class=\"badge\" *ngIf=\"notifications.Count > 0\">{{ notifications.Count }}</span>\r\n </button>\r\n \r\n <div class=\"menu-lateral-direita\" >\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Notificacoes' | translate }}</h4>\r\n \r\n <ul>\r\n <li *ngIf=\"notifications.Itens.length == 0\">\r\n <a style=\"cursor: default;\">\r\n <mat-icon>notifications</mat-icon>\r\n <div class=\"content\">\r\n <span>{{ 'TNotificacoesNenhuma' | translate }}</span>\r\n </div>\r\n </a>\r\n </li>\r\n \r\n <ng-container *ngIf=\"notifications.Itens.length > 0\">\r\n <li *ngFor=\"let item of notifications.Itens\">\r\n <a (click)=\"navigate(item.Url);close()\">\r\n <dl>\r\n <dt>{{ 'Dia' | translate }} {{ item.Date }}</dt>\r\n <dd [innerHtml]=\"item.Description | translate\"></dd>\r\n </dl>\r\n </a>\r\n </li>\r\n </ng-container>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <!-- <div class=\"nav-item\">\r\n <button mat-icon-button (click)=\"alternarModo()\" [matTooltip]=\"'AlternarModo' | translate\"><mat-icon>brightness_6</mat-icon></button>\r\n </div> -->\r\n \r\n <div class=\"nav-item selecao-tema\" [ngClass]=\"{ 'opened': topMenu.tema }\" *ngIf=\"!prodution && themes.length > 0\">\r\n <button mat-icon-button (click)=\"open('tema')\" [matTooltip]=\"'Tema' | translate\"><mat-icon>invert_colors</mat-icon></button>\r\n \r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Temas' | translate }}</h4>\r\n \r\n <ul class=\"temas\">\r\n <li *ngFor=\"let theme of themes\">\r\n <a (click)=\"setTheme(theme.name); divModal.click();\"> {{ theme.description | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <div class=\"nav-item\" *ngIf=\"_platform.Config.enabledPrime\">\r\n <button mat-icon-button [matTooltip]=\"(_platform.ModoPrime ? 'ModoPadrao' : 'Prime') | translate\" (click)=\"toggleMode()\"><mat-icon>brightness_6</mat-icon></button>\r\n </div>\r\n \r\n <div class=\"nav-item selecao-idioma\" [ngClass]=\"{ 'opened': topMenu.idioma }\" *ngIf=\"languages.length > 0\">\r\n <button mat-icon-button (click)=\"open('idioma')\" [matTooltip]=\"'Idioma' | translate\"><mat-icon>public</mat-icon></button>\r\n \r\n <div class=\"menu-lateral-direita\">\r\n <mat-icon class=\"fechar\" (click)=\"close()\">close</mat-icon>\r\n <h4>{{ 'Idiomas' | translate }}</h4>\r\n \r\n <ul class=\"idiomas\">\r\n <li *ngFor=\"let lang of languages\">\r\n <a (click)=\"setLanguage(lang.lang); divModal.click();\">{{ lang.name | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <div class=\"nav-item\">\r\n <button mat-icon-button [matTooltip]=\"'Sair' | translate\" (click)=\"logout()\"><mat-icon>power_settings_new</mat-icon></button>\r\n </div>\r\n \r\n <div class=\"items-overlay\" (click)=\"close()\" #divModal></div>\r\n </div>\r\n \r\n <div class=\"navbar-button\" [ngClass]=\"{ 'open' : opened }\" (click)=\"openSidebar()\">\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n </div>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"_platform.Config.ux <= 2\">\r\n <div class=\"site-navbar\">\r\n <div class=\"sessao-clone text-lightgray\" *ngIf=\"_session.Clone\">\r\n <div><label>({{ 'ModoClone' | translate }})</label></div>\r\n </div>\r\n\r\n <div class=\"navbar-button\" [ngClass]=\"{ 'open' : opened }\" (click)=\"openSidebar()\">\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n <span></span>\r\n </div>\r\n\r\n <h1 id=\"page-title\" class=\"page-title\" *ngIf=\"_platform.PaginaAtiva\">\r\n <mat-icon>{{ _platform.PaginaAtiva.Icone }}</mat-icon> {{ _platform.PaginaAtiva.Titulo | translate }}\r\n </h1>\r\n\r\n <div class=\"nav-items\">\r\n <div class=\"nav-item user-profile\" [ngClass]=\"{ 'opened' : topMenu.empresa }\">\r\n <button mat-button (click)=\"open('empresa')\">\r\n <mat-icon>fingerprint</mat-icon>\r\n <div class=\"name\">\r\n <label>{{ \"Empresa\" | translate }}</label>\r\n <span>{{ _session.Empresa }}</span>\r\n </div>\r\n </button>\r\n\r\n <div class=\"dropdown-menu\">\r\n <h4 class=\"menu-title\">{{ 'Empresa' | translate }}</h4>\r\n\r\n <ul class=\"company\">\r\n <li *ngFor=\"let company of _session.Empresas\" >\r\n <a (click)=\"setCompany(company); divModal.click();\">{{ company.Nome }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item\" [ngClass]=\"{ 'opened' : topMenu.notificacao }\" *ngIf=\"notificationapi\">\r\n <button mat-icon-button (click)=\"setNotificationStatus(true, false, false);open('notificacao')\" [matTooltip]=\"'Notificacoes' | translate\"><mat-icon>notifications_none</mat-icon>\r\n <span class=\"badge\" *ngIf=\"notifications.Count > 0\">{{ notifications.Count }}</span>\r\n </button>\r\n\r\n <div class=\"dropdown-menu\">\r\n <h4 class=\"menu-title\">{{ 'Notificacoes' | translate }}</h4>\r\n\r\n <ul>\r\n <li *ngIf=\"notifications.Itens.length == 0\">\r\n <a style=\"cursor: default;\">\r\n <mat-icon>notifications_off</mat-icon>\r\n <div class=\"content\">\r\n <span>{{ 'TNotificacoesNenhuma' | translate }}</span>\r\n </div>\r\n </a>\r\n </li>\r\n\r\n <ng-container *ngIf=\"notifications.Itens.length > 0\">\r\n <li *ngFor=\"let item of notifications.Itens\">\r\n <a (click)=\"navigate(item.Url);close()\">\r\n <mat-icon>{{ item.Icon }}</mat-icon>\r\n <div class=\"content\">\r\n <span class=\"desc\" [innerHtml]=\"item.Description | translate\"></span>\r\n <span class=\"date\">{{ item.Date }}</span>\r\n </div>\r\n </a>\r\n </li>\r\n </ng-container>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item\" [ngClass]=\"{ 'opened': topMenu.idioma }\" *ngIf=\"languages.length > 0\">\r\n <button mat-icon-button (click)=\"open('idioma')\" [matTooltip]=\"'Idioma' | translate\"><mat-icon>public</mat-icon></button>\r\n <div class=\"dropdown-menu\">\r\n <h4 class=\"menu-title\">{{ 'Idioma' | translate }}</h4>\r\n <ul class=\"languages\">\r\n <li *ngFor=\"let lang of languages\">\r\n <a (click)=\"setLanguage(lang.lang); divModal.click();\">{{ lang.name | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n\r\n <div class=\"nav-item\" [ngClass]=\"{ 'opened': topMenu.tema }\" *ngIf=\"!prodution && themes.length > 0\">\r\n <button mat-icon-button (click)=\"open('tema')\" [matTooltip]=\"'Tema' | translate\"><mat-icon>invert_colors</mat-icon></button>\r\n <div class=\"dropdown-menu\">\r\n <h4 class=\"menu-title\">{{ 'Temas' | translate }}</h4>\r\n <ul class=\"themes\">\r\n <li *ngFor=\"let theme of themes\">\r\n <a (click)=\"setTheme(theme.name); divModal.click();\"> {{ theme.description | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n \r\n <div class=\"nav-item\" *ngIf=\"fastsearchform\">\r\n <button mat-icon-button (click)=\"openFastSearch()\" [matTooltip]=\"fastsearchtitle | translate\">\r\n <mat-icon>search</mat-icon>\r\n </button>\r\n </div>\r\n\r\n <div class=\"nav-item\" *ngIf=\"profileurl != ''\">\r\n <button mat-icon-button [matTooltip]=\"'MeuPerfil' | translate\" [routerLink]=\"profileurl\"><mat-icon>person</mat-icon></button>\r\n </div>\r\n\r\n <div class=\"nav-item\">\r\n <button mat-icon-button [matTooltip]=\"'Sair' | translate\" (click)=\"logout()\"><mat-icon>power_settings_new</mat-icon></button>\r\n </div>\r\n\r\n <div class=\"items-overlay\" (click)=\"close()\" #divModal></div>\r\n </div>\r\n </div>\r\n</ng-container>\r\n\r\n<section class=\"loading-bar\" *ngIf=\"loading\"><mat-progress-bar color=\"primary\" mode=\"indeterminate\"></mat-progress-bar></section>\r\n<div class=\"block\" *ngIf=\"loading\"></div>", styles: ["body{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}:host.topmenu{border-bottom-width:0!important;box-shadow:none!important}:host.uxc3{transition:left .2s ease-in-out;display:block;height:85px;left:0;position:fixed;right:0;top:0;z-index:9998}@media screen and (max-width: 991px){:host.uxc3{left:0}:host.uxc3 .nav-items{width:100%}:host.uxc3 .logo{position:absolute;top:17px}:host.uxc3 .logo .logo-img{display:none!important}:host.uxc3 .logo .logo-img-resp{display:block!important;height:45px!important}:host.uxc3 .usuario-logado{position:absolute;top:70px!important;left:-100%;width:calc(100% + 6px);border-right:none!important;padding-left:25px!important;padding-top:15px!important;transition:left .2s ease-in-out}:host.uxc3 .usuario-logado.menu-aberto{left:0%}:host.uxc3 .usuario-logado dl{text-align:left!important}:host.uxc3 .usuario-logado dl dt{display:inline-block;font-size:14px}:host.uxc3 .usuario-logado dl dd{position:relative;display:inline-block;padding-right:20px;margin-right:5px}:host.uxc3 .usuario-logado dl dd:after{position:absolute;top:2px;right:0;content:\"-\";width:10px;height:10px}:host.uxc3 .selecao-empresa{position:absolute;top:115px!important;left:-100%;width:calc(100% + 6px);margin:0!important;padding:5px 15px 6px 25px;transition:left .2s ease-in-out}:host.uxc3 .selecao-empresa.menu-aberto{left:0%}:host.uxc3 .selecao-empresa button,:host.uxc3 .selecao-empresa dl{width:100%!important}}:host.uxc3 .site-navbar{align-items:center;display:flex;flex-wrap:nowrap;height:100%;justify-content:space-between;padding:0 22px}@media screen and (max-width: 991px){:host.uxc3 .site-navbar{flex-wrap:wrap}}:host.uxc3 .site-navbar .logo{display:block;height:60px;width:500px}:host.uxc3 .site-navbar .logo .logo-img{display:block;height:100%;width:100%}:host.uxc3 .site-navbar .logo .logo-img-resp{display:none;height:100%;width:100%}:host.uxc3 .site-navbar .navbar-button{cursor:pointer;display:none;height:24px;margin:0;position:absolute;transform:rotate(0);width:35px;top:20px;left:70px}@media screen and (max-width: 991px){:host.uxc3 .site-navbar .navbar-button{display:block}}:host.uxc3 .site-navbar .navbar-button sub{position:absolute;bottom:-10px;text-transform:uppercase}:host.uxc3 .site-navbar .navbar-button span{display:block;height:3px;opacity:1;position:absolute;transform:rotate(0);transition:.25s ease-in-out;width:50%;top:10px}:host.uxc3 .site-navbar .navbar-button span:nth-child(even){left:50%}:host.uxc3 .site-navbar .navbar-button span:nth-child(odd){left:0}:host.uxc3 .site-navbar .navbar-button span:nth-child(1),:host.uxc3 .site-navbar .navbar-button span:nth-child(2){top:0}:host.uxc3 .site-navbar .navbar-button span:nth-child(3),:host.uxc3 .site-navbar .navbar-button span:nth-child(4){top:10px}:host.uxc3 .site-navbar .navbar-button span:nth-child(5),:host.uxc3 .site-navbar .navbar-button span:nth-child(6){top:20px}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(1),:host.uxc3 .site-navbar .navbar-button.open span:nth-child(6){transform:rotate(45deg)}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(2),:host.uxc3 .site-navbar .navbar-button.open span:nth-child(5){transform:rotate(-45deg)}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(1){left:2px;top:6px}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(2){left:calc(50% - 7px);top:6px}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(3){left:-50%;opacity:0}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(4){left:100%;opacity:0}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(5){left:2px;top:15px}:host.uxc3 .site-navbar .navbar-button.open span:nth-child(6){left:calc(50% - 7px);top:15px}:host.uxc3 dl{line-height:20px;text-transform:none;transition:border .2s ease-in-out}:host.uxc3 dl dt{font-size:10px;font-weight:500;transition:color .2s ease-in-out}:host.uxc3 dl dd{position:relative;top:0;font-size:14px;font-weight:600;margin-bottom:0;transition:color .2s ease-in-out}:host.uxc3 .usuario-logado,:host.uxc3 .selecao-empresa{top:-1px;padding:5px 20px 5px 0;cursor:pointer}:host.uxc3 .usuario-logado dl,:host.uxc3 .selecao-empresa dl{top:5px;margin:0}:host.uxc3 .usuario-logado dl mat-icon,:host.uxc3 .selecao-empresa dl mat-icon{position:absolute;font-size:22px;top:17px;right:0;text-align:center}:host.uxc3 .usuario-logado{padding-left:10px}:host.uxc3 .usuario-logado dl{text-align:right}:host.uxc3 .usuario-logado dl mat-icon{left:0}:host.uxc3 .selecao-empresa{padding-left:20px}:host.uxc3 .nav-items{display:block;height:100%;margin:0 -5px;text-align:right}@media screen and (min-width: 544px){:host.uxc3 .nav-items{width:100%}}@media screen and (max-width: 991px){:host.uxc3 .nav-items{display:block;top:0;position:absolute;right:10px}}:host.uxc3 .nav-items .nav-item{align-items:center;display:inline-block;text-align:left;margin:15px 3px 0 0}:host.uxc3 .nav-items .nav-item .mat-button,:host.uxc3 .nav-items .nav-item .mat-icon-button{position:relative;cursor:pointer;min-width:40px;padding:0;transition:color .2s ease-in-out;top:-14px}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-wrapper,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-wrapper{display:flex;height:100%;padding:5px;width:100%}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-wrapper .mat-icon,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-wrapper .mat-icon{font-size:24px;height:auto!important;line-height:auto!important;vertical-align:middle;width:auto!important}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-wrapper .mat-icon .marker,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-wrapper .mat-icon .marker{border-radius:50%;height:6px;position:absolute;right:0;top:0;width:6px}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-wrapper .badge,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-wrapper .badge{position:absolute;background:#af1b11;border-radius:8px;font-size:10px;color:#fff;padding:0 5px;line-height:16px;right:0;top:0}:host.uxc3 .nav-items .nav-item .mat-button .mat-button-focus-overlay,:host.uxc3 .nav-items .nav-item .mat-button .mat-button-ripple,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-focus-overlay,:host.uxc3 .nav-items .nav-item .mat-icon-button .mat-button-ripple{display:none}:host.uxc3 .nav-items .nav-item .menu-lateral-direita{display:none;top:0;right:0;padding:0;position:fixed;width:420px;height:100%;z-index:9999}@media screen and (max-width: 991px){:host.uxc3 .nav-items .nav-item .menu-lateral-direita{left:auto;margin-left:0;right:0}}@media screen and (max-width: 543px){:host.uxc3 .nav-items .nav-item .menu-lateral-direita{left:0;margin-left:0;width:100%}}:host.uxc3 .nav-items .nav-item .menu-lateral-direita:before{border:10px solid transparent;bottom:100%;content:\"\";left:50%;margin:0 0 0 -10px;position:absolute}@media screen and (max-width: 991px){:host.uxc3 .nav-items .nav-item .menu-lateral-direita:before{left:100%;margin-left:-34px}}@media screen and (max-width: 543px){:host.uxc3 .nav-items .nav-item .menu-lateral-direita:before{display:none}}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>.fechar{position:absolute;top:30px;right:30px;font-size:28px;cursor:pointer;opacity:.8}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>.fechar:hover{opacity:1}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>h4{font-size:24px;font-weight:500;margin:30px 0 30px 38px}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul{list-style-type:none;margin:0;height:calc(100% - 170px);overflow-y:auto;border-radius:0 0 4px 4px;padding:0}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li:hover{background:rgba(0,0,0,.05)}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li.disabled>a{cursor:default!important;opacity:.4}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li:last-child{border-bottom:0}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li dl{line-height:20px;padding:5px 0;margin-bottom:0}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li dl dt{font-weight:600;font-size:13px;margin-bottom:5px}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li dl dd{font-size:14px;font-weight:500}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li>a{font-size:14px;font-weight:500;padding:10px 40px!important;align-items:center;display:flex;padding:11px;transition:background .2s ease-in-out;cursor:pointer}:host.uxc3 .nav-items .nav-item .menu-lateral-direita>ul>li>a .mat-icon{background:rgba(255,255,255,.1);border-radius:50%;font-size:22px;height:auto;margin-right:11px;padding:7px;width:auto}:host.uxc3 .nav-items .nav-item.opened .menu-lateral-direita,:host.uxc3 .nav-items .nav-item.opened .lista-empresas{display:block}:host.uxc3 .nav-items .nav-item.opened~.items-overlay{transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible;opacity:.5}:host.uxc3 .nav-items .items-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}@media screen and (max-width: 991px){:host.uxc3{width:100%}}:host.uxc2{background:#fff;border-bottom:1px solid #e4e9f0;display:block;height:70px;left:120px;position:fixed;right:0;top:0;z-index:9998}@media only screen and (max-width: 991px){:host.uxc2{left:0}}:host.uxc2 .sessao-clone{position:absolute;padding:8px;top:0;background-color:#a80707;z-index:1}:host.uxc2 .sessao-clone .mat-icon-button{font-size:10px}:host.uxc2 .site-navbar{align-items:center;display:flex;flex-wrap:nowrap;height:100%;justify-content:space-between;padding:0 22px}@media only screen and (max-width: 991px){:host.uxc2 .site-navbar{flex-wrap:wrap}}:host.uxc2 .site-navbar .navbar-button{cursor:pointer;display:none;height:24px;margin:0;position:relative;transform:rotate(0);width:30px}@media only screen and (max-width: 991px){:host.uxc2 .site-navbar .navbar-button{display:block}}:host.uxc2 .site-navbar .navbar-button span{display:block;height:3px;opacity:1;position:absolute;transform:rotate(0);transition:.25s ease-in-out;width:50%}:host.uxc2 .site-navbar .navbar-button span:nth-child(even){left:50%}:host.uxc2 .site-navbar .navbar-button span:nth-child(odd){left:0}:host.uxc2 .site-navbar .navbar-button span:nth-child(1),:host.uxc2 .site-navbar .navbar-button span:nth-child(2){top:0}:host.uxc2 .site-navbar .navbar-button span:nth-child(3),:host.uxc2 .site-navbar .navbar-button span:nth-child(4){top:10px}:host.uxc2 .site-navbar .navbar-button span:nth-child(5),:host.uxc2 .site-navbar .navbar-button span:nth-child(6){top:20px}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(1),:host.uxc2 .site-navbar .navbar-button.open span:nth-child(6){transform:rotate(45deg)}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(2),:host.uxc2 .site-navbar .navbar-button.open span:nth-child(5){transform:rotate(-45deg)}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(1){left:3px;top:6px}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(2){left:calc(50% - 3px);top:6px}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(3){left:-50%;opacity:0}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(4){left:100%;opacity:0}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(5){left:3px;top:15px}:host.uxc2 .site-navbar .navbar-button.open span:nth-child(6){left:calc(50% - 3px);top:15px}:host.uxc2 .page-title{font-size:1.4rem;font-weight:400;line-height:1;margin:0;width:100%}:host.uxc2 .page-title mat-icon{top:4px;left:0;font-size:1.1em}@media only screen and (max-width: 991px){:host.uxc2 .page-title{display:none}}:host.uxc2 .nav-items{display:block;height:100%;margin:0 -5px;text-align:right}@media only screen and (min-width: 544px){:host.uxc2 .nav-items{width:100%}}:host.uxc2 .nav-items .nav-item{align-items:center;display:inline-block;text-align:left;margin:15px 3px 0 0}@media only screen and (min-width: 544px){:host.uxc2 .nav-items .nav-item{position:relative}}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button{position:relative;cursor:pointer;min-width:40px;padding:0;transition:color .2s ease-in-out}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper{display:flex;height:100%;padding:5px;width:100%}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .mat-icon,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .mat-icon{font-size:22px;height:30px;line-height:30px;vertical-align:top;width:30px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .mat-icon .marker,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .mat-icon .marker{border-radius:50%;height:6px;position:absolute;right:0;top:0;width:6px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .badge,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .badge{position:absolute;background:#af1b11;border-radius:8px;font-size:10px;color:#fff;padding:0 5px;line-height:16px;right:0;top:0}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .avatar,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .avatar{border-radius:50%;height:40px;overflow:hidden;width:40px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .name,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .name{top:10px;padding-left:10px;white-space:nowrap;line-height:19px;text-align:left;font-size:12px;margin-top:-3px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .name label,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .name label{display:block;margin:0;font-size:10px;line-height:12px}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .name span,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .name span{top:-3px}@media only screen and (max-width: 991px){:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-wrapper .name,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-wrapper .name{display:none}}:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-focus-overlay,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-button .mat-button-ripple,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-focus-overlay,:host.uxc2 .nav-items .nav-item ::ng-deep .mat-icon-button .mat-button-ripple{display:none}:host.uxc2 .nav-items .nav-item .dropdown-menu{box-shadow:0 5px 10px 2px #00000040;display:none;left:50%;margin:0 0 0 -150px;padding:0;position:absolute;top:100%;width:300px;z-index:9999}@media only screen and (max-width: 991px){:host.uxc2 .nav-items .nav-item .dropdown-menu{left:auto;margin-left:0;right:0}}@media only screen and (max-width: 543px){:host.uxc2 .nav-items .nav-item .dropdown-menu{left:0;margin-left:0;width:100%}}:host.uxc2 .nav-items .nav-item .dropdown-menu.calendar{left:-34%}:host.uxc2 .nav-items .nav-item .dropdown-menu.calendar:before{left:60%}:host.uxc2 .nav-items .nav-item .dropdown-menu:before{border:10px solid transparent;bottom:100%;content:\"\";left:50%;margin:0 0 0 -10px;position:absolute}@media only screen and (max-width: 991px){:host.uxc2 .nav-items .nav-item .dropdown-menu:before{left:100%;margin-left:-34px}}@media only screen and (max-width: 543px){:host.uxc2 .nav-items .nav-item .dropdown-menu:before{display:none}}:host.uxc2 .nav-items .nav-item .dropdown-menu .company a,:host.uxc2 .nav-items .nav-item .dropdown-menu .languages a,:host.uxc2 .nav-items .nav-item .dropdown-menu .themesa a{cursor:pointer!important}:host.uxc2 .nav-items .nav-item .dropdown-menu .themes{max-height:500px}:host.uxc2 .nav-items .nav-item .dropdown-menu .pesquisa-rapida input{color:#fff}:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-footer,:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-title{margin:0;padding:11px;text-align:center}:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-title{border-bottom:1px solid rgba(255,255,255,.1);color:#fff;font-size:16px;line-height:1.3}:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-footer a{color:#fff}:host.uxc2 .nav-items .nav-item .dropdown-menu .menu-footer a:hover{color:#fffc}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul{list-style-type:none;margin:0;max-height:241px;overflow:auto;padding:0}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li{border-bottom:1px solid rgba(255,255,255,.05)}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li.disabled>a{cursor:default!important;opacity:.4}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li.disabled>a:hover{background:inherit!important}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li:last-child{border-bottom:0}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a{align-items:center;color:#fff;display:flex;padding:11px;transition:background .2s ease-in-out;cursor:pointer}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .mat-icon{background:rgba(255,255,255,.1);border-radius:50%;font-size:22px;height:auto;margin-right:11px;padding:7px;width:auto}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .avatar{border-radius:50%;height:40px;margin-right:11px;width:40px}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content{font-size:.85rem}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content .desc{display:block}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content .date{display:block;font-size:.75rem;font-style:italic;margin-top:4px;opacity:.6}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content .meta{align-items:flex-end;display:flex;justify-content:space-between;line-height:1.3;margin-bottom:4px}:host.uxc2 .nav-items .nav-item .dropdown-menu>ul>li>a .content .meta .date{margin:0 0 0 11px}:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu{left:auto;right:0;width:220px}@media only screen and (max-width: 543px){:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu{width:100%}}:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu:before{display:none}:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu>ul>li>a{padding-top:8px;padding-bottom:8px;cursor:pointer}:host.uxc2 .nav-items .nav-item .dropdown-menu.mini-menu>ul>li>a .fa{margin-right:11px;min-width:15px}:host.uxc2 .nav-items .nav-item.opened .dropdown-menu{display:block}:host.uxc2 .nav-items .nav-item.opened~.items-overlay{opacity:1;transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible}:host.uxc2 .nav-items .items-overlay{height:100%;left:0;opacity:0;position:fixed;top:0;transition:.2s opacity 0s ease-in-out,0s visibility .2s ease-in-out;visibility:hidden;width:100%;z-index:9998}\n"] }]
9130
- }], function () { return [{ type: InfoTranslateService }, { type: InfoAuthenticationService }, { type: InfoDataService }, { type: InfoThemeService }, { type: i1$1.Router }, { type: InfoDialogModal }, { type: InfoSessionModel }, { type: InfoPlatformModel }, { type: i1$3.MatDialog }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: Utilities }]; }, { opened: [{
9198
+ }], function () { return [{ type: InfoTranslateService }, { type: InfoAuthenticationService }, { type: InfoDataService }, { type: InfoThemeService }, { type: i1$2.Router }, { type: InfoDialogModal }, { type: InfoSessionModel }, { type: InfoPlatformModel }, { type: i1$4.MatDialog }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: Utilities }]; }, { opened: [{
9131
9199
  type: Input
9132
9200
  }], languages: [{
9133
9201
  type: Input
@@ -9308,7 +9376,7 @@ class InfoTopMenuComponent {
9308
9376
  this.onchangestate.emit();
9309
9377
  }
9310
9378
  }
9311
- /** @nocollapse */ InfoTopMenuComponent.ɵfac = function InfoTopMenuComponent_Factory(t) { return new (t || InfoTopMenuComponent)(i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(InfoAuthenticationService), i0.ɵɵdirectiveInject(InfoLastSearchModel), i0.ɵɵdirectiveInject(i1$1.Router), i0.ɵɵdirectiveInject(InfoSessionModel), i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef)); };
9379
+ /** @nocollapse */ InfoTopMenuComponent.ɵfac = function InfoTopMenuComponent_Factory(t) { return new (t || InfoTopMenuComponent)(i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(InfoAuthenticationService), i0.ɵɵdirectiveInject(InfoLastSearchModel), i0.ɵɵdirectiveInject(i1$2.Router), i0.ɵɵdirectiveInject(InfoSessionModel), i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef)); };
9312
9380
  /** @nocollapse */ InfoTopMenuComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoTopMenuComponent, selectors: [["info-topmenu"]], inputs: { api: "api", method: "method" }, outputs: { onchangestate: "onchangestate" }, decls: 2, vars: 1, consts: [[4, "ngIf"], [3, "ngClass", 4, "ngFor", "ngForOf"], [3, "ngClass"], [3, "routerLink", "click", 4, "ngIf"], [3, "routerLink", "click"], [3, "click"], [1, "sub-menu"], [4, "ngFor", "ngForOf"]], template: function InfoTopMenuComponent_Template(rf, ctx) {
9313
9381
  if (rf & 1) {
9314
9382
  i0.ɵɵelementStart(0, "nav");
@@ -9319,12 +9387,12 @@ class InfoTopMenuComponent {
9319
9387
  i0.ɵɵadvance(1);
9320
9388
  i0.ɵɵproperty("ngIf", ctx.menu);
9321
9389
  }
9322
- }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i1$1.RouterLinkWithHref, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%]{position:fixed;top:80px;z-index:999;width:100%}[_nghost-%COMP%] nav[_ngcontent-%COMP%]{background:#fff;border-bottom:solid 1px #ccc}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{margin:0;padding:0;list-style:none;white-space:nowrap}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]{position:relative;margin:0;display:inline-block;padding:0 10px;background:#fff;color:#111;transition:background .2s ease-in-out}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:hover{background:#eee}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{position:relative;display:block;transition:color .2s ease-in-out;text-align:center;padding:7px 10px 10px;cursor:pointer}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{text-decoration:none}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li.active[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]:after{position:absolute;left:0;bottom:0;display:block;content:\" \";background:#555;height:3px;width:100%}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:hover{background:#555}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:hover > a[_ngcontent-%COMP%]{color:#fff}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:hover .sub-menu[_ngcontent-%COMP%]{display:block}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{position:absolute;top:39px;left:0;display:none;min-width:100%;z-index:1;background:#fff;box-shadow:0 5px 10px 1px #ccc;padding:20px 10px}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{list-style:none;padding:0}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{text-align:left;color:#111}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{text-decoration:underline;color:#111}"] });
9390
+ }, dependencies: [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i1$2.RouterLinkWithHref, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%]{position:fixed;top:80px;z-index:999;width:100%}[_nghost-%COMP%] nav[_ngcontent-%COMP%]{background:#fff;border-bottom:solid 1px #ccc}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%]{margin:0;padding:0;list-style:none;white-space:nowrap}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]{position:relative;margin:0;display:inline-block;padding:0 10px;background:#fff;color:#111;transition:background .2s ease-in-out}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:hover{background:#eee}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{position:relative;display:block;transition:color .2s ease-in-out;text-align:center;padding:7px 10px 10px;cursor:pointer}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{text-decoration:none}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li.active[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]:after{position:absolute;left:0;bottom:0;display:block;content:\" \";background:#555;height:3px;width:100%}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:hover{background:#555}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:hover > a[_ngcontent-%COMP%]{color:#fff}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%]:hover .sub-menu[_ngcontent-%COMP%]{display:block}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{position:absolute;top:39px;left:0;display:none;min-width:100%;z-index:1;background:#fff;box-shadow:0 5px 10px 1px #ccc;padding:20px 10px}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{list-style:none;padding:0}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{text-align:left;color:#111}[_nghost-%COMP%] nav[_ngcontent-%COMP%] > ul[_ngcontent-%COMP%] > li[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] a[_ngcontent-%COMP%]:hover{text-decoration:underline;color:#111}"] });
9323
9391
  (function () {
9324
9392
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoTopMenuComponent, [{
9325
9393
  type: Component,
9326
9394
  args: [{ selector: 'info-topmenu', template: "<nav>\r\n <ul *ngIf=\"menu\">\r\n <li *ngFor=\"let m of menu\" [ngClass]=\"{ 'active': menuAtivo == m.Title, 'disabled': !m.Enabled, 'opened': openSubmenu == m.Title }\">\r\n <a *ngIf=\"m.Sub == null\" [routerLink]=\"m.Routing\" (click)=\"access(m.Title)\" >{{ m.Title | translate }} </a>\r\n\r\n <ng-container *ngIf=\"m.Sub != null\">\r\n <a (click)=\"toggleSubmenu(m.Title)\" >{{ m.Title | translate }} </a>\r\n\r\n <div class=\"sub-menu\">\r\n <ul>\r\n <li *ngFor=\"let s of m.Sub\">\r\n <a [routerLink]=\"s.Routing\" (click)=\"changeSidebar();access(m.Title);\" >{{ s.Title | translate }}</a>\r\n </li>\r\n </ul>\r\n </div>\r\n </ng-container>\r\n </li>\r\n </ul>\r\n</nav>", styles: ["body{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}:host{position:fixed;top:80px;z-index:999;width:100%}:host nav{background:#fff;border-bottom:solid 1px #ccc}:host nav>ul{margin:0;padding:0;list-style:none;white-space:nowrap}:host nav>ul>li{position:relative;margin:0;display:inline-block;padding:0 10px;background:#fff;color:#111;transition:background .2s ease-in-out}:host nav>ul>li:hover{background:#eee}:host nav>ul>li a{position:relative;display:block;transition:color .2s ease-in-out;text-align:center;padding:7px 10px 10px;cursor:pointer}:host nav>ul>li a:hover{text-decoration:none}:host nav>ul>li.active>a:after{position:absolute;left:0;bottom:0;display:block;content:\" \";background:#555;height:3px;width:100%}:host nav>ul>li:hover{background:#555}:host nav>ul>li:hover>a{color:#fff}:host nav>ul>li:hover .sub-menu{display:block}:host nav>ul>li .sub-menu{position:absolute;top:39px;left:0;display:none;min-width:100%;z-index:1;background:#fff;box-shadow:0 5px 10px 1px #ccc;padding:20px 10px}:host nav>ul>li .sub-menu ul{list-style:none;padding:0}:host nav>ul>li .sub-menu ul li a{text-align:left;color:#111}:host nav>ul>li .sub-menu ul li a:hover{text-decoration:underline;color:#111}\n"] }]
9327
- }], function () { return [{ type: InfoDataService }, { type: InfoAuthenticationService }, { type: InfoLastSearchModel }, { type: i1$1.Router }, { type: InfoSessionModel }, { type: InfoPlatformModel }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, { api: [{
9395
+ }], function () { return [{ type: InfoDataService }, { type: InfoAuthenticationService }, { type: InfoLastSearchModel }, { type: i1$2.Router }, { type: InfoSessionModel }, { type: InfoPlatformModel }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, { api: [{
9328
9396
  type: Input
9329
9397
  }], method: [{
9330
9398
  type: Input
@@ -9507,7 +9575,7 @@ class InfoMainComponent {
9507
9575
  this.onverifynotification.emit(event);
9508
9576
  }
9509
9577
  }
9510
- /** @nocollapse */ InfoMainComponent.ɵfac = function InfoMainComponent_Factory(t) { return new (t || InfoMainComponent)(i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(InfoSessionModel), i0.ɵɵdirectiveInject(i1$1.Router), i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(InfoThemeService), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(Utilities)); };
9578
+ /** @nocollapse */ InfoMainComponent.ɵfac = function InfoMainComponent_Factory(t) { return new (t || InfoMainComponent)(i0.ɵɵdirectiveInject(InfoPlatformModel), i0.ɵɵdirectiveInject(InfoSessionModel), i0.ɵɵdirectiveInject(i1$2.Router), i0.ɵɵdirectiveInject(InfoDataService), i0.ɵɵdirectiveInject(InfoThemeService), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(Utilities)); };
9511
9579
  /** @nocollapse */ InfoMainComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoMainComponent, selectors: [["info-main"]], viewQuery: function InfoMainComponent_Query(rf, ctx) {
9512
9580
  if (rf & 1) {
9513
9581
  i0.ɵɵviewQuery(_c0$1, 5);
@@ -9560,12 +9628,12 @@ class InfoMainComponent {
9560
9628
  i0.ɵɵadvance(1);
9561
9629
  i0.ɵɵproperty("messages", ctx.messages);
9562
9630
  }
9563
- }, dependencies: [i1$2.NgClass, i1$2.NgIf, InfoAlertComponent, InfoSidebarComponent, InfoTopbarComponent, InfoTopMenuComponent, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}.topmenu[_nghost-%COMP%] .main-content[_ngcontent-%COMP%]{padding:180px 0 0!important}.uxc3[_nghost-%COMP%] .main-content[_ngcontent-%COMP%]{padding:140px 0 0 120px;transition:padding .2s ease-in-out}.uxc3[_nghost-%COMP%] .main-content[_ngcontent-%COMP%] .bg[_ngcontent-%COMP%]{background:#FFF}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .main-content[_ngcontent-%COMP%]{padding-left:0;padding-top:70px}}.uxc3[_nghost-%COMP%] .main-content[_ngcontent-%COMP%] .footer[_ngcontent-%COMP%]{background:#fafafa}.uxc3[_nghost-%COMP%] .main-content[_ngcontent-%COMP%] .footer[_ngcontent-%COMP%] .version[_ngcontent-%COMP%]{text-align:right}.uxc3[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-topbar[_ngcontent-%COMP%]{left:0}.uxc3[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-sidebar[_ngcontent-%COMP%]{left:0}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-sidebar[_ngcontent-%COMP%] .sidebar-overlay[_ngcontent-%COMP%]{opacity:.5;transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible}}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-sidebar[_ngcontent-%COMP%] .site-sidebar[_ngcontent-%COMP%]:before, .uxc3[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-sidebar[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{display:block!important}}.uxc2[_nghost-%COMP%] .main-content[_ngcontent-%COMP%]{padding:131px 0 0 120px;transition:padding .2s ease-in-out}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .main-content[_ngcontent-%COMP%]{padding-left:0}}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .main-content[_ngcontent-%COMP%]{padding-top:123px}}.uxc2[_nghost-%COMP%] info-topbar[_ngcontent-%COMP%]{transition:left .2s ease-in-out}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] info-topbar[_ngcontent-%COMP%]{width:100%}}.uxc2[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-topbar[_ngcontent-%COMP%]{left:120px}.uxc2[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-sidebar[_ngcontent-%COMP%]{left:0}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-sidebar[_ngcontent-%COMP%] .sidebar-overlay{opacity:1;transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible}}.uxc2[_nghost-%COMP%] .footer[_ngcontent-%COMP%]{position:sticky;bottom:0;z-index:9997;align-items:center;background:rgba(0,0,0,.1);display:flex;font-size:.8rem;height:3.1428572rem;justify-content:space-between;width:100%}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .footer[_ngcontent-%COMP%]{font-size:.7rem}}.uxc2[_nghost-%COMP%] .footer[_ngcontent-%COMP%] .copyright[_ngcontent-%COMP%], .uxc2[_nghost-%COMP%] .footer[_ngcontent-%COMP%] .version[_ngcontent-%COMP%]{padding:10px 22px}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .footer[_ngcontent-%COMP%] .copyright[_ngcontent-%COMP%]{padding-right:0}}.uxc2[_nghost-%COMP%] .footer[_ngcontent-%COMP%] .version[_ngcontent-%COMP%]{text-align:right;color:#000}"] });
9631
+ }, dependencies: [i1$3.NgClass, i1$3.NgIf, InfoAlertComponent, InfoSidebarComponent, InfoTopbarComponent, InfoTopMenuComponent, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}.topmenu[_nghost-%COMP%] .main-content[_ngcontent-%COMP%]{padding:180px 0 0!important}.uxc3[_nghost-%COMP%] .main-content[_ngcontent-%COMP%]{padding:140px 0 0 120px;transition:padding .2s ease-in-out}.uxc3[_nghost-%COMP%] .main-content[_ngcontent-%COMP%] .bg[_ngcontent-%COMP%]{background:#FFF}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .main-content[_ngcontent-%COMP%]{padding-left:0;padding-top:70px}}.uxc3[_nghost-%COMP%] .main-content[_ngcontent-%COMP%] .footer[_ngcontent-%COMP%]{background:#fafafa}.uxc3[_nghost-%COMP%] .main-content[_ngcontent-%COMP%] .footer[_ngcontent-%COMP%] .version[_ngcontent-%COMP%]{text-align:right}.uxc3[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-topbar[_ngcontent-%COMP%]{left:0}.uxc3[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-sidebar[_ngcontent-%COMP%]{left:0}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-sidebar[_ngcontent-%COMP%] .sidebar-overlay[_ngcontent-%COMP%]{opacity:.5;transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible}}@media screen and (max-width: 991px){.uxc3[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-sidebar[_ngcontent-%COMP%] .site-sidebar[_ngcontent-%COMP%]:before, .uxc3[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-sidebar[_ngcontent-%COMP%] .sub-menu[_ngcontent-%COMP%]{display:block!important}}.uxc2[_nghost-%COMP%] .main-content[_ngcontent-%COMP%]{padding:131px 0 0 120px;transition:padding .2s ease-in-out}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .main-content[_ngcontent-%COMP%]{padding-left:0}}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .main-content[_ngcontent-%COMP%]{padding-top:123px}}.uxc2[_nghost-%COMP%] info-topbar[_ngcontent-%COMP%]{transition:left .2s ease-in-out}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] info-topbar[_ngcontent-%COMP%]{width:100%}}.uxc2[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-topbar[_ngcontent-%COMP%]{left:120px}.uxc2[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-sidebar[_ngcontent-%COMP%]{left:0}@media only screen and (max-width: 991px){.uxc2[_nghost-%COMP%] .open-sidebar[_ngcontent-%COMP%] info-sidebar[_ngcontent-%COMP%] .sidebar-overlay{opacity:1;transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible}}.uxc2[_nghost-%COMP%] .footer[_ngcontent-%COMP%]{position:sticky;bottom:0;z-index:9997;align-items:center;background:rgba(0,0,0,.1);display:flex;font-size:.8rem;height:3.1428572rem;justify-content:space-between;width:100%}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .footer[_ngcontent-%COMP%]{font-size:.7rem}}.uxc2[_nghost-%COMP%] .footer[_ngcontent-%COMP%] .copyright[_ngcontent-%COMP%], .uxc2[_nghost-%COMP%] .footer[_ngcontent-%COMP%] .version[_ngcontent-%COMP%]{padding:10px 22px}@media only screen and (max-width: 543px){.uxc2[_nghost-%COMP%] .footer[_ngcontent-%COMP%] .copyright[_ngcontent-%COMP%]{padding-right:0}}.uxc2[_nghost-%COMP%] .footer[_ngcontent-%COMP%] .version[_ngcontent-%COMP%]{text-align:right;color:#000}"] });
9564
9632
  (function () {
9565
9633
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoMainComponent, [{
9566
9634
  type: Component,
9567
9635
  args: [{ selector: 'info-main', template: "<div class=\"site-container\" [ngClass]=\"{ 'open-sidebar': opened }\">\r\n \r\n <info-topbar #topbar\r\n [themes]=\"themes\" \r\n [languages]=\"languages\" \r\n [profileurl]=\"profileurl\"\r\n [notificationapi]=\"notificationapi\" \r\n [notificationgetmethod]=\"notificationgetmethod\" \r\n [notificationpostmethod]=\"notificationpostmethod\"\r\n [notificationverifymethod]=\"notificationverifymethod\"\r\n [notificationverifyenabled]=\"notificationverifyenabled\"\r\n [fastsearchform]=\"fastsearchform\"\r\n [fastsearchformwidth]=\"fastsearchformwidth\"\r\n [fastsearchtitle]=\"fastsearchtitle\"\r\n [setthemeonchangecompany]=\"setthemeonchangecompany\"\r\n (onchangestate)=\"onChangeTopBarState()\"\r\n (ongetnotification)=\"onGetNotificationsTopBar($event)\"\r\n (onverifynotification)=\"onVerifyNotificationsTopBar($event)\"\r\n [enabledia]=\"enabledia\">\r\n <ng-content select=\"[infoia]\"></ng-content>\r\n </info-topbar>\r\n \r\n <info-topmenu *ngIf=\"_platform.Config.topMenu\"\r\n [api]=\"menuapi\" \r\n [method]=\"menumethod\" \r\n (onchangestate)=\"onChangeSideBarState()\">\r\n </info-topmenu>\r\n\r\n <info-sidebar #sidebar *ngIf=\"!_platform.Config.topMenu\"\r\n [api]=\"menuapi\" \r\n [method]=\"menumethod\" \r\n [activemenubyurl]=\"activemenubyurl\"\r\n (onchangestate)=\"onChangeSideBarState()\">\r\n </info-sidebar>\r\n\r\n <main class=\"main-content\">\r\n <div class=\"main-content-wrap\">\r\n <ng-content select=\"[main]\" *ngIf=\"ready\"></ng-content>\r\n </div>\r\n\r\n <div class=\"footer row\">\r\n <div class=\"copyright col-9\">{{ 'Copyright' | translate}}</div>\r\n <div class=\"version col-3\" *ngIf=\"version\">{{ 'Versao' | translate}} {{ version }}</div>\r\n </div>\r\n \r\n <info-alert [messages]=\"messages\"></info-alert>\r\n </main>\r\n</div>", styles: ["body{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}:host.topmenu .main-content{padding:180px 0 0!important}:host.uxc3 .main-content{padding:140px 0 0 120px;transition:padding .2s ease-in-out}:host.uxc3 .main-content .bg{background:#FFF}@media screen and (max-width: 991px){:host.uxc3 .main-content{padding-left:0;padding-top:70px}}:host.uxc3 .main-content .footer{background:#fafafa}:host.uxc3 .main-content .footer .version{text-align:right}:host.uxc3 .open-sidebar info-topbar{left:0}:host.uxc3 .open-sidebar info-sidebar{left:0}@media screen and (max-width: 991px){:host.uxc3 .open-sidebar info-sidebar .sidebar-overlay{opacity:.5;transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible}}@media screen and (max-width: 991px){:host.uxc3 .open-sidebar info-sidebar .site-sidebar:before,:host.uxc3 .open-sidebar info-sidebar .sub-menu{display:block!important}}:host.uxc2 .main-content{padding:131px 0 0 120px;transition:padding .2s ease-in-out}@media only screen and (max-width: 991px){:host.uxc2 .main-content{padding-left:0}}@media only screen and (max-width: 543px){:host.uxc2 .main-content{padding-top:123px}}:host.uxc2 info-topbar{transition:left .2s ease-in-out}@media only screen and (max-width: 991px){:host.uxc2 info-topbar{width:100%}}:host.uxc2 .open-sidebar info-topbar{left:120px}:host.uxc2 .open-sidebar info-sidebar{left:0}@media only screen and (max-width: 991px){:host.uxc2 .open-sidebar info-sidebar ::ng-deep .sidebar-overlay{opacity:1;transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible}}:host.uxc2 .footer{position:sticky;bottom:0;z-index:9997;align-items:center;background:rgba(0,0,0,.1);display:flex;font-size:.8rem;height:3.1428572rem;justify-content:space-between;width:100%}@media only screen and (max-width: 543px){:host.uxc2 .footer{font-size:.7rem}}:host.uxc2 .footer .copyright,:host.uxc2 .footer .version{padding:10px 22px}@media only screen and (max-width: 543px){:host.uxc2 .footer .copyright{padding-right:0}}:host.uxc2 .footer .version{text-align:right;color:#000}\n"] }]
9568
- }], function () { return [{ type: InfoPlatformModel }, { type: InfoSessionModel }, { type: i1$1.Router }, { type: InfoDataService }, { type: InfoThemeService }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: Utilities }]; }, { opened: [{
9636
+ }], function () { return [{ type: InfoPlatformModel }, { type: InfoSessionModel }, { type: i1$2.Router }, { type: InfoDataService }, { type: InfoThemeService }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: Utilities }]; }, { opened: [{
9569
9637
  type: Input
9570
9638
  }], version: [{
9571
9639
  type: Input
@@ -9786,7 +9854,7 @@ class InfoFilterComponent {
9786
9854
  i0.ɵɵadvance(4);
9787
9855
  i0.ɵɵproperty("ngIf", ctx.enabledButtons);
9788
9856
  }
9789
- }, dependencies: [i1$2.NgClass, i1$2.NgIf, i2.ɵNgNoValidate, i2.NgControlStatusGroup, i2.NgForm, i4.MatIcon, i13.MatButton, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%] > .search-buttons[_ngcontent-%COMP%]{position:unset;margin-bottom:10px}[_nghost-%COMP%] > .search-buttons[_ngcontent-%COMP%] .actions-aux[_ngcontent-%COMP%] button[_ngcontent-%COMP%]{padding-right:15px}[_nghost-%COMP%] > .search-buttons[_ngcontent-%COMP%] .actions-aux[_ngcontent-%COMP%] button[_ngcontent-%COMP%]:only-of-type{padding-right:20px!important;padding-left:20px!important}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%]{display:none}[_nghost-%COMP%] > .modal-filter.show[_ngcontent-%COMP%]{display:block}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%]{top:0;right:0;padding:0 40px;position:fixed;width:420px;height:100%;z-index:9999;background-color:var(--ux-cor-P)}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]{position:absolute;top:30px;right:30px;font-size:28px;cursor:pointer;opacity:.7;transition:opacity .2s ease-in-out}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]:hover{opacity:1}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] h4[_ngcontent-%COMP%]{font-size:24px;font-weight:500;margin:30px 0}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] form[_ngcontent-%COMP%]{margin:0 -8px;padding:0;height:calc(100% - 170px);overflow-y:auto}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] form.expand-area[_ngcontent-%COMP%]{height:calc(100% - 105px)}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] form[_ngcontent-%COMP%] .row[_ngcontent-%COMP%]{margin-left:0!important;margin-right:0!important}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] form[_ngcontent-%COMP%] .row[_ngcontent-%COMP%] .mat-radio-group[_ngcontent-%COMP%]{margin-bottom:15px!important}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] form[_ngcontent-%COMP%] .row[_ngcontent-%COMP%] .mat-radio-group[_ngcontent-%COMP%] .mat-radio-button[_ngcontent-%COMP%]{width:40%;margin-bottom:10px}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] .buttons[_ngcontent-%COMP%]{position:fixed;right:0;text-align:right;bottom:10px;width:420px;padding:20px 40px 0 0;height:65px}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] .overlay[_ngcontent-%COMP%]{position:fixed;top:0;left:0;width:100%;height:100%;z-index:9998;background:var(--ux-cor-O);transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible;opacity:.2}"] });
9857
+ }, dependencies: [i1$3.NgClass, i1$3.NgIf, i2.ɵNgNoValidate, i2.NgControlStatusGroup, i2.NgForm, i4.MatIcon, i13.MatButton, InfoTranslatePipe], styles: ["body[_ngcontent-%COMP%]{--ux-cor-hover: #F5F5F5;--ux-cor-hover-2: #eee;--ux-cor-hover-3: #fafafa;--ux-cor-hover-4: #e5e3ed;--ux-cor-hover-5: #f9f9f9;--ux-cor-bg: #adadad;--ux-cor-P: #fff;--ux-cor-A: #eeeef2;--ux-cor-X: #f5f5f5;--ux-cor-S: #666;--ux-cor-O: #ddd;--ux-cor-F: #222;--ux-cor-D: #ccdbb4;--ux-cor-linha: #CCCEDB;--ux-cor-btn-pri: #eeeef2;--ux-cor-btn-wrn: #BA5005;--ux-cor-btn-dis: #6a7282}[_nghost-%COMP%] > .search-buttons[_ngcontent-%COMP%]{position:unset;margin-bottom:10px}[_nghost-%COMP%] > .search-buttons[_ngcontent-%COMP%] .actions-aux[_ngcontent-%COMP%] button[_ngcontent-%COMP%]{padding-right:15px}[_nghost-%COMP%] > .search-buttons[_ngcontent-%COMP%] .actions-aux[_ngcontent-%COMP%] button[_ngcontent-%COMP%]:only-of-type{padding-right:20px!important;padding-left:20px!important}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%]{display:none}[_nghost-%COMP%] > .modal-filter.show[_ngcontent-%COMP%]{display:block}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%]{top:0;right:0;padding:0 40px;position:fixed;width:420px;height:100%;z-index:9999;background-color:var(--ux-cor-P)}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]{position:absolute;top:30px;right:30px;font-size:28px;cursor:pointer;opacity:.7;transition:opacity .2s ease-in-out}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]:hover{opacity:1}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] h4[_ngcontent-%COMP%]{font-size:24px;font-weight:500;margin:30px 0}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] form[_ngcontent-%COMP%]{margin:0 -8px;padding:0;height:calc(100% - 170px);overflow-y:auto}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] form.expand-area[_ngcontent-%COMP%]{height:calc(100% - 105px)}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] form[_ngcontent-%COMP%] .row[_ngcontent-%COMP%]{margin-left:0!important;margin-right:0!important}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] form[_ngcontent-%COMP%] .row[_ngcontent-%COMP%] .mat-radio-group[_ngcontent-%COMP%]{margin-bottom:15px!important}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] form[_ngcontent-%COMP%] .row[_ngcontent-%COMP%] .mat-radio-group[_ngcontent-%COMP%] .mat-radio-button[_ngcontent-%COMP%]{width:40%;margin-bottom:10px}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] section[_ngcontent-%COMP%] .buttons[_ngcontent-%COMP%]{position:fixed;right:0;text-align:right;bottom:10px;width:420px;padding:20px 40px 0 0;height:65px}[_nghost-%COMP%] > .modal-filter[_ngcontent-%COMP%] .overlay[_ngcontent-%COMP%]{position:fixed;top:0;left:0;width:100%;height:100%;z-index:9998;background:var(--ux-cor-O);transition:.2s opacity 0s ease-in-out,0s visibility 0s ease-in-out;visibility:visible;opacity:.2}"] });
9790
9858
  (function () {
9791
9859
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoFilterComponent, [{
9792
9860
  type: Component,
@@ -9847,7 +9915,7 @@ class InfoLoadingComponent {
9847
9915
  i0.ɵɵadvance(1);
9848
9916
  i0.ɵɵproperty("ngIf", ctx.enabled);
9849
9917
  }
9850
- }, dependencies: [i1$2.NgIf, i7.MatProgressBar], styles: [".loading-bar[_ngcontent-%COMP%]{height:1px}.loading-bar[_ngcontent-%COMP%] .mat-progress-bar[_ngcontent-%COMP%]{height:1px;margin:0}"] });
9918
+ }, dependencies: [i1$3.NgIf, i7.MatProgressBar], styles: [".loading-bar[_ngcontent-%COMP%]{height:1px}.loading-bar[_ngcontent-%COMP%] .mat-progress-bar[_ngcontent-%COMP%]{height:1px;margin:0}"] });
9851
9919
  (function () {
9852
9920
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoLoadingComponent, [{
9853
9921
  type: Component,
@@ -9929,6 +9997,7 @@ class InfoLibraryModule {
9929
9997
  InfoMaskPipe,
9930
9998
  InfoMaskDirective,
9931
9999
  InfoUnmaskDirective,
10000
+ InfoSafeHtmlDirective,
9932
10001
  InfoAlertComponent,
9933
10002
  InfoAutoCompleteComponent,
9934
10003
  InfoBigCheckboxComponent,
@@ -9964,6 +10033,7 @@ class InfoLibraryModule {
9964
10033
  exports: [
9965
10034
  InfoTranslatePipe,
9966
10035
  InfoMaskPipe,
10036
+ InfoSafeHtmlDirective,
9967
10037
  InfoAlertComponent,
9968
10038
  InfoAutoCompleteComponent,
9969
10039
  InfoBigCheckboxComponent,
@@ -10008,6 +10078,7 @@ class InfoLibraryModule {
10008
10078
  InfoMaskPipe,
10009
10079
  InfoMaskDirective,
10010
10080
  InfoUnmaskDirective,
10081
+ InfoSafeHtmlDirective,
10011
10082
  InfoAlertComponent,
10012
10083
  InfoAutoCompleteComponent,
10013
10084
  InfoBigCheckboxComponent,
@@ -10062,6 +10133,7 @@ class InfoLibraryModule {
10062
10133
  AngularEditorModule,
10063
10134
  MatChipsModule], exports: [InfoTranslatePipe,
10064
10135
  InfoMaskPipe,
10136
+ InfoSafeHtmlDirective,
10065
10137
  InfoAlertComponent,
10066
10138
  InfoAutoCompleteComponent,
10067
10139
  InfoBigCheckboxComponent,
@@ -10097,5 +10169,5 @@ class InfoLibraryModule {
10097
10169
  * Generated bundle index. Do not edit.
10098
10170
  */
10099
10171
 
10100
- export { APICONTROLLER_CONFIG, DICTIONARIES_CONFIG, InfoAlertComponent, InfoAppConfigModel, InfoAuthenticationService, InfoAutoCompleteComponent, InfoBigCheckboxComponent, InfoCardComponent, InfoCheckboxComponent, InfoChipsComponent, InfoConfigurationService, InfoDataAccessModel, InfoDataService, InfoDateComponent, InfoDateMonthComponent, InfoDialogButtons, InfoDialogComponent, InfoDialogModal, InfoDialogModel, InfoDialogResult, InfoEditorComponent, InfoFilterComponent, InfoFormPropModel, InfoGridButtonModel, InfoGridComponent, InfoGridModalComponent, InfoInputComponent, InfoInputListComponent, InfoLastSearchModel, InfoLibraryModule, InfoListCheckboxComponent, InfoLoadingComponent, InfoLoginModel, InfoMainComponent, InfoMaskPipe, InfoMenuCardComponent, InfoMessageComponent, InfoMethodGridButtonModel, InfoModalAction, InfoModalComponent, InfoMultiSelectComponent, InfoNotificationItemModel, InfoNotificationModel, InfoPageAction, InfoPagebarButtonModel, InfoPagebarComponent, InfoPaginatorComponent, InfoPermissionModel, InfoPlatformModel, InfoSelectComponent, InfoSessionModel, InfoSidebarComponent, InfoThemeService, InfoTimelineComponent, InfoTopMenuComponent, InfoTopbarComponent, InfoTranslatePipe, InfoTranslateService };
10172
+ export { APICONTROLLER_CONFIG, DICTIONARIES_CONFIG, HTML_SANITIZER_CONFIG, InfoAlertComponent, InfoAppConfigModel, InfoAuthenticationService, InfoAutoCompleteComponent, InfoBigCheckboxComponent, InfoCardComponent, InfoCheckboxComponent, InfoChipsComponent, InfoConfigurationService, InfoDataAccessModel, InfoDataService, InfoDateComponent, InfoDateMonthComponent, InfoDialogButtons, InfoDialogComponent, InfoDialogModal, InfoDialogModel, InfoDialogResult, InfoEditorComponent, InfoFilterComponent, InfoFormPropModel, InfoGridButtonModel, InfoGridComponent, InfoGridModalComponent, InfoInputComponent, InfoInputListComponent, InfoLastSearchModel, InfoLibraryModule, InfoListCheckboxComponent, InfoLoadingComponent, InfoLoginModel, InfoMainComponent, InfoMaskPipe, InfoMenuCardComponent, InfoMessageComponent, InfoMethodGridButtonModel, InfoModalAction, InfoModalComponent, InfoMultiSelectComponent, InfoNotificationItemModel, InfoNotificationModel, InfoPageAction, InfoPagebarButtonModel, InfoPagebarComponent, InfoPaginatorComponent, InfoPermissionModel, InfoPlatformModel, InfoSafeHtmlDirective, InfoSelectComponent, InfoSessionModel, InfoSidebarComponent, InfoThemeService, InfoTimelineComponent, InfoTopMenuComponent, InfoTopbarComponent, InfoTranslatePipe, InfoTranslateService };
10101
10173
  //# sourceMappingURL=info-library.mjs.map