ca-components 1.1.2 → 1.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. package/esm2022/lib/components/ca-input/config/ca-input.config.mjs +1 -1
  2. package/esm2022/lib/components/ca-input/input-test/input-test.component.mjs +14 -11
  3. package/esm2022/lib/components/ca-input/mixins/input-command.mixin.mjs +1 -1
  4. package/esm2022/lib/components/ca-input/mixins/input-helper.mixin.mjs +1 -1
  5. package/esm2022/lib/components/ca-input/models/base.model.mjs +2 -0
  6. package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +2 -2
  7. package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +229 -184
  8. package/esm2022/lib/components/ca-input-dropdown/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.mjs +5 -3
  9. package/esm2022/lib/components/ca-input-dropdown/pipes/dropdown-options.pipe.mjs +49 -0
  10. package/esm2022/lib/components/ca-input-dropdown/pipes/input-dropdown-default-template-class.pipe.mjs +4 -2
  11. package/fesm2022/ca-components.mjs +291 -193
  12. package/fesm2022/ca-components.mjs.map +1 -1
  13. package/lib/components/ca-input/config/ca-input.config.d.ts +2 -0
  14. package/lib/components/ca-input/input-test/input-test.component.d.ts +30 -13
  15. package/lib/components/ca-input/mixins/input-command.mixin.d.ts +16 -11
  16. package/lib/components/ca-input/mixins/input-helper.mixin.d.ts +13 -22
  17. package/lib/components/ca-input/models/base.model.d.ts +23 -0
  18. package/lib/components/ca-input-dropdown/ca-input-dropdown.component.d.ts +16 -4
  19. package/lib/components/ca-input-dropdown/components/ca-input-dropdown-default-template/ca-input-dropdown-default-template.component.d.ts +2 -1
  20. package/lib/components/ca-input-dropdown/pipes/dropdown-options.pipe.d.ts +8 -0
  21. package/package.json +1 -1
@@ -7,7 +7,7 @@ import { NgbModule, NgbPopover, NgbDropdownConfig, NgbPopoverModule, NgbTooltipM
7
7
  import * as i2 from 'angular-svg-icon';
8
8
  import { AngularSvgIconModule, SvgIconRegistryService } from 'angular-svg-icon';
9
9
  import { trigger, transition, style, animate, state, keyframes, query, group } from '@angular/animations';
10
- import { Subject, BehaviorSubject, takeUntil, combineLatest, debounceTime, skip, distinctUntilChanged as distinctUntilChanged$1, tap, filter, switchMap, of, catchError, from, Observable, map } from 'rxjs';
10
+ import { Subject, BehaviorSubject, takeUntil, combineLatest, distinctUntilChanged as distinctUntilChanged$1, debounceTime, tap, filter, switchMap, of, catchError, from, Observable, map } from 'rxjs';
11
11
  import * as i1$3 from '@angular/common/http';
12
12
  import { HttpClientModule } from '@angular/common/http';
13
13
  import * as i1$1 from '@angular/forms';
@@ -9522,7 +9522,9 @@ class InputDropdownDefaultTemplateClassPipe {
9522
9522
  'no-result': options.length === 1 && options[0]?.name === 'No Results',
9523
9523
  'add-new': option?.name === 'ADD NEW',
9524
9524
  active: option.id ===
9525
- (activeItem?.duplicateId ? activeItem?.duplicateId : activeItem?.id),
9525
+ (activeItem?.duplicateId
9526
+ ? activeItem?.duplicateId
9527
+ : activeItem?.id),
9526
9528
  'active-repair-truck-trailer': option?.status === 1,
9527
9529
  routing_dropdown: inputConfig?.name === 'RoutingAddress',
9528
9530
  };
@@ -10515,7 +10517,7 @@ class CaInputDropdownDefaultTemplateComponent {
10515
10517
  this.onActiveItem.emit(option);
10516
10518
  }
10517
10519
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputDropdownDefaultTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
10518
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaInputDropdownDefaultTemplateComponent, isStandalone: true, selector: "app-ca-input-dropdown-default-template", inputs: { options: "options", activeItem: "activeItem", getSuperControl: "getSuperControl", inputConfig: "inputConfig", inputHoveredItem: "inputHoveredItem" }, outputs: { onActiveItem: "onActiveItem" }, viewQueries: [{ propertyName: "dropdownOption", predicate: ["dropdownOption"], descendants: true }], ngImport: i0, template: "@for (option of options; track option.id; let i = $index) {\n <div\n #dropdownOption\n (click)=\"onActiveItemEmit(option)\"\n [innerHtml]=\"\n option?.name\n | caHighlight\n : [\n {\n index: 45632,\n text: getSuperControl?.value,\n },\n ]\n \"\n [ngClass]=\"\n option\n | inputDropdownDefaultTemplateClass\n : options\n : activeItem\n : inputConfig\n \"\n class=\"dropdown-option\"\n [class.dropdown-option-hovered]=\"i == inputHoveredItem\"\n ></div>\n}\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "pipe", type:
10520
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaInputDropdownDefaultTemplateComponent, isStandalone: true, selector: "app-ca-input-dropdown-default-template", inputs: { options: "options", activeItem: "activeItem", searchText: "searchText", getSuperControl: "getSuperControl", inputConfig: "inputConfig", inputHoveredItem: "inputHoveredItem" }, outputs: { onActiveItem: "onActiveItem" }, viewQueries: [{ propertyName: "dropdownOption", predicate: ["dropdownOption"], descendants: true }], ngImport: i0, template: "@for (option of options; track option.id; let i = $index) {\n <div\n #dropdownOption\n (click)=\"onActiveItemEmit(option)\"\n [innerHtml]=\"\n option?.name\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n [ngClass]=\"\n option\n | inputDropdownDefaultTemplateClass\n : options\n : activeItem\n : inputConfig\n \"\n class=\"dropdown-option\"\n [class.dropdown-option-hovered]=\"i == inputHoveredItem\"\n ></div>\n}\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "pipe", type:
10519
10521
  // Pipe
10520
10522
  HighlightSearchPipe, name: "caHighlight" }, { kind: "pipe", type: InputDropdownDefaultTemplateClassPipe, name: "inputDropdownDefaultTemplateClass" }] }); }
10521
10523
  }
@@ -10527,7 +10529,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
10527
10529
  // Pipe
10528
10530
  HighlightSearchPipe,
10529
10531
  InputDropdownDefaultTemplateClassPipe,
10530
- ], template: "@for (option of options; track option.id; let i = $index) {\n <div\n #dropdownOption\n (click)=\"onActiveItemEmit(option)\"\n [innerHtml]=\"\n option?.name\n | caHighlight\n : [\n {\n index: 45632,\n text: getSuperControl?.value,\n },\n ]\n \"\n [ngClass]=\"\n option\n | inputDropdownDefaultTemplateClass\n : options\n : activeItem\n : inputConfig\n \"\n class=\"dropdown-option\"\n [class.dropdown-option-hovered]=\"i == inputHoveredItem\"\n ></div>\n}\n" }]
10532
+ ], template: "@for (option of options; track option.id; let i = $index) {\n <div\n #dropdownOption\n (click)=\"onActiveItemEmit(option)\"\n [innerHtml]=\"\n option?.name\n | caHighlight\n : [\n {\n index: 45632,\n text: searchText,\n },\n ]\n \"\n [ngClass]=\"\n option\n | inputDropdownDefaultTemplateClass\n : options\n : activeItem\n : inputConfig\n \"\n class=\"dropdown-option\"\n [class.dropdown-option-hovered]=\"i == inputHoveredItem\"\n ></div>\n}\n" }]
10531
10533
  }], ctorParameters: () => [], propDecorators: { dropdownOption: [{
10532
10534
  type: ViewChildren,
10533
10535
  args: ['dropdownOption']
@@ -10535,6 +10537,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
10535
10537
  type: Input
10536
10538
  }], activeItem: [{
10537
10539
  type: Input
10540
+ }], searchText: [{
10541
+ type: Input
10538
10542
  }], getSuperControl: [{
10539
10543
  type: Input
10540
10544
  }], inputConfig: [{
@@ -11259,18 +11263,19 @@ function InputHelperMixin(Base) {
11259
11263
  };
11260
11264
  }
11261
11265
 
11262
- class InputTestComponent extends InputCommandMixin(InputHelperMixin(class {
11266
+ class InputBase {
11263
11267
  constructor() {
11264
- this.onTouched = () => { };
11265
11268
  this.isVisibleCommands = false;
11266
11269
  this.isFocusInput = false;
11267
11270
  this.isEditInput = false;
11268
11271
  this.isDropdownToggler = false;
11269
11272
  this.isTouchedInput = false;
11273
+ this.onTouched = () => { };
11270
11274
  }
11271
11275
  onChange(_) { }
11272
11276
  handleChangeInputAndUpdateControl(_) { }
11273
- })) {
11277
+ }
11278
+ class InputTestComponent extends InputCommandMixin(InputHelperMixin(InputBase)) {
11274
11279
  set inputConfig(config) {
11275
11280
  this._inputConfig = config;
11276
11281
  }
@@ -11320,6 +11325,9 @@ class InputTestComponent extends InputCommandMixin(InputHelperMixin(class {
11320
11325
  registerOnChange(fn) {
11321
11326
  this.onChange = fn;
11322
11327
  }
11328
+ registerOnTouched(fn) {
11329
+ this.onTouched = fn;
11330
+ }
11323
11331
  writeValue(obj) {
11324
11332
  const value = this.transformValue(this._inputConfig, obj); // ✅ Apply mask
11325
11333
  this.inputValue = value;
@@ -11329,9 +11337,6 @@ class InputTestComponent extends InputCommandMixin(InputHelperMixin(class {
11329
11337
  this.inputElement.nativeElement.value = value;
11330
11338
  this.chdet.detectChanges();
11331
11339
  }
11332
- registerOnTouched(fn) {
11333
- this.onTouched = fn;
11334
- }
11335
11340
  handleInput(event) {
11336
11341
  const value = event.target.value;
11337
11342
  this.onChange(value); // Notify Angular form about the change
@@ -11392,7 +11397,7 @@ class InputTestComponent extends InputCommandMixin(InputHelperMixin(class {
11392
11397
  });
11393
11398
  }
11394
11399
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: InputTestComponent, deps: [{ token: i1$1.NgControl, optional: true, self: true }, { token: i0.ChangeDetectorRef }, { token: i2$1.NgxMaskService }, { token: ThousandSeparatorPipe }], target: i0.ɵɵFactoryTarget.Component }); }
11395
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: InputTestComponent, isStandalone: true, selector: "ca-input-test", inputs: { selectedDropdownLabelColor: "selectedDropdownLabelColor", template: "template", incorrectValue: "incorrectValue", inputConfig: "inputConfig" }, outputs: { handleToggleDropdownOptions: "handleToggleDropdownOptions", incorrectInput: "incorrectEvent", blurInput: "blurInput", focusInputEvent: "focusInput", changeInput: "change", commandEvent: "commandEvent", clearInputEvent: "clear", showHideDropdownEvent: "showHideDropdown", dropDownKeyNavigationEvent: "dropDownKeyNavigation" }, viewQueries: [{ propertyName: "inputElement", first: true, predicate: ["input"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<div\n class=\"input-custom-group {{ _inputConfig.customClass }}\"\n [ngClass]=\"\n control\n | inputContainerClass\n : isFocusInput\n : control?.touched!\n : _inputConfig\n : control?.value\n \"\n ngbTooltip\n [mainCaTooltip]=\"control?.errors | inputError: _inputConfig.name\"\n [tooltipBackground]=\"'#DF3C3C'\"\n [disableTooltip]=\"!_inputConfig.requiredLabel || !!control?.valid\"\n position=\"bottom\"\n triggers=\"hover\"\n>\n <!-- Input Commands -->\n @if (_inputConfig.commands?.active && isVisibleCommands) {\n <app-ca-input-commands\n [inputConfig]=\"_inputConfig\"\n [isFocusInput]=\"isFocusInput\"\n [isVisibleCommands]=\"isVisibleCommands\"\n (onCommandsClick)=\"onCommands($event)\"\n >\n </app-ca-input-commands>\n }\n <!-- Input Valid Check -->\n @if (\n control | showValidCheck: isFocusInput : _inputConfig : control?.value\n ) {\n <svg-icon\n class=\"input-required-check {{ _inputConfig.customClass }}\"\n [src]=\"inputSvgRoutes.confirmSvg\"\n ></svg-icon>\n }\n <!-- Input Password Caps Lock And Eye -->\n @if (_inputConfig.type === 'password') {\n <app-ca-input-password\n [inputConfig]=\"_inputConfig\"\n [getSuperControl]=\"control\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [isCapsLockOn]=\"isCapsLockOn\"\n [isTogglePassword]=\"isTogglePassword\"\n (onTogglePasswordClick)=\"onTogglePassword($event)\"\n >\n </app-ca-input-password>\n }\n <!-- Input Clear -->\n @if (_inputConfig | showClear) {\n <app-ca-input-clear\n [inputConfig]=\"_inputConfig\"\n [getSuperControl]=\"control\"\n [isFocusInput]=\"isFocusInput\"\n [incorrectValue]=\"incorrectValue\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [template]=\"template\"\n (clearInputClick)=\"clearInput($event)\"\n >\n </app-ca-input-clear>\n }\n\n <!-- Input Dropdown Arrow -->\n @if (_inputConfig | showDropdownArrow) {\n <svg-icon\n class=\"input-dropdown-arrow {{ _inputConfig.customClass }}\"\n [ngClass]=\"\n control\n | inputDropdownArrowClass\n : isFocusInput\n : _inputConfig\n : isTouchedInput\n : control?.value\n \"\n [src]=\"inputSvgRoutes.inputDropdownArrowSvg\"\n (click)=\"toggleDropdownOptions()\"\n ></svg-icon>\n }\n\n <!-- Input Placeholder Icon -->\n @if (_inputConfig.placeholderIcon) {\n <app-ca-input-placeholder-icon\n [inputConfig]=\"_inputConfig\"\n [getSuperControl]=\"control\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"control?.touched!\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [isEditInput]=\"isEditInput\"\n (onPlaceholderIconEventEmitter)=\"onPlaceholderIconEvent($event)\"\n (onPopoverShownEmitter)=\"onPopoverShown()\"\n (onPopoverHiddenEmitter)=\"onPopoverHidden()\"\n >\n </app-ca-input-placeholder-icon>\n }\n\n <!-- Input Placeholder Text -->\n @if (\n _inputConfig\n | showPlaceholderText: control : isVisibleCommands : control?.value\n ) {\n <span\n class=\"ca-placeholder-text {{ _inputConfig.customClass }}\"\n [ngClass]=\"\n isFocusInput\n | inputPlaceholderTextClass\n : control?.touched!\n : control\n : _inputConfig\n : isVisibleCommands\n : control?.value\n \"\n [style.left]=\"\n _inputConfig.placeholderText?.toLowerCase() ===\n inputStringEnum.PERSONS ||\n _inputConfig.placeholderText?.toLowerCase() ===\n inputStringEnum.VEHICLES\n ? 30 + (control?.value?.toString()?.length + 1) * 9 + 'px'\n : isFocusInput &&\n _inputConfig.placeholderText?.toLowerCase() !==\n inputCommandsType.MONTHS\n ? 'auto'\n : (control?.value?.toString()?.length + 1) * 8 + 'px'\n \"\n [style.right]=\"\n isFocusInput &&\n _inputConfig.placeholderText?.toLowerCase() !==\n inputCommandsType.MONTHS\n ? '28px'\n : 'auto'\n \"\n >\n {{ _inputConfig.placeholderText }}\n </span>\n }\n\n <!-- Input Label Counter -->\n @if (\n selectedDropdownLabelColor &&\n control?.value &&\n !isFocusInput &&\n !_inputConfig.isDisabled &&\n _inputConfig.showCount\n ) {\n <p\n [style.top]=\"'4px'\"\n [style.left]=\"\n (control?.value?.toString()?.length + 6.5) * 8 + 'px'\n \"\n class=\"input-label-counter\"\n >\n {{ selectedDropdownLabelColor.count }}\n </p>\n }\n\n <!-- Special Dropdown Selected SVG with or Without Text -->\n @if (\n _inputConfig?.dropdownImageInput?.svg &&\n !_inputConfig?.hideAllItemsInInputDropdown &&\n !(!_inputConfig.dropdownImageInput?.withText && isFocusInput) &&\n !(\n ['truck', 'trailer'].includes(\n _inputConfig.dropdownImageInput?.template!\n ) &&\n isFocusInput &&\n _inputConfig.dropdownImageInput?.remove \n ) &&\n !_inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl\n ) {\n <svg-icon\n [src]=\"_inputConfig.dropdownImageInput?.url!\"\n class=\"dropdown-selected-image dddd {{\n _inputConfig.dropdownImageInput?.class\n }}\"\n [ngClass]=\"{\n 'unset-color':\n isFocusInput && _inputConfig.dropdownImageInput?.class,\n }\"\n [svgStyle]=\"{\n fill:\n _inputConfig.dropdownImageInput?.color && !isFocusInput\n ? _inputConfig.dropdownImageInput?.color\n : '#ffffff',\n }\"\n >\n </svg-icon>\n }\n\n <!-- Input Label -->\n @if (!_inputConfig.multiSelectDropdownActive) {\n <label\n [for]=\"_inputConfig.name\"\n class=\"input-label {{ _inputConfig.customClass }} {{\n _inputConfig.multipleLabel?.customClass\n }}\"\n [ngClass]=\"\n control?.value\n | labelClass\n : isFocusInput\n : _inputConfig\n : isTouchedInput\n : control?.invalid\n : control?.touched\n \"\n >\n @if (_inputConfig.label) {\n <span>{{ _inputConfig.label }} </span>\n }\n\n @if (_inputConfig.multipleLabel?.labels?.length) {\n <div\n [class]=\"_inputConfig.multipleLabel?.customClass!\"\n [ngClass]=\"{\n 'multiple-labels-position-on-focus':\n isFocusInput ||\n _inputConfig.multipleInputValues?.options?.length,\n required:\n _inputConfig.isRequired && !_inputConfig.isDisabled,\n }\"\n >\n @for (\n label of _inputConfig.multipleLabel?.labels;\n track $index\n ) {\n <span>\n {{ label }}\n </span>\n }\n </div>\n }\n </label>\n }\n\n <input\n #input\n (input)=\"handleInput($event)\"\n [restrictInput]=\"inputConfig\"\n priceFormat\n [priceSeparator]=\"\n inputConfig.priceSeparator || inputConfig.thousandSeparator\n \"\n (focus)=\"handleInputFocus($event)\"\n (blur)=\"handleInputBlur($event)\"\n (keydown)=\"handleKeyDown($event)\"\n [readOnly]=\"_inputConfig.readOnly\"\n [type]=\"_inputConfig.type | inputType: isTogglePassword\"\n class=\"input-control\n {{ _inputConfig.textTransform }}\n {{ _inputConfig.textAlign }}\n {{ _inputConfig.customClass }}\n \"\n [appMaxValue]=\"inputConfig.max\"\n appCapsLock\n (capsLockStatus)=\"handleCapsLock($event)\"\n commandVisible\n (commandVisible)=\"handleCommandVisible($event)\"\n [mask]=\"_inputConfig.mask\"\n [ngClass]=\"\n control\n | inputClass\n : isFocusInput\n : control?.touched!\n : _inputConfig\n : input\n : isVisibleCommands\n : control?.value\n : control?.invalid\n : control?.touched\n : isDropdownToggler\n : isEditInput\n : template\n \"\n />\n\n <!-- Placeholder Icon on Right Side -->\n @if (_inputConfig.placeholderIconRightSide) {\n <svg-icon\n class=\"placeholder-icon-right-side {{\n _inputConfig.placeholderIconColor\n }}\"\n [ngClass]=\"\n isFocusInput\n | inputPlaceholderIconRightClass\n : control\n : _inputConfig\n : isTouchedInput\n : control?.value\n \"\n [src]=\"\n _inputConfig.placeholderIconRightSide.toLowerCase()\n | caSvg: 'common'\n \"\n ></svg-icon>\n }\n\n <!-- Input Error Message -->\n @if (\n !(!control?.value && isFocusInput) &&\n (isTouchedInput || control?.touched || control?.value) &&\n control?.invalid &&\n !_inputConfig.isInvalidSearchInDropdown &&\n !_inputConfig.isDisabled\n ) {\n @if (\n !(_inputConfig.hideErrorMessage || _inputConfig.errorInsideInput)\n ) {\n <span class=\"input-error {{ _inputConfig.customClass }}\">\n {{ control?.errors | inputError: _inputConfig.name }}\n </span>\n }\n\n <!-- Error Message Inside Input -->\n @if (_inputConfig.errorInsideInput) {\n <span class=\"error-inside-input {{ _inputConfig.customClass }}\">\n {{ control?.errors | inputError: _inputConfig.name }}\n </span>\n }\n }\n\n @if (_inputConfig.fixedPlacholder && input.value) {\n <span class=\"input-fixed-placehoder-label\">\n {{ _inputConfig.fixedPlacholder }}\n </span>\n }\n</div>\n", styles: ["@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}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white-2::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.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:
11400
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: InputTestComponent, isStandalone: true, selector: "ca-input-test", inputs: { selectedDropdownLabelColor: "selectedDropdownLabelColor", template: "template", incorrectValue: "incorrectValue", inputConfig: "inputConfig", activeItem: "activeItem" }, outputs: { handleToggleDropdownOptions: "handleToggleDropdownOptions", incorrectInput: "incorrectEvent", blurInput: "blurInput", focusInputEvent: "focusInput", changeInput: "change", commandEvent: "commandEvent", clearInputEvent: "clear", showHideDropdownEvent: "showHideDropdown", dropDownKeyNavigationEvent: "dropDownKeyNavigation" }, viewQueries: [{ propertyName: "inputElement", first: true, predicate: ["input"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<div\n class=\"input-custom-group {{ _inputConfig.customClass }}\"\n [ngClass]=\"\n control\n | inputContainerClass\n : isFocusInput\n : control?.touched!\n : _inputConfig\n : control?.value\n \"\n ngbTooltip\n [mainCaTooltip]=\"control?.errors | inputError: _inputConfig.name\"\n [tooltipBackground]=\"'#DF3C3C'\"\n [disableTooltip]=\"!_inputConfig.requiredLabel || !!control?.valid\"\n position=\"bottom\"\n triggers=\"hover\"\n>\n <!-- Input Commands -->\n @if (_inputConfig.commands?.active && isVisibleCommands) {\n <app-ca-input-commands\n [inputConfig]=\"_inputConfig\"\n [isFocusInput]=\"isFocusInput\"\n [isVisibleCommands]=\"isVisibleCommands\"\n (onCommandsClick)=\"onCommands($event)\"\n >\n </app-ca-input-commands>\n }\n <!-- Input Valid Check -->\n @if (\n control | showValidCheck: isFocusInput : _inputConfig : control?.value\n ) {\n <svg-icon\n class=\"input-required-check {{ _inputConfig.customClass }}\"\n [src]=\"inputSvgRoutes.confirmSvg\"\n ></svg-icon>\n }\n <!-- Input Password Caps Lock And Eye -->\n @if (_inputConfig.type === 'password') {\n <app-ca-input-password\n [inputConfig]=\"_inputConfig\"\n [getSuperControl]=\"control\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [isCapsLockOn]=\"isCapsLockOn\"\n [isTogglePassword]=\"isTogglePassword\"\n (onTogglePasswordClick)=\"onTogglePassword($event)\"\n >\n </app-ca-input-password>\n }\n <!-- Input Clear -->\n @if (_inputConfig | showClear) {\n <app-ca-input-clear\n [inputConfig]=\"_inputConfig\"\n [getSuperControl]=\"control\"\n [isFocusInput]=\"isFocusInput\"\n [incorrectValue]=\"incorrectValue\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [template]=\"template\"\n (clearInputClick)=\"clearInput($event)\"\n >\n </app-ca-input-clear>\n }\n\n <!-- Input Dropdown Arrow -->\n @if (_inputConfig | showDropdownArrow) {\n <svg-icon\n class=\"input-dropdown-arrow {{ _inputConfig.customClass }}\"\n [ngClass]=\"\n control\n | inputDropdownArrowClass\n : isFocusInput\n : _inputConfig\n : isTouchedInput\n : control?.value\n \"\n [src]=\"inputSvgRoutes.inputDropdownArrowSvg\"\n (click)=\"toggleDropdownOptions()\"\n ></svg-icon>\n }\n\n <!-- Input Placeholder Icon -->\n @if (_inputConfig.placeholderIcon) {\n <app-ca-input-placeholder-icon\n [inputConfig]=\"_inputConfig\"\n [getSuperControl]=\"control\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"control?.touched!\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [isEditInput]=\"isEditInput\"\n (onPlaceholderIconEventEmitter)=\"onPlaceholderIconEvent($event)\"\n (onPopoverShownEmitter)=\"onPopoverShown()\"\n (onPopoverHiddenEmitter)=\"onPopoverHidden()\"\n >\n </app-ca-input-placeholder-icon>\n }\n\n <!-- Input Placeholder Text -->\n @if (\n _inputConfig\n | showPlaceholderText: control : isVisibleCommands : control?.value\n ) {\n <span\n class=\"ca-placeholder-text {{ _inputConfig.customClass }}\"\n [ngClass]=\"\n isFocusInput\n | inputPlaceholderTextClass\n : control?.touched!\n : control\n : _inputConfig\n : isVisibleCommands\n : control?.value\n \"\n [style.left]=\"\n _inputConfig.placeholderText?.toLowerCase() ===\n inputStringEnum.PERSONS ||\n _inputConfig.placeholderText?.toLowerCase() ===\n inputStringEnum.VEHICLES\n ? 30 + (control?.value?.toString()?.length + 1) * 9 + 'px'\n : isFocusInput &&\n _inputConfig.placeholderText?.toLowerCase() !==\n inputCommandsType.MONTHS\n ? 'auto'\n : (control?.value?.toString()?.length + 1) * 8 + 'px'\n \"\n [style.right]=\"\n isFocusInput &&\n _inputConfig.placeholderText?.toLowerCase() !==\n inputCommandsType.MONTHS\n ? '28px'\n : 'auto'\n \"\n >\n {{ _inputConfig.placeholderText }}\n </span>\n }\n\n <!-- Input Label Counter -->\n @if (\n selectedDropdownLabelColor &&\n control?.value &&\n !isFocusInput &&\n !_inputConfig.isDisabled &&\n _inputConfig.showCount\n ) {\n <p\n [style.top]=\"'4px'\"\n [style.left]=\"(control?.value?.toString()?.length + 6.5) * 8 + 'px'\"\n class=\"input-label-counter\"\n >\n {{ selectedDropdownLabelColor.count }}\n </p>\n }\n\n <!-- Special Dropdown Selected SVG with or Without Text -->\n @if (\n _inputConfig?.dropdownImageInput?.iconsPath &&\n activeItem &&\n !_inputConfig?.hideAllItemsInInputDropdown &&\n !(!_inputConfig.dropdownImageInput?.withText && isFocusInput) &&\n !(\n ['truck', 'trailer'].includes(\n _inputConfig.dropdownImageInput?.template!\n ) &&\n isFocusInput &&\n _inputConfig.dropdownImageInput?.remove\n ) &&\n !_inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl\n ) {\n <svg-icon\n [src]=\"_inputConfig.dropdownImageInput?.iconsPath!\"\n class=\"dropdown-selected-image {{\n _inputConfig.dropdownImageInput?.class\n }}\"\n [ngClass]=\"{\n 'unset-color':\n isFocusInput && _inputConfig.dropdownImageInput?.class,\n }\"\n [svgStyle]=\"{\n fill:\n _inputConfig.dropdownImageInput?.color && !isFocusInput\n ? _inputConfig.dropdownImageInput?.color\n : '#ffffff',\n }\"\n >\n </svg-icon>\n }\n\n <!-- Input Label -->\n @if (!_inputConfig.multiSelectDropdownActive) {\n <label\n [for]=\"_inputConfig.name\"\n class=\"input-label {{ _inputConfig.customClass }} {{\n _inputConfig.multipleLabel?.customClass\n }}\"\n [ngClass]=\"\n control?.value\n | labelClass\n : isFocusInput\n : _inputConfig\n : isTouchedInput\n : control?.invalid\n : control?.touched\n \"\n >\n @if (_inputConfig.label) {\n <span>{{ _inputConfig.label }} </span>\n }\n\n @if (_inputConfig.multipleLabel?.labels?.length) {\n <div\n [class]=\"_inputConfig.multipleLabel?.customClass!\"\n [ngClass]=\"{\n 'multiple-labels-position-on-focus':\n isFocusInput ||\n _inputConfig.multipleInputValues?.options?.length,\n required:\n _inputConfig.isRequired && !_inputConfig.isDisabled,\n }\"\n >\n @for (\n label of _inputConfig.multipleLabel?.labels;\n track $index\n ) {\n <span>\n {{ label }}\n </span>\n }\n </div>\n }\n </label>\n }\n\n <input\n #input\n (input)=\"handleInput($event)\"\n [restrictInput]=\"inputConfig\"\n priceFormat\n [priceSeparator]=\"\n inputConfig.priceSeparator || inputConfig.thousandSeparator\n \"\n (focus)=\"handleInputFocus($event)\"\n (blur)=\"handleInputBlur($event)\"\n (keydown)=\"handleKeyDown($event)\"\n [readOnly]=\"_inputConfig.readOnly\"\n [type]=\"_inputConfig.type | inputType: isTogglePassword\"\n class=\"input-control\n {{ _inputConfig.textTransform }}\n {{ _inputConfig.textAlign }}\n {{ _inputConfig.customClass }}\n \"\n [appMaxValue]=\"inputConfig.max\"\n appCapsLock\n (capsLockStatus)=\"handleCapsLock($event)\"\n commandVisible\n (commandVisible)=\"handleCommandVisible($event)\"\n [placeholder]=\"\n (_inputConfig.placeholderInsteadOfLabel &&\n _inputConfig.placeholder &&\n isFocusInput\n ? _inputConfig.placeholder\n : '') ||\n (_inputConfig.placeholder && isFocusInput\n ? _inputConfig.placeholder\n : '')\n \"\n [mask]=\"_inputConfig.mask\"\n [ngClass]=\"\n control\n | inputClass\n : isFocusInput\n : control?.touched!\n : _inputConfig\n : input\n : isVisibleCommands\n : control?.value\n : control?.invalid\n : control?.touched\n : isDropdownToggler\n : isEditInput\n : template\n \"\n />\n\n <!-- Placeholder Icon on Right Side -->\n @if (_inputConfig.placeholderIconRightSide) {\n <svg-icon\n class=\"placeholder-icon-right-side {{\n _inputConfig.placeholderIconColor\n }}\"\n [ngClass]=\"\n isFocusInput\n | inputPlaceholderIconRightClass\n : control\n : _inputConfig\n : isTouchedInput\n : control?.value\n \"\n [src]=\"\n _inputConfig.placeholderIconRightSide.toLowerCase()\n | caSvg: 'common'\n \"\n ></svg-icon>\n }\n\n <!-- Input Error Message -->\n @if (\n !(!control?.value && isFocusInput) &&\n (isTouchedInput || control?.touched || control?.value) &&\n control?.invalid &&\n !_inputConfig.isInvalidSearchInDropdown &&\n !_inputConfig.isDisabled\n ) {\n @if (\n !(_inputConfig.hideErrorMessage || _inputConfig.errorInsideInput)\n ) {\n <span class=\"input-error {{ _inputConfig.customClass }}\">\n {{ control?.errors | inputError: _inputConfig.name }}\n </span>\n }\n\n <!-- Error Message Inside Input -->\n @if (_inputConfig.errorInsideInput) {\n <span class=\"error-inside-input {{ _inputConfig.customClass }}\">\n {{ control?.errors | inputError: _inputConfig.name }}\n </span>\n }\n }\n\n @if (_inputConfig.fixedPlacholder && input.value) {\n <span class=\"input-fixed-placehoder-label\">\n {{ _inputConfig.fixedPlacholder }}\n </span>\n }\n</div>\n", styles: ["@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}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white-2::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.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:
11396
11401
  // Modules
11397
11402
  CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { 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: AngularSvgIconModule }, { kind: "component", type: i2.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "ngmodule", type: NgxMaskModule }, { kind: "directive", type: i2$1.NgxMaskDirective, selector: "input[mask], textarea[mask]", inputs: ["mask", "specialCharacters", "patterns", "prefix", "suffix", "thousandSeparator", "decimalMarker", "dropSpecialCharacters", "hiddenInput", "showMaskTyped", "placeHolderCharacter", "shownMaskExpression", "showTemplate", "clearIfNotMatch", "validation", "separatorLimit", "allowNegativeNumbers", "leadZeroDateTime", "leadZero", "triggerOnMaskChange", "apm", "inputTransformFn", "outputTransformFn", "keepCharacterPositions"], outputs: ["maskFilled"], exportAs: ["mask", "ngxMask"] }, { kind: "pipe", type:
11398
11403
  // Pipes
@@ -11400,7 +11405,7 @@ class InputTestComponent extends InputCommandMixin(InputHelperMixin(class {
11400
11405
  // Directives
11401
11406
  RestrictInputDirective, selector: "[restrictInput]", inputs: ["restrictInput"] }, { kind: "directive", type: PriceFormatDirective, selector: "[priceFormat]", inputs: ["priceSeparator"] }, { kind: "pipe", type: ShowClearPipe, name: "showClear" }, { kind: "directive", type: CapsLockDirective, selector: "[appCapsLock]", outputs: ["capsLockStatus"] }, { kind: "directive", type: CommandVisibleDirective, selector: "[commandVisible]", inputs: ["restrictInput"], outputs: ["commandVisible"] }, { kind: "component", type:
11402
11407
  // Components
11403
- CaInputClearComponent, selector: "app-ca-input-clear", inputs: ["inputConfig", "getSuperControl", "isFocusInput", "incorrectValue", "selectedDropdownLabelColor", "template"], outputs: ["clearInputClick"] }, { kind: "component", type: CaAppTooltipV2Component, selector: "mainCaTooltip, [mainCaTooltip]", inputs: ["mainCaTooltip", "position", "openTooltipDelay", "tooltipBackground", "tooltipColor", "tooltipTextAlign", "tooltipMarginTop", "disableTooltip"] }, { kind: "component", type: CaInputPlaceholderIconComponent, selector: "app-ca-input-placeholder-icon", inputs: ["inputConfig", "getSuperControl", "isFocusInput", "isTouchedInput", "selectedDropdownLabelColor", "isEditInput", "dateTimePopover"], outputs: ["onPopoverShownEmitter", "onPopoverHiddenEmitter", "onPlaceholderIconEventEmitter"] }, { kind: "component", type: CaInputPasswordComponent, selector: "app-ca-input-password", inputs: ["inputConfig", "getSuperControl", "isFocusInput", "isTouchedInput", "isCapsLockOn", "isTogglePassword"], outputs: ["onTogglePasswordClick"] }, { kind: "component", type: CaInputCommandsComponent, selector: "app-ca-input-commands", inputs: ["inputConfig", "isFocusInput", "isVisibleCommands"], outputs: ["onCommandsClick"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
11408
+ CaInputClearComponent, selector: "app-ca-input-clear", inputs: ["inputConfig", "getSuperControl", "isFocusInput", "incorrectValue", "selectedDropdownLabelColor", "template"], outputs: ["clearInputClick"] }, { kind: "component", type: CaAppTooltipV2Component, selector: "mainCaTooltip, [mainCaTooltip]", inputs: ["mainCaTooltip", "position", "openTooltipDelay", "tooltipBackground", "tooltipColor", "tooltipTextAlign", "tooltipMarginTop", "disableTooltip"] }, { kind: "component", type: CaInputPlaceholderIconComponent, selector: "app-ca-input-placeholder-icon", inputs: ["inputConfig", "getSuperControl", "isFocusInput", "isTouchedInput", "selectedDropdownLabelColor", "isEditInput", "dateTimePopover"], outputs: ["onPopoverShownEmitter", "onPopoverHiddenEmitter", "onPlaceholderIconEventEmitter"] }, { kind: "component", type: CaInputPasswordComponent, selector: "app-ca-input-password", inputs: ["inputConfig", "getSuperControl", "isFocusInput", "isTouchedInput", "isCapsLockOn", "isTogglePassword"], outputs: ["onTogglePasswordClick"] }, { kind: "component", type: CaInputCommandsComponent, selector: "app-ca-input-commands", inputs: ["inputConfig", "isFocusInput", "isVisibleCommands"], outputs: ["onCommandsClick"] }], encapsulation: i0.ViewEncapsulation.None }); }
11404
11409
  }
11405
11410
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: InputTestComponent, decorators: [{
11406
11411
  type: Component,
@@ -11437,7 +11442,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
11437
11442
  CaInputPlaceholderIconComponent,
11438
11443
  CaInputPasswordComponent,
11439
11444
  CaInputCommandsComponent,
11440
- ], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div\n class=\"input-custom-group {{ _inputConfig.customClass }}\"\n [ngClass]=\"\n control\n | inputContainerClass\n : isFocusInput\n : control?.touched!\n : _inputConfig\n : control?.value\n \"\n ngbTooltip\n [mainCaTooltip]=\"control?.errors | inputError: _inputConfig.name\"\n [tooltipBackground]=\"'#DF3C3C'\"\n [disableTooltip]=\"!_inputConfig.requiredLabel || !!control?.valid\"\n position=\"bottom\"\n triggers=\"hover\"\n>\n <!-- Input Commands -->\n @if (_inputConfig.commands?.active && isVisibleCommands) {\n <app-ca-input-commands\n [inputConfig]=\"_inputConfig\"\n [isFocusInput]=\"isFocusInput\"\n [isVisibleCommands]=\"isVisibleCommands\"\n (onCommandsClick)=\"onCommands($event)\"\n >\n </app-ca-input-commands>\n }\n <!-- Input Valid Check -->\n @if (\n control | showValidCheck: isFocusInput : _inputConfig : control?.value\n ) {\n <svg-icon\n class=\"input-required-check {{ _inputConfig.customClass }}\"\n [src]=\"inputSvgRoutes.confirmSvg\"\n ></svg-icon>\n }\n <!-- Input Password Caps Lock And Eye -->\n @if (_inputConfig.type === 'password') {\n <app-ca-input-password\n [inputConfig]=\"_inputConfig\"\n [getSuperControl]=\"control\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [isCapsLockOn]=\"isCapsLockOn\"\n [isTogglePassword]=\"isTogglePassword\"\n (onTogglePasswordClick)=\"onTogglePassword($event)\"\n >\n </app-ca-input-password>\n }\n <!-- Input Clear -->\n @if (_inputConfig | showClear) {\n <app-ca-input-clear\n [inputConfig]=\"_inputConfig\"\n [getSuperControl]=\"control\"\n [isFocusInput]=\"isFocusInput\"\n [incorrectValue]=\"incorrectValue\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [template]=\"template\"\n (clearInputClick)=\"clearInput($event)\"\n >\n </app-ca-input-clear>\n }\n\n <!-- Input Dropdown Arrow -->\n @if (_inputConfig | showDropdownArrow) {\n <svg-icon\n class=\"input-dropdown-arrow {{ _inputConfig.customClass }}\"\n [ngClass]=\"\n control\n | inputDropdownArrowClass\n : isFocusInput\n : _inputConfig\n : isTouchedInput\n : control?.value\n \"\n [src]=\"inputSvgRoutes.inputDropdownArrowSvg\"\n (click)=\"toggleDropdownOptions()\"\n ></svg-icon>\n }\n\n <!-- Input Placeholder Icon -->\n @if (_inputConfig.placeholderIcon) {\n <app-ca-input-placeholder-icon\n [inputConfig]=\"_inputConfig\"\n [getSuperControl]=\"control\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"control?.touched!\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [isEditInput]=\"isEditInput\"\n (onPlaceholderIconEventEmitter)=\"onPlaceholderIconEvent($event)\"\n (onPopoverShownEmitter)=\"onPopoverShown()\"\n (onPopoverHiddenEmitter)=\"onPopoverHidden()\"\n >\n </app-ca-input-placeholder-icon>\n }\n\n <!-- Input Placeholder Text -->\n @if (\n _inputConfig\n | showPlaceholderText: control : isVisibleCommands : control?.value\n ) {\n <span\n class=\"ca-placeholder-text {{ _inputConfig.customClass }}\"\n [ngClass]=\"\n isFocusInput\n | inputPlaceholderTextClass\n : control?.touched!\n : control\n : _inputConfig\n : isVisibleCommands\n : control?.value\n \"\n [style.left]=\"\n _inputConfig.placeholderText?.toLowerCase() ===\n inputStringEnum.PERSONS ||\n _inputConfig.placeholderText?.toLowerCase() ===\n inputStringEnum.VEHICLES\n ? 30 + (control?.value?.toString()?.length + 1) * 9 + 'px'\n : isFocusInput &&\n _inputConfig.placeholderText?.toLowerCase() !==\n inputCommandsType.MONTHS\n ? 'auto'\n : (control?.value?.toString()?.length + 1) * 8 + 'px'\n \"\n [style.right]=\"\n isFocusInput &&\n _inputConfig.placeholderText?.toLowerCase() !==\n inputCommandsType.MONTHS\n ? '28px'\n : 'auto'\n \"\n >\n {{ _inputConfig.placeholderText }}\n </span>\n }\n\n <!-- Input Label Counter -->\n @if (\n selectedDropdownLabelColor &&\n control?.value &&\n !isFocusInput &&\n !_inputConfig.isDisabled &&\n _inputConfig.showCount\n ) {\n <p\n [style.top]=\"'4px'\"\n [style.left]=\"\n (control?.value?.toString()?.length + 6.5) * 8 + 'px'\n \"\n class=\"input-label-counter\"\n >\n {{ selectedDropdownLabelColor.count }}\n </p>\n }\n\n <!-- Special Dropdown Selected SVG with or Without Text -->\n @if (\n _inputConfig?.dropdownImageInput?.svg &&\n !_inputConfig?.hideAllItemsInInputDropdown &&\n !(!_inputConfig.dropdownImageInput?.withText && isFocusInput) &&\n !(\n ['truck', 'trailer'].includes(\n _inputConfig.dropdownImageInput?.template!\n ) &&\n isFocusInput &&\n _inputConfig.dropdownImageInput?.remove \n ) &&\n !_inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl\n ) {\n <svg-icon\n [src]=\"_inputConfig.dropdownImageInput?.url!\"\n class=\"dropdown-selected-image dddd {{\n _inputConfig.dropdownImageInput?.class\n }}\"\n [ngClass]=\"{\n 'unset-color':\n isFocusInput && _inputConfig.dropdownImageInput?.class,\n }\"\n [svgStyle]=\"{\n fill:\n _inputConfig.dropdownImageInput?.color && !isFocusInput\n ? _inputConfig.dropdownImageInput?.color\n : '#ffffff',\n }\"\n >\n </svg-icon>\n }\n\n <!-- Input Label -->\n @if (!_inputConfig.multiSelectDropdownActive) {\n <label\n [for]=\"_inputConfig.name\"\n class=\"input-label {{ _inputConfig.customClass }} {{\n _inputConfig.multipleLabel?.customClass\n }}\"\n [ngClass]=\"\n control?.value\n | labelClass\n : isFocusInput\n : _inputConfig\n : isTouchedInput\n : control?.invalid\n : control?.touched\n \"\n >\n @if (_inputConfig.label) {\n <span>{{ _inputConfig.label }} </span>\n }\n\n @if (_inputConfig.multipleLabel?.labels?.length) {\n <div\n [class]=\"_inputConfig.multipleLabel?.customClass!\"\n [ngClass]=\"{\n 'multiple-labels-position-on-focus':\n isFocusInput ||\n _inputConfig.multipleInputValues?.options?.length,\n required:\n _inputConfig.isRequired && !_inputConfig.isDisabled,\n }\"\n >\n @for (\n label of _inputConfig.multipleLabel?.labels;\n track $index\n ) {\n <span>\n {{ label }}\n </span>\n }\n </div>\n }\n </label>\n }\n\n <input\n #input\n (input)=\"handleInput($event)\"\n [restrictInput]=\"inputConfig\"\n priceFormat\n [priceSeparator]=\"\n inputConfig.priceSeparator || inputConfig.thousandSeparator\n \"\n (focus)=\"handleInputFocus($event)\"\n (blur)=\"handleInputBlur($event)\"\n (keydown)=\"handleKeyDown($event)\"\n [readOnly]=\"_inputConfig.readOnly\"\n [type]=\"_inputConfig.type | inputType: isTogglePassword\"\n class=\"input-control\n {{ _inputConfig.textTransform }}\n {{ _inputConfig.textAlign }}\n {{ _inputConfig.customClass }}\n \"\n [appMaxValue]=\"inputConfig.max\"\n appCapsLock\n (capsLockStatus)=\"handleCapsLock($event)\"\n commandVisible\n (commandVisible)=\"handleCommandVisible($event)\"\n [mask]=\"_inputConfig.mask\"\n [ngClass]=\"\n control\n | inputClass\n : isFocusInput\n : control?.touched!\n : _inputConfig\n : input\n : isVisibleCommands\n : control?.value\n : control?.invalid\n : control?.touched\n : isDropdownToggler\n : isEditInput\n : template\n \"\n />\n\n <!-- Placeholder Icon on Right Side -->\n @if (_inputConfig.placeholderIconRightSide) {\n <svg-icon\n class=\"placeholder-icon-right-side {{\n _inputConfig.placeholderIconColor\n }}\"\n [ngClass]=\"\n isFocusInput\n | inputPlaceholderIconRightClass\n : control\n : _inputConfig\n : isTouchedInput\n : control?.value\n \"\n [src]=\"\n _inputConfig.placeholderIconRightSide.toLowerCase()\n | caSvg: 'common'\n \"\n ></svg-icon>\n }\n\n <!-- Input Error Message -->\n @if (\n !(!control?.value && isFocusInput) &&\n (isTouchedInput || control?.touched || control?.value) &&\n control?.invalid &&\n !_inputConfig.isInvalidSearchInDropdown &&\n !_inputConfig.isDisabled\n ) {\n @if (\n !(_inputConfig.hideErrorMessage || _inputConfig.errorInsideInput)\n ) {\n <span class=\"input-error {{ _inputConfig.customClass }}\">\n {{ control?.errors | inputError: _inputConfig.name }}\n </span>\n }\n\n <!-- Error Message Inside Input -->\n @if (_inputConfig.errorInsideInput) {\n <span class=\"error-inside-input {{ _inputConfig.customClass }}\">\n {{ control?.errors | inputError: _inputConfig.name }}\n </span>\n }\n }\n\n @if (_inputConfig.fixedPlacholder && input.value) {\n <span class=\"input-fixed-placehoder-label\">\n {{ _inputConfig.fixedPlacholder }}\n </span>\n }\n</div>\n", styles: ["@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}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white-2::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.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"] }]
11445
+ ], encapsulation: ViewEncapsulation.None, template: "<div\n class=\"input-custom-group {{ _inputConfig.customClass }}\"\n [ngClass]=\"\n control\n | inputContainerClass\n : isFocusInput\n : control?.touched!\n : _inputConfig\n : control?.value\n \"\n ngbTooltip\n [mainCaTooltip]=\"control?.errors | inputError: _inputConfig.name\"\n [tooltipBackground]=\"'#DF3C3C'\"\n [disableTooltip]=\"!_inputConfig.requiredLabel || !!control?.valid\"\n position=\"bottom\"\n triggers=\"hover\"\n>\n <!-- Input Commands -->\n @if (_inputConfig.commands?.active && isVisibleCommands) {\n <app-ca-input-commands\n [inputConfig]=\"_inputConfig\"\n [isFocusInput]=\"isFocusInput\"\n [isVisibleCommands]=\"isVisibleCommands\"\n (onCommandsClick)=\"onCommands($event)\"\n >\n </app-ca-input-commands>\n }\n <!-- Input Valid Check -->\n @if (\n control | showValidCheck: isFocusInput : _inputConfig : control?.value\n ) {\n <svg-icon\n class=\"input-required-check {{ _inputConfig.customClass }}\"\n [src]=\"inputSvgRoutes.confirmSvg\"\n ></svg-icon>\n }\n <!-- Input Password Caps Lock And Eye -->\n @if (_inputConfig.type === 'password') {\n <app-ca-input-password\n [inputConfig]=\"_inputConfig\"\n [getSuperControl]=\"control\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [isCapsLockOn]=\"isCapsLockOn\"\n [isTogglePassword]=\"isTogglePassword\"\n (onTogglePasswordClick)=\"onTogglePassword($event)\"\n >\n </app-ca-input-password>\n }\n <!-- Input Clear -->\n @if (_inputConfig | showClear) {\n <app-ca-input-clear\n [inputConfig]=\"_inputConfig\"\n [getSuperControl]=\"control\"\n [isFocusInput]=\"isFocusInput\"\n [incorrectValue]=\"incorrectValue\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [template]=\"template\"\n (clearInputClick)=\"clearInput($event)\"\n >\n </app-ca-input-clear>\n }\n\n <!-- Input Dropdown Arrow -->\n @if (_inputConfig | showDropdownArrow) {\n <svg-icon\n class=\"input-dropdown-arrow {{ _inputConfig.customClass }}\"\n [ngClass]=\"\n control\n | inputDropdownArrowClass\n : isFocusInput\n : _inputConfig\n : isTouchedInput\n : control?.value\n \"\n [src]=\"inputSvgRoutes.inputDropdownArrowSvg\"\n (click)=\"toggleDropdownOptions()\"\n ></svg-icon>\n }\n\n <!-- Input Placeholder Icon -->\n @if (_inputConfig.placeholderIcon) {\n <app-ca-input-placeholder-icon\n [inputConfig]=\"_inputConfig\"\n [getSuperControl]=\"control\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"control?.touched!\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [isEditInput]=\"isEditInput\"\n (onPlaceholderIconEventEmitter)=\"onPlaceholderIconEvent($event)\"\n (onPopoverShownEmitter)=\"onPopoverShown()\"\n (onPopoverHiddenEmitter)=\"onPopoverHidden()\"\n >\n </app-ca-input-placeholder-icon>\n }\n\n <!-- Input Placeholder Text -->\n @if (\n _inputConfig\n | showPlaceholderText: control : isVisibleCommands : control?.value\n ) {\n <span\n class=\"ca-placeholder-text {{ _inputConfig.customClass }}\"\n [ngClass]=\"\n isFocusInput\n | inputPlaceholderTextClass\n : control?.touched!\n : control\n : _inputConfig\n : isVisibleCommands\n : control?.value\n \"\n [style.left]=\"\n _inputConfig.placeholderText?.toLowerCase() ===\n inputStringEnum.PERSONS ||\n _inputConfig.placeholderText?.toLowerCase() ===\n inputStringEnum.VEHICLES\n ? 30 + (control?.value?.toString()?.length + 1) * 9 + 'px'\n : isFocusInput &&\n _inputConfig.placeholderText?.toLowerCase() !==\n inputCommandsType.MONTHS\n ? 'auto'\n : (control?.value?.toString()?.length + 1) * 8 + 'px'\n \"\n [style.right]=\"\n isFocusInput &&\n _inputConfig.placeholderText?.toLowerCase() !==\n inputCommandsType.MONTHS\n ? '28px'\n : 'auto'\n \"\n >\n {{ _inputConfig.placeholderText }}\n </span>\n }\n\n <!-- Input Label Counter -->\n @if (\n selectedDropdownLabelColor &&\n control?.value &&\n !isFocusInput &&\n !_inputConfig.isDisabled &&\n _inputConfig.showCount\n ) {\n <p\n [style.top]=\"'4px'\"\n [style.left]=\"(control?.value?.toString()?.length + 6.5) * 8 + 'px'\"\n class=\"input-label-counter\"\n >\n {{ selectedDropdownLabelColor.count }}\n </p>\n }\n\n <!-- Special Dropdown Selected SVG with or Without Text -->\n @if (\n _inputConfig?.dropdownImageInput?.iconsPath &&\n activeItem &&\n !_inputConfig?.hideAllItemsInInputDropdown &&\n !(!_inputConfig.dropdownImageInput?.withText && isFocusInput) &&\n !(\n ['truck', 'trailer'].includes(\n _inputConfig.dropdownImageInput?.template!\n ) &&\n isFocusInput &&\n _inputConfig.dropdownImageInput?.remove\n ) &&\n !_inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl\n ) {\n <svg-icon\n [src]=\"_inputConfig.dropdownImageInput?.iconsPath!\"\n class=\"dropdown-selected-image {{\n _inputConfig.dropdownImageInput?.class\n }}\"\n [ngClass]=\"{\n 'unset-color':\n isFocusInput && _inputConfig.dropdownImageInput?.class,\n }\"\n [svgStyle]=\"{\n fill:\n _inputConfig.dropdownImageInput?.color && !isFocusInput\n ? _inputConfig.dropdownImageInput?.color\n : '#ffffff',\n }\"\n >\n </svg-icon>\n }\n\n <!-- Input Label -->\n @if (!_inputConfig.multiSelectDropdownActive) {\n <label\n [for]=\"_inputConfig.name\"\n class=\"input-label {{ _inputConfig.customClass }} {{\n _inputConfig.multipleLabel?.customClass\n }}\"\n [ngClass]=\"\n control?.value\n | labelClass\n : isFocusInput\n : _inputConfig\n : isTouchedInput\n : control?.invalid\n : control?.touched\n \"\n >\n @if (_inputConfig.label) {\n <span>{{ _inputConfig.label }} </span>\n }\n\n @if (_inputConfig.multipleLabel?.labels?.length) {\n <div\n [class]=\"_inputConfig.multipleLabel?.customClass!\"\n [ngClass]=\"{\n 'multiple-labels-position-on-focus':\n isFocusInput ||\n _inputConfig.multipleInputValues?.options?.length,\n required:\n _inputConfig.isRequired && !_inputConfig.isDisabled,\n }\"\n >\n @for (\n label of _inputConfig.multipleLabel?.labels;\n track $index\n ) {\n <span>\n {{ label }}\n </span>\n }\n </div>\n }\n </label>\n }\n\n <input\n #input\n (input)=\"handleInput($event)\"\n [restrictInput]=\"inputConfig\"\n priceFormat\n [priceSeparator]=\"\n inputConfig.priceSeparator || inputConfig.thousandSeparator\n \"\n (focus)=\"handleInputFocus($event)\"\n (blur)=\"handleInputBlur($event)\"\n (keydown)=\"handleKeyDown($event)\"\n [readOnly]=\"_inputConfig.readOnly\"\n [type]=\"_inputConfig.type | inputType: isTogglePassword\"\n class=\"input-control\n {{ _inputConfig.textTransform }}\n {{ _inputConfig.textAlign }}\n {{ _inputConfig.customClass }}\n \"\n [appMaxValue]=\"inputConfig.max\"\n appCapsLock\n (capsLockStatus)=\"handleCapsLock($event)\"\n commandVisible\n (commandVisible)=\"handleCommandVisible($event)\"\n [placeholder]=\"\n (_inputConfig.placeholderInsteadOfLabel &&\n _inputConfig.placeholder &&\n isFocusInput\n ? _inputConfig.placeholder\n : '') ||\n (_inputConfig.placeholder && isFocusInput\n ? _inputConfig.placeholder\n : '')\n \"\n [mask]=\"_inputConfig.mask\"\n [ngClass]=\"\n control\n | inputClass\n : isFocusInput\n : control?.touched!\n : _inputConfig\n : input\n : isVisibleCommands\n : control?.value\n : control?.invalid\n : control?.touched\n : isDropdownToggler\n : isEditInput\n : template\n \"\n />\n\n <!-- Placeholder Icon on Right Side -->\n @if (_inputConfig.placeholderIconRightSide) {\n <svg-icon\n class=\"placeholder-icon-right-side {{\n _inputConfig.placeholderIconColor\n }}\"\n [ngClass]=\"\n isFocusInput\n | inputPlaceholderIconRightClass\n : control\n : _inputConfig\n : isTouchedInput\n : control?.value\n \"\n [src]=\"\n _inputConfig.placeholderIconRightSide.toLowerCase()\n | caSvg: 'common'\n \"\n ></svg-icon>\n }\n\n <!-- Input Error Message -->\n @if (\n !(!control?.value && isFocusInput) &&\n (isTouchedInput || control?.touched || control?.value) &&\n control?.invalid &&\n !_inputConfig.isInvalidSearchInDropdown &&\n !_inputConfig.isDisabled\n ) {\n @if (\n !(_inputConfig.hideErrorMessage || _inputConfig.errorInsideInput)\n ) {\n <span class=\"input-error {{ _inputConfig.customClass }}\">\n {{ control?.errors | inputError: _inputConfig.name }}\n </span>\n }\n\n <!-- Error Message Inside Input -->\n @if (_inputConfig.errorInsideInput) {\n <span class=\"error-inside-input {{ _inputConfig.customClass }}\">\n {{ control?.errors | inputError: _inputConfig.name }}\n </span>\n }\n }\n\n @if (_inputConfig.fixedPlacholder && input.value) {\n <span class=\"input-fixed-placehoder-label\">\n {{ _inputConfig.fixedPlacholder }}\n </span>\n }\n</div>\n", styles: ["@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}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white-2::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.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"] }]
11441
11446
  }], ctorParameters: () => [{ type: i1$1.NgControl, decorators: [{
11442
11447
  type: Optional
11443
11448
  }, {
@@ -11453,6 +11458,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
11453
11458
  type: Input
11454
11459
  }], inputConfig: [{
11455
11460
  type: Input
11461
+ }], activeItem: [{
11462
+ type: Input
11456
11463
  }], handleToggleDropdownOptions: [{
11457
11464
  type: Output,
11458
11465
  args: ['handleToggleDropdownOptions']
@@ -11482,72 +11489,127 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
11482
11489
  args: ['dropDownKeyNavigation']
11483
11490
  }] } });
11484
11491
 
11492
+ class DropdownOptionsPipe {
11493
+ transform(searchText, options, canAddNew, label) {
11494
+ const filteredOptions = options.filter((item) => {
11495
+ const value = item[label];
11496
+ if (value === DropdownStringEnum.ADD_NEW)
11497
+ return true;
11498
+ return value.toLowerCase().includes(searchText.toLowerCase());
11499
+ // return item.name
11500
+ // ? item.name.toLowerCase().includes(searchText.toLowerCase())
11501
+ // : item.code
11502
+ // ? item.code
11503
+ // .concat(' - ', item.description!)
11504
+ // .toLowerCase()
11505
+ // .includes(searchText.toLowerCase())
11506
+ // : searchText.toLowerCase();
11507
+ });
11508
+ return filteredOptions.length
11509
+ ? filteredOptions
11510
+ : [{
11511
+ id: 7654,
11512
+ name: DropdownStringEnum.NO_RESULTS,
11513
+ }];
11514
+ // if (template === 'groups') {
11515
+ // let groups: number = 0;
11516
+ // options.forEach((item: any) => { d
11517
+ // groups++;
11518
+ // if (item.groups) {
11519
+ // groups += item.groups.length;
11520
+ // }
11521
+ // });
11522
+ // return groups > 20;
11523
+ // } else {
11524
+ // return options.length > 7;
11525
+ // }
11526
+ }
11527
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DropdownOptionsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
11528
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: DropdownOptionsPipe, isStandalone: true, name: "caDropdownOptionsPipe" }); }
11529
+ }
11530
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DropdownOptionsPipe, decorators: [{
11531
+ type: Pipe,
11532
+ args: [{
11533
+ name: 'caDropdownOptionsPipe',
11534
+ standalone: true,
11535
+ }]
11536
+ }] });
11537
+
11485
11538
  class CaInputDropdownComponent {
11486
11539
  set template(value) {
11487
11540
  this._template = value;
11488
- if (value === 'details-template' && this.isDetailsPages) {
11489
- this.clearTimeoutDropdown = setTimeout(() => {
11490
- // this.inputRef.setInputCursorAtTheEnd(
11491
- // this.inputRef.inputElement.nativeElement
11492
- // );
11493
- const option = this._options.find((item) => item.active);
11494
- this._activeItem = option || null;
11495
- this.getSuperControl?.setValue(option?.name);
11496
- const timeout2 = setTimeout(() => {
11497
- this.popoverRef.open();
11498
- clearTimeout(timeout2);
11499
- }, 150);
11500
- });
11501
- }
11541
+ // if (value === 'details-template' && this.isDetailsPages) {
11542
+ // this.clearTimeoutDropdown = setTimeout(() => {
11543
+ // this.inputRef.setInputCursorAtTheEnd(
11544
+ // this.inputRef.inputElement.nativeElement
11545
+ // );
11546
+ // const option = this._options.find((item) => item.active);
11547
+ // this._activeItem = option || null;
11548
+ // this.getSuperControl?.setValue(option?.name);
11549
+ // const timeout2 = setTimeout(() => {
11550
+ // this.popoverRef.open();
11551
+ // clearTimeout(timeout2);
11552
+ // }, 150);
11553
+ // });
11554
+ // }
11502
11555
  }
11503
11556
  set canAddNew(value) {
11504
11557
  this._canAddNew = value;
11505
11558
  } // ADD NEW item in options
11559
+ get canAddNew() {
11560
+ return this._canAddNew;
11561
+ }
11506
11562
  set sort(value) {
11507
11563
  this._sort = value;
11508
11564
  }
11509
11565
  set activeItem(value) {
11510
- this.inputConfig = {
11511
- ...this.inputConfig,
11512
- blackInput: true,
11513
- };
11566
+ // this.inputConfig = {
11567
+ // ...this.inputConfig,
11568
+ // blackInput: true,
11569
+ // };
11514
11570
  this._activeItem = value;
11515
11571
  // With address
11516
- if (this.inputConfig.name &&
11517
- this.inputConfig.name.toLowerCase().includes('address') &&
11518
- this._activeItem) {
11519
- if (Object.keys(this._activeItem).length > 0) {
11520
- this.getSuperControl?.patchValue(value?.address ? value?.address : null);
11521
- }
11522
- if (!this.inputConfig.hideColorValidations) {
11523
- this.clearTimeoutDropdown = setTimeout(() => {
11524
- this.inputConfig = {
11525
- ...this.inputConfig,
11526
- blackInput: false,
11527
- };
11528
- this.cdRef.detectChanges();
11529
- }, 150);
11530
- }
11531
- }
11532
- // Without address
11533
- else {
11534
- if (this._activeItem) {
11535
- this.clearTimeoutDropdown = setTimeout(() => {
11536
- this.getSuperControl.patchValue(value?.number
11537
- ? value?.number
11538
- : value?.name
11539
- ? value?.name
11540
- : (value?.companyName ?? null));
11541
- if (!this.inputConfig.hideColorValidations) {
11542
- this.inputConfig = {
11543
- ...this.inputConfig,
11544
- blackInput: false,
11545
- };
11546
- }
11547
- this.cdRef.detectChanges();
11548
- }, 150);
11549
- }
11550
- }
11572
+ // if (
11573
+ // this.inputConfig.name &&
11574
+ // this.inputConfig.name.toLowerCase().includes('address') &&
11575
+ // this._activeItem
11576
+ // ) {
11577
+ // if (Object.keys(this._activeItem).length > 0) {
11578
+ // this.getSuperControl?.patchValue(
11579
+ // value?.address ? value?.address : null
11580
+ // );
11581
+ // }
11582
+ // if (!this.inputConfig.hideColorValidations) {
11583
+ // this.clearTimeoutDropdown = setTimeout(() => {
11584
+ // // this.inputConfig = {
11585
+ // // ...this.inputConfig,
11586
+ // // blackInput: false,
11587
+ // // };
11588
+ // this.cdRef.detectChanges();
11589
+ // }, 150);
11590
+ // }
11591
+ // }
11592
+ // // Without address
11593
+ // else {
11594
+ // if (this._activeItem) {
11595
+ // this.clearTimeoutDropdown = setTimeout(() => {
11596
+ // this.getSuperControl!.patchValue(
11597
+ // value?.number
11598
+ // ? value?.number
11599
+ // : value?.name
11600
+ // ? value?.name
11601
+ // : (value?.companyName ?? null)
11602
+ // );
11603
+ // if (!this.inputConfig.hideColorValidations) {
11604
+ // // this.inputConfig = {
11605
+ // // ...this.inputConfig,
11606
+ // // blackInput: false,
11607
+ // // };
11608
+ // }
11609
+ // this.cdRef.detectChanges();
11610
+ // }, 150);
11611
+ // }
11612
+ // }
11551
11613
  }
11552
11614
  set options(values) {
11553
11615
  if (values)
@@ -11594,6 +11656,7 @@ class CaInputDropdownComponent {
11594
11656
  this.renderer = renderer;
11595
11657
  this.inputHoveredItem = -1;
11596
11658
  this._canAddNew = false;
11659
+ this.searchText = '';
11597
11660
  // when send SVG, please premmaped object: add 'folder' | 'subfolder'
11598
11661
  this._options = [];
11599
11662
  this.selectedItem = new EventEmitter();
@@ -11622,26 +11685,48 @@ class CaInputDropdownComponent {
11622
11685
  this.dropdownTemplateTypeEnum = DropdownTemplateTypeEnum;
11623
11686
  // Destroy
11624
11687
  this.destroy$ = new Subject();
11688
+ this.onTouched = () => { };
11689
+ this.dropdownValue = '';
11625
11690
  this.superControl.valueAccessor = this;
11626
11691
  }
11627
11692
  get getSuperControl() {
11628
11693
  return this.superControl.control;
11629
11694
  }
11630
11695
  writeValue(_) { }
11631
- registerOnChange(_) { }
11632
- registerOnTouched(_) { }
11696
+ onChange(_) { }
11697
+ registerOnChange(fn) {
11698
+ this.onChange = fn;
11699
+ }
11700
+ registerOnTouched(fn) {
11701
+ this.onTouched = fn;
11702
+ }
11633
11703
  ngOnInit() {
11634
11704
  // Multiselect
11635
11705
  if (this.inputConfig.multiselectDropdown) {
11636
11706
  this.multiSelectLabel = this.inputConfig.label;
11637
11707
  }
11638
- // Search
11639
- this.getSuperControl.valueChanges.pipe(debounceTime(50), takeUntil(this.destroy$), skip(1)).subscribe((searchText) => {
11708
+ this.inputFormControl = new FormControl(null);
11709
+ this.inputFormControl.valueChanges
11710
+ .pipe(distinctUntilChanged$1(), debounceTime(50), takeUntil(this.destroy$))
11711
+ .subscribe((searchText) => {
11640
11712
  if (this.labelMode === 'Color') {
11641
11713
  return;
11642
11714
  }
11643
- this.search(searchText);
11715
+ console.log('CHANGE HERE', searchText);
11716
+ this.searchText = searchText;
11717
+ // this.search(searchText);
11644
11718
  });
11719
+ // Search
11720
+ // this.getSuperControl!.valueChanges.pipe(
11721
+ // debounceTime(50),
11722
+ // takeUntil(this.destroy$),
11723
+ // skip(1)
11724
+ // ).subscribe((searchText) => {
11725
+ // if (this.labelMode === 'Color') {
11726
+ // return;
11727
+ // }
11728
+ // this.search(searchText);
11729
+ // });
11645
11730
  }
11646
11731
  ngOnChanges(changes) {
11647
11732
  if (changes['options'] && changes['options'].currentValue) {
@@ -11663,6 +11748,9 @@ class CaInputDropdownComponent {
11663
11748
  }
11664
11749
  }
11665
11750
  onActiveItem(option, group) {
11751
+ this.selectedItem.emit(option);
11752
+ this.setDropdownValue(option);
11753
+ return;
11666
11754
  // Prevent user to pick franchise, without group
11667
11755
  console.log(option, group, this._template);
11668
11756
  if (this._template === 'fuel-franchise' &&
@@ -11688,10 +11776,10 @@ class CaInputDropdownComponent {
11688
11776
  else {
11689
11777
  // DropDown label
11690
11778
  if (this.inputConfig.dropdownLabel) {
11691
- this.inputConfig.dropdownLabelNew = true;
11779
+ // this.inputConfig.dropdownLabelNew = true;
11692
11780
  this.inputRef.isEditInput = true;
11693
11781
  this.selectedLabelMode.emit('Color');
11694
- this.inputConfig.commands.active = true;
11782
+ // this.inputConfig.commands!.active = true;
11695
11783
  // this.inputRef.setInputCursorAtTheEnd(
11696
11784
  // this.inputRef.inputElement.nativeElement
11697
11785
  // );
@@ -11706,7 +11794,7 @@ class CaInputDropdownComponent {
11706
11794
  // Pick the item
11707
11795
  else {
11708
11796
  console.log(1);
11709
- this.inputConfig.selectedDropdown = true;
11797
+ // this.inputConfig.selectedDropdown = true;
11710
11798
  // Dropdown labels option selected
11711
11799
  if (this.inputConfig.dropdownLabel) {
11712
11800
  console.log(122);
@@ -11763,16 +11851,11 @@ class CaInputDropdownComponent {
11763
11851
  this.onActiveItem(event.option, event.group);
11764
11852
  }
11765
11853
  onClearSearch() {
11766
- this._options = this.originalOptions;
11767
11854
  this._activeItem = null;
11768
11855
  this.inputHoveredItem = -1;
11769
- this.inputConfig.selectedDropdown = false;
11770
- this.getSuperControl?.patchValue(null);
11771
- this.inputConfig = {
11772
- ...this.inputConfig,
11773
- placeholder: '',
11774
- dropdownImageInput: null,
11775
- };
11856
+ //this.inputConfig.selectedDropdown = false;
11857
+ // this.getSuperControl?.patchValue(null);
11858
+ this.setControlValue("");
11776
11859
  this.selectedItem.emit(null);
11777
11860
  }
11778
11861
  clearDropdownLabel() {
@@ -11785,7 +11868,7 @@ class CaInputDropdownComponent {
11785
11868
  commandEvent(event) {
11786
11869
  if (event.action === 'Edit Input') {
11787
11870
  this.selectedLabelMode.emit('Color');
11788
- this.inputConfig.dropdownLabelNew = false;
11871
+ //this.inputConfig.dropdownLabelNew = false;
11789
11872
  }
11790
11873
  if (event.action === 'Toggle Dropdown') {
11791
11874
  this.popoverRef.toggle();
@@ -11812,7 +11895,7 @@ class CaInputDropdownComponent {
11812
11895
  id: parseInt(uuidv4()),
11813
11896
  name: this.getSuperControl.value,
11814
11897
  };
11815
- this.inputConfig.commands.active = false;
11898
+ //this.inputConfig.commands!.active = false;
11816
11899
  this.inputRef.isVisibleCommands = false;
11817
11900
  this.inputRef.isFocusInput = false;
11818
11901
  this.saveItem.emit({ data: this._activeItem, action: 'new' });
@@ -11914,6 +11997,20 @@ class CaInputDropdownComponent {
11914
11997
  }
11915
11998
  }
11916
11999
  }
12000
+ handleHiddenDropdown() {
12001
+ this.inputFormControl.patchValue(this.dropdownValue || '');
12002
+ this.inputRef.inputElement.nativeElement.blur();
12003
+ this.searchText = "";
12004
+ this.inputRef.inputElement.nativeElement.placeholder = "";
12005
+ }
12006
+ handleOpenDropdown() {
12007
+ this.searchText = "";
12008
+ this.inputRef.inputElement.nativeElement.value = '';
12009
+ // this.inputFormControl.patchValue("");
12010
+ this.inputRef.inputElement.nativeElement.placeholder =
12011
+ this.dropdownValue || '';
12012
+ this.cdRef.detectChanges();
12013
+ }
11917
12014
  showHideDropdown(action) {
11918
12015
  if (this.inputConfig.multiselectDropdown) {
11919
12016
  this.isMultiSelectInputFocus = action;
@@ -11940,21 +12037,21 @@ class CaInputDropdownComponent {
11940
12037
  }
11941
12038
  // Focus In
11942
12039
  else {
11943
- this.inputConfig = {
11944
- ...this.inputConfig,
11945
- placeholder: this.getSuperControl.value
11946
- ? this.getSuperControl.value
11947
- : this._activeItem?.name,
11948
- };
12040
+ // this.inputConfig = {
12041
+ // ...this.inputConfig,
12042
+ // placeholder: this.getSuperControl!.value
12043
+ // ? this.getSuperControl!.value
12044
+ // : this._activeItem?.name,
12045
+ // };
11949
12046
  this.getSuperControl.setValue(null);
11950
12047
  if (this.popoverRef) {
11951
12048
  this.popoverRef.close();
11952
12049
  }
11953
12050
  if (this.isInAddMode) {
11954
- this.inputConfig = {
11955
- ...this.inputConfig,
11956
- placeholder: '',
11957
- };
12051
+ // this.inputConfig = {
12052
+ // ...this.inputConfig,
12053
+ // placeholder: '',
12054
+ // };
11958
12055
  }
11959
12056
  }
11960
12057
  }
@@ -11983,11 +12080,11 @@ class CaInputDropdownComponent {
11983
12080
  }
11984
12081
  if (this.inputConfig.dropdownLabel) {
11985
12082
  this.getSuperControl?.setErrors(null);
11986
- this.inputConfig.dropdownLabelNew = false;
11987
- this.inputConfig.commands.active = false;
11988
- if (!this.inputConfig.hideColorValidations) {
11989
- this.inputConfig.blackInput = false;
11990
- }
12083
+ // this.inputConfig.dropdownLabelNew = false;
12084
+ // this.inputConfig.commands!.active = false;
12085
+ // if (!this.inputConfig.hideColorValidations) {
12086
+ // this.inputConfig.blackInput = false;
12087
+ // }
11991
12088
  this.inputRef.isFocusInput = false;
11992
12089
  this.inputRef.isEditInput = false;
11993
12090
  this.inputRef.inputElement.nativeElement.blur();
@@ -11999,16 +12096,11 @@ class CaInputDropdownComponent {
11999
12096
  }
12000
12097
  // Press 'enter'
12001
12098
  if (keyCode === 13) {
12002
- // let selectedItem = this.renderer.selectRootElement(
12003
- // '.dropdown-option-hovered',
12004
- // true
12005
- // );
12006
12099
  let selectedItem = this.inputHoveredItem > -1
12007
- ? this._options[this.inputHoveredItem].name
12008
- : '';
12009
- // // Open New Modal
12100
+ ? this._options[this.inputHoveredItem]
12101
+ : { name: '' };
12010
12102
  if (this.canOpenModal &&
12011
- selectedItem?.toLowerCase() === 'add new') {
12103
+ selectedItem?.name?.toLowerCase() === 'add new') {
12012
12104
  this.selectedItem.emit({
12013
12105
  id: 7655,
12014
12106
  name: DropdownStringEnum.ADD_NEW,
@@ -12016,47 +12108,42 @@ class CaInputDropdownComponent {
12016
12108
  });
12017
12109
  }
12018
12110
  else {
12019
- if (this._options.length === 1 && !selectedItem) {
12020
- if (this._template === 'fuel-franchise') {
12021
- selectedItem = this._options[0]?.businessName
12022
- ? this._options[0]?.businessName
12023
- : this._options[0]?.name || '';
12024
- }
12025
- else {
12026
- selectedItem = this._options[0]?.number
12027
- ? this._options[0]?.number.toString().trim()
12028
- : this._options[0].name?.toString().trim();
12029
- }
12030
- }
12031
- this.pickupElementWithKeyboard(selectedItem, data);
12111
+ this.setDropdownValue(selectedItem);
12032
12112
  }
12033
12113
  }
12034
12114
  if (keyCode === 9) {
12035
12115
  if (this._options.length === 1 &&
12036
12116
  this._options[0].id !== 7655 &&
12037
12117
  this._options[0].id !== 7654) {
12038
- let selectedItem = null;
12039
- if (this._template === 'fuel-franchise') {
12040
- selectedItem = this._options[0]?.businessName
12041
- ? this._options[0]?.businessName
12042
- : this._options[0]?.name;
12043
- }
12044
- else {
12045
- selectedItem = this._options[0]?.number
12046
- ? this._options[0]?.number.toString().trim()
12047
- : this._options[0].name.toString().trim();
12048
- }
12049
- this.pickupElementWithKeyboard(selectedItem, data);
12118
+ // let selectedItem = null;
12119
+ // if (this._template === 'fuel-franchise') {
12120
+ // selectedItem = this._options[0]?.businessName
12121
+ // ? this._options[0]?.businessName
12122
+ // : this._options[0]?.name;
12123
+ // } else {
12124
+ // selectedItem = this._options[0]?.number
12125
+ // ? this._options[0]?.number.toString().trim()
12126
+ // : this._options[0].name!.toString().trim();
12127
+ // }
12128
+ // this.pickupElementWithKeyboard(selectedItem, data);
12050
12129
  }
12051
12130
  else {
12052
12131
  this.popoverRef.open();
12053
12132
  }
12054
12133
  }
12055
12134
  }
12135
+ setDropdownValue(option) {
12136
+ const controlValue = option[this.optionValue];
12137
+ const inputValue = option[this.label] || controlValue;
12138
+ this._activeItem = option;
12139
+ this.setControlValue(controlValue, inputValue);
12140
+ this.popoverRef.close();
12141
+ this.searchText = '';
12142
+ }
12056
12143
  // ---------------------------------- Multiselect Dropdown ----------------------------------
12057
12144
  onMultiselectSelect(option) {
12058
12145
  this.isMultiSelectInputFocus = false;
12059
- this.inputConfig.label = undefined;
12146
+ //this.inputConfig.label = undefined;
12060
12147
  if (this.multiselectItems.some((item) => item.id === option.id)) {
12061
12148
  return;
12062
12149
  }
@@ -12093,10 +12180,10 @@ class CaInputDropdownComponent {
12093
12180
  this.inputRef.isFocusInput = false;
12094
12181
  this.inputRef.inputElement.nativeElement.blur();
12095
12182
  }
12096
- this.inputConfig = {
12097
- ...this.inputConfig,
12098
- multiSelectDropdownActive: true,
12099
- };
12183
+ // this.inputConfig = {
12184
+ // ...this.inputConfig,
12185
+ // multiSelectDropdownActive: true,
12186
+ // };
12100
12187
  }
12101
12188
  removeMultiSelectItem(index) {
12102
12189
  this._options = this.originalOptions.map((item) => {
@@ -12112,12 +12199,12 @@ class CaInputDropdownComponent {
12112
12199
  this.originalOptions = this._options;
12113
12200
  this.multiselectItems.splice(index, 1);
12114
12201
  if (!this.multiselectItems.length) {
12115
- this.inputConfig = {
12116
- ...this.inputConfig,
12117
- multiSelectDropdownActive: undefined,
12118
- };
12202
+ // this.inputConfig = {
12203
+ // ...this.inputConfig,
12204
+ // multiSelectDropdownActive: undefined,
12205
+ // };
12119
12206
  this.lastActiveMultiselectItem = null;
12120
- this.inputConfig.label = this.multiSelectLabel;
12207
+ // this.inputConfig.label = this.multiSelectLabel;
12121
12208
  }
12122
12209
  else {
12123
12210
  this.lastActiveMultiselectItem = this._options
@@ -12130,13 +12217,13 @@ class CaInputDropdownComponent {
12130
12217
  }
12131
12218
  deleteAllMultiSelectItems(currentLabel) {
12132
12219
  this.multiselectItems = [];
12133
- this.inputConfig = {
12134
- ...this.inputConfig,
12135
- multiSelectDropdownActive: undefined,
12136
- };
12137
- this.inputConfig.label = currentLabel
12138
- ? currentLabel
12139
- : this.multiSelectLabel;
12220
+ // this.inputConfig = {
12221
+ // ...this.inputConfig,
12222
+ // multiSelectDropdownActive: undefined,
12223
+ // };
12224
+ // this.inputConfig.label = currentLabel
12225
+ // ? currentLabel
12226
+ // : this.multiSelectLabel;
12140
12227
  this._options = this._options.map((item) => {
12141
12228
  return {
12142
12229
  ...item,
@@ -12187,11 +12274,11 @@ class CaInputDropdownComponent {
12187
12274
  });
12188
12275
  this.clearTimeoutDropdown = setTimeout(() => {
12189
12276
  this.getSuperControl.setErrors(null);
12190
- this.inputConfig.dropdownLabelNew = false;
12191
- this.inputConfig.commands.active = false;
12192
- if (!this.inputConfig.hideColorValidations) {
12193
- this.inputConfig.blackInput = false;
12194
- }
12277
+ // this.inputConfig.dropdownLabelNew = false;
12278
+ // this.inputConfig.commands!.active = false;
12279
+ // if (!this.inputConfig.hideColorValidations) {
12280
+ // this.inputConfig.blackInput = false;
12281
+ // }
12195
12282
  this.inputRef.isFocusInput = false;
12196
12283
  this.inputRef.isEditInput = false;
12197
12284
  this.inputRef.inputElement.nativeElement.blur();
@@ -12203,14 +12290,14 @@ class CaInputDropdownComponent {
12203
12290
  if (this.inputConfig.dropdownLabel) {
12204
12291
  // DropDown label
12205
12292
  if (this.inputConfig.dropdownLabel) {
12206
- this.inputConfig.dropdownLabelNew = true;
12293
+ // this.inputConfig.dropdownLabelNew = true;
12207
12294
  this.inputRef.isEditInput = true;
12208
12295
  this.selectedLabelMode.emit('Color');
12209
- this.inputConfig.commands.active = true;
12296
+ //this.inputConfig.commands!.active = true;
12210
12297
  // this.inputRef.setInputCursorAtTheEnd(
12211
12298
  // this.inputRef.inputElement.nativeElement
12212
12299
  // );
12213
- this.inputConfig.blackInput = true;
12300
+ // this.inputConfig.blackInput = true;
12214
12301
  this.selectedItem.emit({
12215
12302
  id: 7655,
12216
12303
  name: DropdownStringEnum.ADD_NEW,
@@ -12323,7 +12410,8 @@ class CaInputDropdownComponent {
12323
12410
  if (this.inputConfig.dropdownLabel) {
12324
12411
  if (this.labelMode === 'Label') {
12325
12412
  this._activeItem = existItem || null;
12326
- this.getSuperControl.setValue(existItem.name);
12413
+ this.inputFormControl.setValue(existItem.name);
12414
+ // this.getSuperControl!.setValue(existItem!.name);
12327
12415
  this._options = this.originalOptions;
12328
12416
  this.selectedItem.emit(existItem);
12329
12417
  this.inputRef.isDropdownToggler = false;
@@ -12337,7 +12425,11 @@ class CaInputDropdownComponent {
12337
12425
  }
12338
12426
  // Normal
12339
12427
  else {
12340
- this.getSuperControl.setValue(existItem?.name);
12428
+ this.setControlValue(existItem?.name);
12429
+ // this.inputFormControl!.setValue(existItem?.name);
12430
+ // this.onChange(existItem?.name); // Notify Angular form about the change
12431
+ // if (existItem?.name) this.onTouched(); // Mark as touched
12432
+ //this.getSuperControl!.setValue(existItem?.name);
12341
12433
  this.selectedItem.emit(existItem);
12342
12434
  this._activeItem = existItem || null;
12343
12435
  this.inputRef.isFocusInput = false;
@@ -12346,6 +12438,12 @@ class CaInputDropdownComponent {
12346
12438
  this.popoverRef.close();
12347
12439
  }
12348
12440
  }
12441
+ setControlValue(value, dropdownInputValue) {
12442
+ this.onChange(value); // Notify Angular form about the change
12443
+ if (value)
12444
+ this.onTouched(); // Mark as touched
12445
+ this.dropdownValue = dropdownInputValue || value;
12446
+ }
12349
12447
  search(searchText) {
12350
12448
  // Single Dropdown
12351
12449
  if (![
@@ -12355,8 +12453,8 @@ class CaInputDropdownComponent {
12355
12453
  'load-dispatches-ttd',
12356
12454
  ].includes(this._template)) {
12357
12455
  if (searchText?.length &&
12358
- this.getSuperControl?.value &&
12359
- this._activeItem?.name !== this.getSuperControl?.value) {
12456
+ this.inputFormControl?.value &&
12457
+ this._activeItem?.name !== this.inputFormControl?.value) {
12360
12458
  this._options = this.originalOptions.filter((item) => {
12361
12459
  if (item.name === DropdownStringEnum.ADD_NEW)
12362
12460
  return true;
@@ -12385,13 +12483,13 @@ class CaInputDropdownComponent {
12385
12483
  }
12386
12484
  }
12387
12485
  if (['truck', 'trailer'].includes(this.inputConfig?.dropdownImageInput?.template)) {
12388
- this.inputConfig = {
12389
- ...this.inputConfig,
12390
- dropdownImageInput: {
12391
- ...this.inputConfig.dropdownImageInput,
12392
- remove: true,
12393
- },
12394
- };
12486
+ // this.inputConfig = {
12487
+ // ...this.inputConfig,
12488
+ // dropdownImageInput: {
12489
+ // ...this.inputConfig.dropdownImageInput!,
12490
+ // remove: true,
12491
+ // },
12492
+ // };
12395
12493
  }
12396
12494
  const emptyOptionsWihAddNew = this._options.length === 1 &&
12397
12495
  this._options[0].name === DropdownStringEnum.ADD_NEW;
@@ -12408,10 +12506,10 @@ class CaInputDropdownComponent {
12408
12506
  id: 7654,
12409
12507
  name: DropdownStringEnum.NO_RESULTS,
12410
12508
  });
12411
- this.inputConfig = {
12412
- ...this.inputConfig,
12413
- hideAllItemsInInputDropdown: true,
12414
- };
12509
+ // this.inputConfig = {
12510
+ // ...this.inputConfig,
12511
+ // hideAllItemsInInputDropdown: true,
12512
+ // };
12415
12513
  if ((this.inputConfig.name === 'Address' ||
12416
12514
  this.inputConfig.name === 'RoutingAddress') &&
12417
12515
  this.inputRef.isFocusInput) {
@@ -12422,18 +12520,18 @@ class CaInputDropdownComponent {
12422
12520
  else {
12423
12521
  this._options = this.originalOptions;
12424
12522
  if (['truck', 'trailer'].includes(this.inputConfig?.dropdownImageInput?.template)) {
12425
- this.inputConfig = {
12426
- ...this.inputConfig,
12427
- dropdownImageInput: {
12428
- ...this.inputConfig?.dropdownImageInput,
12429
- remove: false,
12430
- },
12431
- };
12523
+ // this.inputConfig = {
12524
+ // ...this.inputConfig,
12525
+ // dropdownImageInput: {
12526
+ // ...this.inputConfig?.dropdownImageInput!,
12527
+ // remove: false,
12528
+ // },
12529
+ // };
12432
12530
  }
12433
- this.inputConfig = {
12434
- ...this.inputConfig,
12435
- hideAllItemsInInputDropdown: false,
12436
- };
12531
+ // this.inputConfig = {
12532
+ // ...this.inputConfig,
12533
+ // hideAllItemsInInputDropdown: false,
12534
+ // };
12437
12535
  }
12438
12536
  }
12439
12537
  // Group Dropdown Items
@@ -12533,11 +12631,11 @@ class CaInputDropdownComponent {
12533
12631
  clearTimeout(this.clearTimeoutDropdown);
12534
12632
  }
12535
12633
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputDropdownComponent, deps: [{ token: i1$1.NgControl, self: true }, { token: ImageBase64Service }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
12536
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaInputDropdownComponent, isStandalone: true, selector: "app-ca-input-dropdown", inputs: { template: "template", multiselectTemplate: "multiselectTemplate", inputConfig: "inputConfig", canAddNew: "canAddNew", canOpenModal: "canOpenModal", sort: "sort", activeItem: "activeItem", activeItemColor: "activeItemColor", labelMode: "labelMode", options: "options", preloadMultiselectItems: "preloadMultiselectItems", isDetailsPages: "isDetailsPages", isIncorrectValue: "isIncorrectValue", isAddressDropdown: "isAddressDropdown" }, outputs: { selectedItem: "selectedItem", selectedItems: "selectedItems", selectedItemColor: "selectedItemColor", selectedLabelMode: "selectedLabelMode", closeDropdown: "closeDropdown", saveItem: "saveItem", incorrectEvent: "incorrectEvent", placeholderIconEvent: "placeholderIconEvent", paginationEvent: "pagination", activeGroupEvent: "activeGroup", clearInputEvent: "clearInputEvent" }, providers: [FormControlPipe], viewQueries: [{ propertyName: "inputRef", first: true, predicate: ["input"], descendants: true }, { propertyName: "popoverRef", first: true, predicate: ["t2"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div\n class=\"application-dropdown\"\n [ngClass]=\"\n inputConfig\n | inputDropdownMultiselectClass\n : multiselectItems\n : isMultiSelectInputFocus\n \"\n>\n @if (multiselectItems.length) {\n <p class=\"multiselect-label\">\n {{ multiSelectLabel }}\n </p>\n }\n\n @if (inputConfig.multiSelectDropdownActive) {\n <!-- Multiselect arrow -->\n <svg-icon\n class=\"multiselect-arrow\"\n [src]=\"inputDropdownSvgRoutes.inputDropdownArrowSvg\"\n (click)=\"toggleMultiselectDropdown()\"\n ></svg-icon>\n }\n\n @if (multiselectItems.length && !inputConfig.isDisabled) {\n <!-- Multiselect clear all -->\n <div\n class=\"input-clear multiselect-clear\"\n mainTooltip=\"Clear All\"\n ngbTooltip\n position=\"top\"\n tooltipBackground=\"#2f2f2f\"\n (click)=\"deleteAllMultiSelectItems()\"\n >\n <svg-icon\n class=\"input-clear-x\"\n [src]=\"inputDropdownSvgRoutes.xClearSvg\"\n ></svg-icon>\n </div>\n }\n\n @if (\n inputConfig.multiselectDropdown &&\n multiselectItems.length &&\n _template === 'multiselect'\n ) {\n <!-- Multiselect items -->\n <div class=\"multiselect-items {{ multiselectTemplate }}\">\n <ng-container> </ng-container>\n @for (\n multiSelect of multiselectItems;\n track $index;\n let ind = $index\n ) {\n <span class=\"multiselect-item\">\n {{ multiSelect?.name }}\n <!-- Active - Total Counter -->\n @if (\n inputConfig.multiSelectItemRange &&\n multiSelect?.totalCounter\n ) {\n <span>\n {{ multiSelect?.activeCounter }} of\n {{ multiSelect?.totalCounter }}\n </span>\n }\n\n @if (\n inputConfig.multiSelectItemRange &&\n !multiSelect?.totalCounter\n ) {\n <span>\n {{ multiSelect?.activeCounter }}\n </span>\n }\n\n @if (!inputConfig.isDisabled) {\n <!-- Active Counter -->\n <div\n (click)=\"removeMultiSelectItem(ind)\"\n class=\"multiselect-item-clear\"\n mainTooltip=\"Clear\"\n ngbTooltip\n position=\"top\"\n tooltipBackground=\"#2f2f2f\"\n >\n <svg-icon\n [src]=\"inputDropdownSvgRoutes.xClearSvg\"\n ></svg-icon>\n </div>\n }\n </span>\n }\n </div>\n }\n\n <!-- Dropdown search -->\n\n @if (!inputConfig.isIconInput) {\n <ca-input-test\n #t2=\"ngbPopover\"\n [ngbPopover]=\"caInputDropdownPopover\"\n popoverClass=\"ca-input-dropdown\"\n [autoClose]=\"'outside'\"\n [container]=\"'body'\"\n [placement]=\"\n _template == 'svgtext-dispatch-template'\n ? ['bottom-left', 'top-left']\n : ['bottom-left']\n \"\n #input\n [formControl]=\"getSuperControl! | formControl\"\n [incorrectValue]=\"isIncorrectValue\"\n [inputConfig]=\"inputConfig\"\n [selectedDropdownLabelColor]=\"\n inputConfig.dropdownLabel\n ? _activeItem\n ? _activeItem\n : activeItemColor\n : null\n \"\n [template]=\"_template\"\n (blurInput)=\"onBlurInput($event)\"\n (clear)=\"onClearInputEvent($event)\"\n (commandEvent)=\"commandEvent($event)\"\n (showHideDropdown)=\"showHideDropdown($event)\"\n (dropDownKeyNavigation)=\"dropDownKeyNavigation($event)\"\n (incorrectEvent)=\"onIncorrectInput($event)\"\n ></ca-input-test>\n }\n\n <!-- Dropdown icon instead of input -->\n @if (inputConfig.isIconInput) {\n <div\n class=\"d-flex justify-content-center align-items-center input-icon-container\"\n [ngClass]=\"{\n valid:\n inputConfig.isValidIcon &&\n !inputConfig.inputIcon?.includes('custom'),\n active: popoverRef?.isOpen(),\n }\"\n >\n <svg-icon\n #t2=\"ngbPopover\"\n [ngbPopover]=\"caInputDropdownPopover\"\n popoverClass=\"ca-input-dropdown\"\n [autoClose]=\"'outside'\"\n [container]=\"'body'\"\n [placement]=\"['bottom-left']\"\n class=\"input-icon\"\n [src]=\"\n inputDropdownSvgRoutes.repairPmSvgRoute +\n inputConfig.inputIcon\n \"\n ></svg-icon>\n </div>\n }\n</div>\n\n<ng-template #caInputDropdownPopover>\n <!--------------------------- Dropdown options --------------------------->\n @if (inputConfig?.mergeDropdownBodyWithInput && _options?.length) {\n <div\n class=\"dropdown-options-divider {{\n inputConfig.dropdownWidthClass\n }}\"\n [class.dispatch_dropdown]=\"_template == 'svgtext-dispatch-template'\"\n ></div>\n }\n\n @if (\n (inputConfig?.name != 'Address' &&\n inputConfig?.name != 'RoutingAddress' &&\n !inputConfig.isDisabled) ||\n ((inputConfig?.name == 'Address' ||\n inputConfig?.name == 'RoutingAddress') &&\n !inputConfig.isDisabled &&\n _options?.length)\n ) {\n <div\n (scroll)=\"onScrollDropdown($event.target)\"\n [ngClass]=\"{\n scroll: _options | caDropdownCount: _template,\n 'dropdown-options-groups':\n _template === 'groups' ||\n _template === 'load-broker-contact',\n 'dropdown-options-fuel-franchise':\n _template === 'fuel-franchise',\n 'merge-dropdown-body-with-input':\n inputConfig.mergeDropdownBodyWithInput,\n 'no-result-container': _options[0]?.name === 'No Results',\n 'svgtext-dispatch-template':\n _template == 'svgtext-dispatch-template',\n }\"\n class=\"dropdown-options {{ inputConfig.dropdownWidthClass }}\"\n >\n @switch (_template) {\n <!--------------------------- SVG Template (Render svgs or text if svgs doesn't exist ) --------------------------->\n\n @case (dropdownTemplateTypeEnum.SVG_TEMPLATE) {\n <app-ca-input-dropdown-svg-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-svg-template>\n <!-- <ng-container \n *ngTemplateOutlet=\"dropdownSvgTemplate\"\n ></ng-container> -->\n }\n\n <!--------------------------- Svg Text Template (display flex) --------------------------->\n\n @case (dropdownTemplateTypeEnum.SVGTEXT_TEMPLATE) {\n <app-ca-input-dropdown-svgtext-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-svgtext-template>\n\n <!-- <ng-container\n *ngTemplateOutlet=\"svgTextTemplate\"\n ></ng-container> -->\n }\n\n <!-------------------------------------------Dispatch dropdown-------------------------------------------->\n\n @case (dropdownTemplateTypeEnum.SVGTEXT_DISPATCH_TEMPLATE) {\n <app-ca-input-dropdown-svgtext-dispatch-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-svgtext-dispatch-template>\n\n <!-- <ng-container\n *ngTemplateOutlet=\"dispatchTemplate\"\n ></ng-container> -->\n }\n\n <!--------------------------- Details template (truck, trailer... details-pages) --------------------------->\n\n @case (dropdownTemplateTypeEnum.DETAILS_TEMPLATE) {\n <app-ca-input-dropdown-details-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n [sort]=\"_sort\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-details-template>\n\n <!-- <ng-container\n *ngTemplateOutlet=\"detailsTemplate\"\n ></ng-container> -->\n }\n\n <!--------------------------- Grouping template (can see on contact modal) --------------------------->\n\n @case (dropdownTemplateTypeEnum.GROUPS) {\n <app-ca-input-dropdown-groups\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-groups>\n }\n\n <!--------------------------- Multiselect Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.MULTISELECT) {\n <app-ca-input-dropdown-multiselect\n [options]=\"_options\"\n [lastActiveMultiselectItem]=\"lastActiveMultiselectItem\"\n [getSuperControl]=\"getSuperControl\"\n (onMultiselectSelect)=\"onMultiselectSelect($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-multiselect>\n }\n <!--------------------------- Labels Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LABELS) {\n <app-ca-input-dropdown-labels\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n [inputConfig]=\"inputConfig\"\n [labelMode]=\"labelMode\"\n [canAddNew]=\"_canAddNew\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-labels>\n }\n\n <!--------------------------- Dispatch Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.DISPATCH) {\n <app-ca-input-dropdown-dispatch\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-dispatch>\n }\n\n <!--------------------------- Load Dispatcher Template (user avatar + user name) --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHER) {\n <app-ca-input-dropdown-load-dispatcher\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-dispatcher>\n }\n\n <!--------------------------- Load Combine Truck-Trailer-Driver Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHES_TTD) {\n <app-ca-input-dropdown-load-dispatches-ttd\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-dispatches-ttd>\n }\n\n <!--------------------------- Load Broker Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_BROKER) {\n <app-ca-input-dropdown-load-broker\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-broker>\n }\n\n <!--------------------------- Load Broker Contact Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_BROKER_CONTACT) {\n <app-ca-input-dropdown-load-broker-contact\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-broker-contact>\n }\n\n <!--------------------------- Load Shipper Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_SHIPPER) {\n <app-ca-input-dropdown-load-shipper\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-shipper>\n }\n\n <!--------------------------- Template Text - Counter --------------------------->\n\n @case (dropdownTemplateTypeEnum.TEXT_COUNTER) {\n <app-ca-input-dropdown-text-counter\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-text-counter>\n }\n\n <!--------------------------- Fuel Franchise Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.FUEL_FRANCHISE) {\n <app-ca-input-dropdown-fuel-franchise\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n (toggleNestedList)=\"toggleNestedList($event)\"\n (onActiveItemGroup)=\"onActiveItemGroup($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-fuel-franchise>\n }\n\n <!-- Double Text Template -->\n\n @case (dropdownTemplateTypeEnum.DOUBLE_TEXT_TEMPLATE) {\n <app-ca-input-dropdown-double-text-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-double-text-template>\n }\n\n <!-- Double Column Template -->\n\n @case (dropdownTemplateTypeEnum.DOUBLE_COLUMN_TEMPLATE) {\n <app-ca-input-dropdown-double-text-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-double-text-template>\n }\n\n <!-- Triple Column Template -->\n\n @case (dropdownTemplateTypeEnum.TRIPLE_COLUMN_TEMPLATE) {\n <app-ca-input-dropdown-triple-text-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-triple-text-template>\n }\n\n <!-- PAYROLL TRUCKS Template -->\n\n @case (dropdownTemplateTypeEnum.PAYROLL_TRUCKS) {\n <app-ca-input-dropdown-payroll-trucks\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-payroll-trucks>\n }\n\n <!--------------------------- Default Template - Render Only Text --------------------------->\n @default {\n <app-ca-input-dropdown-default-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-default-template>\n }\n }\n </div>\n }\n</ng-template>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white-2::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}@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}}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active:not(.payroll-trucks):after,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:not(.payroll-trucks):after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#ccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ca-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:-webkit-max-content!important;width:-moz-max-content!important;width:max-content!important;padding:0!important;margin:0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;-moz-column-gap:29px;column-gap:29px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-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}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ca-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ca-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ca-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ca-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ca-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ca-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ca-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ca-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ca-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ca-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ca-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ca-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ca-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ca-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ca-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ca-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ca-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ca-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ca-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ca-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ca-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ca-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ca-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ca-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ca-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ca-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ca-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ca-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ca-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ca-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ca-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ca-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ca-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ca-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ca-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ca-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ca-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ca-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ca-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ca-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ca-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ca-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ca-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ca-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ca-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ca-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ca-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ca-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ca-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ca-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ca-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ca-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ca-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ca-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ca-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ca-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ca-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ca-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ca-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ca-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ca-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ca-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ca-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ca-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ca-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ca-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ca-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ca-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ca-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ca-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ca-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ca-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ca-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ca-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ca-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ca-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ca-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ca-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ca-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ca-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ca-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ca-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ca-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ca-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ca-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ca-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ca-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ca-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ca-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ca-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ca-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ca-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ca-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ca-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ca-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ca-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ca-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ca-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ca-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ca-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ca-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ca-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ca-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ca-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ca-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ca-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ca-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ca-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ca-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ca-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ca-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ca-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ca-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ca-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ca-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ca-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ca-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ca-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ca-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ca-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ca-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ca-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ca-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ca-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ca-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ca-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ca-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ca-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ca-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ca-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ca-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ca-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ca-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ca-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ca-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ca-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ca-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ca-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ca-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ca-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ca-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ca-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ca-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ca-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ca-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ca-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ca-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ca-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ca-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ca-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ca-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ca-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ca-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ca-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ca-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ca-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ca-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ca-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ca-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ca-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ca-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ca-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ca-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ca-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ca-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ca-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ca-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ca-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ca-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ca-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ca-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ca-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ca-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ca-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ca-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ca-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ca-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ca-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ca-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ca-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ca-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ca-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ca-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ca-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ca-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ca-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ca-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ca-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ca-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ca-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ca-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ca-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ca-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ca-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ca-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ca-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ca-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ca-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ca-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ca-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ca-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ca-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ca-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ca-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ca-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ca-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ca-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ca-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ca-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ca-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ca-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ca-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ca-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ca-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ca-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ca-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ca-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ca-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ca-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ca-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ca-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ca-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ca-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ca-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ca-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ca-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ca-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ca-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ca-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ca-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ca-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ca-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ca-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ca-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ca-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ca-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ca-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ca-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ca-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ca-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ca-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ca-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ca-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ca-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ca-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ca-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ca-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ca-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ca-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ca-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ca-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ca-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ca-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ca-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ca-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ca-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ca-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ca-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ca-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ca-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ca-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ca-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ca-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ca-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ca-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ca-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ca-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ca-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ca-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ca-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ca-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ca-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ca-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ca-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ca-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ca-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ca-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ca-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ca-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ca-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ca-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ca-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ca-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ca-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ca-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ca-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ca-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ca-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ca-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ca-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ca-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ca-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ca-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ca-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ca-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ca-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ca-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ca-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ca-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ca-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ca-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ca-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ca-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ca-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ca-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ca-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ca-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ca-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ca-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ca-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ca-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ca-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ca-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ca-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ca-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ca-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ca-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ca-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ca-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ca-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ca-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ca-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ca-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ca-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ca-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ca-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ca-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ca-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ca-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ca-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ca-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ca-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ca-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ca-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ca-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ca-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ca-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ca-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ca-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ca-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ca-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ca-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ca-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ca-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ca-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ca-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ca-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ca-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ca-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ca-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ca-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ca-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ca-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ca-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ca-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ca-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ca-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ca-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ca-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ca-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ca-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ca-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ca-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ca-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ca-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ca-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ca-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ca-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ca-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ca-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ca-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ca-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ca-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ca-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ca-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ca-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ca-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ca-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ca-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ca-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ca-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ca-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ca-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ca-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ca-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ca-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ca-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ca-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ca-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ca-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ca-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ca-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ca-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ca-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ca-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ca-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ca-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ca-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ca-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ca-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ca-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ca-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ca-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ca-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ca-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ca-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ca-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ca-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ca-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ca-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ca-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ca-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ca-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ca-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ca-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ca-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ca-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ca-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ca-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ca-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ca-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ca-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ca-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ca-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ca-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ca-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ca-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ca-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ca-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ca-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ca-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ca-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ca-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ca-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ca-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ca-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ca-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ca-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ca-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ca-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ca-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ca-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ca-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ca-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ca-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ca-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ca-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ca-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ca-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ca-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ca-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ca-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ca-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ca-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ca-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ca-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ca-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ca-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ca-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ca-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ca-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ca-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ca-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ca-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ca-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ca-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ca-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ca-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ca-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ca-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ca-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ca-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ca-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ca-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ca-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ca-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ca-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ca-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ca-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ca-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ca-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ca-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ca-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ca-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ca-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ca-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ca-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ca-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ca-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ca-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ca-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ca-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ca-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ca-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ca-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ca-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ca-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ca-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ca-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ca-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ca-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ca-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ca-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ca-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ca-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ca-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ca-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ca-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ca-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ca-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ca-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ca-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ca-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ca-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ca-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ca-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ca-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ca-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ca-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ca-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ca-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ca-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ca-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ca-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ca-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ca-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ca-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ca-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ca-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ca-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ca-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ca-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ca-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ca-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ca-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ca-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ca-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ca-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ca-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ca-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ca-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ca-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ca-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ca-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ca-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ca-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ca-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ca-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ca-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ca-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ca-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ca-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ca-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ca-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ca-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ca-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ca-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ca-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ca-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ca-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ca-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ca-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ca-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ca-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ca-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ca-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ca-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ca-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ca-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ca-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ca-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ca-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ca-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ca-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ca-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ca-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ca-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ca-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ca-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ca-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ca-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ca-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ca-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ca-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ca-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ca-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ca-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ca-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ca-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ca-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ca-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ca-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ca-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ca-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ca-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ca-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ca-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ca-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ca-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ca-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ca-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ca-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ca-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ca-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ca-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ca-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ca-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ca-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ca-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ca-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ca-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ca-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ca-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ca-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ca-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ca-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ca-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ca-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ca-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ca-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ca-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ca-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ca-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ca-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ca-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ca-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ca-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ca-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ca-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ca-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ca-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ca-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ca-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ca-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ca-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ca-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ca-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ca-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ca-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ca-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ca-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ca-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ca-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ca-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ca-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ca-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ca-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ca-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ca-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ca-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ca-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ca-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ca-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ca-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ca-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ca-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ca-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ca-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ca-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ca-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ca-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ca-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ca-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ca-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ca-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ca-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ca-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ca-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ca-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ca-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ca-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ca-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ca-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ca-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ca-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ca-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ca-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ca-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ca-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ca-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ca-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ca-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ca-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ca-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ca-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ca-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ca-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ca-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ca-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ca-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ca-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ca-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ca-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ca-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ca-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ca-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ca-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ca-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ca-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ca-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ca-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ca-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ca-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ca-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ca-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ca-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ca-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ca-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ca-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ca-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ca-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ca-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ca-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ca-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ca-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ca-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ca-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ca-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ca-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ca-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ca-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ca-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ca-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ca-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ca-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ca-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ca-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ca-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ca-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ca-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ca-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ca-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ca-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ca-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ca-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ca-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ca-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ca-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ca-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ca-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ca-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ca-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ca-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ca-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ca-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ca-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ca-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ca-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ca-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ca-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ca-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ca-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ca-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ca-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ca-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ca-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ca-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ca-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ca-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ca-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ca-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ca-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ca-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ca-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ca-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ca-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ca-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ca-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ca-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ca-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ca-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ca-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ca-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ca-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ca-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ca-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ca-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ca-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ca-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ca-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ca-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ca-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ca-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ca-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ca-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ca-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ca-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ca-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ca-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ca-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ca-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ca-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ca-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ca-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ca-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ca-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ca-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ca-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::-moz-selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::-moz-selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.ca-input-dropdown .arrow{display:none!important}.ca-input-dropdown .popover-body{margin-top:-2px!important}.ca-input-dropdown .popover-body .dropdown-options-divider{content:\"\";height:1px;border-radius:1px;background-color:#424242;position:absolute;z-index:99999;top:0;left:0}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-1{width:-7px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-2{width:-6px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-3{width:-5px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-4{width:-4px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-5{width:-3px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-6{width:-2px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-7{width:-1px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-8{width:0px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-9{width:1px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-10{width:2px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-11{width:3px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-12{width:4px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-13{width:5px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-14{width:6px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-15{width:7px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-16{width:8px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-17{width:9px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-18{width:10px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-19{width:11px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-20{width:12px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-21{width:13px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-22{width:14px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-23{width:15px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-24{width:16px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-25{width:17px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-26{width:18px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-27{width:19px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-28{width:20px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-29{width:21px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-30{width:22px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-31{width:23px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-32{width:24px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-33{width:25px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-34{width:26px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-35{width:27px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-36{width:28px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-37{width:29px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-38{width:30px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-39{width:31px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-40{width:32px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-41{width:33px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-42{width:34px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-43{width:35px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-44{width:36px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-45{width:37px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-46{width:38px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-47{width:39px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-48{width:40px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-49{width:41px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-50{width:42px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-51{width:43px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-52{width:44px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-53{width:45px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-54{width:46px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-55{width:47px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-56{width:48px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-57{width:49px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-58{width:50px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-59{width:51px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-60{width:52px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-61{width:53px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-62{width:54px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-63{width:55px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-64{width:56px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-65{width:57px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-66{width:58px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-67{width:59px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-68{width:60px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-69{width:61px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-70{width:62px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-71{width:63px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-72{width:64px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-73{width:65px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-74{width:66px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-75{width:67px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-76{width:68px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-77{width:69px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-78{width:70px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-79{width:71px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-80{width:72px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-81{width:73px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-82{width:74px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-83{width:75px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-84{width:76px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-85{width:77px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-86{width:78px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-87{width:79px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-88{width:80px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-89{width:81px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-90{width:82px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-91{width:83px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-92{width:84px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-93{width:85px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-94{width:86px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-95{width:87px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-96{width:88px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-97{width:89px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-98{width:90px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-99{width:91px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-100{width:92px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-101{width:93px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-102{width:94px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-103{width:95px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-104{width:96px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-105{width:97px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-106{width:98px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-107{width:99px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-108{width:100px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-109{width:101px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-110{width:102px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-111{width:103px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-112{width:104px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-113{width:105px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-114{width:106px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-115{width:107px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-116{width:108px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-117{width:109px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-118{width:110px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-119{width:111px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-120{width:112px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-121{width:113px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-122{width:114px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-123{width:115px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-124{width:116px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-125{width:117px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-126{width:118px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-127{width:119px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-128{width:120px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-129{width:121px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-130{width:122px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-131{width:123px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-132{width:124px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-133{width:125px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-134{width:126px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-135{width:127px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-136{width:128px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-137{width:129px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-138{width:130px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-139{width:131px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-140{width:132px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-141{width:133px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-142{width:134px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-143{width:135px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-144{width:136px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-145{width:137px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-146{width:138px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-147{width:139px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-148{width:140px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-149{width:141px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-150{width:142px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-151{width:143px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-152{width:144px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-153{width:145px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-154{width:146px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-155{width:147px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-156{width:148px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-157{width:149px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-158{width:150px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-159{width:151px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-160{width:152px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-161{width:153px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-162{width:154px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-163{width:155px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-164{width:156px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-165{width:157px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-166{width:158px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-167{width:159px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-168{width:160px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-169{width:161px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-170{width:162px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-171{width:163px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-172{width:164px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-173{width:165px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-174{width:166px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-175{width:167px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-176{width:168px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-177{width:169px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-178{width:170px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-179{width:171px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-180{width:172px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-181{width:173px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-182{width:174px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-183{width:175px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-184{width:176px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-185{width:177px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-186{width:178px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-187{width:179px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-188{width:180px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-189{width:181px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-190{width:182px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-191{width:183px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-192{width:184px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-193{width:185px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-194{width:186px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-195{width:187px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-196{width:188px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-197{width:189px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-198{width:190px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-199{width:191px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-200{width:192px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-201{width:193px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-202{width:194px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-203{width:195px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-204{width:196px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-205{width:197px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-206{width:198px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-207{width:199px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-208{width:200px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-209{width:201px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-210{width:202px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-211{width:203px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-212{width:204px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-213{width:205px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-214{width:206px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-215{width:207px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-216{width:208px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-217{width:209px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-218{width:210px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-219{width:211px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-220{width:212px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-221{width:213px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-222{width:214px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-223{width:215px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-224{width:216px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-225{width:217px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-226{width:218px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-227{width:219px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-228{width:220px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-229{width:221px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-230{width:222px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-231{width:223px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-232{width:224px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-233{width:225px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-234{width:226px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-235{width:227px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-236{width:228px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-237{width:229px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-238{width:230px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-239{width:231px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-240{width:232px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-241{width:233px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-242{width:234px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-243{width:235px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-244{width:236px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-245{width:237px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-246{width:238px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-247{width:239px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-248{width:240px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-249{width:241px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-250{width:242px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-251{width:243px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-252{width:244px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-253{width:245px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-254{width:246px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-255{width:247px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-256{width:248px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-257{width:249px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-258{width:250px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-259{width:251px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-260{width:252px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-261{width:253px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-262{width:254px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-263{width:255px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-264{width:256px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-265{width:257px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-266{width:258px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-267{width:259px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-268{width:260px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-269{width:261px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-270{width:262px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-271{width:263px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-272{width:264px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-273{width:265px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-274{width:266px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-275{width:267px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-276{width:268px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-277{width:269px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-278{width:270px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-279{width:271px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-280{width:272px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-281{width:273px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-282{width:274px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-283{width:275px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-284{width:276px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-285{width:277px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-286{width:278px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-287{width:279px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-288{width:280px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-289{width:281px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-290{width:282px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-291{width:283px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-292{width:284px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-293{width:285px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-294{width:286px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-295{width:287px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-296{width:288px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-297{width:289px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-298{width:290px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-299{width:291px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-300{width:292px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-301{width:293px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-302{width:294px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-303{width:295px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-304{width:296px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-305{width:297px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-306{width:298px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-307{width:299px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-308{width:300px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-309{width:301px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-310{width:302px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-311{width:303px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-312{width:304px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-313{width:305px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-314{width:306px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-315{width:307px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-316{width:308px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-317{width:309px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-318{width:310px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-319{width:311px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-320{width:312px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-321{width:313px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-322{width:314px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-323{width:315px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-324{width:316px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-325{width:317px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-326{width:318px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-327{width:319px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-328{width:320px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-329{width:321px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-330{width:322px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-331{width:323px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-332{width:324px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-333{width:325px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-334{width:326px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-335{width:327px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-336{width:328px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-337{width:329px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-338{width:330px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-339{width:331px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-340{width:332px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-341{width:333px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-342{width:334px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-343{width:335px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-344{width:336px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-345{width:337px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-346{width:338px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-347{width:339px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-348{width:340px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-349{width:341px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-350{width:342px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-351{width:343px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-352{width:344px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-353{width:345px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-354{width:346px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-355{width:347px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-356{width:348px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-357{width:349px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-358{width:350px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-359{width:351px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-360{width:352px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-361{width:353px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-362{width:354px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-363{width:355px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-364{width:356px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-365{width:357px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-366{width:358px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-367{width:359px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-368{width:360px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-369{width:361px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-370{width:362px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-371{width:363px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-372{width:364px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-373{width:365px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-374{width:366px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-375{width:367px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-376{width:368px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-377{width:369px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-378{width:370px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-379{width:371px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-380{width:372px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-381{width:373px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-382{width:374px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-383{width:375px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-384{width:376px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-385{width:377px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-386{width:378px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-387{width:379px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-388{width:380px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-389{width:381px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-390{width:382px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-391{width:383px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-392{width:384px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-393{width:385px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-394{width:386px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-395{width:387px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-396{width:388px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-397{width:389px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-398{width:390px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-399{width:391px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-400{width:392px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-401{width:393px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-402{width:394px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-403{width:395px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-404{width:396px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-405{width:397px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-406{width:398px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-407{width:399px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-408{width:400px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-409{width:401px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-410{width:402px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-411{width:403px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-412{width:404px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-413{width:405px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-414{width:406px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-415{width:407px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-416{width:408px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-417{width:409px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-418{width:410px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-419{width:411px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-420{width:412px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-421{width:413px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-422{width:414px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-423{width:415px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-424{width:416px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-425{width:417px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-426{width:418px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-427{width:419px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-428{width:420px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-429{width:421px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-430{width:422px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-431{width:423px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-432{width:424px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-433{width:425px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-434{width:426px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-435{width:427px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-436{width:428px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-437{width:429px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-438{width:430px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-439{width:431px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-440{width:432px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-441{width:433px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-442{width:434px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-443{width:435px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-444{width:436px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-445{width:437px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-446{width:438px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-447{width:439px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-448{width:440px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-449{width:441px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-450{width:442px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-451{width:443px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-452{width:444px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-453{width:445px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-454{width:446px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-455{width:447px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-456{width:448px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-457{width:449px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-458{width:450px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-459{width:451px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-460{width:452px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-461{width:453px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-462{width:454px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-463{width:455px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-464{width:456px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-465{width:457px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-466{width:458px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-467{width:459px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-468{width:460px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-469{width:461px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-470{width:462px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-471{width:463px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-472{width:464px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-473{width:465px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-474{width:466px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-475{width:467px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-476{width:468px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-477{width:469px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-478{width:470px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-479{width:471px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-480{width:472px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-481{width:473px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-482{width:474px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-483{width:475px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-484{width:476px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-485{width:477px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-486{width:478px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-487{width:479px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-488{width:480px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-489{width:481px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-490{width:482px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-491{width:483px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-492{width:484px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-493{width:485px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-494{width:486px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-495{width:487px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-496{width:488px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-497{width:489px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-498{width:490px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-499{width:491px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-500{width:492px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-501{width:493px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-502{width:494px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-503{width:495px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-504{width:496px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-505{width:497px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-506{width:498px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-507{width:499px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-508{width:500px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-509{width:501px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-510{width:502px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-511{width:503px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-512{width:504px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-513{width:505px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-514{width:506px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-515{width:507px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-516{width:508px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-517{width:509px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-518{width:510px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-519{width:511px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-520{width:512px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-521{width:513px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-522{width:514px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-523{width:515px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-524{width:516px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-525{width:517px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-526{width:518px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-527{width:519px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-528{width:520px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-529{width:521px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-530{width:522px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-531{width:523px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-532{width:524px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-533{width:525px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-534{width:526px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-535{width:527px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-536{width:528px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-537{width:529px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-538{width:530px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-539{width:531px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-540{width:532px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-541{width:533px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-542{width:534px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-543{width:535px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-544{width:536px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-545{width:537px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-546{width:538px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-547{width:539px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-548{width:540px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-549{width:541px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-550{width:542px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-551{width:543px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-552{width:544px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-553{width:545px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-554{width:546px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-555{width:547px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-556{width:548px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-557{width:549px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-558{width:550px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-559{width:551px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-560{width:552px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-561{width:553px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-562{width:554px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-563{width:555px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-564{width:556px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-565{width:557px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-566{width:558px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-567{width:559px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-568{width:560px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-569{width:561px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-570{width:562px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-571{width:563px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-572{width:564px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-573{width:565px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-574{width:566px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-575{width:567px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-576{width:568px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-577{width:569px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-578{width:570px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-579{width:571px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-580{width:572px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-581{width:573px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-582{width:574px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-583{width:575px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-584{width:576px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-585{width:577px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-586{width:578px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-587{width:579px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-588{width:580px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-589{width:581px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-590{width:582px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-591{width:583px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-592{width:584px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-593{width:585px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-594{width:586px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-595{width:587px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-596{width:588px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-597{width:589px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-598{width:590px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-599{width:591px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-600{width:592px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-601{width:593px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-602{width:594px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-603{width:595px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-604{width:596px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-605{width:597px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-606{width:598px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-607{width:599px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-608{width:600px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-609{width:601px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-610{width:602px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-611{width:603px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-612{width:604px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-613{width:605px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-614{width:606px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-615{width:607px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-616{width:608px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-617{width:609px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-618{width:610px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-619{width:611px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-620{width:612px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-621{width:613px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-622{width:614px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-623{width:615px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-624{width:616px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-625{width:617px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-626{width:618px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-627{width:619px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-628{width:620px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-629{width:621px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-630{width:622px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-631{width:623px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-632{width:624px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-633{width:625px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-634{width:626px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-635{width:627px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-636{width:628px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-637{width:629px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-638{width:630px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-639{width:631px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-640{width:632px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-641{width:633px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-642{width:634px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-643{width:635px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-644{width:636px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-645{width:637px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-646{width:638px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-647{width:639px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-648{width:640px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-649{width:641px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-650{width:642px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-651{width:643px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-652{width:644px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-653{width:645px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-654{width:646px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-655{width:647px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-656{width:648px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-657{width:649px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-658{width:650px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-659{width:651px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-660{width:652px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-661{width:653px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-662{width:654px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-663{width:655px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-664{width:656px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-665{width:657px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-666{width:658px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-667{width:659px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-668{width:660px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-669{width:661px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-670{width:662px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-671{width:663px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-672{width:664px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-673{width:665px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-674{width:666px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-675{width:667px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-676{width:668px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-677{width:669px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-678{width:670px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-679{width:671px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-680{width:672px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-681{width:673px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-682{width:674px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-683{width:675px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-684{width:676px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-685{width:677px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-686{width:678px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-687{width:679px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-688{width:680px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-689{width:681px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-690{width:682px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-691{width:683px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-692{width:684px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-693{width:685px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-694{width:686px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-695{width:687px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-696{width:688px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-697{width:689px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-698{width:690px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-699{width:691px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-700{width:692px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-701{width:693px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-702{width:694px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-703{width:695px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-704{width:696px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-705{width:697px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-706{width:698px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-707{width:699px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-708{width:700px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-709{width:701px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-710{width:702px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-711{width:703px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-712{width:704px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-713{width:705px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-714{width:706px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-715{width:707px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-716{width:708px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-717{width:709px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-718{width:710px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-719{width:711px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-720{width:712px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-721{width:713px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-722{width:714px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-723{width:715px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-724{width:716px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-725{width:717px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-726{width:718px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-727{width:719px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-728{width:720px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-729{width:721px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-730{width:722px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-731{width:723px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-732{width:724px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-733{width:725px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-734{width:726px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-735{width:727px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-736{width:728px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-737{width:729px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-738{width:730px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-739{width:731px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-740{width:732px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-741{width:733px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-742{width:734px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-743{width:735px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-744{width:736px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-745{width:737px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-746{width:738px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-747{width:739px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-748{width:740px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-749{width:741px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-750{width:742px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-751{width:743px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-752{width:744px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-753{width:745px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-754{width:746px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-755{width:747px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-756{width:748px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-757{width:749px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-758{width:750px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-759{width:751px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-760{width:752px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-761{width:753px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-762{width:754px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-763{width:755px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-764{width:756px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-765{width:757px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-766{width:758px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-767{width:759px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-768{width:760px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-769{width:761px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-770{width:762px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-771{width:763px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-772{width:764px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-773{width:765px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-774{width:766px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-775{width:767px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-776{width:768px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-777{width:769px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-778{width:770px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-779{width:771px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-780{width:772px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-781{width:773px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-782{width:774px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-783{width:775px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-784{width:776px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-785{width:777px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-786{width:778px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-787{width:779px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-788{width:780px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-789{width:781px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-790{width:782px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-791{width:783px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-792{width:784px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-793{width:785px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-794{width:786px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-795{width:787px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-796{width:788px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-797{width:789px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-798{width:790px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-799{width:791px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-800{width:792px}.ca-input-dropdown .popover-body .dropdown-options-divider.dispatch_dropdown{top:-4px}.ca-input-dropdown .popover-body .w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options{position:relative;top:0;left:0;z-index:1000;max-height:190px;width:100%;background-color:#2f2f2f;border-radius:3px;padding:4px;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;padding-right:0}.ca-input-dropdown .popover-body .dropdown-options.scroll .plus-icon{margin-right:1px!important}.ca-input-dropdown .popover-body .dropdown-options.scroll.load-dispatcher-wrapper{overflow-y:scroll;max-height:220px}.ca-input-dropdown .popover-body .dropdown-options.scroll.load-dispatcher-wrapper .scrollable-element{max-height:208px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options-fuel-franchise{padding:4px;max-height:300px}.ca-input-dropdown .popover-body .dropdown-options.no-result-container{padding:6px 10px!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option{padding:3px 4px;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result{line-height:14px;font-size:11px;font-weight:700;color:#919191;height:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new{padding:4.5px 6px 4.5px 4px;font-size:11px;font-weight:700;color:#92b1f5;position:relative;transition:background .2s ease-in-out,color .2s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new:hover{color:#fff;background:#3b73ed66}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ca-input-dropdown .w-col-288{width:288px!important}.ca-input-dropdown.bs-popover-top .popover-body{margin-top:0!important}.ca-input-dropdown.bs-popover-top .popover-body .dropdown-options-divider.dispatch_dropdown{top:auto;bottom:-6px}.ca-input-dropdown.bs-popover-top .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:2px 2px 0 0!important}.ca-input-dropdown.bs-popover-top .popover-body .dropdown-options.svgtext-dispatch-template{top:6px!important}\n"], dependencies: [{ kind: "ngmodule", type:
12634
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaInputDropdownComponent, isStandalone: true, selector: "app-ca-input-dropdown", inputs: { label: "label", optionValue: "optionValue", template: "template", multiselectTemplate: "multiselectTemplate", inputConfig: "inputConfig", canAddNew: "canAddNew", canOpenModal: "canOpenModal", sort: "sort", activeItem: "activeItem", activeItemColor: "activeItemColor", labelMode: "labelMode", options: "options", preloadMultiselectItems: "preloadMultiselectItems", isDetailsPages: "isDetailsPages", isIncorrectValue: "isIncorrectValue", isAddressDropdown: "isAddressDropdown" }, outputs: { selectedItem: "selectedItem", selectedItems: "selectedItems", selectedItemColor: "selectedItemColor", selectedLabelMode: "selectedLabelMode", closeDropdown: "closeDropdown", saveItem: "saveItem", incorrectEvent: "incorrectEvent", placeholderIconEvent: "placeholderIconEvent", paginationEvent: "pagination", activeGroupEvent: "activeGroup", clearInputEvent: "clearInputEvent" }, providers: [FormControlPipe], viewQueries: [{ propertyName: "inputRef", first: true, predicate: ["input"], descendants: true }, { propertyName: "popoverRef", first: true, predicate: ["t2"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div\n class=\"application-dropdown\"\n [ngClass]=\"\n inputConfig\n | inputDropdownMultiselectClass\n : multiselectItems\n : isMultiSelectInputFocus\n \"\n>\n @if (multiselectItems.length) {\n <p class=\"multiselect-label\">\n {{ multiSelectLabel }}\n </p>\n }\n\n @if (inputConfig.multiSelectDropdownActive) {\n <!-- Multiselect arrow -->\n <svg-icon\n class=\"multiselect-arrow\"\n [src]=\"inputDropdownSvgRoutes.inputDropdownArrowSvg\"\n (click)=\"toggleMultiselectDropdown()\"\n ></svg-icon>\n }\n\n @if (multiselectItems.length && !inputConfig.isDisabled) {\n <!-- Multiselect clear all -->\n <div\n class=\"input-clear multiselect-clear\"\n mainTooltip=\"Clear All\"\n ngbTooltip\n position=\"top\"\n tooltipBackground=\"#2f2f2f\"\n (click)=\"deleteAllMultiSelectItems()\"\n >\n <svg-icon\n class=\"input-clear-x\"\n [src]=\"inputDropdownSvgRoutes.xClearSvg\"\n ></svg-icon>\n </div>\n }\n\n @if (\n inputConfig.multiselectDropdown &&\n multiselectItems.length &&\n _template === 'multiselect'\n ) {\n <!-- Multiselect items -->\n <div class=\"multiselect-items {{ multiselectTemplate }}\">\n <ng-container> </ng-container>\n @for (\n multiSelect of multiselectItems;\n track $index;\n let ind = $index\n ) {\n <span class=\"multiselect-item\">\n {{ multiSelect?.name }}\n <!-- Active - Total Counter -->\n @if (\n inputConfig.multiSelectItemRange &&\n multiSelect?.totalCounter\n ) {\n <span>\n {{ multiSelect?.activeCounter }} of\n {{ multiSelect?.totalCounter }}\n </span>\n }\n\n @if (\n inputConfig.multiSelectItemRange &&\n !multiSelect?.totalCounter\n ) {\n <span>\n {{ multiSelect?.activeCounter }}\n </span>\n }\n\n @if (!inputConfig.isDisabled) {\n <!-- Active Counter -->\n <div\n (click)=\"removeMultiSelectItem(ind)\"\n class=\"multiselect-item-clear\"\n mainTooltip=\"Clear\"\n ngbTooltip\n position=\"top\"\n tooltipBackground=\"#2f2f2f\"\n >\n <svg-icon\n [src]=\"inputDropdownSvgRoutes.xClearSvg\"\n ></svg-icon>\n </div>\n }\n </span>\n }\n </div>\n }\n\n <!-- Dropdown search -->\n\n @if (!inputConfig.isIconInput) {\n <ca-input-test\n #t2=\"ngbPopover\"\n [ngbPopover]=\"caInputDropdownPopover\"\n popoverClass=\"ca-input-dropdown\"\n [autoClose]=\"'outside'\"\n [container]=\"'body'\"\n [placement]=\"\n _template == 'svgtext-dispatch-template'\n ? ['bottom-left', 'top-left']\n : ['bottom-left']\n \"\n #input\n [formControl]=\"inputFormControl | formControl\"\n [incorrectValue]=\"isIncorrectValue\"\n [inputConfig]=\"inputConfig\"\n [selectedDropdownLabelColor]=\"\n inputConfig.dropdownLabel\n ? _activeItem\n ? _activeItem\n : activeItemColor\n : null\n \"\n [template]=\"_template\"\n (blurInput)=\"onBlurInput($event)\"\n (clear)=\"onClearInputEvent($event)\"\n (commandEvent)=\"commandEvent($event)\"\n (showHideDropdown)=\"showHideDropdown($event)\"\n (dropDownKeyNavigation)=\"dropDownKeyNavigation($event)\"\n (incorrectEvent)=\"onIncorrectInput($event)\"\n (hidden)=\"handleHiddenDropdown()\"\n (shown)=\"handleOpenDropdown()\"\n ></ca-input-test>\n }\n\n <!-- Dropdown icon instead of input -->\n @if (inputConfig.isIconInput) {\n <div\n class=\"d-flex justify-content-center align-items-center input-icon-container\"\n [ngClass]=\"{\n valid:\n inputConfig.isValidIcon &&\n !inputConfig.inputIcon?.includes('custom'),\n active: popoverRef?.isOpen(),\n }\"\n >\n <svg-icon\n #t2=\"ngbPopover\"\n [ngbPopover]=\"caInputDropdownPopover\"\n popoverClass=\"ca-input-dropdown\"\n [autoClose]=\"'outside'\"\n [container]=\"'body'\"\n [placement]=\"['bottom-left']\"\n class=\"input-icon\"\n [src]=\"\n inputDropdownSvgRoutes.repairPmSvgRoute +\n inputConfig.inputIcon\n \"\n ></svg-icon>\n </div>\n }\n</div>\n<ng-template #caInputDropdownPopover>\n <!--------------------------- Dropdown options --------------------------->\n @if (inputConfig?.mergeDropdownBodyWithInput && _options?.length) {\n <div\n class=\"dropdown-options-divider {{\n inputConfig.dropdownWidthClass\n }}\"\n [class.dispatch_dropdown]=\"_template == 'svgtext-dispatch-template'\"\n ></div>\n }\n\n @if (\n (inputConfig?.name != 'Address' &&\n inputConfig?.name != 'RoutingAddress' &&\n !inputConfig.isDisabled) ||\n ((inputConfig?.name == 'Address' ||\n inputConfig?.name == 'RoutingAddress') &&\n !inputConfig.isDisabled &&\n _options?.length)\n ) {\n <div\n (scroll)=\"onScrollDropdown($event.target)\"\n [ngClass]=\"{\n scroll: _options | caDropdownCount: _template,\n 'dropdown-options-groups':\n _template === 'groups' ||\n _template === 'load-broker-contact',\n 'dropdown-options-fuel-franchise':\n _template === 'fuel-franchise',\n 'merge-dropdown-body-with-input':\n inputConfig.mergeDropdownBodyWithInput,\n 'no-result-container': _options[0]?.name === 'No Results',\n 'svgtext-dispatch-template':\n _template == 'svgtext-dispatch-template',\n }\"\n class=\"dropdown-options {{ inputConfig.dropdownWidthClass }}\"\n >\n @switch (_template) {\n <!--------------------------- SVG Template (Render svgs or text if svgs doesn't exist ) --------------------------->\n\n @case (dropdownTemplateTypeEnum.SVG_TEMPLATE) {\n <app-ca-input-dropdown-svg-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-svg-template>\n <!-- <ng-container \n *ngTemplateOutlet=\"dropdownSvgTemplate\"\n ></ng-container> -->\n }\n\n <!--------------------------- Svg Text Template (display flex) --------------------------->\n\n @case (dropdownTemplateTypeEnum.SVGTEXT_TEMPLATE) {\n <app-ca-input-dropdown-svgtext-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-svgtext-template>\n\n <!-- <ng-container\n *ngTemplateOutlet=\"svgTextTemplate\"\n ></ng-container> -->\n }\n\n <!-------------------------------------------Dispatch dropdown-------------------------------------------->\n\n @case (dropdownTemplateTypeEnum.SVGTEXT_DISPATCH_TEMPLATE) {\n <app-ca-input-dropdown-svgtext-dispatch-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-svgtext-dispatch-template>\n\n <!-- <ng-container\n *ngTemplateOutlet=\"dispatchTemplate\"\n ></ng-container> -->\n }\n\n <!--------------------------- Details template (truck, trailer... details-pages) --------------------------->\n\n @case (dropdownTemplateTypeEnum.DETAILS_TEMPLATE) {\n <app-ca-input-dropdown-details-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n [sort]=\"_sort\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-details-template>\n\n <!-- <ng-container\n *ngTemplateOutlet=\"detailsTemplate\"\n ></ng-container> -->\n }\n\n <!--------------------------- Grouping template (can see on contact modal) --------------------------->\n\n @case (dropdownTemplateTypeEnum.GROUPS) {\n <app-ca-input-dropdown-groups\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-groups>\n }\n\n <!--------------------------- Multiselect Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.MULTISELECT) {\n <app-ca-input-dropdown-multiselect\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [lastActiveMultiselectItem]=\"lastActiveMultiselectItem\"\n [getSuperControl]=\"inputFormControl\"\n (onMultiselectSelect)=\"onMultiselectSelect($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-multiselect>\n }\n <!--------------------------- Labels Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LABELS) {\n <app-ca-input-dropdown-labels\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n [inputConfig]=\"inputConfig\"\n [labelMode]=\"labelMode\"\n [canAddNew]=\"_canAddNew\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-labels>\n }\n\n <!--------------------------- Dispatch Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.DISPATCH) {\n <app-ca-input-dropdown-dispatch\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-dispatch>\n }\n\n <!--------------------------- Load Dispatcher Template (user avatar + user name) --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHER) {\n <app-ca-input-dropdown-load-dispatcher\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-dispatcher>\n }\n\n <!--------------------------- Load Combine Truck-Trailer-Driver Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHES_TTD) {\n <app-ca-input-dropdown-load-dispatches-ttd\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-dispatches-ttd>\n }\n\n <!--------------------------- Load Broker Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_BROKER) {\n <app-ca-input-dropdown-load-broker\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-broker>\n }\n\n <!--------------------------- Load Broker Contact Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_BROKER_CONTACT) {\n <app-ca-input-dropdown-load-broker-contact\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-broker-contact>\n }\n\n <!--------------------------- Load Shipper Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_SHIPPER) {\n <app-ca-input-dropdown-load-shipper\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-shipper>\n }\n\n <!--------------------------- Template Text - Counter --------------------------->\n\n @case (dropdownTemplateTypeEnum.TEXT_COUNTER) {\n <app-ca-input-dropdown-text-counter\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-text-counter>\n }\n\n <!--------------------------- Fuel Franchise Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.FUEL_FRANCHISE) {\n <app-ca-input-dropdown-fuel-franchise\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n (toggleNestedList)=\"toggleNestedList($event)\"\n (onActiveItemGroup)=\"onActiveItemGroup($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-fuel-franchise>\n }\n\n <!-- Double Text Template -->\n\n @case (dropdownTemplateTypeEnum.DOUBLE_TEXT_TEMPLATE) {\n <app-ca-input-dropdown-double-text-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-double-text-template>\n }\n\n <!-- Double Column Template -->\n\n @case (dropdownTemplateTypeEnum.DOUBLE_COLUMN_TEMPLATE) {\n <app-ca-input-dropdown-double-text-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-double-text-template>\n }\n\n <!-- Triple Column Template -->\n\n @case (dropdownTemplateTypeEnum.TRIPLE_COLUMN_TEMPLATE) {\n <app-ca-input-dropdown-triple-text-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-triple-text-template>\n }\n\n <!-- PAYROLL TRUCKS Template -->\n\n @case (dropdownTemplateTypeEnum.PAYROLL_TRUCKS) {\n <app-ca-input-dropdown-payroll-trucks\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-payroll-trucks>\n }\n\n <!--------------------------- Default Template - Render Only Text --------------------------->\n @default {\n <app-ca-input-dropdown-default-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n [inputConfig]=\"inputConfig\"\n [searchText]=\"searchText\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-default-template>\n }\n }\n </div>\n }\n</ng-template>", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white-2::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}@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}}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active:not(.payroll-trucks):after,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:not(.payroll-trucks):after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#ccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ca-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:-webkit-max-content!important;width:-moz-max-content!important;width:max-content!important;padding:0!important;margin:0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;-moz-column-gap:29px;column-gap:29px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-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}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ca-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ca-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ca-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ca-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ca-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ca-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ca-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ca-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ca-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ca-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ca-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ca-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ca-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ca-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ca-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ca-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ca-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ca-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ca-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ca-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ca-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ca-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ca-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ca-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ca-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ca-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ca-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ca-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ca-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ca-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ca-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ca-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ca-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ca-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ca-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ca-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ca-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ca-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ca-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ca-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ca-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ca-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ca-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ca-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ca-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ca-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ca-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ca-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ca-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ca-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ca-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ca-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ca-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ca-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ca-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ca-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ca-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ca-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ca-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ca-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ca-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ca-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ca-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ca-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ca-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ca-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ca-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ca-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ca-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ca-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ca-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ca-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ca-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ca-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ca-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ca-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ca-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ca-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ca-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ca-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ca-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ca-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ca-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ca-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ca-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ca-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ca-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ca-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ca-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ca-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ca-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ca-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ca-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ca-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ca-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ca-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ca-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ca-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ca-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ca-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ca-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ca-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ca-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ca-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ca-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ca-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ca-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ca-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ca-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ca-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ca-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ca-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ca-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ca-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ca-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ca-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ca-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ca-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ca-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ca-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ca-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ca-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ca-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ca-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ca-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ca-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ca-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ca-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ca-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ca-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ca-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ca-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ca-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ca-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ca-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ca-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ca-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ca-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ca-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ca-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ca-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ca-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ca-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ca-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ca-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ca-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ca-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ca-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ca-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ca-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ca-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ca-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ca-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ca-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ca-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ca-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ca-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ca-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ca-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ca-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ca-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ca-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ca-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ca-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ca-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ca-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ca-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ca-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ca-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ca-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ca-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ca-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ca-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ca-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ca-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ca-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ca-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ca-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ca-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ca-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ca-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ca-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ca-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ca-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ca-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ca-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ca-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ca-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ca-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ca-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ca-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ca-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ca-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ca-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ca-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ca-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ca-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ca-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ca-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ca-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ca-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ca-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ca-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ca-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ca-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ca-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ca-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ca-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ca-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ca-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ca-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ca-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ca-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ca-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ca-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ca-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ca-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ca-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ca-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ca-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ca-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ca-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ca-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ca-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ca-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ca-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ca-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ca-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ca-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ca-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ca-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ca-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ca-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ca-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ca-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ca-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ca-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ca-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ca-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ca-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ca-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ca-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ca-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ca-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ca-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ca-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ca-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ca-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ca-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ca-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ca-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ca-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ca-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ca-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ca-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ca-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ca-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ca-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ca-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ca-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ca-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ca-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ca-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ca-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ca-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ca-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ca-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ca-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ca-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ca-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ca-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ca-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ca-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ca-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ca-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ca-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ca-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ca-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ca-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ca-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ca-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ca-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ca-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ca-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ca-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ca-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ca-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ca-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ca-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ca-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ca-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ca-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ca-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ca-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ca-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ca-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ca-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ca-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ca-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ca-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ca-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ca-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ca-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ca-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ca-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ca-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ca-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ca-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ca-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ca-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ca-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ca-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ca-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ca-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ca-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ca-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ca-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ca-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ca-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ca-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ca-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ca-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ca-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ca-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ca-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ca-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ca-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ca-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ca-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ca-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ca-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ca-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ca-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ca-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ca-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ca-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ca-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ca-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ca-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ca-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ca-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ca-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ca-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ca-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ca-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ca-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ca-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ca-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ca-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ca-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ca-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ca-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ca-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ca-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ca-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ca-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ca-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ca-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ca-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ca-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ca-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ca-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ca-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ca-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ca-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ca-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ca-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ca-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ca-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ca-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ca-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ca-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ca-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ca-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ca-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ca-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ca-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ca-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ca-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ca-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ca-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ca-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ca-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ca-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ca-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ca-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ca-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ca-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ca-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ca-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ca-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ca-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ca-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ca-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ca-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ca-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ca-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ca-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ca-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ca-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ca-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ca-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ca-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ca-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ca-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ca-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ca-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ca-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ca-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ca-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ca-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ca-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ca-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ca-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ca-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ca-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ca-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ca-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ca-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ca-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ca-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ca-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ca-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ca-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ca-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ca-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ca-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ca-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ca-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ca-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ca-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ca-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ca-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ca-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ca-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ca-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ca-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ca-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ca-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ca-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ca-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ca-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ca-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ca-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ca-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ca-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ca-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ca-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ca-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ca-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ca-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ca-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ca-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ca-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ca-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ca-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ca-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ca-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ca-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ca-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ca-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ca-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ca-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ca-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ca-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ca-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ca-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ca-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ca-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ca-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ca-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ca-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ca-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ca-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ca-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ca-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ca-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ca-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ca-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ca-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ca-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ca-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ca-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ca-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ca-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ca-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ca-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ca-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ca-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ca-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ca-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ca-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ca-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ca-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ca-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ca-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ca-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ca-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ca-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ca-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ca-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ca-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ca-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ca-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ca-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ca-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ca-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ca-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ca-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ca-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ca-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ca-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ca-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ca-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ca-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ca-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ca-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ca-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ca-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ca-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ca-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ca-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ca-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ca-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ca-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ca-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ca-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ca-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ca-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ca-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ca-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ca-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ca-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ca-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ca-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ca-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ca-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ca-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ca-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ca-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ca-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ca-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ca-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ca-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ca-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ca-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ca-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ca-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ca-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ca-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ca-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ca-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ca-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ca-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ca-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ca-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ca-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ca-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ca-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ca-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ca-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ca-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ca-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ca-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ca-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ca-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ca-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ca-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ca-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ca-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ca-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ca-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ca-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ca-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ca-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ca-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ca-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ca-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ca-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ca-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ca-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ca-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ca-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ca-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ca-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ca-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ca-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ca-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ca-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ca-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ca-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ca-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ca-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ca-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ca-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ca-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ca-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ca-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ca-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ca-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ca-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ca-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ca-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ca-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ca-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ca-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ca-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ca-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ca-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ca-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ca-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ca-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ca-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ca-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ca-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ca-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ca-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ca-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ca-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ca-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ca-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ca-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ca-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ca-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ca-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ca-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ca-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ca-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ca-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ca-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ca-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ca-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ca-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ca-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ca-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ca-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ca-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ca-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ca-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ca-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ca-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ca-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ca-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ca-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ca-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ca-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ca-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ca-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ca-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ca-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ca-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ca-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ca-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ca-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ca-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ca-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ca-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ca-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ca-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ca-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ca-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ca-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ca-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ca-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ca-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ca-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ca-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ca-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ca-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ca-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ca-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ca-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ca-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ca-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ca-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ca-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ca-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ca-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ca-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ca-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ca-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ca-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ca-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ca-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ca-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ca-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ca-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ca-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ca-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ca-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ca-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ca-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ca-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ca-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ca-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ca-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ca-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ca-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ca-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ca-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ca-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ca-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ca-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ca-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ca-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ca-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ca-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ca-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ca-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ca-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ca-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ca-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ca-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ca-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ca-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ca-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ca-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ca-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ca-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ca-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ca-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ca-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ca-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ca-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ca-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ca-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ca-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ca-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ca-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ca-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ca-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ca-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ca-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ca-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ca-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ca-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ca-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ca-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ca-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ca-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ca-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ca-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ca-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ca-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ca-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ca-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ca-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ca-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ca-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ca-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ca-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ca-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ca-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ca-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ca-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ca-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ca-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ca-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ca-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ca-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ca-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ca-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ca-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ca-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ca-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ca-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ca-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ca-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ca-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ca-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ca-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ca-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ca-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ca-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ca-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ca-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ca-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ca-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ca-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ca-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ca-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ca-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ca-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ca-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ca-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ca-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ca-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ca-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ca-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ca-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ca-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ca-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ca-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ca-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ca-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ca-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ca-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ca-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::-moz-selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::-moz-selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.ca-input-dropdown .arrow{display:none!important}.ca-input-dropdown .popover-body{margin-top:-2px!important}.ca-input-dropdown .popover-body .dropdown-options-divider{content:\"\";height:1px;border-radius:1px;background-color:#424242;position:absolute;z-index:99999;top:0;left:0}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-1{width:-7px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-2{width:-6px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-3{width:-5px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-4{width:-4px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-5{width:-3px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-6{width:-2px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-7{width:-1px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-8{width:0px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-9{width:1px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-10{width:2px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-11{width:3px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-12{width:4px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-13{width:5px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-14{width:6px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-15{width:7px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-16{width:8px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-17{width:9px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-18{width:10px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-19{width:11px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-20{width:12px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-21{width:13px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-22{width:14px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-23{width:15px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-24{width:16px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-25{width:17px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-26{width:18px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-27{width:19px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-28{width:20px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-29{width:21px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-30{width:22px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-31{width:23px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-32{width:24px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-33{width:25px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-34{width:26px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-35{width:27px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-36{width:28px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-37{width:29px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-38{width:30px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-39{width:31px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-40{width:32px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-41{width:33px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-42{width:34px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-43{width:35px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-44{width:36px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-45{width:37px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-46{width:38px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-47{width:39px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-48{width:40px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-49{width:41px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-50{width:42px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-51{width:43px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-52{width:44px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-53{width:45px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-54{width:46px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-55{width:47px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-56{width:48px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-57{width:49px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-58{width:50px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-59{width:51px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-60{width:52px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-61{width:53px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-62{width:54px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-63{width:55px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-64{width:56px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-65{width:57px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-66{width:58px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-67{width:59px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-68{width:60px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-69{width:61px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-70{width:62px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-71{width:63px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-72{width:64px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-73{width:65px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-74{width:66px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-75{width:67px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-76{width:68px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-77{width:69px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-78{width:70px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-79{width:71px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-80{width:72px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-81{width:73px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-82{width:74px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-83{width:75px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-84{width:76px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-85{width:77px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-86{width:78px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-87{width:79px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-88{width:80px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-89{width:81px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-90{width:82px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-91{width:83px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-92{width:84px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-93{width:85px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-94{width:86px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-95{width:87px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-96{width:88px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-97{width:89px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-98{width:90px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-99{width:91px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-100{width:92px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-101{width:93px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-102{width:94px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-103{width:95px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-104{width:96px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-105{width:97px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-106{width:98px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-107{width:99px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-108{width:100px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-109{width:101px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-110{width:102px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-111{width:103px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-112{width:104px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-113{width:105px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-114{width:106px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-115{width:107px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-116{width:108px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-117{width:109px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-118{width:110px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-119{width:111px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-120{width:112px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-121{width:113px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-122{width:114px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-123{width:115px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-124{width:116px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-125{width:117px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-126{width:118px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-127{width:119px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-128{width:120px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-129{width:121px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-130{width:122px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-131{width:123px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-132{width:124px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-133{width:125px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-134{width:126px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-135{width:127px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-136{width:128px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-137{width:129px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-138{width:130px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-139{width:131px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-140{width:132px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-141{width:133px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-142{width:134px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-143{width:135px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-144{width:136px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-145{width:137px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-146{width:138px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-147{width:139px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-148{width:140px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-149{width:141px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-150{width:142px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-151{width:143px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-152{width:144px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-153{width:145px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-154{width:146px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-155{width:147px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-156{width:148px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-157{width:149px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-158{width:150px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-159{width:151px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-160{width:152px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-161{width:153px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-162{width:154px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-163{width:155px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-164{width:156px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-165{width:157px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-166{width:158px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-167{width:159px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-168{width:160px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-169{width:161px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-170{width:162px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-171{width:163px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-172{width:164px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-173{width:165px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-174{width:166px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-175{width:167px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-176{width:168px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-177{width:169px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-178{width:170px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-179{width:171px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-180{width:172px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-181{width:173px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-182{width:174px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-183{width:175px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-184{width:176px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-185{width:177px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-186{width:178px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-187{width:179px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-188{width:180px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-189{width:181px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-190{width:182px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-191{width:183px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-192{width:184px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-193{width:185px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-194{width:186px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-195{width:187px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-196{width:188px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-197{width:189px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-198{width:190px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-199{width:191px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-200{width:192px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-201{width:193px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-202{width:194px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-203{width:195px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-204{width:196px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-205{width:197px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-206{width:198px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-207{width:199px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-208{width:200px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-209{width:201px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-210{width:202px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-211{width:203px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-212{width:204px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-213{width:205px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-214{width:206px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-215{width:207px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-216{width:208px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-217{width:209px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-218{width:210px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-219{width:211px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-220{width:212px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-221{width:213px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-222{width:214px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-223{width:215px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-224{width:216px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-225{width:217px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-226{width:218px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-227{width:219px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-228{width:220px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-229{width:221px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-230{width:222px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-231{width:223px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-232{width:224px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-233{width:225px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-234{width:226px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-235{width:227px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-236{width:228px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-237{width:229px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-238{width:230px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-239{width:231px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-240{width:232px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-241{width:233px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-242{width:234px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-243{width:235px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-244{width:236px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-245{width:237px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-246{width:238px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-247{width:239px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-248{width:240px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-249{width:241px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-250{width:242px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-251{width:243px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-252{width:244px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-253{width:245px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-254{width:246px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-255{width:247px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-256{width:248px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-257{width:249px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-258{width:250px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-259{width:251px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-260{width:252px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-261{width:253px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-262{width:254px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-263{width:255px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-264{width:256px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-265{width:257px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-266{width:258px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-267{width:259px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-268{width:260px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-269{width:261px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-270{width:262px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-271{width:263px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-272{width:264px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-273{width:265px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-274{width:266px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-275{width:267px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-276{width:268px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-277{width:269px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-278{width:270px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-279{width:271px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-280{width:272px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-281{width:273px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-282{width:274px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-283{width:275px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-284{width:276px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-285{width:277px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-286{width:278px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-287{width:279px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-288{width:280px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-289{width:281px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-290{width:282px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-291{width:283px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-292{width:284px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-293{width:285px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-294{width:286px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-295{width:287px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-296{width:288px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-297{width:289px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-298{width:290px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-299{width:291px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-300{width:292px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-301{width:293px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-302{width:294px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-303{width:295px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-304{width:296px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-305{width:297px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-306{width:298px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-307{width:299px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-308{width:300px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-309{width:301px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-310{width:302px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-311{width:303px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-312{width:304px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-313{width:305px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-314{width:306px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-315{width:307px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-316{width:308px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-317{width:309px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-318{width:310px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-319{width:311px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-320{width:312px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-321{width:313px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-322{width:314px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-323{width:315px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-324{width:316px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-325{width:317px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-326{width:318px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-327{width:319px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-328{width:320px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-329{width:321px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-330{width:322px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-331{width:323px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-332{width:324px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-333{width:325px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-334{width:326px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-335{width:327px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-336{width:328px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-337{width:329px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-338{width:330px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-339{width:331px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-340{width:332px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-341{width:333px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-342{width:334px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-343{width:335px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-344{width:336px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-345{width:337px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-346{width:338px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-347{width:339px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-348{width:340px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-349{width:341px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-350{width:342px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-351{width:343px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-352{width:344px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-353{width:345px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-354{width:346px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-355{width:347px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-356{width:348px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-357{width:349px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-358{width:350px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-359{width:351px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-360{width:352px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-361{width:353px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-362{width:354px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-363{width:355px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-364{width:356px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-365{width:357px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-366{width:358px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-367{width:359px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-368{width:360px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-369{width:361px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-370{width:362px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-371{width:363px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-372{width:364px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-373{width:365px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-374{width:366px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-375{width:367px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-376{width:368px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-377{width:369px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-378{width:370px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-379{width:371px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-380{width:372px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-381{width:373px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-382{width:374px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-383{width:375px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-384{width:376px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-385{width:377px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-386{width:378px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-387{width:379px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-388{width:380px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-389{width:381px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-390{width:382px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-391{width:383px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-392{width:384px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-393{width:385px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-394{width:386px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-395{width:387px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-396{width:388px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-397{width:389px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-398{width:390px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-399{width:391px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-400{width:392px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-401{width:393px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-402{width:394px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-403{width:395px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-404{width:396px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-405{width:397px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-406{width:398px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-407{width:399px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-408{width:400px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-409{width:401px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-410{width:402px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-411{width:403px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-412{width:404px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-413{width:405px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-414{width:406px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-415{width:407px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-416{width:408px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-417{width:409px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-418{width:410px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-419{width:411px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-420{width:412px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-421{width:413px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-422{width:414px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-423{width:415px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-424{width:416px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-425{width:417px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-426{width:418px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-427{width:419px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-428{width:420px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-429{width:421px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-430{width:422px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-431{width:423px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-432{width:424px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-433{width:425px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-434{width:426px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-435{width:427px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-436{width:428px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-437{width:429px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-438{width:430px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-439{width:431px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-440{width:432px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-441{width:433px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-442{width:434px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-443{width:435px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-444{width:436px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-445{width:437px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-446{width:438px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-447{width:439px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-448{width:440px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-449{width:441px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-450{width:442px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-451{width:443px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-452{width:444px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-453{width:445px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-454{width:446px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-455{width:447px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-456{width:448px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-457{width:449px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-458{width:450px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-459{width:451px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-460{width:452px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-461{width:453px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-462{width:454px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-463{width:455px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-464{width:456px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-465{width:457px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-466{width:458px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-467{width:459px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-468{width:460px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-469{width:461px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-470{width:462px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-471{width:463px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-472{width:464px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-473{width:465px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-474{width:466px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-475{width:467px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-476{width:468px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-477{width:469px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-478{width:470px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-479{width:471px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-480{width:472px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-481{width:473px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-482{width:474px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-483{width:475px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-484{width:476px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-485{width:477px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-486{width:478px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-487{width:479px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-488{width:480px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-489{width:481px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-490{width:482px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-491{width:483px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-492{width:484px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-493{width:485px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-494{width:486px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-495{width:487px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-496{width:488px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-497{width:489px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-498{width:490px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-499{width:491px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-500{width:492px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-501{width:493px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-502{width:494px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-503{width:495px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-504{width:496px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-505{width:497px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-506{width:498px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-507{width:499px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-508{width:500px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-509{width:501px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-510{width:502px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-511{width:503px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-512{width:504px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-513{width:505px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-514{width:506px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-515{width:507px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-516{width:508px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-517{width:509px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-518{width:510px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-519{width:511px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-520{width:512px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-521{width:513px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-522{width:514px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-523{width:515px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-524{width:516px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-525{width:517px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-526{width:518px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-527{width:519px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-528{width:520px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-529{width:521px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-530{width:522px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-531{width:523px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-532{width:524px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-533{width:525px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-534{width:526px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-535{width:527px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-536{width:528px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-537{width:529px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-538{width:530px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-539{width:531px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-540{width:532px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-541{width:533px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-542{width:534px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-543{width:535px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-544{width:536px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-545{width:537px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-546{width:538px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-547{width:539px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-548{width:540px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-549{width:541px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-550{width:542px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-551{width:543px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-552{width:544px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-553{width:545px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-554{width:546px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-555{width:547px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-556{width:548px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-557{width:549px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-558{width:550px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-559{width:551px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-560{width:552px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-561{width:553px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-562{width:554px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-563{width:555px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-564{width:556px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-565{width:557px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-566{width:558px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-567{width:559px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-568{width:560px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-569{width:561px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-570{width:562px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-571{width:563px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-572{width:564px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-573{width:565px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-574{width:566px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-575{width:567px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-576{width:568px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-577{width:569px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-578{width:570px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-579{width:571px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-580{width:572px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-581{width:573px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-582{width:574px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-583{width:575px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-584{width:576px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-585{width:577px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-586{width:578px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-587{width:579px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-588{width:580px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-589{width:581px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-590{width:582px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-591{width:583px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-592{width:584px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-593{width:585px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-594{width:586px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-595{width:587px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-596{width:588px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-597{width:589px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-598{width:590px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-599{width:591px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-600{width:592px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-601{width:593px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-602{width:594px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-603{width:595px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-604{width:596px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-605{width:597px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-606{width:598px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-607{width:599px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-608{width:600px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-609{width:601px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-610{width:602px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-611{width:603px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-612{width:604px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-613{width:605px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-614{width:606px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-615{width:607px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-616{width:608px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-617{width:609px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-618{width:610px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-619{width:611px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-620{width:612px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-621{width:613px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-622{width:614px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-623{width:615px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-624{width:616px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-625{width:617px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-626{width:618px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-627{width:619px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-628{width:620px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-629{width:621px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-630{width:622px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-631{width:623px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-632{width:624px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-633{width:625px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-634{width:626px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-635{width:627px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-636{width:628px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-637{width:629px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-638{width:630px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-639{width:631px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-640{width:632px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-641{width:633px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-642{width:634px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-643{width:635px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-644{width:636px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-645{width:637px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-646{width:638px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-647{width:639px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-648{width:640px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-649{width:641px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-650{width:642px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-651{width:643px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-652{width:644px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-653{width:645px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-654{width:646px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-655{width:647px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-656{width:648px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-657{width:649px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-658{width:650px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-659{width:651px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-660{width:652px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-661{width:653px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-662{width:654px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-663{width:655px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-664{width:656px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-665{width:657px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-666{width:658px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-667{width:659px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-668{width:660px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-669{width:661px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-670{width:662px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-671{width:663px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-672{width:664px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-673{width:665px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-674{width:666px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-675{width:667px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-676{width:668px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-677{width:669px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-678{width:670px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-679{width:671px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-680{width:672px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-681{width:673px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-682{width:674px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-683{width:675px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-684{width:676px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-685{width:677px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-686{width:678px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-687{width:679px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-688{width:680px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-689{width:681px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-690{width:682px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-691{width:683px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-692{width:684px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-693{width:685px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-694{width:686px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-695{width:687px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-696{width:688px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-697{width:689px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-698{width:690px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-699{width:691px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-700{width:692px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-701{width:693px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-702{width:694px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-703{width:695px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-704{width:696px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-705{width:697px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-706{width:698px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-707{width:699px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-708{width:700px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-709{width:701px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-710{width:702px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-711{width:703px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-712{width:704px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-713{width:705px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-714{width:706px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-715{width:707px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-716{width:708px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-717{width:709px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-718{width:710px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-719{width:711px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-720{width:712px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-721{width:713px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-722{width:714px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-723{width:715px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-724{width:716px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-725{width:717px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-726{width:718px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-727{width:719px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-728{width:720px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-729{width:721px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-730{width:722px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-731{width:723px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-732{width:724px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-733{width:725px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-734{width:726px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-735{width:727px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-736{width:728px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-737{width:729px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-738{width:730px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-739{width:731px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-740{width:732px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-741{width:733px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-742{width:734px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-743{width:735px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-744{width:736px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-745{width:737px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-746{width:738px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-747{width:739px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-748{width:740px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-749{width:741px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-750{width:742px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-751{width:743px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-752{width:744px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-753{width:745px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-754{width:746px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-755{width:747px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-756{width:748px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-757{width:749px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-758{width:750px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-759{width:751px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-760{width:752px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-761{width:753px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-762{width:754px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-763{width:755px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-764{width:756px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-765{width:757px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-766{width:758px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-767{width:759px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-768{width:760px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-769{width:761px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-770{width:762px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-771{width:763px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-772{width:764px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-773{width:765px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-774{width:766px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-775{width:767px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-776{width:768px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-777{width:769px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-778{width:770px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-779{width:771px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-780{width:772px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-781{width:773px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-782{width:774px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-783{width:775px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-784{width:776px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-785{width:777px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-786{width:778px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-787{width:779px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-788{width:780px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-789{width:781px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-790{width:782px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-791{width:783px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-792{width:784px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-793{width:785px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-794{width:786px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-795{width:787px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-796{width:788px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-797{width:789px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-798{width:790px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-799{width:791px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-800{width:792px}.ca-input-dropdown .popover-body .dropdown-options-divider.dispatch_dropdown{top:-4px}.ca-input-dropdown .popover-body .w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options{position:relative;top:0;left:0;z-index:1000;max-height:190px;width:100%;background-color:#2f2f2f;border-radius:3px;padding:4px;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;padding-right:0}.ca-input-dropdown .popover-body .dropdown-options.scroll .plus-icon{margin-right:1px!important}.ca-input-dropdown .popover-body .dropdown-options.scroll.load-dispatcher-wrapper{overflow-y:scroll;max-height:220px}.ca-input-dropdown .popover-body .dropdown-options.scroll.load-dispatcher-wrapper .scrollable-element{max-height:208px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options-fuel-franchise{padding:4px;max-height:300px}.ca-input-dropdown .popover-body .dropdown-options.no-result-container{padding:6px 10px!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option{padding:3px 4px;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result{line-height:14px;font-size:11px;font-weight:700;color:#919191;height:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new{padding:4.5px 6px 4.5px 4px;font-size:11px;font-weight:700;color:#92b1f5;position:relative;transition:background .2s ease-in-out,color .2s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new:hover{color:#fff;background:#3b73ed66}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ca-input-dropdown .w-col-288{width:288px!important}.ca-input-dropdown.bs-popover-top .popover-body{margin-top:0!important}.ca-input-dropdown.bs-popover-top .popover-body .dropdown-options-divider.dispatch_dropdown{top:auto;bottom:-6px}.ca-input-dropdown.bs-popover-top .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:2px 2px 0 0!important}.ca-input-dropdown.bs-popover-top .popover-body .dropdown-options.svgtext-dispatch-template{top:6px!important}\n"], dependencies: [{ kind: "ngmodule", type:
12537
12635
  // Module
12538
- CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: NgbPopoverModule }, { kind: "directive", type: i3.NgbPopover, selector: "[ngbPopover]", inputs: ["animation", "autoClose", "ngbPopover", "popoverTitle", "placement", "popperOptions", "triggers", "positionTarget", "container", "disablePopover", "popoverClass", "popoverContext", "openDelay", "closeDelay"], outputs: ["shown", "hidden"], exportAs: ["ngbPopover"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { 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: AngularSvgIconModule }, { kind: "component", type: i2.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "component", type: CaInputDropdownSvgtextTemplateComponent, selector: "app-ca-input-dropdown-svgtext-template", inputs: ["options", "activeItem", "getSuperControl", "inputConfig", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownSvgtextDispatchTemplateComponent, selector: "app-ca-input-dropdown-svgtext-dispatch-template", inputs: ["options", "activeItem", "getSuperControl", "inputConfig", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownGroupsComponent, selector: "app-ca-input-dropdown-groups", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownMultiselectComponent, selector: "app-ca-input-dropdown-multiselect", inputs: ["options", "lastActiveMultiselectItem", "getSuperControl", "inputHoveredItem"], outputs: ["onMultiselectSelect"] }, { kind: "component", type: CaInputDropdownLabelsComponent, selector: "app-ca-input-dropdown-labels", inputs: ["options", "activeItem", "getSuperControl", "inputConfig", "labelMode", "canAddNew", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownLoadBrokerComponent, selector: "app-ca-input-dropdown-load-broker", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownLoadDispatchesTtdComponent, selector: "app-ca-input-dropdown-load-dispatches-ttd", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownLoadDispatcherComponent, selector: "app-ca-input-dropdown-load-dispatcher", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownLoadBrokerContactComponent, selector: "app-ca-input-dropdown-load-broker-contact", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownLoadBrokerShipperComponent, selector: "app-ca-input-dropdown-load-shipper", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownTextCounterComponent, selector: "app-ca-input-dropdown-text-counter", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownDoubleTextTemplateComponent, selector: "app-ca-input-dropdown-double-text-template", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownTripleTextTemplateComponent, selector: "app-ca-input-dropdown-triple-text-template", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownDefaultTemplateComponent, selector: "app-ca-input-dropdown-default-template", inputs: ["options", "activeItem", "getSuperControl", "inputConfig", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownFuelFranchiseComponent, selector: "app-ca-input-dropdown-fuel-franchise", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["toggleNestedList", "onActiveItem", "onActiveItemGroup"] }, { kind: "component", type: CaInputDropdownDispatchComponent, selector: "app-ca-input-dropdown-dispatch", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownDetailsTemplateComponent, selector: "app-ca-input-dropdown-details-template", inputs: ["options", "activeItem", "getSuperControl", "sort", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownPayrollTrucksComponent, selector: "app-ca-input-dropdown-payroll-trucks", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownSvgTemplateComponent, selector: "app-ca-input-dropdown-svg-template", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: InputTestComponent, selector: "ca-input-test", inputs: ["selectedDropdownLabelColor", "template", "incorrectValue", "inputConfig"], outputs: ["handleToggleDropdownOptions", "incorrectEvent", "blurInput", "focusInput", "change", "commandEvent", "clear", "showHideDropdown", "dropDownKeyNavigation"] }, { kind: "pipe", type:
12636
+ CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: NgbPopoverModule }, { kind: "directive", type: i3.NgbPopover, selector: "[ngbPopover]", inputs: ["animation", "autoClose", "ngbPopover", "popoverTitle", "placement", "popperOptions", "triggers", "positionTarget", "container", "disablePopover", "popoverClass", "popoverContext", "openDelay", "closeDelay"], outputs: ["shown", "hidden"], exportAs: ["ngbPopover"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { 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: AngularSvgIconModule }, { kind: "component", type: i2.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "component", type: CaInputDropdownSvgtextTemplateComponent, selector: "app-ca-input-dropdown-svgtext-template", inputs: ["options", "activeItem", "getSuperControl", "inputConfig", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownSvgtextDispatchTemplateComponent, selector: "app-ca-input-dropdown-svgtext-dispatch-template", inputs: ["options", "activeItem", "getSuperControl", "inputConfig", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownGroupsComponent, selector: "app-ca-input-dropdown-groups", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownMultiselectComponent, selector: "app-ca-input-dropdown-multiselect", inputs: ["options", "lastActiveMultiselectItem", "getSuperControl", "inputHoveredItem"], outputs: ["onMultiselectSelect"] }, { kind: "component", type: CaInputDropdownLabelsComponent, selector: "app-ca-input-dropdown-labels", inputs: ["options", "activeItem", "getSuperControl", "inputConfig", "labelMode", "canAddNew", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownLoadBrokerComponent, selector: "app-ca-input-dropdown-load-broker", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownLoadDispatchesTtdComponent, selector: "app-ca-input-dropdown-load-dispatches-ttd", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownLoadDispatcherComponent, selector: "app-ca-input-dropdown-load-dispatcher", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownLoadBrokerContactComponent, selector: "app-ca-input-dropdown-load-broker-contact", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownLoadBrokerShipperComponent, selector: "app-ca-input-dropdown-load-shipper", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownTextCounterComponent, selector: "app-ca-input-dropdown-text-counter", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownDoubleTextTemplateComponent, selector: "app-ca-input-dropdown-double-text-template", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownTripleTextTemplateComponent, selector: "app-ca-input-dropdown-triple-text-template", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownDefaultTemplateComponent, selector: "app-ca-input-dropdown-default-template", inputs: ["options", "activeItem", "searchText", "getSuperControl", "inputConfig", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownFuelFranchiseComponent, selector: "app-ca-input-dropdown-fuel-franchise", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["toggleNestedList", "onActiveItem", "onActiveItemGroup"] }, { kind: "component", type: CaInputDropdownDispatchComponent, selector: "app-ca-input-dropdown-dispatch", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownDetailsTemplateComponent, selector: "app-ca-input-dropdown-details-template", inputs: ["options", "activeItem", "getSuperControl", "sort", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownPayrollTrucksComponent, selector: "app-ca-input-dropdown-payroll-trucks", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: CaInputDropdownSvgTemplateComponent, selector: "app-ca-input-dropdown-svg-template", inputs: ["options", "activeItem", "getSuperControl", "inputHoveredItem"], outputs: ["onActiveItem"] }, { kind: "component", type: InputTestComponent, selector: "ca-input-test", inputs: ["selectedDropdownLabelColor", "template", "incorrectValue", "inputConfig", "activeItem"], outputs: ["handleToggleDropdownOptions", "incorrectEvent", "blurInput", "focusInput", "change", "commandEvent", "clear", "showHideDropdown", "dropDownKeyNavigation"] }, { kind: "pipe", type:
12539
12637
  // Pipes
12540
- FormControlPipe, name: "formControl" }, { kind: "pipe", type: DropdownCountPipe, name: "caDropdownCount" }, { kind: "pipe", type: InputDropdownMultiselectClassPipe, name: "inputDropdownMultiselectClass" }], animations: [inputDropdownAnimation('showHideDropdownOptions')], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
12638
+ FormControlPipe, name: "formControl" }, { kind: "pipe", type: DropdownCountPipe, name: "caDropdownCount" }, { kind: "pipe", type: InputDropdownMultiselectClassPipe, name: "inputDropdownMultiselectClass" }, { kind: "pipe", type: DropdownOptionsPipe, name: "caDropdownOptionsPipe" }], animations: [inputDropdownAnimation('showHideDropdownOptions')], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
12541
12639
  }
12542
12640
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputDropdownComponent, decorators: [{
12543
12641
  type: Component,
@@ -12576,12 +12674,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
12576
12674
  FormControlPipe,
12577
12675
  DropdownCountPipe,
12578
12676
  InputDropdownMultiselectClassPipe,
12579
- HighlightSearchPipe,
12580
- CaSvgPipe,
12581
- LoadStatusColorPipe,
12582
- InputDropdownSvgtextTemplateIconPipe,
12583
- InputDropdownSvgtextTemplateContainerPipe,
12584
- ], template: "<div\n class=\"application-dropdown\"\n [ngClass]=\"\n inputConfig\n | inputDropdownMultiselectClass\n : multiselectItems\n : isMultiSelectInputFocus\n \"\n>\n @if (multiselectItems.length) {\n <p class=\"multiselect-label\">\n {{ multiSelectLabel }}\n </p>\n }\n\n @if (inputConfig.multiSelectDropdownActive) {\n <!-- Multiselect arrow -->\n <svg-icon\n class=\"multiselect-arrow\"\n [src]=\"inputDropdownSvgRoutes.inputDropdownArrowSvg\"\n (click)=\"toggleMultiselectDropdown()\"\n ></svg-icon>\n }\n\n @if (multiselectItems.length && !inputConfig.isDisabled) {\n <!-- Multiselect clear all -->\n <div\n class=\"input-clear multiselect-clear\"\n mainTooltip=\"Clear All\"\n ngbTooltip\n position=\"top\"\n tooltipBackground=\"#2f2f2f\"\n (click)=\"deleteAllMultiSelectItems()\"\n >\n <svg-icon\n class=\"input-clear-x\"\n [src]=\"inputDropdownSvgRoutes.xClearSvg\"\n ></svg-icon>\n </div>\n }\n\n @if (\n inputConfig.multiselectDropdown &&\n multiselectItems.length &&\n _template === 'multiselect'\n ) {\n <!-- Multiselect items -->\n <div class=\"multiselect-items {{ multiselectTemplate }}\">\n <ng-container> </ng-container>\n @for (\n multiSelect of multiselectItems;\n track $index;\n let ind = $index\n ) {\n <span class=\"multiselect-item\">\n {{ multiSelect?.name }}\n <!-- Active - Total Counter -->\n @if (\n inputConfig.multiSelectItemRange &&\n multiSelect?.totalCounter\n ) {\n <span>\n {{ multiSelect?.activeCounter }} of\n {{ multiSelect?.totalCounter }}\n </span>\n }\n\n @if (\n inputConfig.multiSelectItemRange &&\n !multiSelect?.totalCounter\n ) {\n <span>\n {{ multiSelect?.activeCounter }}\n </span>\n }\n\n @if (!inputConfig.isDisabled) {\n <!-- Active Counter -->\n <div\n (click)=\"removeMultiSelectItem(ind)\"\n class=\"multiselect-item-clear\"\n mainTooltip=\"Clear\"\n ngbTooltip\n position=\"top\"\n tooltipBackground=\"#2f2f2f\"\n >\n <svg-icon\n [src]=\"inputDropdownSvgRoutes.xClearSvg\"\n ></svg-icon>\n </div>\n }\n </span>\n }\n </div>\n }\n\n <!-- Dropdown search -->\n\n @if (!inputConfig.isIconInput) {\n <ca-input-test\n #t2=\"ngbPopover\"\n [ngbPopover]=\"caInputDropdownPopover\"\n popoverClass=\"ca-input-dropdown\"\n [autoClose]=\"'outside'\"\n [container]=\"'body'\"\n [placement]=\"\n _template == 'svgtext-dispatch-template'\n ? ['bottom-left', 'top-left']\n : ['bottom-left']\n \"\n #input\n [formControl]=\"getSuperControl! | formControl\"\n [incorrectValue]=\"isIncorrectValue\"\n [inputConfig]=\"inputConfig\"\n [selectedDropdownLabelColor]=\"\n inputConfig.dropdownLabel\n ? _activeItem\n ? _activeItem\n : activeItemColor\n : null\n \"\n [template]=\"_template\"\n (blurInput)=\"onBlurInput($event)\"\n (clear)=\"onClearInputEvent($event)\"\n (commandEvent)=\"commandEvent($event)\"\n (showHideDropdown)=\"showHideDropdown($event)\"\n (dropDownKeyNavigation)=\"dropDownKeyNavigation($event)\"\n (incorrectEvent)=\"onIncorrectInput($event)\"\n ></ca-input-test>\n }\n\n <!-- Dropdown icon instead of input -->\n @if (inputConfig.isIconInput) {\n <div\n class=\"d-flex justify-content-center align-items-center input-icon-container\"\n [ngClass]=\"{\n valid:\n inputConfig.isValidIcon &&\n !inputConfig.inputIcon?.includes('custom'),\n active: popoverRef?.isOpen(),\n }\"\n >\n <svg-icon\n #t2=\"ngbPopover\"\n [ngbPopover]=\"caInputDropdownPopover\"\n popoverClass=\"ca-input-dropdown\"\n [autoClose]=\"'outside'\"\n [container]=\"'body'\"\n [placement]=\"['bottom-left']\"\n class=\"input-icon\"\n [src]=\"\n inputDropdownSvgRoutes.repairPmSvgRoute +\n inputConfig.inputIcon\n \"\n ></svg-icon>\n </div>\n }\n</div>\n\n<ng-template #caInputDropdownPopover>\n <!--------------------------- Dropdown options --------------------------->\n @if (inputConfig?.mergeDropdownBodyWithInput && _options?.length) {\n <div\n class=\"dropdown-options-divider {{\n inputConfig.dropdownWidthClass\n }}\"\n [class.dispatch_dropdown]=\"_template == 'svgtext-dispatch-template'\"\n ></div>\n }\n\n @if (\n (inputConfig?.name != 'Address' &&\n inputConfig?.name != 'RoutingAddress' &&\n !inputConfig.isDisabled) ||\n ((inputConfig?.name == 'Address' ||\n inputConfig?.name == 'RoutingAddress') &&\n !inputConfig.isDisabled &&\n _options?.length)\n ) {\n <div\n (scroll)=\"onScrollDropdown($event.target)\"\n [ngClass]=\"{\n scroll: _options | caDropdownCount: _template,\n 'dropdown-options-groups':\n _template === 'groups' ||\n _template === 'load-broker-contact',\n 'dropdown-options-fuel-franchise':\n _template === 'fuel-franchise',\n 'merge-dropdown-body-with-input':\n inputConfig.mergeDropdownBodyWithInput,\n 'no-result-container': _options[0]?.name === 'No Results',\n 'svgtext-dispatch-template':\n _template == 'svgtext-dispatch-template',\n }\"\n class=\"dropdown-options {{ inputConfig.dropdownWidthClass }}\"\n >\n @switch (_template) {\n <!--------------------------- SVG Template (Render svgs or text if svgs doesn't exist ) --------------------------->\n\n @case (dropdownTemplateTypeEnum.SVG_TEMPLATE) {\n <app-ca-input-dropdown-svg-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-svg-template>\n <!-- <ng-container \n *ngTemplateOutlet=\"dropdownSvgTemplate\"\n ></ng-container> -->\n }\n\n <!--------------------------- Svg Text Template (display flex) --------------------------->\n\n @case (dropdownTemplateTypeEnum.SVGTEXT_TEMPLATE) {\n <app-ca-input-dropdown-svgtext-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-svgtext-template>\n\n <!-- <ng-container\n *ngTemplateOutlet=\"svgTextTemplate\"\n ></ng-container> -->\n }\n\n <!-------------------------------------------Dispatch dropdown-------------------------------------------->\n\n @case (dropdownTemplateTypeEnum.SVGTEXT_DISPATCH_TEMPLATE) {\n <app-ca-input-dropdown-svgtext-dispatch-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-svgtext-dispatch-template>\n\n <!-- <ng-container\n *ngTemplateOutlet=\"dispatchTemplate\"\n ></ng-container> -->\n }\n\n <!--------------------------- Details template (truck, trailer... details-pages) --------------------------->\n\n @case (dropdownTemplateTypeEnum.DETAILS_TEMPLATE) {\n <app-ca-input-dropdown-details-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n [sort]=\"_sort\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-details-template>\n\n <!-- <ng-container\n *ngTemplateOutlet=\"detailsTemplate\"\n ></ng-container> -->\n }\n\n <!--------------------------- Grouping template (can see on contact modal) --------------------------->\n\n @case (dropdownTemplateTypeEnum.GROUPS) {\n <app-ca-input-dropdown-groups\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-groups>\n }\n\n <!--------------------------- Multiselect Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.MULTISELECT) {\n <app-ca-input-dropdown-multiselect\n [options]=\"_options\"\n [lastActiveMultiselectItem]=\"lastActiveMultiselectItem\"\n [getSuperControl]=\"getSuperControl\"\n (onMultiselectSelect)=\"onMultiselectSelect($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-multiselect>\n }\n <!--------------------------- Labels Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LABELS) {\n <app-ca-input-dropdown-labels\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n [inputConfig]=\"inputConfig\"\n [labelMode]=\"labelMode\"\n [canAddNew]=\"_canAddNew\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-labels>\n }\n\n <!--------------------------- Dispatch Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.DISPATCH) {\n <app-ca-input-dropdown-dispatch\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-dispatch>\n }\n\n <!--------------------------- Load Dispatcher Template (user avatar + user name) --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHER) {\n <app-ca-input-dropdown-load-dispatcher\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-dispatcher>\n }\n\n <!--------------------------- Load Combine Truck-Trailer-Driver Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHES_TTD) {\n <app-ca-input-dropdown-load-dispatches-ttd\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-dispatches-ttd>\n }\n\n <!--------------------------- Load Broker Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_BROKER) {\n <app-ca-input-dropdown-load-broker\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-broker>\n }\n\n <!--------------------------- Load Broker Contact Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_BROKER_CONTACT) {\n <app-ca-input-dropdown-load-broker-contact\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-broker-contact>\n }\n\n <!--------------------------- Load Shipper Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_SHIPPER) {\n <app-ca-input-dropdown-load-shipper\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-shipper>\n }\n\n <!--------------------------- Template Text - Counter --------------------------->\n\n @case (dropdownTemplateTypeEnum.TEXT_COUNTER) {\n <app-ca-input-dropdown-text-counter\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-text-counter>\n }\n\n <!--------------------------- Fuel Franchise Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.FUEL_FRANCHISE) {\n <app-ca-input-dropdown-fuel-franchise\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n (toggleNestedList)=\"toggleNestedList($event)\"\n (onActiveItemGroup)=\"onActiveItemGroup($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-fuel-franchise>\n }\n\n <!-- Double Text Template -->\n\n @case (dropdownTemplateTypeEnum.DOUBLE_TEXT_TEMPLATE) {\n <app-ca-input-dropdown-double-text-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-double-text-template>\n }\n\n <!-- Double Column Template -->\n\n @case (dropdownTemplateTypeEnum.DOUBLE_COLUMN_TEMPLATE) {\n <app-ca-input-dropdown-double-text-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-double-text-template>\n }\n\n <!-- Triple Column Template -->\n\n @case (dropdownTemplateTypeEnum.TRIPLE_COLUMN_TEMPLATE) {\n <app-ca-input-dropdown-triple-text-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-triple-text-template>\n }\n\n <!-- PAYROLL TRUCKS Template -->\n\n @case (dropdownTemplateTypeEnum.PAYROLL_TRUCKS) {\n <app-ca-input-dropdown-payroll-trucks\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-payroll-trucks>\n }\n\n <!--------------------------- Default Template - Render Only Text --------------------------->\n @default {\n <app-ca-input-dropdown-default-template\n [options]=\"_options\"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"getSuperControl\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-default-template>\n }\n }\n </div>\n }\n</ng-template>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white-2::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}@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}}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active:not(.payroll-trucks):after,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:not(.payroll-trucks):after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#ccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ca-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:-webkit-max-content!important;width:-moz-max-content!important;width:max-content!important;padding:0!important;margin:0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;-moz-column-gap:29px;column-gap:29px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-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}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ca-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ca-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ca-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ca-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ca-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ca-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ca-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ca-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ca-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ca-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ca-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ca-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ca-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ca-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ca-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ca-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ca-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ca-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ca-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ca-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ca-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ca-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ca-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ca-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ca-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ca-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ca-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ca-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ca-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ca-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ca-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ca-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ca-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ca-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ca-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ca-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ca-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ca-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ca-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ca-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ca-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ca-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ca-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ca-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ca-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ca-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ca-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ca-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ca-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ca-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ca-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ca-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ca-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ca-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ca-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ca-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ca-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ca-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ca-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ca-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ca-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ca-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ca-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ca-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ca-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ca-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ca-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ca-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ca-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ca-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ca-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ca-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ca-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ca-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ca-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ca-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ca-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ca-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ca-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ca-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ca-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ca-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ca-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ca-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ca-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ca-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ca-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ca-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ca-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ca-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ca-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ca-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ca-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ca-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ca-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ca-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ca-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ca-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ca-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ca-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ca-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ca-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ca-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ca-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ca-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ca-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ca-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ca-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ca-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ca-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ca-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ca-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ca-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ca-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ca-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ca-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ca-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ca-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ca-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ca-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ca-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ca-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ca-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ca-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ca-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ca-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ca-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ca-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ca-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ca-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ca-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ca-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ca-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ca-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ca-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ca-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ca-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ca-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ca-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ca-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ca-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ca-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ca-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ca-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ca-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ca-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ca-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ca-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ca-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ca-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ca-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ca-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ca-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ca-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ca-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ca-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ca-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ca-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ca-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ca-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ca-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ca-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ca-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ca-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ca-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ca-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ca-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ca-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ca-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ca-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ca-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ca-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ca-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ca-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ca-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ca-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ca-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ca-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ca-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ca-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ca-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ca-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ca-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ca-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ca-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ca-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ca-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ca-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ca-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ca-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ca-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ca-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ca-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ca-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ca-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ca-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ca-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ca-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ca-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ca-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ca-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ca-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ca-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ca-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ca-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ca-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ca-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ca-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ca-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ca-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ca-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ca-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ca-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ca-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ca-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ca-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ca-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ca-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ca-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ca-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ca-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ca-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ca-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ca-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ca-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ca-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ca-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ca-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ca-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ca-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ca-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ca-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ca-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ca-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ca-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ca-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ca-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ca-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ca-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ca-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ca-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ca-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ca-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ca-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ca-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ca-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ca-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ca-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ca-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ca-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ca-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ca-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ca-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ca-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ca-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ca-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ca-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ca-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ca-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ca-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ca-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ca-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ca-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ca-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ca-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ca-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ca-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ca-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ca-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ca-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ca-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ca-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ca-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ca-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ca-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ca-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ca-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ca-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ca-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ca-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ca-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ca-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ca-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ca-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ca-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ca-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ca-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ca-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ca-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ca-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ca-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ca-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ca-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ca-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ca-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ca-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ca-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ca-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ca-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ca-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ca-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ca-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ca-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ca-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ca-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ca-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ca-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ca-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ca-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ca-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ca-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ca-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ca-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ca-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ca-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ca-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ca-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ca-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ca-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ca-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ca-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ca-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ca-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ca-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ca-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ca-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ca-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ca-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ca-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ca-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ca-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ca-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ca-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ca-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ca-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ca-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ca-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ca-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ca-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ca-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ca-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ca-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ca-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ca-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ca-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ca-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ca-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ca-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ca-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ca-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ca-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ca-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ca-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ca-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ca-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ca-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ca-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ca-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ca-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ca-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ca-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ca-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ca-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ca-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ca-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ca-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ca-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ca-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ca-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ca-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ca-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ca-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ca-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ca-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ca-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ca-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ca-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ca-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ca-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ca-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ca-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ca-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ca-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ca-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ca-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ca-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ca-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ca-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ca-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ca-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ca-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ca-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ca-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ca-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ca-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ca-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ca-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ca-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ca-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ca-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ca-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ca-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ca-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ca-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ca-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ca-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ca-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ca-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ca-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ca-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ca-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ca-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ca-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ca-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ca-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ca-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ca-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ca-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ca-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ca-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ca-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ca-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ca-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ca-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ca-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ca-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ca-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ca-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ca-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ca-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ca-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ca-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ca-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ca-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ca-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ca-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ca-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ca-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ca-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ca-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ca-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ca-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ca-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ca-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ca-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ca-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ca-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ca-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ca-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ca-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ca-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ca-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ca-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ca-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ca-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ca-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ca-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ca-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ca-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ca-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ca-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ca-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ca-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ca-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ca-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ca-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ca-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ca-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ca-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ca-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ca-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ca-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ca-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ca-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ca-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ca-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ca-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ca-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ca-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ca-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ca-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ca-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ca-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ca-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ca-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ca-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ca-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ca-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ca-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ca-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ca-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ca-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ca-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ca-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ca-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ca-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ca-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ca-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ca-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ca-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ca-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ca-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ca-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ca-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ca-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ca-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ca-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ca-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ca-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ca-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ca-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ca-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ca-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ca-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ca-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ca-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ca-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ca-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ca-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ca-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ca-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ca-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ca-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ca-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ca-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ca-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ca-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ca-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ca-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ca-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ca-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ca-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ca-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ca-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ca-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ca-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ca-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ca-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ca-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ca-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ca-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ca-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ca-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ca-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ca-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ca-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ca-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ca-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ca-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ca-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ca-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ca-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ca-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ca-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ca-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ca-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ca-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ca-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ca-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ca-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ca-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ca-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ca-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ca-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ca-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ca-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ca-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ca-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ca-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ca-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ca-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ca-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ca-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ca-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ca-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ca-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ca-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ca-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ca-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ca-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ca-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ca-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ca-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ca-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ca-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ca-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ca-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ca-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ca-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ca-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ca-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ca-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ca-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ca-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ca-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ca-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ca-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ca-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ca-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ca-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ca-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ca-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ca-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ca-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ca-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ca-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ca-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ca-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ca-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ca-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ca-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ca-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ca-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ca-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ca-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ca-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ca-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ca-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ca-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ca-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ca-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ca-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ca-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ca-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ca-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ca-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ca-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ca-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ca-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ca-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ca-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ca-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ca-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ca-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ca-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ca-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ca-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ca-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ca-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ca-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ca-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ca-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ca-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ca-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ca-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ca-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ca-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ca-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ca-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ca-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ca-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ca-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ca-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ca-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ca-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ca-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ca-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ca-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ca-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ca-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ca-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ca-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ca-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ca-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ca-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ca-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ca-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ca-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ca-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ca-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ca-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ca-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ca-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ca-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ca-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ca-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ca-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ca-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ca-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ca-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ca-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ca-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ca-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ca-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ca-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ca-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ca-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ca-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ca-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ca-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ca-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ca-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ca-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ca-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ca-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ca-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ca-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ca-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ca-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ca-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ca-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ca-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ca-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ca-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ca-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ca-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ca-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ca-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ca-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ca-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ca-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ca-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ca-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ca-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ca-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ca-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ca-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ca-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ca-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ca-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ca-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ca-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ca-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ca-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ca-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ca-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ca-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ca-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ca-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ca-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ca-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ca-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ca-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ca-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ca-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ca-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ca-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ca-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ca-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ca-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ca-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ca-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ca-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ca-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ca-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ca-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ca-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ca-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ca-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ca-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ca-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ca-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ca-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ca-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ca-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ca-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ca-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ca-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ca-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ca-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ca-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ca-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ca-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ca-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ca-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ca-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ca-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ca-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ca-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ca-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ca-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ca-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ca-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ca-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ca-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ca-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ca-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ca-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ca-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ca-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ca-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ca-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ca-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ca-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ca-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ca-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ca-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ca-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ca-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ca-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ca-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ca-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ca-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ca-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ca-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ca-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ca-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ca-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::-moz-selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::-moz-selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.ca-input-dropdown .arrow{display:none!important}.ca-input-dropdown .popover-body{margin-top:-2px!important}.ca-input-dropdown .popover-body .dropdown-options-divider{content:\"\";height:1px;border-radius:1px;background-color:#424242;position:absolute;z-index:99999;top:0;left:0}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-1{width:-7px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-2{width:-6px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-3{width:-5px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-4{width:-4px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-5{width:-3px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-6{width:-2px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-7{width:-1px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-8{width:0px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-9{width:1px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-10{width:2px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-11{width:3px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-12{width:4px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-13{width:5px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-14{width:6px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-15{width:7px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-16{width:8px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-17{width:9px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-18{width:10px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-19{width:11px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-20{width:12px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-21{width:13px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-22{width:14px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-23{width:15px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-24{width:16px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-25{width:17px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-26{width:18px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-27{width:19px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-28{width:20px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-29{width:21px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-30{width:22px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-31{width:23px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-32{width:24px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-33{width:25px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-34{width:26px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-35{width:27px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-36{width:28px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-37{width:29px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-38{width:30px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-39{width:31px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-40{width:32px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-41{width:33px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-42{width:34px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-43{width:35px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-44{width:36px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-45{width:37px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-46{width:38px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-47{width:39px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-48{width:40px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-49{width:41px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-50{width:42px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-51{width:43px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-52{width:44px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-53{width:45px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-54{width:46px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-55{width:47px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-56{width:48px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-57{width:49px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-58{width:50px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-59{width:51px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-60{width:52px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-61{width:53px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-62{width:54px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-63{width:55px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-64{width:56px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-65{width:57px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-66{width:58px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-67{width:59px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-68{width:60px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-69{width:61px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-70{width:62px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-71{width:63px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-72{width:64px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-73{width:65px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-74{width:66px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-75{width:67px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-76{width:68px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-77{width:69px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-78{width:70px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-79{width:71px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-80{width:72px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-81{width:73px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-82{width:74px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-83{width:75px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-84{width:76px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-85{width:77px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-86{width:78px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-87{width:79px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-88{width:80px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-89{width:81px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-90{width:82px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-91{width:83px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-92{width:84px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-93{width:85px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-94{width:86px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-95{width:87px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-96{width:88px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-97{width:89px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-98{width:90px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-99{width:91px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-100{width:92px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-101{width:93px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-102{width:94px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-103{width:95px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-104{width:96px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-105{width:97px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-106{width:98px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-107{width:99px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-108{width:100px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-109{width:101px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-110{width:102px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-111{width:103px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-112{width:104px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-113{width:105px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-114{width:106px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-115{width:107px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-116{width:108px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-117{width:109px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-118{width:110px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-119{width:111px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-120{width:112px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-121{width:113px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-122{width:114px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-123{width:115px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-124{width:116px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-125{width:117px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-126{width:118px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-127{width:119px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-128{width:120px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-129{width:121px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-130{width:122px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-131{width:123px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-132{width:124px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-133{width:125px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-134{width:126px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-135{width:127px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-136{width:128px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-137{width:129px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-138{width:130px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-139{width:131px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-140{width:132px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-141{width:133px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-142{width:134px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-143{width:135px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-144{width:136px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-145{width:137px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-146{width:138px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-147{width:139px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-148{width:140px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-149{width:141px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-150{width:142px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-151{width:143px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-152{width:144px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-153{width:145px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-154{width:146px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-155{width:147px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-156{width:148px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-157{width:149px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-158{width:150px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-159{width:151px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-160{width:152px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-161{width:153px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-162{width:154px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-163{width:155px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-164{width:156px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-165{width:157px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-166{width:158px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-167{width:159px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-168{width:160px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-169{width:161px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-170{width:162px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-171{width:163px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-172{width:164px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-173{width:165px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-174{width:166px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-175{width:167px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-176{width:168px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-177{width:169px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-178{width:170px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-179{width:171px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-180{width:172px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-181{width:173px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-182{width:174px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-183{width:175px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-184{width:176px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-185{width:177px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-186{width:178px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-187{width:179px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-188{width:180px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-189{width:181px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-190{width:182px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-191{width:183px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-192{width:184px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-193{width:185px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-194{width:186px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-195{width:187px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-196{width:188px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-197{width:189px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-198{width:190px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-199{width:191px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-200{width:192px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-201{width:193px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-202{width:194px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-203{width:195px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-204{width:196px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-205{width:197px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-206{width:198px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-207{width:199px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-208{width:200px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-209{width:201px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-210{width:202px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-211{width:203px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-212{width:204px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-213{width:205px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-214{width:206px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-215{width:207px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-216{width:208px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-217{width:209px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-218{width:210px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-219{width:211px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-220{width:212px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-221{width:213px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-222{width:214px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-223{width:215px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-224{width:216px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-225{width:217px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-226{width:218px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-227{width:219px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-228{width:220px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-229{width:221px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-230{width:222px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-231{width:223px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-232{width:224px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-233{width:225px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-234{width:226px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-235{width:227px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-236{width:228px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-237{width:229px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-238{width:230px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-239{width:231px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-240{width:232px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-241{width:233px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-242{width:234px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-243{width:235px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-244{width:236px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-245{width:237px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-246{width:238px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-247{width:239px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-248{width:240px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-249{width:241px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-250{width:242px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-251{width:243px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-252{width:244px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-253{width:245px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-254{width:246px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-255{width:247px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-256{width:248px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-257{width:249px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-258{width:250px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-259{width:251px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-260{width:252px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-261{width:253px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-262{width:254px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-263{width:255px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-264{width:256px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-265{width:257px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-266{width:258px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-267{width:259px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-268{width:260px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-269{width:261px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-270{width:262px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-271{width:263px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-272{width:264px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-273{width:265px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-274{width:266px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-275{width:267px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-276{width:268px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-277{width:269px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-278{width:270px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-279{width:271px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-280{width:272px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-281{width:273px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-282{width:274px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-283{width:275px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-284{width:276px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-285{width:277px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-286{width:278px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-287{width:279px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-288{width:280px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-289{width:281px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-290{width:282px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-291{width:283px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-292{width:284px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-293{width:285px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-294{width:286px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-295{width:287px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-296{width:288px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-297{width:289px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-298{width:290px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-299{width:291px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-300{width:292px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-301{width:293px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-302{width:294px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-303{width:295px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-304{width:296px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-305{width:297px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-306{width:298px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-307{width:299px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-308{width:300px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-309{width:301px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-310{width:302px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-311{width:303px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-312{width:304px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-313{width:305px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-314{width:306px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-315{width:307px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-316{width:308px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-317{width:309px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-318{width:310px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-319{width:311px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-320{width:312px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-321{width:313px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-322{width:314px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-323{width:315px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-324{width:316px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-325{width:317px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-326{width:318px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-327{width:319px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-328{width:320px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-329{width:321px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-330{width:322px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-331{width:323px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-332{width:324px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-333{width:325px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-334{width:326px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-335{width:327px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-336{width:328px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-337{width:329px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-338{width:330px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-339{width:331px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-340{width:332px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-341{width:333px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-342{width:334px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-343{width:335px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-344{width:336px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-345{width:337px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-346{width:338px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-347{width:339px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-348{width:340px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-349{width:341px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-350{width:342px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-351{width:343px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-352{width:344px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-353{width:345px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-354{width:346px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-355{width:347px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-356{width:348px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-357{width:349px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-358{width:350px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-359{width:351px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-360{width:352px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-361{width:353px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-362{width:354px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-363{width:355px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-364{width:356px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-365{width:357px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-366{width:358px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-367{width:359px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-368{width:360px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-369{width:361px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-370{width:362px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-371{width:363px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-372{width:364px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-373{width:365px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-374{width:366px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-375{width:367px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-376{width:368px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-377{width:369px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-378{width:370px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-379{width:371px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-380{width:372px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-381{width:373px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-382{width:374px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-383{width:375px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-384{width:376px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-385{width:377px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-386{width:378px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-387{width:379px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-388{width:380px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-389{width:381px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-390{width:382px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-391{width:383px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-392{width:384px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-393{width:385px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-394{width:386px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-395{width:387px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-396{width:388px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-397{width:389px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-398{width:390px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-399{width:391px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-400{width:392px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-401{width:393px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-402{width:394px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-403{width:395px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-404{width:396px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-405{width:397px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-406{width:398px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-407{width:399px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-408{width:400px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-409{width:401px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-410{width:402px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-411{width:403px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-412{width:404px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-413{width:405px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-414{width:406px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-415{width:407px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-416{width:408px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-417{width:409px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-418{width:410px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-419{width:411px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-420{width:412px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-421{width:413px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-422{width:414px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-423{width:415px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-424{width:416px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-425{width:417px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-426{width:418px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-427{width:419px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-428{width:420px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-429{width:421px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-430{width:422px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-431{width:423px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-432{width:424px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-433{width:425px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-434{width:426px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-435{width:427px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-436{width:428px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-437{width:429px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-438{width:430px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-439{width:431px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-440{width:432px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-441{width:433px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-442{width:434px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-443{width:435px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-444{width:436px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-445{width:437px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-446{width:438px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-447{width:439px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-448{width:440px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-449{width:441px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-450{width:442px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-451{width:443px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-452{width:444px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-453{width:445px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-454{width:446px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-455{width:447px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-456{width:448px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-457{width:449px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-458{width:450px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-459{width:451px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-460{width:452px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-461{width:453px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-462{width:454px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-463{width:455px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-464{width:456px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-465{width:457px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-466{width:458px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-467{width:459px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-468{width:460px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-469{width:461px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-470{width:462px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-471{width:463px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-472{width:464px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-473{width:465px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-474{width:466px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-475{width:467px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-476{width:468px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-477{width:469px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-478{width:470px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-479{width:471px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-480{width:472px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-481{width:473px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-482{width:474px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-483{width:475px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-484{width:476px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-485{width:477px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-486{width:478px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-487{width:479px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-488{width:480px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-489{width:481px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-490{width:482px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-491{width:483px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-492{width:484px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-493{width:485px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-494{width:486px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-495{width:487px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-496{width:488px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-497{width:489px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-498{width:490px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-499{width:491px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-500{width:492px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-501{width:493px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-502{width:494px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-503{width:495px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-504{width:496px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-505{width:497px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-506{width:498px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-507{width:499px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-508{width:500px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-509{width:501px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-510{width:502px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-511{width:503px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-512{width:504px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-513{width:505px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-514{width:506px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-515{width:507px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-516{width:508px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-517{width:509px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-518{width:510px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-519{width:511px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-520{width:512px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-521{width:513px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-522{width:514px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-523{width:515px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-524{width:516px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-525{width:517px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-526{width:518px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-527{width:519px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-528{width:520px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-529{width:521px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-530{width:522px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-531{width:523px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-532{width:524px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-533{width:525px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-534{width:526px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-535{width:527px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-536{width:528px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-537{width:529px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-538{width:530px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-539{width:531px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-540{width:532px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-541{width:533px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-542{width:534px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-543{width:535px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-544{width:536px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-545{width:537px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-546{width:538px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-547{width:539px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-548{width:540px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-549{width:541px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-550{width:542px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-551{width:543px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-552{width:544px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-553{width:545px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-554{width:546px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-555{width:547px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-556{width:548px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-557{width:549px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-558{width:550px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-559{width:551px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-560{width:552px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-561{width:553px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-562{width:554px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-563{width:555px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-564{width:556px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-565{width:557px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-566{width:558px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-567{width:559px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-568{width:560px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-569{width:561px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-570{width:562px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-571{width:563px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-572{width:564px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-573{width:565px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-574{width:566px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-575{width:567px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-576{width:568px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-577{width:569px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-578{width:570px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-579{width:571px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-580{width:572px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-581{width:573px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-582{width:574px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-583{width:575px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-584{width:576px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-585{width:577px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-586{width:578px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-587{width:579px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-588{width:580px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-589{width:581px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-590{width:582px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-591{width:583px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-592{width:584px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-593{width:585px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-594{width:586px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-595{width:587px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-596{width:588px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-597{width:589px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-598{width:590px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-599{width:591px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-600{width:592px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-601{width:593px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-602{width:594px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-603{width:595px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-604{width:596px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-605{width:597px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-606{width:598px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-607{width:599px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-608{width:600px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-609{width:601px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-610{width:602px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-611{width:603px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-612{width:604px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-613{width:605px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-614{width:606px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-615{width:607px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-616{width:608px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-617{width:609px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-618{width:610px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-619{width:611px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-620{width:612px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-621{width:613px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-622{width:614px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-623{width:615px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-624{width:616px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-625{width:617px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-626{width:618px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-627{width:619px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-628{width:620px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-629{width:621px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-630{width:622px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-631{width:623px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-632{width:624px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-633{width:625px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-634{width:626px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-635{width:627px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-636{width:628px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-637{width:629px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-638{width:630px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-639{width:631px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-640{width:632px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-641{width:633px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-642{width:634px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-643{width:635px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-644{width:636px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-645{width:637px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-646{width:638px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-647{width:639px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-648{width:640px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-649{width:641px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-650{width:642px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-651{width:643px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-652{width:644px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-653{width:645px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-654{width:646px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-655{width:647px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-656{width:648px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-657{width:649px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-658{width:650px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-659{width:651px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-660{width:652px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-661{width:653px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-662{width:654px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-663{width:655px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-664{width:656px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-665{width:657px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-666{width:658px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-667{width:659px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-668{width:660px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-669{width:661px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-670{width:662px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-671{width:663px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-672{width:664px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-673{width:665px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-674{width:666px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-675{width:667px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-676{width:668px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-677{width:669px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-678{width:670px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-679{width:671px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-680{width:672px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-681{width:673px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-682{width:674px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-683{width:675px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-684{width:676px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-685{width:677px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-686{width:678px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-687{width:679px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-688{width:680px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-689{width:681px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-690{width:682px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-691{width:683px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-692{width:684px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-693{width:685px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-694{width:686px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-695{width:687px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-696{width:688px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-697{width:689px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-698{width:690px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-699{width:691px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-700{width:692px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-701{width:693px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-702{width:694px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-703{width:695px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-704{width:696px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-705{width:697px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-706{width:698px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-707{width:699px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-708{width:700px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-709{width:701px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-710{width:702px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-711{width:703px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-712{width:704px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-713{width:705px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-714{width:706px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-715{width:707px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-716{width:708px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-717{width:709px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-718{width:710px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-719{width:711px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-720{width:712px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-721{width:713px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-722{width:714px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-723{width:715px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-724{width:716px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-725{width:717px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-726{width:718px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-727{width:719px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-728{width:720px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-729{width:721px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-730{width:722px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-731{width:723px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-732{width:724px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-733{width:725px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-734{width:726px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-735{width:727px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-736{width:728px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-737{width:729px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-738{width:730px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-739{width:731px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-740{width:732px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-741{width:733px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-742{width:734px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-743{width:735px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-744{width:736px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-745{width:737px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-746{width:738px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-747{width:739px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-748{width:740px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-749{width:741px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-750{width:742px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-751{width:743px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-752{width:744px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-753{width:745px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-754{width:746px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-755{width:747px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-756{width:748px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-757{width:749px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-758{width:750px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-759{width:751px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-760{width:752px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-761{width:753px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-762{width:754px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-763{width:755px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-764{width:756px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-765{width:757px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-766{width:758px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-767{width:759px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-768{width:760px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-769{width:761px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-770{width:762px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-771{width:763px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-772{width:764px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-773{width:765px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-774{width:766px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-775{width:767px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-776{width:768px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-777{width:769px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-778{width:770px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-779{width:771px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-780{width:772px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-781{width:773px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-782{width:774px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-783{width:775px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-784{width:776px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-785{width:777px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-786{width:778px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-787{width:779px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-788{width:780px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-789{width:781px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-790{width:782px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-791{width:783px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-792{width:784px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-793{width:785px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-794{width:786px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-795{width:787px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-796{width:788px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-797{width:789px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-798{width:790px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-799{width:791px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-800{width:792px}.ca-input-dropdown .popover-body .dropdown-options-divider.dispatch_dropdown{top:-4px}.ca-input-dropdown .popover-body .w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options{position:relative;top:0;left:0;z-index:1000;max-height:190px;width:100%;background-color:#2f2f2f;border-radius:3px;padding:4px;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;padding-right:0}.ca-input-dropdown .popover-body .dropdown-options.scroll .plus-icon{margin-right:1px!important}.ca-input-dropdown .popover-body .dropdown-options.scroll.load-dispatcher-wrapper{overflow-y:scroll;max-height:220px}.ca-input-dropdown .popover-body .dropdown-options.scroll.load-dispatcher-wrapper .scrollable-element{max-height:208px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options-fuel-franchise{padding:4px;max-height:300px}.ca-input-dropdown .popover-body .dropdown-options.no-result-container{padding:6px 10px!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option{padding:3px 4px;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result{line-height:14px;font-size:11px;font-weight:700;color:#919191;height:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new{padding:4.5px 6px 4.5px 4px;font-size:11px;font-weight:700;color:#92b1f5;position:relative;transition:background .2s ease-in-out,color .2s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new:hover{color:#fff;background:#3b73ed66}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ca-input-dropdown .w-col-288{width:288px!important}.ca-input-dropdown.bs-popover-top .popover-body{margin-top:0!important}.ca-input-dropdown.bs-popover-top .popover-body .dropdown-options-divider.dispatch_dropdown{top:auto;bottom:-6px}.ca-input-dropdown.bs-popover-top .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:2px 2px 0 0!important}.ca-input-dropdown.bs-popover-top .popover-body .dropdown-options.svgtext-dispatch-template{top:6px!important}\n"] }]
12677
+ DropdownOptionsPipe,
12678
+ ], template: "<div\n class=\"application-dropdown\"\n [ngClass]=\"\n inputConfig\n | inputDropdownMultiselectClass\n : multiselectItems\n : isMultiSelectInputFocus\n \"\n>\n @if (multiselectItems.length) {\n <p class=\"multiselect-label\">\n {{ multiSelectLabel }}\n </p>\n }\n\n @if (inputConfig.multiSelectDropdownActive) {\n <!-- Multiselect arrow -->\n <svg-icon\n class=\"multiselect-arrow\"\n [src]=\"inputDropdownSvgRoutes.inputDropdownArrowSvg\"\n (click)=\"toggleMultiselectDropdown()\"\n ></svg-icon>\n }\n\n @if (multiselectItems.length && !inputConfig.isDisabled) {\n <!-- Multiselect clear all -->\n <div\n class=\"input-clear multiselect-clear\"\n mainTooltip=\"Clear All\"\n ngbTooltip\n position=\"top\"\n tooltipBackground=\"#2f2f2f\"\n (click)=\"deleteAllMultiSelectItems()\"\n >\n <svg-icon\n class=\"input-clear-x\"\n [src]=\"inputDropdownSvgRoutes.xClearSvg\"\n ></svg-icon>\n </div>\n }\n\n @if (\n inputConfig.multiselectDropdown &&\n multiselectItems.length &&\n _template === 'multiselect'\n ) {\n <!-- Multiselect items -->\n <div class=\"multiselect-items {{ multiselectTemplate }}\">\n <ng-container> </ng-container>\n @for (\n multiSelect of multiselectItems;\n track $index;\n let ind = $index\n ) {\n <span class=\"multiselect-item\">\n {{ multiSelect?.name }}\n <!-- Active - Total Counter -->\n @if (\n inputConfig.multiSelectItemRange &&\n multiSelect?.totalCounter\n ) {\n <span>\n {{ multiSelect?.activeCounter }} of\n {{ multiSelect?.totalCounter }}\n </span>\n }\n\n @if (\n inputConfig.multiSelectItemRange &&\n !multiSelect?.totalCounter\n ) {\n <span>\n {{ multiSelect?.activeCounter }}\n </span>\n }\n\n @if (!inputConfig.isDisabled) {\n <!-- Active Counter -->\n <div\n (click)=\"removeMultiSelectItem(ind)\"\n class=\"multiselect-item-clear\"\n mainTooltip=\"Clear\"\n ngbTooltip\n position=\"top\"\n tooltipBackground=\"#2f2f2f\"\n >\n <svg-icon\n [src]=\"inputDropdownSvgRoutes.xClearSvg\"\n ></svg-icon>\n </div>\n }\n </span>\n }\n </div>\n }\n\n <!-- Dropdown search -->\n\n @if (!inputConfig.isIconInput) {\n <ca-input-test\n #t2=\"ngbPopover\"\n [ngbPopover]=\"caInputDropdownPopover\"\n popoverClass=\"ca-input-dropdown\"\n [autoClose]=\"'outside'\"\n [container]=\"'body'\"\n [placement]=\"\n _template == 'svgtext-dispatch-template'\n ? ['bottom-left', 'top-left']\n : ['bottom-left']\n \"\n #input\n [formControl]=\"inputFormControl | formControl\"\n [incorrectValue]=\"isIncorrectValue\"\n [inputConfig]=\"inputConfig\"\n [selectedDropdownLabelColor]=\"\n inputConfig.dropdownLabel\n ? _activeItem\n ? _activeItem\n : activeItemColor\n : null\n \"\n [template]=\"_template\"\n (blurInput)=\"onBlurInput($event)\"\n (clear)=\"onClearInputEvent($event)\"\n (commandEvent)=\"commandEvent($event)\"\n (showHideDropdown)=\"showHideDropdown($event)\"\n (dropDownKeyNavigation)=\"dropDownKeyNavigation($event)\"\n (incorrectEvent)=\"onIncorrectInput($event)\"\n (hidden)=\"handleHiddenDropdown()\"\n (shown)=\"handleOpenDropdown()\"\n ></ca-input-test>\n }\n\n <!-- Dropdown icon instead of input -->\n @if (inputConfig.isIconInput) {\n <div\n class=\"d-flex justify-content-center align-items-center input-icon-container\"\n [ngClass]=\"{\n valid:\n inputConfig.isValidIcon &&\n !inputConfig.inputIcon?.includes('custom'),\n active: popoverRef?.isOpen(),\n }\"\n >\n <svg-icon\n #t2=\"ngbPopover\"\n [ngbPopover]=\"caInputDropdownPopover\"\n popoverClass=\"ca-input-dropdown\"\n [autoClose]=\"'outside'\"\n [container]=\"'body'\"\n [placement]=\"['bottom-left']\"\n class=\"input-icon\"\n [src]=\"\n inputDropdownSvgRoutes.repairPmSvgRoute +\n inputConfig.inputIcon\n \"\n ></svg-icon>\n </div>\n }\n</div>\n<ng-template #caInputDropdownPopover>\n <!--------------------------- Dropdown options --------------------------->\n @if (inputConfig?.mergeDropdownBodyWithInput && _options?.length) {\n <div\n class=\"dropdown-options-divider {{\n inputConfig.dropdownWidthClass\n }}\"\n [class.dispatch_dropdown]=\"_template == 'svgtext-dispatch-template'\"\n ></div>\n }\n\n @if (\n (inputConfig?.name != 'Address' &&\n inputConfig?.name != 'RoutingAddress' &&\n !inputConfig.isDisabled) ||\n ((inputConfig?.name == 'Address' ||\n inputConfig?.name == 'RoutingAddress') &&\n !inputConfig.isDisabled &&\n _options?.length)\n ) {\n <div\n (scroll)=\"onScrollDropdown($event.target)\"\n [ngClass]=\"{\n scroll: _options | caDropdownCount: _template,\n 'dropdown-options-groups':\n _template === 'groups' ||\n _template === 'load-broker-contact',\n 'dropdown-options-fuel-franchise':\n _template === 'fuel-franchise',\n 'merge-dropdown-body-with-input':\n inputConfig.mergeDropdownBodyWithInput,\n 'no-result-container': _options[0]?.name === 'No Results',\n 'svgtext-dispatch-template':\n _template == 'svgtext-dispatch-template',\n }\"\n class=\"dropdown-options {{ inputConfig.dropdownWidthClass }}\"\n >\n @switch (_template) {\n <!--------------------------- SVG Template (Render svgs or text if svgs doesn't exist ) --------------------------->\n\n @case (dropdownTemplateTypeEnum.SVG_TEMPLATE) {\n <app-ca-input-dropdown-svg-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-svg-template>\n <!-- <ng-container \n *ngTemplateOutlet=\"dropdownSvgTemplate\"\n ></ng-container> -->\n }\n\n <!--------------------------- Svg Text Template (display flex) --------------------------->\n\n @case (dropdownTemplateTypeEnum.SVGTEXT_TEMPLATE) {\n <app-ca-input-dropdown-svgtext-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-svgtext-template>\n\n <!-- <ng-container\n *ngTemplateOutlet=\"svgTextTemplate\"\n ></ng-container> -->\n }\n\n <!-------------------------------------------Dispatch dropdown-------------------------------------------->\n\n @case (dropdownTemplateTypeEnum.SVGTEXT_DISPATCH_TEMPLATE) {\n <app-ca-input-dropdown-svgtext-dispatch-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-svgtext-dispatch-template>\n\n <!-- <ng-container\n *ngTemplateOutlet=\"dispatchTemplate\"\n ></ng-container> -->\n }\n\n <!--------------------------- Details template (truck, trailer... details-pages) --------------------------->\n\n @case (dropdownTemplateTypeEnum.DETAILS_TEMPLATE) {\n <app-ca-input-dropdown-details-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n [sort]=\"_sort\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-details-template>\n\n <!-- <ng-container\n *ngTemplateOutlet=\"detailsTemplate\"\n ></ng-container> -->\n }\n\n <!--------------------------- Grouping template (can see on contact modal) --------------------------->\n\n @case (dropdownTemplateTypeEnum.GROUPS) {\n <app-ca-input-dropdown-groups\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-groups>\n }\n\n <!--------------------------- Multiselect Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.MULTISELECT) {\n <app-ca-input-dropdown-multiselect\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [lastActiveMultiselectItem]=\"lastActiveMultiselectItem\"\n [getSuperControl]=\"inputFormControl\"\n (onMultiselectSelect)=\"onMultiselectSelect($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-multiselect>\n }\n <!--------------------------- Labels Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LABELS) {\n <app-ca-input-dropdown-labels\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n [inputConfig]=\"inputConfig\"\n [labelMode]=\"labelMode\"\n [canAddNew]=\"_canAddNew\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-labels>\n }\n\n <!--------------------------- Dispatch Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.DISPATCH) {\n <app-ca-input-dropdown-dispatch\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-dispatch>\n }\n\n <!--------------------------- Load Dispatcher Template (user avatar + user name) --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHER) {\n <app-ca-input-dropdown-load-dispatcher\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-dispatcher>\n }\n\n <!--------------------------- Load Combine Truck-Trailer-Driver Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHES_TTD) {\n <app-ca-input-dropdown-load-dispatches-ttd\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-dispatches-ttd>\n }\n\n <!--------------------------- Load Broker Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_BROKER) {\n <app-ca-input-dropdown-load-broker\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-broker>\n }\n\n <!--------------------------- Load Broker Contact Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_BROKER_CONTACT) {\n <app-ca-input-dropdown-load-broker-contact\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-broker-contact>\n }\n\n <!--------------------------- Load Shipper Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LOAD_SHIPPER) {\n <app-ca-input-dropdown-load-shipper\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-load-shipper>\n }\n\n <!--------------------------- Template Text - Counter --------------------------->\n\n @case (dropdownTemplateTypeEnum.TEXT_COUNTER) {\n <app-ca-input-dropdown-text-counter\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-text-counter>\n }\n\n <!--------------------------- Fuel Franchise Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.FUEL_FRANCHISE) {\n <app-ca-input-dropdown-fuel-franchise\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n (toggleNestedList)=\"toggleNestedList($event)\"\n (onActiveItemGroup)=\"onActiveItemGroup($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-fuel-franchise>\n }\n\n <!-- Double Text Template -->\n\n @case (dropdownTemplateTypeEnum.DOUBLE_TEXT_TEMPLATE) {\n <app-ca-input-dropdown-double-text-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-double-text-template>\n }\n\n <!-- Double Column Template -->\n\n @case (dropdownTemplateTypeEnum.DOUBLE_COLUMN_TEMPLATE) {\n <app-ca-input-dropdown-double-text-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-double-text-template>\n }\n\n <!-- Triple Column Template -->\n\n @case (dropdownTemplateTypeEnum.TRIPLE_COLUMN_TEMPLATE) {\n <app-ca-input-dropdown-triple-text-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-triple-text-template>\n }\n\n <!-- PAYROLL TRUCKS Template -->\n\n @case (dropdownTemplateTypeEnum.PAYROLL_TRUCKS) {\n <app-ca-input-dropdown-payroll-trucks\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-payroll-trucks>\n }\n\n <!--------------------------- Default Template - Render Only Text --------------------------->\n @default {\n <app-ca-input-dropdown-default-template\n [options]=\"\n searchText\n | caDropdownOptionsPipe\n : _options\n : canAddNew\n : label\n \"\n [activeItem]=\"_activeItem\"\n [getSuperControl]=\"inputFormControl\"\n [inputConfig]=\"inputConfig\"\n [searchText]=\"searchText\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n ></app-ca-input-dropdown-default-template>\n }\n }\n </div>\n }\n</ng-template>", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white-2::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}@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}}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active:not(.payroll-trucks):after,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:not(.payroll-trucks):after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#ccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ca-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:-webkit-max-content!important;width:-moz-max-content!important;width:max-content!important;padding:0!important;margin:0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;-moz-column-gap:29px;column-gap:29px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-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}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ca-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ca-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ca-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ca-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ca-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ca-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ca-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ca-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ca-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ca-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ca-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ca-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ca-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ca-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ca-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ca-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ca-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ca-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ca-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ca-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ca-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ca-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ca-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ca-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ca-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ca-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ca-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ca-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ca-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ca-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ca-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ca-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ca-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ca-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ca-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ca-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ca-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ca-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ca-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ca-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ca-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ca-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ca-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ca-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ca-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ca-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ca-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ca-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ca-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ca-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ca-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ca-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ca-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ca-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ca-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ca-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ca-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ca-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ca-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ca-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ca-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ca-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ca-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ca-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ca-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ca-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ca-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ca-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ca-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ca-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ca-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ca-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ca-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ca-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ca-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ca-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ca-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ca-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ca-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ca-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ca-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ca-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ca-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ca-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ca-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ca-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ca-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ca-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ca-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ca-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ca-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ca-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ca-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ca-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ca-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ca-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ca-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ca-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ca-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ca-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ca-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ca-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ca-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ca-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ca-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ca-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ca-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ca-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ca-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ca-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ca-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ca-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ca-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ca-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ca-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ca-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ca-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ca-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ca-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ca-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ca-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ca-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ca-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ca-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ca-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ca-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ca-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ca-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ca-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ca-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ca-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ca-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ca-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ca-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ca-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ca-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ca-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ca-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ca-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ca-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ca-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ca-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ca-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ca-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ca-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ca-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ca-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ca-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ca-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ca-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ca-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ca-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ca-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ca-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ca-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ca-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ca-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ca-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ca-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ca-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ca-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ca-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ca-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ca-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ca-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ca-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ca-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ca-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ca-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ca-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ca-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ca-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ca-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ca-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ca-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ca-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ca-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ca-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ca-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ca-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ca-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ca-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ca-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ca-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ca-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ca-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ca-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ca-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ca-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ca-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ca-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ca-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ca-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ca-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ca-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ca-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ca-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ca-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ca-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ca-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ca-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ca-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ca-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ca-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ca-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ca-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ca-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ca-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ca-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ca-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ca-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ca-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ca-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ca-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ca-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ca-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ca-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ca-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ca-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ca-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ca-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ca-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ca-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ca-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ca-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ca-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ca-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ca-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ca-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ca-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ca-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ca-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ca-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ca-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ca-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ca-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ca-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ca-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ca-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ca-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ca-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ca-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ca-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ca-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ca-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ca-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ca-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ca-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ca-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ca-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ca-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ca-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ca-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ca-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ca-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ca-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ca-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ca-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ca-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ca-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ca-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ca-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ca-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ca-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ca-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ca-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ca-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ca-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ca-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ca-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ca-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ca-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ca-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ca-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ca-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ca-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ca-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ca-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ca-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ca-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ca-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ca-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ca-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ca-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ca-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ca-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ca-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ca-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ca-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ca-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ca-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ca-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ca-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ca-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ca-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ca-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ca-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ca-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ca-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ca-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ca-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ca-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ca-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ca-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ca-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ca-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ca-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ca-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ca-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ca-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ca-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ca-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ca-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ca-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ca-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ca-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ca-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ca-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ca-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ca-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ca-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ca-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ca-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ca-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ca-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ca-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ca-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ca-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ca-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ca-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ca-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ca-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ca-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ca-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ca-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ca-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ca-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ca-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ca-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ca-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ca-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ca-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ca-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ca-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ca-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ca-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ca-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ca-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ca-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ca-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ca-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ca-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ca-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ca-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ca-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ca-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ca-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ca-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ca-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ca-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ca-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ca-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ca-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ca-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ca-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ca-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ca-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ca-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ca-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ca-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ca-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ca-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ca-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ca-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ca-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ca-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ca-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ca-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ca-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ca-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ca-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ca-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ca-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ca-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ca-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ca-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ca-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ca-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ca-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ca-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ca-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ca-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ca-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ca-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ca-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ca-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ca-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ca-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ca-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ca-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ca-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ca-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ca-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ca-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ca-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ca-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ca-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ca-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ca-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ca-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ca-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ca-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ca-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ca-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ca-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ca-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ca-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ca-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ca-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ca-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ca-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ca-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ca-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ca-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ca-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ca-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ca-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ca-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ca-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ca-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ca-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ca-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ca-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ca-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ca-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ca-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ca-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ca-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ca-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ca-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ca-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ca-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ca-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ca-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ca-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ca-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ca-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ca-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ca-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ca-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ca-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ca-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ca-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ca-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ca-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ca-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ca-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ca-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ca-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ca-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ca-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ca-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ca-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ca-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ca-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ca-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ca-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ca-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ca-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ca-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ca-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ca-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ca-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ca-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ca-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ca-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ca-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ca-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ca-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ca-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ca-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ca-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ca-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ca-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ca-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ca-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ca-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ca-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ca-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ca-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ca-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ca-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ca-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ca-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ca-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ca-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ca-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ca-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ca-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ca-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ca-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ca-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ca-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ca-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ca-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ca-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ca-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ca-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ca-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ca-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ca-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ca-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ca-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ca-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ca-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ca-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ca-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ca-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ca-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ca-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ca-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ca-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ca-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ca-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ca-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ca-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ca-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ca-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ca-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ca-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ca-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ca-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ca-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ca-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ca-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ca-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ca-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ca-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ca-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ca-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ca-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ca-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ca-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ca-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ca-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ca-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ca-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ca-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ca-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ca-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ca-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ca-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ca-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ca-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ca-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ca-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ca-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ca-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ca-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ca-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ca-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ca-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ca-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ca-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ca-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ca-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ca-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ca-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ca-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ca-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ca-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ca-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ca-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ca-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ca-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ca-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ca-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ca-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ca-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ca-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ca-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ca-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ca-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ca-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ca-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ca-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ca-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ca-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ca-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ca-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ca-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ca-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ca-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ca-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ca-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ca-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ca-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ca-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ca-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ca-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ca-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ca-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ca-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ca-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ca-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ca-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ca-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ca-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ca-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ca-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ca-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ca-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ca-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ca-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ca-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ca-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ca-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ca-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ca-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ca-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ca-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ca-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ca-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ca-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ca-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ca-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ca-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ca-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ca-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ca-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ca-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ca-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ca-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ca-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ca-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ca-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ca-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ca-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ca-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ca-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ca-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ca-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ca-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ca-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ca-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ca-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ca-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ca-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ca-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ca-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ca-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ca-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ca-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ca-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ca-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ca-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ca-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ca-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ca-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ca-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ca-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ca-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ca-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ca-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ca-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ca-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ca-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ca-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ca-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ca-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ca-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ca-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ca-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ca-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ca-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ca-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ca-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ca-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ca-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ca-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ca-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ca-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ca-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ca-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ca-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ca-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ca-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ca-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ca-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ca-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ca-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ca-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ca-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ca-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ca-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ca-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ca-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ca-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ca-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ca-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ca-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ca-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ca-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ca-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ca-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ca-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ca-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ca-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ca-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ca-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ca-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ca-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ca-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ca-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ca-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ca-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ca-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ca-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ca-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ca-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ca-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ca-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ca-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ca-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ca-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ca-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ca-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ca-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ca-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ca-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ca-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ca-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ca-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ca-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ca-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ca-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ca-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ca-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ca-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ca-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ca-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ca-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ca-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ca-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ca-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ca-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ca-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ca-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ca-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ca-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ca-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ca-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ca-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ca-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ca-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ca-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ca-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ca-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ca-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ca-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ca-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ca-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ca-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ca-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ca-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ca-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ca-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ca-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ca-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ca-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ca-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ca-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ca-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ca-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ca-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ca-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ca-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ca-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ca-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ca-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ca-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ca-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ca-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ca-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ca-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ca-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ca-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ca-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ca-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ca-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ca-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ca-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ca-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ca-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ca-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ca-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ca-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ca-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::-moz-selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::-moz-selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.ca-input-dropdown .arrow{display:none!important}.ca-input-dropdown .popover-body{margin-top:-2px!important}.ca-input-dropdown .popover-body .dropdown-options-divider{content:\"\";height:1px;border-radius:1px;background-color:#424242;position:absolute;z-index:99999;top:0;left:0}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-1{width:-7px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-2{width:-6px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-3{width:-5px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-4{width:-4px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-5{width:-3px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-6{width:-2px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-7{width:-1px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-8{width:0px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-9{width:1px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-10{width:2px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-11{width:3px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-12{width:4px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-13{width:5px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-14{width:6px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-15{width:7px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-16{width:8px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-17{width:9px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-18{width:10px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-19{width:11px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-20{width:12px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-21{width:13px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-22{width:14px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-23{width:15px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-24{width:16px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-25{width:17px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-26{width:18px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-27{width:19px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-28{width:20px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-29{width:21px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-30{width:22px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-31{width:23px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-32{width:24px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-33{width:25px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-34{width:26px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-35{width:27px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-36{width:28px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-37{width:29px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-38{width:30px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-39{width:31px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-40{width:32px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-41{width:33px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-42{width:34px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-43{width:35px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-44{width:36px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-45{width:37px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-46{width:38px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-47{width:39px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-48{width:40px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-49{width:41px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-50{width:42px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-51{width:43px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-52{width:44px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-53{width:45px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-54{width:46px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-55{width:47px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-56{width:48px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-57{width:49px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-58{width:50px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-59{width:51px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-60{width:52px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-61{width:53px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-62{width:54px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-63{width:55px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-64{width:56px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-65{width:57px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-66{width:58px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-67{width:59px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-68{width:60px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-69{width:61px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-70{width:62px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-71{width:63px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-72{width:64px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-73{width:65px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-74{width:66px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-75{width:67px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-76{width:68px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-77{width:69px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-78{width:70px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-79{width:71px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-80{width:72px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-81{width:73px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-82{width:74px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-83{width:75px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-84{width:76px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-85{width:77px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-86{width:78px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-87{width:79px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-88{width:80px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-89{width:81px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-90{width:82px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-91{width:83px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-92{width:84px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-93{width:85px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-94{width:86px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-95{width:87px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-96{width:88px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-97{width:89px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-98{width:90px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-99{width:91px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-100{width:92px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-101{width:93px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-102{width:94px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-103{width:95px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-104{width:96px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-105{width:97px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-106{width:98px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-107{width:99px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-108{width:100px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-109{width:101px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-110{width:102px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-111{width:103px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-112{width:104px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-113{width:105px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-114{width:106px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-115{width:107px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-116{width:108px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-117{width:109px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-118{width:110px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-119{width:111px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-120{width:112px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-121{width:113px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-122{width:114px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-123{width:115px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-124{width:116px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-125{width:117px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-126{width:118px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-127{width:119px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-128{width:120px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-129{width:121px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-130{width:122px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-131{width:123px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-132{width:124px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-133{width:125px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-134{width:126px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-135{width:127px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-136{width:128px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-137{width:129px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-138{width:130px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-139{width:131px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-140{width:132px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-141{width:133px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-142{width:134px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-143{width:135px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-144{width:136px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-145{width:137px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-146{width:138px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-147{width:139px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-148{width:140px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-149{width:141px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-150{width:142px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-151{width:143px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-152{width:144px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-153{width:145px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-154{width:146px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-155{width:147px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-156{width:148px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-157{width:149px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-158{width:150px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-159{width:151px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-160{width:152px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-161{width:153px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-162{width:154px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-163{width:155px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-164{width:156px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-165{width:157px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-166{width:158px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-167{width:159px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-168{width:160px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-169{width:161px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-170{width:162px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-171{width:163px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-172{width:164px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-173{width:165px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-174{width:166px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-175{width:167px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-176{width:168px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-177{width:169px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-178{width:170px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-179{width:171px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-180{width:172px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-181{width:173px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-182{width:174px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-183{width:175px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-184{width:176px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-185{width:177px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-186{width:178px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-187{width:179px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-188{width:180px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-189{width:181px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-190{width:182px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-191{width:183px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-192{width:184px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-193{width:185px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-194{width:186px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-195{width:187px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-196{width:188px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-197{width:189px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-198{width:190px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-199{width:191px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-200{width:192px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-201{width:193px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-202{width:194px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-203{width:195px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-204{width:196px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-205{width:197px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-206{width:198px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-207{width:199px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-208{width:200px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-209{width:201px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-210{width:202px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-211{width:203px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-212{width:204px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-213{width:205px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-214{width:206px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-215{width:207px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-216{width:208px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-217{width:209px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-218{width:210px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-219{width:211px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-220{width:212px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-221{width:213px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-222{width:214px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-223{width:215px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-224{width:216px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-225{width:217px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-226{width:218px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-227{width:219px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-228{width:220px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-229{width:221px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-230{width:222px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-231{width:223px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-232{width:224px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-233{width:225px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-234{width:226px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-235{width:227px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-236{width:228px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-237{width:229px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-238{width:230px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-239{width:231px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-240{width:232px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-241{width:233px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-242{width:234px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-243{width:235px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-244{width:236px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-245{width:237px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-246{width:238px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-247{width:239px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-248{width:240px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-249{width:241px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-250{width:242px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-251{width:243px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-252{width:244px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-253{width:245px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-254{width:246px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-255{width:247px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-256{width:248px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-257{width:249px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-258{width:250px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-259{width:251px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-260{width:252px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-261{width:253px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-262{width:254px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-263{width:255px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-264{width:256px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-265{width:257px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-266{width:258px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-267{width:259px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-268{width:260px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-269{width:261px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-270{width:262px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-271{width:263px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-272{width:264px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-273{width:265px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-274{width:266px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-275{width:267px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-276{width:268px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-277{width:269px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-278{width:270px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-279{width:271px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-280{width:272px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-281{width:273px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-282{width:274px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-283{width:275px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-284{width:276px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-285{width:277px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-286{width:278px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-287{width:279px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-288{width:280px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-289{width:281px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-290{width:282px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-291{width:283px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-292{width:284px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-293{width:285px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-294{width:286px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-295{width:287px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-296{width:288px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-297{width:289px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-298{width:290px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-299{width:291px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-300{width:292px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-301{width:293px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-302{width:294px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-303{width:295px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-304{width:296px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-305{width:297px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-306{width:298px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-307{width:299px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-308{width:300px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-309{width:301px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-310{width:302px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-311{width:303px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-312{width:304px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-313{width:305px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-314{width:306px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-315{width:307px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-316{width:308px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-317{width:309px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-318{width:310px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-319{width:311px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-320{width:312px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-321{width:313px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-322{width:314px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-323{width:315px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-324{width:316px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-325{width:317px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-326{width:318px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-327{width:319px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-328{width:320px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-329{width:321px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-330{width:322px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-331{width:323px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-332{width:324px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-333{width:325px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-334{width:326px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-335{width:327px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-336{width:328px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-337{width:329px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-338{width:330px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-339{width:331px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-340{width:332px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-341{width:333px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-342{width:334px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-343{width:335px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-344{width:336px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-345{width:337px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-346{width:338px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-347{width:339px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-348{width:340px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-349{width:341px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-350{width:342px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-351{width:343px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-352{width:344px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-353{width:345px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-354{width:346px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-355{width:347px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-356{width:348px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-357{width:349px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-358{width:350px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-359{width:351px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-360{width:352px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-361{width:353px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-362{width:354px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-363{width:355px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-364{width:356px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-365{width:357px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-366{width:358px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-367{width:359px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-368{width:360px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-369{width:361px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-370{width:362px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-371{width:363px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-372{width:364px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-373{width:365px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-374{width:366px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-375{width:367px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-376{width:368px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-377{width:369px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-378{width:370px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-379{width:371px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-380{width:372px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-381{width:373px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-382{width:374px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-383{width:375px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-384{width:376px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-385{width:377px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-386{width:378px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-387{width:379px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-388{width:380px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-389{width:381px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-390{width:382px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-391{width:383px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-392{width:384px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-393{width:385px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-394{width:386px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-395{width:387px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-396{width:388px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-397{width:389px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-398{width:390px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-399{width:391px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-400{width:392px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-401{width:393px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-402{width:394px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-403{width:395px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-404{width:396px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-405{width:397px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-406{width:398px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-407{width:399px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-408{width:400px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-409{width:401px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-410{width:402px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-411{width:403px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-412{width:404px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-413{width:405px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-414{width:406px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-415{width:407px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-416{width:408px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-417{width:409px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-418{width:410px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-419{width:411px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-420{width:412px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-421{width:413px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-422{width:414px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-423{width:415px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-424{width:416px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-425{width:417px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-426{width:418px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-427{width:419px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-428{width:420px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-429{width:421px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-430{width:422px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-431{width:423px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-432{width:424px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-433{width:425px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-434{width:426px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-435{width:427px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-436{width:428px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-437{width:429px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-438{width:430px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-439{width:431px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-440{width:432px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-441{width:433px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-442{width:434px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-443{width:435px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-444{width:436px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-445{width:437px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-446{width:438px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-447{width:439px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-448{width:440px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-449{width:441px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-450{width:442px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-451{width:443px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-452{width:444px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-453{width:445px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-454{width:446px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-455{width:447px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-456{width:448px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-457{width:449px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-458{width:450px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-459{width:451px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-460{width:452px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-461{width:453px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-462{width:454px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-463{width:455px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-464{width:456px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-465{width:457px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-466{width:458px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-467{width:459px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-468{width:460px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-469{width:461px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-470{width:462px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-471{width:463px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-472{width:464px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-473{width:465px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-474{width:466px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-475{width:467px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-476{width:468px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-477{width:469px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-478{width:470px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-479{width:471px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-480{width:472px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-481{width:473px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-482{width:474px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-483{width:475px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-484{width:476px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-485{width:477px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-486{width:478px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-487{width:479px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-488{width:480px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-489{width:481px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-490{width:482px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-491{width:483px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-492{width:484px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-493{width:485px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-494{width:486px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-495{width:487px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-496{width:488px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-497{width:489px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-498{width:490px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-499{width:491px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-500{width:492px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-501{width:493px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-502{width:494px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-503{width:495px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-504{width:496px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-505{width:497px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-506{width:498px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-507{width:499px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-508{width:500px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-509{width:501px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-510{width:502px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-511{width:503px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-512{width:504px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-513{width:505px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-514{width:506px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-515{width:507px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-516{width:508px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-517{width:509px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-518{width:510px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-519{width:511px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-520{width:512px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-521{width:513px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-522{width:514px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-523{width:515px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-524{width:516px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-525{width:517px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-526{width:518px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-527{width:519px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-528{width:520px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-529{width:521px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-530{width:522px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-531{width:523px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-532{width:524px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-533{width:525px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-534{width:526px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-535{width:527px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-536{width:528px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-537{width:529px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-538{width:530px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-539{width:531px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-540{width:532px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-541{width:533px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-542{width:534px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-543{width:535px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-544{width:536px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-545{width:537px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-546{width:538px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-547{width:539px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-548{width:540px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-549{width:541px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-550{width:542px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-551{width:543px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-552{width:544px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-553{width:545px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-554{width:546px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-555{width:547px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-556{width:548px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-557{width:549px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-558{width:550px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-559{width:551px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-560{width:552px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-561{width:553px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-562{width:554px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-563{width:555px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-564{width:556px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-565{width:557px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-566{width:558px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-567{width:559px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-568{width:560px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-569{width:561px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-570{width:562px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-571{width:563px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-572{width:564px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-573{width:565px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-574{width:566px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-575{width:567px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-576{width:568px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-577{width:569px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-578{width:570px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-579{width:571px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-580{width:572px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-581{width:573px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-582{width:574px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-583{width:575px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-584{width:576px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-585{width:577px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-586{width:578px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-587{width:579px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-588{width:580px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-589{width:581px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-590{width:582px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-591{width:583px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-592{width:584px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-593{width:585px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-594{width:586px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-595{width:587px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-596{width:588px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-597{width:589px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-598{width:590px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-599{width:591px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-600{width:592px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-601{width:593px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-602{width:594px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-603{width:595px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-604{width:596px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-605{width:597px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-606{width:598px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-607{width:599px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-608{width:600px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-609{width:601px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-610{width:602px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-611{width:603px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-612{width:604px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-613{width:605px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-614{width:606px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-615{width:607px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-616{width:608px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-617{width:609px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-618{width:610px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-619{width:611px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-620{width:612px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-621{width:613px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-622{width:614px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-623{width:615px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-624{width:616px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-625{width:617px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-626{width:618px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-627{width:619px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-628{width:620px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-629{width:621px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-630{width:622px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-631{width:623px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-632{width:624px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-633{width:625px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-634{width:626px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-635{width:627px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-636{width:628px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-637{width:629px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-638{width:630px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-639{width:631px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-640{width:632px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-641{width:633px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-642{width:634px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-643{width:635px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-644{width:636px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-645{width:637px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-646{width:638px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-647{width:639px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-648{width:640px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-649{width:641px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-650{width:642px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-651{width:643px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-652{width:644px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-653{width:645px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-654{width:646px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-655{width:647px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-656{width:648px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-657{width:649px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-658{width:650px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-659{width:651px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-660{width:652px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-661{width:653px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-662{width:654px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-663{width:655px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-664{width:656px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-665{width:657px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-666{width:658px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-667{width:659px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-668{width:660px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-669{width:661px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-670{width:662px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-671{width:663px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-672{width:664px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-673{width:665px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-674{width:666px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-675{width:667px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-676{width:668px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-677{width:669px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-678{width:670px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-679{width:671px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-680{width:672px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-681{width:673px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-682{width:674px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-683{width:675px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-684{width:676px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-685{width:677px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-686{width:678px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-687{width:679px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-688{width:680px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-689{width:681px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-690{width:682px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-691{width:683px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-692{width:684px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-693{width:685px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-694{width:686px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-695{width:687px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-696{width:688px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-697{width:689px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-698{width:690px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-699{width:691px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-700{width:692px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-701{width:693px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-702{width:694px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-703{width:695px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-704{width:696px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-705{width:697px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-706{width:698px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-707{width:699px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-708{width:700px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-709{width:701px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-710{width:702px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-711{width:703px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-712{width:704px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-713{width:705px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-714{width:706px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-715{width:707px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-716{width:708px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-717{width:709px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-718{width:710px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-719{width:711px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-720{width:712px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-721{width:713px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-722{width:714px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-723{width:715px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-724{width:716px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-725{width:717px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-726{width:718px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-727{width:719px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-728{width:720px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-729{width:721px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-730{width:722px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-731{width:723px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-732{width:724px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-733{width:725px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-734{width:726px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-735{width:727px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-736{width:728px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-737{width:729px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-738{width:730px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-739{width:731px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-740{width:732px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-741{width:733px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-742{width:734px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-743{width:735px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-744{width:736px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-745{width:737px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-746{width:738px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-747{width:739px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-748{width:740px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-749{width:741px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-750{width:742px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-751{width:743px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-752{width:744px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-753{width:745px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-754{width:746px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-755{width:747px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-756{width:748px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-757{width:749px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-758{width:750px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-759{width:751px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-760{width:752px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-761{width:753px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-762{width:754px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-763{width:755px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-764{width:756px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-765{width:757px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-766{width:758px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-767{width:759px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-768{width:760px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-769{width:761px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-770{width:762px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-771{width:763px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-772{width:764px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-773{width:765px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-774{width:766px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-775{width:767px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-776{width:768px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-777{width:769px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-778{width:770px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-779{width:771px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-780{width:772px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-781{width:773px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-782{width:774px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-783{width:775px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-784{width:776px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-785{width:777px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-786{width:778px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-787{width:779px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-788{width:780px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-789{width:781px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-790{width:782px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-791{width:783px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-792{width:784px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-793{width:785px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-794{width:786px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-795{width:787px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-796{width:788px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-797{width:789px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-798{width:790px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-799{width:791px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-800{width:792px}.ca-input-dropdown .popover-body .dropdown-options-divider.dispatch_dropdown{top:-4px}.ca-input-dropdown .popover-body .w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options{position:relative;top:0;left:0;z-index:1000;max-height:190px;width:100%;background-color:#2f2f2f;border-radius:3px;padding:4px;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;padding-right:0}.ca-input-dropdown .popover-body .dropdown-options.scroll .plus-icon{margin-right:1px!important}.ca-input-dropdown .popover-body .dropdown-options.scroll.load-dispatcher-wrapper{overflow-y:scroll;max-height:220px}.ca-input-dropdown .popover-body .dropdown-options.scroll.load-dispatcher-wrapper .scrollable-element{max-height:208px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options-fuel-franchise{padding:4px;max-height:300px}.ca-input-dropdown .popover-body .dropdown-options.no-result-container{padding:6px 10px!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option{padding:3px 4px;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result{line-height:14px;font-size:11px;font-weight:700;color:#919191;height:auto!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new{padding:4.5px 6px 4.5px 4px;font-size:11px;font-weight:700;color:#92b1f5;position:relative;transition:background .2s ease-in-out,color .2s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new:hover{color:#fff;background:#3b73ed66}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ca-input-dropdown .w-col-288{width:288px!important}.ca-input-dropdown.bs-popover-top .popover-body{margin-top:0!important}.ca-input-dropdown.bs-popover-top .popover-body .dropdown-options-divider.dispatch_dropdown{top:auto;bottom:-6px}.ca-input-dropdown.bs-popover-top .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:2px 2px 0 0!important}.ca-input-dropdown.bs-popover-top .popover-body .dropdown-options.svgtext-dispatch-template{top:6px!important}\n"] }]
12585
12679
  }], ctorParameters: () => [{ type: i1$1.NgControl, decorators: [{
12586
12680
  type: Self
12587
12681
  }] }, { type: ImageBase64Service }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }], propDecorators: { inputRef: [{
@@ -12590,6 +12684,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
12590
12684
  }], popoverRef: [{
12591
12685
  type: ViewChild,
12592
12686
  args: ['t2']
12687
+ }], label: [{
12688
+ type: Input
12689
+ }], optionValue: [{
12690
+ type: Input
12593
12691
  }], template: [{
12594
12692
  type: Input
12595
12693
  }], multiselectTemplate: [{
@@ -12977,7 +13075,7 @@ class CaInputAddressDropdownComponent {
12977
13075
  // Modules
12978
13076
  CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.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$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "component", type: i2.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "ngmodule", type: HttpClientModule }, { kind: "component", type:
12979
13077
  // Components
12980
- CaInputDropdownComponent, selector: "app-ca-input-dropdown", inputs: ["template", "multiselectTemplate", "inputConfig", "canAddNew", "canOpenModal", "sort", "activeItem", "activeItemColor", "labelMode", "options", "preloadMultiselectItems", "isDetailsPages", "isIncorrectValue", "isAddressDropdown"], outputs: ["selectedItem", "selectedItems", "selectedItemColor", "selectedLabelMode", "closeDropdown", "saveItem", "incorrectEvent", "placeholderIconEvent", "pagination", "activeGroup", "clearInputEvent"] }, { kind: "component", type: CaAppTooltipV2Component, selector: "mainCaTooltip, [mainCaTooltip]", inputs: ["mainCaTooltip", "position", "openTooltipDelay", "tooltipBackground", "tooltipColor", "tooltipTextAlign", "tooltipMarginTop", "disableTooltip"] }], encapsulation: i0.ViewEncapsulation.None }); }
13078
+ CaInputDropdownComponent, selector: "app-ca-input-dropdown", inputs: ["label", "optionValue", "template", "multiselectTemplate", "inputConfig", "canAddNew", "canOpenModal", "sort", "activeItem", "activeItemColor", "labelMode", "options", "preloadMultiselectItems", "isDetailsPages", "isIncorrectValue", "isAddressDropdown"], outputs: ["selectedItem", "selectedItems", "selectedItemColor", "selectedLabelMode", "closeDropdown", "saveItem", "incorrectEvent", "placeholderIconEvent", "pagination", "activeGroup", "clearInputEvent"] }, { kind: "component", type: CaAppTooltipV2Component, selector: "mainCaTooltip, [mainCaTooltip]", inputs: ["mainCaTooltip", "position", "openTooltipDelay", "tooltipBackground", "tooltipColor", "tooltipTextAlign", "tooltipMarginTop", "disableTooltip"] }], encapsulation: i0.ViewEncapsulation.None }); }
12981
13079
  }
12982
13080
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputAddressDropdownComponent, decorators: [{
12983
13081
  type: Component,