ca-components 1.7.993 → 1.7.994

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.
@@ -14,6 +14,7 @@ import { InputAddressStopTypesStringEnum } from './enums/input-address-stop-type
14
14
  import { InputAddressTypeStringEnum } from './enums/input-address-type-string.enum';
15
15
  import { InputAddressLayersStringEnum } from './enums/input-address-layers-string.enum';
16
16
  import { eInputBasicString } from './enums/input-address-basic-string.enum';
17
+ import { eSharedString } from '../../enums';
17
18
  import { CaAppTooltipV2Component } from '../ca-app-tooltip-v2/ca-app-tooltip-v2.component';
18
19
  import { HttpClientModule } from '@angular/common/http';
19
20
  import * as i0 from "@angular/core";
@@ -56,14 +57,30 @@ export class CaInputAddressDropdownComponent {
56
57
  set receivedAddressList(value) {
57
58
  this._receivedAddressList = value;
58
59
  if (value?.addresses) {
60
+ let parkingAddressesList = [];
59
61
  this.addresList = value.addresses.map((item, indx) => {
62
+ const parkingAddress = this.template === eSharedString.PARKING_LOWERCASE &&
63
+ this._parkingList?.length
64
+ ? this.filterParkingByCity(item)
65
+ : null;
66
+ if (parkingAddress?.length)
67
+ parkingAddressesList.push({
68
+ name: item,
69
+ id: indx,
70
+ parkingAddress,
71
+ });
60
72
  return {
61
73
  name: item,
62
74
  id: indx,
63
75
  };
64
76
  });
77
+ this.addresList = [...parkingAddressesList, ...this.addresList];
65
78
  }
66
79
  }
80
+ set parkingList(value) {
81
+ // leave any need backend for this
82
+ this._parkingList = value;
83
+ }
67
84
  handleKeyboardEvent(event) {
68
85
  const key = event.key;
69
86
  if (this.inputConfig.name == InputAddressTypeStringEnum.ROUTING_ADDRESS) {
@@ -99,6 +116,7 @@ export class CaInputAddressDropdownComponent {
99
116
  this.requestSent = false;
100
117
  this._receivedAddressList = null;
101
118
  this._activeAddress = null;
119
+ this._parkingList = null; //leave any for now
102
120
  this.destroy$ = new Subject();
103
121
  this.superControl.valueAccessor = this;
104
122
  }
@@ -315,12 +333,23 @@ export class CaInputAddressDropdownComponent {
315
333
  const streetNum = /\d/;
316
334
  return streetNum.test(address) ? true : false;
317
335
  }
336
+ filterParkingByCity(searchString) {
337
+ const formattedSearchString = searchString
338
+ .trim()
339
+ .replace(/\s*,\s*/g, ', ');
340
+ const isParking = this._parkingList.filter((parking) => {
341
+ const { city, stateShortName, country } = parking.address || {};
342
+ const formattedAddress = `${city}, ${stateShortName}, ${country}`;
343
+ return formattedAddress === formattedSearchString;
344
+ });
345
+ return isParking;
346
+ }
318
347
  ngOnDestroy() {
319
348
  this.destroy$.next();
320
349
  this.destroy$.complete();
321
350
  }
322
351
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputAddressDropdownComponent, deps: [{ token: i1.NgControl, self: true }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
323
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaInputAddressDropdownComponent, isStandalone: true, selector: "app-ca-input-address-dropdown", inputs: { placeholderType: "placeholderType", activeAddress: "activeAddress", receivedAddressData: "receivedAddressData", receivedAddressList: "receivedAddressList", inputConfig: "inputConfig", commandHandler: "commandHandler", isRouting: "isRouting", closedBorder: "closedBorder", incorrectValue: "incorrectValue", hideEmptyLoaded: "hideEmptyLoaded", addresList: "addresList", template: "template" }, outputs: { sentAddressValue: "sentAddressValue", selectedAddress: "selectedAddress", sentAddressData: "sentAddressData", closeDropdown: "closeDropdown", commandEvent: "commandEvent", changeFlag: "changeFlag", incorrectEvent: "incorrectEvent" }, host: { listeners: { "document:keydown": "handleKeyboardEvent($event)" } }, viewQueries: [{ propertyName: "inputDropdown", first: true, predicate: ["inputDropdown"], descendants: true }], ngImport: i0, template: "<div class=\"address_holder d-flex align-items-center\" (click)=\"addressExpand()\">\n <div\n class=\"main_address_holder\"\n [ngClass]=\"{\n input_for_routing: isRouting,\n not_expanded: isRouting && !addressExpanded,\n expanded_address: isRouting && addressExpanded,\n }\"\n >\n <app-ca-input-dropdown\n #inputDropdown\n [formControl]=\"getSuperControl\"\n [inputConfig]=\"inputConfig\"\n [options]=\"addresList\"\n [activeItem]=\"_activeAddress\"\n [isIncorrectValue]=\"incorrectValue\"\n [template]=\"template\"\n (incorrectEvent)=\"onIncorrectInput($event)\"\n (selectedItem)=\"onSelectDropdown($event)\"\n (closeDropdown)=\"onCloseDropdown($event)\"\n (clearInputEvent)=\"onClearInputEvent()\"\n ></app-ca-input-dropdown>\n @if (isRouting && addressExpanded && !hideEmptyLoaded) {\n <div\n class=\"stop_hold d-flex justify-content-center align-items-center\"\n (click)=\"changeStopType()\"\n >\n <div class=\"stop_text\">{{ stopType }}</div>\n </div>\n }\n </div>\n @if (isRouting && addressExpanded) {\n <div class=\"ca-input-commands address-flag d-flex align-items-center\">\n <div\n class=\"main-commands ca-input-command-first\"\n ngbTooltip\n [mainCaTooltip]=\"\n commandHandler.commands?.firstCommand?.popup?.name\n \"\n [tooltipBackground]=\"\n commandHandler.commands?.firstCommand?.popup\n ?.backgroundColor\n \"\n [disableTooltip]=\"!commandHandler.commands?.firstCommand?.popup\"\n position=\"top\"\n >\n <svg-icon\n class=\"ca-input-command-svg-first\"\n [class.allow_confirm]=\"chosenFromDropdown\"\n [src]=\"commandHandler.commands.firstCommand.svg\"\n (keydown)=\"onCommands($event, 'confirm')\"\n ></svg-icon>\n </div>\n <div\n class=\"main-commands ca-input-command-second\"\n ngbTooltip\n [mainCaTooltip]=\"\n commandHandler.commands?.secondCommand?.popup?.name\n \"\n [tooltipBackground]=\"\n commandHandler.commands?.secondCommand?.popup\n ?.backgroundColor\n \"\n [disableTooltip]=\"\n !commandHandler.commands?.secondCommand?.popup\n \"\n position=\"top\"\n >\n <svg-icon\n class=\"ca-input-command-svg-second\"\n [src]=\"commandHandler.commands.secondCommand.svg\"\n (keydown)=\"onCommands($event, 'cancel')\"\n ></svg-icon>\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}.load-pickup-delivery-popover{top:-34px!important;max-width:400px!important}.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:#fff}.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:#fff}.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:#fff}.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}.dropdown-menu-popover.bs-popover-end-top .dropdown-container{transform:translate(-4px,-3px)}.dropdown-menu-popover.bs-popover-bottom-end .dropdown-container{transform:translate(3px,-3px)}.dropdown-menu-popover.bs-popover-end-bottom .dropdown-container{transform:translate(-3px,3px)}.dropdown-menu-popover.bs-popover-top-end .dropdown-container{transform:translate(3px,3px)}.dropdown-details-title-card-popover .dropdown-container{transform:translateY(-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-color:#42424233!important;color:#424242!important}.text-color-black::selection{background-color:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-muted::selection{background-color:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green-2{color:#259f94!important}.text-color-green-2::-moz-selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-2::selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-blue-5{color:#3074d3!important}.text-color-blue-5::-moz-selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-5::selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-13::selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-16{color:#e9effd!important}.text-color-blue-16::-moz-selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-16::selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-11{color:#df3c3c!important}.text-color-red-11::-moz-selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-11::selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-yellow{color:#fab15c!important}.text-color-yellow::-moz-selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-yellow::selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-purple{color:#b370f0!important}.text-color-purple::-moz-selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-purple::selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-special-filter-purple{color:#9e47ec!important}.text-color-special-filter-purple::-moz-selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-special-filter-purple::selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-grey-9{color:#b7b7b7!important}.text-color-grey-9::-moz-selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-grey-9::selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{background-color:#ccc3!important;color:#ccc!important}.text-color-light-grey-6::selection{background-color:#ccc3!important;color:#ccc!important}.text-color-white{color:#fff!important}.text-color-white::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-white-4::selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw6-2::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{background-color:#dadada33!important;color:#dadada!important}.text-color-bw-9::selection{background-color:#dadada33!important;color:#dadada!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey::selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{background-color:#91919133!important;color:#919191!important}.text-color-orange-1{color:#ff7043!important}.text-color-orange-1::-moz-selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-1::selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-3{color:#ffb097!important}.text-color-orange-3::-moz-selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-orange-3::selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-brown-1{color:#865e3a!important}.text-color-brown-1::-moz-selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-brown-1::selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-light-blue-2{color:#1ab5e6!important}.text-color-light-blue-2::-moz-selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-color-light-blue-2::selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-hover-white{transition:color .3s ease-in-out ease-in-out}.text-hover-white:hover{color:#fff!important}.text-hover-black{transition:color .3s ease-in-out ease-in-out}.text-hover-black:hover{color:#424242!important}.text-hover-blue-15{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-15:hover{color:#0b49d1!important}.text-hover-blue-18{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-18:hover{color:#3b73ed!important}.text-hover-bw6-2{transition:color .3s ease-in-out ease-in-out}.text-hover-bw6-2:hover{color:#6c6c6c!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-20{font-size:20px!important;line-height:24px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.font-size-11{font-size:11px!important}.line-height-12{line-height:12px!important}.svg-fill-black svg path,.svg-fill-black svg circle{fill:#424242!important}.svg-fill-white svg path,.svg-fill-white svg circle{fill:#fff!important}.svg-fill-white-2 svg path,.svg-fill-white-2 svg circle{fill:#fff!important}.svg-fill-muted svg path,.svg-fill-muted svg circle{fill:#919191!important}.svg-fill-bw6-2 svg path,.svg-fill-bw6-2 svg circle{fill:#6c6c6c!important}.svg-fill-bw-9 svg path,.svg-fill-bw-9 svg circle{fill:#dadada!important}.svg-fill-light-grey-2 svg path,.svg-fill-light-grey-2 svg circle{fill:#aaa!important}.svg-fill-light-grey-6 svg path,.svg-fill-light-grey-6 svg circle{fill:#ccc!important}.svg-fill-blue-8 svg path,.svg-fill-blue-8 svg circle{fill:#6692f1!important}.svg-fill-blue-13 svg path,.svg-fill-blue-13 svg circle{fill:#6692f1!important}.svg-fill-blue-14 svg path,.svg-fill-blue-14 svg circle{fill:#3b73ed!important}.svg-fill-blue-17 svg path,.svg-fill-blue-17 svg circle{fill:#bed0f9!important}.svg-fill-blue-19 svg path,.svg-fill-blue-19 svg circle{fill:#92b1f5!important}.svg-fill-blue-26 svg path,.svg-fill-blue-26 svg circle{fill:#4dc5eb!important}.svg-fill-green svg path,.svg-fill-green svg circle{fill:#56b4ac!important}.svg-fill-green-2 svg path,.svg-fill-green-2 svg circle{fill:#259f94!important}.svg-fill-green-4 svg path,.svg-fill-green-4 svg circle{fill:#86c9c3!important}.svg-fill-green-6 svg path,.svg-fill-green-6 svg circle{fill:#77bf56!important}.svg-fill-yellow-1 svg path,.svg-fill-yellow-1 svg circle{fill:#fab15c!important}.svg-fill-yellow-4 svg path,.svg-fill-yellow-4 svg circle{fill:#fbc88b!important}.svg-fill-yellow-5 svg path,.svg-fill-yellow-5 svg circle{fill:#f89b2e!important}.svg-fill-yellow-8 svg path,.svg-fill-yellow-8 svg circle{fill:#daad4f!important}.svg-fill-white-4 svg path,.svg-fill-white-4 svg circle{fill:#ffffffb2!important}.svg-fill-grey svg path,.svg-fill-grey svg circle{fill:#919191!important}.svg-fill-red-10 svg path,.svg-fill-red-10 svg circle{fill:#e66767!important}.svg-fill-red-11 svg path,.svg-fill-red-11 svg circle{fill:#df3c3c!important}.svg-fill-red-13 svg path,.svg-fill-red-13 svg circle{fill:#ed9292!important}.svg-fill-red-14 svg path,.svg-fill-red-14 svg circle{fill:#c20c0c!important}.svg-fill-red-18 svg path,.svg-fill-red-18 svg circle{fill:#e668a0!important}.svg-fill-orange-4 svg path,.svg-fill-orange-4 svg circle{fill:#ff906d!important}.svg-fill-brown svg path,.svg-fill-brown svg circle{fill:#865e3a!important}.svg-fill-purple-4 svg path,.svg-fill-purple-4 svg circle{fill:#9e47ec!important}.svg-hover-white svg path{transition:fill .3s ease-in-out}.svg-hover-white:hover svg path{fill:#fff!important}.svg-hover-white-2 svg path{transition:fill .3s ease-in-out}.svg-hover-white-2:hover svg path{fill:#fff!important}.svg-hover-muted svg path{transition:fill .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-grey-4 svg path{transition:fill .3s ease-in-out}.svg-hover-grey-4:hover svg path{fill:#ccc!important}.svg-hover-black svg path{transition:fill .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-9 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-9:hover svg path{fill:#0b49d1!important}.svg-hover-blue-10 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-10:hover svg path{fill:#6f9ee033!important}.svg-hover-blue-15 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-blue-17 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-17:hover svg path{fill:#bed0f9!important}.svg-hover-blue-19 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-19:hover svg path{fill:#92b1f5!important}.svg-hover-bw6-2 svg path{transition:fill .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-bw-9 svg path{transition:fill .3s ease-in-out}.svg-hover-bw-9:hover svg path{fill:#dadada!important}.svg-hover-trash-red svg path{transition:fill .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:fill .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-6 svg{width:6px;height:6px}.svg-size-10 svg{width:10px;height:10px}.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-17 svg{width:17px;height:17px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-23 svg{width:23px;height:23px}.svg-size-26 svg{width:26px;height:26px}.svg-size-30-26 svg{width:30px;height:26px}.svg-size-44-16 svg{width:44px;height:16px}.svg-size-90 svg{width:90px;height:90px}.background-transparent{background-color:transparent}.background-white{background-color:#fff}.background-black{background-color:#424242}.background-black-2{background-color:#2f2f2f}.background-black-3{background-color:#1d1d1d}.background-gray{background-color:#e5e5e5}.background-gray-2{background-color:#6c6c6c}.background-gray-12{background-color:#eee}.background-light-gray-2{background-color:#aaa}.background-light-gray-6{background-color:#ccc}.background-light-gray-7{background-color:#fbfbfb}.background-blue-5{background-color:#3074d3}.background-blue-13{background-color:#6692f1}.background-blue-14,.background-blue-18{background-color:#3b73ed}.background-blue-19{background-color:#92b1f5}.background-blue-20{background-color:#3b73ed33}.background-green-0{background-color:#56b4ac}.background-green-2{background-color:#259f94}.background-green-3{background-color:#b6dfdb}.background-green-4,.background-green-6{background-color:#86c9c3}.background-dark-2{background-color:#91919133}.background-red-19{background-color:#df3d85}.background-purple-4{background-color:#9e47ec}.background-gold-bold{background-color:#cf961d}.background-gold-subtle{background-color:#e4c481}.background-orange-3{background-color:#ffb097}.background-orange-4{background-color:#ff906d}.background-orange-7{background-color:#ffcfc0}.background-yellow-8{background-color:#daad4f}.background-bw5{background-color:#919191}.background-bw6-2{background-color:#6c6c6c}.background-brown-bold{background-color:#865e3a}.background-bw2{background-color:#eee}.background-bw-9{background-color:#dadada}.background-hover-black{transition:background-color .3s ease-in-out}.background-hover-black:hover{background-color:#424242!important}.background-hover-black-1{transition:background-color .3s ease-in-out}.background-hover-black-1:hover{background-color:#424242!important}.background-hover-grey-2{transition:background-color .3s ease-in-out}.background-hover-grey-2:hover{background-color:#6c6c6c!important}.background-hover-dark-2{transition:background-color .3s ease-in-out}.background-hover-dark-2:hover{background-color:#91919133!important}.background-hover-bw2{transition:background-color .3s ease-in-out}.background-hover-bw2:hover{background-color:#eee!important}.background-hover-bw6{transition:background-color .3s ease-in-out}.background-hover-bw6:hover{background-color:#606060!important}.background-hover-bw6-2{transition:background-color .3s ease-in-out}.background-hover-bw6-2:hover{background-color:#6c6c6c!important}.background-hover-blue-13{transition:background-color .3s ease-in-out}.background-hover-blue-13:hover{background-color:#6692f1!important}.background-hover-blue-15{transition:background-color .3s ease-in-out}.background-hover-blue-15:hover{background-color:#0b49d1!important}.background-hover-blue-16{transition:background-color .3s ease-in-out}.background-hover-blue-16:hover{background-color:#e9effd!important}.background-hover-blue-17{transition:background-color .3s ease-in-out}.background-hover-blue-17:hover{background-color:#bed0f9!important}.background-hover-blue-19{transition:background-color .3s ease-in-out}.background-hover-blue-19:hover{background-color:#92b1f5!important}.background-hover-blue-20{transition:background-color .3s ease-in-out}.background-hover-blue-20:hover{background-color:#3b73ed33!important}.background-hover-blue-21{transition:background-color .3s ease-in-out}.background-hover-blue-21:hover{background-color:#3b73ed66!important}.background-hover-gray{transition:background-color .3s ease-in-out}.background-hover-gray:hover{background-color:#e5e5e5!important}.background-hover-light-grey{transition:background-color .3s ease-in-out}.background-hover-light-grey:hover{background-color:#e5e5e5!important}.background-hover-bw-9{transition:background-color .3s ease-in-out}.background-hover-bw-9:hover{background-color:#dadada!important}.br-1{border-radius:1px}.br-2{border-radius:2px}.br-3{border-radius:3px}.br-10{border-radius:10px}.br-60{border-radius:60px}.br-circle{border-radius:50%}.padding-2{padding:2px}.padding-l-2{padding-left:2px}.padding-r-2{padding-right:2px}.padding-t-2{padding-top:2px}.padding-4{padding:4px}.padding-l-4{padding-left:4px}.padding-r-4{padding-right:4px}.padding-t-4{padding-top:4px}.padding-6{padding:6px}.padding-l-6{padding-left:6px}.padding-r-6{padding-right:6px}.padding-t-6{padding-top:6px}.padding-10{padding:10px}.padding-l-10{padding-left:10px}.padding-r-10{padding-right:10px}.padding-t-10{padding-top:10px}.padding-15{padding:15px}.padding-l-15{padding-left:15px}.padding-r-15{padding-right:15px}.padding-t-15{padding-top:15px}.padding-y-2{padding-top:2px;padding-bottom:2px}.padding-y-4{padding-top:4px;padding-bottom:4px}.padding-y-6{padding-top:6px;padding-bottom:6px}.padding-y-10{padding-top:10px;padding-bottom:10px}.padding-y-15{padding-top:15px;padding-bottom:15px}.padding-x-4{padding-left:4px;padding-right:4px}.padding-x-5{padding-left:5px;padding-right:5px}.padding-x-6{padding-left:6px;padding-right:6px}.padding-x-10{padding-left:10px;padding-right:10px}.margin--2{margin:-2px}.margin-y--2{margin-top:-2px;margin-bottom:-2px}.margin-x--2{margin-left:-2px;margin-right:-2px}.margin-t--2{margin-top:-2px}.margin-r--2{margin-right:-2px}.margin-b--2{margin-bottom:-2px}.margin-l--2{margin-left:-2px}.margin-1{margin:1px}.margin-y-1{margin-top:1px;margin-bottom:1px}.margin-x-1{margin-left:1px;margin-right:1px}.margin-t-1{margin-top:1px}.margin-r-1{margin-right:1px}.margin-b-1{margin-bottom:1px}.margin-l-1{margin-left:1px}.margin-2{margin:2px}.margin-y-2{margin-top:2px;margin-bottom:2px}.margin-x-2{margin-left:2px;margin-right:2px}.margin-t-2{margin-top:2px}.margin-r-2{margin-right:2px}.margin-b-2{margin-bottom:2px}.margin-l-2{margin-left:2px}.margin-4{margin:4px}.margin-y-4{margin-top:4px;margin-bottom:4px}.margin-x-4{margin-left:4px;margin-right:4px}.margin-t-4{margin-top:4px}.margin-r-4{margin-right:4px}.margin-b-4{margin-bottom:4px}.margin-l-4{margin-left:4px}.margin-5{margin:5px}.margin-y-5{margin-top:5px;margin-bottom:5px}.margin-x-5{margin-left:5px;margin-right:5px}.margin-t-5{margin-top:5px}.margin-r-5{margin-right:5px}.margin-b-5{margin-bottom:5px}.margin-l-5{margin-left:5px}.margin-6{margin:6px}.margin-y-6{margin-top:6px;margin-bottom:6px}.margin-x-6{margin-left:6px;margin-right:6px}.margin-t-6{margin-top:6px}.margin-r-6{margin-right:6px}.margin-b-6{margin-bottom:6px}.margin-l-6{margin-left:6px}.margin-8{margin:8px}.margin-y-8{margin-top:8px;margin-bottom:8px}.margin-x-8{margin-left:8px;margin-right:8px}.margin-t-8{margin-top:8px}.margin-r-8{margin-right:8px}.margin-b-8{margin-bottom:8px}.margin-l-8{margin-left:8px}.margin-10{margin:10px}.margin-y-10{margin-top:10px;margin-bottom:10px}.margin-x-10{margin-left:10px;margin-right:10px}.margin-t-10{margin-top:10px}.margin-r-10{margin-right:10px}.margin-b-10{margin-bottom:10px}.margin-l-10{margin-left:10px}.margin-15{margin:15px}.margin-y-15{margin-top:15px;margin-bottom:15px}.margin-x-15{margin-left:15px;margin-right:15px}.margin-t-15{margin-top:15px}.margin-r-15{margin-right:15px}.margin-b-15{margin-bottom:15px}.margin-l-15{margin-left:15px}.margin-22{margin:22px}.margin-y-22{margin-top:22px;margin-bottom:22px}.margin-x-22{margin-left:22px;margin-right:22px}.margin-t-22{margin-top:22px}.margin-r-22{margin-right:22px}.margin-b-22{margin-bottom:22px}.margin-l-22{margin-left:22px}.margin-24{margin:24px}.margin-y-24{margin-top:24px;margin-bottom:24px}.margin-x-24{margin-left:24px;margin-right:24px}.margin-t-24{margin-top:24px}.margin-r-24{margin-right:24px}.margin-b-24{margin-bottom:24px}.margin-l-24{margin-left:24px}.gap-xs{gap:2px}.w-1{width:1px}.h-1{height:1px}.w-2{width:2px}.h-2{height:2px}.w-4{width:4px}.h-4{height:4px}.w-10{width:10px}.h-10{height:10px}.w-14{width:14px}.h-14{height:14px}.w-15{width:15px}.h-15{height:15px}.w-18{width:18px}.h-18{height:18px}.w-22{width:22px}.h-22{height:22px}.w-26{width:26px}.h-26{height:26px}.w-31{width:31px}.h-31{height:31px}.w-32{width:32px}.h-32{height:32px}.w-36{width:36px}.h-36{height:36px}.w-116{width:116px}.h-116{height:116px}.w-120{width:120px}.h-120{height:120px}.w-fit-content{width:fit-content}@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}}.filter-dropdown-popover{width:260px;position:relative;top:-4px;left:-4px}.filter-dropdown-popover-max-height{max-height:360px}.filter-dropdown-list{max-height:260px;overflow-y:auto}.filter-dropdown-list-icon{height:26px;transition:background-color .3s ease-in-out}.filter-dropdown-list-icon-value{height:14px;width:14px}.filter-dropdown-list-icon-remove{display:none}.filter-dropdown-list-icon:hover{background-color:#424242}.filter-dropdown-list-icon:hover .filter-dropdown-icon-count{display:none}.filter-dropdown-list-icon-selected:hover{background-color:#0b49d1}.filter-dropdown-list-item-icons{transition:opacity .3s ease-in-out;opacity:0}.filter-dropdown-list-item-status-circle{height:10px;width:10px}.filter-dropdown-list-item-remove{display:none}.filter-dropdown-list-item:hover{background-color:#424242}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons{opacity:1}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons svg path{fill:var(--svg-fill-color, #e66767)}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove{display:flex}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove svg path{fill:#e66767!important}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-count{display:none!important}.filter-dropdown-icon{height:26px;width:26px}.filter-dropdown-count{height:14px;width:14px}.filter-dropdown-count-remove,.filter-dropdown-count-hover:hover .filter-dropdown-count-value{display:none}.filter-dropdown-count-hover:hover .filter-dropdown-count-remove{display:flex}.filter-dropdown-button{height:26px}.filter-dropdown-footer-button{color:#dadada;transition:color .3s ease-in-out,background-color .3s ease-in-out;height:18px;width:50%}.filter-dropdown-footer-button-set{color:#fff;background-color:#3b73ed}.filter-dropdown-footer-button-set:hover{background-color:#e9effd;color:#0b49d1}.filter-dropdown-footer-button-clear{color:#dadada}.filter-dropdown-footer-button-clear:hover{background-color:#eee;color:#424242}.filter-dropdown-list-badge{min-width:18px}.h-7{height:7px!important;min-height:7px!important}.h-8{height:8px!important;min-height:8px!important}.h-10{height:10px!important;min-height:10px!important}.h-12{height:12px!important;min-height:12px!important}.h-14{height:14px!important;min-height:14px!important}.h-15{height:15px!important;min-height:15px!important}.h-16{height:16px!important;min-height:16px!important}.h-18{height:18px!important;min-height:18px!important}.h-22{height:22px!important;min-height:22px!important}.h-24{height:24px!important;min-height:24px!important}.h-26{height:26px!important;min-height:26px!important}.h-30{height:30px!important;min-height:30px!important}.h-34{height:34px!important;min-height:34px!important}.h-37{height:37px!important;min-height:37px!important}.h-40{height:40px!important;min-height:40px!important}.h-42{height:42px!important;min-height:42px!important}.h-44{height:44px!important;min-height:44px!important}.h-52{height:52px!important;min-height:52px!important}.h-486{height:486px!important;min-height:486px!important}.h-800{height:800px!important;min-height:800px!important}.h-960{height:960px!important;min-height:960px!important}.w-2{width:2px!important;min-width:2px!important}.w-7{width:7px!important;min-width:7px!important}.w-8{width:8px!important;min-width:8px!important}.w-10{width:10px!important;min-width:10px!important}.w-12{width:12px!important;min-width:12px!important}.w-15{width:15px!important;min-width:15px!important}.w-18{width:18px!important;min-width:18px!important}.w-22{width:22px!important;min-width:22px!important}.w-24{width:24px!important;min-width:24px!important}.w-26{width:26px!important;min-width:26px!important}.w-29{width:29px!important;min-width:29px!important}.w-30{width:30px!important;min-width:30px!important}.w-36{width:36px!important;min-width:36px!important}.w-40{width:40px!important;min-width:40px!important}.w-42{width:42px!important;min-width:42px!important}.w-46{width:46px!important;min-width:46px!important}.w-49{width:49px!important;min-width:49px!important}.w-57{width:57px!important;min-width:57px!important}.w-60{width:60px!important;min-width:60px!important}.w-68{width:68px!important;min-width:68px!important}.w-70{width:70px!important;min-width:70px!important}.w-71{width:71px!important;min-width:71px!important}.w-78{width:78px!important;min-width:78px!important}.w-80{width:80px!important;min-width:80px!important}.w-83{width:83px!important;min-width:83px!important}.w-84{width:84px!important;min-width:84px!important}.w-88{width:88px!important;min-width:88px!important}.w-90{width:90px!important;min-width:90px!important}.w-91{width:91px!important;min-width:91px!important}.w-93{width:93px!important;min-width:93px!important}.w-98{width:98px!important;min-width:98px!important}.w-101{width:101px!important;min-width:101px!important}.w-106{width:106px!important;min-width:106px!important}.w-108{width:108px!important;min-width:108px!important}.w-116{width:116px!important;min-width:116px!important}.w-126{width:126px!important;min-width:126px!important}.w-144{width:144px!important;min-width:144px!important}.w-155{width:155px!important;min-width:155px!important}.w-172{width:172px!important;min-width:172px!important}.w-179{width:179px!important;min-width:179px!important}.w-202{width:202px!important;min-width:202px!important}.w-223{width:223px!important;min-width:223px!important}.w-264{width:264px!important;min-width:264px!important}.w-268{width:268px!important;min-width:268px!important}.w-272{width:272px!important;min-width:272px!important}.w-277{width:277px!important;min-width:277px!important}.w-334{width:334px!important;min-width:334px!important}.w-442{width:442px!important;min-width:442px!important}.w-462{width:462px!important;min-width:462px!important}.w-612{width:612px!important;min-width:612px!important}.w-616{width:616px!important;min-width:616px!important}.w-620{width:620px!important;min-width:620px!important}.min-w-18{min-width:18px}.flex-1{flex:1}.w-33{width:33%}.w-40p{width:40%}.w-90p{width:90%}*{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}.c-pointer{cursor:pointer}.pointer-events-none{pointer-events:none}.ca-scroll-bar{overflow-y:scroll}.ca-scroll-bar::-webkit-scrollbar{width:2px}.ca-scroll-bar::-webkit-scrollbar-thumb{background:#ccc;border-radius:1px}.ca-scroll-bar::-webkit-scrollbar-track{background:#2f2f2f}.place-items-center{justify-content:center;align-items:center}.prevent-text-selection{-ms-user-select:none;-webkit-user-select:none;user-select:none;-moz-user-select:none}.address_holder{width:100%}.address_holder .main_address_holder{position:relative;flex:1}.address_holder .main_address_holder.input_for_routing .input-clear,.address_holder .main_address_holder.input_for_routing .input-dropdown-arrow{display:none!important}.address_holder .main_address_holder.input_for_routing input{height:22px!important;font-size:11px!important;line-height:14px!important;padding-right:64px!important}.address_holder .main_address_holder.input_for_routing label{font-size:11px!important;line-height:14px!important}.address_holder .main_address_holder.not_expanded input{background-color:#fff!important;cursor:pointer}.address_holder .main_address_holder.not_expanded:hover input{background-color:#f3f3f3!important}.address_holder .main_address_holder.expanded_address input,.address_holder .main_address_holder.expanded_address .valid-focus-out-filled{background-color:#6c6c6c!important;color:#fff!important}.address_holder .main_address_holder .stop_hold{position:absolute;right:2px;top:2px;width:62px;height:18px;background-color:#b7b7b7;color:#fff;border-radius:1px;cursor:pointer;-webkit-user-select:none;user-select:none}.address_holder .main_address_holder .stop_hold:hover{background-color:#919191}.address_holder .ca-input-commands .main-commands{margin-left:6px}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-first svg rect{fill:#e2e2e2}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-first svg path{fill:#fff}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-first.allow_confirm svg rect{fill:#b7b7b7}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-first.allow_confirm:hover rect{fill:#6c6c6c}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-second svg rect{fill:#b7b7b7}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-second svg path{fill:#fff}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-second:hover rect{fill:#6c6c6c}.address_holder .ca-input-commands .main-commands:hover:hover svg{overflow:visible}.address_holder .ca-input-commands .main-commands:hover:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s}\n", "@charset \"UTF-8\";@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}.load-pickup-delivery-popover{top:-34px!important;max-width:400px!important}.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:#fff}.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:#fff}.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:#fff}.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}.dropdown-menu-popover.bs-popover-end-top .dropdown-container{transform:translate(-4px,-3px)}.dropdown-menu-popover.bs-popover-bottom-end .dropdown-container{transform:translate(3px,-3px)}.dropdown-menu-popover.bs-popover-end-bottom .dropdown-container{transform:translate(-3px,3px)}.dropdown-menu-popover.bs-popover-top-end .dropdown-container{transform:translate(3px,3px)}.dropdown-details-title-card-popover .dropdown-container{transform:translateY(-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-color:#42424233!important;color:#424242!important}.text-color-black::selection{background-color:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-muted::selection{background-color:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green-2{color:#259f94!important}.text-color-green-2::-moz-selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-2::selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-blue-5{color:#3074d3!important}.text-color-blue-5::-moz-selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-5::selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-13::selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-16{color:#e9effd!important}.text-color-blue-16::-moz-selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-16::selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-11{color:#df3c3c!important}.text-color-red-11::-moz-selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-11::selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-yellow{color:#fab15c!important}.text-color-yellow::-moz-selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-yellow::selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-purple{color:#b370f0!important}.text-color-purple::-moz-selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-purple::selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-special-filter-purple{color:#9e47ec!important}.text-color-special-filter-purple::-moz-selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-special-filter-purple::selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-grey-9{color:#b7b7b7!important}.text-color-grey-9::-moz-selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-grey-9::selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{background-color:#ccc3!important;color:#ccc!important}.text-color-light-grey-6::selection{background-color:#ccc3!important;color:#ccc!important}.text-color-white{color:#fff!important}.text-color-white::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-white-4::selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw6-2::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{background-color:#dadada33!important;color:#dadada!important}.text-color-bw-9::selection{background-color:#dadada33!important;color:#dadada!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey::selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{background-color:#91919133!important;color:#919191!important}.text-color-orange-1{color:#ff7043!important}.text-color-orange-1::-moz-selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-1::selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-3{color:#ffb097!important}.text-color-orange-3::-moz-selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-orange-3::selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-brown-1{color:#865e3a!important}.text-color-brown-1::-moz-selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-brown-1::selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-light-blue-2{color:#1ab5e6!important}.text-color-light-blue-2::-moz-selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-color-light-blue-2::selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-hover-white{transition:color .3s ease-in-out ease-in-out}.text-hover-white:hover{color:#fff!important}.text-hover-black{transition:color .3s ease-in-out ease-in-out}.text-hover-black:hover{color:#424242!important}.text-hover-blue-15{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-15:hover{color:#0b49d1!important}.text-hover-blue-18{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-18:hover{color:#3b73ed!important}.text-hover-bw6-2{transition:color .3s ease-in-out ease-in-out}.text-hover-bw6-2:hover{color:#6c6c6c!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-20{font-size:20px!important;line-height:24px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.font-size-11{font-size:11px!important}.line-height-12{line-height:12px!important}.svg-fill-black svg path,.svg-fill-black svg circle{fill:#424242!important}.svg-fill-white svg path,.svg-fill-white svg circle{fill:#fff!important}.svg-fill-white-2 svg path,.svg-fill-white-2 svg circle{fill:#fff!important}.svg-fill-muted svg path,.svg-fill-muted svg circle{fill:#919191!important}.svg-fill-bw6-2 svg path,.svg-fill-bw6-2 svg circle{fill:#6c6c6c!important}.svg-fill-bw-9 svg path,.svg-fill-bw-9 svg circle{fill:#dadada!important}.svg-fill-light-grey-2 svg path,.svg-fill-light-grey-2 svg circle{fill:#aaa!important}.svg-fill-light-grey-6 svg path,.svg-fill-light-grey-6 svg circle{fill:#ccc!important}.svg-fill-blue-8 svg path,.svg-fill-blue-8 svg circle{fill:#6692f1!important}.svg-fill-blue-13 svg path,.svg-fill-blue-13 svg circle{fill:#6692f1!important}.svg-fill-blue-14 svg path,.svg-fill-blue-14 svg circle{fill:#3b73ed!important}.svg-fill-blue-17 svg path,.svg-fill-blue-17 svg circle{fill:#bed0f9!important}.svg-fill-blue-19 svg path,.svg-fill-blue-19 svg circle{fill:#92b1f5!important}.svg-fill-blue-26 svg path,.svg-fill-blue-26 svg circle{fill:#4dc5eb!important}.svg-fill-green svg path,.svg-fill-green svg circle{fill:#56b4ac!important}.svg-fill-green-2 svg path,.svg-fill-green-2 svg circle{fill:#259f94!important}.svg-fill-green-4 svg path,.svg-fill-green-4 svg circle{fill:#86c9c3!important}.svg-fill-green-6 svg path,.svg-fill-green-6 svg circle{fill:#77bf56!important}.svg-fill-yellow-1 svg path,.svg-fill-yellow-1 svg circle{fill:#fab15c!important}.svg-fill-yellow-4 svg path,.svg-fill-yellow-4 svg circle{fill:#fbc88b!important}.svg-fill-yellow-5 svg path,.svg-fill-yellow-5 svg circle{fill:#f89b2e!important}.svg-fill-yellow-8 svg path,.svg-fill-yellow-8 svg circle{fill:#daad4f!important}.svg-fill-white-4 svg path,.svg-fill-white-4 svg circle{fill:#ffffffb2!important}.svg-fill-grey svg path,.svg-fill-grey svg circle{fill:#919191!important}.svg-fill-red-10 svg path,.svg-fill-red-10 svg circle{fill:#e66767!important}.svg-fill-red-11 svg path,.svg-fill-red-11 svg circle{fill:#df3c3c!important}.svg-fill-red-13 svg path,.svg-fill-red-13 svg circle{fill:#ed9292!important}.svg-fill-red-14 svg path,.svg-fill-red-14 svg circle{fill:#c20c0c!important}.svg-fill-red-18 svg path,.svg-fill-red-18 svg circle{fill:#e668a0!important}.svg-fill-orange-4 svg path,.svg-fill-orange-4 svg circle{fill:#ff906d!important}.svg-fill-brown svg path,.svg-fill-brown svg circle{fill:#865e3a!important}.svg-fill-purple-4 svg path,.svg-fill-purple-4 svg circle{fill:#9e47ec!important}.svg-hover-white svg path{transition:fill .3s ease-in-out}.svg-hover-white:hover svg path{fill:#fff!important}.svg-hover-white-2 svg path{transition:fill .3s ease-in-out}.svg-hover-white-2:hover svg path{fill:#fff!important}.svg-hover-muted svg path{transition:fill .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-grey-4 svg path{transition:fill .3s ease-in-out}.svg-hover-grey-4:hover svg path{fill:#ccc!important}.svg-hover-black svg path{transition:fill .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-9 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-9:hover svg path{fill:#0b49d1!important}.svg-hover-blue-10 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-10:hover svg path{fill:#6f9ee033!important}.svg-hover-blue-15 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-blue-17 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-17:hover svg path{fill:#bed0f9!important}.svg-hover-blue-19 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-19:hover svg path{fill:#92b1f5!important}.svg-hover-bw6-2 svg path{transition:fill .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-bw-9 svg path{transition:fill .3s ease-in-out}.svg-hover-bw-9:hover svg path{fill:#dadada!important}.svg-hover-trash-red svg path{transition:fill .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:fill .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-6 svg{width:6px;height:6px}.svg-size-10 svg{width:10px;height:10px}.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-17 svg{width:17px;height:17px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-23 svg{width:23px;height:23px}.svg-size-26 svg{width:26px;height:26px}.svg-size-30-26 svg{width:30px;height:26px}.svg-size-44-16 svg{width:44px;height:16px}.svg-size-90 svg{width:90px;height:90px}.background-transparent{background-color:transparent}.background-white{background-color:#fff}.background-black{background-color:#424242}.background-black-2{background-color:#2f2f2f}.background-black-3{background-color:#1d1d1d}.background-gray{background-color:#e5e5e5}.background-gray-2{background-color:#6c6c6c}.background-gray-12{background-color:#eee}.background-light-gray-2{background-color:#aaa}.background-light-gray-6{background-color:#ccc}.background-light-gray-7{background-color:#fbfbfb}.background-blue-5{background-color:#3074d3}.background-blue-13{background-color:#6692f1}.background-blue-14,.background-blue-18{background-color:#3b73ed}.background-blue-19{background-color:#92b1f5}.background-blue-20{background-color:#3b73ed33}.background-green-0{background-color:#56b4ac}.background-green-2{background-color:#259f94}.background-green-3{background-color:#b6dfdb}.background-green-4,.background-green-6{background-color:#86c9c3}.background-dark-2{background-color:#91919133}.background-red-19{background-color:#df3d85}.background-purple-4{background-color:#9e47ec}.background-gold-bold{background-color:#cf961d}.background-gold-subtle{background-color:#e4c481}.background-orange-3{background-color:#ffb097}.background-orange-4{background-color:#ff906d}.background-orange-7{background-color:#ffcfc0}.background-yellow-8{background-color:#daad4f}.background-bw5{background-color:#919191}.background-bw6-2{background-color:#6c6c6c}.background-brown-bold{background-color:#865e3a}.background-bw2{background-color:#eee}.background-bw-9{background-color:#dadada}.background-hover-black{transition:background-color .3s ease-in-out}.background-hover-black:hover{background-color:#424242!important}.background-hover-black-1{transition:background-color .3s ease-in-out}.background-hover-black-1:hover{background-color:#424242!important}.background-hover-grey-2{transition:background-color .3s ease-in-out}.background-hover-grey-2:hover{background-color:#6c6c6c!important}.background-hover-dark-2{transition:background-color .3s ease-in-out}.background-hover-dark-2:hover{background-color:#91919133!important}.background-hover-bw2{transition:background-color .3s ease-in-out}.background-hover-bw2:hover{background-color:#eee!important}.background-hover-bw6{transition:background-color .3s ease-in-out}.background-hover-bw6:hover{background-color:#606060!important}.background-hover-bw6-2{transition:background-color .3s ease-in-out}.background-hover-bw6-2:hover{background-color:#6c6c6c!important}.background-hover-blue-13{transition:background-color .3s ease-in-out}.background-hover-blue-13:hover{background-color:#6692f1!important}.background-hover-blue-15{transition:background-color .3s ease-in-out}.background-hover-blue-15:hover{background-color:#0b49d1!important}.background-hover-blue-16{transition:background-color .3s ease-in-out}.background-hover-blue-16:hover{background-color:#e9effd!important}.background-hover-blue-17{transition:background-color .3s ease-in-out}.background-hover-blue-17:hover{background-color:#bed0f9!important}.background-hover-blue-19{transition:background-color .3s ease-in-out}.background-hover-blue-19:hover{background-color:#92b1f5!important}.background-hover-blue-20{transition:background-color .3s ease-in-out}.background-hover-blue-20:hover{background-color:#3b73ed33!important}.background-hover-blue-21{transition:background-color .3s ease-in-out}.background-hover-blue-21:hover{background-color:#3b73ed66!important}.background-hover-gray{transition:background-color .3s ease-in-out}.background-hover-gray:hover{background-color:#e5e5e5!important}.background-hover-light-grey{transition:background-color .3s ease-in-out}.background-hover-light-grey:hover{background-color:#e5e5e5!important}.background-hover-bw-9{transition:background-color .3s ease-in-out}.background-hover-bw-9:hover{background-color:#dadada!important}.br-1{border-radius:1px}.br-2{border-radius:2px}.br-3{border-radius:3px}.br-10{border-radius:10px}.br-60{border-radius:60px}.br-circle{border-radius:50%}.padding-2{padding:2px}.padding-l-2{padding-left:2px}.padding-r-2{padding-right:2px}.padding-t-2{padding-top:2px}.padding-4{padding:4px}.padding-l-4{padding-left:4px}.padding-r-4{padding-right:4px}.padding-t-4{padding-top:4px}.padding-6{padding:6px}.padding-l-6{padding-left:6px}.padding-r-6{padding-right:6px}.padding-t-6{padding-top:6px}.padding-10{padding:10px}.padding-l-10{padding-left:10px}.padding-r-10{padding-right:10px}.padding-t-10{padding-top:10px}.padding-15{padding:15px}.padding-l-15{padding-left:15px}.padding-r-15{padding-right:15px}.padding-t-15{padding-top:15px}.padding-y-2{padding-top:2px;padding-bottom:2px}.padding-y-4{padding-top:4px;padding-bottom:4px}.padding-y-6{padding-top:6px;padding-bottom:6px}.padding-y-10{padding-top:10px;padding-bottom:10px}.padding-y-15{padding-top:15px;padding-bottom:15px}.padding-x-4{padding-left:4px;padding-right:4px}.padding-x-5{padding-left:5px;padding-right:5px}.padding-x-6{padding-left:6px;padding-right:6px}.padding-x-10{padding-left:10px;padding-right:10px}.margin--2{margin:-2px}.margin-y--2{margin-top:-2px;margin-bottom:-2px}.margin-x--2{margin-left:-2px;margin-right:-2px}.margin-t--2{margin-top:-2px}.margin-r--2{margin-right:-2px}.margin-b--2{margin-bottom:-2px}.margin-l--2{margin-left:-2px}.margin-1{margin:1px}.margin-y-1{margin-top:1px;margin-bottom:1px}.margin-x-1{margin-left:1px;margin-right:1px}.margin-t-1{margin-top:1px}.margin-r-1{margin-right:1px}.margin-b-1{margin-bottom:1px}.margin-l-1{margin-left:1px}.margin-2{margin:2px}.margin-y-2{margin-top:2px;margin-bottom:2px}.margin-x-2{margin-left:2px;margin-right:2px}.margin-t-2{margin-top:2px}.margin-r-2{margin-right:2px}.margin-b-2{margin-bottom:2px}.margin-l-2{margin-left:2px}.margin-4{margin:4px}.margin-y-4{margin-top:4px;margin-bottom:4px}.margin-x-4{margin-left:4px;margin-right:4px}.margin-t-4{margin-top:4px}.margin-r-4{margin-right:4px}.margin-b-4{margin-bottom:4px}.margin-l-4{margin-left:4px}.margin-5{margin:5px}.margin-y-5{margin-top:5px;margin-bottom:5px}.margin-x-5{margin-left:5px;margin-right:5px}.margin-t-5{margin-top:5px}.margin-r-5{margin-right:5px}.margin-b-5{margin-bottom:5px}.margin-l-5{margin-left:5px}.margin-6{margin:6px}.margin-y-6{margin-top:6px;margin-bottom:6px}.margin-x-6{margin-left:6px;margin-right:6px}.margin-t-6{margin-top:6px}.margin-r-6{margin-right:6px}.margin-b-6{margin-bottom:6px}.margin-l-6{margin-left:6px}.margin-8{margin:8px}.margin-y-8{margin-top:8px;margin-bottom:8px}.margin-x-8{margin-left:8px;margin-right:8px}.margin-t-8{margin-top:8px}.margin-r-8{margin-right:8px}.margin-b-8{margin-bottom:8px}.margin-l-8{margin-left:8px}.margin-10{margin:10px}.margin-y-10{margin-top:10px;margin-bottom:10px}.margin-x-10{margin-left:10px;margin-right:10px}.margin-t-10{margin-top:10px}.margin-r-10{margin-right:10px}.margin-b-10{margin-bottom:10px}.margin-l-10{margin-left:10px}.margin-15{margin:15px}.margin-y-15{margin-top:15px;margin-bottom:15px}.margin-x-15{margin-left:15px;margin-right:15px}.margin-t-15{margin-top:15px}.margin-r-15{margin-right:15px}.margin-b-15{margin-bottom:15px}.margin-l-15{margin-left:15px}.margin-22{margin:22px}.margin-y-22{margin-top:22px;margin-bottom:22px}.margin-x-22{margin-left:22px;margin-right:22px}.margin-t-22{margin-top:22px}.margin-r-22{margin-right:22px}.margin-b-22{margin-bottom:22px}.margin-l-22{margin-left:22px}.margin-24{margin:24px}.margin-y-24{margin-top:24px;margin-bottom:24px}.margin-x-24{margin-left:24px;margin-right:24px}.margin-t-24{margin-top:24px}.margin-r-24{margin-right:24px}.margin-b-24{margin-bottom:24px}.margin-l-24{margin-left:24px}.gap-xs{gap:2px}.w-1{width:1px}.h-1{height:1px}.w-2{width:2px}.h-2{height:2px}.w-4{width:4px}.h-4{height:4px}.w-10{width:10px}.h-10{height:10px}.w-14{width:14px}.h-14{height:14px}.w-15{width:15px}.h-15{height:15px}.w-18{width:18px}.h-18{height:18px}.w-22{width:22px}.h-22{height:22px}.w-26{width:26px}.h-26{height:26px}.w-31{width:31px}.h-31{height:31px}.w-32{width:32px}.h-32{height:32px}.w-36{width:36px}.h-36{height:36px}.w-116{width:116px}.h-116{height:116px}.w-120{width:120px}.h-120{height:120px}.w-fit-content{width:fit-content}.filter-dropdown-popover{width:260px;position:relative;top:-4px;left:-4px}.filter-dropdown-popover-max-height{max-height:360px}.filter-dropdown-list{max-height:260px;overflow-y:auto}.filter-dropdown-list-icon{height:26px;transition:background-color .3s ease-in-out}.filter-dropdown-list-icon-value{height:14px;width:14px}.filter-dropdown-list-icon-remove{display:none}.filter-dropdown-list-icon:hover{background-color:#424242}.filter-dropdown-list-icon:hover .filter-dropdown-icon-count{display:none}.filter-dropdown-list-icon-selected:hover{background-color:#0b49d1}.filter-dropdown-list-item-icons{transition:opacity .3s ease-in-out;opacity:0}.filter-dropdown-list-item-status-circle{height:10px;width:10px}.filter-dropdown-list-item-remove{display:none}.filter-dropdown-list-item:hover{background-color:#424242}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons{opacity:1}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons svg path{fill:var(--svg-fill-color, #e66767)}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove{display:flex}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove svg path{fill:#e66767!important}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-count{display:none!important}.filter-dropdown-icon{height:26px;width:26px}.filter-dropdown-count{height:14px;width:14px}.filter-dropdown-count-remove,.filter-dropdown-count-hover:hover .filter-dropdown-count-value{display:none}.filter-dropdown-count-hover:hover .filter-dropdown-count-remove{display:flex}.filter-dropdown-button{height:26px}.filter-dropdown-footer-button{color:#dadada;transition:color .3s ease-in-out,background-color .3s ease-in-out;height:18px;width:50%}.filter-dropdown-footer-button-set{color:#fff;background-color:#3b73ed}.filter-dropdown-footer-button-set:hover{background-color:#e9effd;color:#0b49d1}.filter-dropdown-footer-button-clear{color:#dadada}.filter-dropdown-footer-button-clear:hover{background-color:#eee;color:#424242}.filter-dropdown-list-badge{min-width:18px}.h-7{height:7px!important;min-height:7px!important}.h-8{height:8px!important;min-height:8px!important}.h-10{height:10px!important;min-height:10px!important}.h-12{height:12px!important;min-height:12px!important}.h-14{height:14px!important;min-height:14px!important}.h-15{height:15px!important;min-height:15px!important}.h-16{height:16px!important;min-height:16px!important}.h-18{height:18px!important;min-height:18px!important}.h-22{height:22px!important;min-height:22px!important}.h-24{height:24px!important;min-height:24px!important}.h-26{height:26px!important;min-height:26px!important}.h-30{height:30px!important;min-height:30px!important}.h-34{height:34px!important;min-height:34px!important}.h-37{height:37px!important;min-height:37px!important}.h-40{height:40px!important;min-height:40px!important}.h-42{height:42px!important;min-height:42px!important}.h-44{height:44px!important;min-height:44px!important}.h-52{height:52px!important;min-height:52px!important}.h-486{height:486px!important;min-height:486px!important}.h-800{height:800px!important;min-height:800px!important}.h-960{height:960px!important;min-height:960px!important}.w-2{width:2px!important;min-width:2px!important}.w-7{width:7px!important;min-width:7px!important}.w-8{width:8px!important;min-width:8px!important}.w-10{width:10px!important;min-width:10px!important}.w-12{width:12px!important;min-width:12px!important}.w-15{width:15px!important;min-width:15px!important}.w-18{width:18px!important;min-width:18px!important}.w-22{width:22px!important;min-width:22px!important}.w-24{width:24px!important;min-width:24px!important}.w-26{width:26px!important;min-width:26px!important}.w-29{width:29px!important;min-width:29px!important}.w-30{width:30px!important;min-width:30px!important}.w-36{width:36px!important;min-width:36px!important}.w-40{width:40px!important;min-width:40px!important}.w-42{width:42px!important;min-width:42px!important}.w-46{width:46px!important;min-width:46px!important}.w-49{width:49px!important;min-width:49px!important}.w-57{width:57px!important;min-width:57px!important}.w-60{width:60px!important;min-width:60px!important}.w-68{width:68px!important;min-width:68px!important}.w-70{width:70px!important;min-width:70px!important}.w-71{width:71px!important;min-width:71px!important}.w-78{width:78px!important;min-width:78px!important}.w-80{width:80px!important;min-width:80px!important}.w-83{width:83px!important;min-width:83px!important}.w-84{width:84px!important;min-width:84px!important}.w-88{width:88px!important;min-width:88px!important}.w-90{width:90px!important;min-width:90px!important}.w-91{width:91px!important;min-width:91px!important}.w-93{width:93px!important;min-width:93px!important}.w-98{width:98px!important;min-width:98px!important}.w-101{width:101px!important;min-width:101px!important}.w-106{width:106px!important;min-width:106px!important}.w-108{width:108px!important;min-width:108px!important}.w-116{width:116px!important;min-width:116px!important}.w-126{width:126px!important;min-width:126px!important}.w-144{width:144px!important;min-width:144px!important}.w-155{width:155px!important;min-width:155px!important}.w-172{width:172px!important;min-width:172px!important}.w-179{width:179px!important;min-width:179px!important}.w-202{width:202px!important;min-width:202px!important}.w-223{width:223px!important;min-width:223px!important}.w-264{width:264px!important;min-width:264px!important}.w-268{width:268px!important;min-width:268px!important}.w-272{width:272px!important;min-width:272px!important}.w-277{width:277px!important;min-width:277px!important}.w-334{width:334px!important;min-width:334px!important}.w-442{width:442px!important;min-width:442px!important}.w-462{width:462px!important;min-width:462px!important}.w-612{width:612px!important;min-width:612px!important}.w-616{width:616px!important;min-width:616px!important}.w-620{width:620px!important;min-width:620px!important}.min-w-18{min-width:18px}.flex-1{flex:1}.w-33{width:33%}.w-40p{width:40%}.w-90p{width:90%}*{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}.c-pointer{cursor:pointer}.pointer-events-none{pointer-events:none}.ca-scroll-bar{overflow-y:scroll}.ca-scroll-bar::-webkit-scrollbar{width:2px}.ca-scroll-bar::-webkit-scrollbar-thumb{background:#ccc;border-radius:1px}.ca-scroll-bar::-webkit-scrollbar-track{background:#2f2f2f}.place-items-center{justify-content:center;align-items:center}.prevent-text-selection{-ms-user-select:none;-webkit-user-select:none;user-select:none;-moz-user-select:none}.datetime-dropdown-holder{position:relative;top:16px}.pickers_holder{position:absolute;top:3px!important;width:auto!important;padding:0;background-color:#fff;box-shadow:0 0 4px #00000026;z-index:999;border-radius:3px;overflow:hidden}.pickers_holder .time_picker{width:167px}.pickers_holder .date_picker{display:flex}.pickers_holder .date_picker .month-years-size{position:relative;width:48px;background-color:#f9f9f9}.pickers_holder .date_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:24px;transform:translateY(-50%);background-color:#fff}.pickers_holder .date_picker .month-years-size .month-year-item{display:flex;align-items:center;justify-content:center;height:24px;font-size:14px;color:#919191;font-weight:400;text-align:center;text-transform:uppercase}.pickers_holder .date_picker .month-years-size .month-year-item .left-year-show{color:#919191;font-size:14px;font-weight:700}.pickers_holder .date_picker .month-years-size .month-year-item:hover{color:#6c6c6c;cursor:pointer;background-color:#fbe9e9;border-radius:2px}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 2px 0}.pickers_holder .date_picker .full-calendars-list{flex:1;max-height:290px;min-width:264px;overflow:hidden}.pickers_holder .date_picker .full-calendars-list .full_list{height:100%}.pickers_holder .date_picker .full-calendars-list .full_list .selfScroll{width:100%;height:100%}.pickers_holder .time_picker .time_picker_head{height:36px;display:flex;padding:0 12px;align-items:center;justify-content:space-between}.pickers_holder .time_picker .time_picker_head .selected_time{font-size:14px;font-weight:800;color:#6c6c6c}.pickers_holder .time_picker .time_picker_head .sel_now{color:#536bc2;font-size:14px;font-weight:700}.pickers_holder .time_picker .time_picker_head .sel_now:hover{cursor:pointer;color:#5673aa}.pickers_holder .time_picker .time_picker_body .picker_body_head{height:22px;display:flex;align-items:center;background-color:#f7f7f7;margin:0 4px 2px;border-radius:2px}.pickers_holder .time_picker .time_picker_body .picker_body_head div{flex:0 0 33%;text-align:center;font-size:10px;font-weight:700;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body_head div.active{color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body{position:relative;height:155px;display:flex;justify-content:center}.pickers_holder .time_picker .time_picker_body .picker_body:after{content:\"\";position:absolute;width:100%;height:31px;top:-1px;left:0;pointer-events:none;background:linear-gradient(to bottom,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body:before{content:\"\";position:absolute;pointer-events:none;width:100%;height:31px;bottom:-1px;left:0;background:linear-gradient(to top,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line{position:absolute;width:calc(100% - 8px);height:22px;top:50%;left:4px;border-radius:2px;transform:translateY(-50%);background-color:#9191911a}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line span{position:absolute;left:30%;font-size:14px;font-weight:400;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers{position:relative;height:22px;flex:0 0 33.3%;height:100%;padding:67px 0;margin:0 7px;overflow:auto;text-align:center;-ms-overflow-style:none;scrollbar-width:none;z-index:10}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:first-child{flex:0 0 28px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(2){flex:0 0 36px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(3){flex:0 0 38px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers::-webkit-scrollbar{display:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{height:22px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#919191;font-weight:400;-webkit-user-select:none;user-select:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item:hover{color:#5673aa;cursor:pointer}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:hover{box-shadow:inset 0 0 4px #00000026}.pickers_holder .time_picker .picker_buttons{display:flex;padding:6px;justify-content:space-between}.pickers_holder .time_picker .picker_buttons .pick_button{display:flex;align-items:center;justify-content:center;height:32px;padding:0 12px;text-align:center;border-radius:2px;font-size:12px;font-weight:700;color:#919191b3}.pickers_holder .time_picker .picker_buttons .pick_button:hover{background-color:#f3f3f3;color:#919191;cursor:pointer}.pickers_holder .time_picker .picker_buttons .pick_button.set_button{width:57px;text-align:center;background-color:#6d82c7;color:#fff}.pickers_holder .time_picker .picker_buttons .pick_button.set_button:hover{background-color:#536bc2}.pickers_holder.dark_picker{background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size{width:40px;background-color:#424242}.pickers_holder.dark_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:26px;transform:translateY(-50%);background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .month-year-item{height:22px;color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item .left-year-show{color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year{color:#fff}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year .left-year-show{color:#fff;font-weight:700}.pickers_holder.dark_picker .month-years-size .month-year-item:hover{color:#fff;background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 4px 0}.pickers_holder.dark_picker .date_picker{margin:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list{min-width:184px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view{width:182px;padding-top:6px;background-color:#2f2f2f}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head{padding:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name{padding:0 4px;color:#fff;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name .year_hold{margin-right:0;color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today{padding:0 4px;color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today:hover{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator{margin:12px 10px;color:#919191;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.current_year{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.full_calendar{margin-bottom:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px 4px;padding:0}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days .cal_day{width:22px;height:22px;margin:0;font-size:9px;color:#aaa;text-align:center}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;row-gap:12px;justify-content:unset;margin:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item{margin:0;height:22px;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item:hover:not(.current_month){background-color:#424242;color:#fff;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item.current_month{color:#fff;background-color:#3b73ed66;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list.current_year .month_list_item{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px;padding:0;height:auto}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day{width:22px;height:22px;margin:0;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#fff;background-color:#3b73ed66;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#3b73ed66;color:#fff;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.day_in_current_month{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.weekend_day_in_current_month{color:#ccc}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#424242;border-radius:2px;cursor:pointer;color:#fff}.pickers_holder.dark_picker .time_picker{width:156px;margin:4px}.pickers_holder.dark_picker .time_picker .time_picker_head{height:18px;padding:0 4px;margin-bottom:4px}.pickers_holder.dark_picker .time_picker .time_picker_head .selected_time{color:#fff;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_head .sel_now{color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;margin:0 0 4px;padding:2px;background:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head div{color:#aaa;font-size:9px;text-align:center;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body{height:176px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;padding:0 2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:before{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:after{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line{left:0;width:100%;background-color:#3b73ed33}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line{left:33.3%;width:1px;height:12px;margin-top:5px;background-color:#92b1f5;opacity:.4;border-radius:2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line.line_2{left:66.6%}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers{margin:0;padding:77px 0}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{color:#aaa;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item.active_item{color:#fff}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons{display:grid;grid-template-columns:repeat(2,1fr);column-gap:4px;margin-top:6px;padding:4px 0 0;border-top:1px solid #424242}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button{height:18px;background-color:#424242;color:#fff;font-size:11px;text-transform:uppercase;border-radius:1px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button.set_button{width:auto;background-color:#3b73ed}.calendar_view{width:260px;padding-top:12px;background-color:#fff}.calendar_view .calendar_view_head{display:flex;justify-content:space-between;margin-bottom:12px;padding:0 12px}.calendar_view .calendar_view_head .month_name{font-size:12px;font-weight:700;color:#6c6c6c}.calendar_view .calendar_view_head .month_name .year_hold{margin-right:5px;text-transform:uppercase;color:#6c6c6c;cursor:pointer}.calendar_view .calendar_view_head .month_name .year_hold:hover{color:#919191}.calendar_view .calendar_view_head .today{font-size:12px;font-weight:700;color:#5673aab3;cursor:pointer}.calendar_view .calendar_view_head .today:hover{color:#3551b7}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport{height:230px;min-height:230px}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view .calendar_indicator{margin:12px;height:18px;font-size:12px;color:#6c6c6c66;font-weight:700}.calendar_view .calendars_list_view .calendar_month_days{padding:0 3px}.calendar_view .calendars_list_view .calendar_month_days.hideVisibility{visibility:hidden}.calendar_view .calendars_list_view .calendar_month_days .cal_day{width:24px;margin:0 6px;font-size:12px;font-weight:700;color:#b7b7b7}.calendar_view .calendars_list_view .calendar_days{height:140px;display:flex;flex-wrap:wrap;padding:0 3px}.calendar_view .calendars_list_view .calendar_days .calendar_day{display:flex;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;margin:0 6px;font-size:14px;font-weight:400;color:#6c6c6c}.calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#fff;background-color:#919191;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#919191;color:#fff;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#f7f7f7;border-radius:2px;cursor:pointer;color:#3c3c3c}.calendar_view .month_list{display:flex;flex-wrap:wrap;justify-content:space-around;height:140px}.calendar_view .month_list .month_list_item{flex:0 0 50px;height:24px;margin:0 10px;display:flex;align-items:center;justify-content:center;border-radius:3px;font-size:12px;color:#6c6c6c;font-weight:400}.calendar_view .month_list .month_list_item:hover:not(.current_month){background-color:#f7f7f7;color:#3c3c3c;border-radius:2px;cursor:pointer}.calendar_view .month_list .month_list_item.current_month{color:#3c3c3c;background-color:#f7f7f7;border-radius:2px;cursor:pointer}.dropdown{z-index:999!important}input[type=date]::-webkit-inner-spin-button,input[type=date]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}.input-custom-group{display:block;position:relative}.input-custom-group .location-area-filter,.input-custom-group .location-area-filter.focus,.input-custom-group .location-area-filter.focus:hover{background-color:#424242!important;color:#fff!important}.input-custom-group .location-area-filter.focus::placeholder{background-color:#424242!important}.input-custom-group .location-area-filter:focus{background-color:#424242!important;color:#fff!important}.input-custom-group:hover.required-label-table label span{color:#2f2f2f!important}.input-custom-group.custom-empty-hover:hover{transition:.3s ease-in-out}.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.custom-empty-hover:hover .input-icon:hover~.input-control,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:hover~.input-control{background-color:#dadada}.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:before:hover,.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.custom-empty-hover:hover .input-icon:before:hover,.input-custom-group.custom-empty-hover:hover .input-icon:after:hover~.input-control,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:after:hover~.input-control{background-color:#dadada}.input-custom-group.custom-filled-hover:hover{transition:.3s ease-in-out}.input-custom-group.custom-filled-hover:hover .input-clear{display:inline-block}.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-icon:hover~.input-control,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-clear:hover~.input-control{background-color:#dadada}.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:before:hover,.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-icon:before:hover,.input-custom-group.custom-filled-hover:hover .input-icon:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-clear:before:hover,.input-custom-group.custom-filled-hover:hover .input-clear:after:hover~.input-control{background-color:#dadada}.input-custom-group.input-remove-trash-can:hover .input-clear{display:inline-block!important}.input-custom-group.input-remove-trash-can:hover .input-clear:hover~.input-control{background-color:#dadada}.input-custom-group.input-remove-trash-can:hover .placeholder-icon-right-side{opacity:0}.input-custom-group.input-remove-background:hover .input-control{background:transparent!important}.input-custom-group.input-remove-background.input-blue-text{color:red}.input-custom-group.input-remove-background .input-control{background:transparent;color:#2f2f2f;font-weight:400}.input-custom-group.input-remove-background .input-control.focus,.input-custom-group.input-remove-background .input-control.focus:hover{background:#2f2f2f!important;color:#fff!important}.input-custom-group.input-remove-background .input-control.focus::placeholder{color:#fff!important}.input-custom-group.input-remove-background .input-control:focus{background:#2f2f2f!important;color:#fff!important}.input-custom-group.input-remove-background .input-dropdown-arrow svg path{fill:#919191!important}.input-custom-group.input-blue-text .input-control{color:#6692f1}.input-custom-group.invalid-filled-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.invalid-filled-focus-out:hover .input-clear,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow,.input-custom-group.invalid-filled-focus-out:hover .input-icon,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear{display:inline-block}.input-custom-group.invalid-filled-focus-out:hover .input-clear:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-icon:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-filled-focus-out:hover .input-clear:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-clear:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-icon:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-icon:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:after:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-filled-focus-out:hover .input-label-counter{display:flex}.input-custom-group.invalid-empty-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.invalid-empty-focus-out:hover .input-clear{display:none}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x svg path{fill:#e66767}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x svg rect{fill:#e66767}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x:hover svg path{fill:#c20c0c}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x:hover svg rect{fill:#c20c0c}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.invalid-empty-focus-out:hover .input-icon{display:inline-block}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-icon:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-icon:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-icon:after:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-focus-in:hover{transition:.3s ease-in-out}.input-custom-group.invalid-focus-in:hover .input-password-eye:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-password:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:hover~.input-control{background-color:#e22e22}.input-custom-group.invalid-focus-in:hover .input-password-eye:before:hover,.input-custom-group.invalid-focus-in:hover .input-password-eye:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-password:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:after:hover~.input-control{background-color:#e22e22}.input-custom-group.valid-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.valid-focus-out:hover .input-clear,.input-custom-group.valid-focus-out:hover .input-pen-container,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow,.input-custom-group.valid-focus-out:hover .input-icon,.input-custom-group.valid-focus-out:hover .input-label-counter,.input-custom-group.valid-focus-out:hover .input-password-eye,.input-custom-group.valid-focus-out:hover app-ca-input-password,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.valid-focus-out:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.valid-focus-out:hover .input-clear:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-icon:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-label-counter:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-password-eye:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-password:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-clear:hover~.input-control{background-color:#c5d8f3}.input-custom-group.valid-focus-out:hover .input-clear:before:hover,.input-custom-group.valid-focus-out:hover .input-clear:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-pen-container:before:hover,.input-custom-group.valid-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-icon:before:hover,.input-custom-group.valid-focus-out:hover .input-icon:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-label-counter:before:hover,.input-custom-group.valid-focus-out:hover .input-label-counter:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-password-eye:before:hover,.input-custom-group.valid-focus-out:hover .input-password-eye:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-password:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-clear:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-clear:after:hover~.input-control{background-color:#c5d8f3}.input-custom-group.valid-focus-out:hover .input-label-counter{display:flex}.input-custom-group.valid-focus-out:hover .input-required-check{display:none}.input-custom-group.valid-focus-in:hover{transition:.3s ease-in-out}.input-custom-group.valid-focus-in:hover .trash-can-svg:hover~.input-control,.input-custom-group.valid-focus-in:hover .input-password-eye:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-password:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-clear:hover~.input-control{background-color:#255bb9}.input-custom-group.valid-focus-in:hover .trash-can-svg:before:hover,.input-custom-group.valid-focus-in:hover .trash-can-svg:after:hover~.input-control,.input-custom-group.valid-focus-in:hover .input-password-eye:before:hover,.input-custom-group.valid-focus-in:hover .input-password-eye:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-password:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-clear:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-clear:after:hover~.input-control{background-color:#255bb9}.input-custom-group.inactive-filled:hover .input-clear,.input-custom-group.inactive-filled:hover .trash-can-svg,.input-custom-group.inactive-filled:hover .input-pen-container,.input-custom-group.inactive-filled:hover .input-dropdown-arrow,.input-custom-group.inactive-filled:hover .input-icon,.input-custom-group.inactive-filled:hover .input-password-eye,.input-custom-group.inactive-filled:hover app-ca-input-password,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon,.input-custom-group.inactive-filled:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.inactive-filled:hover .input-clear:hover~.input-control,.input-custom-group.inactive-filled:hover .trash-can-svg:hover~.input-control,.input-custom-group.inactive-filled:hover .input-pen-container:hover~.input-control,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.inactive-filled:hover .input-icon:hover~.input-control,.input-custom-group.inactive-filled:hover .input-password-eye:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-password:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-clear:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-filled:hover .input-clear:before:hover,.input-custom-group.inactive-filled:hover .input-clear:after:hover~.input-control,.input-custom-group.inactive-filled:hover .trash-can-svg:before:hover,.input-custom-group.inactive-filled:hover .trash-can-svg:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-pen-container:before:hover,.input-custom-group.inactive-filled:hover .input-pen-container:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:before:hover,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-icon:before:hover,.input-custom-group.inactive-filled:hover .input-icon:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-password-eye:before:hover,.input-custom-group.inactive-filled:hover .input-password-eye:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-password:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-clear:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-clear:after:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-empty:hover .input-clear,.input-custom-group.inactive-empty:hover .input-pen-container,.input-custom-group.inactive-empty:hover .input-dropdown-arrow,.input-custom-group.inactive-empty:hover .input-icon,.input-custom-group.inactive-empty:hover .input-password-eye,.input-custom-group.inactive-empty:hover app-ca-input-password,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon,.input-custom-group.inactive-empty:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.inactive-empty:hover .input-clear:hover~.input-control,.input-custom-group.inactive-empty:hover .input-pen-container:hover~.input-control,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.inactive-empty:hover .input-icon:hover~.input-control,.input-custom-group.inactive-empty:hover .input-password-eye:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-password:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-clear:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-empty:hover .input-clear:before:hover,.input-custom-group.inactive-empty:hover .input-clear:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-pen-container:before:hover,.input-custom-group.inactive-empty:hover .input-pen-container:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:before:hover,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-icon:before:hover,.input-custom-group.inactive-empty:hover .input-icon:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-password-eye:before:hover,.input-custom-group.inactive-empty:hover .input-password-eye:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-password:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-clear:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-clear:after:hover~.input-control{background-color:#f7f7f7}.input-custom-group .input-label{position:absolute;top:4px;left:6px;font-size:14px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;transition:.3s ease-in-out}.input-custom-group .input-label span::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.input-custom-group .input-label span::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.input-custom-group .input-label.required:after{content:\" *\";color:#ef5350}.input-custom-group .input-label.inactive-empty{color:#919191!important}.input-custom-group .input-label.up-label{top:-17px;left:6px;font-size:11px;font-weight:600}.input-custom-group .input-label.in-label{top:4px!important;font-size:11px!important;font-weight:600!important;transition:none!important}.input-custom-group .input-label.in-label.in-label-focus{color:#fff!important}.input-custom-group .input-label.no-transition{transition:none!important}.input-custom-group .input-label.input-placeholderIcon-on{left:37px}.input-custom-group .input-label.input-placeholderIcon-on.up-label{left:36px}.input-custom-group .input-label.hidden{display:none!important}.input-custom-group .input-label.required-label span{color:#df3c3c}.input-custom-group .input-label.load-shipper .load-shipper{display:grid;grid-template-columns:455px 120px;align-items:center}.input-custom-group .input-label.load-shipper .load-shipper span:nth-child(2){text-align:right;color:#6c6c6c;font-size:11px;font-weight:600}.input-custom-group .input-label.load-shipper.required:after{position:absolute;right:0;left:60px;top:0}.input-custom-group .input-label.load-shipper.multiple-labels.required:after,.input-custom-group .input-label.load-shipper.up-label.required:after{transition-delay:.1s;transition-timing-function:ease-in;position:absolute;right:0;left:48px;top:0}.input-custom-group .input-label .load-dispatches-ttd{display:grid;grid-template-columns:92px 89px 182px 53px;align-items:center;-moz-column-gap:65px;grid-column-gap:65px;column-gap:65px}.input-custom-group .input-label .load-dispatches-ttd span:nth-child(4){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label .load-dispatches-ttd.multiple-labels-position-on-focus span:nth-child(4){transition-delay:.3s;color:#6c6c6c!important;opacity:1;top:-19px}.input-custom-group .input-label.dropdown-double-column>*{display:grid;grid-template-columns:118px 1fr;align-items:center;-moz-column-gap:4px;grid-column-gap:4px;column-gap:4px}.input-custom-group .input-label.dropdown-triple-column>*{display:grid;grid-template-columns:220px 138px 220px;align-items:center;-moz-column-gap:4px;grid-column-gap:4px;column-gap:4px}.input-custom-group .input-label.load-broker .load-broker{display:grid;align-items:center;grid-template-columns:277px 82px 69px}.input-custom-group .input-label.load-broker .load-broker span:nth-child(2),.input-custom-group .input-label.load-broker .load-broker span:nth-child(3){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label.load-broker .load-broker.multiple-labels-position-on-focus span:nth-child(2),.input-custom-group .input-label.load-broker .load-broker.multiple-labels-position-on-focus span:nth-child(3){transition-delay:.3s;color:#919191!important;opacity:1;top:-19px;text-align:right}.input-custom-group .input-label.load-broker.required:after{position:absolute;left:51px;right:0;top:-1px}.input-custom-group .input-label.load-broker.multiple-labels.required:after,.input-custom-group .input-label.load-broker.up-label.required:after{transition-delay:.1s;transition-timing-function:ease-in;position:absolute;left:44px;right:0;top:-1px}.input-custom-group .input-label .load-broker-contact,.input-custom-group .input-label .load-shipper-contact{display:grid;grid-template-columns:235px 38px;align-items:center;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;transition:.3 ease-in-out}.input-custom-group .input-label .load-broker-contact span:nth-child(2),.input-custom-group .input-label .load-shipper-contact span:nth-child(2){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label .load-broker-contact.multiple-labels-position-on-focus span:nth-child(2),.input-custom-group .input-label .load-shipper-contact.multiple-labels-position-on-focus span:nth-child(2){transition-delay:.3s;opacity:1;top:-19px;color:#6c6c6c!important}.input-custom-group .input-label.load-shipper-contact .load-shipper-contact{grid-template-columns:295px 38px}.input-custom-group .input-label.regular{font-weight:400}.input-custom-group .input-label.datetimeclass.dark{color:#fff}.input-custom-group .hide-loads .load-broker{grid-template-columns:365px 92px}.input-custom-group .input-control{width:100%;height:26px;border:none;outline:none;border-radius:2px;padding:4px 6px;font-size:14px;font-weight:400;background-color:#eee;color:#2f2f2f;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.input-custom-group .input-control::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.center{text-align:center}.input-custom-group .input-control.uppercase{text-transform:uppercase}.input-custom-group .input-control.lowercase{text-transform:lowercase}.input-custom-group .input-control:hover{background-color:#dadada}.input-custom-group .input-control:focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .input-control:focus::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::-moz-placeholder{color:#fff6}.input-custom-group .input-control:focus:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::placeholder{color:#fff6}.input-custom-group .input-control:focus::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control:focus::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control:focus.blue-dropdown{background-color:#0b49d1}.input-custom-group .input-control.valid-focus-in,.input-custom-group .input-control.dropdown-placeholder-active,.input-custom-group .input-control.multiSelect-dropdown-active{background-color:#255bb9;color:#fff}.input-custom-group .input-control.valid-focus-in::-webkit-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-webkit-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-webkit-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-moz-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-moz-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-moz-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in:-ms-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active:-ms-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active:-ms-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-ms-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-ms-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-ms-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::placeholder,.input-custom-group .input-control.dropdown-placeholder-active::placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-moz-selection,.input-custom-group .input-control.dropdown-placeholder-active::-moz-selection,.input-custom-group .input-control.multiSelect-dropdown-active::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.valid-focus-in::selection,.input-custom-group .input-control.dropdown-placeholder-active::selection,.input-custom-group .input-control.multiSelect-dropdown-active::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.valid-focus-out-filled{background-color:#e2ecf9;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled.input-dropdown-table{background-color:#fff}.input-custom-group .input-control.valid-focus-out-filled::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled:hover{background-color:#c5d8f3}.input-custom-group .input-control.invalid-focus-in,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in{background-color:#e22e22;color:#fff}.input-custom-group .input-control.invalid-focus-in::-moz-selection,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.invalid-focus-in::selection,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.invalid-focus-out-filled,.input-custom-group .input-control.invalid-focus-out-empty{background-color:#fae3e3;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled::-moz-selection,.input-custom-group .input-control.invalid-focus-out-empty::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled::selection,.input-custom-group .input-control.invalid-focus-out-empty::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled:hover,.input-custom-group .input-control.invalid-focus-out-empty:hover{background-color:#f5c7c7}.input-custom-group .input-control.invalid-focus-out-empty-table:hover{color:#2f2f2f;background-color:#f5c7c7}.input-custom-group .input-control.inactive-empty{background-color:#f7f7f7;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled{background-color:#f7f7f7;color:#2f2f2f;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.inactive-filled::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.datetimeclass:not(.inactive-filled){letter-spacing:1px;pointer-events:none;opacity:0}.input-custom-group .input-control.has-placeholderIcon{padding-left:37px}.input-custom-group .input-control.dropdown-input-image-truck{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-webkit-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-moz-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus:-ms-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-ms-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-trailer{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-webkit-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-moz-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus:-ms-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-ms-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-color{padding-left:29px}.input-custom-group .input-control.dropdown-input-image-user{padding-left:30px}.input-custom-group .input-control.dropdown-input-image-pm{padding-left:37px}.input-custom-group .input-control.dropdown-input-image-without-text-transparent,.input-custom-group .input-control.multiple-input-values{color:transparent}.input-custom-group .input-control.input-32-font-20{font-weight:700;font-size:20px}.input-custom-group .input-control.details-pages{height:32px;background:#1d1d1d;color:#fff6}.input-custom-group .input-control.details-pages .input-dropdown-arrow:hover,.input-custom-group .input-control.details-pages:hover{background:#1d1d1d}.input-custom-group .input-control.details-pages::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::-moz-placeholder{color:#fff6}.input-custom-group .input-control.details-pages:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::placeholder{color:#fff6}.input-custom-group .input-control.disable-select-on-focus-out::-moz-selection{background-color:transparent}.input-custom-group .input-control.disable-select-on-focus-out::selection{background-color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-webkit-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-moz-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input:-ms-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-ms-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::placeholder{opacity:0;color:transparent}.input-custom-group .input-control.multiple-input-placeholder{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.load-dispatches-ttd,.input-custom-group .input-control.load-broker,.input-custom-group .input-control.load-shipper,.input-custom-group .input-control.load-shipper-contact{position:absolute;bottom:1.5px;background-color:transparent;display:grid;align-items:center}.input-custom-group .input-control.load-dispatches-ttd span,.input-custom-group .input-control.load-broker span,.input-custom-group .input-control.load-shipper span,.input-custom-group .input-control.load-shipper-contact span{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.double-text-dropdown{position:absolute;top:50%;transform:translateY(-48%);background-color:transparent;display:flex;align-items:center;justify-content:space-between;padding-right:26px}.input-custom-group .input-control.double-text-dropdown span:last-child .multiple-input-text{color:#919191;font-size:11px;font-weight:400}.input-custom-group .input-control.double-text-dropdown span:last-child .multiple-input-text.focusable-text{color:#6f9ee0;font-size:11px;font-weight:400}.input-custom-group .input-control.double-text-dropdown span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd{grid-template-columns:repeat(2,156px) 150px 122px;padding-top:3px}.input-custom-group .input-control.load-dispatches-ttd svg{height:16px;width:44px}.input-custom-group .input-control.load-dispatches-ttd svg path{fill:#919191}.input-custom-group .input-control.load-dispatches-ttd span:nth-child(1) .multiple-input-text,.input-custom-group .input-control.load-dispatches-ttd span:nth-child(2) .multiple-input-text{max-width:70px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.input-custom-group .input-control.load-dispatches-ttd span:nth-child(3) .multiple-input-text{max-width:100px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.input-custom-group .input-control.load-dispatches-ttd span:last-child{justify-content:flex-end}.input-custom-group .input-control.load-dispatches-ttd span:last-child .multiple-input-text{color:#919191!important;font-size:11px;font-weight:400;line-height:24px}.input-custom-group .input-control.load-dispatches-ttd span:last-child .multiple-input-text.focusable-text{color:#6f9ee0;font-size:11px;font-weight:400}.input-custom-group .input-control.load-dispatches-ttd span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd span span{line-height:23px;position:relative}.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9856,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9857,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9858,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg path{fill:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd .focusable-image{opacity:.6}.input-custom-group .input-control.load-dispatches-ttd .trailerContainer{width:max-content!important;padding:0!important;margin:0!important}.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9856,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9857,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9858,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg path{fill:#6f9ee0}.input-custom-group .input-control.load-broker{display:grid;grid-template-columns:229px 115px 48px;align-items:center;height:24px}.input-custom-group .input-control.load-broker span:nth-child(1){white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.input-custom-group .input-control.load-broker span:nth-child(2),.input-custom-group .input-control.load-broker span:nth-child(3){justify-content:flex-end}.input-custom-group .input-control.load-broker span:nth-child(3){position:relative;bottom:1px}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter.counter-focus{color:#6f9ee0;background-color:#6f9ee033}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter.counter-one{max-width:none!important;width:19px!important}.input-custom-group .input-control.load-broker-contact,.input-custom-group .input-control.load-shipper-contact{position:absolute;top:50%;transform:translateY(-50%);background-color:transparent!important;display:grid;grid-template-columns:165px 94px;align-items:center;grid-column-gap:20px;-moz-column-gap:20px;column-gap:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px;padding-right:35px}.input-custom-group .input-control.load-broker-contact span,.input-custom-group .input-control.load-shipper-contact span{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.load-broker-contact span span,.input-custom-group .input-control.load-shipper-contact span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.load-broker-contact span:nth-child(2),.input-custom-group .input-control.load-shipper-contact span:nth-child(2){justify-self:flex-end;font-size:11px;font-weight:400;line-height:24px}.input-custom-group .input-control.load-broker-contact span:nth-child(2) span,.input-custom-group .input-control.load-shipper-contact span:nth-child(2) span{color:#919191!important}.input-custom-group .input-control.text-suffix{position:absolute;top:50%;transform:translateY(-50%);background-color:transparent!important;display:flex;align-items:center;column-gap:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px;padding-right:35px}.input-custom-group .input-control.text-suffix span{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.text-suffix span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.text-suffix span:nth-child(2){justify-self:flex-end;font-size:14px;font-weight:400;line-height:18px}.input-custom-group .input-control.text-suffix span:nth-child(2) span:not(.focusable-text){color:#919191!important}.input-custom-group .input-control.text-suffix span:nth-child(2) span:not(.focusable-text):before{content:\"\\2022 \"}.input-custom-group .input-control.text-suffix span:nth-child(2) span.ca-add-dot:before{content:\"\\2022 \"}.input-custom-group .input-control.load-shipper-contact{grid-template-columns:283px 38px}.input-custom-group .input-control.load-shipper{grid-template-columns:394px 180px;-moz-column-gap:2px;column-gap:2px;padding-right:25px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px}.input-custom-group .input-control.load-shipper span:nth-child(2),.input-custom-group .input-control.load-shipper span:nth-child(3){justify-content:flex-end;font-size:11px;color:#919191!important;font-weight:400}.input-custom-group .input-control.load-shipper span:nth-child(2) span{color:#919191!important}.input-custom-group .input-control.load-shipper span:nth-child(2) span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;position:relative;bottom:1px}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter.counter-focus{color:#6f9ee0;background-color:#6f9ee033}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter.counter-one{max-width:none!important;width:19px!important}.input-custom-group .input-control.load-shipper span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.cursor-on-right-side{text-align:right;padding-right:32px}.input-custom-group .input-control.merge-dropdown-body-with-input::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::-moz-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::placeholder{color:#fff6}.input-custom-group .input-control.input-commands{background-color:#1d1d1d!important;color:#fff!important}.input-custom-group .input-control.input-commands.blue-commands{background-color:#0b49d1!important}.input-custom-group .input-control.dropdown-label-active{background-color:#1d1d1d!important;color:#fff!important}.input-custom-group .input-control.dispatch-dropdown{width:calc(100% - 24px);background-color:#2f2f2f!important}.input-custom-group input[type=number]::-webkit-inner-spin-button,.input-custom-group input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0!important}.input-custom-group input[type=number]::-webkit-inner-spin-button:hover,.input-custom-group input[type=number]::-webkit-outer-spin-button:hover,.input-custom-group input[type=number]::-webkit-inner-spin-button:focus,.input-custom-group input[type=number]::-webkit-outer-spin-button:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0!important}.input-custom-group input[type=number]{-moz-appearance:textfield!important}.input-custom-group input[type=number]:hover,.input-custom-group input[type=number]:focus{-moz-appearance:textfield!important}.input-custom-group .load-dispatches-ttd-owner{position:absolute;left:13px;bottom:7px;width:10px;height:10px}.input-custom-group .load-dispatches-ttd-owner svg{width:10px!important;height:10px!important}.input-custom-group .time-picker-opacity{opacity:1!important}.input-custom-group .dispatch-history-default-color{background:#f7f7f7!important;transition:background .3s ease-in-out}.input-custom-group .dispatch-history-row-hover{background:#eee!important;transition:background .3s ease-in-out}.input-custom-group .input-required-check{position:absolute;right:6px;width:14px;height:10px;display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-required-check svg path{fill:#6f9ee0}.input-custom-group .input-clear{position:absolute;right:4px;top:47%;transform:translateY(-50%);border-radius:1px;display:none;z-index:10;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-clear .input-clear-x svg{width:18px!important;height:18px!important;overflow:visible}.input-custom-group .input-clear .input-clear-x svg path{fill:#eee}.input-custom-group .input-clear .input-clear-x svg rect{fill:#919191;transition:transform .3s;transform:scale(1);transform-origin:center}.input-custom-group .input-clear .input-clear-x:hover svg{overflow:visible}.input-custom-group .input-clear .input-clear-x:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#424242}.input-custom-group .input-clear.datetimeclass{z-index:22!important}.input-custom-group .input-clear.focus{display:inline-block}.input-custom-group .input-clear.focus .input-clear-x svg path{fill:#1d1d1d}.input-custom-group .input-clear.focus .input-clear-x svg rect{fill:#aaa}.input-custom-group .input-clear.focus .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.valid-focus-in{display:inline-block}.input-custom-group .input-clear.valid-focus-in .input-clear-x svg path{fill:#255bb9}.input-custom-group .input-clear.valid-focus-in .input-clear-x svg rect{fill:#c5d8f3}.input-custom-group .input-clear.valid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.valid-focus-out .input-clear-x svg path{fill:#c5d8f3}.input-custom-group .input-clear.valid-focus-out .input-clear-x svg rect{fill:#6f9ee0}.input-custom-group .input-clear.valid-focus-out .input-clear-x:hover svg rect{fill:#3074d3}.input-custom-group .input-clear.invalid-focus-in{display:inline-block}.input-custom-group .input-clear.invalid-focus-in .input-clear-x svg path{fill:#e22e22}.input-custom-group .input-clear.invalid-focus-in .input-clear-x svg rect{fill:#f5c7c7}.input-custom-group .input-clear.invalid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.invalid-focus-out .input-clear-x svg path{fill:#f5c7c7}.input-custom-group .input-clear.invalid-focus-out .input-clear-x svg rect{fill:#e57373}.input-custom-group .input-clear.invalid-focus-out .input-clear-x:hover svg rect{fill:#ef5350}.input-custom-group .input-clear.incorrect-input{display:none}.input-custom-group .input-clear.incorrect-input .input-clear-x svg path{fill:#ef5350!important}.input-custom-group .input-clear.incorrect-input .input-clear-x svg rect{fill:transparent!important}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover{display:inline-block}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover svg rect{fill:#ef5350!important}.input-custom-group .input-clear.incorrect-input-on{display:inline-block}.input-custom-group .input-clear.incorrect-input-on .input-clear-x svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x svg rect{fill:#e57373!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x:hover svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x:hover svg rect{fill:#ef5350!important}.input-custom-group .input-clear.dropdown-on{right:27px!important;top:50%;transform:translateY(-50%)}.input-custom-group .input-clear.dropdown-on svg-icon{display:flex}.input-custom-group .input-clear.hidden{display:none}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg{width:20px!important;height:20px!important;position:relative;left:1px}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg path{fill:#aaa}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg rect{fill:#aaa}.input-custom-group .input-clear.trash-can-svg .input-clear-x:hover svg path{fill:#919191}.input-custom-group .input-clear.trash-can-svg .input-clear-x:hover svg rect{fill:#919191}.input-custom-group .input-clear.trash-can-svg:before{content:\"\";display:block;height:16px;width:1px;border-radius:3px;background-color:#91919166;position:absolute;right:22px;top:56%;transform:translateY(-50%)}.input-custom-group .input-clear.trash-can-svg.valid-focus-in{display:none}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x svg path{fill:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x svg rect{fill:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x:hover svg path{fill:#fff}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.trash-can-svg.valid-focus-in:before{background-color:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x svg path{fill:#6f9ee0}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x svg rect{fill:#6f9ee0}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x:hover svg path{fill:#3074d3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x:hover svg rect{fill:#3074d3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out:before{background-color:#6f9ee066}.input-custom-group .input-clear-dispatch{position:absolute;right:0;top:47%;display:flex;justify-content:center;align-items:center;width:26px;height:26px;transform:translateY(-50%);border-radius:2px;z-index:10;cursor:pointer;transition:background .3s ease-in-out}.input-custom-group .input-clear-dispatch svg-icon svg{display:flex;width:12px!important;height:12px!important}.input-custom-group .input-clear-dispatch svg-icon svg path{fill:#919191;transition:fill .3s ease-in-out}.input-custom-group .input-clear-dispatch:hover{background-color:#91919166}.input-custom-group .input-clear-dispatch:hover svg-icon svg path{fill:#dadada}.input-custom-group .input-icon{position:absolute;left:6px;top:47%;transform:translateY(-50%);z-index:10;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:.3s ease-in-out}.input-custom-group .input-icon svg-icon svg{width:18px;height:18px}.input-custom-group .input-icon.datetimeclass{z-index:21}.input-custom-group .input-icon.default-svg-color svg path{fill:#919191}.input-custom-group .input-icon.cursor-pointer{cursor:pointer}.input-custom-group .input-icon:after{content:\"\";display:block;height:15px;width:1px;border-radius:3px;background:#91919166;position:absolute;left:21px;top:55%;transform:translateY(-50%)}.input-custom-group .input-icon.focus svg path{fill:#ccc}.input-custom-group .input-icon.focus text{fill:#ccc}.input-custom-group .input-icon.focus:after{background:#ccc6}.input-custom-group .input-icon.valid-focus-in svg path{fill:#98b9ea}.input-custom-group .input-icon.valid-focus-in text{fill:#98b9ea}.input-custom-group .input-icon.valid-focus-in:after{background:#c5d8f3}.input-custom-group .input-icon.valid-focus-out svg path{fill:#6692f1}.input-custom-group .input-icon.valid-focus-out text{fill:#6f9ee0}.input-custom-group .input-icon.valid-focus-out:after{background-color:#6f9ee066}.input-custom-group .input-icon.valid-focus-out-dropdown-label:after{background-color:#6f9ee066}.input-custom-group .input-icon.invalid-focus-in svg path{fill:#ffb0a8}.input-custom-group .input-icon.invalid-focus-in text{fill:#ffb0a8}.input-custom-group .input-icon.invalid-focus-in:after{background-color:#f5c7c7}.input-custom-group .input-icon.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-icon.invalid-focus-out text{fill:#e57373}.input-custom-group .input-icon.invalid-focus-out:after{background:#e5737366}.input-custom-group .input-icon.inactive-empty svg path{fill:#ccc}.input-custom-group .input-icon.inactive-filled svg path{fill:#aaa}.input-custom-group .input-icon.inactive-filled:after{background-color:#aaa6}.input-custom-group .input-icon.discolor-placeholder svg path{fill:#919191}.input-custom-group .input-icon.load-adjusted-rate svg path{fill:#ffa726}.input-custom-group .input-icon.load-advance-rate svg path{fill:#4db6a2}.input-custom-group .input-icon.hidden{display:none!important}.input-custom-group .input-dropdown-arrow{display:inline-block;position:absolute;right:6px;top:50%;transform:translateY(-50%);width:14px;height:14px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:10;cursor:pointer}.input-custom-group .input-dropdown-arrow svg{display:flex;width:100%;transform:rotate(0);transition:.3s ease-in-out}.input-custom-group .input-dropdown-arrow svg path{fill:#919191}.input-custom-group .input-dropdown-arrow:hover svg path{fill:#424242}.input-custom-group .input-dropdown-arrow.datetimeclass{z-index:22!important}.input-custom-group .input-dropdown-arrow.focus svg{transform:rotate(180deg);transition:.3s ease-in-out}.input-custom-group .input-dropdown-arrow.focus svg path{fill:#ccc}.input-custom-group .input-dropdown-arrow.focus:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-dropdown-arrow.invalid-focus-out:hover svg path{fill:#ef5350}.input-custom-group .input-dropdown-arrow.invalid-focus-in svg path,.input-custom-group .input-dropdown-arrow.invalid-search-in-dropdown-focus-in svg path{fill:#f5c7c7}.input-custom-group .input-dropdown-arrow.invalid-focus-in:hover svg path,.input-custom-group .input-dropdown-arrow.invalid-search-in-dropdown-focus-in:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.valid-focus-in svg path{fill:#c5d8f3}.input-custom-group .input-dropdown-arrow.valid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.valid-focus-out svg path{fill:#6692f1}.input-custom-group .input-dropdown-arrow.valid-focus-out:hover svg path{fill:#3074d3}.input-custom-group .input-error{position:absolute;top:100%;right:5px;color:#ef5350;font-size:11px;font-weight:600;line-height:14px;display:inline-block}.input-custom-group .input-error::-moz-selection{background-color:#ef535033;color:#ef5350}.input-custom-group .input-error::selection{background-color:#ef535033;color:#ef5350}.input-custom-group .error-inside-input{position:absolute;right:32px;font-weight:600;font-size:11px;line-height:14px;color:#df3c3c;top:24%;pointer-events:none}.input-custom-group .input-password-eye{display:none;width:18px;height:18px;position:absolute;left:6px;top:50%;transform:translateY(-50%);padding-top:0;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-password-eye svg{width:18px;height:18px;position:absolute;bottom:0}.input-custom-group .input-password-eye svg path{fill:#919191}.input-custom-group .input-password-eye:after{content:\"\";display:block;height:15px;width:1px;border-radius:3px;background:#91919166;position:absolute;left:24px;top:52%;transform:translateY(-50%)}.input-custom-group .input-password-eye.visible{display:inline-block}.input-custom-group .input-password-eye.inactive svg path{fill:#ccc}.input-custom-group .input-password-eye.inactive:after{background-color:#aaa6}.input-custom-group .input-password-eye.valid-focus-out svg path{fill:#6f9ee0}.input-custom-group .input-password-eye.valid-focus-out:hover svg path{fill:#3074d3}.input-custom-group .input-password-eye.valid-focus-out:after{background-color:#6f9ee066}.input-custom-group .input-password-eye.valid-focus-in{display:inline-block}.input-custom-group .input-password-eye.valid-focus-in svg path{fill:#98b9ea}.input-custom-group .input-password-eye.valid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-password-eye.valid-focus-in:after{background-color:#c5d8f3}.input-custom-group .input-password-eye.invalid-focus-out svg{transition:.3s ease-in-out}.input-custom-group .input-password-eye.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-password-eye.invalid-focus-out:hover svg path{fill:#ef5350}.input-custom-group .input-password-eye.invalid-focus-out:after{background-color:#e5737366}.input-custom-group .input-password-eye.invalid-focus-in svg{transition:.3s ease-in-out}.input-custom-group .input-password-eye.invalid-focus-in svg path{fill:#ffb0a8}.input-custom-group .input-password-eye.invalid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-password-eye.invalid-focus-in:after{background-color:#f5c7c7}@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}}.input-custom-group .date_time_holder{display:flex;align-items:center;position:absolute;top:0;width:100%;height:100%;padding:0 6px;opacity:0;z-index:20;cursor:text}.input-custom-group .date_time_holder span{position:relative;line-height:14px;display:flex;height:100%;align-items:center;z-index:10}.input-custom-group .date_time_holder span .border-picker{position:absolute;top:0;left:50%;transform:translate(-50%);height:100%;display:flex;align-items:center;justify-content:center;width:0px}.input-custom-group .date_time_holder span::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder span div::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder::selection{background-color:transparent!important;color:#fff}.input-custom-group .date_time_holder span.main{padding:0 2px;outline:none;font-size:14px;z-index:11}.input-custom-group .date_time_holder span.main::selection{z-index:10}.input-custom-group .date_time_holder span.main:first-child{padding-left:4px}.input-custom-group .date_time_holder span.reset-selection-color::selection{background-color:transparent!important;color:#2f2f2f!important}.input-custom-group .date_time_holder.focus{opacity:1;padding-left:35px}.input-custom-group .date_time_holder.focus span:nth-child(2){z-index:12;pointer-events:none}.input-custom-group .date_time_holder.focus span:nth-child(3){z-index:13}.input-custom-group .date_time_holder.focus span:nth-child(4){z-index:14;pointer-events:none}.input-custom-group .date_time_holder.focus span:nth-child(5){z-index:15}.input-custom-group .date_time_holder.valid-focus-out-filled{opacity:1}.input-custom-group .date_time_holder.valid-focus-out-filled span,.input-custom-group .date_time_holder.valid-focus-out-filled span .border-picker{color:#2f2f2f!important;-webkit-user-select:none;user-select:none}.input-custom-group .date_time_holder.dark.valid-focus-out-filled{background:#3b73ed33!important}.input-custom-group .date_time_holder.dark.valid-focus-out-filled span,.input-custom-group .date_time_holder.dark.valid-focus-out-filled span .border-picker{color:#fff!important}.input-custom-group .date_time_holder.dark.valid-focus-out-filled:hover{background:#3b73ed66!important}.input-custom-group .date_time_holder.dark.valid-focus-in{background:#0b49d1!important}.input-custom-group .date_time_holder.dark.valid-focus-in span,.input-custom-group .date_time_holder.dark.valid-focus-in span .border-picker{color:#fff!important}.input-custom-group .date_time_holder.focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .date_time_holder.valid-focus-in{opacity:1}.input-custom-group .date_time_holder.valid-focus-in::selection,.input-custom-group .date_time_holder.valid-focus-in div::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder.invalid-focus-out-filled{opacity:1}.input-custom-group .date_time_holder.date_time_holder_bank_card span.main{padding:0 3px}.input-custom-group .ca-placeholder-text{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;top:50%;transform:translateY(-50%);color:#919191;font-weight:400;font-size:14px;line-height:18px;padding-left:1px}.input-custom-group .ca-placeholder-text svg text{fill:#919191}.input-custom-group .ca-placeholder-text.inactive-filled{color:#aaa}.input-custom-group .ca-placeholder-text.inactive-filled svg text{fill:#aaa}.input-custom-group .ca-placeholder-text.focus{color:#919191}.input-custom-group .ca-placeholder-text.focus svg text{fill:#919191}.input-custom-group .ca-placeholder-text.valid-focus-in{color:#c5d8f3}.input-custom-group .ca-placeholder-text.valid-focus-in svg text{fill:#c5d8f3}.input-custom-group .ca-placeholder-text.valid-focus-out{color:#919191}.input-custom-group .ca-placeholder-text.valid-focus-out svg text{fill:#919191}.input-custom-group .ca-placeholder-text.invalid-focus-in{color:#f5c7c7}.input-custom-group .ca-placeholder-text.invalid-focus-in svg text{fill:#f5c7c7}.input-custom-group .ca-placeholder-text.invalid-focus-out{color:#919191}.input-custom-group .ca-placeholder-text.invalid-focus-out svg text{fill:#919191}.input-custom-group .input-invalid-danger-mark{position:absolute;right:5px;top:48%;transform:translateY(-50%);line-height:13.3px}.input-custom-group .input-invalid-danger-mark svg{width:13.3px;height:13.3px}.input-custom-group .input-invalid-danger-mark svg path{fill:#e57373}.input-custom-group .password-capslock{position:absolute;right:5px;top:-16px;color:#ffb74d;font-size:11px;font-weight:600;margin:0;padding:0;-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.input-custom-group .ta-input-commands{display:flex;align-items:center;gap:4px;position:absolute;right:4px}.input-custom-group .ta-input-commands:before{content:attr(data-before-content);color:#919191;font-weight:400;font-size:14px;line-height:18px}.input-custom-group .ta-input-commands .ta-input-command-first{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands .ta-input-command-second{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands .ta-input-command-third{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third svg rect{fill:none}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third svg path{fill:#6692f1}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#6692f1}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg path{fill:#bed0f9}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third svg rect{fill:#ffffffb2}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first svg path,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second svg path,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third svg path{fill:#0b49d1}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first:hover svg,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second:hover svg,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first:hover svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second:hover svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s}.input-custom-group .input-label-counter{position:absolute;display:flex;align-items:center;justify-content:center;width:22px;height:18px;font-size:11px;font-weight:700;color:#424242;background-color:#42424233;border-radius:9px;margin:0;padding-left:.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-loading-spinner{position:absolute;right:6px;bottom:3px}.input-custom-group .input-pen-container{position:absolute;right:50px;top:46%;transform:translateY(-50%);display:none;z-index:10;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-pen-container .input-pen svg{width:18px!important;height:18px!important;overflow:visible}.input-custom-group .input-pen-container .input-pen svg path{fill:#c5d8f3}.input-custom-group .input-pen-container .input-pen svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#6f9ee0}.input-custom-group .input-pen-container .input-pen:hover svg{overflow:visible}.input-custom-group .input-pen-container .input-pen:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#3074d3}.input-custom-group .dropdown-selected-image{position:absolute;left:6px;top:48%;transform:translateY(-50%);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .dropdown-selected-image.truck-make svg path{fill:#6c6c6c}.input-custom-group .dropdown-selected-image.trailer-make svg path{fill:#6c6c6c}.input-custom-group .dropdown-selected-image.name-initials-instead-url{width:18px;height:18px;border-radius:50%;object-fit:cover;top:50%;transform:translateY(-50%)}.input-custom-group .dropdown-selected-image.load-broker{height:26px}.input-custom-group .dropdown-selected-image.load-broker svg{height:18px}.input-custom-group .dropdown-selected-image.load-broker.medium svg #Path_33564{fill:#ffb74d}.input-custom-group .dropdown-selected-image.load-broker.low svg #Path_33564{fill:#e57373}.input-custom-group .dropdown-selected-image.semitruck svg path,.input-custom-group .dropdown-selected-image.semisleeper svg path,.input-custom-group .dropdown-selected-image.boxtruck svg path,.input-custom-group .dropdown-selected-image.reefertruck svg path,.input-custom-group .dropdown-selected-image.cargovan svg path,.input-custom-group .dropdown-selected-image.dumptruck svg path,.input-custom-group .dropdown-selected-image.cementtruck svg path,.input-custom-group .dropdown-selected-image.garbagetruckm .input-custom-group .dropdown-selected-image.towtruck svg path,.input-custom-group .dropdown-selected-image.carhauler svg path,.input-custom-group .dropdown-selected-image.spotter svg path,.input-custom-group .dropdown-selected-image.flatbed svg path,.input-custom-group .dropdown-selected-image.stepdeck svg path,.input-custom-group .dropdown-selected-image.lowboyrgn svg path,.input-custom-group .dropdown-selected-image.chassis svg path,.input-custom-group .dropdown-selected-image.conestoga svg path,.input-custom-group .dropdown-selected-image.sidekit svg path,.input-custom-group .dropdown-selected-image.container svg path,.input-custom-group .dropdown-selected-image.dryvan svg path,.input-custom-group .dropdown-selected-image.reefer svg path,.input-custom-group .dropdown-selected-image.enddump svg path,.input-custom-group .dropdown-selected-image.bottomdump svg path,.input-custom-group .dropdown-selected-image.hopper svg path,.input-custom-group .dropdown-selected-image.tanker svg path,.input-custom-group .dropdown-selected-image.pneumatictanker svg path,.input-custom-group .dropdown-selected-image.carhaulerstigner svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9856,.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9857,.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9858,.input-custom-group .dropdown-selected-image.unset-color svg path{fill:#fff6!important}.input-custom-group .placeholder-icon-right-side{position:absolute;right:4px}.input-custom-group .placeholder-icon-right-side.green svg path{fill:#4db6a2}.input-custom-group .placeholder-icon-right-side.purple svg path{fill:#ba68c8}.input-custom-group .placeholder-icon-right-side.blue svg path{fill:#6f9ee0}.input-custom-group .placeholder-icon-right-side.orange svg path{fill:#f89b2e}.input-custom-group .placeholder-icon-right-side.red svg path{fill:#e66767}.input-custom-group .placeholder-icon-right-side:before{content:\"\";display:block;height:15px;width:1px;border-radius:3px;position:absolute;right:22px;top:55%;transform:translateY(-50%);background-color:#91919166}.input-custom-group .placeholder-icon-right-side.focus:before{background-color:#ccc6}.input-custom-group .placeholder-icon-right-side.valid-focus-out:before{background-color:#6f9ee066}.input-custom-group .placeholder-icon-right-side.valid-focus-in:before{background-color:#c5d8f3}.input-custom-group .placeholder-icon-right-side.invalid-focus-out:before{background-color:#e5737366}.input-custom-group .placeholder-icon-right-side.invalid-focus-in:before{background-color:#f5c7c7}.input-fixed-placehoder-label{color:#919191;position:absolute;right:0;font-size:14px;top:3px}.input-fixed-placehoder-input{padding-right:25px!important}.input-border-radius{border-radius:8px!important}.hide-input-value{text-indent:-9999px}.payroll-deduction-truck-svg{line-height:16px}.payroll-deduction-truck-svg svg{width:46px;height:16px}.payroll-deduction-truck{display:grid!important;grid-template-columns:305px 92px!important}\n"], dependencies: [{ kind: "ngmodule", type:
352
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaInputAddressDropdownComponent, isStandalone: true, selector: "app-ca-input-address-dropdown", inputs: { placeholderType: "placeholderType", activeAddress: "activeAddress", receivedAddressData: "receivedAddressData", receivedAddressList: "receivedAddressList", parkingList: "parkingList", inputConfig: "inputConfig", commandHandler: "commandHandler", isRouting: "isRouting", closedBorder: "closedBorder", incorrectValue: "incorrectValue", hideEmptyLoaded: "hideEmptyLoaded", addresList: "addresList", template: "template" }, outputs: { sentAddressValue: "sentAddressValue", selectedAddress: "selectedAddress", sentAddressData: "sentAddressData", closeDropdown: "closeDropdown", commandEvent: "commandEvent", changeFlag: "changeFlag", incorrectEvent: "incorrectEvent" }, host: { listeners: { "document:keydown": "handleKeyboardEvent($event)" } }, viewQueries: [{ propertyName: "inputDropdown", first: true, predicate: ["inputDropdown"], descendants: true }], ngImport: i0, template: "<div class=\"address_holder d-flex align-items-center\" (click)=\"addressExpand()\">\n <div\n class=\"main_address_holder\"\n [ngClass]=\"{\n input_for_routing: isRouting,\n not_expanded: isRouting && !addressExpanded,\n expanded_address: isRouting && addressExpanded,\n }\"\n >\n <app-ca-input-dropdown\n #inputDropdown\n [formControl]=\"getSuperControl\"\n [inputConfig]=\"inputConfig\"\n [options]=\"addresList\"\n [activeItem]=\"_activeAddress\"\n [isIncorrectValue]=\"incorrectValue\"\n [template]=\"template\"\n (incorrectEvent)=\"onIncorrectInput($event)\"\n (selectedItem)=\"onSelectDropdown($event)\"\n (closeDropdown)=\"onCloseDropdown($event)\"\n (clearInputEvent)=\"onClearInputEvent()\"\n ></app-ca-input-dropdown>\n @if (isRouting && addressExpanded && !hideEmptyLoaded) {\n <div\n class=\"stop_hold d-flex justify-content-center align-items-center\"\n (click)=\"changeStopType()\"\n >\n <div class=\"stop_text\">{{ stopType }}</div>\n </div>\n }\n </div>\n @if (isRouting && addressExpanded) {\n <div class=\"ca-input-commands address-flag d-flex align-items-center\">\n <div\n class=\"main-commands ca-input-command-first\"\n ngbTooltip\n [mainCaTooltip]=\"\n commandHandler.commands?.firstCommand?.popup?.name\n \"\n [tooltipBackground]=\"\n commandHandler.commands?.firstCommand?.popup\n ?.backgroundColor\n \"\n [disableTooltip]=\"!commandHandler.commands?.firstCommand?.popup\"\n position=\"top\"\n >\n <svg-icon\n class=\"ca-input-command-svg-first\"\n [class.allow_confirm]=\"chosenFromDropdown\"\n [src]=\"commandHandler.commands.firstCommand.svg\"\n (keydown)=\"onCommands($event, 'confirm')\"\n ></svg-icon>\n </div>\n <div\n class=\"main-commands ca-input-command-second\"\n ngbTooltip\n [mainCaTooltip]=\"\n commandHandler.commands?.secondCommand?.popup?.name\n \"\n [tooltipBackground]=\"\n commandHandler.commands?.secondCommand?.popup\n ?.backgroundColor\n \"\n [disableTooltip]=\"\n !commandHandler.commands?.secondCommand?.popup\n \"\n position=\"top\"\n >\n <svg-icon\n class=\"ca-input-command-svg-second\"\n [src]=\"commandHandler.commands.secondCommand.svg\"\n (keydown)=\"onCommands($event, 'cancel')\"\n ></svg-icon>\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}.load-pickup-delivery-popover{top:-34px!important;max-width:400px!important}.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:#fff}.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:#fff}.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:#fff}.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}.dropdown-menu-popover.bs-popover-end-top .dropdown-container{transform:translate(-4px,-3px)}.dropdown-menu-popover.bs-popover-bottom-end .dropdown-container{transform:translate(3px,-3px)}.dropdown-menu-popover.bs-popover-end-bottom .dropdown-container{transform:translate(-3px,3px)}.dropdown-menu-popover.bs-popover-top-end .dropdown-container{transform:translate(3px,3px)}.dropdown-details-title-card-popover .dropdown-container{transform:translateY(-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-color:#42424233!important;color:#424242!important}.text-color-black::selection{background-color:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-muted::selection{background-color:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green-2{color:#259f94!important}.text-color-green-2::-moz-selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-2::selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-blue-5{color:#3074d3!important}.text-color-blue-5::-moz-selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-5::selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-13::selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-16{color:#e9effd!important}.text-color-blue-16::-moz-selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-16::selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-11{color:#df3c3c!important}.text-color-red-11::-moz-selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-11::selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-yellow{color:#fab15c!important}.text-color-yellow::-moz-selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-yellow::selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-purple{color:#b370f0!important}.text-color-purple::-moz-selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-purple::selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-special-filter-purple{color:#9e47ec!important}.text-color-special-filter-purple::-moz-selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-special-filter-purple::selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-grey-9{color:#b7b7b7!important}.text-color-grey-9::-moz-selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-grey-9::selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{background-color:#ccc3!important;color:#ccc!important}.text-color-light-grey-6::selection{background-color:#ccc3!important;color:#ccc!important}.text-color-white{color:#fff!important}.text-color-white::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-white-4::selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw6-2::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{background-color:#dadada33!important;color:#dadada!important}.text-color-bw-9::selection{background-color:#dadada33!important;color:#dadada!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey::selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{background-color:#91919133!important;color:#919191!important}.text-color-orange-1{color:#ff7043!important}.text-color-orange-1::-moz-selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-1::selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-3{color:#ffb097!important}.text-color-orange-3::-moz-selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-orange-3::selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-brown-1{color:#865e3a!important}.text-color-brown-1::-moz-selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-brown-1::selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-light-blue-2{color:#1ab5e6!important}.text-color-light-blue-2::-moz-selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-color-light-blue-2::selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-hover-white{transition:color .3s ease-in-out ease-in-out}.text-hover-white:hover{color:#fff!important}.text-hover-black{transition:color .3s ease-in-out ease-in-out}.text-hover-black:hover{color:#424242!important}.text-hover-blue-15{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-15:hover{color:#0b49d1!important}.text-hover-blue-18{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-18:hover{color:#3b73ed!important}.text-hover-bw6-2{transition:color .3s ease-in-out ease-in-out}.text-hover-bw6-2:hover{color:#6c6c6c!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-20{font-size:20px!important;line-height:24px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.font-size-11{font-size:11px!important}.line-height-12{line-height:12px!important}.svg-fill-black svg path,.svg-fill-black svg circle{fill:#424242!important}.svg-fill-white svg path,.svg-fill-white svg circle{fill:#fff!important}.svg-fill-white-2 svg path,.svg-fill-white-2 svg circle{fill:#fff!important}.svg-fill-muted svg path,.svg-fill-muted svg circle{fill:#919191!important}.svg-fill-bw6-2 svg path,.svg-fill-bw6-2 svg circle{fill:#6c6c6c!important}.svg-fill-bw-9 svg path,.svg-fill-bw-9 svg circle{fill:#dadada!important}.svg-fill-light-grey-2 svg path,.svg-fill-light-grey-2 svg circle{fill:#aaa!important}.svg-fill-light-grey-6 svg path,.svg-fill-light-grey-6 svg circle{fill:#ccc!important}.svg-fill-blue-8 svg path,.svg-fill-blue-8 svg circle{fill:#6692f1!important}.svg-fill-blue-13 svg path,.svg-fill-blue-13 svg circle{fill:#6692f1!important}.svg-fill-blue-14 svg path,.svg-fill-blue-14 svg circle{fill:#3b73ed!important}.svg-fill-blue-17 svg path,.svg-fill-blue-17 svg circle{fill:#bed0f9!important}.svg-fill-blue-19 svg path,.svg-fill-blue-19 svg circle{fill:#92b1f5!important}.svg-fill-blue-26 svg path,.svg-fill-blue-26 svg circle{fill:#4dc5eb!important}.svg-fill-green svg path,.svg-fill-green svg circle{fill:#56b4ac!important}.svg-fill-green-2 svg path,.svg-fill-green-2 svg circle{fill:#259f94!important}.svg-fill-green-4 svg path,.svg-fill-green-4 svg circle{fill:#86c9c3!important}.svg-fill-green-6 svg path,.svg-fill-green-6 svg circle{fill:#77bf56!important}.svg-fill-yellow-1 svg path,.svg-fill-yellow-1 svg circle{fill:#fab15c!important}.svg-fill-yellow-4 svg path,.svg-fill-yellow-4 svg circle{fill:#fbc88b!important}.svg-fill-yellow-5 svg path,.svg-fill-yellow-5 svg circle{fill:#f89b2e!important}.svg-fill-yellow-8 svg path,.svg-fill-yellow-8 svg circle{fill:#daad4f!important}.svg-fill-white-4 svg path,.svg-fill-white-4 svg circle{fill:#ffffffb2!important}.svg-fill-grey svg path,.svg-fill-grey svg circle{fill:#919191!important}.svg-fill-red-10 svg path,.svg-fill-red-10 svg circle{fill:#e66767!important}.svg-fill-red-11 svg path,.svg-fill-red-11 svg circle{fill:#df3c3c!important}.svg-fill-red-13 svg path,.svg-fill-red-13 svg circle{fill:#ed9292!important}.svg-fill-red-14 svg path,.svg-fill-red-14 svg circle{fill:#c20c0c!important}.svg-fill-red-18 svg path,.svg-fill-red-18 svg circle{fill:#e668a0!important}.svg-fill-orange-4 svg path,.svg-fill-orange-4 svg circle{fill:#ff906d!important}.svg-fill-brown svg path,.svg-fill-brown svg circle{fill:#865e3a!important}.svg-fill-purple-4 svg path,.svg-fill-purple-4 svg circle{fill:#9e47ec!important}.svg-hover-white svg path{transition:fill .3s ease-in-out}.svg-hover-white:hover svg path{fill:#fff!important}.svg-hover-white-2 svg path{transition:fill .3s ease-in-out}.svg-hover-white-2:hover svg path{fill:#fff!important}.svg-hover-muted svg path{transition:fill .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-grey-4 svg path{transition:fill .3s ease-in-out}.svg-hover-grey-4:hover svg path{fill:#ccc!important}.svg-hover-black svg path{transition:fill .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-9 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-9:hover svg path{fill:#0b49d1!important}.svg-hover-blue-10 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-10:hover svg path{fill:#6f9ee033!important}.svg-hover-blue-15 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-blue-17 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-17:hover svg path{fill:#bed0f9!important}.svg-hover-blue-19 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-19:hover svg path{fill:#92b1f5!important}.svg-hover-bw6-2 svg path{transition:fill .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-bw-9 svg path{transition:fill .3s ease-in-out}.svg-hover-bw-9:hover svg path{fill:#dadada!important}.svg-hover-trash-red svg path{transition:fill .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:fill .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-6 svg{width:6px;height:6px}.svg-size-10 svg{width:10px;height:10px}.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-17 svg{width:17px;height:17px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-23 svg{width:23px;height:23px}.svg-size-26 svg{width:26px;height:26px}.svg-size-30-26 svg{width:30px;height:26px}.svg-size-44-16 svg{width:44px;height:16px}.svg-size-90 svg{width:90px;height:90px}.background-transparent{background-color:transparent}.background-white{background-color:#fff}.background-black{background-color:#424242}.background-black-2{background-color:#2f2f2f}.background-black-3{background-color:#1d1d1d}.background-gray{background-color:#e5e5e5}.background-gray-2{background-color:#6c6c6c}.background-gray-12{background-color:#eee}.background-light-gray-2{background-color:#aaa}.background-light-gray-6{background-color:#ccc}.background-light-gray-7{background-color:#fbfbfb}.background-blue-5{background-color:#3074d3}.background-blue-13{background-color:#6692f1}.background-blue-14,.background-blue-18{background-color:#3b73ed}.background-blue-19{background-color:#92b1f5}.background-blue-20{background-color:#3b73ed33}.background-green-0{background-color:#56b4ac}.background-green-2{background-color:#259f94}.background-green-3{background-color:#b6dfdb}.background-green-4,.background-green-6{background-color:#86c9c3}.background-dark-2{background-color:#91919133}.background-red-19{background-color:#df3d85}.background-purple-4{background-color:#9e47ec}.background-gold-bold{background-color:#cf961d}.background-gold-subtle{background-color:#e4c481}.background-orange-3{background-color:#ffb097}.background-orange-4{background-color:#ff906d}.background-orange-7{background-color:#ffcfc0}.background-yellow-8{background-color:#daad4f}.background-bw5{background-color:#919191}.background-bw6-2{background-color:#6c6c6c}.background-brown-bold{background-color:#865e3a}.background-bw2{background-color:#eee}.background-bw-9{background-color:#dadada}.background-hover-black{transition:background-color .3s ease-in-out}.background-hover-black:hover{background-color:#424242!important}.background-hover-black-1{transition:background-color .3s ease-in-out}.background-hover-black-1:hover{background-color:#424242!important}.background-hover-grey-2{transition:background-color .3s ease-in-out}.background-hover-grey-2:hover{background-color:#6c6c6c!important}.background-hover-dark-2{transition:background-color .3s ease-in-out}.background-hover-dark-2:hover{background-color:#91919133!important}.background-hover-bw2{transition:background-color .3s ease-in-out}.background-hover-bw2:hover{background-color:#eee!important}.background-hover-bw6{transition:background-color .3s ease-in-out}.background-hover-bw6:hover{background-color:#606060!important}.background-hover-bw6-2{transition:background-color .3s ease-in-out}.background-hover-bw6-2:hover{background-color:#6c6c6c!important}.background-hover-blue-13{transition:background-color .3s ease-in-out}.background-hover-blue-13:hover{background-color:#6692f1!important}.background-hover-blue-15{transition:background-color .3s ease-in-out}.background-hover-blue-15:hover{background-color:#0b49d1!important}.background-hover-blue-16{transition:background-color .3s ease-in-out}.background-hover-blue-16:hover{background-color:#e9effd!important}.background-hover-blue-17{transition:background-color .3s ease-in-out}.background-hover-blue-17:hover{background-color:#bed0f9!important}.background-hover-blue-19{transition:background-color .3s ease-in-out}.background-hover-blue-19:hover{background-color:#92b1f5!important}.background-hover-blue-20{transition:background-color .3s ease-in-out}.background-hover-blue-20:hover{background-color:#3b73ed33!important}.background-hover-blue-21{transition:background-color .3s ease-in-out}.background-hover-blue-21:hover{background-color:#3b73ed66!important}.background-hover-gray{transition:background-color .3s ease-in-out}.background-hover-gray:hover{background-color:#e5e5e5!important}.background-hover-light-grey{transition:background-color .3s ease-in-out}.background-hover-light-grey:hover{background-color:#e5e5e5!important}.background-hover-bw-9{transition:background-color .3s ease-in-out}.background-hover-bw-9:hover{background-color:#dadada!important}.br-1{border-radius:1px}.br-2{border-radius:2px}.br-3{border-radius:3px}.br-10{border-radius:10px}.br-60{border-radius:60px}.br-circle{border-radius:50%}.padding-2{padding:2px}.padding-l-2{padding-left:2px}.padding-r-2{padding-right:2px}.padding-t-2{padding-top:2px}.padding-4{padding:4px}.padding-l-4{padding-left:4px}.padding-r-4{padding-right:4px}.padding-t-4{padding-top:4px}.padding-6{padding:6px}.padding-l-6{padding-left:6px}.padding-r-6{padding-right:6px}.padding-t-6{padding-top:6px}.padding-10{padding:10px}.padding-l-10{padding-left:10px}.padding-r-10{padding-right:10px}.padding-t-10{padding-top:10px}.padding-15{padding:15px}.padding-l-15{padding-left:15px}.padding-r-15{padding-right:15px}.padding-t-15{padding-top:15px}.padding-y-2{padding-top:2px;padding-bottom:2px}.padding-y-4{padding-top:4px;padding-bottom:4px}.padding-y-6{padding-top:6px;padding-bottom:6px}.padding-y-10{padding-top:10px;padding-bottom:10px}.padding-y-15{padding-top:15px;padding-bottom:15px}.padding-x-4{padding-left:4px;padding-right:4px}.padding-x-5{padding-left:5px;padding-right:5px}.padding-x-6{padding-left:6px;padding-right:6px}.padding-x-10{padding-left:10px;padding-right:10px}.margin--2{margin:-2px}.margin-y--2{margin-top:-2px;margin-bottom:-2px}.margin-x--2{margin-left:-2px;margin-right:-2px}.margin-t--2{margin-top:-2px}.margin-r--2{margin-right:-2px}.margin-b--2{margin-bottom:-2px}.margin-l--2{margin-left:-2px}.margin-1{margin:1px}.margin-y-1{margin-top:1px;margin-bottom:1px}.margin-x-1{margin-left:1px;margin-right:1px}.margin-t-1{margin-top:1px}.margin-r-1{margin-right:1px}.margin-b-1{margin-bottom:1px}.margin-l-1{margin-left:1px}.margin-2{margin:2px}.margin-y-2{margin-top:2px;margin-bottom:2px}.margin-x-2{margin-left:2px;margin-right:2px}.margin-t-2{margin-top:2px}.margin-r-2{margin-right:2px}.margin-b-2{margin-bottom:2px}.margin-l-2{margin-left:2px}.margin-4{margin:4px}.margin-y-4{margin-top:4px;margin-bottom:4px}.margin-x-4{margin-left:4px;margin-right:4px}.margin-t-4{margin-top:4px}.margin-r-4{margin-right:4px}.margin-b-4{margin-bottom:4px}.margin-l-4{margin-left:4px}.margin-5{margin:5px}.margin-y-5{margin-top:5px;margin-bottom:5px}.margin-x-5{margin-left:5px;margin-right:5px}.margin-t-5{margin-top:5px}.margin-r-5{margin-right:5px}.margin-b-5{margin-bottom:5px}.margin-l-5{margin-left:5px}.margin-6{margin:6px}.margin-y-6{margin-top:6px;margin-bottom:6px}.margin-x-6{margin-left:6px;margin-right:6px}.margin-t-6{margin-top:6px}.margin-r-6{margin-right:6px}.margin-b-6{margin-bottom:6px}.margin-l-6{margin-left:6px}.margin-8{margin:8px}.margin-y-8{margin-top:8px;margin-bottom:8px}.margin-x-8{margin-left:8px;margin-right:8px}.margin-t-8{margin-top:8px}.margin-r-8{margin-right:8px}.margin-b-8{margin-bottom:8px}.margin-l-8{margin-left:8px}.margin-10{margin:10px}.margin-y-10{margin-top:10px;margin-bottom:10px}.margin-x-10{margin-left:10px;margin-right:10px}.margin-t-10{margin-top:10px}.margin-r-10{margin-right:10px}.margin-b-10{margin-bottom:10px}.margin-l-10{margin-left:10px}.margin-15{margin:15px}.margin-y-15{margin-top:15px;margin-bottom:15px}.margin-x-15{margin-left:15px;margin-right:15px}.margin-t-15{margin-top:15px}.margin-r-15{margin-right:15px}.margin-b-15{margin-bottom:15px}.margin-l-15{margin-left:15px}.margin-22{margin:22px}.margin-y-22{margin-top:22px;margin-bottom:22px}.margin-x-22{margin-left:22px;margin-right:22px}.margin-t-22{margin-top:22px}.margin-r-22{margin-right:22px}.margin-b-22{margin-bottom:22px}.margin-l-22{margin-left:22px}.margin-24{margin:24px}.margin-y-24{margin-top:24px;margin-bottom:24px}.margin-x-24{margin-left:24px;margin-right:24px}.margin-t-24{margin-top:24px}.margin-r-24{margin-right:24px}.margin-b-24{margin-bottom:24px}.margin-l-24{margin-left:24px}.gap-xs{gap:2px}.w-1{width:1px}.h-1{height:1px}.w-2{width:2px}.h-2{height:2px}.w-4{width:4px}.h-4{height:4px}.w-10{width:10px}.h-10{height:10px}.w-14{width:14px}.h-14{height:14px}.w-15{width:15px}.h-15{height:15px}.w-18{width:18px}.h-18{height:18px}.w-22{width:22px}.h-22{height:22px}.w-26{width:26px}.h-26{height:26px}.w-31{width:31px}.h-31{height:31px}.w-32{width:32px}.h-32{height:32px}.w-36{width:36px}.h-36{height:36px}.w-116{width:116px}.h-116{height:116px}.w-120{width:120px}.h-120{height:120px}.w-fit-content{width:fit-content}@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}}.filter-dropdown-popover{width:260px;position:relative;top:-4px;left:-4px}.filter-dropdown-popover-max-height{max-height:360px}.filter-dropdown-list{max-height:260px;overflow-y:auto}.filter-dropdown-list-icon{height:26px;transition:background-color .3s ease-in-out}.filter-dropdown-list-icon-value{height:14px;width:14px}.filter-dropdown-list-icon-remove{display:none}.filter-dropdown-list-icon:hover{background-color:#424242}.filter-dropdown-list-icon:hover .filter-dropdown-icon-count{display:none}.filter-dropdown-list-icon-selected:hover{background-color:#0b49d1}.filter-dropdown-list-item-icons{transition:opacity .3s ease-in-out;opacity:0}.filter-dropdown-list-item-status-circle{height:10px;width:10px}.filter-dropdown-list-item-remove{display:none}.filter-dropdown-list-item:hover{background-color:#424242}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons{opacity:1}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons svg path{fill:var(--svg-fill-color, #e66767)}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove{display:flex}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove svg path{fill:#e66767!important}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-count{display:none!important}.filter-dropdown-icon{height:26px;width:26px}.filter-dropdown-count{height:14px;width:14px}.filter-dropdown-count-remove,.filter-dropdown-count-hover:hover .filter-dropdown-count-value{display:none}.filter-dropdown-count-hover:hover .filter-dropdown-count-remove{display:flex}.filter-dropdown-button{height:26px}.filter-dropdown-footer-button{color:#dadada;transition:color .3s ease-in-out,background-color .3s ease-in-out;height:18px;width:50%}.filter-dropdown-footer-button-set{color:#fff;background-color:#3b73ed}.filter-dropdown-footer-button-set:hover{background-color:#e9effd;color:#0b49d1}.filter-dropdown-footer-button-clear{color:#dadada}.filter-dropdown-footer-button-clear:hover{background-color:#eee;color:#424242}.filter-dropdown-list-badge{min-width:18px}.h-7{height:7px!important;min-height:7px!important}.h-8{height:8px!important;min-height:8px!important}.h-10{height:10px!important;min-height:10px!important}.h-12{height:12px!important;min-height:12px!important}.h-14{height:14px!important;min-height:14px!important}.h-15{height:15px!important;min-height:15px!important}.h-16{height:16px!important;min-height:16px!important}.h-18{height:18px!important;min-height:18px!important}.h-22{height:22px!important;min-height:22px!important}.h-24{height:24px!important;min-height:24px!important}.h-26{height:26px!important;min-height:26px!important}.h-30{height:30px!important;min-height:30px!important}.h-34{height:34px!important;min-height:34px!important}.h-37{height:37px!important;min-height:37px!important}.h-40{height:40px!important;min-height:40px!important}.h-42{height:42px!important;min-height:42px!important}.h-44{height:44px!important;min-height:44px!important}.h-52{height:52px!important;min-height:52px!important}.h-486{height:486px!important;min-height:486px!important}.h-800{height:800px!important;min-height:800px!important}.h-960{height:960px!important;min-height:960px!important}.w-2{width:2px!important;min-width:2px!important}.w-7{width:7px!important;min-width:7px!important}.w-8{width:8px!important;min-width:8px!important}.w-10{width:10px!important;min-width:10px!important}.w-12{width:12px!important;min-width:12px!important}.w-15{width:15px!important;min-width:15px!important}.w-18{width:18px!important;min-width:18px!important}.w-22{width:22px!important;min-width:22px!important}.w-24{width:24px!important;min-width:24px!important}.w-26{width:26px!important;min-width:26px!important}.w-29{width:29px!important;min-width:29px!important}.w-30{width:30px!important;min-width:30px!important}.w-36{width:36px!important;min-width:36px!important}.w-40{width:40px!important;min-width:40px!important}.w-42{width:42px!important;min-width:42px!important}.w-46{width:46px!important;min-width:46px!important}.w-49{width:49px!important;min-width:49px!important}.w-57{width:57px!important;min-width:57px!important}.w-60{width:60px!important;min-width:60px!important}.w-68{width:68px!important;min-width:68px!important}.w-70{width:70px!important;min-width:70px!important}.w-71{width:71px!important;min-width:71px!important}.w-78{width:78px!important;min-width:78px!important}.w-80{width:80px!important;min-width:80px!important}.w-83{width:83px!important;min-width:83px!important}.w-84{width:84px!important;min-width:84px!important}.w-88{width:88px!important;min-width:88px!important}.w-90{width:90px!important;min-width:90px!important}.w-91{width:91px!important;min-width:91px!important}.w-93{width:93px!important;min-width:93px!important}.w-98{width:98px!important;min-width:98px!important}.w-101{width:101px!important;min-width:101px!important}.w-106{width:106px!important;min-width:106px!important}.w-108{width:108px!important;min-width:108px!important}.w-116{width:116px!important;min-width:116px!important}.w-126{width:126px!important;min-width:126px!important}.w-144{width:144px!important;min-width:144px!important}.w-155{width:155px!important;min-width:155px!important}.w-172{width:172px!important;min-width:172px!important}.w-179{width:179px!important;min-width:179px!important}.w-202{width:202px!important;min-width:202px!important}.w-223{width:223px!important;min-width:223px!important}.w-264{width:264px!important;min-width:264px!important}.w-268{width:268px!important;min-width:268px!important}.w-272{width:272px!important;min-width:272px!important}.w-277{width:277px!important;min-width:277px!important}.w-334{width:334px!important;min-width:334px!important}.w-442{width:442px!important;min-width:442px!important}.w-462{width:462px!important;min-width:462px!important}.w-612{width:612px!important;min-width:612px!important}.w-616{width:616px!important;min-width:616px!important}.w-620{width:620px!important;min-width:620px!important}.min-w-18{min-width:18px}.flex-1{flex:1}.w-33{width:33%}.w-40p{width:40%}.w-90p{width:90%}*{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}.c-pointer{cursor:pointer}.pointer-events-none{pointer-events:none}.ca-scroll-bar{overflow-y:scroll}.ca-scroll-bar::-webkit-scrollbar{width:2px}.ca-scroll-bar::-webkit-scrollbar-thumb{background:#ccc;border-radius:1px}.ca-scroll-bar::-webkit-scrollbar-track{background:#2f2f2f}.place-items-center{justify-content:center;align-items:center}.prevent-text-selection{-ms-user-select:none;-webkit-user-select:none;user-select:none;-moz-user-select:none}.address_holder{width:100%}.address_holder .main_address_holder{position:relative;flex:1}.address_holder .main_address_holder.input_for_routing .input-clear,.address_holder .main_address_holder.input_for_routing .input-dropdown-arrow{display:none!important}.address_holder .main_address_holder.input_for_routing input{height:22px!important;font-size:11px!important;line-height:14px!important;padding-right:64px!important}.address_holder .main_address_holder.input_for_routing label{font-size:11px!important;line-height:14px!important}.address_holder .main_address_holder.not_expanded input{background-color:#fff!important;cursor:pointer}.address_holder .main_address_holder.not_expanded:hover input{background-color:#f3f3f3!important}.address_holder .main_address_holder.expanded_address input,.address_holder .main_address_holder.expanded_address .valid-focus-out-filled{background-color:#6c6c6c!important;color:#fff!important}.address_holder .main_address_holder .stop_hold{position:absolute;right:2px;top:2px;width:62px;height:18px;background-color:#b7b7b7;color:#fff;border-radius:1px;cursor:pointer;-webkit-user-select:none;user-select:none}.address_holder .main_address_holder .stop_hold:hover{background-color:#919191}.address_holder .ca-input-commands .main-commands{margin-left:6px}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-first svg rect{fill:#e2e2e2}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-first svg path{fill:#fff}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-first.allow_confirm svg rect{fill:#b7b7b7}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-first.allow_confirm:hover rect{fill:#6c6c6c}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-second svg rect{fill:#b7b7b7}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-second svg path{fill:#fff}.address_holder .ca-input-commands .main-commands .ca-input-command-svg-second:hover rect{fill:#6c6c6c}.address_holder .ca-input-commands .main-commands:hover:hover svg{overflow:visible}.address_holder .ca-input-commands .main-commands:hover:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s}\n", "@charset \"UTF-8\";@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}.load-pickup-delivery-popover{top:-34px!important;max-width:400px!important}.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:#fff}.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:#fff}.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:#fff}.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}.dropdown-menu-popover.bs-popover-end-top .dropdown-container{transform:translate(-4px,-3px)}.dropdown-menu-popover.bs-popover-bottom-end .dropdown-container{transform:translate(3px,-3px)}.dropdown-menu-popover.bs-popover-end-bottom .dropdown-container{transform:translate(-3px,3px)}.dropdown-menu-popover.bs-popover-top-end .dropdown-container{transform:translate(3px,3px)}.dropdown-details-title-card-popover .dropdown-container{transform:translateY(-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-color:#42424233!important;color:#424242!important}.text-color-black::selection{background-color:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-muted::selection{background-color:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green-2{color:#259f94!important}.text-color-green-2::-moz-selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-2::selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-blue-5{color:#3074d3!important}.text-color-blue-5::-moz-selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-5::selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-13::selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-16{color:#e9effd!important}.text-color-blue-16::-moz-selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-16::selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-11{color:#df3c3c!important}.text-color-red-11::-moz-selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-11::selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-yellow{color:#fab15c!important}.text-color-yellow::-moz-selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-yellow::selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-purple{color:#b370f0!important}.text-color-purple::-moz-selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-purple::selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-special-filter-purple{color:#9e47ec!important}.text-color-special-filter-purple::-moz-selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-special-filter-purple::selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-grey-9{color:#b7b7b7!important}.text-color-grey-9::-moz-selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-grey-9::selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{background-color:#ccc3!important;color:#ccc!important}.text-color-light-grey-6::selection{background-color:#ccc3!important;color:#ccc!important}.text-color-white{color:#fff!important}.text-color-white::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-white-4::selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw6-2::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{background-color:#dadada33!important;color:#dadada!important}.text-color-bw-9::selection{background-color:#dadada33!important;color:#dadada!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey::selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{background-color:#91919133!important;color:#919191!important}.text-color-orange-1{color:#ff7043!important}.text-color-orange-1::-moz-selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-1::selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-3{color:#ffb097!important}.text-color-orange-3::-moz-selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-orange-3::selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-brown-1{color:#865e3a!important}.text-color-brown-1::-moz-selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-brown-1::selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-light-blue-2{color:#1ab5e6!important}.text-color-light-blue-2::-moz-selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-color-light-blue-2::selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-hover-white{transition:color .3s ease-in-out ease-in-out}.text-hover-white:hover{color:#fff!important}.text-hover-black{transition:color .3s ease-in-out ease-in-out}.text-hover-black:hover{color:#424242!important}.text-hover-blue-15{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-15:hover{color:#0b49d1!important}.text-hover-blue-18{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-18:hover{color:#3b73ed!important}.text-hover-bw6-2{transition:color .3s ease-in-out ease-in-out}.text-hover-bw6-2:hover{color:#6c6c6c!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-20{font-size:20px!important;line-height:24px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.font-size-11{font-size:11px!important}.line-height-12{line-height:12px!important}.svg-fill-black svg path,.svg-fill-black svg circle{fill:#424242!important}.svg-fill-white svg path,.svg-fill-white svg circle{fill:#fff!important}.svg-fill-white-2 svg path,.svg-fill-white-2 svg circle{fill:#fff!important}.svg-fill-muted svg path,.svg-fill-muted svg circle{fill:#919191!important}.svg-fill-bw6-2 svg path,.svg-fill-bw6-2 svg circle{fill:#6c6c6c!important}.svg-fill-bw-9 svg path,.svg-fill-bw-9 svg circle{fill:#dadada!important}.svg-fill-light-grey-2 svg path,.svg-fill-light-grey-2 svg circle{fill:#aaa!important}.svg-fill-light-grey-6 svg path,.svg-fill-light-grey-6 svg circle{fill:#ccc!important}.svg-fill-blue-8 svg path,.svg-fill-blue-8 svg circle{fill:#6692f1!important}.svg-fill-blue-13 svg path,.svg-fill-blue-13 svg circle{fill:#6692f1!important}.svg-fill-blue-14 svg path,.svg-fill-blue-14 svg circle{fill:#3b73ed!important}.svg-fill-blue-17 svg path,.svg-fill-blue-17 svg circle{fill:#bed0f9!important}.svg-fill-blue-19 svg path,.svg-fill-blue-19 svg circle{fill:#92b1f5!important}.svg-fill-blue-26 svg path,.svg-fill-blue-26 svg circle{fill:#4dc5eb!important}.svg-fill-green svg path,.svg-fill-green svg circle{fill:#56b4ac!important}.svg-fill-green-2 svg path,.svg-fill-green-2 svg circle{fill:#259f94!important}.svg-fill-green-4 svg path,.svg-fill-green-4 svg circle{fill:#86c9c3!important}.svg-fill-green-6 svg path,.svg-fill-green-6 svg circle{fill:#77bf56!important}.svg-fill-yellow-1 svg path,.svg-fill-yellow-1 svg circle{fill:#fab15c!important}.svg-fill-yellow-4 svg path,.svg-fill-yellow-4 svg circle{fill:#fbc88b!important}.svg-fill-yellow-5 svg path,.svg-fill-yellow-5 svg circle{fill:#f89b2e!important}.svg-fill-yellow-8 svg path,.svg-fill-yellow-8 svg circle{fill:#daad4f!important}.svg-fill-white-4 svg path,.svg-fill-white-4 svg circle{fill:#ffffffb2!important}.svg-fill-grey svg path,.svg-fill-grey svg circle{fill:#919191!important}.svg-fill-red-10 svg path,.svg-fill-red-10 svg circle{fill:#e66767!important}.svg-fill-red-11 svg path,.svg-fill-red-11 svg circle{fill:#df3c3c!important}.svg-fill-red-13 svg path,.svg-fill-red-13 svg circle{fill:#ed9292!important}.svg-fill-red-14 svg path,.svg-fill-red-14 svg circle{fill:#c20c0c!important}.svg-fill-red-18 svg path,.svg-fill-red-18 svg circle{fill:#e668a0!important}.svg-fill-orange-4 svg path,.svg-fill-orange-4 svg circle{fill:#ff906d!important}.svg-fill-brown svg path,.svg-fill-brown svg circle{fill:#865e3a!important}.svg-fill-purple-4 svg path,.svg-fill-purple-4 svg circle{fill:#9e47ec!important}.svg-hover-white svg path{transition:fill .3s ease-in-out}.svg-hover-white:hover svg path{fill:#fff!important}.svg-hover-white-2 svg path{transition:fill .3s ease-in-out}.svg-hover-white-2:hover svg path{fill:#fff!important}.svg-hover-muted svg path{transition:fill .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-grey-4 svg path{transition:fill .3s ease-in-out}.svg-hover-grey-4:hover svg path{fill:#ccc!important}.svg-hover-black svg path{transition:fill .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-9 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-9:hover svg path{fill:#0b49d1!important}.svg-hover-blue-10 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-10:hover svg path{fill:#6f9ee033!important}.svg-hover-blue-15 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-blue-17 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-17:hover svg path{fill:#bed0f9!important}.svg-hover-blue-19 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-19:hover svg path{fill:#92b1f5!important}.svg-hover-bw6-2 svg path{transition:fill .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-bw-9 svg path{transition:fill .3s ease-in-out}.svg-hover-bw-9:hover svg path{fill:#dadada!important}.svg-hover-trash-red svg path{transition:fill .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:fill .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-6 svg{width:6px;height:6px}.svg-size-10 svg{width:10px;height:10px}.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-17 svg{width:17px;height:17px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-23 svg{width:23px;height:23px}.svg-size-26 svg{width:26px;height:26px}.svg-size-30-26 svg{width:30px;height:26px}.svg-size-44-16 svg{width:44px;height:16px}.svg-size-90 svg{width:90px;height:90px}.background-transparent{background-color:transparent}.background-white{background-color:#fff}.background-black{background-color:#424242}.background-black-2{background-color:#2f2f2f}.background-black-3{background-color:#1d1d1d}.background-gray{background-color:#e5e5e5}.background-gray-2{background-color:#6c6c6c}.background-gray-12{background-color:#eee}.background-light-gray-2{background-color:#aaa}.background-light-gray-6{background-color:#ccc}.background-light-gray-7{background-color:#fbfbfb}.background-blue-5{background-color:#3074d3}.background-blue-13{background-color:#6692f1}.background-blue-14,.background-blue-18{background-color:#3b73ed}.background-blue-19{background-color:#92b1f5}.background-blue-20{background-color:#3b73ed33}.background-green-0{background-color:#56b4ac}.background-green-2{background-color:#259f94}.background-green-3{background-color:#b6dfdb}.background-green-4,.background-green-6{background-color:#86c9c3}.background-dark-2{background-color:#91919133}.background-red-19{background-color:#df3d85}.background-purple-4{background-color:#9e47ec}.background-gold-bold{background-color:#cf961d}.background-gold-subtle{background-color:#e4c481}.background-orange-3{background-color:#ffb097}.background-orange-4{background-color:#ff906d}.background-orange-7{background-color:#ffcfc0}.background-yellow-8{background-color:#daad4f}.background-bw5{background-color:#919191}.background-bw6-2{background-color:#6c6c6c}.background-brown-bold{background-color:#865e3a}.background-bw2{background-color:#eee}.background-bw-9{background-color:#dadada}.background-hover-black{transition:background-color .3s ease-in-out}.background-hover-black:hover{background-color:#424242!important}.background-hover-black-1{transition:background-color .3s ease-in-out}.background-hover-black-1:hover{background-color:#424242!important}.background-hover-grey-2{transition:background-color .3s ease-in-out}.background-hover-grey-2:hover{background-color:#6c6c6c!important}.background-hover-dark-2{transition:background-color .3s ease-in-out}.background-hover-dark-2:hover{background-color:#91919133!important}.background-hover-bw2{transition:background-color .3s ease-in-out}.background-hover-bw2:hover{background-color:#eee!important}.background-hover-bw6{transition:background-color .3s ease-in-out}.background-hover-bw6:hover{background-color:#606060!important}.background-hover-bw6-2{transition:background-color .3s ease-in-out}.background-hover-bw6-2:hover{background-color:#6c6c6c!important}.background-hover-blue-13{transition:background-color .3s ease-in-out}.background-hover-blue-13:hover{background-color:#6692f1!important}.background-hover-blue-15{transition:background-color .3s ease-in-out}.background-hover-blue-15:hover{background-color:#0b49d1!important}.background-hover-blue-16{transition:background-color .3s ease-in-out}.background-hover-blue-16:hover{background-color:#e9effd!important}.background-hover-blue-17{transition:background-color .3s ease-in-out}.background-hover-blue-17:hover{background-color:#bed0f9!important}.background-hover-blue-19{transition:background-color .3s ease-in-out}.background-hover-blue-19:hover{background-color:#92b1f5!important}.background-hover-blue-20{transition:background-color .3s ease-in-out}.background-hover-blue-20:hover{background-color:#3b73ed33!important}.background-hover-blue-21{transition:background-color .3s ease-in-out}.background-hover-blue-21:hover{background-color:#3b73ed66!important}.background-hover-gray{transition:background-color .3s ease-in-out}.background-hover-gray:hover{background-color:#e5e5e5!important}.background-hover-light-grey{transition:background-color .3s ease-in-out}.background-hover-light-grey:hover{background-color:#e5e5e5!important}.background-hover-bw-9{transition:background-color .3s ease-in-out}.background-hover-bw-9:hover{background-color:#dadada!important}.br-1{border-radius:1px}.br-2{border-radius:2px}.br-3{border-radius:3px}.br-10{border-radius:10px}.br-60{border-radius:60px}.br-circle{border-radius:50%}.padding-2{padding:2px}.padding-l-2{padding-left:2px}.padding-r-2{padding-right:2px}.padding-t-2{padding-top:2px}.padding-4{padding:4px}.padding-l-4{padding-left:4px}.padding-r-4{padding-right:4px}.padding-t-4{padding-top:4px}.padding-6{padding:6px}.padding-l-6{padding-left:6px}.padding-r-6{padding-right:6px}.padding-t-6{padding-top:6px}.padding-10{padding:10px}.padding-l-10{padding-left:10px}.padding-r-10{padding-right:10px}.padding-t-10{padding-top:10px}.padding-15{padding:15px}.padding-l-15{padding-left:15px}.padding-r-15{padding-right:15px}.padding-t-15{padding-top:15px}.padding-y-2{padding-top:2px;padding-bottom:2px}.padding-y-4{padding-top:4px;padding-bottom:4px}.padding-y-6{padding-top:6px;padding-bottom:6px}.padding-y-10{padding-top:10px;padding-bottom:10px}.padding-y-15{padding-top:15px;padding-bottom:15px}.padding-x-4{padding-left:4px;padding-right:4px}.padding-x-5{padding-left:5px;padding-right:5px}.padding-x-6{padding-left:6px;padding-right:6px}.padding-x-10{padding-left:10px;padding-right:10px}.margin--2{margin:-2px}.margin-y--2{margin-top:-2px;margin-bottom:-2px}.margin-x--2{margin-left:-2px;margin-right:-2px}.margin-t--2{margin-top:-2px}.margin-r--2{margin-right:-2px}.margin-b--2{margin-bottom:-2px}.margin-l--2{margin-left:-2px}.margin-1{margin:1px}.margin-y-1{margin-top:1px;margin-bottom:1px}.margin-x-1{margin-left:1px;margin-right:1px}.margin-t-1{margin-top:1px}.margin-r-1{margin-right:1px}.margin-b-1{margin-bottom:1px}.margin-l-1{margin-left:1px}.margin-2{margin:2px}.margin-y-2{margin-top:2px;margin-bottom:2px}.margin-x-2{margin-left:2px;margin-right:2px}.margin-t-2{margin-top:2px}.margin-r-2{margin-right:2px}.margin-b-2{margin-bottom:2px}.margin-l-2{margin-left:2px}.margin-4{margin:4px}.margin-y-4{margin-top:4px;margin-bottom:4px}.margin-x-4{margin-left:4px;margin-right:4px}.margin-t-4{margin-top:4px}.margin-r-4{margin-right:4px}.margin-b-4{margin-bottom:4px}.margin-l-4{margin-left:4px}.margin-5{margin:5px}.margin-y-5{margin-top:5px;margin-bottom:5px}.margin-x-5{margin-left:5px;margin-right:5px}.margin-t-5{margin-top:5px}.margin-r-5{margin-right:5px}.margin-b-5{margin-bottom:5px}.margin-l-5{margin-left:5px}.margin-6{margin:6px}.margin-y-6{margin-top:6px;margin-bottom:6px}.margin-x-6{margin-left:6px;margin-right:6px}.margin-t-6{margin-top:6px}.margin-r-6{margin-right:6px}.margin-b-6{margin-bottom:6px}.margin-l-6{margin-left:6px}.margin-8{margin:8px}.margin-y-8{margin-top:8px;margin-bottom:8px}.margin-x-8{margin-left:8px;margin-right:8px}.margin-t-8{margin-top:8px}.margin-r-8{margin-right:8px}.margin-b-8{margin-bottom:8px}.margin-l-8{margin-left:8px}.margin-10{margin:10px}.margin-y-10{margin-top:10px;margin-bottom:10px}.margin-x-10{margin-left:10px;margin-right:10px}.margin-t-10{margin-top:10px}.margin-r-10{margin-right:10px}.margin-b-10{margin-bottom:10px}.margin-l-10{margin-left:10px}.margin-15{margin:15px}.margin-y-15{margin-top:15px;margin-bottom:15px}.margin-x-15{margin-left:15px;margin-right:15px}.margin-t-15{margin-top:15px}.margin-r-15{margin-right:15px}.margin-b-15{margin-bottom:15px}.margin-l-15{margin-left:15px}.margin-22{margin:22px}.margin-y-22{margin-top:22px;margin-bottom:22px}.margin-x-22{margin-left:22px;margin-right:22px}.margin-t-22{margin-top:22px}.margin-r-22{margin-right:22px}.margin-b-22{margin-bottom:22px}.margin-l-22{margin-left:22px}.margin-24{margin:24px}.margin-y-24{margin-top:24px;margin-bottom:24px}.margin-x-24{margin-left:24px;margin-right:24px}.margin-t-24{margin-top:24px}.margin-r-24{margin-right:24px}.margin-b-24{margin-bottom:24px}.margin-l-24{margin-left:24px}.gap-xs{gap:2px}.w-1{width:1px}.h-1{height:1px}.w-2{width:2px}.h-2{height:2px}.w-4{width:4px}.h-4{height:4px}.w-10{width:10px}.h-10{height:10px}.w-14{width:14px}.h-14{height:14px}.w-15{width:15px}.h-15{height:15px}.w-18{width:18px}.h-18{height:18px}.w-22{width:22px}.h-22{height:22px}.w-26{width:26px}.h-26{height:26px}.w-31{width:31px}.h-31{height:31px}.w-32{width:32px}.h-32{height:32px}.w-36{width:36px}.h-36{height:36px}.w-116{width:116px}.h-116{height:116px}.w-120{width:120px}.h-120{height:120px}.w-fit-content{width:fit-content}.filter-dropdown-popover{width:260px;position:relative;top:-4px;left:-4px}.filter-dropdown-popover-max-height{max-height:360px}.filter-dropdown-list{max-height:260px;overflow-y:auto}.filter-dropdown-list-icon{height:26px;transition:background-color .3s ease-in-out}.filter-dropdown-list-icon-value{height:14px;width:14px}.filter-dropdown-list-icon-remove{display:none}.filter-dropdown-list-icon:hover{background-color:#424242}.filter-dropdown-list-icon:hover .filter-dropdown-icon-count{display:none}.filter-dropdown-list-icon-selected:hover{background-color:#0b49d1}.filter-dropdown-list-item-icons{transition:opacity .3s ease-in-out;opacity:0}.filter-dropdown-list-item-status-circle{height:10px;width:10px}.filter-dropdown-list-item-remove{display:none}.filter-dropdown-list-item:hover{background-color:#424242}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons{opacity:1}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons svg path{fill:var(--svg-fill-color, #e66767)}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove{display:flex}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove svg path{fill:#e66767!important}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-count{display:none!important}.filter-dropdown-icon{height:26px;width:26px}.filter-dropdown-count{height:14px;width:14px}.filter-dropdown-count-remove,.filter-dropdown-count-hover:hover .filter-dropdown-count-value{display:none}.filter-dropdown-count-hover:hover .filter-dropdown-count-remove{display:flex}.filter-dropdown-button{height:26px}.filter-dropdown-footer-button{color:#dadada;transition:color .3s ease-in-out,background-color .3s ease-in-out;height:18px;width:50%}.filter-dropdown-footer-button-set{color:#fff;background-color:#3b73ed}.filter-dropdown-footer-button-set:hover{background-color:#e9effd;color:#0b49d1}.filter-dropdown-footer-button-clear{color:#dadada}.filter-dropdown-footer-button-clear:hover{background-color:#eee;color:#424242}.filter-dropdown-list-badge{min-width:18px}.h-7{height:7px!important;min-height:7px!important}.h-8{height:8px!important;min-height:8px!important}.h-10{height:10px!important;min-height:10px!important}.h-12{height:12px!important;min-height:12px!important}.h-14{height:14px!important;min-height:14px!important}.h-15{height:15px!important;min-height:15px!important}.h-16{height:16px!important;min-height:16px!important}.h-18{height:18px!important;min-height:18px!important}.h-22{height:22px!important;min-height:22px!important}.h-24{height:24px!important;min-height:24px!important}.h-26{height:26px!important;min-height:26px!important}.h-30{height:30px!important;min-height:30px!important}.h-34{height:34px!important;min-height:34px!important}.h-37{height:37px!important;min-height:37px!important}.h-40{height:40px!important;min-height:40px!important}.h-42{height:42px!important;min-height:42px!important}.h-44{height:44px!important;min-height:44px!important}.h-52{height:52px!important;min-height:52px!important}.h-486{height:486px!important;min-height:486px!important}.h-800{height:800px!important;min-height:800px!important}.h-960{height:960px!important;min-height:960px!important}.w-2{width:2px!important;min-width:2px!important}.w-7{width:7px!important;min-width:7px!important}.w-8{width:8px!important;min-width:8px!important}.w-10{width:10px!important;min-width:10px!important}.w-12{width:12px!important;min-width:12px!important}.w-15{width:15px!important;min-width:15px!important}.w-18{width:18px!important;min-width:18px!important}.w-22{width:22px!important;min-width:22px!important}.w-24{width:24px!important;min-width:24px!important}.w-26{width:26px!important;min-width:26px!important}.w-29{width:29px!important;min-width:29px!important}.w-30{width:30px!important;min-width:30px!important}.w-36{width:36px!important;min-width:36px!important}.w-40{width:40px!important;min-width:40px!important}.w-42{width:42px!important;min-width:42px!important}.w-46{width:46px!important;min-width:46px!important}.w-49{width:49px!important;min-width:49px!important}.w-57{width:57px!important;min-width:57px!important}.w-60{width:60px!important;min-width:60px!important}.w-68{width:68px!important;min-width:68px!important}.w-70{width:70px!important;min-width:70px!important}.w-71{width:71px!important;min-width:71px!important}.w-78{width:78px!important;min-width:78px!important}.w-80{width:80px!important;min-width:80px!important}.w-83{width:83px!important;min-width:83px!important}.w-84{width:84px!important;min-width:84px!important}.w-88{width:88px!important;min-width:88px!important}.w-90{width:90px!important;min-width:90px!important}.w-91{width:91px!important;min-width:91px!important}.w-93{width:93px!important;min-width:93px!important}.w-98{width:98px!important;min-width:98px!important}.w-101{width:101px!important;min-width:101px!important}.w-106{width:106px!important;min-width:106px!important}.w-108{width:108px!important;min-width:108px!important}.w-116{width:116px!important;min-width:116px!important}.w-126{width:126px!important;min-width:126px!important}.w-144{width:144px!important;min-width:144px!important}.w-155{width:155px!important;min-width:155px!important}.w-172{width:172px!important;min-width:172px!important}.w-179{width:179px!important;min-width:179px!important}.w-202{width:202px!important;min-width:202px!important}.w-223{width:223px!important;min-width:223px!important}.w-264{width:264px!important;min-width:264px!important}.w-268{width:268px!important;min-width:268px!important}.w-272{width:272px!important;min-width:272px!important}.w-277{width:277px!important;min-width:277px!important}.w-334{width:334px!important;min-width:334px!important}.w-442{width:442px!important;min-width:442px!important}.w-462{width:462px!important;min-width:462px!important}.w-612{width:612px!important;min-width:612px!important}.w-616{width:616px!important;min-width:616px!important}.w-620{width:620px!important;min-width:620px!important}.min-w-18{min-width:18px}.flex-1{flex:1}.w-33{width:33%}.w-40p{width:40%}.w-90p{width:90%}*{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}.c-pointer{cursor:pointer}.pointer-events-none{pointer-events:none}.ca-scroll-bar{overflow-y:scroll}.ca-scroll-bar::-webkit-scrollbar{width:2px}.ca-scroll-bar::-webkit-scrollbar-thumb{background:#ccc;border-radius:1px}.ca-scroll-bar::-webkit-scrollbar-track{background:#2f2f2f}.place-items-center{justify-content:center;align-items:center}.prevent-text-selection{-ms-user-select:none;-webkit-user-select:none;user-select:none;-moz-user-select:none}.datetime-dropdown-holder{position:relative;top:16px}.pickers_holder{position:absolute;top:3px!important;width:auto!important;padding:0;background-color:#fff;box-shadow:0 0 4px #00000026;z-index:999;border-radius:3px;overflow:hidden}.pickers_holder .time_picker{width:167px}.pickers_holder .date_picker{display:flex}.pickers_holder .date_picker .month-years-size{position:relative;width:48px;background-color:#f9f9f9}.pickers_holder .date_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:24px;transform:translateY(-50%);background-color:#fff}.pickers_holder .date_picker .month-years-size .month-year-item{display:flex;align-items:center;justify-content:center;height:24px;font-size:14px;color:#919191;font-weight:400;text-align:center;text-transform:uppercase}.pickers_holder .date_picker .month-years-size .month-year-item .left-year-show{color:#919191;font-size:14px;font-weight:700}.pickers_holder .date_picker .month-years-size .month-year-item:hover{color:#6c6c6c;cursor:pointer;background-color:#fbe9e9;border-radius:2px}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 2px 0}.pickers_holder .date_picker .full-calendars-list{flex:1;max-height:290px;min-width:264px;overflow:hidden}.pickers_holder .date_picker .full-calendars-list .full_list{height:100%}.pickers_holder .date_picker .full-calendars-list .full_list .selfScroll{width:100%;height:100%}.pickers_holder .time_picker .time_picker_head{height:36px;display:flex;padding:0 12px;align-items:center;justify-content:space-between}.pickers_holder .time_picker .time_picker_head .selected_time{font-size:14px;font-weight:800;color:#6c6c6c}.pickers_holder .time_picker .time_picker_head .sel_now{color:#536bc2;font-size:14px;font-weight:700}.pickers_holder .time_picker .time_picker_head .sel_now:hover{cursor:pointer;color:#5673aa}.pickers_holder .time_picker .time_picker_body .picker_body_head{height:22px;display:flex;align-items:center;background-color:#f7f7f7;margin:0 4px 2px;border-radius:2px}.pickers_holder .time_picker .time_picker_body .picker_body_head div{flex:0 0 33%;text-align:center;font-size:10px;font-weight:700;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body_head div.active{color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body{position:relative;height:155px;display:flex;justify-content:center}.pickers_holder .time_picker .time_picker_body .picker_body:after{content:\"\";position:absolute;width:100%;height:31px;top:-1px;left:0;pointer-events:none;background:linear-gradient(to bottom,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body:before{content:\"\";position:absolute;pointer-events:none;width:100%;height:31px;bottom:-1px;left:0;background:linear-gradient(to top,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line{position:absolute;width:calc(100% - 8px);height:22px;top:50%;left:4px;border-radius:2px;transform:translateY(-50%);background-color:#9191911a}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line span{position:absolute;left:30%;font-size:14px;font-weight:400;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers{position:relative;height:22px;flex:0 0 33.3%;height:100%;padding:67px 0;margin:0 7px;overflow:auto;text-align:center;-ms-overflow-style:none;scrollbar-width:none;z-index:10}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:first-child{flex:0 0 28px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(2){flex:0 0 36px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(3){flex:0 0 38px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers::-webkit-scrollbar{display:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{height:22px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#919191;font-weight:400;-webkit-user-select:none;user-select:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item:hover{color:#5673aa;cursor:pointer}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:hover{box-shadow:inset 0 0 4px #00000026}.pickers_holder .time_picker .picker_buttons{display:flex;padding:6px;justify-content:space-between}.pickers_holder .time_picker .picker_buttons .pick_button{display:flex;align-items:center;justify-content:center;height:32px;padding:0 12px;text-align:center;border-radius:2px;font-size:12px;font-weight:700;color:#919191b3}.pickers_holder .time_picker .picker_buttons .pick_button:hover{background-color:#f3f3f3;color:#919191;cursor:pointer}.pickers_holder .time_picker .picker_buttons .pick_button.set_button{width:57px;text-align:center;background-color:#6d82c7;color:#fff}.pickers_holder .time_picker .picker_buttons .pick_button.set_button:hover{background-color:#536bc2}.pickers_holder.dark_picker{background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size{width:40px;background-color:#424242}.pickers_holder.dark_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:26px;transform:translateY(-50%);background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .month-year-item{height:22px;color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item .left-year-show{color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year{color:#fff}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year .left-year-show{color:#fff;font-weight:700}.pickers_holder.dark_picker .month-years-size .month-year-item:hover{color:#fff;background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 4px 0}.pickers_holder.dark_picker .date_picker{margin:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list{min-width:184px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view{width:182px;padding-top:6px;background-color:#2f2f2f}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head{padding:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name{padding:0 4px;color:#fff;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name .year_hold{margin-right:0;color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today{padding:0 4px;color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today:hover{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator{margin:12px 10px;color:#919191;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.current_year{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.full_calendar{margin-bottom:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px 4px;padding:0}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days .cal_day{width:22px;height:22px;margin:0;font-size:9px;color:#aaa;text-align:center}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;row-gap:12px;justify-content:unset;margin:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item{margin:0;height:22px;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item:hover:not(.current_month){background-color:#424242;color:#fff;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item.current_month{color:#fff;background-color:#3b73ed66;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list.current_year .month_list_item{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px;padding:0;height:auto}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day{width:22px;height:22px;margin:0;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#fff;background-color:#3b73ed66;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#3b73ed66;color:#fff;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.day_in_current_month{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.weekend_day_in_current_month{color:#ccc}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#424242;border-radius:2px;cursor:pointer;color:#fff}.pickers_holder.dark_picker .time_picker{width:156px;margin:4px}.pickers_holder.dark_picker .time_picker .time_picker_head{height:18px;padding:0 4px;margin-bottom:4px}.pickers_holder.dark_picker .time_picker .time_picker_head .selected_time{color:#fff;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_head .sel_now{color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;margin:0 0 4px;padding:2px;background:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head div{color:#aaa;font-size:9px;text-align:center;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body{height:176px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;padding:0 2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:before{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:after{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line{left:0;width:100%;background-color:#3b73ed33}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line{left:33.3%;width:1px;height:12px;margin-top:5px;background-color:#92b1f5;opacity:.4;border-radius:2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line.line_2{left:66.6%}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers{margin:0;padding:77px 0}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{color:#aaa;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item.active_item{color:#fff}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons{display:grid;grid-template-columns:repeat(2,1fr);column-gap:4px;margin-top:6px;padding:4px 0 0;border-top:1px solid #424242}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button{height:18px;background-color:#424242;color:#fff;font-size:11px;text-transform:uppercase;border-radius:1px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button.set_button{width:auto;background-color:#3b73ed}.calendar_view{width:260px;padding-top:12px;background-color:#fff}.calendar_view .calendar_view_head{display:flex;justify-content:space-between;margin-bottom:12px;padding:0 12px}.calendar_view .calendar_view_head .month_name{font-size:12px;font-weight:700;color:#6c6c6c}.calendar_view .calendar_view_head .month_name .year_hold{margin-right:5px;text-transform:uppercase;color:#6c6c6c;cursor:pointer}.calendar_view .calendar_view_head .month_name .year_hold:hover{color:#919191}.calendar_view .calendar_view_head .today{font-size:12px;font-weight:700;color:#5673aab3;cursor:pointer}.calendar_view .calendar_view_head .today:hover{color:#3551b7}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport{height:230px;min-height:230px}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view .calendar_indicator{margin:12px;height:18px;font-size:12px;color:#6c6c6c66;font-weight:700}.calendar_view .calendars_list_view .calendar_month_days{padding:0 3px}.calendar_view .calendars_list_view .calendar_month_days.hideVisibility{visibility:hidden}.calendar_view .calendars_list_view .calendar_month_days .cal_day{width:24px;margin:0 6px;font-size:12px;font-weight:700;color:#b7b7b7}.calendar_view .calendars_list_view .calendar_days{height:140px;display:flex;flex-wrap:wrap;padding:0 3px}.calendar_view .calendars_list_view .calendar_days .calendar_day{display:flex;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;margin:0 6px;font-size:14px;font-weight:400;color:#6c6c6c}.calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#fff;background-color:#919191;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#919191;color:#fff;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#f7f7f7;border-radius:2px;cursor:pointer;color:#3c3c3c}.calendar_view .month_list{display:flex;flex-wrap:wrap;justify-content:space-around;height:140px}.calendar_view .month_list .month_list_item{flex:0 0 50px;height:24px;margin:0 10px;display:flex;align-items:center;justify-content:center;border-radius:3px;font-size:12px;color:#6c6c6c;font-weight:400}.calendar_view .month_list .month_list_item:hover:not(.current_month){background-color:#f7f7f7;color:#3c3c3c;border-radius:2px;cursor:pointer}.calendar_view .month_list .month_list_item.current_month{color:#3c3c3c;background-color:#f7f7f7;border-radius:2px;cursor:pointer}.dropdown{z-index:999!important}input[type=date]::-webkit-inner-spin-button,input[type=date]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}.input-custom-group{display:block;position:relative}.input-custom-group .location-area-filter,.input-custom-group .location-area-filter.focus,.input-custom-group .location-area-filter.focus:hover{background-color:#424242!important;color:#fff!important}.input-custom-group .location-area-filter.focus::placeholder{background-color:#424242!important}.input-custom-group .location-area-filter:focus{background-color:#424242!important;color:#fff!important}.input-custom-group:hover.required-label-table label span{color:#2f2f2f!important}.input-custom-group.custom-empty-hover:hover{transition:.3s ease-in-out}.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.custom-empty-hover:hover .input-icon:hover~.input-control,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:hover~.input-control{background-color:#dadada}.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:before:hover,.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.custom-empty-hover:hover .input-icon:before:hover,.input-custom-group.custom-empty-hover:hover .input-icon:after:hover~.input-control,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:after:hover~.input-control{background-color:#dadada}.input-custom-group.custom-filled-hover:hover{transition:.3s ease-in-out}.input-custom-group.custom-filled-hover:hover .input-clear{display:inline-block}.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-icon:hover~.input-control,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-clear:hover~.input-control{background-color:#dadada}.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:before:hover,.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-icon:before:hover,.input-custom-group.custom-filled-hover:hover .input-icon:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-clear:before:hover,.input-custom-group.custom-filled-hover:hover .input-clear:after:hover~.input-control{background-color:#dadada}.input-custom-group.input-remove-trash-can:hover .input-clear{display:inline-block!important}.input-custom-group.input-remove-trash-can:hover .input-clear:hover~.input-control{background-color:#dadada}.input-custom-group.input-remove-trash-can:hover .placeholder-icon-right-side{opacity:0}.input-custom-group.input-remove-background:hover .input-control{background:transparent!important}.input-custom-group.input-remove-background.input-blue-text{color:red}.input-custom-group.input-remove-background .input-control{background:transparent;color:#2f2f2f;font-weight:400}.input-custom-group.input-remove-background .input-control.focus,.input-custom-group.input-remove-background .input-control.focus:hover{background:#2f2f2f!important;color:#fff!important}.input-custom-group.input-remove-background .input-control.focus::placeholder{color:#fff!important}.input-custom-group.input-remove-background .input-control:focus{background:#2f2f2f!important;color:#fff!important}.input-custom-group.input-remove-background .input-dropdown-arrow svg path{fill:#919191!important}.input-custom-group.input-blue-text .input-control{color:#6692f1}.input-custom-group.invalid-filled-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.invalid-filled-focus-out:hover .input-clear,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow,.input-custom-group.invalid-filled-focus-out:hover .input-icon,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear{display:inline-block}.input-custom-group.invalid-filled-focus-out:hover .input-clear:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-icon:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-filled-focus-out:hover .input-clear:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-clear:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-icon:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-icon:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:after:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-filled-focus-out:hover .input-label-counter{display:flex}.input-custom-group.invalid-empty-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.invalid-empty-focus-out:hover .input-clear{display:none}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x svg path{fill:#e66767}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x svg rect{fill:#e66767}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x:hover svg path{fill:#c20c0c}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x:hover svg rect{fill:#c20c0c}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.invalid-empty-focus-out:hover .input-icon{display:inline-block}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-icon:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-icon:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-icon:after:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-focus-in:hover{transition:.3s ease-in-out}.input-custom-group.invalid-focus-in:hover .input-password-eye:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-password:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:hover~.input-control{background-color:#e22e22}.input-custom-group.invalid-focus-in:hover .input-password-eye:before:hover,.input-custom-group.invalid-focus-in:hover .input-password-eye:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-password:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:after:hover~.input-control{background-color:#e22e22}.input-custom-group.valid-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.valid-focus-out:hover .input-clear,.input-custom-group.valid-focus-out:hover .input-pen-container,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow,.input-custom-group.valid-focus-out:hover .input-icon,.input-custom-group.valid-focus-out:hover .input-label-counter,.input-custom-group.valid-focus-out:hover .input-password-eye,.input-custom-group.valid-focus-out:hover app-ca-input-password,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.valid-focus-out:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.valid-focus-out:hover .input-clear:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-icon:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-label-counter:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-password-eye:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-password:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-clear:hover~.input-control{background-color:#c5d8f3}.input-custom-group.valid-focus-out:hover .input-clear:before:hover,.input-custom-group.valid-focus-out:hover .input-clear:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-pen-container:before:hover,.input-custom-group.valid-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-icon:before:hover,.input-custom-group.valid-focus-out:hover .input-icon:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-label-counter:before:hover,.input-custom-group.valid-focus-out:hover .input-label-counter:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-password-eye:before:hover,.input-custom-group.valid-focus-out:hover .input-password-eye:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-password:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-clear:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-clear:after:hover~.input-control{background-color:#c5d8f3}.input-custom-group.valid-focus-out:hover .input-label-counter{display:flex}.input-custom-group.valid-focus-out:hover .input-required-check{display:none}.input-custom-group.valid-focus-in:hover{transition:.3s ease-in-out}.input-custom-group.valid-focus-in:hover .trash-can-svg:hover~.input-control,.input-custom-group.valid-focus-in:hover .input-password-eye:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-password:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-clear:hover~.input-control{background-color:#255bb9}.input-custom-group.valid-focus-in:hover .trash-can-svg:before:hover,.input-custom-group.valid-focus-in:hover .trash-can-svg:after:hover~.input-control,.input-custom-group.valid-focus-in:hover .input-password-eye:before:hover,.input-custom-group.valid-focus-in:hover .input-password-eye:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-password:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-clear:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-clear:after:hover~.input-control{background-color:#255bb9}.input-custom-group.inactive-filled:hover .input-clear,.input-custom-group.inactive-filled:hover .trash-can-svg,.input-custom-group.inactive-filled:hover .input-pen-container,.input-custom-group.inactive-filled:hover .input-dropdown-arrow,.input-custom-group.inactive-filled:hover .input-icon,.input-custom-group.inactive-filled:hover .input-password-eye,.input-custom-group.inactive-filled:hover app-ca-input-password,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon,.input-custom-group.inactive-filled:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.inactive-filled:hover .input-clear:hover~.input-control,.input-custom-group.inactive-filled:hover .trash-can-svg:hover~.input-control,.input-custom-group.inactive-filled:hover .input-pen-container:hover~.input-control,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.inactive-filled:hover .input-icon:hover~.input-control,.input-custom-group.inactive-filled:hover .input-password-eye:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-password:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-clear:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-filled:hover .input-clear:before:hover,.input-custom-group.inactive-filled:hover .input-clear:after:hover~.input-control,.input-custom-group.inactive-filled:hover .trash-can-svg:before:hover,.input-custom-group.inactive-filled:hover .trash-can-svg:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-pen-container:before:hover,.input-custom-group.inactive-filled:hover .input-pen-container:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:before:hover,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-icon:before:hover,.input-custom-group.inactive-filled:hover .input-icon:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-password-eye:before:hover,.input-custom-group.inactive-filled:hover .input-password-eye:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-password:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-clear:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-clear:after:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-empty:hover .input-clear,.input-custom-group.inactive-empty:hover .input-pen-container,.input-custom-group.inactive-empty:hover .input-dropdown-arrow,.input-custom-group.inactive-empty:hover .input-icon,.input-custom-group.inactive-empty:hover .input-password-eye,.input-custom-group.inactive-empty:hover app-ca-input-password,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon,.input-custom-group.inactive-empty:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.inactive-empty:hover .input-clear:hover~.input-control,.input-custom-group.inactive-empty:hover .input-pen-container:hover~.input-control,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.inactive-empty:hover .input-icon:hover~.input-control,.input-custom-group.inactive-empty:hover .input-password-eye:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-password:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-clear:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-empty:hover .input-clear:before:hover,.input-custom-group.inactive-empty:hover .input-clear:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-pen-container:before:hover,.input-custom-group.inactive-empty:hover .input-pen-container:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:before:hover,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-icon:before:hover,.input-custom-group.inactive-empty:hover .input-icon:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-password-eye:before:hover,.input-custom-group.inactive-empty:hover .input-password-eye:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-password:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-clear:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-clear:after:hover~.input-control{background-color:#f7f7f7}.input-custom-group .input-label{position:absolute;top:4px;left:6px;font-size:14px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;transition:.3s ease-in-out}.input-custom-group .input-label span::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.input-custom-group .input-label span::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.input-custom-group .input-label.required:after{content:\" *\";color:#ef5350}.input-custom-group .input-label.inactive-empty{color:#919191!important}.input-custom-group .input-label.up-label{top:-17px;left:6px;font-size:11px;font-weight:600}.input-custom-group .input-label.in-label{top:4px!important;font-size:11px!important;font-weight:600!important;transition:none!important}.input-custom-group .input-label.in-label.in-label-focus{color:#fff!important}.input-custom-group .input-label.no-transition{transition:none!important}.input-custom-group .input-label.input-placeholderIcon-on{left:37px}.input-custom-group .input-label.input-placeholderIcon-on.up-label{left:36px}.input-custom-group .input-label.hidden{display:none!important}.input-custom-group .input-label.required-label span{color:#df3c3c}.input-custom-group .input-label.load-shipper .load-shipper{display:grid;grid-template-columns:455px 120px;align-items:center}.input-custom-group .input-label.load-shipper .load-shipper span:nth-child(2){text-align:right;color:#6c6c6c;font-size:11px;font-weight:600}.input-custom-group .input-label.load-shipper.required:after{position:absolute;right:0;left:60px;top:0}.input-custom-group .input-label.load-shipper.multiple-labels.required:after,.input-custom-group .input-label.load-shipper.up-label.required:after{transition-delay:.1s;transition-timing-function:ease-in;position:absolute;right:0;left:48px;top:0}.input-custom-group .input-label .load-dispatches-ttd{display:grid;grid-template-columns:92px 89px 182px 53px;align-items:center;-moz-column-gap:65px;grid-column-gap:65px;column-gap:65px}.input-custom-group .input-label .load-dispatches-ttd span:nth-child(4){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label .load-dispatches-ttd.multiple-labels-position-on-focus span:nth-child(4){transition-delay:.3s;color:#6c6c6c!important;opacity:1;top:-19px}.input-custom-group .input-label.dropdown-double-column>*{display:grid;grid-template-columns:118px 1fr;align-items:center;-moz-column-gap:4px;grid-column-gap:4px;column-gap:4px}.input-custom-group .input-label.dropdown-triple-column>*{display:grid;grid-template-columns:220px 138px 220px;align-items:center;-moz-column-gap:4px;grid-column-gap:4px;column-gap:4px}.input-custom-group .input-label.load-broker .load-broker{display:grid;align-items:center;grid-template-columns:277px 82px 69px}.input-custom-group .input-label.load-broker .load-broker span:nth-child(2),.input-custom-group .input-label.load-broker .load-broker span:nth-child(3){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label.load-broker .load-broker.multiple-labels-position-on-focus span:nth-child(2),.input-custom-group .input-label.load-broker .load-broker.multiple-labels-position-on-focus span:nth-child(3){transition-delay:.3s;color:#919191!important;opacity:1;top:-19px;text-align:right}.input-custom-group .input-label.load-broker.required:after{position:absolute;left:51px;right:0;top:-1px}.input-custom-group .input-label.load-broker.multiple-labels.required:after,.input-custom-group .input-label.load-broker.up-label.required:after{transition-delay:.1s;transition-timing-function:ease-in;position:absolute;left:44px;right:0;top:-1px}.input-custom-group .input-label .load-broker-contact,.input-custom-group .input-label .load-shipper-contact{display:grid;grid-template-columns:235px 38px;align-items:center;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;transition:.3 ease-in-out}.input-custom-group .input-label .load-broker-contact span:nth-child(2),.input-custom-group .input-label .load-shipper-contact span:nth-child(2){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label .load-broker-contact.multiple-labels-position-on-focus span:nth-child(2),.input-custom-group .input-label .load-shipper-contact.multiple-labels-position-on-focus span:nth-child(2){transition-delay:.3s;opacity:1;top:-19px;color:#6c6c6c!important}.input-custom-group .input-label.load-shipper-contact .load-shipper-contact{grid-template-columns:295px 38px}.input-custom-group .input-label.regular{font-weight:400}.input-custom-group .input-label.datetimeclass.dark{color:#fff}.input-custom-group .hide-loads .load-broker{grid-template-columns:365px 92px}.input-custom-group .input-control{width:100%;height:26px;border:none;outline:none;border-radius:2px;padding:4px 6px;font-size:14px;font-weight:400;background-color:#eee;color:#2f2f2f;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.input-custom-group .input-control::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.center{text-align:center}.input-custom-group .input-control.uppercase{text-transform:uppercase}.input-custom-group .input-control.lowercase{text-transform:lowercase}.input-custom-group .input-control:hover{background-color:#dadada}.input-custom-group .input-control:focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .input-control:focus::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::-moz-placeholder{color:#fff6}.input-custom-group .input-control:focus:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::placeholder{color:#fff6}.input-custom-group .input-control:focus::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control:focus::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control:focus.blue-dropdown{background-color:#0b49d1}.input-custom-group .input-control.valid-focus-in,.input-custom-group .input-control.dropdown-placeholder-active,.input-custom-group .input-control.multiSelect-dropdown-active{background-color:#255bb9;color:#fff}.input-custom-group .input-control.valid-focus-in::-webkit-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-webkit-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-webkit-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-moz-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-moz-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-moz-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in:-ms-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active:-ms-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active:-ms-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-ms-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-ms-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-ms-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::placeholder,.input-custom-group .input-control.dropdown-placeholder-active::placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-moz-selection,.input-custom-group .input-control.dropdown-placeholder-active::-moz-selection,.input-custom-group .input-control.multiSelect-dropdown-active::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.valid-focus-in::selection,.input-custom-group .input-control.dropdown-placeholder-active::selection,.input-custom-group .input-control.multiSelect-dropdown-active::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.valid-focus-out-filled{background-color:#e2ecf9;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled.input-dropdown-table{background-color:#fff}.input-custom-group .input-control.valid-focus-out-filled::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled:hover{background-color:#c5d8f3}.input-custom-group .input-control.invalid-focus-in,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in{background-color:#e22e22;color:#fff}.input-custom-group .input-control.invalid-focus-in::-moz-selection,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.invalid-focus-in::selection,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.invalid-focus-out-filled,.input-custom-group .input-control.invalid-focus-out-empty{background-color:#fae3e3;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled::-moz-selection,.input-custom-group .input-control.invalid-focus-out-empty::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled::selection,.input-custom-group .input-control.invalid-focus-out-empty::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled:hover,.input-custom-group .input-control.invalid-focus-out-empty:hover{background-color:#f5c7c7}.input-custom-group .input-control.invalid-focus-out-empty-table:hover{color:#2f2f2f;background-color:#f5c7c7}.input-custom-group .input-control.inactive-empty{background-color:#f7f7f7;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled{background-color:#f7f7f7;color:#2f2f2f;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.inactive-filled::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.datetimeclass:not(.inactive-filled){letter-spacing:1px;pointer-events:none;opacity:0}.input-custom-group .input-control.has-placeholderIcon{padding-left:37px}.input-custom-group .input-control.dropdown-input-image-truck{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-webkit-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-moz-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus:-ms-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-ms-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-trailer{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-webkit-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-moz-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus:-ms-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-ms-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-color{padding-left:29px}.input-custom-group .input-control.dropdown-input-image-user{padding-left:30px}.input-custom-group .input-control.dropdown-input-image-pm{padding-left:37px}.input-custom-group .input-control.dropdown-input-image-without-text-transparent,.input-custom-group .input-control.multiple-input-values{color:transparent}.input-custom-group .input-control.input-32-font-20{font-weight:700;font-size:20px}.input-custom-group .input-control.details-pages{height:32px;background:#1d1d1d;color:#fff6}.input-custom-group .input-control.details-pages .input-dropdown-arrow:hover,.input-custom-group .input-control.details-pages:hover{background:#1d1d1d}.input-custom-group .input-control.details-pages::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::-moz-placeholder{color:#fff6}.input-custom-group .input-control.details-pages:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::placeholder{color:#fff6}.input-custom-group .input-control.disable-select-on-focus-out::-moz-selection{background-color:transparent}.input-custom-group .input-control.disable-select-on-focus-out::selection{background-color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-webkit-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-moz-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input:-ms-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-ms-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::placeholder{opacity:0;color:transparent}.input-custom-group .input-control.multiple-input-placeholder{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.load-dispatches-ttd,.input-custom-group .input-control.load-broker,.input-custom-group .input-control.load-shipper,.input-custom-group .input-control.load-shipper-contact{position:absolute;bottom:1.5px;background-color:transparent;display:grid;align-items:center}.input-custom-group .input-control.load-dispatches-ttd span,.input-custom-group .input-control.load-broker span,.input-custom-group .input-control.load-shipper span,.input-custom-group .input-control.load-shipper-contact span{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.double-text-dropdown{position:absolute;top:50%;transform:translateY(-48%);background-color:transparent;display:flex;align-items:center;justify-content:space-between;padding-right:26px}.input-custom-group .input-control.double-text-dropdown span:last-child .multiple-input-text{color:#919191;font-size:11px;font-weight:400}.input-custom-group .input-control.double-text-dropdown span:last-child .multiple-input-text.focusable-text{color:#6f9ee0;font-size:11px;font-weight:400}.input-custom-group .input-control.double-text-dropdown span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd{grid-template-columns:repeat(2,156px) 150px 122px;padding-top:3px}.input-custom-group .input-control.load-dispatches-ttd svg{height:16px;width:44px}.input-custom-group .input-control.load-dispatches-ttd svg path{fill:#919191}.input-custom-group .input-control.load-dispatches-ttd span:nth-child(1) .multiple-input-text,.input-custom-group .input-control.load-dispatches-ttd span:nth-child(2) .multiple-input-text{max-width:70px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.input-custom-group .input-control.load-dispatches-ttd span:nth-child(3) .multiple-input-text{max-width:100px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.input-custom-group .input-control.load-dispatches-ttd span:last-child{justify-content:flex-end}.input-custom-group .input-control.load-dispatches-ttd span:last-child .multiple-input-text{color:#919191!important;font-size:11px;font-weight:400;line-height:24px}.input-custom-group .input-control.load-dispatches-ttd span:last-child .multiple-input-text.focusable-text{color:#6f9ee0;font-size:11px;font-weight:400}.input-custom-group .input-control.load-dispatches-ttd span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd span span{line-height:23px;position:relative}.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9856,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9857,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9858,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg path{fill:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd .focusable-image{opacity:.6}.input-custom-group .input-control.load-dispatches-ttd .trailerContainer{width:max-content!important;padding:0!important;margin:0!important}.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9856,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9857,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9858,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg path{fill:#6f9ee0}.input-custom-group .input-control.load-broker{display:grid;grid-template-columns:229px 115px 48px;align-items:center;height:24px}.input-custom-group .input-control.load-broker span:nth-child(1){white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.input-custom-group .input-control.load-broker span:nth-child(2),.input-custom-group .input-control.load-broker span:nth-child(3){justify-content:flex-end}.input-custom-group .input-control.load-broker span:nth-child(3){position:relative;bottom:1px}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter.counter-focus{color:#6f9ee0;background-color:#6f9ee033}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter.counter-one{max-width:none!important;width:19px!important}.input-custom-group .input-control.load-broker-contact,.input-custom-group .input-control.load-shipper-contact{position:absolute;top:50%;transform:translateY(-50%);background-color:transparent!important;display:grid;grid-template-columns:165px 94px;align-items:center;grid-column-gap:20px;-moz-column-gap:20px;column-gap:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px;padding-right:35px}.input-custom-group .input-control.load-broker-contact span,.input-custom-group .input-control.load-shipper-contact span{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.load-broker-contact span span,.input-custom-group .input-control.load-shipper-contact span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.load-broker-contact span:nth-child(2),.input-custom-group .input-control.load-shipper-contact span:nth-child(2){justify-self:flex-end;font-size:11px;font-weight:400;line-height:24px}.input-custom-group .input-control.load-broker-contact span:nth-child(2) span,.input-custom-group .input-control.load-shipper-contact span:nth-child(2) span{color:#919191!important}.input-custom-group .input-control.text-suffix{position:absolute;top:50%;transform:translateY(-50%);background-color:transparent!important;display:flex;align-items:center;column-gap:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px;padding-right:35px}.input-custom-group .input-control.text-suffix span{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.text-suffix span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.text-suffix span:nth-child(2){justify-self:flex-end;font-size:14px;font-weight:400;line-height:18px}.input-custom-group .input-control.text-suffix span:nth-child(2) span:not(.focusable-text){color:#919191!important}.input-custom-group .input-control.text-suffix span:nth-child(2) span:not(.focusable-text):before{content:\"\\2022 \"}.input-custom-group .input-control.text-suffix span:nth-child(2) span.ca-add-dot:before{content:\"\\2022 \"}.input-custom-group .input-control.load-shipper-contact{grid-template-columns:283px 38px}.input-custom-group .input-control.load-shipper{grid-template-columns:394px 180px;-moz-column-gap:2px;column-gap:2px;padding-right:25px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px}.input-custom-group .input-control.load-shipper span:nth-child(2),.input-custom-group .input-control.load-shipper span:nth-child(3){justify-content:flex-end;font-size:11px;color:#919191!important;font-weight:400}.input-custom-group .input-control.load-shipper span:nth-child(2) span{color:#919191!important}.input-custom-group .input-control.load-shipper span:nth-child(2) span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;position:relative;bottom:1px}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter.counter-focus{color:#6f9ee0;background-color:#6f9ee033}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter.counter-one{max-width:none!important;width:19px!important}.input-custom-group .input-control.load-shipper span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.cursor-on-right-side{text-align:right;padding-right:32px}.input-custom-group .input-control.merge-dropdown-body-with-input::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::-moz-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::placeholder{color:#fff6}.input-custom-group .input-control.input-commands{background-color:#1d1d1d!important;color:#fff!important}.input-custom-group .input-control.input-commands.blue-commands{background-color:#0b49d1!important}.input-custom-group .input-control.dropdown-label-active{background-color:#1d1d1d!important;color:#fff!important}.input-custom-group .input-control.dispatch-dropdown{width:calc(100% - 24px);background-color:#2f2f2f!important}.input-custom-group input[type=number]::-webkit-inner-spin-button,.input-custom-group input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0!important}.input-custom-group input[type=number]::-webkit-inner-spin-button:hover,.input-custom-group input[type=number]::-webkit-outer-spin-button:hover,.input-custom-group input[type=number]::-webkit-inner-spin-button:focus,.input-custom-group input[type=number]::-webkit-outer-spin-button:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0!important}.input-custom-group input[type=number]{-moz-appearance:textfield!important}.input-custom-group input[type=number]:hover,.input-custom-group input[type=number]:focus{-moz-appearance:textfield!important}.input-custom-group .load-dispatches-ttd-owner{position:absolute;left:13px;bottom:7px;width:10px;height:10px}.input-custom-group .load-dispatches-ttd-owner svg{width:10px!important;height:10px!important}.input-custom-group .time-picker-opacity{opacity:1!important}.input-custom-group .dispatch-history-default-color{background:#f7f7f7!important;transition:background .3s ease-in-out}.input-custom-group .dispatch-history-row-hover{background:#eee!important;transition:background .3s ease-in-out}.input-custom-group .input-required-check{position:absolute;right:6px;width:14px;height:10px;display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-required-check svg path{fill:#6f9ee0}.input-custom-group .input-clear{position:absolute;right:4px;top:47%;transform:translateY(-50%);border-radius:1px;display:none;z-index:10;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-clear .input-clear-x svg{width:18px!important;height:18px!important;overflow:visible}.input-custom-group .input-clear .input-clear-x svg path{fill:#eee}.input-custom-group .input-clear .input-clear-x svg rect{fill:#919191;transition:transform .3s;transform:scale(1);transform-origin:center}.input-custom-group .input-clear .input-clear-x:hover svg{overflow:visible}.input-custom-group .input-clear .input-clear-x:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#424242}.input-custom-group .input-clear.datetimeclass{z-index:22!important}.input-custom-group .input-clear.focus{display:inline-block}.input-custom-group .input-clear.focus .input-clear-x svg path{fill:#1d1d1d}.input-custom-group .input-clear.focus .input-clear-x svg rect{fill:#aaa}.input-custom-group .input-clear.focus .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.valid-focus-in{display:inline-block}.input-custom-group .input-clear.valid-focus-in .input-clear-x svg path{fill:#255bb9}.input-custom-group .input-clear.valid-focus-in .input-clear-x svg rect{fill:#c5d8f3}.input-custom-group .input-clear.valid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.valid-focus-out .input-clear-x svg path{fill:#c5d8f3}.input-custom-group .input-clear.valid-focus-out .input-clear-x svg rect{fill:#6f9ee0}.input-custom-group .input-clear.valid-focus-out .input-clear-x:hover svg rect{fill:#3074d3}.input-custom-group .input-clear.invalid-focus-in{display:inline-block}.input-custom-group .input-clear.invalid-focus-in .input-clear-x svg path{fill:#e22e22}.input-custom-group .input-clear.invalid-focus-in .input-clear-x svg rect{fill:#f5c7c7}.input-custom-group .input-clear.invalid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.invalid-focus-out .input-clear-x svg path{fill:#f5c7c7}.input-custom-group .input-clear.invalid-focus-out .input-clear-x svg rect{fill:#e57373}.input-custom-group .input-clear.invalid-focus-out .input-clear-x:hover svg rect{fill:#ef5350}.input-custom-group .input-clear.incorrect-input{display:none}.input-custom-group .input-clear.incorrect-input .input-clear-x svg path{fill:#ef5350!important}.input-custom-group .input-clear.incorrect-input .input-clear-x svg rect{fill:transparent!important}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover{display:inline-block}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover svg rect{fill:#ef5350!important}.input-custom-group .input-clear.incorrect-input-on{display:inline-block}.input-custom-group .input-clear.incorrect-input-on .input-clear-x svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x svg rect{fill:#e57373!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x:hover svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x:hover svg rect{fill:#ef5350!important}.input-custom-group .input-clear.dropdown-on{right:27px!important;top:50%;transform:translateY(-50%)}.input-custom-group .input-clear.dropdown-on svg-icon{display:flex}.input-custom-group .input-clear.hidden{display:none}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg{width:20px!important;height:20px!important;position:relative;left:1px}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg path{fill:#aaa}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg rect{fill:#aaa}.input-custom-group .input-clear.trash-can-svg .input-clear-x:hover svg path{fill:#919191}.input-custom-group .input-clear.trash-can-svg .input-clear-x:hover svg rect{fill:#919191}.input-custom-group .input-clear.trash-can-svg:before{content:\"\";display:block;height:16px;width:1px;border-radius:3px;background-color:#91919166;position:absolute;right:22px;top:56%;transform:translateY(-50%)}.input-custom-group .input-clear.trash-can-svg.valid-focus-in{display:none}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x svg path{fill:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x svg rect{fill:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x:hover svg path{fill:#fff}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.trash-can-svg.valid-focus-in:before{background-color:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x svg path{fill:#6f9ee0}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x svg rect{fill:#6f9ee0}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x:hover svg path{fill:#3074d3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x:hover svg rect{fill:#3074d3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out:before{background-color:#6f9ee066}.input-custom-group .input-clear-dispatch{position:absolute;right:0;top:47%;display:flex;justify-content:center;align-items:center;width:26px;height:26px;transform:translateY(-50%);border-radius:2px;z-index:10;cursor:pointer;transition:background .3s ease-in-out}.input-custom-group .input-clear-dispatch svg-icon svg{display:flex;width:12px!important;height:12px!important}.input-custom-group .input-clear-dispatch svg-icon svg path{fill:#919191;transition:fill .3s ease-in-out}.input-custom-group .input-clear-dispatch:hover{background-color:#91919166}.input-custom-group .input-clear-dispatch:hover svg-icon svg path{fill:#dadada}.input-custom-group .input-icon{position:absolute;left:6px;top:47%;transform:translateY(-50%);z-index:10;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:.3s ease-in-out}.input-custom-group .input-icon svg-icon svg{width:18px;height:18px}.input-custom-group .input-icon.datetimeclass{z-index:21}.input-custom-group .input-icon.default-svg-color svg path{fill:#919191}.input-custom-group .input-icon.cursor-pointer{cursor:pointer}.input-custom-group .input-icon:after{content:\"\";display:block;height:15px;width:1px;border-radius:3px;background:#91919166;position:absolute;left:21px;top:55%;transform:translateY(-50%)}.input-custom-group .input-icon.focus svg path{fill:#ccc}.input-custom-group .input-icon.focus text{fill:#ccc}.input-custom-group .input-icon.focus:after{background:#ccc6}.input-custom-group .input-icon.valid-focus-in svg path{fill:#98b9ea}.input-custom-group .input-icon.valid-focus-in text{fill:#98b9ea}.input-custom-group .input-icon.valid-focus-in:after{background:#c5d8f3}.input-custom-group .input-icon.valid-focus-out svg path{fill:#6692f1}.input-custom-group .input-icon.valid-focus-out text{fill:#6f9ee0}.input-custom-group .input-icon.valid-focus-out:after{background-color:#6f9ee066}.input-custom-group .input-icon.valid-focus-out-dropdown-label:after{background-color:#6f9ee066}.input-custom-group .input-icon.invalid-focus-in svg path{fill:#ffb0a8}.input-custom-group .input-icon.invalid-focus-in text{fill:#ffb0a8}.input-custom-group .input-icon.invalid-focus-in:after{background-color:#f5c7c7}.input-custom-group .input-icon.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-icon.invalid-focus-out text{fill:#e57373}.input-custom-group .input-icon.invalid-focus-out:after{background:#e5737366}.input-custom-group .input-icon.inactive-empty svg path{fill:#ccc}.input-custom-group .input-icon.inactive-filled svg path{fill:#aaa}.input-custom-group .input-icon.inactive-filled:after{background-color:#aaa6}.input-custom-group .input-icon.discolor-placeholder svg path{fill:#919191}.input-custom-group .input-icon.load-adjusted-rate svg path{fill:#ffa726}.input-custom-group .input-icon.load-advance-rate svg path{fill:#4db6a2}.input-custom-group .input-icon.hidden{display:none!important}.input-custom-group .input-dropdown-arrow{display:inline-block;position:absolute;right:6px;top:50%;transform:translateY(-50%);width:14px;height:14px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:10;cursor:pointer}.input-custom-group .input-dropdown-arrow svg{display:flex;width:100%;transform:rotate(0);transition:.3s ease-in-out}.input-custom-group .input-dropdown-arrow svg path{fill:#919191}.input-custom-group .input-dropdown-arrow:hover svg path{fill:#424242}.input-custom-group .input-dropdown-arrow.datetimeclass{z-index:22!important}.input-custom-group .input-dropdown-arrow.focus svg{transform:rotate(180deg);transition:.3s ease-in-out}.input-custom-group .input-dropdown-arrow.focus svg path{fill:#ccc}.input-custom-group .input-dropdown-arrow.focus:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-dropdown-arrow.invalid-focus-out:hover svg path{fill:#ef5350}.input-custom-group .input-dropdown-arrow.invalid-focus-in svg path,.input-custom-group .input-dropdown-arrow.invalid-search-in-dropdown-focus-in svg path{fill:#f5c7c7}.input-custom-group .input-dropdown-arrow.invalid-focus-in:hover svg path,.input-custom-group .input-dropdown-arrow.invalid-search-in-dropdown-focus-in:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.valid-focus-in svg path{fill:#c5d8f3}.input-custom-group .input-dropdown-arrow.valid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.valid-focus-out svg path{fill:#6692f1}.input-custom-group .input-dropdown-arrow.valid-focus-out:hover svg path{fill:#3074d3}.input-custom-group .input-error{position:absolute;top:100%;right:5px;color:#ef5350;font-size:11px;font-weight:600;line-height:14px;display:inline-block}.input-custom-group .input-error::-moz-selection{background-color:#ef535033;color:#ef5350}.input-custom-group .input-error::selection{background-color:#ef535033;color:#ef5350}.input-custom-group .error-inside-input{position:absolute;right:32px;font-weight:600;font-size:11px;line-height:14px;color:#df3c3c;top:24%;pointer-events:none}.input-custom-group .input-password-eye{display:none;width:18px;height:18px;position:absolute;left:6px;top:50%;transform:translateY(-50%);padding-top:0;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-password-eye svg{width:18px;height:18px;position:absolute;bottom:0}.input-custom-group .input-password-eye svg path{fill:#919191}.input-custom-group .input-password-eye:after{content:\"\";display:block;height:15px;width:1px;border-radius:3px;background:#91919166;position:absolute;left:24px;top:52%;transform:translateY(-50%)}.input-custom-group .input-password-eye.visible{display:inline-block}.input-custom-group .input-password-eye.inactive svg path{fill:#ccc}.input-custom-group .input-password-eye.inactive:after{background-color:#aaa6}.input-custom-group .input-password-eye.valid-focus-out svg path{fill:#6f9ee0}.input-custom-group .input-password-eye.valid-focus-out:hover svg path{fill:#3074d3}.input-custom-group .input-password-eye.valid-focus-out:after{background-color:#6f9ee066}.input-custom-group .input-password-eye.valid-focus-in{display:inline-block}.input-custom-group .input-password-eye.valid-focus-in svg path{fill:#98b9ea}.input-custom-group .input-password-eye.valid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-password-eye.valid-focus-in:after{background-color:#c5d8f3}.input-custom-group .input-password-eye.invalid-focus-out svg{transition:.3s ease-in-out}.input-custom-group .input-password-eye.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-password-eye.invalid-focus-out:hover svg path{fill:#ef5350}.input-custom-group .input-password-eye.invalid-focus-out:after{background-color:#e5737366}.input-custom-group .input-password-eye.invalid-focus-in svg{transition:.3s ease-in-out}.input-custom-group .input-password-eye.invalid-focus-in svg path{fill:#ffb0a8}.input-custom-group .input-password-eye.invalid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-password-eye.invalid-focus-in:after{background-color:#f5c7c7}@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}}.input-custom-group .date_time_holder{display:flex;align-items:center;position:absolute;top:0;width:100%;height:100%;padding:0 6px;opacity:0;z-index:20;cursor:text}.input-custom-group .date_time_holder span{position:relative;line-height:14px;display:flex;height:100%;align-items:center;z-index:10}.input-custom-group .date_time_holder span .border-picker{position:absolute;top:0;left:50%;transform:translate(-50%);height:100%;display:flex;align-items:center;justify-content:center;width:0px}.input-custom-group .date_time_holder span::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder span div::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder::selection{background-color:transparent!important;color:#fff}.input-custom-group .date_time_holder span.main{padding:0 2px;outline:none;font-size:14px;z-index:11}.input-custom-group .date_time_holder span.main::selection{z-index:10}.input-custom-group .date_time_holder span.main:first-child{padding-left:4px}.input-custom-group .date_time_holder span.reset-selection-color::selection{background-color:transparent!important;color:#2f2f2f!important}.input-custom-group .date_time_holder.focus{opacity:1;padding-left:35px}.input-custom-group .date_time_holder.focus span:nth-child(2){z-index:12;pointer-events:none}.input-custom-group .date_time_holder.focus span:nth-child(3){z-index:13}.input-custom-group .date_time_holder.focus span:nth-child(4){z-index:14;pointer-events:none}.input-custom-group .date_time_holder.focus span:nth-child(5){z-index:15}.input-custom-group .date_time_holder.valid-focus-out-filled{opacity:1}.input-custom-group .date_time_holder.valid-focus-out-filled span,.input-custom-group .date_time_holder.valid-focus-out-filled span .border-picker{color:#2f2f2f!important;-webkit-user-select:none;user-select:none}.input-custom-group .date_time_holder.dark.valid-focus-out-filled{background:#3b73ed33!important}.input-custom-group .date_time_holder.dark.valid-focus-out-filled span,.input-custom-group .date_time_holder.dark.valid-focus-out-filled span .border-picker{color:#fff!important}.input-custom-group .date_time_holder.dark.valid-focus-out-filled:hover{background:#3b73ed66!important}.input-custom-group .date_time_holder.dark.valid-focus-in{background:#0b49d1!important}.input-custom-group .date_time_holder.dark.valid-focus-in span,.input-custom-group .date_time_holder.dark.valid-focus-in span .border-picker{color:#fff!important}.input-custom-group .date_time_holder.focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .date_time_holder.valid-focus-in{opacity:1}.input-custom-group .date_time_holder.valid-focus-in::selection,.input-custom-group .date_time_holder.valid-focus-in div::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder.invalid-focus-out-filled{opacity:1}.input-custom-group .date_time_holder.date_time_holder_bank_card span.main{padding:0 3px}.input-custom-group .ca-placeholder-text{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;top:50%;transform:translateY(-50%);color:#919191;font-weight:400;font-size:14px;line-height:18px;padding-left:1px}.input-custom-group .ca-placeholder-text svg text{fill:#919191}.input-custom-group .ca-placeholder-text.inactive-filled{color:#aaa}.input-custom-group .ca-placeholder-text.inactive-filled svg text{fill:#aaa}.input-custom-group .ca-placeholder-text.focus{color:#919191}.input-custom-group .ca-placeholder-text.focus svg text{fill:#919191}.input-custom-group .ca-placeholder-text.valid-focus-in{color:#c5d8f3}.input-custom-group .ca-placeholder-text.valid-focus-in svg text{fill:#c5d8f3}.input-custom-group .ca-placeholder-text.valid-focus-out{color:#919191}.input-custom-group .ca-placeholder-text.valid-focus-out svg text{fill:#919191}.input-custom-group .ca-placeholder-text.invalid-focus-in{color:#f5c7c7}.input-custom-group .ca-placeholder-text.invalid-focus-in svg text{fill:#f5c7c7}.input-custom-group .ca-placeholder-text.invalid-focus-out{color:#919191}.input-custom-group .ca-placeholder-text.invalid-focus-out svg text{fill:#919191}.input-custom-group .input-invalid-danger-mark{position:absolute;right:5px;top:48%;transform:translateY(-50%);line-height:13.3px}.input-custom-group .input-invalid-danger-mark svg{width:13.3px;height:13.3px}.input-custom-group .input-invalid-danger-mark svg path{fill:#e57373}.input-custom-group .password-capslock{position:absolute;right:5px;top:-16px;color:#ffb74d;font-size:11px;font-weight:600;margin:0;padding:0;-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.input-custom-group .ta-input-commands{display:flex;align-items:center;gap:4px;position:absolute;right:4px}.input-custom-group .ta-input-commands:before{content:attr(data-before-content);color:#919191;font-weight:400;font-size:14px;line-height:18px}.input-custom-group .ta-input-commands .ta-input-command-first{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands .ta-input-command-second{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands .ta-input-command-third{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third svg rect{fill:none}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third svg path{fill:#6692f1}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#6692f1}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg path{fill:#bed0f9}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third svg rect{fill:#ffffffb2}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first svg path,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second svg path,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third svg path{fill:#0b49d1}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first:hover svg,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second:hover svg,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first:hover svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second:hover svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s}.input-custom-group .input-label-counter{position:absolute;display:flex;align-items:center;justify-content:center;width:22px;height:18px;font-size:11px;font-weight:700;color:#424242;background-color:#42424233;border-radius:9px;margin:0;padding-left:.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-loading-spinner{position:absolute;right:6px;bottom:3px}.input-custom-group .input-pen-container{position:absolute;right:50px;top:46%;transform:translateY(-50%);display:none;z-index:10;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-pen-container .input-pen svg{width:18px!important;height:18px!important;overflow:visible}.input-custom-group .input-pen-container .input-pen svg path{fill:#c5d8f3}.input-custom-group .input-pen-container .input-pen svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#6f9ee0}.input-custom-group .input-pen-container .input-pen:hover svg{overflow:visible}.input-custom-group .input-pen-container .input-pen:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#3074d3}.input-custom-group .dropdown-selected-image{position:absolute;left:6px;top:48%;transform:translateY(-50%);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .dropdown-selected-image.truck-make svg path{fill:#6c6c6c}.input-custom-group .dropdown-selected-image.trailer-make svg path{fill:#6c6c6c}.input-custom-group .dropdown-selected-image.name-initials-instead-url{width:18px;height:18px;border-radius:50%;object-fit:cover;top:50%;transform:translateY(-50%)}.input-custom-group .dropdown-selected-image.load-broker{height:26px}.input-custom-group .dropdown-selected-image.load-broker svg{height:18px}.input-custom-group .dropdown-selected-image.load-broker.medium svg #Path_33564{fill:#ffb74d}.input-custom-group .dropdown-selected-image.load-broker.low svg #Path_33564{fill:#e57373}.input-custom-group .dropdown-selected-image.semitruck svg path,.input-custom-group .dropdown-selected-image.semisleeper svg path,.input-custom-group .dropdown-selected-image.boxtruck svg path,.input-custom-group .dropdown-selected-image.reefertruck svg path,.input-custom-group .dropdown-selected-image.cargovan svg path,.input-custom-group .dropdown-selected-image.dumptruck svg path,.input-custom-group .dropdown-selected-image.cementtruck svg path,.input-custom-group .dropdown-selected-image.garbagetruckm .input-custom-group .dropdown-selected-image.towtruck svg path,.input-custom-group .dropdown-selected-image.carhauler svg path,.input-custom-group .dropdown-selected-image.spotter svg path,.input-custom-group .dropdown-selected-image.flatbed svg path,.input-custom-group .dropdown-selected-image.stepdeck svg path,.input-custom-group .dropdown-selected-image.lowboyrgn svg path,.input-custom-group .dropdown-selected-image.chassis svg path,.input-custom-group .dropdown-selected-image.conestoga svg path,.input-custom-group .dropdown-selected-image.sidekit svg path,.input-custom-group .dropdown-selected-image.container svg path,.input-custom-group .dropdown-selected-image.dryvan svg path,.input-custom-group .dropdown-selected-image.reefer svg path,.input-custom-group .dropdown-selected-image.enddump svg path,.input-custom-group .dropdown-selected-image.bottomdump svg path,.input-custom-group .dropdown-selected-image.hopper svg path,.input-custom-group .dropdown-selected-image.tanker svg path,.input-custom-group .dropdown-selected-image.pneumatictanker svg path,.input-custom-group .dropdown-selected-image.carhaulerstigner svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9856,.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9857,.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9858,.input-custom-group .dropdown-selected-image.unset-color svg path{fill:#fff6!important}.input-custom-group .placeholder-icon-right-side{position:absolute;right:4px}.input-custom-group .placeholder-icon-right-side.green svg path{fill:#4db6a2}.input-custom-group .placeholder-icon-right-side.purple svg path{fill:#ba68c8}.input-custom-group .placeholder-icon-right-side.blue svg path{fill:#6f9ee0}.input-custom-group .placeholder-icon-right-side.orange svg path{fill:#f89b2e}.input-custom-group .placeholder-icon-right-side.red svg path{fill:#e66767}.input-custom-group .placeholder-icon-right-side:before{content:\"\";display:block;height:15px;width:1px;border-radius:3px;position:absolute;right:22px;top:55%;transform:translateY(-50%);background-color:#91919166}.input-custom-group .placeholder-icon-right-side.focus:before{background-color:#ccc6}.input-custom-group .placeholder-icon-right-side.valid-focus-out:before{background-color:#6f9ee066}.input-custom-group .placeholder-icon-right-side.valid-focus-in:before{background-color:#c5d8f3}.input-custom-group .placeholder-icon-right-side.invalid-focus-out:before{background-color:#e5737366}.input-custom-group .placeholder-icon-right-side.invalid-focus-in:before{background-color:#f5c7c7}.input-fixed-placehoder-label{color:#919191;position:absolute;right:0;font-size:14px;top:3px}.input-fixed-placehoder-input{padding-right:25px!important}.input-border-radius{border-radius:8px!important}.hide-input-value{text-indent:-9999px}.payroll-deduction-truck-svg{line-height:16px}.payroll-deduction-truck-svg svg{width:46px;height:16px}.payroll-deduction-truck{display:grid!important;grid-template-columns:305px 92px!important}\n"], dependencies: [{ kind: "ngmodule", type:
324
353
  // Modules
325
354
  CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { 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: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "component", type: i4.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "ngmodule", type: HttpClientModule }, { kind: "component", type:
326
355
  // Components
@@ -353,6 +382,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
353
382
  type: Input
354
383
  }], receivedAddressList: [{
355
384
  type: Input
385
+ }], parkingList: [{
386
+ type: Input
356
387
  }], sentAddressValue: [{
357
388
  type: Output
358
389
  }], inputConfig: [{
@@ -387,4 +418,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
387
418
  type: HostListener,
388
419
  args: ['document:keydown', ['$event']]
389
420
  }] } });
390
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtaW5wdXQtYWRkcmVzcy1kcm9wZG93bi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC1hZGRyZXNzLWRyb3Bkb3duL2NhLWlucHV0LWFkZHJlc3MtZHJvcGRvd24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQtYWRkcmVzcy1kcm9wZG93bi9jYS1pbnB1dC1hZGRyZXNzLWRyb3Bkb3duLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQWUsbUJBQW1CLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNsRSxPQUFPLEVBQ0gsU0FBUyxFQUNULFlBQVksRUFDWixLQUFLLEVBR0wsTUFBTSxFQUNOLElBQUksRUFDSixTQUFTLEVBQ1QsaUJBQWlCLEVBRWpCLFlBQVksR0FDZixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQ0gsVUFBVSxFQUNWLFlBQVksRUFDWixvQkFBb0IsRUFDcEIsTUFBTSxFQUNOLEVBQUUsRUFDRixPQUFPLEVBQ1AsU0FBUyxFQUNULFNBQVMsRUFDVCxHQUFHLEdBQ04sTUFBTSxNQUFNLENBQUM7QUFDZCxPQUFPLEVBSUgsV0FBVyxHQUNkLE1BQU0sZ0JBQWdCLENBQUM7QUFLeEIsYUFBYTtBQUNiLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLGtEQUFrRCxDQUFDO0FBRTVGLFVBQVU7QUFDVixPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFFdkQsUUFBUTtB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dkIzQyxTQUFTOytCQUNJLCtCQUErQixpQkFNMUIsaUJBQWlCLENBQUMsSUFBSSxjQUN6QixJQUFJLFdBQ1A7d0JBQ0wsVUFBVTt3QkFDVixZQUFZO3dCQUNaLFdBQVc7d0JBQ1gsU0FBUzt3QkFDVCxtQkFBbUI7d0JBQ25CLG9CQUFvQjt3QkFDcEIsZ0JBQWdCO3dCQUVoQixhQUFhO3dCQUNiLHdCQUF3Qjt3QkFDeEIsdUJBQXVCO3FCQUMxQjs7MEJBc0hJLElBQUk7eUVBakhtQixhQUFhO3NCQUF4QyxTQUFTO3VCQUFDLGVBQWU7Z0JBRWIsZUFBZTtzQkFBM0IsS0FBSztnQkFJYyxhQUFhO3NCQUFoQyxLQUFLO2dCQWVjLG1CQUFtQjtzQkFBdEMsS0FBSztnQkFlYyxtQkFBbUI7c0JBQXRDLEtBQUs7Z0JBZVcsZ0JBQWdCO3NCQUFoQyxNQUFNO2dCQUdTLFdBQVc7c0JBQTFCLEtBQUs7Z0JBQ1UsY0FBYztzQkFBN0IsS0FBSztnQkFDVSxTQUFTO3NCQUF4QixLQUFLO2dCQUNVLFlBQVk7c0JBQTNCLEtBQUs7Z0JBQ1UsY0FBYztzQkFBN0IsS0FBSztnQkFDVSxlQUFlO3NCQUE5QixLQUFLO2dCQUNVLFVBQVU7c0JBQXpCLEtBQUs7Z0JBQ1UsUUFBUTtzQkFBdkIsS0FBSztnQkFFSSxlQUFlO3NCQUF4QixNQUFNO2dCQUVHLGVBQWU7c0JBQXhCLE1BQU07Z0JBSVAsYUFBYTtzQkFEWixNQUFNO2dCQUVHLFlBQVk7c0JBQXJCLE1BQU07Z0JBR0csVUFBVTtzQkFBbkIsTUFBTTtnQkFDRyxjQUFjO3NCQUF2QixNQUFNO2dCQUlQLG1CQUFtQjtzQkFEbEIsWUFBWTt1QkFBQyxrQkFBa0IsRUFBRSxDQUFDLFFBQVEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBGb3JtQ29udHJvbCwgUmVhY3RpdmVGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7XG4gICAgQ29tcG9uZW50LFxuICAgIEV2ZW50RW1pdHRlcixcbiAgICBJbnB1dCxcbiAgICBPbkRlc3Ryb3ksXG4gICAgT25Jbml0LFxuICAgIE91dHB1dCxcbiAgICBTZWxmLFxuICAgIFZpZXdDaGlsZCxcbiAgICBWaWV3RW5jYXBzdWxhdGlvbixcbiAgICBDaGFuZ2VEZXRlY3RvclJlZixcbiAgICBIb3N0TGlzdGVuZXIsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtcbiAgICBjYXRjaEVycm9yLFxuICAgIGRlYm91bmNlVGltZSxcbiAgICBkaXN0aW5jdFVudGlsQ2hhbmdlZCxcbiAgICBmaWx0ZXIsXG4gICAgb2YsXG4gICAgU3ViamVjdCxcbiAgICBzd2l0Y2hNYXAsXG4gICAgdGFrZVVudGlsLFxuICAgIHRhcCxcbn0gZnJvbSAncnhqcyc7XG5pbXBvcnQge1xuICAgIFVudHlwZWRGb3JtR3JvdXAsXG4gICAgTmdDb250cm9sLFxuICAgIENvbnRyb2xWYWx1ZUFjY2Vzc29yLFxuICAgIEZvcm1zTW9kdWxlLFxufSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbi8vIENvbmZpZ1xuaW1wb3J0IHsgSUNhSW5wdXQgfSBmcm9tICcuLi9jYS1pbnB1dC9jb25maWcvY2EtaW5wdXQuY29uZmlnJztcblxuLy8gQ29tcG9uZW50c1xuaW1wb3J0IHsgQ2FJbnB1dERyb3Bkb3duQ29tcG9uZW50IH0gZnJvbSAnLi4vY2EtaW5wdXQtZHJvcGRvd24vY2EtaW5wdXQtZHJvcGRvd24uY29tcG9uZW50JztcblxuLy8gTW9kdWxlc1xuaW1wb3J0IHsgQW5ndWxhclN2Z0ljb25Nb2R1bGUgfSBmcm9tICdhbmd1bGFyLXN2Zy1pY29uJztcbmltcG9ydCB7IE5nYk1vZHVsZSB9IGZyb20gJ0BuZy1ib290c3RyYXAvbmctYm9vdHN0cmFwJztcblxuLy8gZW51bXNcbmltcG9ydCB7IElucHV0QWRkcmVzc0NvbW1hbmRzU3RyaW5nRW51bSB9IGZyb20gJy4vZW51bXMvaW5wdXQtYWRkcmVzcy1jb21tYW5kcy1zdHJpbmcuZW51bSc7XG5pbXBvcnQgeyBJbnB1dEFkZHJlc3NTdG9wVHlwZXNTdHJpbmdFbnVtIH0gZnJvbSAnLi9lbnVtcy9pbnB1dC1hZGRyZXNzLXN0b3AtdHlwZXMtc3RyaW5nLmVudW0nO1xuaW1wb3J0IHsgSW5wdXRBZGRyZXNzVHlwZVN0cmluZ0VudW0gfSBmcm9tICcuL2VudW1zL2lucHV0LWFkZHJlc3MtdHlwZS1zdHJpbmcuZW51bSc7XG5pbXBvcnQgeyBJbnB1dEFkZHJlc3NMYXllcnNTdHJpbmdFbnVtIH0gZnJvbSAnLi9lbnVtcy9pbnB1dC1hZGRyZXNzLWxheWVycy1zdHJpbmcuZW51bSc7XG5pbXBvcnQgeyBlSW5wdXRCYXNpY1N0cmluZyB9IGZyb20gJy4vZW51bXMvaW5wdXQtYWRkcmVzcy1iYXNpYy1zdHJpbmcuZW51bSc7XG5cbi8vIG1vZGVsc1xuaW1wb3J0IHsgQWRkcmVzc0RhdGEgfSBmcm9tICcuL21vZGVscy9hZGRyZXNzLWRhdGEubW9kZWwnO1xuaW1wb3J0IHsgQWRkcmVzc0xpc3QgfSBmcm9tICcuL21vZGVscy9hZGRyZXNzLWxpc3QubW9kZWwnO1xuaW1wb3J0IHsgQ29tbWFuZHNIYW5kbGVyIH0gZnJvbSAnLi9tb2RlbHMvY29tbWFuZHMtaGFuZGxlci5tb2RlbCc7XG5pbXBvcnQgeyBBdXRvY29tcGxldGVTZWFyY2hMYXllciB9IGZyb20gJy4uLy4uL21vZGVscy9hdXRvY29tcGxldGUtc2VhcmNoLWxheWVyLm1vZGVsJztcbmltcG9ydCB7IENhQXBwVG9vbHRpcFYyQ29tcG9uZW50IH0gZnJvbSAnLi4vY2EtYXBwLXRvb2x0aXAtdjIvY2EtYXBwLXRvb2x0aXAtdjIuY29tcG9uZW50JztcbmltcG9ydCB7IEh0dHBDbGllbnRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5pbXBvcnQgeyBJbnB1dEFkZHJlc3NDb21tYW5kc1N0cmluZyB9IGZyb20gJy4vbW9kZWxzL2lucHV0LWFkZHJlc3MtY29tbWFuZHMtc3RyaW5nLm1vZGVsJztcbmltcG9ydCB7IFNlbnRBZGRyZXNzRGF0YSB9IGZyb20gJy4vbW9kZWxzL3NlbnQtYWRkcmVzcy1kYXRhLm1vZGVsJztcbmltcG9ydCB7IEFkZHJlc3NMaXN0UmVzcG9uc2UgfSBmcm9tICcuLi8uLi9tb2RlbHMvYWRkcmVzcy1saXN0LXJlc3BvbnNlLm1vZGVsJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdhcHAtY2EtaW5wdXQtYWRkcmVzcy1kcm9wZG93bicsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2NhLWlucHV0LWFkZHJlc3MtZHJvcGRvd24uY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogW1xuICAgICAgICAnLi9jYS1pbnB1dC1hZGRyZXNzLWRyb3Bkb3duLmNvbXBvbmVudC5zY3NzJyxcbiAgICAgICAgJy4uL2NhLWlucHV0L2NhLWlucHV0LmNvbXBvbmVudC5zY3NzJyxcbiAgICBdLFxuICAgIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBpbXBvcnRzOiBbXG4gICAgICAgIC8vIE1vZHVsZXNcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxuICAgICAgICBGb3Jtc01vZHVsZSxcbiAgICAgICAgTmdiTW9kdWxlLFxuICAgICAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgICAgICBBbmd1bGFyU3ZnSWNvbk1vZHVsZSxcbiAgICAgICAgSHR0cENsaWVudE1vZHVsZSxcblxuICAgICAgICAvLyBDb21wb25lbnRzXG4gICAgICAgIENhSW5wdXREcm9wZG93bkNvbXBvbmVudCxcbiAgICAgICAgQ2FBcHBUb29sdGlwVjJDb21wb25lbnQsXG4gICAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQ2FJbnB1dEFkZHJlc3NEcm9wZG93bkNvbXBvbmVudFxuICAgIGltcGxlbWVudHMgT25Jbml0LCBDb250cm9sVmFsdWVBY2Nlc3NvciwgT25EZXN0cm95XG57XG4gICAgQFZpZXdDaGlsZCgnaW5wdXREcm9wZG93bicpIGlucHV0RHJvcGRvd24hOiBDYUlucHV0RHJvcGRvd25Db21wb25lbnQ7XG5cbiAgICBASW5wdXQoKSBzZXQgcGxhY2Vob2xkZXJUeXBlKHZhbHVlOiBzdHJpbmcpIHtcbiAgICAgICAgdGhpcy5jaGVja1NlYXJjaExheWVycyh2YWx1ZSk7XG4gICAgfVxuXG4gICAgQElucHV0KCkgcHVibGljIHNldCBhY3RpdmVBZGRyZXNzKHZhbHVlOiBBZGRyZXNzTGlzdCB8IG51bGwpIHtcbiAgICAgICAgaWYgKHZhbHVlKSB7XG4gICAgICAgICAgICB0aGlzLl9hY3RpdmVBZGRyZXNzID0gdmFsdWU7XG4gICAgICAgICAgICBsZXQgaXNWYWxpZCA9IHRydWU7XG4gICAgICAgICAgICBpZiAodGhpcy5zZWFyY2hMYXllcnM/LlswXSA9PT0gSW5wdXRBZGRyZXNzTGF5ZXJzU3RyaW5nRW51bS5BRERSRVNTKSB7XG4gICAgICAgICAgICAgICAgY29uc3QgYWRkcmVzcyA9IHZhbHVlPy5hZGRyZXNzO1xuICAgICAgICAgICAgICAgIGlmIChhZGRyZXNzKSBpc1ZhbGlkID0gdGhpcy5jaGVja0FkZHJlc3NWYWxpZGF0aW9uKGFkZHJlc3MpO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICBpZiAoIXZhbHVlIHx8ICFpc1ZhbGlkKVxuICAgICAgICAgICAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sIS5zZXRFcnJvcnMoeyBpbnZhbGlkOiB0cnVlIH0pO1xuICAgICAgICAgICAgZWxzZSB0aGlzLmdldFN1cGVyQ29udHJvbCEuc2V0RXJyb3JzKG51bGwpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgQElucHV0KCkgcHVibGljIHNldCByZWNlaXZlZEFkZHJlc3NEYXRhKHZhbHVlOiBBZGRyZXNzRGF0YSB8IG51bGwpIHtcbiAgICAgICAgaWYgKHZhbHVlKSB7XG4gICAgICAgICAgICB0aGlzLmN1cnJlbnRBZGRyZXNzRGF0YSA9IHtcbiAgICAgICAgICAgICAgICBhZGRyZXNzOiB2YWx1ZS5hZGRyZXNzISxcbiAgICAgICAgICAgICAgICB2YWxpZDogdmFsdWUuYWRkcmVzcyAmJiB2YWx1ZS5sb25nTGF0ID8gdHJ1ZSA6IGZhbHNlLFxuICAgICAgICAgICAgICAgIGxvbmdMYXQ6IHZhbHVlLmxvbmdMYXQsXG4gICAgICAgICAgICB9O1xuXG4gICAgICAgICAgICBpZiAodGhpcy5jdXJyZW50QWRkcmVzc0RhdGEhLnZhbGlkKSB7XG4gICAgICAgICAgICAgICAgdGhpcy5nZXRTdXBlckNvbnRyb2whLnNldEVycm9ycyhudWxsKTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgdGhpcy5zZWxlY3RlZEFkZHJlc3MuZW1pdCh0aGlzLmN1cnJlbnRBZGRyZXNzRGF0YSEpO1xuICAgICAgICB9XG4gICAgfVxuICAgIEBJbnB1dCgpIHB1YmxpYyBzZXQgcmVjZWl2ZWRBZGRyZXNzTGlzdCh2YWx1ZTogQWRkcmVzc0xpc3RSZXNwb25zZSB8IG51bGwpIHtcbiAgICAgICAgdGhpcy5fcmVjZWl2ZWRBZGRyZXNzTGlzdCA9IHZhbHVlO1xuXG4gICAgICAgIGlmICh2YWx1ZT8uYWRkcmVzc2VzKSB7XG4gICAgICAgICAgICB0aGlzLmFkZHJlc0xpc3QgPSB2YWx1ZS5hZGRyZXNzZXMubWFwKFxuICAgICAgICAgICAgICAgIChpdGVtOiBzdHJpbmcsIGluZHg6IG51bWJlcikgPT4ge1xuICAgICAgICAgICAgICAgICAgICByZXR1cm4ge1xuICAgICAgICAgICAgICAgICAgICAgICAgbmFtZTogaXRlbSxcbiAgICAgICAgICAgICAgICAgICAgICAgIGlkOiBpbmR4LFxuICAgICAgICAgICAgICAgICAgICB9O1xuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBAT3V0cHV0KCkgcHVibGljIHNlbnRBZGRyZXNzVmFsdWU6IEV2ZW50RW1pdHRlcjxzdHJpbmc+ID1cbiAgICAgICAgbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KCk7XG5cbiAgICBASW5wdXQoKSBwdWJsaWMgaW5wdXRDb25maWchOiBJQ2FJbnB1dDtcbiAgICBASW5wdXQoKSBwdWJsaWMgY29tbWFuZEhhbmRsZXIhOiBDb21tYW5kc0hhbmRsZXI7XG4gICAgQElucHV0KCkgcHVibGljIGlzUm91dGluZzogYm9vbGVhbiA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIHB1YmxpYyBjbG9zZWRCb3JkZXI6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBASW5wdXQoKSBwdWJsaWMgaW5jb3JyZWN0VmFsdWUhOiBib29sZWFuO1xuICAgIEBJbnB1dCgpIHB1YmxpYyBoaWRlRW1wdHlMb2FkZWQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBASW5wdXQoKSBwdWJsaWMgYWRkcmVzTGlzdCE6IEFkZHJlc3NMaXN0W107XG4gICAgQElucHV0KCkgcHVibGljIHRlbXBsYXRlITogc3RyaW5nO1xuXG4gICAgQE91dHB1dCgpIHNlbGVjdGVkQWRkcmVzczogRXZlbnRFbWl0dGVyPEFkZHJlc3NEYXRhPiA9XG4gICAgICAgIG5ldyBFdmVudEVtaXR0ZXI8QWRkcmVzc0RhdGE+KCk7XG4gICAgQE91dHB1dCgpIHNlbnRBZGRyZXNzRGF0YTogRXZlbnRFbWl0dGVyPFNlbnRBZGRyZXNzRGF0YT4gPVxuICAgICAgICBuZXcgRXZlbnRFbWl0dGVyPFNlbnRBZGRyZXNzRGF0YT4oKTtcblxuICAgIEBPdXRwdXQoKVxuICAgIGNsb3NlRHJvcGRvd246IEV2ZW50RW1pdHRlcjxib29sZWFuPiA9IG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcbiAgICBAT3V0cHV0KCkgY29tbWFuZEV2ZW50OiBFdmVudEVtaXR0ZXI8QWRkcmVzc0RhdGEgfCB7fT4gPSBuZXcgRXZlbnRFbWl0dGVyPFxuICAgICAgICBBZGRyZXNzRGF0YSB8IHt9XG4gICAgPigpO1xuICAgIEBPdXRwdXQoKSBjaGFuZ2VGbGFnOiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG4gICAgQE91dHB1dCgpIGluY29ycmVjdEV2ZW50OiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPVxuICAgICAgICBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG5cbiAgICBASG9zdExpc3RlbmVyKCdkb2N1bWVudDprZXlkb3duJywgWyckZXZlbnQnXSlcbiAgICBoYW5kbGVLZXlib2FyZEV2ZW50KGV2ZW50OiBLZXlib2FyZEV2ZW50KSB7XG4gICAgICAgIGNvbnN0IGtleSA9IGV2ZW50LmtleTtcbiAgICAgICAgaWYgKFxuICAgICAgICAgICAgdGhpcy5pbnB1dENvbmZpZy5uYW1lID09IElucHV0QWRkcmVzc1R5cGVTdHJpbmdFbnVtLlJPVVRJTkdfQUREUkVTU1xuICAgICAgICApIHtcbiAgICAgICAgICAgIGlmIChrZXkgPT09IElucHV0QWRkcmVzc0NvbW1hbmRzU3RyaW5nRW51bS5FTlRFUikge1xuICAgICAgICAgICAgICAgIGlmICh0aGlzLmN1cnJlbnRBZGRyZXNzRGF0YSkge1xuICAgICAgICAgICAgICAgICAgICB0aGlzLm9uQ29tbWFuZHMoXG4gICAgICAgICAgICAgICAgICAgICAgICBldmVudCxcbiAgICAgICAgICAgICAgICAgICAgICAgIElucHV0QWRkcmVzc0NvbW1hbmRzU3RyaW5nRW51bS5DT05GSVJNXG4gICAgICAgICAgICAgICAgICAgICk7XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSBlbHNlIGlmIChrZXkgPT09IElucHV0QWRkcmVzc0NvbW1hbmRzU3RyaW5nRW51bS5FU0NBUEUpIHtcbiAgICAgICAgICAgICAgICB0aGlzLmNsZWFySW5wdXQoZXZlbnQpO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgfVxuXG4gICAgLy9BZGRyZXNzIGRhdGFcbiAgICBwcml2YXRlIHNlYXJjaExheWVycyE6IEF1dG9jb21wbGV0ZVNlYXJjaExheWVyW107XG4gICAgcHVibGljIGN1cnJlbnRBZGRyZXNzRGF0YTogQWRkcmVzc0RhdGEgfCBudWxsID0gbnVsbDtcblxuICAgIC8vQ29uZmdcbiAgICBwdWJsaWMgYWRkcmVzc0V4cGFuZGVkOiBib29sZWFuID0gZmFsc2U7XG4gICAgcHVibGljIGNob3NlbkZyb21Ecm9wZG93bjogYm9vbGVhbiA9IGZhbHNlO1xuICAgIHByaXZhdGUgYWxsb3dWYWxpZGF0aW9uOiBib29sZWFuID0gZmFsc2U7XG4gICAgcHVibGljIHN0b3BUeXBlOiBzdHJpbmcgPSBJbnB1dEFkZHJlc3NTdG9wVHlwZXNTdHJpbmdFbnVtLkVNUFRZO1xuICAgIHByaXZhdGUgcmVxdWVzdFNlbnQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBwdWJsaWMgX3JlY2VpdmVkQWRkcmVzc0xpc3Q6IEFkZHJlc3NMaXN0UmVzcG9uc2UgfCBudWxsID0gbnVsbDtcbiAgICBwdWJsaWMgX2FjdGl2ZUFkZHJlc3M6IEFkZHJlc3NMaXN0IHwgbnVsbCA9IG51bGw7XG5cbiAgICBwcml2YXRlIGRlc3Ryb3kkID0gbmV3IFN1YmplY3Q8dm9pZD4oKTtcbiAgICBwdWJsaWMgYWRkcmVzc0Zvcm0hOiBVbnR5cGVkRm9ybUdyb3VwO1xuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIEBTZWxmKCkgcHVibGljIHN1cGVyQ29udHJvbDogTmdDb250cm9sLFxuICAgICAgICBwcml2YXRlIHJlZjogQ2hhbmdlRGV0ZWN0b3JSZWZcbiAgICApIHtcbiAgICAgICAgdGhpcy5zdXBlckNvbnRyb2wudmFsdWVBY2Nlc3NvciA9IHRoaXM7XG4gICAgfVxuXG4gICAgd3JpdGVWYWx1ZShfOiBhbnkpOiB2b2lkIHt9XG5cbiAgICBwdWJsaWMgcmVnaXN0ZXJPbkNoYW5nZShmbjogYW55KTogdm9pZCB7XG4gICAgICAgIHRoaXMub25DaGFuZ2UgPSBmbjtcbiAgICB9XG5cbiAgICBwdWJsaWMgb25DaGFuZ2UoXzogYW55KTogdm9pZCB7fVxuXG4gICAgcHVibGljIHJlZ2lzdGVyT25Ub3VjaGVkKF86IGFueSk6IHZvaWQge31cblxuICAgIG5nT25Jbml0KCk6IHZvaWQge1xuICAgICAgICB0aGlzLmluaXRDaGFuZ2VzTGlzdGVuZXIoKTtcbiAgICAgICAgdGhpcy5pbnB1dENvbmZpZyA9IHtcbiAgICAgICAgICAgIC4uLnRoaXMuaW5wdXRDb25maWcsXG4gICAgICAgICAgICB0ZXh0VHJhbnNmb3JtOiAnY2FwaXRhbGl6ZWRjYXNlJyxcbiAgICAgICAgfTtcbiAgICB9XG5cbiAgICBwdWJsaWMgaW5pdENoYW5nZXNMaXN0ZW5lcigpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5nZXRTdXBlckNvbnRyb2w/LnZhbHVlQ2hhbmdlc1xuICAgICAgICAgICAgPy5waXBlKFxuICAgICAgICAgICAgICAgIGRpc3RpbmN0VW50aWxDaGFuZ2VkKCksXG4gICAgICAgICAgICAgICAgdGFrZVVudGlsKHRoaXMuZGVzdHJveSQpLFxuICAgICAgICAgICAgICAgIHRhcCgodGVybSkgPT4ge1xuICAgICAgICAgICAgICAgICAgICB0aGlzLmlucHV0Q29uZmlnID0ge1xuICAgICAgICAgICAgICAgICAgICAgICAgLi4udGhpcy5pbnB1dENvbmZpZyxcbiAgICAgICAgICAgICAgICAgICAgICAgIGxvYWRpbmdTcGlubmVyOiB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgLi4udGhpcy5pbnB1dENvbmZpZy5sb2FkaW5nU3Bpbm5lcixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBpc0xvYWRpbmc6IHRydWUsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgc2l6ZTogZUlucHV0QmFzaWNTdHJpbmcuU01BTEwsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY29sb3I6IGVJbnB1dEJhc2ljU3RyaW5nLldISVRFLFxuICAgICAgICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgICAgfTtcblxuICAgICAgICAgICAgICAgICAgICBpZiAoIXRlcm0pIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuaW5wdXRDb25maWcgPSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgLi4udGhpcy5pbnB1dENvbmZpZyxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBsb2FkaW5nU3Bpbm5lcjoge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAuLi50aGlzLmlucHV0Q29uZmlnLmxvYWRpbmdTcGlubmVyLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBpc0xvYWRpbmc6IGZhbHNlLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgICAgICAgICB9O1xuICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5hZGRyZXNMaXN0ID0gW107XG4gICAgICAgICAgICAgICAgICAgIH0gZWxzZSBpZiAoXG4gICAgICAgICAgICAgICAgICAgICAgICB0ZXJtICE9PSB0aGlzLmN1cnJlbnRBZGRyZXNzRGF0YT8uYWRkcmVzcy5hZGRyZXNzICYmXG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLmlucHV0Q29uZmlnLm5hbWUgPT09XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgSW5wdXRBZGRyZXNzVHlwZVN0cmluZ0VudW0uUk9VVElOR19BRERSRVNTXG4gICAgICAgICAgICAgICAgICAgICkge1xuICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5jdXJyZW50QWRkcmVzc0RhdGEgPSBudWxsO1xuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgIGlmIChcbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuaW5wdXRDb25maWcubmFtZSAhPT1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBJbnB1dEFkZHJlc3NUeXBlU3RyaW5nRW51bS5ST1VUSU5HX0FERFJFU1MgJiZcbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuYWxsb3dWYWxpZGF0aW9uICYmXG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLmlucHV0RHJvcGRvd24uaW5wdXRSZWYuaXNGb2N1c0lucHV0XG4gICAgICAgICAgICAgICAgICAgICkge1xuICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5yZXF1ZXN0U2VudCA9IGZhbHNlO1xuICAgICAgICAgICAgICAgICAgICAgICAgY29uc3QgYWRkcmVzc0RhdGEgPSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgYWRkcmVzczoge30sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgdmFsaWQ6IGZhbHNlLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGxvbmdMYXQ6IHt9LFxuICAgICAgICAgICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuc2VsZWN0ZWRBZGRyZXNzLmVtaXQoYWRkcmVzc0RhdGEpO1xuICAgICAgICAgICAgICAgICAgICB9XG5cbiAgICAgICAgICAgICAgICAgICAgdGhpcy5hbGxvd1ZhbGlkYXRpb24gPSB0cnVlO1xuICAgICAgICAgICAgICAgIH0pLFxuICAgICAgICAgICAgICAgIGZpbHRlcigodGVybTogc3RyaW5nKSA9PiB7XG4gICAgICAgICAgICAgICAgICAgIHJldHVybiB0ZXJtPy5sZW5ndGggPj0gMztcbiAgICAgICAgICAgICAgICB9KSxcbiAgICAgICAgICAgICAgICBkZWJvdW5jZVRpbWUoNTAwKSxcbiAgICAgICAgICAgICAgICBzd2l0Y2hNYXAoKHF1ZXJ5OiBzdHJpbmcpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgY29uc3QgcGFyYW1zID0ge1xuICAgICAgICAgICAgICAgICAgICAgICAgcXVlcnk6IHF1ZXJ5LFxuICAgICAgICAgICAgICAgICAgICAgICAgc2VhcmNoTGF5ZXJzOiB0aGlzLnNlYXJjaExheWVycyxcbiAgICAgICAgICAgICAgICAgICAgICAgIGNsb3NlZEJvcmRlcjogdGhpcy5jbG9zZWRCb3JkZXIsXG4gICAgICAgICAgICAgICAgICAgIH07XG5cbiAgICAgICAgICAgICAgICAgICAgdGhpcy5zZW50QWRkcmVzc0RhdGEubmV4dChwYXJhbXMpO1xuXG4gICAgICAgICAgICAgICAgICAgIHJldHVybiBvZih0aGlzLnJlY2VpdmVkQWRkcmVzc0xpc3QpLnBpcGUoXG4gICAgICAgICAgICAgICAgICAgICAgICBjYXRjaEVycm9yKCgpID0+IG9mKFtdKSlcbiAgICAgICAgICAgICAgICAgICAgKTtcbiAgICAgICAgICAgICAgICB9KVxuICAgICAgICAgICAgKVxuICAgICAgICAgICAgLnN1YnNjcmliZSgoKSA9PiB7XG4gICAgICAgICAgICAgICAgbGV0IGlzVmFsaWQgPSB0cnVlO1xuICAgICAgICAgICAgICAgIGlmIChcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5zZWFyY2hMYXllcnM/LlswXSA9PT1cbiAgICAgICAgICAgICAgICAgICAgSW5wdXRBZGRyZXNzTGF5ZXJzU3RyaW5nRW51bS5BRERSRVNTXG4gICAgICAgICAgICAgICAgKSB7XG4gICAgICAgICAgICAgICAgICAgIGNvbnN0IGFkZHJlc3MgPSB0aGlzLl9hY3RpdmVBZGRyZXNzPy5hZGRyZXNzO1xuICAgICAgICAgICAgICAgICAgICBpZiAoYWRkcmVzcykgaXNWYWxpZCA9IHRoaXMuY2hlY2tBZGRyZXNzVmFsaWRhdGlvbihhZGRyZXNzKTtcbiAgICAgICAgICAgICAgICB9XG5cbiAgICAgICAgICAgICAgICBpZiAoIXRoaXMuX2FjdGl2ZUFkZHJlc3MgfHwgIWlzVmFsaWQpXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sIS5zZXRFcnJvcnMoeyBpbnZhbGlkOiB0cnVlIH0pO1xuICAgICAgICAgICAgICAgIGVsc2UgdGhpcy5nZXRTdXBlckNvbnRyb2whLnNldEVycm9ycyhudWxsKTtcblxuICAgICAgICAgICAgICAgIHRoaXMuaW5wdXRDb25maWcgPSB7XG4gICAgICAgICAgICAgICAgICAgIC4uLnRoaXMuaW5wdXRDb25maWcsXG4gICAgICAgICAgICAgICAgICAgIGxvYWRpbmdTcGlubmVyOiB7XG4gICAgICAgICAgICAgICAgICAgICAgICAuLi50aGlzLmlucHV0Q29uZmlnLmxvYWRpbmdTcGlubmVyLFxuICAgICAgICAgICAgICAgICAgICAgICAgaXNMb2FkaW5nOiBmYWxzZSxcbiAgICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICB9O1xuXG4gICAgICAgICAgICAgICAgdGhpcy5yZWYuZGV0ZWN0Q2hhbmdlcygpO1xuICAgICAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgZ2V0IGdldFN1cGVyQ29udHJvbCgpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuc3VwZXJDb250cm9sLmNvbnRyb2wgYXMgRm9ybUNvbnRyb2w7XG4gICAgfVxuXG4gICAgcHVibGljIG9uQ2xvc2VEcm9wZG93bihldmVudDogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICBsZXQgaXNWYWxpZCA9IHRydWU7XG4gICAgICAgIHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICAgICAgaWYgKHRoaXMuc2VhcmNoTGF5ZXJzPy5bMF0gPT09IElucHV0QWRkcmVzc0xheWVyc1N0cmluZ0VudW0uQUREUkVTUykge1xuICAgICAgICAgICAgICAgIGNvbnN0IGFkZHJlc3MgPSB0aGlzLl9hY3RpdmVBZGRyZXNzPy5hZGRyZXNzO1xuICAgICAgICAgICAgICAgIGlmIChhZGRyZXNzKSBpc1ZhbGlkID0gdGhpcy5jaGVja0FkZHJlc3NWYWxpZGF0aW9uKGFkZHJlc3MpO1xuXG4gICAgICAgICAgICAgICAgaWYgKCFpc1ZhbGlkKVxuICAgICAgICAgICAgICAgICAgICB0aGlzLmdldFN1cGVyQ29udHJvbCEuc2V0RXJyb3JzKHsgaW52YWxpZDogdHJ1ZSB9KTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIGlmICghdGhpcy5yZXF1ZXN0U2VudCAmJiBpc1ZhbGlkKVxuICAgICAgICAgICAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sIS5zZXRFcnJvcnMoeyBpbnZhbGlkOiB0cnVlIH0pO1xuICAgICAgICAgICAgaWYgKFxuICAgICAgICAgICAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sIS52YWx1ZSA9PT0gdGhpcy5fYWN0aXZlQWRkcmVzcz8uYWRkcmVzcyAmJlxuICAgICAgICAgICAgICAgIGlzVmFsaWRcbiAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICB0aGlzLmdldFN1cGVyQ29udHJvbCEuc2V0RXJyb3JzKG51bGwpO1xuICAgICAgICB9LCAyMDApO1xuICAgICAgICB0aGlzLmNsb3NlRHJvcGRvd24uZW1pdChldmVudCk7XG4gICAgfVxuXG4gICAgcHVibGljIGdldEFkZHJlc3NEYXRhKGFkZHJlc3M6IHN0cmluZyk6IHZvaWQge1xuICAgICAgICB0aGlzLnJlcXVlc3RTZW50ID0gdHJ1ZTtcblxuICAgICAgICB0aGlzLnNlbnRBZGRyZXNzVmFsdWUuZW1pdChhZGRyZXNzKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgb25TZWxlY3REcm9wZG93bihldmVudDogQWRkcmVzc0xpc3QgfCBudWxsKTogdm9pZCB7XG4gICAgICAgIHRoaXMuX2FjdGl2ZUFkZHJlc3MgPSBldmVudCA/IHsgLi4uZXZlbnQsIGFkZHJlc3M6IGV2ZW50Py5uYW1lIH0gOiBudWxsO1xuXG4gICAgICAgIGlmIChldmVudD8ubmFtZSkge1xuICAgICAgICAgICAgaWYgKHRoaXMuc2VhcmNoTGF5ZXJzPy5bMF0gPT09IElucHV0QWRkcmVzc0xheWVyc1N0cmluZ0VudW0uQUREUkVTUykge1xuICAgICAgICAgICAgICAgIGNvbnN0IGlzVmFsaWQgPSB0aGlzLmNoZWNrQWRkcmVzc1ZhbGlkYXRpb24oZXZlbnQubmFtZSk7XG5cbiAgICAgICAgICAgICAgICBpZiAoaXNWYWxpZCkge1xuICAgICAgICAgICAgICAgICAgICB0aGlzLmdldEFkZHJlc3NEYXRhKGV2ZW50Lm5hbWUpO1xuICAgICAgICAgICAgICAgICAgICB0aGlzLmdldFN1cGVyQ29udHJvbCEuc2V0VmFsdWUoZXZlbnQubmFtZSk7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sIS5zZXRFcnJvcnMobnVsbCk7XG4gICAgICAgICAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5nZXRTdXBlckNvbnRyb2whLnNldEVycm9ycyh7XG4gICAgICAgICAgICAgICAgICAgICAgICBpbnZhbGlkOiB0cnVlLFxuICAgICAgICAgICAgICAgICAgICB9KTtcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgICAgIHRoaXMuZ2V0QWRkcmVzc0RhdGEoZXZlbnQubmFtZSk7XG4gICAgICAgICAgICAgICAgdGhpcy5nZXRTdXBlckNvbnRyb2whLnNldFZhbHVlKGV2ZW50Lm5hbWUpO1xuICAgICAgICAgICAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sIS5zZXRFcnJvcnMobnVsbCk7XG4gICAgICAgICAgICB9XG5cbiAgICAgICAgICAgIHRoaXMuY2hvc2VuRnJvbURyb3Bkb3duID0gdHJ1ZTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHRoaXMub25DbGVhcklucHV0RXZlbnQoKTtcbiAgICAgICAgICAgIHRoaXMuY3VycmVudEFkZHJlc3NEYXRhID0gbnVsbDtcbiAgICAgICAgICAgIHRoaXMuYWRkcmVzTGlzdCA9IFtdO1xuICAgICAgICB9XG4gICAgICAgIHRoaXMuaW5wdXREcm9wZG93bj8ucG9wb3ZlclJlZj8uY2xvc2UoKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgb25Db21tYW5kcyhcbiAgICAgICAgZXZlbnQ6IEtleWJvYXJkRXZlbnQsXG4gICAgICAgIHR5cGU6IElucHV0QWRkcmVzc0NvbW1hbmRzU3RyaW5nXG4gICAgKTogdm9pZCB7XG4gICAgICAgIGV2ZW50LnByZXZlbnREZWZhdWx0KCk7XG4gICAgICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xuXG4gICAgICAgIGlmIChcbiAgICAgICAgICAgICh0eXBlID09PSBJbnB1dEFkZHJlc3NDb21tYW5kc1N0cmluZ0VudW0uQ09ORklSTSAmJlxuICAgICAgICAgICAgICAgIHRoaXMuY3VycmVudEFkZHJlc3NEYXRhKSB8fFxuICAgICAgICAgICAgdHlwZSA9PT0gSW5wdXRBZGRyZXNzQ29tbWFuZHNTdHJpbmdFbnVtLkNBTkNFTFxuICAgICAgICApIHtcbiAgICAgICAgICAgIHRoaXMuY3VycmVudEFkZHJlc3NEYXRhIS50eXBlID0gdHlwZTtcbiAgICAgICAgICAgIHRoaXMuY29tbWFuZEV2ZW50LmVtaXQodGhpcy5jdXJyZW50QWRkcmVzc0RhdGEgPz8ge30pO1xuXG4gICAgICAgICAgICB0aGlzLmNsb3NlQWRkcmVzcygpO1xuICAgICAgICAgICAgdGhpcy5jbGVhcklucHV0KGV2ZW50KTtcbiAgICAgICAgfVxuICAgIH1cblxuICAgIHB1YmxpYyBhZGRyZXNzRXhwYW5kKCk6IHZvaWQge1xuICAgICAgICBpZiAoIXRoaXMuYWRkcmVzc0V4cGFuZGVkKSB0aGlzLmFkZHJlc3NFeHBhbmRlZCA9IHRydWU7XG4gICAgfVxuXG4gICAgcHVibGljIGNsb3NlQWRkcmVzcygpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5hZGRyZXNzRXhwYW5kZWQgPSBmYWxzZTtcbiAgICB9XG5cbiAgICBwdWJsaWMgY2xlYXJJbnB1dChldmVudDogS2V5Ym9hcmRFdmVudCk6IHZvaWQge1xuICAgICAgICB0aGlzLmN1cnJlbnRBZGRyZXNzRGF0YSA9IG51bGw7XG4gICAgICAgIHRoaXMuYWRkcmVzTGlzdCA9IFtdO1xuICAgICAgICB0aGlzLmdldFN1cGVyQ29udHJvbCEuc2V0VmFsdWUobnVsbCk7XG4gICAgICAgIHRoaXMuX2FjdGl2ZUFkZHJlc3MgPSBudWxsO1xuICAgICAgICB0aGlzLmlucHV0RHJvcGRvd24/LmlucHV0UmVmPy5jbGVhcklucHV0KGV2ZW50KTtcbiAgICAgICAgdGhpcy5jaG9zZW5Gcm9tRHJvcGRvd24gPSBmYWxzZTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGNoZWNrU2VhcmNoTGF5ZXJzKHZhbHVlOiBzdHJpbmcpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5zZWFyY2hMYXllcnMgPVxuICAgICAgICAgICAgdmFsdWUgPT09IElucHV0QWRkcmVzc1R5cGVTdHJpbmdFbnVtLkxPTkdfQUREUkVTU1xuICAgICAgICAgICAgICAgID8gW0lucHV0QWRkcmVzc0xheWVyc1N0cmluZ0VudW0uQUREUkVTU11cbiAgICAgICAgICAgICAgICA6IHZhbHVlID09PSBJbnB1dEFkZHJlc3NUeXBlU3RyaW5nRW51bS5TSE9SVF9BRERSRVNTXG4gICAgICAgICAgICAgICAgICA/IFtJbnB1dEFkZHJlc3NMYXllcnNTdHJpbmdFbnVtLkxPQ0FMSVRZXVxuICAgICAgICAgICAgICAgICAgOiBbXTtcbiAgICB9XG5cbiAgICBwdWJsaWMgY2hhbmdlU3RvcFR5cGUoKTogdm9pZCB7XG4gICAgICAgIGxldCBmbGFnID0gZmFsc2U7XG4gICAgICAgIGlmICh0aGlzLnN0b3BUeXBlID09PSBJbnB1dEFkZHJlc3NTdG9wVHlwZXNTdHJpbmdFbnVtLkVNUFRZKSB7XG4gICAgICAgICAgICB0aGlzLnN0b3BUeXBlID0gSW5wdXRBZGRyZXNzU3RvcFR5cGVzU3RyaW5nRW51bS5MT0FERUQ7XG4gICAgICAgICAgICBmbGFnID0gdHJ1ZTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHRoaXMuc3RvcFR5cGUgPSBJbnB1dEFkZHJlc3NTdG9wVHlwZXNTdHJpbmdFbnVtLkVNUFRZO1xuICAgICAgICB9XG5cbiAgICAgICAgdGhpcy5jaGFuZ2VGbGFnLmVtaXQoZmxhZyk7XG5cbiAgICAgICAgaWYgKCF0aGlzLmNob3NlbkZyb21Ecm9wZG93bikge1xuICAgICAgICAgICAgdGhpcy5pbnB1dERyb3Bkb3duPy5pbnB1dFJlZj8uaW5wdXQubmF0aXZlRWxlbWVudC5mb2N1cygpO1xuICAgICAgICAgICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICAgICAgdGhpcy5pbnB1dERyb3Bkb3duLmlucHV0UmVmLmlzRm9jdXNJbnB1dCA9IHRydWU7XG4gICAgICAgICAgICB9LCA1MDApO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHVibGljIG9uSW5jb3JyZWN0SW5wdXQoZXZlbnQ6IGJvb2xlYW4pOiB2b2lkIHtcbiAgICAgICAgdGhpcy5pbmNvcnJlY3RFdmVudC5lbWl0KGV2ZW50KTtcbiAgICB9XG5cbiAgICBwdWJsaWMgb25DbGVhcklucHV0RXZlbnQoKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLmlucHV0Q29uZmlnLmlzUmVxdWlyZWQpIHtcbiAgICAgICAgICAgIHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICAgICAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sIS5zZXRFcnJvcnMoeyByZXF1aXJlZDogdHJ1ZSB9KTtcbiAgICAgICAgICAgIH0sIDMwMCk7XG4gICAgICAgIH1cbiAgICAgICAgY29uc3QgYWRkcmVzc0RhdGEgPSB7XG4gICAgICAgICAgICBhZGRyZXNzOiB7fSxcbiAgICAgICAgICAgIHZhbGlkOiBmYWxzZSxcbiAgICAgICAgICAgIGxvbmdMYXQ6IHt9LFxuICAgICAgICB9O1xuICAgICAgICB0aGlzLnNlbGVjdGVkQWRkcmVzcy5lbWl0KGFkZHJlc3NEYXRhKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGNoZWNrQWRkcmVzc1ZhbGlkYXRpb24oYWRkcmVzczogc3RyaW5nKTogYm9vbGVhbiB7XG4gICAgICAgIGNvbnN0IHN0cmVldE51bSA9IC9cXGQvO1xuXG4gICAgICAgIHJldHVybiBzdHJlZXROdW0udGVzdChhZGRyZXNzKSA/IHRydWUgOiBmYWxzZTtcbiAgICB9XG5cbiAgICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5kZXN0cm95JC5uZXh0KCk7XG4gICAgICAgIHRoaXMuZGVzdHJveSQuY29tcGxldGUoKTtcbiAgICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiYWRkcmVzc19ob2xkZXIgZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlclwiIChjbGljayk9XCJhZGRyZXNzRXhwYW5kKClcIj5cbiAgICA8ZGl2XG4gICAgICAgIGNsYXNzPVwibWFpbl9hZGRyZXNzX2hvbGRlclwiXG4gICAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgICAgIGlucHV0X2Zvcl9yb3V0aW5nOiBpc1JvdXRpbmcsXG4gICAgICAgICAgICBub3RfZXhwYW5kZWQ6IGlzUm91dGluZyAmJiAhYWRkcmVzc0V4cGFuZGVkLFxuICAgICAgICAgICAgZXhwYW5kZWRfYWRkcmVzczogaXNSb3V0aW5nICYmIGFkZHJlc3NFeHBhbmRlZCxcbiAgICAgICAgfVwiXG4gICAgPlxuICAgICAgICA8YXBwLWNhLWlucHV0LWRyb3Bkb3duXG4gICAgICAgICAgICAjaW5wdXREcm9wZG93blxuICAgICAgICAgICAgW2Zvcm1Db250cm9sXT1cImdldFN1cGVyQ29udHJvbFwiXG4gICAgICAgICAgICBbaW5wdXRDb25maWddPVwiaW5wdXRDb25maWdcIlxuICAgICAgICAgICAgW29wdGlvbnNdPVwiYWRkcmVzTGlzdFwiXG4gICAgICAgICAgICBbYWN0aXZlSXRlbV09XCJfYWN0aXZlQWRkcmVzc1wiXG4gICAgICAgICAgICBbaXNJbmNvcnJlY3RWYWx1ZV09XCJpbmNvcnJlY3RWYWx1ZVwiXG4gICAgICAgICAgICBbdGVtcGxhdGVdPVwidGVtcGxhdGVcIlxuICAgICAgICAgICAgKGluY29ycmVjdEV2ZW50KT1cIm9uSW5jb3JyZWN0SW5wdXQoJGV2ZW50KVwiXG4gICAgICAgICAgICAoc2VsZWN0ZWRJdGVtKT1cIm9uU2VsZWN0RHJvcGRvd24oJGV2ZW50KVwiXG4gICAgICAgICAgICAoY2xvc2VEcm9wZG93bik9XCJvbkNsb3NlRHJvcGRvd24oJGV2ZW50KVwiXG4gICAgICAgICAgICAoY2xlYXJJbnB1dEV2ZW50KT1cIm9uQ2xlYXJJbnB1dEV2ZW50KClcIlxuICAgICAgICA+PC9hcHAtY2EtaW5wdXQtZHJvcGRvd24+XG4gICAgICAgIEBpZiAoaXNSb3V0aW5nICYmIGFkZHJlc3NFeHBhbmRlZCAmJiAhaGlkZUVtcHR5TG9hZGVkKSB7XG4gICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgY2xhc3M9XCJzdG9wX2hvbGQgZC1mbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXIgYWxpZ24taXRlbXMtY2VudGVyXCJcbiAgICAgICAgICAgICAgICAoY2xpY2spPVwiY2hhbmdlU3RvcFR5cGUoKVwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInN0b3BfdGV4dFwiPnt7IHN0b3BUeXBlIH19PC9kaXY+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgfVxuICAgIDwvZGl2PlxuICAgIEBpZiAoaXNSb3V0aW5nICYmIGFkZHJlc3NFeHBhbmRlZCkge1xuICAgICAgICA8ZGl2IGNsYXNzPVwiY2EtaW5wdXQtY29tbWFuZHMgYWRkcmVzcy1mbGFnIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXJcIj5cbiAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICBjbGFzcz1cIm1haW4tY29tbWFuZHMgY2EtaW5wdXQtY29tbWFuZC1maXJzdFwiXG4gICAgICAgICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgICAgICAgIFttYWluQ2FUb29sdGlwXT1cIlxuICAgICAgICAgICAgICAgICAgICBjb21tYW5kSGFuZGxlci5jb21tYW5kcz8uZmlyc3RDb21tYW5kPy5wb3B1cD8ubmFtZVxuICAgICAgICAgICAgICAgIFwiXG4gICAgICAgICAgICAgICAgW3Rvb2x0aXBCYWNrZ3JvdW5kXT1cIlxuICAgICAgICAgICAgICAgICAgICBjb21tYW5kSGFuZGxlci5jb21tYW5kcz8uZmlyc3RDb21tYW5kPy5wb3B1cFxuICAgICAgICAgICAgICAgICAgICAgICAgPy5iYWNrZ3JvdW5kQ29sb3JcbiAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICAgIFtkaXNhYmxlVG9vbHRpcF09XCIhY29tbWFuZEhhbmRsZXIuY29tbWFuZHM/LmZpcnN0Q29tbWFuZD8ucG9wdXBcIlxuICAgICAgICAgICAgICAgIHBvc2l0aW9uPVwidG9wXCJcbiAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJjYS1pbnB1dC1jb21tYW5kLXN2Zy1maXJzdFwiXG4gICAgICAgICAgICAgICAgICAgIFtjbGFzcy5hbGxvd19jb25maXJtXT1cImNob3NlbkZyb21Ecm9wZG93blwiXG4gICAgICAgICAgICAgICAgICAgIFtzcmNdPVwiY29tbWFuZEhhbmRsZXIuY29tbWFuZHMuZmlyc3RDb21tYW5kLnN2Z1wiXG4gICAgICAgICAgICAgICAgICAgIChrZXlkb3duKT1cIm9uQ29tbWFuZHMoJGV2ZW50LCAnY29uZmlybScpXCJcbiAgICAgICAgICAgICAgICA+PC9zdmctaWNvbj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgIGNsYXNzPVwibWFpbi1jb21tYW5kcyBjYS1pbnB1dC1jb21tYW5kLXNlY29uZFwiXG4gICAgICAgICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgICAgICAgIFttYWluQ2FUb29sdGlwXT1cIlxuICAgICAgICAgICAgICAgICAgICBjb21tYW5kSGFuZGxlci5jb21tYW5kcz8uc2Vjb25kQ29tbWFuZD8ucG9wdXA/Lm5hbWVcbiAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICAgIFt0b29sdGlwQmFja2dyb3VuZF09XCJcbiAgICAgICAgICAgICAgICAgICAgY29tbWFuZEhhbmRsZXIuY29tbWFuZHM/LnNlY29uZENvbW1hbmQ/LnBvcHVwXG4gICAgICAgICAgICAgICAgICAgICAgICA/LmJhY2tncm91bmRDb2xvclxuICAgICAgICAgICAgICAgIFwiXG4gICAgICAgICAgICAgICAgW2Rpc2FibGVUb29sdGlwXT1cIlxuICAgICAgICAgICAgICAgICAgICAhY29tbWFuZEhhbmRsZXIuY29tbWFuZHM/LnNlY29uZENvbW1hbmQ/LnBvcHVwXG4gICAgICAgICAgICAgICAgXCJcbiAgICAgICAgICAgICAgICBwb3NpdGlvbj1cInRvcFwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgPHN2Zy1pY29uXG4gICAgICAgICAgICAgICAgICAgIGNsYXNzPVwiY2EtaW5wdXQtY29tbWFuZC1zdmctc2Vjb25kXCJcbiAgICAgICAgICAgICAgICAgICAgW3NyY109XCJjb21tYW5kSGFuZGxlci5jb21tYW5kcy5zZWNvbmRDb21tYW5kLnN2Z1wiXG4gICAgICAgICAgICAgICAgICAgIChrZXlkb3duKT1cIm9uQ29tbWFuZHMoJGV2ZW50LCAnY2FuY2VsJylcIlxuICAgICAgICAgICAgICAgID48L3N2Zy1pY29uPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgIH1cbjwvZGl2PlxuIl19
421
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtaW5wdXQtYWRkcmVzcy1kcm9wZG93bi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1pbnB1dC1hZGRyZXNzLWRyb3Bkb3duL2NhLWlucHV0LWFkZHJlc3MtZHJvcGRvd24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQtYWRkcmVzcy1kcm9wZG93bi9jYS1pbnB1dC1hZGRyZXNzLWRyb3Bkb3duLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQWUsbUJBQW1CLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNsRSxPQUFPLEVBQ0gsU0FBUyxFQUNULFlBQVksRUFDWixLQUFLLEVBR0wsTUFBTSxFQUNOLElBQUksRUFDSixTQUFTLEVBQ1QsaUJBQWlCLEVBRWpCLFlBQVksR0FDZixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQ0gsVUFBVSxFQUNWLFlBQVksRUFDWixvQkFBb0IsRUFDcEIsTUFBTSxFQUNOLEVBQUUsRUFDRixPQUFPLEVBQ1AsU0FBUyxFQUNULFNBQVMsRUFDVCxHQUFHLEdBQ04sTUFBTSxNQUFNLENBQUM7QUFDZCxPQUFPLEVBSUgsV0FBVyxHQUNkLE1BQU0sZ0JBQWdCLENBQUM7QUFLeEIsYUFBYTtBQUNiLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLGtEQUFrRCxDQUFDO0FBRTVGLFVBQVU7QUFDVixPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFFdkQsUUFBUTtB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Z3VsYXIvY29tbW9uJztcbmltcG9ydCB7IEZvcm1Db250cm9sLCBSZWFjdGl2ZUZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHtcbiAgICBDb21wb25lbnQsXG4gICAgRXZlbnRFbWl0dGVyLFxuICAgIElucHV0LFxuICAgIE9uRGVzdHJveSxcbiAgICBPbkluaXQsXG4gICAgT3V0cHV0LFxuICAgIFNlbGYsXG4gICAgVmlld0NoaWxkLFxuICAgIFZpZXdFbmNhcHN1bGF0aW9uLFxuICAgIENoYW5nZURldGVjdG9yUmVmLFxuICAgIEhvc3RMaXN0ZW5lcixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1xuICAgIGNhdGNoRXJyb3IsXG4gICAgZGVib3VuY2VUaW1lLFxuICAgIGRpc3RpbmN0VW50aWxDaGFuZ2VkLFxuICAgIGZpbHRlcixcbiAgICBvZixcbiAgICBTdWJqZWN0LFxuICAgIHN3aXRjaE1hcCxcbiAgICB0YWtlVW50aWwsXG4gICAgdGFwLFxufSBmcm9tICdyeGpzJztcbmltcG9ydCB7XG4gICAgVW50eXBlZEZvcm1Hcm91cCxcbiAgICBOZ0NvbnRyb2wsXG4gICAgQ29udHJvbFZhbHVlQWNjZXNzb3IsXG4gICAgRm9ybXNNb2R1bGUsXG59IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcblxuLy8gQ29uZmlnXG5pbXBvcnQgeyBJQ2FJbnB1dCB9IGZyb20gJy4uL2NhLWlucHV0L2NvbmZpZy9jYS1pbnB1dC5jb25maWcnO1xuXG4vLyBDb21wb25lbnRzXG5pbXBvcnQgeyBDYUlucHV0RHJvcGRvd25Db21wb25lbnQgfSBmcm9tICcuLi9jYS1pbnB1dC1kcm9wZG93bi9jYS1pbnB1dC1kcm9wZG93bi5jb21wb25lbnQnO1xuXG4vLyBNb2R1bGVzXG5pbXBvcnQgeyBBbmd1bGFyU3ZnSWNvbk1vZHVsZSB9IGZyb20gJ2FuZ3VsYXItc3ZnLWljb24nO1xuaW1wb3J0IHsgTmdiTW9kdWxlIH0gZnJvbSAnQG5nLWJvb3RzdHJhcC9uZy1ib290c3RyYXAnO1xuXG4vLyBlbnVtc1xuaW1wb3J0IHsgSW5wdXRBZGRyZXNzQ29tbWFuZHNTdHJpbmdFbnVtIH0gZnJvbSAnLi9lbnVtcy9pbnB1dC1hZGRyZXNzLWNvbW1hbmRzLXN0cmluZy5lbnVtJztcbmltcG9ydCB7IElucHV0QWRkcmVzc1N0b3BUeXBlc1N0cmluZ0VudW0gfSBmcm9tICcuL2VudW1zL2lucHV0LWFkZHJlc3Mtc3RvcC10eXBlcy1zdHJpbmcuZW51bSc7XG5pbXBvcnQgeyBJbnB1dEFkZHJlc3NUeXBlU3RyaW5nRW51bSB9IGZyb20gJy4vZW51bXMvaW5wdXQtYWRkcmVzcy10eXBlLXN0cmluZy5lbnVtJztcbmltcG9ydCB7IElucHV0QWRkcmVzc0xheWVyc1N0cmluZ0VudW0gfSBmcm9tICcuL2VudW1zL2lucHV0LWFkZHJlc3MtbGF5ZXJzLXN0cmluZy5lbnVtJztcbmltcG9ydCB7IGVJbnB1dEJhc2ljU3RyaW5nIH0gZnJvbSAnLi9lbnVtcy9pbnB1dC1hZGRyZXNzLWJhc2ljLXN0cmluZy5lbnVtJztcbmltcG9ydCB7IGVTaGFyZWRTdHJpbmcgfSBmcm9tICcuLi8uLi9lbnVtcyc7XG5cbi8vIG1vZGVsc1xuaW1wb3J0IHsgQWRkcmVzc0RhdGEgfSBmcm9tICcuL21vZGVscy9hZGRyZXNzLWRhdGEubW9kZWwnO1xuaW1wb3J0IHsgQWRkcmVzc0xpc3QgfSBmcm9tICcuL21vZGVscy9hZGRyZXNzLWxpc3QubW9kZWwnO1xuaW1wb3J0IHsgQ29tbWFuZHNIYW5kbGVyIH0gZnJvbSAnLi9tb2RlbHMvY29tbWFuZHMtaGFuZGxlci5tb2RlbCc7XG5pbXBvcnQgeyBBdXRvY29tcGxldGVTZWFyY2hMYXllciB9IGZyb20gJy4uLy4uL21vZGVscy9hdXRvY29tcGxldGUtc2VhcmNoLWxheWVyLm1vZGVsJztcbmltcG9ydCB7IENhQXBwVG9vbHRpcFYyQ29tcG9uZW50IH0gZnJvbSAnLi4vY2EtYXBwLXRvb2x0aXAtdjIvY2EtYXBwLXRvb2x0aXAtdjIuY29tcG9uZW50JztcbmltcG9ydCB7IEh0dHBDbGllbnRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5pbXBvcnQgeyBJbnB1dEFkZHJlc3NDb21tYW5kc1N0cmluZyB9IGZyb20gJy4vbW9kZWxzL2lucHV0LWFkZHJlc3MtY29tbWFuZHMtc3RyaW5nLm1vZGVsJztcbmltcG9ydCB7IFNlbnRBZGRyZXNzRGF0YSB9IGZyb20gJy4vbW9kZWxzL3NlbnQtYWRkcmVzcy1kYXRhLm1vZGVsJztcbmltcG9ydCB7IEFkZHJlc3NMaXN0UmVzcG9uc2UgfSBmcm9tICcuLi8uLi9tb2RlbHMvYWRkcmVzcy1saXN0LXJlc3BvbnNlLm1vZGVsJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdhcHAtY2EtaW5wdXQtYWRkcmVzcy1kcm9wZG93bicsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2NhLWlucHV0LWFkZHJlc3MtZHJvcGRvd24uY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogW1xuICAgICAgICAnLi9jYS1pbnB1dC1hZGRyZXNzLWRyb3Bkb3duLmNvbXBvbmVudC5zY3NzJyxcbiAgICAgICAgJy4uL2NhLWlucHV0L2NhLWlucHV0LmNvbXBvbmVudC5zY3NzJyxcbiAgICBdLFxuICAgIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBpbXBvcnRzOiBbXG4gICAgICAgIC8vIE1vZHVsZXNcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxuICAgICAgICBGb3Jtc01vZHVsZSxcbiAgICAgICAgTmdiTW9kdWxlLFxuICAgICAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgICAgICBBbmd1bGFyU3ZnSWNvbk1vZHVsZSxcbiAgICAgICAgSHR0cENsaWVudE1vZHVsZSxcblxuICAgICAgICAvLyBDb21wb25lbnRzXG4gICAgICAgIENhSW5wdXREcm9wZG93bkNvbXBvbmVudCxcbiAgICAgICAgQ2FBcHBUb29sdGlwVjJDb21wb25lbnQsXG4gICAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQ2FJbnB1dEFkZHJlc3NEcm9wZG93bkNvbXBvbmVudFxuICAgIGltcGxlbWVudHMgT25Jbml0LCBDb250cm9sVmFsdWVBY2Nlc3NvciwgT25EZXN0cm95XG57XG4gICAgQFZpZXdDaGlsZCgnaW5wdXREcm9wZG93bicpIGlucHV0RHJvcGRvd24hOiBDYUlucHV0RHJvcGRvd25Db21wb25lbnQ7XG5cbiAgICBASW5wdXQoKSBzZXQgcGxhY2Vob2xkZXJUeXBlKHZhbHVlOiBzdHJpbmcpIHtcbiAgICAgICAgdGhpcy5jaGVja1NlYXJjaExheWVycyh2YWx1ZSk7XG4gICAgfVxuXG4gICAgQElucHV0KCkgcHVibGljIHNldCBhY3RpdmVBZGRyZXNzKHZhbHVlOiBBZGRyZXNzTGlzdCB8IG51bGwpIHtcbiAgICAgICAgaWYgKHZhbHVlKSB7XG4gICAgICAgICAgICB0aGlzLl9hY3RpdmVBZGRyZXNzID0gdmFsdWU7XG4gICAgICAgICAgICBsZXQgaXNWYWxpZCA9IHRydWU7XG4gICAgICAgICAgICBpZiAoXG4gICAgICAgICAgICAgICAgdGhpcy5zZWFyY2hMYXllcnM/LlswXSA9PT0gSW5wdXRBZGRyZXNzTGF5ZXJzU3RyaW5nRW51bS5BRERSRVNTXG4gICAgICAgICAgICApIHtcbiAgICAgICAgICAgICAgICBjb25zdCBhZGRyZXNzID0gdmFsdWU/LmFkZHJlc3M7XG4gICAgICAgICAgICAgICAgaWYgKGFkZHJlc3MpIGlzVmFsaWQgPSB0aGlzLmNoZWNrQWRkcmVzc1ZhbGlkYXRpb24oYWRkcmVzcyk7XG4gICAgICAgICAgICB9XG5cbiAgICAgICAgICAgIGlmICghdmFsdWUgfHwgIWlzVmFsaWQpXG4gICAgICAgICAgICAgICAgdGhpcy5nZXRTdXBlckNvbnRyb2whLnNldEVycm9ycyh7IGludmFsaWQ6IHRydWUgfSk7XG4gICAgICAgICAgICBlbHNlIHRoaXMuZ2V0U3VwZXJDb250cm9sIS5zZXRFcnJvcnMobnVsbCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBASW5wdXQoKSBwdWJsaWMgc2V0IHJlY2VpdmVkQWRkcmVzc0RhdGEodmFsdWU6IEFkZHJlc3NEYXRhIHwgbnVsbCkge1xuICAgICAgICBpZiAodmFsdWUpIHtcbiAgICAgICAgICAgIHRoaXMuY3VycmVudEFkZHJlc3NEYXRhID0ge1xuICAgICAgICAgICAgICAgIGFkZHJlc3M6IHZhbHVlLmFkZHJlc3MhLFxuICAgICAgICAgICAgICAgIHZhbGlkOiB2YWx1ZS5hZGRyZXNzICYmIHZhbHVlLmxvbmdMYXQgPyB0cnVlIDogZmFsc2UsXG4gICAgICAgICAgICAgICAgbG9uZ0xhdDogdmFsdWUubG9uZ0xhdCxcbiAgICAgICAgICAgIH07XG5cbiAgICAgICAgICAgIGlmICh0aGlzLmN1cnJlbnRBZGRyZXNzRGF0YSEudmFsaWQpIHtcbiAgICAgICAgICAgICAgICB0aGlzLmdldFN1cGVyQ29udHJvbCEuc2V0RXJyb3JzKG51bGwpO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICB0aGlzLnNlbGVjdGVkQWRkcmVzcy5lbWl0KHRoaXMuY3VycmVudEFkZHJlc3NEYXRhISk7XG4gICAgICAgIH1cbiAgICB9XG4gICAgQElucHV0KCkgcHVibGljIHNldCByZWNlaXZlZEFkZHJlc3NMaXN0KHZhbHVlOiBBZGRyZXNzTGlzdFJlc3BvbnNlIHwgbnVsbCkge1xuICAgICAgICB0aGlzLl9yZWNlaXZlZEFkZHJlc3NMaXN0ID0gdmFsdWU7XG5cbiAgICAgICAgaWYgKHZhbHVlPy5hZGRyZXNzZXMpIHtcbiAgICAgICAgICAgIGxldCBwYXJraW5nQWRkcmVzc2VzTGlzdDogYW55ID0gW107XG4gICAgICAgICAgICB0aGlzLmFkZHJlc0xpc3QgPSB2YWx1ZS5hZGRyZXNzZXMubWFwKFxuICAgICAgICAgICAgICAgIChpdGVtOiBzdHJpbmcsIGluZHg6IG51bWJlcikgPT4ge1xuICAgICAgICAgICAgICAgICAgICBjb25zdCBwYXJraW5nQWRkcmVzcyA9XG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLnRlbXBsYXRlID09PSBlU2hhcmVkU3RyaW5nLlBBUktJTkdfTE9XRVJDQVNFICYmXG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLl9wYXJraW5nTGlzdD8ubGVuZ3RoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPyB0aGlzLmZpbHRlclBhcmtpbmdCeUNpdHkoaXRlbSlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA6IG51bGw7XG5cbiAgICAgICAgICAgICAgICAgICAgaWYgKHBhcmtpbmdBZGRyZXNzPy5sZW5ndGgpXG4gICAgICAgICAgICAgICAgICAgICAgICBwYXJraW5nQWRkcmVzc2VzTGlzdC5wdXNoKHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBuYW1lOiBpdGVtLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGlkOiBpbmR4LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHBhcmtpbmdBZGRyZXNzLFxuICAgICAgICAgICAgICAgICAgICAgICAgfSk7XG4gICAgICAgICAgICAgICAgICAgIHJldHVybiB7XG4gICAgICAgICAgICAgICAgICAgICAgICBuYW1lOiBpdGVtLFxuICAgICAgICAgICAgICAgICAgICAgICAgaWQ6IGluZHgsXG4gICAgICAgICAgICAgICAgICAgIH07XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgKTtcblxuICAgICAgICAgICAgdGhpcy5hZGRyZXNMaXN0ID0gWy4uLnBhcmtpbmdBZGRyZXNzZXNMaXN0LCAuLi50aGlzLmFkZHJlc0xpc3RdO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgQElucHV0KCkgcHVibGljIHNldCBwYXJraW5nTGlzdCh2YWx1ZTogYW55W10pIHtcbiAgICAgICAgLy8gbGVhdmUgYW55IG5lZWQgYmFja2VuZCBmb3IgdGhpc1xuICAgICAgICB0aGlzLl9wYXJraW5nTGlzdCA9IHZhbHVlO1xuICAgIH1cblxuICAgIEBPdXRwdXQoKSBwdWJsaWMgc2VudEFkZHJlc3NWYWx1ZTogRXZlbnRFbWl0dGVyPHN0cmluZz4gPVxuICAgICAgICBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcblxuICAgIEBJbnB1dCgpIHB1YmxpYyBpbnB1dENvbmZpZyE6IElDYUlucHV0O1xuICAgIEBJbnB1dCgpIHB1YmxpYyBjb21tYW5kSGFuZGxlciE6IENvbW1hbmRzSGFuZGxlcjtcbiAgICBASW5wdXQoKSBwdWJsaWMgaXNSb3V0aW5nOiBib29sZWFuID0gZmFsc2U7XG4gICAgQElucHV0KCkgcHVibGljIGNsb3NlZEJvcmRlcjogYm9vbGVhbiA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIHB1YmxpYyBpbmNvcnJlY3RWYWx1ZSE6IGJvb2xlYW47XG4gICAgQElucHV0KCkgcHVibGljIGhpZGVFbXB0eUxvYWRlZDogYm9vbGVhbiA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIHB1YmxpYyBhZGRyZXNMaXN0ITogQWRkcmVzc0xpc3RbXTtcbiAgICBASW5wdXQoKSBwdWJsaWMgdGVtcGxhdGUhOiBzdHJpbmc7XG5cbiAgICBAT3V0cHV0KCkgc2VsZWN0ZWRBZGRyZXNzOiBFdmVudEVtaXR0ZXI8QWRkcmVzc0RhdGE+ID1cbiAgICAgICAgbmV3IEV2ZW50RW1pdHRlcjxBZGRyZXNzRGF0YT4oKTtcbiAgICBAT3V0cHV0KCkgc2VudEFkZHJlc3NEYXRhOiBFdmVudEVtaXR0ZXI8U2VudEFkZHJlc3NEYXRhPiA9XG4gICAgICAgIG5ldyBFdmVudEVtaXR0ZXI8U2VudEFkZHJlc3NEYXRhPigpO1xuXG4gICAgQE91dHB1dCgpXG4gICAgY2xvc2VEcm9wZG93bjogRXZlbnRFbWl0dGVyPGJvb2xlYW4+ID0gbmV3IEV2ZW50RW1pdHRlcjxib29sZWFuPigpO1xuICAgIEBPdXRwdXQoKSBjb21tYW5kRXZlbnQ6IEV2ZW50RW1pdHRlcjxBZGRyZXNzRGF0YSB8IHt9PiA9IG5ldyBFdmVudEVtaXR0ZXI8XG4gICAgICAgIEFkZHJlc3NEYXRhIHwge31cbiAgICA+KCk7XG4gICAgQE91dHB1dCgpIGNoYW5nZUZsYWc6IEV2ZW50RW1pdHRlcjxib29sZWFuPiA9IG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcbiAgICBAT3V0cHV0KCkgaW5jb3JyZWN0RXZlbnQ6IEV2ZW50RW1pdHRlcjxib29sZWFuPiA9XG4gICAgICAgIG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcblxuICAgIEBIb3N0TGlzdGVuZXIoJ2RvY3VtZW50OmtleWRvd24nLCBbJyRldmVudCddKVxuICAgIGhhbmRsZUtleWJvYXJkRXZlbnQoZXZlbnQ6IEtleWJvYXJkRXZlbnQpIHtcbiAgICAgICAgY29uc3Qga2V5ID0gZXZlbnQua2V5O1xuICAgICAgICBpZiAoXG4gICAgICAgICAgICB0aGlzLmlucHV0Q29uZmlnLm5hbWUgPT0gSW5wdXRBZGRyZXNzVHlwZVN0cmluZ0VudW0uUk9VVElOR19BRERSRVNTXG4gICAgICAgICkge1xuICAgICAgICAgICAgaWYgKGtleSA9PT0gSW5wdXRBZGRyZXNzQ29tbWFuZHNTdHJpbmdFbnVtLkVOVEVSKSB7XG4gICAgICAgICAgICAgICAgaWYgKHRoaXMuY3VycmVudEFkZHJlc3NEYXRhKSB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMub25Db21tYW5kcyhcbiAgICAgICAgICAgICAgICAgICAgICAgIGV2ZW50LFxuICAgICAgICAgICAgICAgICAgICAgICAgSW5wdXRBZGRyZXNzQ29tbWFuZHNTdHJpbmdFbnVtLkNPTkZJUk1cbiAgICAgICAgICAgICAgICAgICAgKTtcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9IGVsc2UgaWYgKGtleSA9PT0gSW5wdXRBZGRyZXNzQ29tbWFuZHNTdHJpbmdFbnVtLkVTQ0FQRSkge1xuICAgICAgICAgICAgICAgIHRoaXMuY2xlYXJJbnB1dChldmVudCk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICAvL0FkZHJlc3MgZGF0YVxuICAgIHByaXZhdGUgc2VhcmNoTGF5ZXJzITogQXV0b2NvbXBsZXRlU2VhcmNoTGF5ZXJbXTtcbiAgICBwdWJsaWMgY3VycmVudEFkZHJlc3NEYXRhOiBBZGRyZXNzRGF0YSB8IG51bGwgPSBudWxsO1xuXG4gICAgLy9Db25mZ1xuICAgIHB1YmxpYyBhZGRyZXNzRXhwYW5kZWQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBwdWJsaWMgY2hvc2VuRnJvbURyb3Bkb3duOiBib29sZWFuID0gZmFsc2U7XG4gICAgcHJpdmF0ZSBhbGxvd1ZhbGlkYXRpb246IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBwdWJsaWMgc3RvcFR5cGU6IHN0cmluZyA9IElucHV0QWRkcmVzc1N0b3BUeXBlc1N0cmluZ0VudW0uRU1QVFk7XG4gICAgcHJpdmF0ZSByZXF1ZXN0U2VudDogYm9vbGVhbiA9IGZhbHNlO1xuICAgIHB1YmxpYyBfcmVjZWl2ZWRBZGRyZXNzTGlzdDogQWRkcmVzc0xpc3RSZXNwb25zZSB8IG51bGwgPSBudWxsO1xuICAgIHB1YmxpYyBfYWN0aXZlQWRkcmVzczogQWRkcmVzc0xpc3QgfCBudWxsID0gbnVsbDtcbiAgICBwdWJsaWMgX3BhcmtpbmdMaXN0OiBhbnkgPSBudWxsOyAvL2xlYXZlIGFueSBmb3Igbm93XG4gICAgcHJpdmF0ZSBkZXN0cm95JCA9IG5ldyBTdWJqZWN0PHZvaWQ+KCk7XG4gICAgcHVibGljIGFkZHJlc3NGb3JtITogVW50eXBlZEZvcm1Hcm91cDtcblxuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBAU2VsZigpIHB1YmxpYyBzdXBlckNvbnRyb2w6IE5nQ29udHJvbCxcbiAgICAgICAgcHJpdmF0ZSByZWY6IENoYW5nZURldGVjdG9yUmVmXG4gICAgKSB7XG4gICAgICAgIHRoaXMuc3VwZXJDb250cm9sLnZhbHVlQWNjZXNzb3IgPSB0aGlzO1xuICAgIH1cblxuICAgIHdyaXRlVmFsdWUoXzogYW55KTogdm9pZCB7fVxuXG4gICAgcHVibGljIHJlZ2lzdGVyT25DaGFuZ2UoZm46IGFueSk6IHZvaWQge1xuICAgICAgICB0aGlzLm9uQ2hhbmdlID0gZm47XG4gICAgfVxuXG4gICAgcHVibGljIG9uQ2hhbmdlKF86IGFueSk6IHZvaWQge31cblxuICAgIHB1YmxpYyByZWdpc3Rlck9uVG91Y2hlZChfOiBhbnkpOiB2b2lkIHt9XG5cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5pbml0Q2hhbmdlc0xpc3RlbmVyKCk7XG4gICAgICAgIHRoaXMuaW5wdXRDb25maWcgPSB7XG4gICAgICAgICAgICAuLi50aGlzLmlucHV0Q29uZmlnLFxuICAgICAgICAgICAgdGV4dFRyYW5zZm9ybTogJ2NhcGl0YWxpemVkY2FzZScsXG4gICAgICAgIH07XG4gICAgfVxuXG4gICAgcHVibGljIGluaXRDaGFuZ2VzTGlzdGVuZXIoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sPy52YWx1ZUNoYW5nZXNcbiAgICAgICAgICAgID8ucGlwZShcbiAgICAgICAgICAgICAgICBkaXN0aW5jdFVudGlsQ2hhbmdlZCgpLFxuICAgICAgICAgICAgICAgIHRha2VVbnRpbCh0aGlzLmRlc3Ryb3kkKSxcbiAgICAgICAgICAgICAgICB0YXAoKHRlcm0pID0+IHtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5pbnB1dENvbmZpZyA9IHtcbiAgICAgICAgICAgICAgICAgICAgICAgIC4uLnRoaXMuaW5wdXRDb25maWcsXG4gICAgICAgICAgICAgICAgICAgICAgICBsb2FkaW5nU3Bpbm5lcjoge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIC4uLnRoaXMuaW5wdXRDb25maWcubG9hZGluZ1NwaW5uZXIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgaXNMb2FkaW5nOiB0cnVlLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHNpemU6IGVJbnB1dEJhc2ljU3RyaW5nLlNNQUxMLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNvbG9yOiBlSW5wdXRCYXNpY1N0cmluZy5XSElURSxcbiAgICAgICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgICAgIH07XG5cbiAgICAgICAgICAgICAgICAgICAgaWYgKCF0ZXJtKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLmlucHV0Q29uZmlnID0ge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIC4uLnRoaXMuaW5wdXRDb25maWcsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgbG9hZGluZ1NwaW5uZXI6IHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgLi4udGhpcy5pbnB1dENvbmZpZy5sb2FkaW5nU3Bpbm5lcixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgaXNMb2FkaW5nOiBmYWxzZSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgfTtcbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuYWRkcmVzTGlzdCA9IFtdO1xuICAgICAgICAgICAgICAgICAgICB9IGVsc2UgaWYgKFxuICAgICAgICAgICAgICAgICAgICAgICAgdGVybSAhPT0gdGhpcy5jdXJyZW50QWRkcmVzc0RhdGE/LmFkZHJlc3MuYWRkcmVzcyAmJlxuICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5pbnB1dENvbmZpZy5uYW1lID09PVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIElucHV0QWRkcmVzc1R5cGVTdHJpbmdFbnVtLlJPVVRJTkdfQUREUkVTU1xuICAgICAgICAgICAgICAgICAgICApIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuY3VycmVudEFkZHJlc3NEYXRhID0gbnVsbDtcbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICBpZiAoXG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLmlucHV0Q29uZmlnLm5hbWUgIT09XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgSW5wdXRBZGRyZXNzVHlwZVN0cmluZ0VudW0uUk9VVElOR19BRERSRVNTICYmXG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLmFsbG93VmFsaWRhdGlvbiAmJlxuICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5pbnB1dERyb3Bkb3duLmlucHV0UmVmLmlzRm9jdXNJbnB1dFxuICAgICAgICAgICAgICAgICAgICApIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMucmVxdWVzdFNlbnQgPSBmYWxzZTtcbiAgICAgICAgICAgICAgICAgICAgICAgIGNvbnN0IGFkZHJlc3NEYXRhID0ge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGFkZHJlc3M6IHt9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHZhbGlkOiBmYWxzZSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBsb25nTGF0OiB7fSxcbiAgICAgICAgICAgICAgICAgICAgICAgIH07XG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLnNlbGVjdGVkQWRkcmVzcy5lbWl0KGFkZHJlc3NEYXRhKTtcbiAgICAgICAgICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuYWxsb3dWYWxpZGF0aW9uID0gdHJ1ZTtcbiAgICAgICAgICAgICAgICB9KSxcbiAgICAgICAgICAgICAgICBmaWx0ZXIoKHRlcm06IHN0cmluZykgPT4ge1xuICAgICAgICAgICAgICAgICAgICByZXR1cm4gdGVybT8ubGVuZ3RoID49IDM7XG4gICAgICAgICAgICAgICAgfSksXG4gICAgICAgICAgICAgICAgZGVib3VuY2VUaW1lKDUwMCksXG4gICAgICAgICAgICAgICAgc3dpdGNoTWFwKChxdWVyeTogc3RyaW5nKSA9PiB7XG4gICAgICAgICAgICAgICAgICAgIGNvbnN0IHBhcmFtcyA9IHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHF1ZXJ5OiBxdWVyeSxcbiAgICAgICAgICAgICAgICAgICAgICAgIHNlYXJjaExheWVyczogdGhpcy5zZWFyY2hMYXllcnMsXG4gICAgICAgICAgICAgICAgICAgICAgICBjbG9zZWRCb3JkZXI6IHRoaXMuY2xvc2VkQm9yZGVyLFxuICAgICAgICAgICAgICAgICAgICB9O1xuXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuc2VudEFkZHJlc3NEYXRhLm5leHQocGFyYW1zKTtcblxuICAgICAgICAgICAgICAgICAgICByZXR1cm4gb2YodGhpcy5yZWNlaXZlZEFkZHJlc3NMaXN0KS5waXBlKFxuICAgICAgICAgICAgICAgICAgICAgICAgY2F0Y2hFcnJvcigoKSA9PiBvZihbXSkpXG4gICAgICAgICAgICAgICAgICAgICk7XG4gICAgICAgICAgICAgICAgfSlcbiAgICAgICAgICAgIClcbiAgICAgICAgICAgIC5zdWJzY3JpYmUoKCkgPT4ge1xuICAgICAgICAgICAgICAgIGxldCBpc1ZhbGlkID0gdHJ1ZTtcbiAgICAgICAgICAgICAgICBpZiAoXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuc2VhcmNoTGF5ZXJzPy5bMF0gPT09XG4gICAgICAgICAgICAgICAgICAgIElucHV0QWRkcmVzc0xheWVyc1N0cmluZ0VudW0uQUREUkVTU1xuICAgICAgICAgICAgICAgICkge1xuICAgICAgICAgICAgICAgICAgICBjb25zdCBhZGRyZXNzID0gdGhpcy5fYWN0aXZlQWRkcmVzcz8uYWRkcmVzcztcbiAgICAgICAgICAgICAgICAgICAgaWYgKGFkZHJlc3MpIGlzVmFsaWQgPSB0aGlzLmNoZWNrQWRkcmVzc1ZhbGlkYXRpb24oYWRkcmVzcyk7XG4gICAgICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAgICAgaWYgKCF0aGlzLl9hY3RpdmVBZGRyZXNzIHx8ICFpc1ZhbGlkKVxuICAgICAgICAgICAgICAgICAgICB0aGlzLmdldFN1cGVyQ29udHJvbCEuc2V0RXJyb3JzKHsgaW52YWxpZDogdHJ1ZSB9KTtcbiAgICAgICAgICAgICAgICBlbHNlIHRoaXMuZ2V0U3VwZXJDb250cm9sIS5zZXRFcnJvcnMobnVsbCk7XG5cbiAgICAgICAgICAgICAgICB0aGlzLmlucHV0Q29uZmlnID0ge1xuICAgICAgICAgICAgICAgICAgICAuLi50aGlzLmlucHV0Q29uZmlnLFxuICAgICAgICAgICAgICAgICAgICBsb2FkaW5nU3Bpbm5lcjoge1xuICAgICAgICAgICAgICAgICAgICAgICAgLi4udGhpcy5pbnB1dENvbmZpZy5sb2FkaW5nU3Bpbm5lcixcbiAgICAgICAgICAgICAgICAgICAgICAgIGlzTG9hZGluZzogZmFsc2UsXG4gICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgfTtcblxuICAgICAgICAgICAgICAgIHRoaXMucmVmLmRldGVjdENoYW5nZXMoKTtcbiAgICAgICAgICAgIH0pO1xuICAgIH1cblxuICAgIGdldCBnZXRTdXBlckNvbnRyb2woKSB7XG4gICAgICAgIHJldHVybiB0aGlzLnN1cGVyQ29udHJvbC5jb250cm9sIGFzIEZvcm1Db250cm9sO1xuICAgIH1cblxuICAgIHB1YmxpYyBvbkNsb3NlRHJvcGRvd24oZXZlbnQ6IGJvb2xlYW4pOiB2b2lkIHtcbiAgICAgICAgbGV0IGlzVmFsaWQgPSB0cnVlO1xuICAgICAgICBzZXRUaW1lb3V0KCgpID0+IHtcbiAgICAgICAgICAgIGlmIChcbiAgICAgICAgICAgICAgICB0aGlzLnNlYXJjaExheWVycz8uWzBdID09PSBJbnB1dEFkZHJlc3NMYXllcnNTdHJpbmdFbnVtLkFERFJFU1NcbiAgICAgICAgICAgICkge1xuICAgICAgICAgICAgICAgIGNvbnN0IGFkZHJlc3MgPSB0aGlzLl9hY3RpdmVBZGRyZXNzPy5hZGRyZXNzO1xuICAgICAgICAgICAgICAgIGlmIChhZGRyZXNzKSBpc1ZhbGlkID0gdGhpcy5jaGVja0FkZHJlc3NWYWxpZGF0aW9uKGFkZHJlc3MpO1xuXG4gICAgICAgICAgICAgICAgaWYgKCFpc1ZhbGlkKVxuICAgICAgICAgICAgICAgICAgICB0aGlzLmdldFN1cGVyQ29udHJvbCEuc2V0RXJyb3JzKHsgaW52YWxpZDogdHJ1ZSB9KTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIGlmICghdGhpcy5yZXF1ZXN0U2VudCAmJiBpc1ZhbGlkKVxuICAgICAgICAgICAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sIS5zZXRFcnJvcnMoeyBpbnZhbGlkOiB0cnVlIH0pO1xuICAgICAgICAgICAgaWYgKFxuICAgICAgICAgICAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sIS52YWx1ZSA9PT0gdGhpcy5fYWN0aXZlQWRkcmVzcz8uYWRkcmVzcyAmJlxuICAgICAgICAgICAgICAgIGlzVmFsaWRcbiAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICB0aGlzLmdldFN1cGVyQ29udHJvbCEuc2V0RXJyb3JzKG51bGwpO1xuICAgICAgICB9LCAyMDApO1xuICAgICAgICB0aGlzLmNsb3NlRHJvcGRvd24uZW1pdChldmVudCk7XG4gICAgfVxuXG4gICAgcHVibGljIGdldEFkZHJlc3NEYXRhKGFkZHJlc3M6IHN0cmluZyk6IHZvaWQge1xuICAgICAgICB0aGlzLnJlcXVlc3RTZW50ID0gdHJ1ZTtcblxuICAgICAgICB0aGlzLnNlbnRBZGRyZXNzVmFsdWUuZW1pdChhZGRyZXNzKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgb25TZWxlY3REcm9wZG93bihldmVudDogQWRkcmVzc0xpc3QgfCBudWxsKTogdm9pZCB7XG4gICAgICAgIHRoaXMuX2FjdGl2ZUFkZHJlc3MgPSBldmVudCA/IHsgLi4uZXZlbnQsIGFkZHJlc3M6IGV2ZW50Py5uYW1lIH0gOiBudWxsO1xuXG4gICAgICAgIGlmIChldmVudD8ubmFtZSkge1xuICAgICAgICAgICAgaWYgKFxuICAgICAgICAgICAgICAgIHRoaXMuc2VhcmNoTGF5ZXJzPy5bMF0gPT09IElucHV0QWRkcmVzc0xheWVyc1N0cmluZ0VudW0uQUREUkVTU1xuICAgICAgICAgICAgKSB7XG4gICAgICAgICAgICAgICAgY29uc3QgaXNWYWxpZCA9IHRoaXMuY2hlY2tBZGRyZXNzVmFsaWRhdGlvbihldmVudC5uYW1lKTtcblxuICAgICAgICAgICAgICAgIGlmIChpc1ZhbGlkKSB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZ2V0QWRkcmVzc0RhdGEoZXZlbnQubmFtZSk7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sIS5zZXRWYWx1ZShldmVudC5uYW1lKTtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5nZXRTdXBlckNvbnRyb2whLnNldEVycm9ycyhudWxsKTtcbiAgICAgICAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgICAgICAgICB0aGlzLmdldFN1cGVyQ29udHJvbCEuc2V0RXJyb3JzKHtcbiAgICAgICAgICAgICAgICAgICAgICAgIGludmFsaWQ6IHRydWUsXG4gICAgICAgICAgICAgICAgICAgIH0pO1xuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgICAgdGhpcy5nZXRBZGRyZXNzRGF0YShldmVudC5uYW1lKTtcbiAgICAgICAgICAgICAgICB0aGlzLmdldFN1cGVyQ29udHJvbCEuc2V0VmFsdWUoZXZlbnQubmFtZSk7XG4gICAgICAgICAgICAgICAgdGhpcy5nZXRTdXBlckNvbnRyb2whLnNldEVycm9ycyhudWxsKTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgdGhpcy5jaG9zZW5Gcm9tRHJvcGRvd24gPSB0cnVlO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgdGhpcy5vbkNsZWFySW5wdXRFdmVudCgpO1xuICAgICAgICAgICAgdGhpcy5jdXJyZW50QWRkcmVzc0RhdGEgPSBudWxsO1xuICAgICAgICAgICAgdGhpcy5hZGRyZXNMaXN0ID0gW107XG4gICAgICAgIH1cbiAgICAgICAgdGhpcy5pbnB1dERyb3Bkb3duPy5wb3BvdmVyUmVmPy5jbG9zZSgpO1xuICAgIH1cblxuICAgIHB1YmxpYyBvbkNvbW1hbmRzKFxuICAgICAgICBldmVudDogS2V5Ym9hcmRFdmVudCxcbiAgICAgICAgdHlwZTogSW5wdXRBZGRyZXNzQ29tbWFuZHNTdHJpbmdcbiAgICApOiB2b2lkIHtcbiAgICAgICAgZXZlbnQucHJldmVudERlZmF1bHQoKTtcbiAgICAgICAgZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XG5cbiAgICAgICAgaWYgKFxuICAgICAgICAgICAgKHR5cGUgPT09IElucHV0QWRkcmVzc0NvbW1hbmRzU3RyaW5nRW51bS5DT05GSVJNICYmXG4gICAgICAgICAgICAgICAgdGhpcy5jdXJyZW50QWRkcmVzc0RhdGEpIHx8XG4gICAgICAgICAgICB0eXBlID09PSBJbnB1dEFkZHJlc3NDb21tYW5kc1N0cmluZ0VudW0uQ0FOQ0VMXG4gICAgICAgICkge1xuICAgICAgICAgICAgdGhpcy5jdXJyZW50QWRkcmVzc0RhdGEhLnR5cGUgPSB0eXBlO1xuICAgICAgICAgICAgdGhpcy5jb21tYW5kRXZlbnQuZW1pdCh0aGlzLmN1cnJlbnRBZGRyZXNzRGF0YSA/PyB7fSk7XG5cbiAgICAgICAgICAgIHRoaXMuY2xvc2VBZGRyZXNzKCk7XG4gICAgICAgICAgICB0aGlzLmNsZWFySW5wdXQoZXZlbnQpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHVibGljIGFkZHJlc3NFeHBhbmQoKTogdm9pZCB7XG4gICAgICAgIGlmICghdGhpcy5hZGRyZXNzRXhwYW5kZWQpIHRoaXMuYWRkcmVzc0V4cGFuZGVkID0gdHJ1ZTtcbiAgICB9XG5cbiAgICBwdWJsaWMgY2xvc2VBZGRyZXNzKCk6IHZvaWQge1xuICAgICAgICB0aGlzLmFkZHJlc3NFeHBhbmRlZCA9IGZhbHNlO1xuICAgIH1cblxuICAgIHB1YmxpYyBjbGVhcklucHV0KGV2ZW50OiBLZXlib2FyZEV2ZW50KTogdm9pZCB7XG4gICAgICAgIHRoaXMuY3VycmVudEFkZHJlc3NEYXRhID0gbnVsbDtcbiAgICAgICAgdGhpcy5hZGRyZXNMaXN0ID0gW107XG4gICAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sIS5zZXRWYWx1ZShudWxsKTtcbiAgICAgICAgdGhpcy5fYWN0aXZlQWRkcmVzcyA9IG51bGw7XG4gICAgICAgIHRoaXMuaW5wdXREcm9wZG93bj8uaW5wdXRSZWY/LmNsZWFySW5wdXQoZXZlbnQpO1xuICAgICAgICB0aGlzLmNob3NlbkZyb21Ecm9wZG93biA9IGZhbHNlO1xuICAgIH1cblxuICAgIHByaXZhdGUgY2hlY2tTZWFyY2hMYXllcnModmFsdWU6IHN0cmluZyk6IHZvaWQge1xuICAgICAgICB0aGlzLnNlYXJjaExheWVycyA9XG4gICAgICAgICAgICB2YWx1ZSA9PT0gSW5wdXRBZGRyZXNzVHlwZVN0cmluZ0VudW0uTE9OR19BRERSRVNTXG4gICAgICAgICAgICAgICAgPyBbSW5wdXRBZGRyZXNzTGF5ZXJzU3RyaW5nRW51bS5BRERSRVNTXVxuICAgICAgICAgICAgICAgIDogdmFsdWUgPT09IElucHV0QWRkcmVzc1R5cGVTdHJpbmdFbnVtLlNIT1JUX0FERFJFU1NcbiAgICAgICAgICAgICAgICAgID8gW0lucHV0QWRkcmVzc0xheWVyc1N0cmluZ0VudW0uTE9DQUxJVFldXG4gICAgICAgICAgICAgICAgICA6IFtdO1xuICAgIH1cblxuICAgIHB1YmxpYyBjaGFuZ2VTdG9wVHlwZSgpOiB2b2lkIHtcbiAgICAgICAgbGV0IGZsYWcgPSBmYWxzZTtcbiAgICAgICAgaWYgKHRoaXMuc3RvcFR5cGUgPT09IElucHV0QWRkcmVzc1N0b3BUeXBlc1N0cmluZ0VudW0uRU1QVFkpIHtcbiAgICAgICAgICAgIHRoaXMuc3RvcFR5cGUgPSBJbnB1dEFkZHJlc3NTdG9wVHlwZXNTdHJpbmdFbnVtLkxPQURFRDtcbiAgICAgICAgICAgIGZsYWcgPSB0cnVlO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgdGhpcy5zdG9wVHlwZSA9IElucHV0QWRkcmVzc1N0b3BUeXBlc1N0cmluZ0VudW0uRU1QVFk7XG4gICAgICAgIH1cblxuICAgICAgICB0aGlzLmNoYW5nZUZsYWcuZW1pdChmbGFnKTtcblxuICAgICAgICBpZiAoIXRoaXMuY2hvc2VuRnJvbURyb3Bkb3duKSB7XG4gICAgICAgICAgICB0aGlzLmlucHV0RHJvcGRvd24/LmlucHV0UmVmPy5pbnB1dC5uYXRpdmVFbGVtZW50LmZvY3VzKCk7XG4gICAgICAgICAgICBzZXRUaW1lb3V0KCgpID0+IHtcbiAgICAgICAgICAgICAgICB0aGlzLmlucHV0RHJvcGRvd24uaW5wdXRSZWYuaXNGb2N1c0lucHV0ID0gdHJ1ZTtcbiAgICAgICAgICAgIH0sIDUwMCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwdWJsaWMgb25JbmNvcnJlY3RJbnB1dChldmVudDogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICB0aGlzLmluY29ycmVjdEV2ZW50LmVtaXQoZXZlbnQpO1xuICAgIH1cblxuICAgIHB1YmxpYyBvbkNsZWFySW5wdXRFdmVudCgpOiB2b2lkIHtcbiAgICAgICAgaWYgKHRoaXMuaW5wdXRDb25maWcuaXNSZXF1aXJlZCkge1xuICAgICAgICAgICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICAgICAgdGhpcy5nZXRTdXBlckNvbnRyb2whLnNldEVycm9ycyh7IHJlcXVpcmVkOiB0cnVlIH0pO1xuICAgICAgICAgICAgfSwgMzAwKTtcbiAgICAgICAgfVxuICAgICAgICBjb25zdCBhZGRyZXNzRGF0YSA9IHtcbiAgICAgICAgICAgIGFkZHJlc3M6IHt9LFxuICAgICAgICAgICAgdmFsaWQ6IGZhbHNlLFxuICAgICAgICAgICAgbG9uZ0xhdDoge30sXG4gICAgICAgIH07XG4gICAgICAgIHRoaXMuc2VsZWN0ZWRBZGRyZXNzLmVtaXQoYWRkcmVzc0RhdGEpO1xuICAgIH1cblxuICAgIHByaXZhdGUgY2hlY2tBZGRyZXNzVmFsaWRhdGlvbihhZGRyZXNzOiBzdHJpbmcpOiBib29sZWFuIHtcbiAgICAgICAgY29uc3Qgc3RyZWV0TnVtID0gL1xcZC87XG5cbiAgICAgICAgcmV0dXJuIHN0cmVldE51bS50ZXN0KGFkZHJlc3MpID8gdHJ1ZSA6IGZhbHNlO1xuICAgIH1cblxuICAgIHByaXZhdGUgZmlsdGVyUGFya2luZ0J5Q2l0eShzZWFyY2hTdHJpbmc6IHN0cmluZyk6IGFueSB7XG4gICAgICAgIGNvbnN0IGZvcm1hdHRlZFNlYXJjaFN0cmluZyA9IHNlYXJjaFN0cmluZ1xuICAgICAgICAgICAgLnRyaW0oKVxuICAgICAgICAgICAgLnJlcGxhY2UoL1xccyosXFxzKi9nLCAnLCAnKTtcblxuICAgICAgICBjb25zdCBpc1BhcmtpbmcgPSB0aGlzLl9wYXJraW5nTGlzdC5maWx0ZXIoKHBhcmtpbmc6IGFueSkgPT4ge1xuICAgICAgICAgICAgY29uc3QgeyBjaXR5LCBzdGF0ZVNob3J0TmFtZSwgY291bnRyeSB9ID0gcGFya2luZy5hZGRyZXNzIHx8IHt9O1xuICAgICAgICAgICAgY29uc3QgZm9ybWF0dGVkQWRkcmVzcyA9IGAke2NpdHl9LCAke3N0YXRlU2hvcnROYW1lfSwgJHtjb3VudHJ5fWA7XG4gICAgICAgICAgICByZXR1cm4gZm9ybWF0dGVkQWRkcmVzcyA9PT0gZm9ybWF0dGVkU2VhcmNoU3RyaW5nO1xuICAgICAgICB9KTtcblxuICAgICAgICByZXR1cm4gaXNQYXJraW5nO1xuICAgIH1cblxuICAgIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgICAgICB0aGlzLmRlc3Ryb3kkLm5leHQoKTtcbiAgICAgICAgdGhpcy5kZXN0cm95JC5jb21wbGV0ZSgpO1xuICAgIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJhZGRyZXNzX2hvbGRlciBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyXCIgKGNsaWNrKT1cImFkZHJlc3NFeHBhbmQoKVwiPlxuICAgIDxkaXZcbiAgICAgICAgY2xhc3M9XCJtYWluX2FkZHJlc3NfaG9sZGVyXCJcbiAgICAgICAgW25nQ2xhc3NdPVwie1xuICAgICAgICAgICAgaW5wdXRfZm9yX3JvdXRpbmc6IGlzUm91dGluZyxcbiAgICAgICAgICAgIG5vdF9leHBhbmRlZDogaXNSb3V0aW5nICYmICFhZGRyZXNzRXhwYW5kZWQsXG4gICAgICAgICAgICBleHBhbmRlZF9hZGRyZXNzOiBpc1JvdXRpbmcgJiYgYWRkcmVzc0V4cGFuZGVkLFxuICAgICAgICB9XCJcbiAgICA+XG4gICAgICAgIDxhcHAtY2EtaW5wdXQtZHJvcGRvd25cbiAgICAgICAgICAgICNpbnB1dERyb3Bkb3duXG4gICAgICAgICAgICBbZm9ybUNvbnRyb2xdPVwiZ2V0U3VwZXJDb250cm9sXCJcbiAgICAgICAgICAgIFtpbnB1dENvbmZpZ109XCJpbnB1dENvbmZpZ1wiXG4gICAgICAgICAgICBbb3B0aW9uc109XCJhZGRyZXNMaXN0XCJcbiAgICAgICAgICAgIFthY3RpdmVJdGVtXT1cIl9hY3RpdmVBZGRyZXNzXCJcbiAgICAgICAgICAgIFtpc0luY29ycmVjdFZhbHVlXT1cImluY29ycmVjdFZhbHVlXCJcbiAgICAgICAgICAgIFt0ZW1wbGF0ZV09XCJ0ZW1wbGF0ZVwiXG4gICAgICAgICAgICAoaW5jb3JyZWN0RXZlbnQpPVwib25JbmNvcnJlY3RJbnB1dCgkZXZlbnQpXCJcbiAgICAgICAgICAgIChzZWxlY3RlZEl0ZW0pPVwib25TZWxlY3REcm9wZG93bigkZXZlbnQpXCJcbiAgICAgICAgICAgIChjbG9zZURyb3Bkb3duKT1cIm9uQ2xvc2VEcm9wZG93bigkZXZlbnQpXCJcbiAgICAgICAgICAgIChjbGVhcklucHV0RXZlbnQpPVwib25DbGVhcklucHV0RXZlbnQoKVwiXG4gICAgICAgID48L2FwcC1jYS1pbnB1dC1kcm9wZG93bj5cbiAgICAgICAgQGlmIChpc1JvdXRpbmcgJiYgYWRkcmVzc0V4cGFuZGVkICYmICFoaWRlRW1wdHlMb2FkZWQpIHtcbiAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICBjbGFzcz1cInN0b3BfaG9sZCBkLWZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBhbGlnbi1pdGVtcy1jZW50ZXJcIlxuICAgICAgICAgICAgICAgIChjbGljayk9XCJjaGFuZ2VTdG9wVHlwZSgpXCJcbiAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwic3RvcF90ZXh0XCI+e3sgc3RvcFR5cGUgfX08L2Rpdj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICB9XG4gICAgPC9kaXY+XG4gICAgQGlmIChpc1JvdXRpbmcgJiYgYWRkcmVzc0V4cGFuZGVkKSB7XG4gICAgICAgIDxkaXYgY2xhc3M9XCJjYS1pbnB1dC1jb21tYW5kcyBhZGRyZXNzLWZsYWcgZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlclwiPlxuICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgIGNsYXNzPVwibWFpbi1jb21tYW5kcyBjYS1pbnB1dC1jb21tYW5kLWZpcnN0XCJcbiAgICAgICAgICAgICAgICBuZ2JUb29sdGlwXG4gICAgICAgICAgICAgICAgW21haW5DYVRvb2x0aXBdPVwiXG4gICAgICAgICAgICAgICAgICAgIGNvbW1hbmRIYW5kbGVyLmNvbW1hbmRzPy5maXJzdENvbW1hbmQ/LnBvcHVwPy5uYW1lXG4gICAgICAgICAgICAgICAgXCJcbiAgICAgICAgICAgICAgICBbdG9vbHRpcEJhY2tncm91bmRdPVwiXG4gICAgICAgICAgICAgICAgICAgIGNvbW1hbmRIYW5kbGVyLmNvbW1hbmRzPy5maXJzdENvbW1hbmQ/LnBvcHVwXG4gICAgICAgICAgICAgICAgICAgICAgICA/LmJhY2tncm91bmRDb2xvclxuICAgICAgICAgICAgICAgIFwiXG4gICAgICAgICAgICAgICAgW2Rpc2FibGVUb29sdGlwXT1cIiFjb21tYW5kSGFuZGxlci5jb21tYW5kcz8uZmlyc3RDb21tYW5kPy5wb3B1cFwiXG4gICAgICAgICAgICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgIDxzdmctaWNvblxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cImNhLWlucHV0LWNvbW1hbmQtc3ZnLWZpcnN0XCJcbiAgICAgICAgICAgICAgICAgICAgW2NsYXNzLmFsbG93X2NvbmZpcm1dPVwiY2hvc2VuRnJvbURyb3Bkb3duXCJcbiAgICAgICAgICAgICAgICAgICAgW3NyY109XCJjb21tYW5kSGFuZGxlci5jb21tYW5kcy5maXJzdENvbW1hbmQuc3ZnXCJcbiAgICAgICAgICAgICAgICAgICAgKGtleWRvd24pPVwib25Db21tYW5kcygkZXZlbnQsICdjb25maXJtJylcIlxuICAgICAgICAgICAgICAgID48L3N2Zy1pY29uPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgY2xhc3M9XCJtYWluLWNvbW1hbmRzIGNhLWlucHV0LWNvbW1hbmQtc2Vjb25kXCJcbiAgICAgICAgICAgICAgICBuZ2JUb29sdGlwXG4gICAgICAgICAgICAgICAgW21haW5DYVRvb2x0aXBdPVwiXG4gICAgICAgICAgICAgICAgICAgIGNvbW1hbmRIYW5kbGVyLmNvbW1hbmRzPy5zZWNvbmRDb21tYW5kPy5wb3B1cD8ubmFtZVxuICAgICAgICAgICAgICAgIFwiXG4gICAgICAgICAgICAgICAgW3Rvb2x0aXBCYWNrZ3JvdW5kXT1cIlxuICAgICAgICAgICAgICAgICAgICBjb21tYW5kSGFuZGxlci5jb21tYW5kcz8uc2Vjb25kQ29tbWFuZD8ucG9wdXBcbiAgICAgICAgICAgICAgICAgICAgICAgID8uYmFja2dyb3VuZENvbG9yXG4gICAgICAgICAgICAgICAgXCJcbiAgICAgICAgICAgICAgICBbZGlzYWJsZVRvb2x0aXBdPVwiXG4gICAgICAgICAgICAgICAgICAgICFjb21tYW5kSGFuZGxlci5jb21tYW5kcz8uc2Vjb25kQ29tbWFuZD8ucG9wdXBcbiAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICAgIHBvc2l0aW9uPVwidG9wXCJcbiAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJjYS1pbnB1dC1jb21tYW5kLXN2Zy1zZWNvbmRcIlxuICAgICAgICAgICAgICAgICAgICBbc3JjXT1cImNvbW1hbmRIYW5kbGVyLmNvbW1hbmRzLnNlY29uZENvbW1hbmQuc3ZnXCJcbiAgICAgICAgICAgICAgICAgICAgKGtleWRvd24pPVwib25Db21tYW5kcygkZXZlbnQsICdjYW5jZWwnKVwiXG4gICAgICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG4gICAgfVxuPC9kaXY+XG4iXX0=