ca-components 1.0.74 → 1.0.76

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/esm2022/lib/components/ca-comment/ca-comment.component.mjs +16 -5
  2. package/esm2022/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.mjs +123 -120
  3. package/esm2022/lib/components/ca-custom-scrollbar/enums/event-type.enum.mjs +8 -0
  4. package/esm2022/lib/components/ca-custom-scrollbar/enums/index.mjs +3 -0
  5. package/esm2022/lib/components/ca-custom-scrollbar/enums/scroll-event-action.enum.mjs +6 -0
  6. package/esm2022/lib/components/ca-custom-scrollbar/models/index.mjs +3 -0
  7. package/esm2022/lib/components/ca-custom-scrollbar/models/scroll-bar-options.model.mjs +2 -0
  8. package/esm2022/lib/components/ca-custom-scrollbar/models/scroll-event.model.mjs +2 -0
  9. package/esm2022/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.mjs +2 -6
  10. package/esm2022/lib/components/ca-filters/components/ca-location-filter/ca-location-filter.component.mjs +2 -6
  11. package/esm2022/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.mjs +7 -9
  12. package/esm2022/lib/components/ca-filters/components/ca-violation-filter/ca-violation-filter.component.mjs +5 -5
  13. package/esm2022/lib/components/ca-input/ca-input.component.mjs +3 -4
  14. package/esm2022/lib/components/ca-input/pipes/input-class.pipe.mjs +2 -2
  15. package/esm2022/lib/components/ca-input/pipes/label-class.pipe.mjs +2 -1
  16. package/esm2022/lib/components/ca-input/pipes/show-placeholder-text.pipe.mjs +3 -3
  17. package/esm2022/lib/components/ca-input/pipes/show-valid-check.pipe.mjs +2 -2
  18. package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +93 -83
  19. package/esm2022/lib/components/ca-input-address-dropdown/enums/input-address-type-string.enum.mjs +2 -1
  20. package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +10 -23
  21. package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-dispatch/ca-input-dropdown-dispatch.component.mjs +2 -6
  22. package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-labels/ca-input-dropdown-labels.component.mjs +2 -6
  23. package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-text-counter/ca-input-dropdown-text-counter.component.mjs +2 -6
  24. package/esm2022/lib/components/ca-logo-change/ca-logo-change.component.mjs +8 -23
  25. package/esm2022/lib/components/ca-main-table/ca-main-table.component.mjs +4 -5
  26. package/esm2022/lib/components/ca-map-dropdown/ca-map-dropdown.component.mjs +6 -6
  27. package/esm2022/lib/components/ca-modal-button/ca-modal-button.component.mjs +2 -4
  28. package/esm2022/lib/components/ca-modal-button/enums/index.mjs +2 -2
  29. package/esm2022/lib/components/ca-modal-button/enums/modal-button-class-type.enum.mjs +10 -0
  30. package/esm2022/lib/components/ca-modal-button/enums/modal-button-size.enum.mjs +3 -3
  31. package/esm2022/lib/components/ca-modal-button/pipes/modal-button-class.pipe.mjs +4 -12
  32. package/esm2022/lib/components/ca-progress-expiration/ca-progress-expiration.component.mjs +9 -6
  33. package/esm2022/lib/components/ca-progress-range/ca-progress-range.component.mjs +3 -3
  34. package/esm2022/lib/components/ca-progress-range/utils/directives/progress-range-tooltip-arrow-position.directive.mjs +1 -1
  35. package/esm2022/lib/components/ca-rating-review/components/ca-ratings-reviews-popup/ca-ratings-reviews-popup.component.mjs +8 -10
  36. package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.mjs +3 -3
  37. package/esm2022/lib/components/ca-todo/components/ca-todo-card.component.mjs +1 -1
  38. package/esm2022/lib/components/ca-upload-files/ca-upload-files.component.mjs +59 -54
  39. package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.mjs +11 -7
  40. package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.mjs +18 -15
  41. package/esm2022/lib/utils/helpers/file.helpers.mjs +14 -0
  42. package/fesm2022/ca-components.mjs +606 -587
  43. package/fesm2022/ca-components.mjs.map +1 -1
  44. package/lib/components/ca-custom-scrollbar/ca-custom-scrollbar.component.d.ts +38 -29
  45. package/lib/components/ca-custom-scrollbar/enums/event-type.enum.d.ts +6 -0
  46. package/lib/components/ca-custom-scrollbar/enums/index.d.ts +2 -0
  47. package/lib/components/ca-custom-scrollbar/enums/scroll-event-action.enum.d.ts +4 -0
  48. package/lib/components/ca-custom-scrollbar/models/index.d.ts +2 -0
  49. package/lib/components/ca-custom-scrollbar/models/scroll-bar-options.model.d.ts +6 -0
  50. package/lib/components/ca-custom-scrollbar/models/scroll-event.model.d.ts +6 -0
  51. package/lib/components/ca-input/pipes/input-class.pipe.d.ts +1 -1
  52. package/lib/components/ca-input/pipes/label-class.pipe.d.ts +1 -1
  53. package/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.d.ts +9 -7
  54. package/lib/components/ca-input-address-dropdown/enums/input-address-type-string.enum.d.ts +2 -1
  55. package/lib/components/ca-input-dropdown/ca-input-dropdown.component.d.ts +2 -1
  56. package/lib/components/ca-logo-change/ca-logo-change.component.d.ts +0 -1
  57. package/lib/components/ca-modal-button/ca-modal-button.component.d.ts +2 -4
  58. package/lib/components/ca-modal-button/enums/index.d.ts +1 -1
  59. package/lib/components/ca-modal-button/enums/modal-button-class-type.enum.d.ts +8 -0
  60. package/lib/components/ca-modal-button/enums/modal-button-size.enum.d.ts +2 -2
  61. package/lib/components/ca-modal-button/pipes/modal-button-class.pipe.d.ts +2 -2
  62. package/lib/components/ca-progress-range/ca-progress-range.component.d.ts +1 -1
  63. package/lib/components/ca-progress-range/utils/directives/progress-range-tooltip-arrow-position.directive.d.ts +1 -1
  64. package/lib/components/ca-upload-files/ca-upload-files.component.d.ts +4 -3
  65. package/lib/utils/helpers/file.helpers.d.ts +3 -0
  66. package/package.json +1 -1
  67. package/esm2022/lib/components/ca-logo-change/pipes/logo-slider.pipe.mjs +0 -17
  68. package/esm2022/lib/components/ca-modal-button/enums/modal-button-type.enum.mjs +0 -10
  69. package/lib/components/ca-logo-change/pipes/logo-slider.pipe.d.ts +0 -7
  70. package/lib/components/ca-modal-button/enums/modal-button-type.enum.d.ts +0 -8
@@ -135,7 +135,7 @@ export class CaRightSidePanelMenuComponent {
135
135
  this.selectedModuleItem = selectedModuleItem;
136
136
  }
137
137
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaRightSidePanelMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
138
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CaRightSidePanelMenuComponent, isStandalone: true, selector: "app-ca-right-side-panel-menu", inputs: { companyList: "companyList", selectedCompany: "selectedCompany" }, outputs: { selectedNav: "selectedNav", isPinned: "isPinned", isNavOpen: "isNavOpen", selectedCompanyId: "selectedCompanyId" }, ngImport: i0, template: "<div class=\"side-panel-right-container-box\">\n <ng-container *ngIf=\"!isPopupModuleShown\">\n <div\n (mouseleave)=\"closeMenu()\"\n class=\"side-panel-right-button-container-box d-flex flex-column justify-content-center align-items-center\"\n [ngClass]=\"\n isPopupListShown && !isPopupModuleShown\n ? 'side-panel-right-button-container-box-active'\n : ''\n \"\n >\n <ng-container *ngIf=\"isPopupListShown && !isPopupModuleShown\">\n <div\n class=\"side-panel-list-container-box d-flex flex-column align-items-center\"\n >\n <ng-container\n *ngFor=\"\n let item of itemList;\n let indx = index;\n trackBy: trackByIdentity\n \"\n >\n <div class=\"side-panel-list-container\">\n <div\n class=\"item-container d-flex\"\n (click)=\"itemClickEvent(item)\"\n [mainCaTooltip]=\"item.companyName ?? item.title\"\n ngbTooltip\n position=\"left\"\n tooltipBackground=\"#424242\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon [src]=\"item.icon\" class=\"item-icon\"></svg-icon>\n </div>\n </div>\n <ng-container *ngIf=\"item.isLastInList\">\n <div class=\"horizontal-line\"></div>\n </ng-container>\n </ng-container>\n </div>\n </ng-container>\n <div class=\"side-panel-right-container\" (mouseenter)=\"openMenu()\">\n <svg-icon\n class=\"side-panel-right-icon d-flex align-items-center justify-content-center\"\n [src]=\"'ic_side-panel-right' | caSvg: 'common'\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 15.75 }\"\n ></svg-icon>\n </div>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"isNavShown\">\n <div class=\"side-panel-nav-container-box d-flex flex-column\">\n <ng-container\n *ngFor=\"\n let item of itemList;\n let indx = index;\n trackBy: trackByIdentity\n \"\n >\n <div class=\"nav-list-container\">\n <div\n class=\"nav-item-container d-flex align-items-center\"\n (click)=\"navItemClickEvent(item)\"\n [ngClass]=\"{\n 'selected-item':\n selectedModuleItem?.title == item.title &&\n selectedModuleItem?.companyName == item.companyName,\n }\"\n >\n <svg-icon\n [src]=\"item.icon\"\n class=\"nav-item-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n <p\n class=\"nav-item-title ca-font-medium\"\n [ngClass]=\"{\n 'ca-font-bold':\n selectedModuleItem?.title == item.title &&\n selectedModuleItem?.companyName == item.companyName,\n }\"\n >\n {{ item.companyName ?? item.title }}\n </p>\n </div>\n </div>\n <ng-container *ngIf=\"item.isLastInList\">\n <div class=\"horizontal-line\"></div>\n </ng-container>\n </ng-container>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"isPopupModuleShown && !isPopupListShown\">\n <div\n class=\"side-panel-right-module-container d-flex justify-content-between\"\n [ngClass]=\"{ 'nav-open': isNavShown }\"\n >\n <div\n class=\"module-title-container d-flex\"\n (click)=\"toggleNav()\"\n [ngClass]=\"{ 'nav-open': isNavShown }\"\n >\n <div class=\"module-icon-container\">\n <svg-icon\n [src]=\"selectedModuleItem.icon\"\n class=\"module-icon\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n >\n </svg-icon>\n </div>\n <p class=\"module-title-text ca-font-extra-bold\">\n {{ selectedModuleItem?.title }}\n </p>\n </div>\n <div class=\"module-icons-container d-flex align-items-center\">\n <ng-container *ngIf=\"!isNavShown\">\n <ng-container *ngIf=\"haveMenu\">\n <div\n class=\"icon\"\n ngbTooltip\n mainCaTooltip=\"{{ isNavShown ? 'Close menu' : 'Open menu' }}\"\n position=\"top\"\n tooltipBackground=\"{{ isNavShown ? '#CCCCCC' : '#2F2F2F' }}\"\n tooltipColor=\"{{ isNavShown ? '#2F2F2F' : '#FFFFFF' }}\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"'ic_hamburger_menu' | caSvg: 'right-side-panel'\"\n class=\"module-right-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n [ngClass]=\"{ focused: isHamburgerMenuFocused }\"\n (click)=\"hamburgerMenuClickEvent()\"\n ></svg-icon>\n </div>\n </ng-container>\n <div\n class=\"icon\"\n ngbTooltip\n mainCaTooltip=\"{{ isPinFocused ? 'Unpin Sidebar' : 'Pin Sidebar' }}\"\n position=\"top\"\n tooltipBackground=\"#424242\"\n tooltipColor=\"#FFFFFF\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"'ic_pin' | caSvg: 'right-side-panel'\"\n class=\"module-right-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n [ngClass]=\"{ focused: isPinFocused }\"\n (click)=\"pinClickEvent()\"\n ></svg-icon>\n </div>\n <div class=\"vertical-line\"></div>\n </ng-container>\n\n <div\n class=\"icon\"\n ngbTooltip\n mainCaTooltip=\"Close\"\n position=\"top\"\n tooltipBackground=\"#424242\"\n tooltipColor=\"#FFFFFF\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"\n (isNavShown ? 'ic_arrow_primary_up' : 'ic_arrow_primary_right')\n | caSvg: 'right-side-panel'\n \"\n class=\"module-right-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n (click)=\"closeModule()\"\n ></svg-icon>\n </div>\n </div>\n </div>\n </ng-container>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.side-panel-right-container-box .side-panel-right-button-container-box{width:56px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box{padding-bottom:8px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container{cursor:pointer;padding:4px 12px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container .item-icon svg path{fill:#919191}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container:hover{background-color:#424242;border-radius:2px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container:hover .item-icon svg path{fill:#ffffffb2}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .horizontal-line{margin:6px 0;width:80%;height:1px;background-color:#424242}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-right-container{width:46px;height:46px;background-color:#3b73ed;border-radius:44px;text-align:center}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-right-container .side-panel-right-icon{width:100%;height:100%}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-right-container .side-panel-right-icon svg path{fill:#bed0f9}.side-panel-right-container-box .side-panel-right-button-container-box-active{padding:8px 0 6px;background-color:#2f2f2f;border-radius:6px 6px 44px 44px;transition:all .2s ease-in}.side-panel-right-container-box .side-panel-nav-container-box{width:350px;background-color:#2f2f2f;margin-bottom:4px;padding:4px;border-radius:3px;position:absolute;bottom:34px}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container{cursor:pointer;padding:4px 4px 4px 12px;gap:10px;border-radius:2px}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container .nav-item-icon svg path{fill:#919191}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container .nav-item-title{color:#ffffffb2;font-size:14px}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container:hover{background-color:#424242}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container.selected-item .nav-item-icon svg path{fill:#92b1f5}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container.selected-item .nav-item-title{color:#92b1f5}.side-panel-right-container-box .side-panel-nav-container-box .horizontal-line{margin:4px 0 4px 4px;width:334px;height:1px;background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container{width:350px;background-color:#6c6c6c;border-radius:3px;box-shadow:0 0 6px #0000004d;height:38px;transition:all .2s ease-in}.side-panel-right-container-box .side-panel-right-module-container.nav-open{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-title-container{padding:7px 8px 7px 16px;gap:6px;flex-grow:1;cursor:pointer}.side-panel-right-container-box .side-panel-right-module-container .module-title-container .module-icon-container .module-icon svg path{fill:#ccc}.side-panel-right-container-box .side-panel-right-module-container .module-title-container .module-title-text{font-size:16px;color:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-title-container:hover{background:linear-gradient(to right,#424242,#6c6c6c);border-radius:3px 0 0 3px}.side-panel-right-container-box .side-panel-right-module-container .module-title-container.nav-open{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-title-container.nav-open:hover{background:linear-gradient(to right,#2f2f2f,#424242)}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container{padding:4px 4px 4px 0;gap:4px}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon{cursor:pointer;display:block;padding:4px;border-radius:2px}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon svg path{fill:#ffffffb2}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon:hover{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon:hover svg path{fill:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused svg path{fill:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused:hover{background-color:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused:hover svg path{fill:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .vertical-line{height:18px;width:1px;background-color:#919191;margin:0 2px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "component", type: i2.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "ngmodule", type: HttpClientModule }, { kind: "ngmodule", type: NgbModule }, { kind: "directive", type: i3.NgbTooltip, selector: "[ngbTooltip]", inputs: ["animation", "autoClose", "placement", "popperOptions", "triggers", "positionTarget", "container", "disableTooltip", "tooltipClass", "tooltipContext", "openDelay", "closeDelay", "ngbTooltip"], outputs: ["shown", "hidden"], exportAs: ["ngbTooltip"] }, { kind: "component", type:
138
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaRightSidePanelMenuComponent, isStandalone: true, selector: "app-ca-right-side-panel-menu", inputs: { companyList: "companyList", selectedCompany: "selectedCompany" }, outputs: { selectedNav: "selectedNav", isPinned: "isPinned", isNavOpen: "isNavOpen", selectedCompanyId: "selectedCompanyId" }, ngImport: i0, template: "<div class=\"side-panel-right-container-box\">\n @if (!isPopupModuleShown) {\n <div\n (mouseleave)=\"closeMenu()\"\n class=\"side-panel-right-button-container-box d-flex flex-column justify-content-center align-items-center\"\n [ngClass]=\"\n isPopupListShown && !isPopupModuleShown\n ? 'side-panel-right-button-container-box-active'\n : ''\n \"\n >\n @if (isPopupListShown && !isPopupModuleShown) {\n <div\n class=\"side-panel-list-container-box d-flex flex-column align-items-center\"\n >\n @for (item of itemList; track item.title) {\n <div class=\"side-panel-list-container\">\n <div\n class=\"item-container d-flex\"\n (click)=\"itemClickEvent(item)\"\n [mainCaTooltip]=\"item.companyName ?? item.title\"\n ngbTooltip\n position=\"left\"\n tooltipBackground=\"#424242\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"item.icon\"\n class=\"item-icon\"\n ></svg-icon>\n </div>\n </div>\n @if (item.isLastInList) {\n <div class=\"horizontal-line\"></div>\n }\n }\n </div>\n }\n <div class=\"side-panel-right-container\" (mouseenter)=\"openMenu()\">\n <svg-icon\n class=\"side-panel-right-icon d-flex align-items-center justify-content-center\"\n [src]=\"'ic_side-panel-right' | caSvg: 'common'\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 15.75 }\"\n ></svg-icon>\n </div>\n </div>\n }\n\n @if (isNavShown) {\n <div class=\"side-panel-nav-container-box d-flex flex-column\">\n @for (item of itemList; track item.title) {\n <div class=\"nav-list-container\">\n <div\n class=\"nav-item-container d-flex align-items-center\"\n (click)=\"navItemClickEvent(item)\"\n [ngClass]=\"{\n 'selected-item':\n selectedModuleItem?.title == item.title &&\n selectedModuleItem?.companyName ==\n item.companyName,\n }\"\n >\n <svg-icon\n [src]=\"item.icon\"\n class=\"nav-item-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n <p\n class=\"nav-item-title ca-font-medium\"\n [ngClass]=\"{\n 'ca-font-bold':\n selectedModuleItem?.title == item.title &&\n selectedModuleItem?.companyName ==\n item.companyName,\n }\"\n >\n {{ item.companyName ?? item.title }}\n </p>\n </div>\n </div>\n @if (item.isLastInList) {\n <div class=\"horizontal-line\"></div>\n }\n }\n </div>\n }\n\n @if (isPopupModuleShown && !isPopupListShown) {\n <div\n class=\"side-panel-right-module-container d-flex justify-content-between\"\n [ngClass]=\"{ 'nav-open': isNavShown }\"\n >\n <div\n class=\"module-title-container d-flex\"\n (click)=\"toggleNav()\"\n [ngClass]=\"{ 'nav-open': isNavShown }\"\n >\n <div class=\"module-icon-container\">\n <svg-icon\n [src]=\"selectedModuleItem.icon\"\n class=\"module-icon\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n >\n </svg-icon>\n </div>\n <p class=\"module-title-text ca-font-extra-bold\">\n {{ selectedModuleItem?.title }}\n </p>\n </div>\n <div class=\"module-icons-container d-flex align-items-center\">\n @if (!isNavShown) {\n @if (haveMenu) {\n <div\n class=\"icon\"\n ngbTooltip\n mainCaTooltip=\"{{\n isNavShown ? 'Close menu' : 'Open menu'\n }}\"\n position=\"top\"\n tooltipBackground=\"{{\n isNavShown ? '#CCCCCC' : '#2F2F2F'\n }}\"\n tooltipColor=\"{{\n isNavShown ? '#2F2F2F' : '#FFFFFF'\n }}\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"\n 'ic_hamburger_menu'\n | caSvg: 'right-side-panel'\n \"\n class=\"module-right-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{\n 'width.px': 16.2,\n 'height.px': 16.2,\n }\"\n [ngClass]=\"{ focused: isHamburgerMenuFocused }\"\n (click)=\"hamburgerMenuClickEvent()\"\n ></svg-icon>\n </div>\n }\n <div\n class=\"icon\"\n ngbTooltip\n mainCaTooltip=\"{{\n isPinFocused ? 'Unpin Sidebar' : 'Pin Sidebar'\n }}\"\n position=\"top\"\n tooltipBackground=\"#424242\"\n tooltipColor=\"#FFFFFF\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"'ic_pin' | caSvg: 'right-side-panel'\"\n class=\"module-right-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n [ngClass]=\"{ focused: isPinFocused }\"\n (click)=\"pinClickEvent()\"\n ></svg-icon>\n </div>\n <div class=\"vertical-line\"></div>\n }\n\n <div\n class=\"icon\"\n ngbTooltip\n mainCaTooltip=\"Close\"\n position=\"top\"\n tooltipBackground=\"#424242\"\n tooltipColor=\"#FFFFFF\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"\n (isNavShown\n ? 'ic_arrow_primary_up'\n : 'ic_arrow_primary_right'\n ) | caSvg: 'right-side-panel'\n \"\n class=\"module-right-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n (click)=\"closeModule()\"\n ></svg-icon>\n </div>\n </div>\n </div>\n }\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.side-panel-right-container-box .side-panel-right-button-container-box{width:56px;padding-bottom:6px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box{padding-bottom:8px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container{cursor:pointer;padding:4px 12px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container .item-icon svg path{fill:#919191}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container:hover{background-color:#424242;border-radius:2px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container:hover .item-icon svg path{fill:#ffffffb2}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .horizontal-line{margin:6px 0;width:80%;height:1px;background-color:#424242}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-right-container{width:46px;height:46px;background-color:#3b73ed;border-radius:44px;text-align:center}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-right-container .side-panel-right-icon{width:100%;height:100%}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-right-container .side-panel-right-icon svg path{fill:#bed0f9}.side-panel-right-container-box .side-panel-right-button-container-box-active{padding-top:8px;background-color:#2f2f2f;border-radius:6px 6px 44px 44px;transition:all .2s ease-in}.side-panel-right-container-box .side-panel-nav-container-box{width:350px;background-color:#2f2f2f;margin-bottom:4px;padding:4px;border-radius:3px;position:absolute;bottom:34px}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container{cursor:pointer;padding:4px 4px 4px 12px;gap:10px;border-radius:2px}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container .nav-item-icon svg path{fill:#919191}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container .nav-item-title{color:#ffffffb2;font-size:14px}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container:hover{background-color:#424242}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container.selected-item .nav-item-icon svg path{fill:#92b1f5}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container.selected-item .nav-item-title{color:#92b1f5}.side-panel-right-container-box .side-panel-nav-container-box .horizontal-line{margin:4px 0 4px 4px;width:334px;height:1px;background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container{width:350px;background-color:#6c6c6c;border-radius:3px;box-shadow:0 0 6px #0000004d;height:38px;transition:all .2s ease-in}.side-panel-right-container-box .side-panel-right-module-container.nav-open{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-title-container{padding:7px 8px 7px 16px;gap:6px;flex-grow:1;cursor:pointer}.side-panel-right-container-box .side-panel-right-module-container .module-title-container .module-icon-container .module-icon svg path{fill:#ccc}.side-panel-right-container-box .side-panel-right-module-container .module-title-container .module-title-text{font-size:16px;color:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-title-container:hover{background:linear-gradient(to right,#424242,#6c6c6c);border-radius:3px 0 0 3px}.side-panel-right-container-box .side-panel-right-module-container .module-title-container.nav-open{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-title-container.nav-open:hover{background:linear-gradient(to right,#2f2f2f,#424242)}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container{padding:4px 4px 4px 0;gap:4px}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon{cursor:pointer;display:block;padding:4px;border-radius:2px}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon svg path{fill:#ffffffb2}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon:hover{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon:hover svg path{fill:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused svg path{fill:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused:hover{background-color:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused:hover svg path{fill:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .vertical-line{height:18px;width:1px;background-color:#919191;margin:0 2px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "component", type: i2.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "ngmodule", type: HttpClientModule }, { kind: "ngmodule", type: NgbModule }, { kind: "directive", type: i3.NgbTooltip, selector: "[ngbTooltip]", inputs: ["animation", "autoClose", "placement", "popperOptions", "triggers", "positionTarget", "container", "disableTooltip", "tooltipClass", "tooltipContext", "openDelay", "closeDelay", "ngbTooltip"], outputs: ["shown", "hidden"], exportAs: ["ngbTooltip"] }, { kind: "component", type:
139
139
  // Components
140
140
  CaAppTooltipV2Component, selector: "mainCaTooltip, [mainCaTooltip]", inputs: ["mainCaTooltip", "position", "openTooltipDelay", "tooltipBackground", "tooltipColor", "tooltipTextAlign", "tooltipMarginTop", "disableTooltip"] }, { kind: "pipe", type:
141
141
  // pipes
@@ -152,7 +152,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
152
152
  CaAppTooltipV2Component,
153
153
  // pipes
154
154
  CaSvgPipe,
155
- ], encapsulation: ViewEncapsulation.None, template: "<div class=\"side-panel-right-container-box\">\n <ng-container *ngIf=\"!isPopupModuleShown\">\n <div\n (mouseleave)=\"closeMenu()\"\n class=\"side-panel-right-button-container-box d-flex flex-column justify-content-center align-items-center\"\n [ngClass]=\"\n isPopupListShown && !isPopupModuleShown\n ? 'side-panel-right-button-container-box-active'\n : ''\n \"\n >\n <ng-container *ngIf=\"isPopupListShown && !isPopupModuleShown\">\n <div\n class=\"side-panel-list-container-box d-flex flex-column align-items-center\"\n >\n <ng-container\n *ngFor=\"\n let item of itemList;\n let indx = index;\n trackBy: trackByIdentity\n \"\n >\n <div class=\"side-panel-list-container\">\n <div\n class=\"item-container d-flex\"\n (click)=\"itemClickEvent(item)\"\n [mainCaTooltip]=\"item.companyName ?? item.title\"\n ngbTooltip\n position=\"left\"\n tooltipBackground=\"#424242\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon [src]=\"item.icon\" class=\"item-icon\"></svg-icon>\n </div>\n </div>\n <ng-container *ngIf=\"item.isLastInList\">\n <div class=\"horizontal-line\"></div>\n </ng-container>\n </ng-container>\n </div>\n </ng-container>\n <div class=\"side-panel-right-container\" (mouseenter)=\"openMenu()\">\n <svg-icon\n class=\"side-panel-right-icon d-flex align-items-center justify-content-center\"\n [src]=\"'ic_side-panel-right' | caSvg: 'common'\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 15.75 }\"\n ></svg-icon>\n </div>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"isNavShown\">\n <div class=\"side-panel-nav-container-box d-flex flex-column\">\n <ng-container\n *ngFor=\"\n let item of itemList;\n let indx = index;\n trackBy: trackByIdentity\n \"\n >\n <div class=\"nav-list-container\">\n <div\n class=\"nav-item-container d-flex align-items-center\"\n (click)=\"navItemClickEvent(item)\"\n [ngClass]=\"{\n 'selected-item':\n selectedModuleItem?.title == item.title &&\n selectedModuleItem?.companyName == item.companyName,\n }\"\n >\n <svg-icon\n [src]=\"item.icon\"\n class=\"nav-item-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n <p\n class=\"nav-item-title ca-font-medium\"\n [ngClass]=\"{\n 'ca-font-bold':\n selectedModuleItem?.title == item.title &&\n selectedModuleItem?.companyName == item.companyName,\n }\"\n >\n {{ item.companyName ?? item.title }}\n </p>\n </div>\n </div>\n <ng-container *ngIf=\"item.isLastInList\">\n <div class=\"horizontal-line\"></div>\n </ng-container>\n </ng-container>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"isPopupModuleShown && !isPopupListShown\">\n <div\n class=\"side-panel-right-module-container d-flex justify-content-between\"\n [ngClass]=\"{ 'nav-open': isNavShown }\"\n >\n <div\n class=\"module-title-container d-flex\"\n (click)=\"toggleNav()\"\n [ngClass]=\"{ 'nav-open': isNavShown }\"\n >\n <div class=\"module-icon-container\">\n <svg-icon\n [src]=\"selectedModuleItem.icon\"\n class=\"module-icon\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n >\n </svg-icon>\n </div>\n <p class=\"module-title-text ca-font-extra-bold\">\n {{ selectedModuleItem?.title }}\n </p>\n </div>\n <div class=\"module-icons-container d-flex align-items-center\">\n <ng-container *ngIf=\"!isNavShown\">\n <ng-container *ngIf=\"haveMenu\">\n <div\n class=\"icon\"\n ngbTooltip\n mainCaTooltip=\"{{ isNavShown ? 'Close menu' : 'Open menu' }}\"\n position=\"top\"\n tooltipBackground=\"{{ isNavShown ? '#CCCCCC' : '#2F2F2F' }}\"\n tooltipColor=\"{{ isNavShown ? '#2F2F2F' : '#FFFFFF' }}\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"'ic_hamburger_menu' | caSvg: 'right-side-panel'\"\n class=\"module-right-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n [ngClass]=\"{ focused: isHamburgerMenuFocused }\"\n (click)=\"hamburgerMenuClickEvent()\"\n ></svg-icon>\n </div>\n </ng-container>\n <div\n class=\"icon\"\n ngbTooltip\n mainCaTooltip=\"{{ isPinFocused ? 'Unpin Sidebar' : 'Pin Sidebar' }}\"\n position=\"top\"\n tooltipBackground=\"#424242\"\n tooltipColor=\"#FFFFFF\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"'ic_pin' | caSvg: 'right-side-panel'\"\n class=\"module-right-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n [ngClass]=\"{ focused: isPinFocused }\"\n (click)=\"pinClickEvent()\"\n ></svg-icon>\n </div>\n <div class=\"vertical-line\"></div>\n </ng-container>\n\n <div\n class=\"icon\"\n ngbTooltip\n mainCaTooltip=\"Close\"\n position=\"top\"\n tooltipBackground=\"#424242\"\n tooltipColor=\"#FFFFFF\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"\n (isNavShown ? 'ic_arrow_primary_up' : 'ic_arrow_primary_right')\n | caSvg: 'right-side-panel'\n \"\n class=\"module-right-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n (click)=\"closeModule()\"\n ></svg-icon>\n </div>\n </div>\n </div>\n </ng-container>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.side-panel-right-container-box .side-panel-right-button-container-box{width:56px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box{padding-bottom:8px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container{cursor:pointer;padding:4px 12px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container .item-icon svg path{fill:#919191}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container:hover{background-color:#424242;border-radius:2px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container:hover .item-icon svg path{fill:#ffffffb2}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .horizontal-line{margin:6px 0;width:80%;height:1px;background-color:#424242}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-right-container{width:46px;height:46px;background-color:#3b73ed;border-radius:44px;text-align:center}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-right-container .side-panel-right-icon{width:100%;height:100%}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-right-container .side-panel-right-icon svg path{fill:#bed0f9}.side-panel-right-container-box .side-panel-right-button-container-box-active{padding:8px 0 6px;background-color:#2f2f2f;border-radius:6px 6px 44px 44px;transition:all .2s ease-in}.side-panel-right-container-box .side-panel-nav-container-box{width:350px;background-color:#2f2f2f;margin-bottom:4px;padding:4px;border-radius:3px;position:absolute;bottom:34px}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container{cursor:pointer;padding:4px 4px 4px 12px;gap:10px;border-radius:2px}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container .nav-item-icon svg path{fill:#919191}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container .nav-item-title{color:#ffffffb2;font-size:14px}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container:hover{background-color:#424242}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container.selected-item .nav-item-icon svg path{fill:#92b1f5}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container.selected-item .nav-item-title{color:#92b1f5}.side-panel-right-container-box .side-panel-nav-container-box .horizontal-line{margin:4px 0 4px 4px;width:334px;height:1px;background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container{width:350px;background-color:#6c6c6c;border-radius:3px;box-shadow:0 0 6px #0000004d;height:38px;transition:all .2s ease-in}.side-panel-right-container-box .side-panel-right-module-container.nav-open{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-title-container{padding:7px 8px 7px 16px;gap:6px;flex-grow:1;cursor:pointer}.side-panel-right-container-box .side-panel-right-module-container .module-title-container .module-icon-container .module-icon svg path{fill:#ccc}.side-panel-right-container-box .side-panel-right-module-container .module-title-container .module-title-text{font-size:16px;color:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-title-container:hover{background:linear-gradient(to right,#424242,#6c6c6c);border-radius:3px 0 0 3px}.side-panel-right-container-box .side-panel-right-module-container .module-title-container.nav-open{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-title-container.nav-open:hover{background:linear-gradient(to right,#2f2f2f,#424242)}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container{padding:4px 4px 4px 0;gap:4px}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon{cursor:pointer;display:block;padding:4px;border-radius:2px}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon svg path{fill:#ffffffb2}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon:hover{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon:hover svg path{fill:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused svg path{fill:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused:hover{background-color:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused:hover svg path{fill:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .vertical-line{height:18px;width:1px;background-color:#919191;margin:0 2px}\n"] }]
155
+ ], encapsulation: ViewEncapsulation.None, template: "<div class=\"side-panel-right-container-box\">\n @if (!isPopupModuleShown) {\n <div\n (mouseleave)=\"closeMenu()\"\n class=\"side-panel-right-button-container-box d-flex flex-column justify-content-center align-items-center\"\n [ngClass]=\"\n isPopupListShown && !isPopupModuleShown\n ? 'side-panel-right-button-container-box-active'\n : ''\n \"\n >\n @if (isPopupListShown && !isPopupModuleShown) {\n <div\n class=\"side-panel-list-container-box d-flex flex-column align-items-center\"\n >\n @for (item of itemList; track item.title) {\n <div class=\"side-panel-list-container\">\n <div\n class=\"item-container d-flex\"\n (click)=\"itemClickEvent(item)\"\n [mainCaTooltip]=\"item.companyName ?? item.title\"\n ngbTooltip\n position=\"left\"\n tooltipBackground=\"#424242\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"item.icon\"\n class=\"item-icon\"\n ></svg-icon>\n </div>\n </div>\n @if (item.isLastInList) {\n <div class=\"horizontal-line\"></div>\n }\n }\n </div>\n }\n <div class=\"side-panel-right-container\" (mouseenter)=\"openMenu()\">\n <svg-icon\n class=\"side-panel-right-icon d-flex align-items-center justify-content-center\"\n [src]=\"'ic_side-panel-right' | caSvg: 'common'\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 15.75 }\"\n ></svg-icon>\n </div>\n </div>\n }\n\n @if (isNavShown) {\n <div class=\"side-panel-nav-container-box d-flex flex-column\">\n @for (item of itemList; track item.title) {\n <div class=\"nav-list-container\">\n <div\n class=\"nav-item-container d-flex align-items-center\"\n (click)=\"navItemClickEvent(item)\"\n [ngClass]=\"{\n 'selected-item':\n selectedModuleItem?.title == item.title &&\n selectedModuleItem?.companyName ==\n item.companyName,\n }\"\n >\n <svg-icon\n [src]=\"item.icon\"\n class=\"nav-item-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 18, 'height.px': 18 }\"\n ></svg-icon>\n <p\n class=\"nav-item-title ca-font-medium\"\n [ngClass]=\"{\n 'ca-font-bold':\n selectedModuleItem?.title == item.title &&\n selectedModuleItem?.companyName ==\n item.companyName,\n }\"\n >\n {{ item.companyName ?? item.title }}\n </p>\n </div>\n </div>\n @if (item.isLastInList) {\n <div class=\"horizontal-line\"></div>\n }\n }\n </div>\n }\n\n @if (isPopupModuleShown && !isPopupListShown) {\n <div\n class=\"side-panel-right-module-container d-flex justify-content-between\"\n [ngClass]=\"{ 'nav-open': isNavShown }\"\n >\n <div\n class=\"module-title-container d-flex\"\n (click)=\"toggleNav()\"\n [ngClass]=\"{ 'nav-open': isNavShown }\"\n >\n <div class=\"module-icon-container\">\n <svg-icon\n [src]=\"selectedModuleItem.icon\"\n class=\"module-icon\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n >\n </svg-icon>\n </div>\n <p class=\"module-title-text ca-font-extra-bold\">\n {{ selectedModuleItem?.title }}\n </p>\n </div>\n <div class=\"module-icons-container d-flex align-items-center\">\n @if (!isNavShown) {\n @if (haveMenu) {\n <div\n class=\"icon\"\n ngbTooltip\n mainCaTooltip=\"{{\n isNavShown ? 'Close menu' : 'Open menu'\n }}\"\n position=\"top\"\n tooltipBackground=\"{{\n isNavShown ? '#CCCCCC' : '#2F2F2F'\n }}\"\n tooltipColor=\"{{\n isNavShown ? '#2F2F2F' : '#FFFFFF'\n }}\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"\n 'ic_hamburger_menu'\n | caSvg: 'right-side-panel'\n \"\n class=\"module-right-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{\n 'width.px': 16.2,\n 'height.px': 16.2,\n }\"\n [ngClass]=\"{ focused: isHamburgerMenuFocused }\"\n (click)=\"hamburgerMenuClickEvent()\"\n ></svg-icon>\n </div>\n }\n <div\n class=\"icon\"\n ngbTooltip\n mainCaTooltip=\"{{\n isPinFocused ? 'Unpin Sidebar' : 'Pin Sidebar'\n }}\"\n position=\"top\"\n tooltipBackground=\"#424242\"\n tooltipColor=\"#FFFFFF\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"'ic_pin' | caSvg: 'right-side-panel'\"\n class=\"module-right-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n [ngClass]=\"{ focused: isPinFocused }\"\n (click)=\"pinClickEvent()\"\n ></svg-icon>\n </div>\n <div class=\"vertical-line\"></div>\n }\n\n <div\n class=\"icon\"\n ngbTooltip\n mainCaTooltip=\"Close\"\n position=\"top\"\n tooltipBackground=\"#424242\"\n tooltipColor=\"#FFFFFF\"\n tooltipTextAlign=\"center\"\n >\n <svg-icon\n [src]=\"\n (isNavShown\n ? 'ic_arrow_primary_up'\n : 'ic_arrow_primary_right'\n ) | caSvg: 'right-side-panel'\n \"\n class=\"module-right-icon d-flex align-items-center justify-content-center\"\n [svgStyle]=\"{ 'width.px': 16.2, 'height.px': 16.2 }\"\n (click)=\"closeModule()\"\n ></svg-icon>\n </div>\n </div>\n </div>\n }\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.side-panel-right-container-box .side-panel-right-button-container-box{width:56px;padding-bottom:6px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box{padding-bottom:8px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container{cursor:pointer;padding:4px 12px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container .item-icon svg path{fill:#919191}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container:hover{background-color:#424242;border-radius:2px}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .side-panel-list-container .item-container:hover .item-icon svg path{fill:#ffffffb2}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-list-container-box .horizontal-line{margin:6px 0;width:80%;height:1px;background-color:#424242}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-right-container{width:46px;height:46px;background-color:#3b73ed;border-radius:44px;text-align:center}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-right-container .side-panel-right-icon{width:100%;height:100%}.side-panel-right-container-box .side-panel-right-button-container-box .side-panel-right-container .side-panel-right-icon svg path{fill:#bed0f9}.side-panel-right-container-box .side-panel-right-button-container-box-active{padding-top:8px;background-color:#2f2f2f;border-radius:6px 6px 44px 44px;transition:all .2s ease-in}.side-panel-right-container-box .side-panel-nav-container-box{width:350px;background-color:#2f2f2f;margin-bottom:4px;padding:4px;border-radius:3px;position:absolute;bottom:34px}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container{cursor:pointer;padding:4px 4px 4px 12px;gap:10px;border-radius:2px}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container .nav-item-icon svg path{fill:#919191}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container .nav-item-title{color:#ffffffb2;font-size:14px}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container:hover{background-color:#424242}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container.selected-item .nav-item-icon svg path{fill:#92b1f5}.side-panel-right-container-box .side-panel-nav-container-box .nav-list-container .nav-item-container.selected-item .nav-item-title{color:#92b1f5}.side-panel-right-container-box .side-panel-nav-container-box .horizontal-line{margin:4px 0 4px 4px;width:334px;height:1px;background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container{width:350px;background-color:#6c6c6c;border-radius:3px;box-shadow:0 0 6px #0000004d;height:38px;transition:all .2s ease-in}.side-panel-right-container-box .side-panel-right-module-container.nav-open{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-title-container{padding:7px 8px 7px 16px;gap:6px;flex-grow:1;cursor:pointer}.side-panel-right-container-box .side-panel-right-module-container .module-title-container .module-icon-container .module-icon svg path{fill:#ccc}.side-panel-right-container-box .side-panel-right-module-container .module-title-container .module-title-text{font-size:16px;color:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-title-container:hover{background:linear-gradient(to right,#424242,#6c6c6c);border-radius:3px 0 0 3px}.side-panel-right-container-box .side-panel-right-module-container .module-title-container.nav-open{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-title-container.nav-open:hover{background:linear-gradient(to right,#2f2f2f,#424242)}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container{padding:4px 4px 4px 0;gap:4px}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon{cursor:pointer;display:block;padding:4px;border-radius:2px}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon svg path{fill:#ffffffb2}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon:hover{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon:hover svg path{fill:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused{background-color:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused svg path{fill:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused:hover{background-color:#fff}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .module-right-icon.focused:hover svg path{fill:#424242}.side-panel-right-container-box .side-panel-right-module-container .module-icons-container .vertical-line{height:18px;width:1px;background-color:#919191;margin:0 2px}\n"] }]
156
156
  }], propDecorators: { companyList: [{
157
157
  type: Input
158
158
  }], selectedCompany: [{
@@ -166,4 +166,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
166
166
  }], selectedCompanyId: [{
167
167
  type: Output
168
168
  }] } });
169
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtcmlnaHQtc2lkZS1wYW5lbC1tZW51LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLXJpZ2h0LXNpZGUtcGFuZWwvY29tcG9uZW50cy9jYS1yaWdodC1zaWRlLXBhbmVsLW1lbnUvY2EtcmlnaHQtc2lkZS1wYW5lbC1tZW51LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLXJpZ2h0LXNpZGUtcGFuZWwvY29tcG9uZW50cy9jYS1yaWdodC1zaWRlLXBhbmVsLW1lbnUvY2EtcmlnaHQtc2lkZS1wYW5lbC1tZW51LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN4RCxPQUFPLEVBQ0wsU0FBUyxFQUNULFlBQVksRUFDWixLQUFLLEVBQ0wsTUFBTSxFQUNOLGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFFdkQsYUFBYTtBQUNiLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdEQUF3RCxDQUFDO0FBS2pHLFFBQVE7QUFDUixPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sYUFBYSxDQUFDO0FBRTdDLFFBQVE7QUFDUixPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFFMUQsVUFBVTtBQUNWLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLHlD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a0JBQWtCLEdBQUcsa0JBQWtCLENBQUM7SUFDdkUsQ0FBQzsrR0FqSVUsNkJBQTZCO21HQUE3Qiw2QkFBNkIsbVNDakQxQyw0aU5Bb0xBLCtoc0JEaEpJLFlBQVksNlZBQ1osb0JBQW9CLGdPQUNwQixnQkFBZ0IsOEJBQ2hCLFNBQVM7Z0JBRVQsYUFBYTtnQkFDYix1QkFBdUI7Z0JBRXZCLFFBQVE7Z0JBQ1IsU0FBUzs7NEZBSUEsNkJBQTZCO2tCQW5CekMsU0FBUzsrQkFDRSw4QkFBOEIsY0FHNUIsSUFBSSxXQUNQO3dCQUNQLFlBQVk7d0JBQ1osb0JBQW9CO3dCQUNwQixnQkFBZ0I7d0JBQ2hCLFNBQVM7d0JBRVQsYUFBYTt3QkFDYix1QkFBdUI7d0JBRXZCLFFBQVE7d0JBQ1IsU0FBUztxQkFDVixpQkFDYyxpQkFBaUIsQ0FBQyxJQUFJOzhCQVl4QixXQUFXO3NCQUF2QixLQUFLO2dCQUdPLGVBQWU7c0JBQTNCLEtBQUs7Z0JBSUksV0FBVztzQkFBcEIsTUFBTTtnQkFDRyxRQUFRO3NCQUFqQixNQUFNO2dCQUNHLFNBQVM7c0JBQWxCLE1BQU07Z0JBQ0csaUJBQWlCO3NCQUExQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IEh0dHBDbGllbnRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5pbXBvcnQge1xuICBDb21wb25lbnQsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE91dHB1dCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQW5ndWxhclN2Z0ljb25Nb2R1bGUgfSBmcm9tICdhbmd1bGFyLXN2Zy1pY29uJztcbmltcG9ydCB7IE5nYk1vZHVsZSB9IGZyb20gJ0BuZy1ib290c3RyYXAvbmctYm9vdHN0cmFwJztcblxuLy8gY29tcG9uZW50c1xuaW1wb3J0IHsgQ2FBcHBUb29sdGlwVjJDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi9jYS1hcHAtdG9vbHRpcC12Mi9jYS1hcHAtdG9vbHRpcC12Mi5jb21wb25lbnQnO1xuXG4vLyBtb2RlbHNcbmltcG9ydCB7IENvbXBhbnlOYXZpZ2F0aW9uRGF0YSwgTmF2aWdhdGlvbkl0ZW0gfSBmcm9tICcuLi8uLi9tb2RlbHMnO1xuXG4vLyBlbnVtc1xuaW1wb3J0IHsgU2VsZWN0ZWRNb2R1bGUgfSBmcm9tICcuLi8uLi9lbnVtcyc7XG5cbi8vIHBpcGVzXG5pbXBvcnQgeyBDYVN2Z1BpcGUgfSBmcm9tICcuLi8uLi8uLi8uLi9waXBlcy9jYS1zdmcucGlwZSc7XG5cbi8vIGNvbmZpZ3NcbmltcG9ydCB7IENhUmlnaHRTaWRlUGFuZWxDb25maWcgfSBmcm9tICcuLi8uLi9jb25maWcvY2EtcmlnaHQtc2lkZS1wYW5lbC5jb25maWcnO1xuXG4vLyByb3V0ZXNcbmltcG9ydCB7IFNpZGVQYW5lbENvbXBhbnlTdmdSb3V0ZXMgfSBmcm9tICcuLi8uLi91dGlscy9zdmctcm91dGVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLWNhLXJpZ2h0LXNpZGUtcGFuZWwtbWVudScsXG4gIHRlbXBsYXRlVXJsOiAnLi9jYS1yaWdodC1zaWRlLXBhbmVsLW1lbnUuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jYS1yaWdodC1zaWRlLXBhbmVsLW1lbnUuY29tcG9uZW50LnNjc3MnXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBBbmd1bGFyU3ZnSWNvbk1vZHVsZSxcbiAgICBIdHRwQ2xpZW50TW9kdWxlLFxuICAgIE5nYk1vZHVsZSxcblxuICAgIC8vIENvbXBvbmVudHNcbiAgICBDYUFwcFRvb2x0aXBWMkNvbXBvbmVudCxcblxuICAgIC8vIHBpcGVzXG4gICAgQ2FTdmdQaXBlLFxuICBdLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxufSlcbmV4cG9ydCBjbGFzcyBDYVJpZ2h0U2lkZVBhbmVsTWVudUNvbXBvbmVudCB7XG4gIHB1YmxpYyBpc1BvcHVwTGlzdFNob3duOiBib29sZWFuID0gZmFsc2U7XG4gIHB1YmxpYyBpc1BvcHVwTW9kdWxlU2hvd246IGJvb2xlYW4gPSBmYWxzZTtcbiAgcHVibGljIHNlbGVjdGVkTW9kdWxlSXRlbSE6IE5hdmlnYXRpb25JdGVtO1xuICBwdWJsaWMgaXNIYW1idXJnZXJNZW51Rm9jdXNlZDogYm9vbGVhbiA9IGZhbHNlO1xuICBwdWJsaWMgaXNQaW5Gb2N1c2VkOiBib29sZWFuID0gZmFsc2U7XG4gIHB1YmxpYyBpc05hdlNob3duOiBib29sZWFuID0gZmFsc2U7XG4gIHB1YmxpYyBoYXZlTWVudTogYm9vbGVhbiA9IGZhbHNlO1xuICBwdWJsaWMgaXRlbUxpc3Q6IE5hdmlnYXRpb25JdGVtW10gPSBbXTtcblxuICBASW5wdXQoKSBzZXQgY29tcGFueUxpc3QodmFsdWU6IENvbXBhbnlOYXZpZ2F0aW9uRGF0YVtdKSB7XG4gICAgaWYgKHZhbHVlKSB0aGlzLnNldEl0ZW1MaXN0KHZhbHVlKTtcbiAgfVxuICBASW5wdXQoKSBzZXQgc2VsZWN0ZWRDb21wYW55KHZhbHVlOiBudW1iZXIpIHtcbiAgICBpZiAodmFsdWUpIHRoaXMuc2V0U2VsZWN0ZWRDb21wYW55KHZhbHVlKTtcbiAgfVxuXG4gIEBPdXRwdXQoKSBzZWxlY3RlZE5hdjogRXZlbnRFbWl0dGVyPFNlbGVjdGVkTW9kdWxlPiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcbiAgQE91dHB1dCgpIGlzUGlubmVkOiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG4gIEBPdXRwdXQoKSBpc05hdk9wZW46IEV2ZW50RW1pdHRlcjxib29sZWFuPiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcbiAgQE91dHB1dCgpIHNlbGVjdGVkQ29tcGFueUlkOiBFdmVudEVtaXR0ZXI8bnVtYmVyPiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcblxuICBwcml2YXRlIHNldEl0ZW1MaXN0KGNvbXBhbmllczogQ29tcGFueU5hdmlnYXRpb25EYXRhW10pOiB2b2lkIHtcbiAgICBpZiAoY29tcGFuaWVzKSB7XG4gICAgICBjb25zdCBtYWluQ29tcGFueSA9IGNvbXBhbmllcy5maW5kKChjb21wYW55KSA9PiAhY29tcGFueS5pc0RpdmlzaW9uKTtcbiAgICAgIGNvbnN0IG90aGVyQ29tcGFuaWVzID0gY29tcGFuaWVzLmZpbHRlcigoY29tcGFueSkgPT4gY29tcGFueS5pc0RpdmlzaW9uKTtcblxuICAgICAgdGhpcy5pdGVtTGlzdCA9IFtcbiAgICAgICAge1xuICAgICAgICAgIGljb246IFNpZGVQYW5lbENvbXBhbnlTdmdSb3V0ZXMuaWNvbnMubWFpbkNvbXBhbnksXG4gICAgICAgICAgdGl0bGU6IFNlbGVjdGVkTW9kdWxlLkNPTVBBTllfSU5GTyxcbiAgICAgICAgICBjb21wYW55TmFtZTogbWFpbkNvbXBhbnk/LmNvbXBhbnlOYW1lIHx8ICcnLFxuICAgICAgICAgIGNvbXBhbnlJZDogbWFpbkNvbXBhbnk/LmlkLFxuICAgICAgICAgIGlzTGFzdEluTGlzdDogb3RoZXJDb21wYW5pZXMubGVuZ3RoID09PSAwLFxuICAgICAgICB9LFxuICAgICAgICAuLi5vdGhlckNvbXBhbmllcy5tYXAoKGNvbXBhbnksIGluZGV4LCBhcnJheSkgPT4gKHtcbiAgICAgICAgICBpY29uOiBTaWRlUGFuZWxDb21wYW55U3ZnUm91dGVzLmljb25zLmRpdmlzaW9uQ29tcGFueSxcbiAgICAgICAgICB0aXRsZTogU2VsZWN0ZWRNb2R1bGUuRElWSVNJT05fSU5GTyxcbiAgICAgICAgICBjb21wYW55TmFtZTogY29tcGFueS5jb21wYW55TmFtZSxcbiAgICAgICAgICBjb21wYW55SWQ6IGNvbXBhbnkuaWQsXG4gICAgICAgICAgaXNMYXN0SW5MaXN0OiBpbmRleCA9PT0gYXJyYXkubGVuZ3RoIC0gMSxcbiAgICAgICAgfSkpLFxuICAgICAgXTtcbiAgICB9XG5cbiAgICBDYVJpZ2h0U2lkZVBhbmVsQ29uZmlnLmdldE5hdmlnYXRpb25JdGVtcygpLm1hcCgoaXRlbTogTmF2aWdhdGlvbkl0ZW0pID0+IHtcbiAgICAgIHRoaXMuaXRlbUxpc3QucHVzaChpdGVtKTtcbiAgICB9KTtcbiAgfVxuXG4gIHB1YmxpYyBvcGVuTWVudSgpOiB2b2lkIHtcbiAgICB0aGlzLmlzUG9wdXBMaXN0U2hvd24gPSB0cnVlO1xuICAgIHRoaXMuaXNOYXZPcGVuLmVtaXQodHJ1ZSk7XG4gIH1cblxuICBwdWJsaWMgY2xvc2VNZW51KCk6IHZvaWQge1xuICAgIHRoaXMuaXNQb3B1cExpc3RTaG93biA9IGZhbHNlO1xuICB9XG5cbiAgcHVibGljIGl0ZW1DbGlja0V2ZW50KGl0ZW06IE5hdmlnYXRpb25JdGVtKTogdm9pZCB7XG4gICAgdGhpcy5zZWxlY3RlZE1vZHVsZUl0ZW0gPSBpdGVtO1xuICAgIHRoaXMuaXNQb3B1cExpc3RTaG93biA9ICF0aGlzLmlzUG9wdXBMaXN0U2hvd247XG4gICAgdGhpcy5pc1BvcHVwTW9kdWxlU2hvd24gPSAhdGhpcy5pc1BvcHVwTW9kdWxlU2hvd247XG4gICAgdGhpcy5zZWxlY3RlZE5hdi5lbWl0KGl0ZW0udGl0bGUpO1xuICAgIHRoaXMuc2VsZWN0ZWRDb21wYW55SWQuZW1pdChpdGVtLmNvbXBhbnlJZCk7XG4gICAgdGhpcy5zZXRTZXR0aW5ncygpO1xuICB9XG5cbiAgcHVibGljIG5hdkl0ZW1DbGlja0V2ZW50KGl0ZW06IE5hdmlnYXRpb25JdGVtKTogdm9pZCB7XG4gICAgdGhpcy5zZWxlY3RlZE1vZHVsZUl0ZW0gPSBpdGVtO1xuICAgIHRoaXMuaXNOYXZTaG93biA9IGZhbHNlO1xuICAgIHRoaXMuc2VsZWN0ZWROYXYuZW1pdChpdGVtLnRpdGxlKTtcbiAgICB0aGlzLnNlbGVjdGVkQ29tcGFueUlkLmVtaXQoaXRlbS5jb21wYW55SWQpO1xuICAgIHRoaXMuc2V0U2V0dGluZ3MoKTtcbiAgfVxuXG4gIHB1YmxpYyBjbG9zZU1vZHVsZSgpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5pc05hdlNob3duKSB7XG4gICAgICB0aGlzLmlzTmF2U2hvd24gPSBmYWxzZTtcbiAgICAgIHRoaXMuaXNIYW1idXJnZXJNZW51Rm9jdXNlZCA9IGZhbHNlO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmlzUG9wdXBMaXN0U2hvd24gPSBmYWxzZTtcbiAgICAgIHRoaXMuaXNQb3B1cE1vZHVsZVNob3duID0gZmFsc2U7XG4gICAgICB0aGlzLmlzTmF2U2hvd24gPSBmYWxzZTtcbiAgICAgIHRoaXMuaXNIYW1idXJnZXJNZW51Rm9jdXNlZCA9IGZhbHNlO1xuICAgICAgdGhpcy5pc1BpbkZvY3VzZWQgPSBmYWxzZTtcbiAgICAgIHRoaXMuc2VsZWN0ZWROYXYuZW1pdCgpO1xuICAgICAgdGhpcy5pc1Bpbm5lZC5lbWl0KGZhbHNlKTtcbiAgICB9XG4gIH1cblxuICBwdWJsaWMgdG9nZ2xlTmF2KCk6IHZvaWQge1xuICAgIHRoaXMuaXNOYXZTaG93biA9ICF0aGlzLmlzTmF2U2hvd247XG4gIH1cblxuICBwdWJsaWMgaGFtYnVyZ2VyTWVudUNsaWNrRXZlbnQoKTogdm9pZCB7fVxuXG4gIHB1YmxpYyBwaW5DbGlja0V2ZW50KCk6IHZvaWQge1xuICAgIHRoaXMuaXNIYW1idXJnZXJNZW51Rm9jdXNlZCA9IGZhbHNlO1xuICAgIHRoaXMuaXNQaW5Gb2N1c2VkID0gIXRoaXMuaXNQaW5Gb2N1c2VkO1xuICAgIHRoaXMuaXNQaW5uZWQuZW1pdCh0aGlzLmlzUGluRm9jdXNlZCk7XG4gIH1cblxuICBwdWJsaWMgdHJhY2tCeUlkZW50aXR5KGluZGV4OiBudW1iZXIpOiBudW1iZXIge1xuICAgIHJldHVybiBpbmRleDtcbiAgfVxuXG4gIHByaXZhdGUgc2V0U2V0dGluZ3MoKTogdm9pZCB7XG4gICAgc3dpdGNoICh0aGlzLnNlbGVjdGVkTW9kdWxlSXRlbT8udGl0bGUpIHtcbiAgICAgIGNhc2UgU2VsZWN0ZWRNb2R1bGUuQUNUSVZJVFlfTE9HOlxuICAgICAgICB0aGlzLmhhdmVNZW51ID0gZmFsc2U7XG4gICAgICAgIGJyZWFrO1xuICAgICAgY2FzZSBTZWxlY3RlZE1vZHVsZS5DT01QQU5ZX0lORk86XG4gICAgICAgIHRoaXMuaGF2ZU1lbnUgPSBmYWxzZTtcbiAgICAgICAgYnJlYWs7XG4gICAgICBjYXNlIFNlbGVjdGVkTW9kdWxlLkRJVklTSU9OX0lORk86XG4gICAgICAgIHRoaXMuaGF2ZU1lbnUgPSBmYWxzZTtcbiAgICAgICAgYnJlYWs7XG4gICAgICBkZWZhdWx0OlxuICAgICAgICB0aGlzLmhhdmVNZW51ID0gdHJ1ZTtcbiAgICAgICAgYnJlYWs7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBzZXRTZWxlY3RlZENvbXBhbnkoY29tcGFueUlkOiBudW1iZXIpOiB2b2lkIHtcbiAgICBjb25zdCBzZWxlY3RlZE1vZHVsZUl0ZW0gPSB0aGlzLml0ZW1MaXN0LmZpbmQoXG4gICAgICAoaXRlbSkgPT4gaXRlbS5jb21wYW55SWQgPT09IGNvbXBhbnlJZFxuICAgICk7XG4gICAgaWYgKHNlbGVjdGVkTW9kdWxlSXRlbSkgdGhpcy5zZWxlY3RlZE1vZHVsZUl0ZW0gPSBzZWxlY3RlZE1vZHVsZUl0ZW07XG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJzaWRlLXBhbmVsLXJpZ2h0LWNvbnRhaW5lci1ib3hcIj5cbiAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIiFpc1BvcHVwTW9kdWxlU2hvd25cIj5cbiAgICA8ZGl2XG4gICAgICAobW91c2VsZWF2ZSk9XCJjbG9zZU1lbnUoKVwiXG4gICAgICBjbGFzcz1cInNpZGUtcGFuZWwtcmlnaHQtYnV0dG9uLWNvbnRhaW5lci1ib3ggZC1mbGV4IGZsZXgtY29sdW1uIGp1c3RpZnktY29udGVudC1jZW50ZXIgYWxpZ24taXRlbXMtY2VudGVyXCJcbiAgICAgIFtuZ0NsYXNzXT1cIlxuICAgICAgICBpc1BvcHVwTGlzdFNob3duICYmICFpc1BvcHVwTW9kdWxlU2hvd25cbiAgICAgICAgICA/ICdzaWRlLXBhbmVsLXJpZ2h0LWJ1dHRvbi1jb250YWluZXItYm94LWFjdGl2ZSdcbiAgICAgICAgICA6ICcnXG4gICAgICBcIlxuICAgID5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc1BvcHVwTGlzdFNob3duICYmICFpc1BvcHVwTW9kdWxlU2hvd25cIj5cbiAgICAgICAgPGRpdlxuICAgICAgICAgIGNsYXNzPVwic2lkZS1wYW5lbC1saXN0LWNvbnRhaW5lci1ib3ggZC1mbGV4IGZsZXgtY29sdW1uIGFsaWduLWl0ZW1zLWNlbnRlclwiXG4gICAgICAgID5cbiAgICAgICAgICA8bmctY29udGFpbmVyXG4gICAgICAgICAgICAqbmdGb3I9XCJcbiAgICAgICAgICAgICAgbGV0IGl0ZW0gb2YgaXRlbUxpc3Q7XG4gICAgICAgICAgICAgIGxldCBpbmR4ID0gaW5kZXg7XG4gICAgICAgICAgICAgIHRyYWNrQnk6IHRyYWNrQnlJZGVudGl0eVxuICAgICAgICAgICAgXCJcbiAgICAgICAgICA+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwic2lkZS1wYW5lbC1saXN0LWNvbnRhaW5lclwiPlxuICAgICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgY2xhc3M9XCJpdGVtLWNvbnRhaW5lciBkLWZsZXhcIlxuICAgICAgICAgICAgICAgIChjbGljayk9XCJpdGVtQ2xpY2tFdmVudChpdGVtKVwiXG4gICAgICAgICAgICAgICAgW21haW5DYVRvb2x0aXBdPVwiaXRlbS5jb21wYW55TmFtZSA/PyBpdGVtLnRpdGxlXCJcbiAgICAgICAgICAgICAgICBuZ2JUb29sdGlwXG4gICAgICAgICAgICAgICAgcG9zaXRpb249XCJsZWZ0XCJcbiAgICAgICAgICAgICAgICB0b29sdGlwQmFja2dyb3VuZD1cIiM0MjQyNDJcIlxuICAgICAgICAgICAgICAgIHRvb2x0aXBUZXh0QWxpZ249XCJjZW50ZXJcIlxuICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgPHN2Zy1pY29uIFtzcmNdPVwiaXRlbS5pY29uXCIgY2xhc3M9XCJpdGVtLWljb25cIj48L3N2Zy1pY29uPlxuICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIml0ZW0uaXNMYXN0SW5MaXN0XCI+XG4gICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJob3Jpem9udGFsLWxpbmVcIj48L2Rpdj5cbiAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPGRpdiBjbGFzcz1cInNpZGUtcGFuZWwtcmlnaHQtY29udGFpbmVyXCIgKG1vdXNlZW50ZXIpPVwib3Blbk1lbnUoKVwiPlxuICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICBjbGFzcz1cInNpZGUtcGFuZWwtcmlnaHQtaWNvbiBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIlxuICAgICAgICAgIFtzcmNdPVwiJ2ljX3NpZGUtcGFuZWwtcmlnaHQnIHwgY2FTdmc6ICdjb21tb24nXCJcbiAgICAgICAgICBbc3ZnU3R5bGVdPVwieyAnd2lkdGgucHgnOiAxOCwgJ2hlaWdodC5weCc6IDE1Ljc1IH1cIlxuICAgICAgICA+PC9zdmctaWNvbj5cbiAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNOYXZTaG93blwiPlxuICAgIDxkaXYgY2xhc3M9XCJzaWRlLXBhbmVsLW5hdi1jb250YWluZXItYm94IGQtZmxleCBmbGV4LWNvbHVtblwiPlxuICAgICAgPG5nLWNvbnRhaW5lclxuICAgICAgICAqbmdGb3I9XCJcbiAgICAgICAgICBsZXQgaXRlbSBvZiBpdGVtTGlzdDtcbiAgICAgICAgICBsZXQgaW5keCA9IGluZGV4O1xuICAgICAgICAgIHRyYWNrQnk6IHRyYWNrQnlJZGVudGl0eVxuICAgICAgICBcIlxuICAgICAgPlxuICAgICAgICA8ZGl2IGNsYXNzPVwibmF2LWxpc3QtY29udGFpbmVyXCI+XG4gICAgICAgICAgPGRpdlxuICAgICAgICAgICAgY2xhc3M9XCJuYXYtaXRlbS1jb250YWluZXIgZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlclwiXG4gICAgICAgICAgICAoY2xpY2spPVwibmF2SXRlbUNsaWNrRXZlbnQoaXRlbSlcIlxuICAgICAgICAgICAgW25nQ2xhc3NdPVwie1xuICAgICAgICAgICAgICAnc2VsZWN0ZWQtaXRlbSc6XG4gICAgICAgICAgICAgICAgc2VsZWN0ZWRNb2R1bGVJdGVtPy50aXRsZSA9PSBpdGVtLnRpdGxlICYmXG4gICAgICAgICAgICAgICAgc2VsZWN0ZWRNb2R1bGVJdGVtPy5jb21wYW55TmFtZSA9PSBpdGVtLmNvbXBhbnlOYW1lLFxuICAgICAgICAgICAgfVwiXG4gICAgICAgICAgPlxuICAgICAgICAgICAgPHN2Zy1pY29uXG4gICAgICAgICAgICAgIFtzcmNdPVwiaXRlbS5pY29uXCJcbiAgICAgICAgICAgICAgY2xhc3M9XCJuYXYtaXRlbS1pY29uIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIganVzdGlmeS1jb250ZW50LWNlbnRlclwiXG4gICAgICAgICAgICAgIFtzdmdTdHlsZV09XCJ7ICd3aWR0aC5weCc6IDE4LCAnaGVpZ2h0LnB4JzogMTggfVwiXG4gICAgICAgICAgICA+PC9zdmctaWNvbj5cbiAgICAgICAgICAgIDxwXG4gICAgICAgICAgICAgIGNsYXNzPVwibmF2LWl0ZW0tdGl0bGUgY2EtZm9udC1tZWRpdW1cIlxuICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICAgICAgJ2NhLWZvbnQtYm9sZCc6XG4gICAgICAgICAgICAgICAgICBzZWxlY3RlZE1vZHVsZUl0ZW0/LnRpdGxlID09IGl0ZW0udGl0bGUgJiZcbiAgICAgICAgICAgICAgICAgIHNlbGVjdGVkTW9kdWxlSXRlbT8uY29tcGFueU5hbWUgPT0gaXRlbS5jb21wYW55TmFtZSxcbiAgICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgIHt7IGl0ZW0uY29tcGFueU5hbWUgPz8gaXRlbS50aXRsZSB9fVxuICAgICAgICAgICAgPC9wPlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIml0ZW0uaXNMYXN0SW5MaXN0XCI+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cImhvcml6b250YWwtbGluZVwiPjwvZGl2PlxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNQb3B1cE1vZHVsZVNob3duICYmICFpc1BvcHVwTGlzdFNob3duXCI+XG4gICAgPGRpdlxuICAgICAgY2xhc3M9XCJzaWRlLXBhbmVsLXJpZ2h0LW1vZHVsZS1jb250YWluZXIgZC1mbGV4IGp1c3RpZnktY29udGVudC1iZXR3ZWVuXCJcbiAgICAgIFtuZ0NsYXNzXT1cInsgJ25hdi1vcGVuJzogaXNOYXZTaG93biB9XCJcbiAgICA+XG4gICAgICA8ZGl2XG4gICAgICAgIGNsYXNzPVwibW9kdWxlLXRpdGxlLWNvbnRhaW5lciBkLWZsZXhcIlxuICAgICAgICAoY2xpY2spPVwidG9nZ2xlTmF2KClcIlxuICAgICAgICBbbmdDbGFzc109XCJ7ICduYXYtb3Blbic6IGlzTmF2U2hvd24gfVwiXG4gICAgICA+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJtb2R1bGUtaWNvbi1jb250YWluZXJcIj5cbiAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgIFtzcmNdPVwic2VsZWN0ZWRNb2R1bGVJdGVtLmljb25cIlxuICAgICAgICAgICAgY2xhc3M9XCJtb2R1bGUtaWNvblwiXG4gICAgICAgICAgICBbc3ZnU3R5bGVdPVwieyAnd2lkdGgucHgnOiAxNi4yLCAnaGVpZ2h0LnB4JzogMTYuMiB9XCJcbiAgICAgICAgICA+XG4gICAgICAgICAgPC9zdmctaWNvbj5cbiAgICAgICAgPC9kaXY+XG4gICAgICAgIDxwIGNsYXNzPVwibW9kdWxlLXRpdGxlLXRleHQgY2EtZm9udC1leHRyYS1ib2xkXCI+XG4gICAgICAgICAge3sgc2VsZWN0ZWRNb2R1bGVJdGVtPy50aXRsZSB9fVxuICAgICAgICA8L3A+XG4gICAgICA8L2Rpdj5cbiAgICAgIDxkaXYgY2xhc3M9XCJtb2R1bGUtaWNvbnMtY29udGFpbmVyIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXJcIj5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIiFpc05hdlNob3duXCI+XG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImhhdmVNZW51XCI+XG4gICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgIGNsYXNzPVwiaWNvblwiXG4gICAgICAgICAgICAgIG5nYlRvb2x0aXBcbiAgICAgICAgICAgICAgbWFpbkNhVG9vbHRpcD1cInt7IGlzTmF2U2hvd24gPyAnQ2xvc2UgbWVudScgOiAnT3BlbiBtZW51JyB9fVwiXG4gICAgICAgICAgICAgIHBvc2l0aW9uPVwidG9wXCJcbiAgICAgICAgICAgICAgdG9vbHRpcEJhY2tncm91bmQ9XCJ7eyBpc05hdlNob3duID8gJyNDQ0NDQ0MnIDogJyMyRjJGMkYnIH19XCJcbiAgICAgICAgICAgICAgdG9vbHRpcENvbG9yPVwie3sgaXNOYXZTaG93biA/ICcjMkYyRjJGJyA6ICcjRkZGRkZGJyB9fVwiXG4gICAgICAgICAgICAgIHRvb2x0aXBUZXh0QWxpZ249XCJjZW50ZXJcIlxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgICAgICBbc3JjXT1cIidpY19oYW1idXJnZXJfbWVudScgfCBjYVN2ZzogJ3JpZ2h0LXNpZGUtcGFuZWwnXCJcbiAgICAgICAgICAgICAgICBjbGFzcz1cIm1vZHVsZS1yaWdodC1pY29uIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIganVzdGlmeS1jb250ZW50LWNlbnRlclwiXG4gICAgICAgICAgICAgICAgW3N2Z1N0eWxlXT1cInsgJ3dpZHRoLnB4JzogMTYuMiwgJ2hlaWdodC5weCc6IDE2LjIgfVwiXG4gICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwieyBmb2N1c2VkOiBpc0hhbWJ1cmdlck1lbnVGb2N1c2VkIH1cIlxuICAgICAgICAgICAgICAgIChjbGljayk9XCJoYW1idXJnZXJNZW51Q2xpY2tFdmVudCgpXCJcbiAgICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICBjbGFzcz1cImljb25cIlxuICAgICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgICAgbWFpbkNhVG9vbHRpcD1cInt7IGlzUGluRm9jdXNlZCA/ICdVbnBpbiBTaWRlYmFyJyA6ICdQaW4gU2lkZWJhcicgfX1cIlxuICAgICAgICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgICAgICAgdG9vbHRpcEJhY2tncm91bmQ9XCIjNDI0MjQyXCJcbiAgICAgICAgICAgIHRvb2x0aXBDb2xvcj1cIiNGRkZGRkZcIlxuICAgICAgICAgICAgdG9vbHRpcFRleHRBbGlnbj1cImNlbnRlclwiXG4gICAgICAgICAgPlxuICAgICAgICAgICAgPHN2Zy1pY29uXG4gICAgICAgICAgICAgIFtzcmNdPVwiJ2ljX3BpbicgfCBjYVN2ZzogJ3JpZ2h0LXNpZGUtcGFuZWwnXCJcbiAgICAgICAgICAgICAgY2xhc3M9XCJtb2R1bGUtcmlnaHQtaWNvbiBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIlxuICAgICAgICAgICAgICBbc3ZnU3R5bGVdPVwieyAnd2lkdGgucHgnOiAxNi4yLCAnaGVpZ2h0LnB4JzogMTYuMiB9XCJcbiAgICAgICAgICAgICAgW25nQ2xhc3NdPVwieyBmb2N1c2VkOiBpc1BpbkZvY3VzZWQgfVwiXG4gICAgICAgICAgICAgIChjbGljayk9XCJwaW5DbGlja0V2ZW50KClcIlxuICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cInZlcnRpY2FsLWxpbmVcIj48L2Rpdj5cbiAgICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgICAgPGRpdlxuICAgICAgICAgIGNsYXNzPVwiaWNvblwiXG4gICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgIG1haW5DYVRvb2x0aXA9XCJDbG9zZVwiXG4gICAgICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgICAgIHRvb2x0aXBCYWNrZ3JvdW5kPVwiIzQyNDI0MlwiXG4gICAgICAgICAgdG9vbHRpcENvbG9yPVwiI0ZGRkZGRlwiXG4gICAgICAgICAgdG9vbHRpcFRleHRBbGlnbj1cImNlbnRlclwiXG4gICAgICAgID5cbiAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgIFtzcmNdPVwiXG4gICAgICAgICAgICAgIChpc05hdlNob3duID8gJ2ljX2Fycm93X3ByaW1hcnlfdXAnIDogJ2ljX2Fycm93X3ByaW1hcnlfcmlnaHQnKVxuICAgICAgICAgICAgICAgIHwgY2FTdmc6ICdyaWdodC1zaWRlLXBhbmVsJ1xuICAgICAgICAgICAgXCJcbiAgICAgICAgICAgIGNsYXNzPVwibW9kdWxlLXJpZ2h0LWljb24gZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyXCJcbiAgICAgICAgICAgIFtzdmdTdHlsZV09XCJ7ICd3aWR0aC5weCc6IDE2LjIsICdoZWlnaHQucHgnOiAxNi4yIH1cIlxuICAgICAgICAgICAgKGNsaWNrKT1cImNsb3NlTW9kdWxlKClcIlxuICAgICAgICAgID48L3N2Zy1pY29uPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cbjwvZGl2PlxuIl19
169
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtcmlnaHQtc2lkZS1wYW5lbC1tZW51LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLXJpZ2h0LXNpZGUtcGFuZWwvY29tcG9uZW50cy9jYS1yaWdodC1zaWRlLXBhbmVsLW1lbnUvY2EtcmlnaHQtc2lkZS1wYW5lbC1tZW51LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLXJpZ2h0LXNpZGUtcGFuZWwvY29tcG9uZW50cy9jYS1yaWdodC1zaWRlLXBhbmVsLW1lbnUvY2EtcmlnaHQtc2lkZS1wYW5lbC1tZW51LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN4RCxPQUFPLEVBQ0wsU0FBUyxFQUNULFlBQVksRUFDWixLQUFLLEVBQ0wsTUFBTSxFQUNOLGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFFdkQsYUFBYTtBQUNiLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdEQUF3RCxDQUFDO0FBS2pHLFFBQVE7QUFDUixPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sYUFBYSxDQUFDO0FBRTdDLFFBQVE7QUFDUixPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFFMUQsVUFBVTtBQUNWLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLHlD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a0JBQWtCLEdBQUcsa0JBQWtCLENBQUM7SUFDdkUsQ0FBQzsrR0FqSVUsNkJBQTZCO21HQUE3Qiw2QkFBNkIsbVNDakQxQyxnNlFBNkxBLGdqc0JEekpJLFlBQVksNEhBQ1osb0JBQW9CLGdPQUNwQixnQkFBZ0IsOEJBQ2hCLFNBQVM7Z0JBRVQsYUFBYTtnQkFDYix1QkFBdUI7Z0JBRXZCLFFBQVE7Z0JBQ1IsU0FBUzs7NEZBSUEsNkJBQTZCO2tCQW5CekMsU0FBUzsrQkFDRSw4QkFBOEIsY0FHNUIsSUFBSSxXQUNQO3dCQUNQLFlBQVk7d0JBQ1osb0JBQW9CO3dCQUNwQixnQkFBZ0I7d0JBQ2hCLFNBQVM7d0JBRVQsYUFBYTt3QkFDYix1QkFBdUI7d0JBRXZCLFFBQVE7d0JBQ1IsU0FBUztxQkFDVixpQkFDYyxpQkFBaUIsQ0FBQyxJQUFJOzhCQVl4QixXQUFXO3NCQUF2QixLQUFLO2dCQUdPLGVBQWU7c0JBQTNCLEtBQUs7Z0JBSUksV0FBVztzQkFBcEIsTUFBTTtnQkFDRyxRQUFRO3NCQUFqQixNQUFNO2dCQUNHLFNBQVM7c0JBQWxCLE1BQU07Z0JBQ0csaUJBQWlCO3NCQUExQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IEh0dHBDbGllbnRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5pbXBvcnQge1xuICBDb21wb25lbnQsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE91dHB1dCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQW5ndWxhclN2Z0ljb25Nb2R1bGUgfSBmcm9tICdhbmd1bGFyLXN2Zy1pY29uJztcbmltcG9ydCB7IE5nYk1vZHVsZSB9IGZyb20gJ0BuZy1ib290c3RyYXAvbmctYm9vdHN0cmFwJztcblxuLy8gY29tcG9uZW50c1xuaW1wb3J0IHsgQ2FBcHBUb29sdGlwVjJDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi9jYS1hcHAtdG9vbHRpcC12Mi9jYS1hcHAtdG9vbHRpcC12Mi5jb21wb25lbnQnO1xuXG4vLyBtb2RlbHNcbmltcG9ydCB7IENvbXBhbnlOYXZpZ2F0aW9uRGF0YSwgTmF2aWdhdGlvbkl0ZW0gfSBmcm9tICcuLi8uLi9tb2RlbHMnO1xuXG4vLyBlbnVtc1xuaW1wb3J0IHsgU2VsZWN0ZWRNb2R1bGUgfSBmcm9tICcuLi8uLi9lbnVtcyc7XG5cbi8vIHBpcGVzXG5pbXBvcnQgeyBDYVN2Z1BpcGUgfSBmcm9tICcuLi8uLi8uLi8uLi9waXBlcy9jYS1zdmcucGlwZSc7XG5cbi8vIGNvbmZpZ3NcbmltcG9ydCB7IENhUmlnaHRTaWRlUGFuZWxDb25maWcgfSBmcm9tICcuLi8uLi9jb25maWcvY2EtcmlnaHQtc2lkZS1wYW5lbC5jb25maWcnO1xuXG4vLyByb3V0ZXNcbmltcG9ydCB7IFNpZGVQYW5lbENvbXBhbnlTdmdSb3V0ZXMgfSBmcm9tICcuLi8uLi91dGlscy9zdmctcm91dGVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLWNhLXJpZ2h0LXNpZGUtcGFuZWwtbWVudScsXG4gIHRlbXBsYXRlVXJsOiAnLi9jYS1yaWdodC1zaWRlLXBhbmVsLW1lbnUuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jYS1yaWdodC1zaWRlLXBhbmVsLW1lbnUuY29tcG9uZW50LnNjc3MnXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBBbmd1bGFyU3ZnSWNvbk1vZHVsZSxcbiAgICBIdHRwQ2xpZW50TW9kdWxlLFxuICAgIE5nYk1vZHVsZSxcblxuICAgIC8vIENvbXBvbmVudHNcbiAgICBDYUFwcFRvb2x0aXBWMkNvbXBvbmVudCxcblxuICAgIC8vIHBpcGVzXG4gICAgQ2FTdmdQaXBlLFxuICBdLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxufSlcbmV4cG9ydCBjbGFzcyBDYVJpZ2h0U2lkZVBhbmVsTWVudUNvbXBvbmVudCB7XG4gIHB1YmxpYyBpc1BvcHVwTGlzdFNob3duOiBib29sZWFuID0gZmFsc2U7XG4gIHB1YmxpYyBpc1BvcHVwTW9kdWxlU2hvd246IGJvb2xlYW4gPSBmYWxzZTtcbiAgcHVibGljIHNlbGVjdGVkTW9kdWxlSXRlbSE6IE5hdmlnYXRpb25JdGVtO1xuICBwdWJsaWMgaXNIYW1idXJnZXJNZW51Rm9jdXNlZDogYm9vbGVhbiA9IGZhbHNlO1xuICBwdWJsaWMgaXNQaW5Gb2N1c2VkOiBib29sZWFuID0gZmFsc2U7XG4gIHB1YmxpYyBpc05hdlNob3duOiBib29sZWFuID0gZmFsc2U7XG4gIHB1YmxpYyBoYXZlTWVudTogYm9vbGVhbiA9IGZhbHNlO1xuICBwdWJsaWMgaXRlbUxpc3Q6IE5hdmlnYXRpb25JdGVtW10gPSBbXTtcblxuICBASW5wdXQoKSBzZXQgY29tcGFueUxpc3QodmFsdWU6IENvbXBhbnlOYXZpZ2F0aW9uRGF0YVtdKSB7XG4gICAgaWYgKHZhbHVlKSB0aGlzLnNldEl0ZW1MaXN0KHZhbHVlKTtcbiAgfVxuICBASW5wdXQoKSBzZXQgc2VsZWN0ZWRDb21wYW55KHZhbHVlOiBudW1iZXIpIHtcbiAgICBpZiAodmFsdWUpIHRoaXMuc2V0U2VsZWN0ZWRDb21wYW55KHZhbHVlKTtcbiAgfVxuXG4gIEBPdXRwdXQoKSBzZWxlY3RlZE5hdjogRXZlbnRFbWl0dGVyPFNlbGVjdGVkTW9kdWxlPiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcbiAgQE91dHB1dCgpIGlzUGlubmVkOiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG4gIEBPdXRwdXQoKSBpc05hdk9wZW46IEV2ZW50RW1pdHRlcjxib29sZWFuPiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcbiAgQE91dHB1dCgpIHNlbGVjdGVkQ29tcGFueUlkOiBFdmVudEVtaXR0ZXI8bnVtYmVyPiA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcblxuICBwcml2YXRlIHNldEl0ZW1MaXN0KGNvbXBhbmllczogQ29tcGFueU5hdmlnYXRpb25EYXRhW10pOiB2b2lkIHtcbiAgICBpZiAoY29tcGFuaWVzKSB7XG4gICAgICBjb25zdCBtYWluQ29tcGFueSA9IGNvbXBhbmllcy5maW5kKChjb21wYW55KSA9PiAhY29tcGFueS5pc0RpdmlzaW9uKTtcbiAgICAgIGNvbnN0IG90aGVyQ29tcGFuaWVzID0gY29tcGFuaWVzLmZpbHRlcigoY29tcGFueSkgPT4gY29tcGFueS5pc0RpdmlzaW9uKTtcblxuICAgICAgdGhpcy5pdGVtTGlzdCA9IFtcbiAgICAgICAge1xuICAgICAgICAgIGljb246IFNpZGVQYW5lbENvbXBhbnlTdmdSb3V0ZXMuaWNvbnMubWFpbkNvbXBhbnksXG4gICAgICAgICAgdGl0bGU6IFNlbGVjdGVkTW9kdWxlLkNPTVBBTllfSU5GTyxcbiAgICAgICAgICBjb21wYW55TmFtZTogbWFpbkNvbXBhbnk/LmNvbXBhbnlOYW1lIHx8ICcnLFxuICAgICAgICAgIGNvbXBhbnlJZDogbWFpbkNvbXBhbnk/LmlkLFxuICAgICAgICAgIGlzTGFzdEluTGlzdDogb3RoZXJDb21wYW5pZXMubGVuZ3RoID09PSAwLFxuICAgICAgICB9LFxuICAgICAgICAuLi5vdGhlckNvbXBhbmllcy5tYXAoKGNvbXBhbnksIGluZGV4LCBhcnJheSkgPT4gKHtcbiAgICAgICAgICBpY29uOiBTaWRlUGFuZWxDb21wYW55U3ZnUm91dGVzLmljb25zLmRpdmlzaW9uQ29tcGFueSxcbiAgICAgICAgICB0aXRsZTogU2VsZWN0ZWRNb2R1bGUuRElWSVNJT05fSU5GTyxcbiAgICAgICAgICBjb21wYW55TmFtZTogY29tcGFueS5jb21wYW55TmFtZSxcbiAgICAgICAgICBjb21wYW55SWQ6IGNvbXBhbnkuaWQsXG4gICAgICAgICAgaXNMYXN0SW5MaXN0OiBpbmRleCA9PT0gYXJyYXkubGVuZ3RoIC0gMSxcbiAgICAgICAgfSkpLFxuICAgICAgXTtcbiAgICB9XG5cbiAgICBDYVJpZ2h0U2lkZVBhbmVsQ29uZmlnLmdldE5hdmlnYXRpb25JdGVtcygpLm1hcCgoaXRlbTogTmF2aWdhdGlvbkl0ZW0pID0+IHtcbiAgICAgIHRoaXMuaXRlbUxpc3QucHVzaChpdGVtKTtcbiAgICB9KTtcbiAgfVxuXG4gIHB1YmxpYyBvcGVuTWVudSgpOiB2b2lkIHtcbiAgICB0aGlzLmlzUG9wdXBMaXN0U2hvd24gPSB0cnVlO1xuICAgIHRoaXMuaXNOYXZPcGVuLmVtaXQodHJ1ZSk7XG4gIH1cblxuICBwdWJsaWMgY2xvc2VNZW51KCk6IHZvaWQge1xuICAgIHRoaXMuaXNQb3B1cExpc3RTaG93biA9IGZhbHNlO1xuICB9XG5cbiAgcHVibGljIGl0ZW1DbGlja0V2ZW50KGl0ZW06IE5hdmlnYXRpb25JdGVtKTogdm9pZCB7XG4gICAgdGhpcy5zZWxlY3RlZE1vZHVsZUl0ZW0gPSBpdGVtO1xuICAgIHRoaXMuaXNQb3B1cExpc3RTaG93biA9ICF0aGlzLmlzUG9wdXBMaXN0U2hvd247XG4gICAgdGhpcy5pc1BvcHVwTW9kdWxlU2hvd24gPSAhdGhpcy5pc1BvcHVwTW9kdWxlU2hvd247XG4gICAgdGhpcy5zZWxlY3RlZE5hdi5lbWl0KGl0ZW0udGl0bGUpO1xuICAgIHRoaXMuc2VsZWN0ZWRDb21wYW55SWQuZW1pdChpdGVtLmNvbXBhbnlJZCk7XG4gICAgdGhpcy5zZXRTZXR0aW5ncygpO1xuICB9XG5cbiAgcHVibGljIG5hdkl0ZW1DbGlja0V2ZW50KGl0ZW06IE5hdmlnYXRpb25JdGVtKTogdm9pZCB7XG4gICAgdGhpcy5zZWxlY3RlZE1vZHVsZUl0ZW0gPSBpdGVtO1xuICAgIHRoaXMuaXNOYXZTaG93biA9IGZhbHNlO1xuICAgIHRoaXMuc2VsZWN0ZWROYXYuZW1pdChpdGVtLnRpdGxlKTtcbiAgICB0aGlzLnNlbGVjdGVkQ29tcGFueUlkLmVtaXQoaXRlbS5jb21wYW55SWQpO1xuICAgIHRoaXMuc2V0U2V0dGluZ3MoKTtcbiAgfVxuXG4gIHB1YmxpYyBjbG9zZU1vZHVsZSgpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5pc05hdlNob3duKSB7XG4gICAgICB0aGlzLmlzTmF2U2hvd24gPSBmYWxzZTtcbiAgICAgIHRoaXMuaXNIYW1idXJnZXJNZW51Rm9jdXNlZCA9IGZhbHNlO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmlzUG9wdXBMaXN0U2hvd24gPSBmYWxzZTtcbiAgICAgIHRoaXMuaXNQb3B1cE1vZHVsZVNob3duID0gZmFsc2U7XG4gICAgICB0aGlzLmlzTmF2U2hvd24gPSBmYWxzZTtcbiAgICAgIHRoaXMuaXNIYW1idXJnZXJNZW51Rm9jdXNlZCA9IGZhbHNlO1xuICAgICAgdGhpcy5pc1BpbkZvY3VzZWQgPSBmYWxzZTtcbiAgICAgIHRoaXMuc2VsZWN0ZWROYXYuZW1pdCgpO1xuICAgICAgdGhpcy5pc1Bpbm5lZC5lbWl0KGZhbHNlKTtcbiAgICB9XG4gIH1cblxuICBwdWJsaWMgdG9nZ2xlTmF2KCk6IHZvaWQge1xuICAgIHRoaXMuaXNOYXZTaG93biA9ICF0aGlzLmlzTmF2U2hvd247XG4gIH1cblxuICBwdWJsaWMgaGFtYnVyZ2VyTWVudUNsaWNrRXZlbnQoKTogdm9pZCB7fVxuXG4gIHB1YmxpYyBwaW5DbGlja0V2ZW50KCk6IHZvaWQge1xuICAgIHRoaXMuaXNIYW1idXJnZXJNZW51Rm9jdXNlZCA9IGZhbHNlO1xuICAgIHRoaXMuaXNQaW5Gb2N1c2VkID0gIXRoaXMuaXNQaW5Gb2N1c2VkO1xuICAgIHRoaXMuaXNQaW5uZWQuZW1pdCh0aGlzLmlzUGluRm9jdXNlZCk7XG4gIH1cblxuICBwdWJsaWMgdHJhY2tCeUlkZW50aXR5KGluZGV4OiBudW1iZXIpOiBudW1iZXIge1xuICAgIHJldHVybiBpbmRleDtcbiAgfVxuXG4gIHByaXZhdGUgc2V0U2V0dGluZ3MoKTogdm9pZCB7XG4gICAgc3dpdGNoICh0aGlzLnNlbGVjdGVkTW9kdWxlSXRlbT8udGl0bGUpIHtcbiAgICAgIGNhc2UgU2VsZWN0ZWRNb2R1bGUuQUNUSVZJVFlfTE9HOlxuICAgICAgICB0aGlzLmhhdmVNZW51ID0gZmFsc2U7XG4gICAgICAgIGJyZWFrO1xuICAgICAgY2FzZSBTZWxlY3RlZE1vZHVsZS5DT01QQU5ZX0lORk86XG4gICAgICAgIHRoaXMuaGF2ZU1lbnUgPSBmYWxzZTtcbiAgICAgICAgYnJlYWs7XG4gICAgICBjYXNlIFNlbGVjdGVkTW9kdWxlLkRJVklTSU9OX0lORk86XG4gICAgICAgIHRoaXMuaGF2ZU1lbnUgPSBmYWxzZTtcbiAgICAgICAgYnJlYWs7XG4gICAgICBkZWZhdWx0OlxuICAgICAgICB0aGlzLmhhdmVNZW51ID0gdHJ1ZTtcbiAgICAgICAgYnJlYWs7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBzZXRTZWxlY3RlZENvbXBhbnkoY29tcGFueUlkOiBudW1iZXIpOiB2b2lkIHtcbiAgICBjb25zdCBzZWxlY3RlZE1vZHVsZUl0ZW0gPSB0aGlzLml0ZW1MaXN0LmZpbmQoXG4gICAgICAoaXRlbSkgPT4gaXRlbS5jb21wYW55SWQgPT09IGNvbXBhbnlJZFxuICAgICk7XG4gICAgaWYgKHNlbGVjdGVkTW9kdWxlSXRlbSkgdGhpcy5zZWxlY3RlZE1vZHVsZUl0ZW0gPSBzZWxlY3RlZE1vZHVsZUl0ZW07XG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJzaWRlLXBhbmVsLXJpZ2h0LWNvbnRhaW5lci1ib3hcIj5cbiAgICBAaWYgKCFpc1BvcHVwTW9kdWxlU2hvd24pIHtcbiAgICAgICAgPGRpdlxuICAgICAgICAgICAgKG1vdXNlbGVhdmUpPVwiY2xvc2VNZW51KClcIlxuICAgICAgICAgICAgY2xhc3M9XCJzaWRlLXBhbmVsLXJpZ2h0LWJ1dHRvbi1jb250YWluZXItYm94IGQtZmxleCBmbGV4LWNvbHVtbiBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyIGFsaWduLWl0ZW1zLWNlbnRlclwiXG4gICAgICAgICAgICBbbmdDbGFzc109XCJcbiAgICAgICAgICAgICAgICBpc1BvcHVwTGlzdFNob3duICYmICFpc1BvcHVwTW9kdWxlU2hvd25cbiAgICAgICAgICAgICAgICAgICAgPyAnc2lkZS1wYW5lbC1yaWdodC1idXR0b24tY29udGFpbmVyLWJveC1hY3RpdmUnXG4gICAgICAgICAgICAgICAgICAgIDogJydcbiAgICAgICAgICAgIFwiXG4gICAgICAgID5cbiAgICAgICAgICAgIEBpZiAoaXNQb3B1cExpc3RTaG93biAmJiAhaXNQb3B1cE1vZHVsZVNob3duKSB7XG4gICAgICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInNpZGUtcGFuZWwtbGlzdC1jb250YWluZXItYm94IGQtZmxleCBmbGV4LWNvbHVtbiBhbGlnbi1pdGVtcy1jZW50ZXJcIlxuICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAgQGZvciAoaXRlbSBvZiBpdGVtTGlzdDsgdHJhY2sgaXRlbS50aXRsZSkge1xuICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInNpZGUtcGFuZWwtbGlzdC1jb250YWluZXJcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwiaXRlbS1jb250YWluZXIgZC1mbGV4XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cIml0ZW1DbGlja0V2ZW50KGl0ZW0pXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW21haW5DYVRvb2x0aXBdPVwiaXRlbS5jb21wYW55TmFtZSA/PyBpdGVtLnRpdGxlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBwb3NpdGlvbj1cImxlZnRcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0b29sdGlwQmFja2dyb3VuZD1cIiM0MjQyNDJcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0b29sdGlwVGV4dEFsaWduPVwiY2VudGVyXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzdmctaWNvblxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW3NyY109XCJpdGVtLmljb25cIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJpdGVtLWljb25cIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA+PC9zdmctaWNvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgICAgICAgICAgQGlmIChpdGVtLmlzTGFzdEluTGlzdCkge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJob3Jpem9udGFsLWxpbmVcIj48L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgfVxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInNpZGUtcGFuZWwtcmlnaHQtY29udGFpbmVyXCIgKG1vdXNlZW50ZXIpPVwib3Blbk1lbnUoKVwiPlxuICAgICAgICAgICAgICAgIDxzdmctaWNvblxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInNpZGUtcGFuZWwtcmlnaHQtaWNvbiBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIlxuICAgICAgICAgICAgICAgICAgICBbc3JjXT1cIidpY19zaWRlLXBhbmVsLXJpZ2h0JyB8IGNhU3ZnOiAnY29tbW9uJ1wiXG4gICAgICAgICAgICAgICAgICAgIFtzdmdTdHlsZV09XCJ7ICd3aWR0aC5weCc6IDE4LCAnaGVpZ2h0LnB4JzogMTUuNzUgfVwiXG4gICAgICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG4gICAgfVxuXG4gICAgQGlmIChpc05hdlNob3duKSB7XG4gICAgICAgIDxkaXYgY2xhc3M9XCJzaWRlLXBhbmVsLW5hdi1jb250YWluZXItYm94IGQtZmxleCBmbGV4LWNvbHVtblwiPlxuICAgICAgICAgICAgQGZvciAoaXRlbSBvZiBpdGVtTGlzdDsgdHJhY2sgaXRlbS50aXRsZSkge1xuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJuYXYtbGlzdC1jb250YWluZXJcIj5cbiAgICAgICAgICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJuYXYtaXRlbS1jb250YWluZXIgZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlclwiXG4gICAgICAgICAgICAgICAgICAgICAgICAoY2xpY2spPVwibmF2SXRlbUNsaWNrRXZlbnQoaXRlbSlcIlxuICAgICAgICAgICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwie1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICdzZWxlY3RlZC1pdGVtJzpcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgc2VsZWN0ZWRNb2R1bGVJdGVtPy50aXRsZSA9PSBpdGVtLnRpdGxlICYmXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHNlbGVjdGVkTW9kdWxlSXRlbT8uY29tcGFueU5hbWUgPT1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGl0ZW0uY29tcGFueU5hbWUsXG4gICAgICAgICAgICAgICAgICAgICAgICB9XCJcbiAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgPHN2Zy1pY29uXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgW3NyY109XCJpdGVtLmljb25cIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwibmF2LWl0ZW0taWNvbiBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtzdmdTdHlsZV09XCJ7ICd3aWR0aC5weCc6IDE4LCAnaGVpZ2h0LnB4JzogMTggfVwiXG4gICAgICAgICAgICAgICAgICAgICAgICA+PC9zdmctaWNvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxwXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJuYXYtaXRlbS10aXRsZSBjYS1mb250LW1lZGl1bVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwie1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAnY2EtZm9udC1ib2xkJzpcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHNlbGVjdGVkTW9kdWxlSXRlbT8udGl0bGUgPT0gaXRlbS50aXRsZSAmJlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgc2VsZWN0ZWRNb2R1bGVJdGVtPy5jb21wYW55TmFtZSA9PVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGl0ZW0uY29tcGFueU5hbWUsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAge3sgaXRlbS5jb21wYW55TmFtZSA/PyBpdGVtLnRpdGxlIH19XG4gICAgICAgICAgICAgICAgICAgICAgICA8L3A+XG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgIEBpZiAoaXRlbS5pc0xhc3RJbkxpc3QpIHtcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImhvcml6b250YWwtbGluZVwiPjwvZGl2PlxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgPC9kaXY+XG4gICAgfVxuXG4gICAgQGlmIChpc1BvcHVwTW9kdWxlU2hvd24gJiYgIWlzUG9wdXBMaXN0U2hvd24pIHtcbiAgICAgICAgPGRpdlxuICAgICAgICAgICAgY2xhc3M9XCJzaWRlLXBhbmVsLXJpZ2h0LW1vZHVsZS1jb250YWluZXIgZC1mbGV4IGp1c3RpZnktY29udGVudC1iZXR3ZWVuXCJcbiAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgJ25hdi1vcGVuJzogaXNOYXZTaG93biB9XCJcbiAgICAgICAgPlxuICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgIGNsYXNzPVwibW9kdWxlLXRpdGxlLWNvbnRhaW5lciBkLWZsZXhcIlxuICAgICAgICAgICAgICAgIChjbGljayk9XCJ0b2dnbGVOYXYoKVwiXG4gICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwieyAnbmF2LW9wZW4nOiBpc05hdlNob3duIH1cIlxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJtb2R1bGUtaWNvbi1jb250YWluZXJcIj5cbiAgICAgICAgICAgICAgICAgICAgPHN2Zy1pY29uXG4gICAgICAgICAgICAgICAgICAgICAgICBbc3JjXT1cInNlbGVjdGVkTW9kdWxlSXRlbS5pY29uXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwibW9kdWxlLWljb25cIlxuICAgICAgICAgICAgICAgICAgICAgICAgW3N2Z1N0eWxlXT1cInsgJ3dpZHRoLnB4JzogMTYuMiwgJ2hlaWdodC5weCc6IDE2LjIgfVwiXG4gICAgICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAgPC9zdmctaWNvbj5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICA8cCBjbGFzcz1cIm1vZHVsZS10aXRsZS10ZXh0IGNhLWZvbnQtZXh0cmEtYm9sZFwiPlxuICAgICAgICAgICAgICAgICAgICB7eyBzZWxlY3RlZE1vZHVsZUl0ZW0/LnRpdGxlIH19XG4gICAgICAgICAgICAgICAgPC9wPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwibW9kdWxlLWljb25zLWNvbnRhaW5lciBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyXCI+XG4gICAgICAgICAgICAgICAgQGlmICghaXNOYXZTaG93bikge1xuICAgICAgICAgICAgICAgICAgICBAaWYgKGhhdmVNZW51KSB7XG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJpY29uXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBuZ2JUb29sdGlwXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgbWFpbkNhVG9vbHRpcD1cInt7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGlzTmF2U2hvd24gPyAnQ2xvc2UgbWVudScgOiAnT3BlbiBtZW51J1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIH19XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBwb3NpdGlvbj1cInRvcFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgdG9vbHRpcEJhY2tncm91bmQ9XCJ7e1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBpc05hdlNob3duID8gJyNDQ0NDQ0MnIDogJyMyRjJGMkYnXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgfX1cIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRvb2x0aXBDb2xvcj1cInt7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGlzTmF2U2hvd24gPyAnIzJGMkYyRicgOiAnI0ZGRkZGRidcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9fVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgdG9vbHRpcFRleHRBbGlnbj1cImNlbnRlclwiXG4gICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPHN2Zy1pY29uXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtzcmNdPVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAnaWNfaGFtYnVyZ2VyX21lbnUnXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfCBjYVN2ZzogJ3JpZ2h0LXNpZGUtcGFuZWwnXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwibW9kdWxlLXJpZ2h0LWljb24gZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW3N2Z1N0eWxlXT1cIntcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICd3aWR0aC5weCc6IDE2LjIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAnaGVpZ2h0LnB4JzogMTYuMixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgZm9jdXNlZDogaXNIYW1idXJnZXJNZW51Rm9jdXNlZCB9XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cImhhbWJ1cmdlck1lbnVDbGlja0V2ZW50KClcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgID48L3N2Zy1pY29uPlxuICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJpY29uXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIG5nYlRvb2x0aXBcbiAgICAgICAgICAgICAgICAgICAgICAgIG1haW5DYVRvb2x0aXA9XCJ7e1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGlzUGluRm9jdXNlZCA/ICdVbnBpbiBTaWRlYmFyJyA6ICdQaW4gU2lkZWJhcidcbiAgICAgICAgICAgICAgICAgICAgICAgIH19XCJcbiAgICAgICAgICAgICAgICAgICAgICAgIHBvc2l0aW9uPVwidG9wXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIHRvb2x0aXBCYWNrZ3JvdW5kPVwiIzQyNDI0MlwiXG4gICAgICAgICAgICAgICAgICAgICAgICB0b29sdGlwQ29sb3I9XCIjRkZGRkZGXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIHRvb2x0aXBUZXh0QWxpZ249XCJjZW50ZXJcIlxuICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBbc3JjXT1cIidpY19waW4nIHwgY2FTdmc6ICdyaWdodC1zaWRlLXBhbmVsJ1wiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJtb2R1bGUtcmlnaHQtaWNvbiBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtzdmdTdHlsZV09XCJ7ICd3aWR0aC5weCc6IDE2LjIsICdoZWlnaHQucHgnOiAxNi4yIH1cIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgZm9jdXNlZDogaXNQaW5Gb2N1c2VkIH1cIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIChjbGljayk9XCJwaW5DbGlja0V2ZW50KClcIlxuICAgICAgICAgICAgICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwidmVydGljYWwtbGluZVwiPjwvZGl2PlxuICAgICAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJpY29uXCJcbiAgICAgICAgICAgICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgICAgICAgICAgICBtYWluQ2FUb29sdGlwPVwiQ2xvc2VcIlxuICAgICAgICAgICAgICAgICAgICBwb3NpdGlvbj1cInRvcFwiXG4gICAgICAgICAgICAgICAgICAgIHRvb2x0aXBCYWNrZ3JvdW5kPVwiIzQyNDI0MlwiXG4gICAgICAgICAgICAgICAgICAgIHRvb2x0aXBDb2xvcj1cIiNGRkZGRkZcIlxuICAgICAgICAgICAgICAgICAgICB0b29sdGlwVGV4dEFsaWduPVwiY2VudGVyXCJcbiAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgIDxzdmctaWNvblxuICAgICAgICAgICAgICAgICAgICAgICAgW3NyY109XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAoaXNOYXZTaG93blxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA/ICdpY19hcnJvd19wcmltYXJ5X3VwJ1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA6ICdpY19hcnJvd19wcmltYXJ5X3JpZ2h0J1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICkgfCBjYVN2ZzogJ3JpZ2h0LXNpZGUtcGFuZWwnXG4gICAgICAgICAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJtb2R1bGUtcmlnaHQtaWNvbiBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXJcIlxuICAgICAgICAgICAgICAgICAgICAgICAgW3N2Z1N0eWxlXT1cInsgJ3dpZHRoLnB4JzogMTYuMiwgJ2hlaWdodC5weCc6IDE2LjIgfVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAoY2xpY2spPVwiY2xvc2VNb2R1bGUoKVwiXG4gICAgICAgICAgICAgICAgICAgID48L3N2Zy1pY29uPlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgIH1cbjwvZGl2PlxuIl19
@@ -101,7 +101,7 @@ export class CaTodoCardComponent {
101
101
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaTodoCardComponent, deps: [{ token: i1.FileService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
102
102
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CaTodoCardComponent, isStandalone: true, selector: "app-ca-todo-card", inputs: { config: "config", commentConfig: "commentConfig", newCommentConfig: "newCommentConfig", configProgress: "configProgress", isVisibleCropAndDrop: "isVisibleCropAndDrop", hasCrop: "hasCrop", slider: "slider", carouselConfig: "carouselConfig", review: "review", configFile: "configFile", files: "files", configDropzone: "configDropzone" }, outputs: { onFileEvent: "onFileEvent" }, providers: [FileService], viewQueries: [{ propertyName: "modalCarousel", first: true, predicate: CaUploadFilesCarouselComponent, descendants: true }], ngImport: i0, template: "<div class=\"todo-container\">\n <div class=\"todo-content d-grid\">\n <!--Header-->\n <div\n class=\"todo-header d-flex align-items-center justify-content-between\"\n >\n <div class=\"title-container\">\n <div class=\"title\">{{ config.title }}</div>\n </div>\n\n <!--SVG Icons-->\n <div class=\"svg-container d-flex\">\n <div\n class=\"icon-box\"\n [tooltipBackground]=\"'#424242'\"\n ngbTooltip\n [mainCaTooltip]=\"config.link ? 'Hyperlink' : 'No Hyperlink'\"\n position=\"bottom\"\n (click)=\"addLink()\"\n [ngClass]=\"{\n 'icon-active': !isLinkVisible && config.link,\n 'icon-has-link d-flex align-items-center justify-content-center':\n config.link,\n 'icon-without-link': !config.link,\n }\"\n >\n <svg-icon class=\"icon\" [src]=\"svgTodo.web\"></svg-icon>\n </div>\n <div\n class=\"icon-box\"\n [tooltipBackground]=\"'#424242'\"\n ngbTooltip\n [mainCaTooltip]=\"\n files.length ? 'Attachment' : 'No Attachment'\n \"\n position=\"bottom\"\n (click)=\"toggleDocument()\"\n [ngClass]=\"{\n 'icon-active': isDocumentVisible && files.length,\n 'icon-has-link d-flex align-items-center justify-content-center':\n files.length,\n 'icon-without-link': !files.length,\n }\"\n [ngStyle]=\"{\n 'pointer-events': files.length ? 'auto' : 'none',\n }\"\n >\n <svg-icon\n class=\"icon\"\n [src]=\"svgTodo.attachment\"\n ></svg-icon>\n </div>\n <div\n class=\"icon-box\"\n [tooltipBackground]=\"'#424242'\"\n ngbTooltip\n [mainCaTooltip]=\"\n commentConfig.length ? 'Comment' : 'No Comment'\n \"\n position=\"bottom\"\n (click)=\"toggleComments()\"\n [ngClass]=\"{\n 'icon-active':\n isCommentsVisible && commentConfig.length,\n 'icon-has-link d-flex align-items-center justify-content-center':\n commentConfig.length,\n 'icon-without-link': !commentConfig.length,\n }\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"18\"\n height=\"18\"\n viewBox=\"26 26\"\n >\n <g\n id=\"Comment_-_Count\"\n data-name=\"Comment - Count\"\n transform=\"translate(0.5 2.5)\"\n >\n <path\n id=\"Path_10563\"\n data-name=\"Path 10563\"\n d=\"M963.974,510.676H950.584a2.274,2.274,0,0,0-2.305,2.237v10.5a2.274,2.274,0,0,0,2.305,2.237h.82l1.574,2.645a.792.792,0,0,0,1.351,0l1.574-2.645h8.07a2.275,2.275,0,0,0,2.305-2.237v-10.5a2.274,2.274,0,0,0-2.305-2.237\"\n transform=\"translate(-948.279 -512.676)\"\n fill=\"#aaa\"\n stroke=\"rgba(0,0,0,0)\"\n stroke-width=\"1\"\n />\n </g>\n <text\n x=\"50%\"\n y=\"50%\"\n dominant-baseline=\"middle\"\n text-anchor=\"middle\"\n id=\"_1\"\n data-name=\"1\"\n fill=\"#fff\"\n font-size=\"9\"\n font-family=\"Montserrat-Bold, Montserrat\"\n font-weight=\"600\"\n >\n <tspan class=\"number-comments\">\n {{ commentCounter }}\n </tspan>\n </text>\n </svg>\n </div>\n </div>\n </div>\n\n <!--Body-->\n <div class=\"todo-body d-flex flex-column\">\n <div class=\"everybody-container d-flex align-items-center\">\n <ng-container\n *ngIf=\"!config.imageProfiles?.length; else showProfiles\"\n >\n <div class=\"asignee-everybody\">\n <p class=\"asignee-everybody-p\">Everybody</p>\n </div>\n </ng-container>\n </div>\n\n <ng-template #showProfiles>\n <div class=\"asignee-images-container d-flex align-items-center\">\n <!--Asigment-->\n <ng-container *ngIf=\"config.assigment\">\n <ng-container\n *ngFor=\"\n let item of config.assigment;\n trackBy: identity\n \"\n >\n <div\n class=\"asignee\"\n [ngClass]=\"{ 'asignee-list': config.assigment }\"\n >\n <p\n [ngClass]=\"{\n 'asignee-item': config.assigment,\n }\"\n >\n {{ item }}\n </p>\n </div>\n </ng-container>\n </ng-container>\n\n <!--Images-->\n <div\n class=\"images-container d-flex align-items-center flex-row\"\n >\n <ng-container\n *ngFor=\"\n let profile of config.imageProfiles;\n trackBy: identity\n \"\n >\n <div class=\"image\">\n <app-ca-profile-image\n [indx]=\"profile.indx\"\n [textShortName]=\"profile.textShortName\"\n [avatarColor]=\"profile.avatarColor\"\n ></app-ca-profile-image>\n </div>\n </ng-container>\n </div>\n </div>\n </ng-template>\n\n <!--Description-->\n <div class=\"description-container d-flex\">\n <p class=\"description\">{{ config.description }}</p>\n </div>\n\n <!--Link-->\n <ng-container *ngIf=\"!isLinkVisible\">\n <div\n class=\"link-container\"\n [@showHideCardBody]=\"!isLinkVisible\"\n >\n <a\n class=\"link\"\n [href]=\"link\"\n style=\"text-decoration: none\"\n target=\"_blank\"\n >{{ link }}</a\n >\n </div>\n </ng-container>\n\n <!--Progress expiration-->\n <div class=\"progress-expiration\">\n <lib-ca-progress-expiration\n [config]=\"configProgress\"\n ></lib-ca-progress-expiration>\n </div>\n </div>\n\n <!--Documents and Comments-->\n <div class=\"todo-actions\">\n <!--Line-->\n <ng-container *ngIf=\"isDocumentVisible\">\n <div class=\"border-container\">\n <div class=\"border-line\"></div>\n </div>\n\n <!--Documents-->\n <div class=\"comment-header-container\">\n <div\n class=\"comment-title-content d-flex justify-content-between\"\n >\n <div class=\"comment-title d-flex align-items-center\">\n <p>Documents</p>\n <span\n class=\"counter d-flex align-items-center justify-content-center\"\n >{{ documentCounter }}</span\n >\n </div>\n <div class=\"comment-svg\">\n <svg-icon\n [src]=\"svgTodo.upload\"\n (click)=\"saveAllFiles()\"\n ></svg-icon>\n </div>\n </div>\n </div>\n\n <!-- Container for carousel with all files -->\n <div\n class=\"upload-section\"\n [@showHideCardBody]=\"isDocumentVisible\"\n >\n <app-ca-upload-files\n [files]=\"files\"\n [slider]=\"slider\"\n [review]=\"review\"\n [configFile]=\"configFile\"\n [carouselConfig]=\"carouselConfig\"\n [isVisibleCropAndDrop]=\"isVisibleCropAndDrop\"\n [hasCrop]=\"hasCrop\"\n ></app-ca-upload-files>\n </div>\n </ng-container>\n\n <!--Line-->\n <ng-container *ngIf=\"isCommentsVisible\">\n <div class=\"border-container\">\n <div class=\"border-line\"></div>\n </div>\n\n <!--Comments-->\n <div class=\"comment-header-container\">\n <div\n class=\"comment-title-content d-flex justify-content-between\"\n >\n <div class=\"comment-title d-flex align-items-center\">\n <p>Comment</p>\n <span\n class=\"counter d-flex align-items-center justify-content-center\"\n >{{ commentCounter }}</span\n >\n </div>\n\n <div class=\"comment-svg\">\n <svg-icon\n [src]=\"svgTodo.plus\"\n (click)=\"toggleNewComment()\"\n ></svg-icon>\n </div>\n </div>\n </div>\n\n <ng-container\n *ngFor=\"let item of commentConfig; trackBy: identity\"\n >\n <div\n class=\"comment-body\"\n [@showHideCardBody]=\"isCommentsVisible\"\n >\n <div class=\"comment\">\n <app-ca-comment [config]=\"item\"></app-ca-comment>\n </div>\n </div>\n </ng-container>\n\n <!--New Comment-->\n <ng-container *ngIf=\"isNewComment\">\n <ng-container\n *ngFor=\"let item of newCommentConfig; trackBy: identity\"\n >\n <div\n class=\"comment-body\"\n [@showHideCardBody]=\"isCommentsVisible\"\n >\n <div class=\"comment\">\n <app-ca-comment\n [config]=\"item\"\n ></app-ca-comment>\n </div>\n </div>\n </ng-container>\n </ng-container>\n </ng-container>\n </div>\n </div>\n</div>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium,.todo-container .todo-content .todo-body .link-container .link{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold,.todo-container .todo-content .todo-actions .comment-header-container .comment-title-content .comment-title .counter,.todo-container .todo-content .todo-body .asignee-images-container .asignee p,.todo-container .todo-content .todo-body .asignee-everybody .asignee-everybody-p,.todo-container .todo-content .todo-header .title-container .title{font-weight:700!important}.ca-font-extra-bold,.todo-container .todo-content .todo-actions .comment-header-container .comment-title-content .comment-title p{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.cdk-drag-preview{background-color:#fff;border-radius:3px;box-shadow:0 0 6px #0000004d;z-index:1000}.todo-container{border-radius:3px}.todo-container .todo-content{cursor:grab}.todo-container .todo-content .todo-header{padding:6px 4px 0 6px}.todo-container .todo-content .todo-header .title-container{padding:4px 4px 4px 6px}.todo-container .todo-content .todo-header .title-container .title{font-family:Montserrat,sans-serif;font-size:14px;line-height:18px;color:#424242}.todo-container .todo-content .todo-header .svg-container{cursor:pointer;gap:4px}.todo-container .todo-content .todo-header .svg-container .icon-box .icon-without-link svg path{fill:#ccc}.todo-container .todo-content .todo-header .svg-container .icon-box.icon-has-link{width:26px;height:26px}.todo-container .todo-content .todo-header .svg-container .icon-box.icon-has-link svg path{fill:#919191}.todo-container .todo-content .todo-header .svg-container .icon-box.icon-has-link svg path:nth-of-type(2){fill:#fff!important}.todo-container .todo-content .todo-header .svg-container .icon-box.icon-has-link:not(.icon-active):hover{background-color:#eee;border-radius:2px}.todo-container .todo-content .todo-header .svg-container .icon-box.icon-has-link:not(.icon-active):hover svg path{fill:#424242}.todo-container .todo-content .todo-header .svg-container .icon-box.icon-has-link:not(.icon-active):hover svg path:nth-of-type(2){fill:#fff!important}.todo-container .todo-content .todo-header .svg-container .icon-box.icon-active{background-color:#e9effd}.todo-container .todo-content .todo-header .svg-container .icon-box.icon-active svg path{fill:#6692f1}.todo-container .todo-content .todo-header .svg-container .icon-box.icon-active svg path:nth-of-type(2){fill:#fff!important}.todo-container .todo-content .todo-header .svg-container .icon-box:focus.icon-active{background-color:#e9effd}.todo-container .todo-content .todo-header .svg-container .icon{height:26px;width:26px;border-radius:2px}.todo-container .todo-content .todo-body{padding:0 6px 8px 12px;gap:8px}.todo-container .todo-content .todo-body .asignee-everybody{background-color:#e9effd;padding:2px 6px;border-radius:2px;height:18px;margin:4px 2px}.todo-container .todo-content .todo-body .asignee-everybody .asignee-everybody-p{font-size:11px;line-height:14px;font-family:Montserrat,sans-serif;color:#3b73ed}.todo-container .todo-content .todo-body .asignee-images-container .asignee{background-color:#e9effd;padding:2px 6px;border-radius:2px;height:18px}.todo-container .todo-content .todo-body .asignee-images-container .asignee.asignee-list{background-color:#eee;margin:2px}.todo-container .todo-content .todo-body .asignee-images-container .asignee p{font-size:11px;line-height:14px;font-family:Montserrat,sans-serif;color:#3b73ed}.todo-container .todo-content .todo-body .asignee-images-container .asignee p.asignee-item{color:#424242}.todo-container .todo-content .todo-body .asignee-images-container .images-container{margin-left:8px;height:30px}.todo-container .todo-content .todo-body .description-container{width:578.67px;gap:10px}.todo-container .todo-content .todo-body .description-container .description{font-size:14px;line-height:18px}.todo-container .todo-content .todo-body .progress-expiration{width:100%}.todo-container .todo-content .todo-body .link-container{transition:max-height .3s ease-in-out,opacity .3s ease-in-out}.todo-container .todo-content .todo-body .link-container .link{font-family:Montserrat,sans-serif;font-size:14px;line-height:18px}.todo-container .todo-content .todo-actions{margin-bottom:8px}.todo-container .todo-content .todo-actions .border-container{padding:4px 2px}.todo-container .todo-content .todo-actions .border-container .border-line{border:1px solid #dadada;width:100%}.todo-container .todo-content .todo-actions .comment-header-container,.todo-container .todo-content .todo-actions .comment-header-container .comment-title-content{padding:0 0 0 6px}.todo-container .todo-content .todo-actions .comment-header-container .comment-title-content .comment-title{font-family:Montserrat,sans-serif;gap:4px}.todo-container .todo-content .todo-actions .comment-header-container .comment-title-content .comment-title p{font-size:14px;line-height:18px;color:#424242}.todo-container .todo-content .todo-actions .comment-header-container .comment-title-content .comment-title .counter{color:#fff;background-color:#6c6c6c;width:18px;height:18px;border-radius:60px;font-size:11px;line-height:14px}.todo-container .todo-content .todo-actions .comment-body{padding:4px 0 4px 6px}.todo-container .todo-content .todo-actions .upload-section{padding:6px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "component", type: i3.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "ngmodule", type: HttpClientModule }, { kind: "directive", type: NgbTooltip, selector: "[ngbTooltip]", inputs: ["animation", "autoClose", "placement", "popperOptions", "triggers", "positionTarget", "container", "disableTooltip", "tooltipClass", "tooltipContext", "openDelay", "closeDelay", "ngbTooltip"], outputs: ["shown", "hidden"], exportAs: ["ngbTooltip"] }, { kind: "ngmodule", type: NgbModule }, { kind: "component", type:
103
103
  //Components
104
- CaProfileImageComponent, selector: "app-ca-profile-image", inputs: ["indx", "avatarImg", "avatarColor", "textShortName", "name", "isRound", "size", "height", "fontSize", "isHoverEffect"] }, { kind: "component", type: CaProgressExpirationComponent, selector: "lib-ca-progress-expiration", inputs: ["config"] }, { kind: "component", type: CaUploadFilesComponent, selector: "app-ca-upload-files", inputs: ["files", "slider", "carouselConfig", "hasCrop", "isRoundCrop", "hasBlobUrl", "onlyOneTagFile", "dropzoneConf", "dropzoneCustomWidth", "isVisibleCropAndDrop", "initialCropperPosition", "containWithinAspectRatio", "aspectRatio", "review", "configFile", "size", "slideWidth"], outputs: ["documentReviewInputEvent", "onFileEvent", "closeDropzone", "fileAdded"] }, { kind: "component", type: CaAppTooltipV2Component, selector: "mainCaTooltip, [mainCaTooltip]", inputs: ["mainCaTooltip", "position", "openTooltipDelay", "tooltipBackground", "tooltipColor", "tooltipTextAlign", "tooltipMarginTop", "disableTooltip"] }, { kind: "component", type: CaCommentComponent, selector: "app-ca-comment", inputs: ["config"], outputs: ["onSave", "onUpdate", "onDelete"] }], animations: [cardComponentAnimation('showHideCardBody')], encapsulation: i0.ViewEncapsulation.None }); }
104
+ CaProfileImageComponent, selector: "app-ca-profile-image", inputs: ["indx", "avatarImg", "avatarColor", "textShortName", "name", "isRound", "size", "height", "fontSize", "isHoverEffect"] }, { kind: "component", type: CaProgressExpirationComponent, selector: "lib-ca-progress-expiration", inputs: ["config"] }, { kind: "component", type: CaUploadFilesComponent, selector: "app-ca-upload-files", inputs: ["slider", "carouselConfig", "hasCrop", "isRoundCrop", "hasBlobUrl", "onlyOneTagFile", "dropzoneConf", "dropzoneCustomWidth", "isVisibleCropAndDrop", "initialCropperPosition", "containWithinAspectRatio", "aspectRatio", "review", "configFile", "size", "slideWidth", "files"], outputs: ["documentReviewInputEvent", "onFileEvent", "closeDropzone", "fileAdded"] }, { kind: "component", type: CaAppTooltipV2Component, selector: "mainCaTooltip, [mainCaTooltip]", inputs: ["mainCaTooltip", "position", "openTooltipDelay", "tooltipBackground", "tooltipColor", "tooltipTextAlign", "tooltipMarginTop", "disableTooltip"] }, { kind: "component", type: CaCommentComponent, selector: "app-ca-comment", inputs: ["config"], outputs: ["onSave", "onUpdate", "onDelete"] }], animations: [cardComponentAnimation('showHideCardBody')], encapsulation: i0.ViewEncapsulation.None }); }
105
105
  }
106
106
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaTodoCardComponent, decorators: [{
107
107
  type: Component,