ca-components 1.7.9991 → 1.7.9992

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.
@@ -584,7 +584,7 @@ export class CaInputDropdownTestComponent {
584
584
  clearTimeout(this.clearTimeoutDropdown);
585
585
  }
586
586
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputDropdownTestComponent, deps: [{ token: i1.NgControl, self: true }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
587
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaInputDropdownTestComponent, isStandalone: true, selector: "ca-input-dropdown-test", 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", searchInputEvent: "searchInputEvent" }, providers: [FormControlPipe], viewQueries: [{ propertyName: "inputRef", first: true, predicate: ["input"], descendants: true }, { propertyName: "popoverRef", first: true, predicate: ["t2"], descendants: true }, { propertyName: "dropdownComponentRef", first: true, predicate: ["dropdownComponentRef"], descendants: 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 (\n multiselectItems.length &&\n !inputConfig.isDisabled &&\n !getSuperControl?.disabled\n ) {\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 (\n !inputConfig.isDisabled && !getSuperControl?.disabled\n ) {\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 @if (!searchInputText.value) {\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 <div\n [class.open]=\"isDropDownIsOpen\"\n [class.leftIcon]=\"inputConfig.placeholderIcon\"\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 'svgtext-dispatch-template':\n _template == 'svgtext-dispatch-template',\n 'dropdown-value-right-side': inputConfig.placeholderIconRightSide\n }\"\n class=\"dropdown_value dropdown-options {{\n inputConfig.dropdownWidthClass\n }}\"\n >\n @switch (_template) {\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHES_TTD) {\n @if (activeItem) {\n <div class=\"dropdown-option dropdown-double-column\">\n <app-ca-input-dropdown-load-dispatches-ttd-item\n [index]=\"0\"\n [searchText]=\"searchInputText.value || ''\"\n [activeItem]=\"activeItem\"\n [option]=\"activeItem!\"\n [label]=\"label\"\n >\n </app-ca-input-dropdown-load-dispatches-ttd-item>\n </div>\n }\n }\n @case (dropdownTemplateTypeEnum.LOAD_BROKER) {\n @if (activeItem) {\n <app-ca-input-dropdown-load-broker-item\n [option]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [isInOption]=\"true\"\n [label]=\"label\"\n ></app-ca-input-dropdown-load-broker-item>\n }\n }\n\n @case (dropdownTemplateTypeEnum.LOAD_SHIPPER) {\n @if (activeItem) {\n <app-ca-input-dropdown-load-shipper-item\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [option]=\"activeItem\"\n [isInOption]=\"true\"\n [label]=\"label\"\n ></app-ca-input-dropdown-load-shipper-item>\n }\n }\n\n @case (dropdownTemplateTypeEnum.LOAD_BROKER_CONTACT) {\n @if (activeItem) {\n <div class=\"load-broker-contact-groups\">\n <ca-input-dropdown-load-broker-contact-item\n [activeItem]=\"activeItem\"\n [item]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [isInOption]=\"true\"\n ></ca-input-dropdown-load-broker-contact-item>\n </div>\n }\n }\n\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHER) {\n @if (activeItem) {\n <app-ca-input-dropdown-load-dispatcher-item\n [option]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [activeItem]=\"activeItem\"\n [label]=\"label\"\n [dropdownWithImage]=\"\n inputConfig.dropdownImageInput\n \"\n [isInOption]=\"true\"\n >\n </app-ca-input-dropdown-load-dispatcher-item>\n }\n }\n\n @default {\n <!-- Special Dropdown Selected SVG with or Without Text -->\n @if (inputConfig.dropdownImageInput && activeItem) {\n <svg-icon\n [src]=\"\n inputConfig.dropdownImageInput!\n | inputDropdownGetIcons: activeItem\n \"\n class=\"dropdown-selected-image {{\n inputConfig.dropdownImageInput?.class\n }}\"\n [ngClass]=\"{\n 'unset-color':\n inputConfig.dropdownImageInput?.class,\n }\"\n [svgStyle]=\"{\n fill: inputConfig.dropdownImageInput\n ? activeItem?.code\n : '#ffffff',\n }\"\n >\n </svg-icon>\n }\n\n @if (\n inputConfig.dropdownImageInput?.withText ||\n !inputConfig.dropdownImageInput\n ) {\n {{ dropdownValue }}\n }\n }\n }\n </div>\n }\n\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 [parentControl]=\"getSuperControl\"\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 !getSuperControl?.disabled) ||\n ((inputConfig?.name == 'Address' ||\n inputConfig?.name == 'RoutingAddress') &&\n !inputConfig.isDisabled &&\n !getSuperControl?.disabled &&\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [dropdownWithImage]=\"inputConfig.dropdownImageInput\"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [sort]=\"_sort\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n ></app-ca-input-dropdown-groups>\n }\n\n <!--------------------------- Multiselect Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.MULTISELECT) {\n <app-ca-input-dropdown-multiselect\n #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [lastActiveMultiselectItem]=\"lastActiveMultiselectItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onMultiselectSelect)=\"onMultiselectSelect($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n ></app-ca-input-dropdown-multiselect>\n }\n <!--------------------------- Labels Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LABELS) {\n <app-ca-input-dropdown-labels\n #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [inputConfig]=\"inputConfig\"\n [labelMode]=\"labelMode\"\n [canAddNew]=\"_canAddNew\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n ></app-ca-input-dropdown-labels>\n }\n\n <!--------------------------- Dispatch Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.DISPATCH) {\n <app-ca-input-dropdown-dispatch\n #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n [inputConfig]=\"inputConfig\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n (toggleNestedList)=\"toggleNestedList($event)\"\n (onActiveItemGroup)=\"onActiveItemGroup($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [inputConfig]=\"inputConfig\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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}.load-pickup-delivery-popover{top:-34px!important;max-width:400px!important}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#fff}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#fff}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#fff}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.dropdown-menu-popover.bs-popover-end-top .dropdown-container{transform:translate(-4px,-3px)}.dropdown-menu-popover.bs-popover-bottom-end .dropdown-container{transform:translate(3px,-3px)}.dropdown-menu-popover.bs-popover-end-bottom .dropdown-container{transform:translate(-3px,3px)}.dropdown-menu-popover.bs-popover-top-end .dropdown-container{transform:translate(3px,3px)}.dropdown-details-title-card-popover .dropdown-container{transform:translateY(-4px)}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background-color:#42424233!important;color:#424242!important}.text-color-black::selection{background-color:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-muted::selection{background-color:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green-2{color:#259f94!important}.text-color-green-2::-moz-selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-2::selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-blue-5{color:#3074d3!important}.text-color-blue-5::-moz-selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-5::selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-13::selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-16{color:#e9effd!important}.text-color-blue-16::-moz-selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-16::selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-11{color:#df3c3c!important}.text-color-red-11::-moz-selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-11::selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-yellow{color:#fab15c!important}.text-color-yellow::-moz-selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-yellow::selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-purple{color:#b370f0!important}.text-color-purple::-moz-selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-purple::selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-special-filter-purple{color:#9e47ec!important}.text-color-special-filter-purple::-moz-selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-special-filter-purple::selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-grey-9{color:#b7b7b7!important}.text-color-grey-9::-moz-selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-grey-9::selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{background-color:#ccc3!important;color:#ccc!important}.text-color-light-grey-6::selection{background-color:#ccc3!important;color:#ccc!important}.text-color-white{color:#fff!important}.text-color-white::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-white-4::selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw6-2::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{background-color:#dadada33!important;color:#dadada!important}.text-color-bw-9::selection{background-color:#dadada33!important;color:#dadada!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey::selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{background-color:#91919133!important;color:#919191!important}.text-color-orange-1{color:#ff7043!important}.text-color-orange-1::-moz-selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-1::selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-2{color:#f77d3b!important}.text-color-orange-2::-moz-selection{background-color:#f77d3b33!important;color:#f77d3b!important}.text-color-orange-2::selection{background-color:#f77d3b33!important;color:#f77d3b!important}.text-color-orange-3{color:#ffb097!important}.text-color-orange-3::-moz-selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-orange-3::selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-brown-1{color:#865e3a!important}.text-color-brown-1::-moz-selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-brown-1::selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-light-blue-2{color:#1ab5e6!important}.text-color-light-blue-2::-moz-selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-color-light-blue-2::selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-hover-white{transition:color .3s ease-in-out ease-in-out}.text-hover-white:hover{color:#fff!important}.text-hover-black{transition:color .3s ease-in-out ease-in-out}.text-hover-black:hover{color:#424242!important}.text-hover-blue-15{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-15:hover{color:#0b49d1!important}.text-hover-blue-18{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-18:hover{color:#3b73ed!important}.text-hover-bw6-2{transition:color .3s ease-in-out ease-in-out}.text-hover-bw6-2:hover{color:#6c6c6c!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-20{font-size:20px!important;line-height:24px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.font-size-11{font-size:11px!important}.line-height-12{line-height:12px!important}.svg-fill-black svg path,.svg-fill-black svg circle{fill:#424242!important}.svg-fill-black-2 svg path,.svg-fill-black-2 svg circle{fill:#2f2f2f!important}.svg-fill-black-9 svg path,.svg-fill-black-9 svg circle{fill:#1d1d1d!important}.svg-fill-white svg path,.svg-fill-white svg circle{fill:#fff!important}.svg-fill-white-2 svg path,.svg-fill-white-2 svg circle{fill:#fff!important}.svg-fill-muted svg path,.svg-fill-muted svg circle{fill:#919191!important}.svg-fill-bw6-2 svg path,.svg-fill-bw6-2 svg circle{fill:#6c6c6c!important}.svg-fill-bw-9 svg path,.svg-fill-bw-9 svg circle{fill:#dadada!important}.svg-fill-light-grey-2 svg path,.svg-fill-light-grey-2 svg circle{fill:#aaa!important}.svg-fill-light-grey-6 svg path,.svg-fill-light-grey-6 svg circle{fill:#ccc!important}.svg-fill-blue-8 svg path,.svg-fill-blue-8 svg circle{fill:#6692f1!important}.svg-fill-blue-13 svg path,.svg-fill-blue-13 svg circle{fill:#6692f1!important}.svg-fill-blue-14 svg path,.svg-fill-blue-14 svg circle{fill:#3b73ed!important}.svg-fill-blue-17 svg path,.svg-fill-blue-17 svg circle{fill:#bed0f9!important}.svg-fill-blue-19 svg path,.svg-fill-blue-19 svg circle{fill:#92b1f5!important}.svg-fill-blue-26 svg path,.svg-fill-blue-26 svg circle{fill:#4dc5eb!important}.svg-fill-green svg path,.svg-fill-green svg circle{fill:#56b4ac!important}.svg-fill-green-2 svg path,.svg-fill-green-2 svg circle{fill:#259f94!important}.svg-fill-green-4 svg path,.svg-fill-green-4 svg circle{fill:#86c9c3!important}.svg-fill-green-6 svg path,.svg-fill-green-6 svg circle{fill:#77bf56!important}.svg-fill-yellow-1 svg path,.svg-fill-yellow-1 svg circle{fill:#fab15c!important}.svg-fill-yellow-4 svg path,.svg-fill-yellow-4 svg circle{fill:#fbc88b!important}.svg-fill-yellow-5 svg path,.svg-fill-yellow-5 svg circle{fill:#f89b2e!important}.svg-fill-yellow-8 svg path,.svg-fill-yellow-8 svg circle{fill:#daad4f!important}.svg-fill-white-4 svg path,.svg-fill-white-4 svg circle{fill:#ffffffb2!important}.svg-fill-grey svg path,.svg-fill-grey svg circle{fill:#919191!important}.svg-fill-red-10 svg path,.svg-fill-red-10 svg circle{fill:#e66767!important}.svg-fill-red-11 svg path,.svg-fill-red-11 svg circle{fill:#df3c3c!important}.svg-fill-red-13 svg path,.svg-fill-red-13 svg circle{fill:#ed9292!important}.svg-fill-red-14 svg path,.svg-fill-red-14 svg circle{fill:#c20c0c!important}.svg-fill-red-15 svg path,.svg-fill-red-15 svg circle{fill:#f4bebe!important}.svg-fill-red-18 svg path,.svg-fill-red-18 svg circle{fill:#e668a0!important}.svg-fill-orange-4 svg path,.svg-fill-orange-4 svg circle{fill:#ff906d!important}.svg-fill-brown svg path,.svg-fill-brown svg circle{fill:#865e3a!important}.svg-fill-purple-4 svg path,.svg-fill-purple-4 svg circle{fill:#9e47ec!important}.svg-hover-white svg path{transition:fill .3s ease-in-out}.svg-hover-white:hover svg path{fill:#fff!important}.svg-hover-white-2 svg path{transition:fill .3s ease-in-out}.svg-hover-white-2:hover svg path{fill:#fff!important}.svg-hover-muted svg path{transition:fill .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-grey-4 svg path{transition:fill .3s ease-in-out}.svg-hover-grey-4:hover svg path{fill:#ccc!important}.svg-hover-black svg path{transition:fill .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-9 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-9:hover svg path{fill:#0b49d1!important}.svg-hover-blue-10 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-10:hover svg path{fill:#6f9ee033!important}.svg-hover-blue-15 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-blue-17 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-17:hover svg path{fill:#bed0f9!important}.svg-hover-blue-19 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-19:hover svg path{fill:#92b1f5!important}.svg-hover-bw6-2 svg path{transition:fill .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-bw-9 svg path{transition:fill .3s ease-in-out}.svg-hover-bw-9:hover svg path{fill:#dadada!important}.svg-hover-trash-red svg path{transition:fill .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:fill .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-6 svg{width:6px;height:6px}.svg-size-7 svg{width:7px;height:7px}.svg-size-10 svg{width:10px;height:10px}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-17 svg{width:17px;height:17px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-23 svg{width:23px;height:23px}.svg-size-26 svg{width:26px;height:26px}.svg-size-30-26 svg{width:30px;height:26px}.svg-size-44-16 svg{width:44px;height:16px}.svg-size-90 svg{width:90px;height:90px}.background-transparent{background-color:transparent}.background-white{background-color:#fff}.background-black{background-color:#424242}.background-black-2{background-color:#2f2f2f}.background-black-3{background-color:#1d1d1d}.background-gray{background-color:#e5e5e5}.background-gray-2{background-color:#6c6c6c}.background-gray-12{background-color:#eee}.background-light-gray-2{background-color:#aaa}.background-light-gray-6{background-color:#ccc}.background-light-gray-7{background-color:#fbfbfb}.background-grey{background-color:#919191}.background-blue-5{background-color:#3074d3}.background-blue-13{background-color:#6692f1}.background-blue-14,.background-blue-18{background-color:#3b73ed}.background-blue-19{background-color:#92b1f5}.background-blue-20{background-color:#3b73ed33}.background-green-0{background-color:#56b4ac}.background-green-2{background-color:#259f94}.background-green-3{background-color:#b6dfdb}.background-green-4,.background-green-6{background-color:#86c9c3}.background-dark-2{background-color:#91919133}.background-red-19{background-color:#df3d85}.background-purple-4{background-color:#9e47ec}.background-gold-bold{background-color:#cf961d}.background-gold-subtle{background-color:#e4c481}.background-orange-3{background-color:#ffb097}.background-orange-4{background-color:#ff906d}.background-orange-7{background-color:#ffcfc0}.background-yellow-8{background-color:#daad4f}.background-bw5{background-color:#919191}.background-bw6-2{background-color:#6c6c6c}.background-brown-bold{background-color:#865e3a}.background-bw2{background-color:#eee}.background-bw-9{background-color:#dadada}.background-hover-white{transition:background-color .3s ease-in-out}.background-hover-white:hover{background-color:#fff!important}.background-hover-black{transition:background-color .3s ease-in-out}.background-hover-black:hover{background-color:#424242!important}.background-hover-black-1{transition:background-color .3s ease-in-out}.background-hover-black-1:hover{background-color:#424242!important}.background-hover-grey{transition:background-color .3s ease-in-out}.background-hover-grey:hover{background-color:#919191!important}.background-hover-grey-2{transition:background-color .3s ease-in-out}.background-hover-grey-2:hover{background-color:#6c6c6c!important}.background-hover-grey-6{transition:background-color .3s ease-in-out}.background-hover-grey-6:hover{background-color:#91919120!important}.background-hover-dark-2{transition:background-color .3s ease-in-out}.background-hover-dark-2:hover{background-color:#91919133!important}.background-hover-bw2{transition:background-color .3s ease-in-out}.background-hover-bw2:hover{background-color:#eee!important}.background-hover-bw6{transition:background-color .3s ease-in-out}.background-hover-bw6:hover{background-color:#606060!important}.background-hover-bw6-2{transition:background-color .3s ease-in-out}.background-hover-bw6-2:hover{background-color:#6c6c6c!important}.background-hover-blue-13{transition:background-color .3s ease-in-out}.background-hover-blue-13:hover{background-color:#6692f1!important}.background-hover-blue-15{transition:background-color .3s ease-in-out}.background-hover-blue-15:hover{background-color:#0b49d1!important}.background-hover-blue-16{transition:background-color .3s ease-in-out}.background-hover-blue-16:hover{background-color:#e9effd!important}.background-hover-blue-17{transition:background-color .3s ease-in-out}.background-hover-blue-17:hover{background-color:#bed0f9!important}.background-hover-blue-19{transition:background-color .3s ease-in-out}.background-hover-blue-19:hover{background-color:#92b1f5!important}.background-hover-blue-20{transition:background-color .3s ease-in-out}.background-hover-blue-20:hover{background-color:#3b73ed33!important}.background-hover-blue-21{transition:background-color .3s ease-in-out}.background-hover-blue-21:hover{background-color:#3b73ed66!important}.background-hover-red-15{transition:background-color .3s ease-in-out}.background-hover-red-15:hover{background-color:#f4bebe!important}.background-hover-gray{transition:background-color .3s ease-in-out}.background-hover-gray:hover{background-color:#e5e5e5!important}.background-hover-light-grey{transition:background-color .3s ease-in-out}.background-hover-light-grey:hover{background-color:#e5e5e5!important}.background-hover-bw-9{transition:background-color .3s ease-in-out}.background-hover-bw-9:hover{background-color:#dadada!important}.br-1{border-radius:1px}.br-2{border-radius:2px}.br-3{border-radius:3px}.br-10{border-radius:10px}.br-60{border-radius:60px}.br-circle{border-radius:50%}.padding-2{padding:2px}.padding-l-2{padding-left:2px}.padding-r-2{padding-right:2px}.padding-t-2{padding-top:2px}.padding-4{padding:4px}.padding-l-4{padding-left:4px}.padding-r-4{padding-right:4px}.padding-t-4{padding-top:4px}.padding-6{padding:6px}.padding-l-6{padding-left:6px}.padding-r-6{padding-right:6px}.padding-t-6{padding-top:6px}.padding-10{padding:10px}.padding-l-10{padding-left:10px}.padding-r-10{padding-right:10px}.padding-t-10{padding-top:10px}.padding-15{padding:15px}.padding-l-15{padding-left:15px}.padding-r-15{padding-right:15px}.padding-t-15{padding-top:15px}.padding-y-2{padding-top:2px;padding-bottom:2px}.padding-y-4{padding-top:4px;padding-bottom:4px}.padding-y-6{padding-top:6px;padding-bottom:6px}.padding-y-10{padding-top:10px;padding-bottom:10px}.padding-y-15{padding-top:15px;padding-bottom:15px}.padding-x-4{padding-left:4px;padding-right:4px}.padding-x-5{padding-left:5px;padding-right:5px}.padding-x-6{padding-left:6px;padding-right:6px}.padding-x-10{padding-left:10px;padding-right:10px}.margin--2{margin:-2px}.margin-y--2{margin-top:-2px;margin-bottom:-2px}.margin-x--2{margin-left:-2px;margin-right:-2px}.margin-t--2{margin-top:-2px}.margin-r--2{margin-right:-2px}.margin-b--2{margin-bottom:-2px}.margin-l--2{margin-left:-2px}.margin-1{margin:1px}.margin-y-1{margin-top:1px;margin-bottom:1px}.margin-x-1{margin-left:1px;margin-right:1px}.margin-t-1{margin-top:1px}.margin-r-1{margin-right:1px}.margin-b-1{margin-bottom:1px}.margin-l-1{margin-left:1px}.margin-2{margin:2px}.margin-y-2{margin-top:2px;margin-bottom:2px}.margin-x-2{margin-left:2px;margin-right:2px}.margin-t-2{margin-top:2px}.margin-r-2{margin-right:2px}.margin-b-2{margin-bottom:2px}.margin-l-2{margin-left:2px}.margin-4{margin:4px}.margin-y-4{margin-top:4px;margin-bottom:4px}.margin-x-4{margin-left:4px;margin-right:4px}.margin-t-4{margin-top:4px}.margin-r-4{margin-right:4px}.margin-b-4{margin-bottom:4px}.margin-l-4{margin-left:4px}.margin-5{margin:5px}.margin-y-5{margin-top:5px;margin-bottom:5px}.margin-x-5{margin-left:5px;margin-right:5px}.margin-t-5{margin-top:5px}.margin-r-5{margin-right:5px}.margin-b-5{margin-bottom:5px}.margin-l-5{margin-left:5px}.margin-6{margin:6px}.margin-y-6{margin-top:6px;margin-bottom:6px}.margin-x-6{margin-left:6px;margin-right:6px}.margin-t-6{margin-top:6px}.margin-r-6{margin-right:6px}.margin-b-6{margin-bottom:6px}.margin-l-6{margin-left:6px}.margin-8{margin:8px}.margin-y-8{margin-top:8px;margin-bottom:8px}.margin-x-8{margin-left:8px;margin-right:8px}.margin-t-8{margin-top:8px}.margin-r-8{margin-right:8px}.margin-b-8{margin-bottom:8px}.margin-l-8{margin-left:8px}.margin-10{margin:10px}.margin-y-10{margin-top:10px;margin-bottom:10px}.margin-x-10{margin-left:10px;margin-right:10px}.margin-t-10{margin-top:10px}.margin-r-10{margin-right:10px}.margin-b-10{margin-bottom:10px}.margin-l-10{margin-left:10px}.margin-15{margin:15px}.margin-y-15{margin-top:15px;margin-bottom:15px}.margin-x-15{margin-left:15px;margin-right:15px}.margin-t-15{margin-top:15px}.margin-r-15{margin-right:15px}.margin-b-15{margin-bottom:15px}.margin-l-15{margin-left:15px}.margin-22{margin:22px}.margin-y-22{margin-top:22px;margin-bottom:22px}.margin-x-22{margin-left:22px;margin-right:22px}.margin-t-22{margin-top:22px}.margin-r-22{margin-right:22px}.margin-b-22{margin-bottom:22px}.margin-l-22{margin-left:22px}.margin-24{margin:24px}.margin-y-24{margin-top:24px;margin-bottom:24px}.margin-x-24{margin-left:24px;margin-right:24px}.margin-t-24{margin-top:24px}.margin-r-24{margin-right:24px}.margin-b-24{margin-bottom:24px}.margin-l-24{margin-left:24px}.gap-xs{gap:2px}.w-1{width:1px}.h-1{height:1px}.w-2{width:2px}.h-2{height:2px}.w-4{width:4px}.h-4{height:4px}.w-10{width:10px}.h-10{height:10px}.w-14{width:14px}.h-14{height:14px}.w-15{width:15px}.h-15{height:15px}.w-18{width:18px}.h-18{height:18px}.w-22{width:22px}.h-22{height:22px}.w-26{width:26px}.h-26{height:26px}.w-31{width:31px}.h-31{height:31px}.w-32{width:32px}.h-32{height:32px}.w-36{width:36px}.h-36{height:36px}.w-116{width:116px}.h-116{height:116px}.w-120{width:120px}.h-120{height:120px}.w-fit-content{width:fit-content}.filter-dropdown-popover{width:260px;position:relative;top:-4px;left:-4px}.filter-dropdown-popover-max-height{max-height:360px}.filter-dropdown-list{max-height:260px;overflow-y:auto}.filter-dropdown-list-icon{height:26px;transition:background-color .3s ease-in-out}.filter-dropdown-list-icon-value{height:14px;width:14px}.filter-dropdown-list-icon-remove{display:none}.filter-dropdown-list-icon:hover{background-color:#424242}.filter-dropdown-list-icon:hover .filter-dropdown-icon-count{display:none}.filter-dropdown-list-icon-selected:hover{background-color:#0b49d1}.filter-dropdown-list-item-icons{transition:opacity .3s ease-in-out;opacity:0}.filter-dropdown-list-item-status-circle{height:10px;width:10px}.filter-dropdown-list-item-remove{display:none}.filter-dropdown-list-item:hover{background-color:#424242}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons{opacity:1}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons svg path{fill:var(--svg-fill-color, #e66767)}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove{display:flex}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove svg path{fill:#e66767!important}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-count{display:none!important}.filter-dropdown-icon{height:26px;width:26px}.filter-dropdown-count{height:14px;width:14px}.filter-dropdown-count-remove,.filter-dropdown-count-hover:hover .filter-dropdown-count-value{display:none}.filter-dropdown-count-hover:hover .filter-dropdown-count-remove{display:flex}.filter-dropdown-button{height:26px}.filter-dropdown-footer-button{color:#dadada;transition:color .3s ease-in-out,background-color .3s ease-in-out;height:18px;width:50%}.filter-dropdown-footer-button-set{color:#fff;background-color:#3b73ed}.filter-dropdown-footer-button-set:hover{background-color:#e9effd;color:#0b49d1}.filter-dropdown-footer-button-clear{color:#dadada}.filter-dropdown-footer-button-clear:hover{background-color:#eee;color:#424242}.filter-dropdown-list-badge{min-width:18px}.h-7{height:7px!important;min-height:7px!important}.h-8{height:8px!important;min-height:8px!important}.h-10{height:10px!important;min-height:10px!important}.h-12{height:12px!important;min-height:12px!important}.h-14{height:14px!important;min-height:14px!important}.h-15{height:15px!important;min-height:15px!important}.h-16{height:16px!important;min-height:16px!important}.h-18{height:18px!important;min-height:18px!important}.h-22{height:22px!important;min-height:22px!important}.h-24{height:24px!important;min-height:24px!important}.h-26{height:26px!important;min-height:26px!important}.h-30{height:30px!important;min-height:30px!important}.h-34{height:34px!important;min-height:34px!important}.h-37{height:37px!important;min-height:37px!important}.h-40{height:40px!important;min-height:40px!important}.h-42{height:42px!important;min-height:42px!important}.h-44{height:44px!important;min-height:44px!important}.h-52{height:52px!important;min-height:52px!important}.h-80{height:80px!important;min-height:80px!important}.h-160{height:160px!important;min-height:160px!important}.h-486{height:486px!important;min-height:486px!important}.h-800{height:800px!important;min-height:800px!important}.h-960{height:960px!important;min-height:960px!important}.w-2{width:2px!important;min-width:2px!important}.w-7{width:7px!important;min-width:7px!important}.w-8{width:8px!important;min-width:8px!important}.w-10{width:10px!important;min-width:10px!important}.w-12{width:12px!important;min-width:12px!important}.w-15{width:15px!important;min-width:15px!important}.w-18{width:18px!important;min-width:18px!important}.w-22{width:22px!important;min-width:22px!important}.w-24{width:24px!important;min-width:24px!important}.w-26{width:26px!important;min-width:26px!important}.w-29{width:29px!important;min-width:29px!important}.w-30{width:30px!important;min-width:30px!important}.w-36{width:36px!important;min-width:36px!important}.w-40{width:40px!important;min-width:40px!important}.w-42{width:42px!important;min-width:42px!important}.w-46{width:46px!important;min-width:46px!important}.w-49{width:49px!important;min-width:49px!important}.w-57{width:57px!important;min-width:57px!important}.w-60{width:60px!important;min-width:60px!important}.w-68{width:68px!important;min-width:68px!important}.w-70{width:70px!important;min-width:70px!important}.w-71{width:71px!important;min-width:71px!important}.w-78{width:78px!important;min-width:78px!important}.w-80{width:80px!important;min-width:80px!important}.w-83{width:83px!important;min-width:83px!important}.w-84{width:84px!important;min-width:84px!important}.w-88{width:88px!important;min-width:88px!important}.w-90{width:90px!important;min-width:90px!important}.w-91{width:91px!important;min-width:91px!important}.w-93{width:93px!important;min-width:93px!important}.w-98{width:98px!important;min-width:98px!important}.w-101{width:101px!important;min-width:101px!important}.w-106{width:106px!important;min-width:106px!important}.w-108{width:108px!important;min-width:108px!important}.w-116{width:116px!important;min-width:116px!important}.w-126{width:126px!important;min-width:126px!important}.w-144{width:144px!important;min-width:144px!important}.w-155{width:155px!important;min-width:155px!important}.w-172{width:172px!important;min-width:172px!important}.w-179{width:179px!important;min-width:179px!important}.w-202{width:202px!important;min-width:202px!important}.w-214{width:214px!important;min-width:214px!important}.w-223{width:223px!important;min-width:223px!important}.w-264{width:264px!important;min-width:264px!important}.w-268{width:268px!important;min-width:268px!important}.w-272{width:272px!important;min-width:272px!important}.w-277{width:277px!important;min-width:277px!important}.w-334{width:334px!important;min-width:334px!important}.w-442{width:442px!important;min-width:442px!important}.w-462{width:462px!important;min-width:462px!important}.w-612{width:612px!important;min-width:612px!important}.w-616{width:616px!important;min-width:616px!important}.w-620{width:620px!important;min-width:620px!important}.min-w-18{min-width:18px}.flex-1{flex:1}.w-33{width:33%}.w-40p{width:40%}.w-90p{width:90%}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.c-pointer{cursor:pointer}.pointer-events-none{pointer-events:none}.ca-scroll-bar{overflow-y:scroll}.ca-scroll-bar::-webkit-scrollbar{width:2px}.ca-scroll-bar::-webkit-scrollbar-thumb{background:#ccc;border-radius:1px}.ca-scroll-bar::-webkit-scrollbar-track{background:#2f2f2f}.place-items-center{justify-content:center;align-items:center}.prevent-text-selection{-ms-user-select:none;-webkit-user-select:none;user-select:none;-moz-user-select:none}@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}}.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}.dropdown-options.dropdown_value{background-color:transparent!important;top:0;left:0}.dropdown-options.w-col-1{width:1px!important}.dropdown-options.w-col-2{width:2px!important}.dropdown-options.w-col-3{width:3px!important}.dropdown-options.w-col-4{width:4px!important}.dropdown-options.w-col-5{width:5px!important}.dropdown-options.w-col-6{width:6px!important}.dropdown-options.w-col-7{width:7px!important}.dropdown-options.w-col-8{width:8px!important}.dropdown-options.w-col-9{width:9px!important}.dropdown-options.w-col-10{width:10px!important}.dropdown-options.w-col-11{width:11px!important}.dropdown-options.w-col-12{width:12px!important}.dropdown-options.w-col-13{width:13px!important}.dropdown-options.w-col-14{width:14px!important}.dropdown-options.w-col-15{width:15px!important}.dropdown-options.w-col-16{width:16px!important}.dropdown-options.w-col-17{width:17px!important}.dropdown-options.w-col-18{width:18px!important}.dropdown-options.w-col-19{width:19px!important}.dropdown-options.w-col-20{width:20px!important}.dropdown-options.w-col-21{width:21px!important}.dropdown-options.w-col-22{width:22px!important}.dropdown-options.w-col-23{width:23px!important}.dropdown-options.w-col-24{width:24px!important}.dropdown-options.w-col-25{width:25px!important}.dropdown-options.w-col-26{width:26px!important}.dropdown-options.w-col-27{width:27px!important}.dropdown-options.w-col-28{width:28px!important}.dropdown-options.w-col-29{width:29px!important}.dropdown-options.w-col-30{width:30px!important}.dropdown-options.w-col-31{width:31px!important}.dropdown-options.w-col-32{width:32px!important}.dropdown-options.w-col-33{width:33px!important}.dropdown-options.w-col-34{width:34px!important}.dropdown-options.w-col-35{width:35px!important}.dropdown-options.w-col-36{width:36px!important}.dropdown-options.w-col-37{width:37px!important}.dropdown-options.w-col-38{width:38px!important}.dropdown-options.w-col-39{width:39px!important}.dropdown-options.w-col-40{width:40px!important}.dropdown-options.w-col-41{width:41px!important}.dropdown-options.w-col-42{width:42px!important}.dropdown-options.w-col-43{width:43px!important}.dropdown-options.w-col-44{width:44px!important}.dropdown-options.w-col-45{width:45px!important}.dropdown-options.w-col-46{width:46px!important}.dropdown-options.w-col-47{width:47px!important}.dropdown-options.w-col-48{width:48px!important}.dropdown-options.w-col-49{width:49px!important}.dropdown-options.w-col-50{width:50px!important}.dropdown-options.w-col-51{width:51px!important}.dropdown-options.w-col-52{width:52px!important}.dropdown-options.w-col-53{width:53px!important}.dropdown-options.w-col-54{width:54px!important}.dropdown-options.w-col-55{width:55px!important}.dropdown-options.w-col-56{width:56px!important}.dropdown-options.w-col-57{width:57px!important}.dropdown-options.w-col-58{width:58px!important}.dropdown-options.w-col-59{width:59px!important}.dropdown-options.w-col-60{width:60px!important}.dropdown-options.w-col-61{width:61px!important}.dropdown-options.w-col-62{width:62px!important}.dropdown-options.w-col-63{width:63px!important}.dropdown-options.w-col-64{width:64px!important}.dropdown-options.w-col-65{width:65px!important}.dropdown-options.w-col-66{width:66px!important}.dropdown-options.w-col-67{width:67px!important}.dropdown-options.w-col-68{width:68px!important}.dropdown-options.w-col-69{width:69px!important}.dropdown-options.w-col-70{width:70px!important}.dropdown-options.w-col-71{width:71px!important}.dropdown-options.w-col-72{width:72px!important}.dropdown-options.w-col-73{width:73px!important}.dropdown-options.w-col-74{width:74px!important}.dropdown-options.w-col-75{width:75px!important}.dropdown-options.w-col-76{width:76px!important}.dropdown-options.w-col-77{width:77px!important}.dropdown-options.w-col-78{width:78px!important}.dropdown-options.w-col-79{width:79px!important}.dropdown-options.w-col-80{width:80px!important}.dropdown-options.w-col-81{width:81px!important}.dropdown-options.w-col-82{width:82px!important}.dropdown-options.w-col-83{width:83px!important}.dropdown-options.w-col-84{width:84px!important}.dropdown-options.w-col-85{width:85px!important}.dropdown-options.w-col-86{width:86px!important}.dropdown-options.w-col-87{width:87px!important}.dropdown-options.w-col-88{width:88px!important}.dropdown-options.w-col-89{width:89px!important}.dropdown-options.w-col-90{width:90px!important}.dropdown-options.w-col-91{width:91px!important}.dropdown-options.w-col-92{width:92px!important}.dropdown-options.w-col-93{width:93px!important}.dropdown-options.w-col-94{width:94px!important}.dropdown-options.w-col-95{width:95px!important}.dropdown-options.w-col-96{width:96px!important}.dropdown-options.w-col-97{width:97px!important}.dropdown-options.w-col-98{width:98px!important}.dropdown-options.w-col-99{width:99px!important}.dropdown-options.w-col-100{width:100px!important}.dropdown-options.w-col-101{width:101px!important}.dropdown-options.w-col-102{width:102px!important}.dropdown-options.w-col-103{width:103px!important}.dropdown-options.w-col-104{width:104px!important}.dropdown-options.w-col-105{width:105px!important}.dropdown-options.w-col-106{width:106px!important}.dropdown-options.w-col-107{width:107px!important}.dropdown-options.w-col-108{width:108px!important}.dropdown-options.w-col-109{width:109px!important}.dropdown-options.w-col-110{width:110px!important}.dropdown-options.w-col-111{width:111px!important}.dropdown-options.w-col-112{width:112px!important}.dropdown-options.w-col-113{width:113px!important}.dropdown-options.w-col-114{width:114px!important}.dropdown-options.w-col-115{width:115px!important}.dropdown-options.w-col-116{width:116px!important}.dropdown-options.w-col-117{width:117px!important}.dropdown-options.w-col-118{width:118px!important}.dropdown-options.w-col-119{width:119px!important}.dropdown-options.w-col-120{width:120px!important}.dropdown-options.w-col-121{width:121px!important}.dropdown-options.w-col-122{width:122px!important}.dropdown-options.w-col-123{width:123px!important}.dropdown-options.w-col-124{width:124px!important}.dropdown-options.w-col-125{width:125px!important}.dropdown-options.w-col-126{width:126px!important}.dropdown-options.w-col-127{width:127px!important}.dropdown-options.w-col-128{width:128px!important}.dropdown-options.w-col-129{width:129px!important}.dropdown-options.w-col-130{width:130px!important}.dropdown-options.w-col-131{width:131px!important}.dropdown-options.w-col-132{width:132px!important}.dropdown-options.w-col-133{width:133px!important}.dropdown-options.w-col-134{width:134px!important}.dropdown-options.w-col-135{width:135px!important}.dropdown-options.w-col-136{width:136px!important}.dropdown-options.w-col-137{width:137px!important}.dropdown-options.w-col-138{width:138px!important}.dropdown-options.w-col-139{width:139px!important}.dropdown-options.w-col-140{width:140px!important}.dropdown-options.w-col-141{width:141px!important}.dropdown-options.w-col-142{width:142px!important}.dropdown-options.w-col-143{width:143px!important}.dropdown-options.w-col-144{width:144px!important}.dropdown-options.w-col-145{width:145px!important}.dropdown-options.w-col-146{width:146px!important}.dropdown-options.w-col-147{width:147px!important}.dropdown-options.w-col-148{width:148px!important}.dropdown-options.w-col-149{width:149px!important}.dropdown-options.w-col-150{width:150px!important}.dropdown-options.w-col-151{width:151px!important}.dropdown-options.w-col-152{width:152px!important}.dropdown-options.w-col-153{width:153px!important}.dropdown-options.w-col-154{width:154px!important}.dropdown-options.w-col-155{width:155px!important}.dropdown-options.w-col-156{width:156px!important}.dropdown-options.w-col-157{width:157px!important}.dropdown-options.w-col-158{width:158px!important}.dropdown-options.w-col-159{width:159px!important}.dropdown-options.w-col-160{width:160px!important}.dropdown-options.w-col-161{width:161px!important}.dropdown-options.w-col-162{width:162px!important}.dropdown-options.w-col-163{width:163px!important}.dropdown-options.w-col-164{width:164px!important}.dropdown-options.w-col-165{width:165px!important}.dropdown-options.w-col-166{width:166px!important}.dropdown-options.w-col-167{width:167px!important}.dropdown-options.w-col-168{width:168px!important}.dropdown-options.w-col-169{width:169px!important}.dropdown-options.w-col-170{width:170px!important}.dropdown-options.w-col-171{width:171px!important}.dropdown-options.w-col-172{width:172px!important}.dropdown-options.w-col-173{width:173px!important}.dropdown-options.w-col-174{width:174px!important}.dropdown-options.w-col-175{width:175px!important}.dropdown-options.w-col-176{width:176px!important}.dropdown-options.w-col-177{width:177px!important}.dropdown-options.w-col-178{width:178px!important}.dropdown-options.w-col-179{width:179px!important}.dropdown-options.w-col-180{width:180px!important}.dropdown-options.w-col-181{width:181px!important}.dropdown-options.w-col-182{width:182px!important}.dropdown-options.w-col-183{width:183px!important}.dropdown-options.w-col-184{width:184px!important}.dropdown-options.w-col-185{width:185px!important}.dropdown-options.w-col-186{width:186px!important}.dropdown-options.w-col-187{width:187px!important}.dropdown-options.w-col-188{width:188px!important}.dropdown-options.w-col-189{width:189px!important}.dropdown-options.w-col-190{width:190px!important}.dropdown-options.w-col-191{width:191px!important}.dropdown-options.w-col-192{width:192px!important}.dropdown-options.w-col-193{width:193px!important}.dropdown-options.w-col-194{width:194px!important}.dropdown-options.w-col-195{width:195px!important}.dropdown-options.w-col-196{width:196px!important}.dropdown-options.w-col-197{width:197px!important}.dropdown-options.w-col-198{width:198px!important}.dropdown-options.w-col-199{width:199px!important}.dropdown-options.w-col-200{width:200px!important}.dropdown-options.w-col-201{width:201px!important}.dropdown-options.w-col-202{width:202px!important}.dropdown-options.w-col-203{width:203px!important}.dropdown-options.w-col-204{width:204px!important}.dropdown-options.w-col-205{width:205px!important}.dropdown-options.w-col-206{width:206px!important}.dropdown-options.w-col-207{width:207px!important}.dropdown-options.w-col-208{width:208px!important}.dropdown-options.w-col-209{width:209px!important}.dropdown-options.w-col-210{width:210px!important}.dropdown-options.w-col-211{width:211px!important}.dropdown-options.w-col-212{width:212px!important}.dropdown-options.w-col-213{width:213px!important}.dropdown-options.w-col-214{width:214px!important}.dropdown-options.w-col-215{width:215px!important}.dropdown-options.w-col-216{width:216px!important}.dropdown-options.w-col-217{width:217px!important}.dropdown-options.w-col-218{width:218px!important}.dropdown-options.w-col-219{width:219px!important}.dropdown-options.w-col-220{width:220px!important}.dropdown-options.w-col-221{width:221px!important}.dropdown-options.w-col-222{width:222px!important}.dropdown-options.w-col-223{width:223px!important}.dropdown-options.w-col-224{width:224px!important}.dropdown-options.w-col-225{width:225px!important}.dropdown-options.w-col-226{width:226px!important}.dropdown-options.w-col-227{width:227px!important}.dropdown-options.w-col-228{width:228px!important}.dropdown-options.w-col-229{width:229px!important}.dropdown-options.w-col-230{width:230px!important}.dropdown-options.w-col-231{width:231px!important}.dropdown-options.w-col-232{width:232px!important}.dropdown-options.w-col-233{width:233px!important}.dropdown-options.w-col-234{width:234px!important}.dropdown-options.w-col-235{width:235px!important}.dropdown-options.w-col-236{width:236px!important}.dropdown-options.w-col-237{width:237px!important}.dropdown-options.w-col-238{width:238px!important}.dropdown-options.w-col-239{width:239px!important}.dropdown-options.w-col-240{width:240px!important}.dropdown-options.w-col-241{width:241px!important}.dropdown-options.w-col-242{width:242px!important}.dropdown-options.w-col-243{width:243px!important}.dropdown-options.w-col-244{width:244px!important}.dropdown-options.w-col-245{width:245px!important}.dropdown-options.w-col-246{width:246px!important}.dropdown-options.w-col-247{width:247px!important}.dropdown-options.w-col-248{width:248px!important}.dropdown-options.w-col-249{width:249px!important}.dropdown-options.w-col-250{width:250px!important}.dropdown-options.w-col-251{width:251px!important}.dropdown-options.w-col-252{width:252px!important}.dropdown-options.w-col-253{width:253px!important}.dropdown-options.w-col-254{width:254px!important}.dropdown-options.w-col-255{width:255px!important}.dropdown-options.w-col-256{width:256px!important}.dropdown-options.w-col-257{width:257px!important}.dropdown-options.w-col-258{width:258px!important}.dropdown-options.w-col-259{width:259px!important}.dropdown-options.w-col-260{width:260px!important}.dropdown-options.w-col-261{width:261px!important}.dropdown-options.w-col-262{width:262px!important}.dropdown-options.w-col-263{width:263px!important}.dropdown-options.w-col-264{width:264px!important}.dropdown-options.w-col-265{width:265px!important}.dropdown-options.w-col-266{width:266px!important}.dropdown-options.w-col-267{width:267px!important}.dropdown-options.w-col-268{width:268px!important}.dropdown-options.w-col-269{width:269px!important}.dropdown-options.w-col-270{width:270px!important}.dropdown-options.w-col-271{width:271px!important}.dropdown-options.w-col-272{width:272px!important}.dropdown-options.w-col-273{width:273px!important}.dropdown-options.w-col-274{width:274px!important}.dropdown-options.w-col-275{width:275px!important}.dropdown-options.w-col-276{width:276px!important}.dropdown-options.w-col-277{width:277px!important}.dropdown-options.w-col-278{width:278px!important}.dropdown-options.w-col-279{width:279px!important}.dropdown-options.w-col-280{width:280px!important}.dropdown-options.w-col-281{width:281px!important}.dropdown-options.w-col-282{width:282px!important}.dropdown-options.w-col-283{width:283px!important}.dropdown-options.w-col-284{width:284px!important}.dropdown-options.w-col-285{width:285px!important}.dropdown-options.w-col-286{width:286px!important}.dropdown-options.w-col-287{width:287px!important}.dropdown-options.w-col-288{width:288px!important}.dropdown-options.w-col-289{width:289px!important}.dropdown-options.w-col-290{width:290px!important}.dropdown-options.w-col-291{width:291px!important}.dropdown-options.w-col-292{width:292px!important}.dropdown-options.w-col-293{width:293px!important}.dropdown-options.w-col-294{width:294px!important}.dropdown-options.w-col-295{width:295px!important}.dropdown-options.w-col-296{width:296px!important}.dropdown-options.w-col-297{width:297px!important}.dropdown-options.w-col-298{width:298px!important}.dropdown-options.w-col-299{width:299px!important}.dropdown-options.w-col-300{width:300px!important}.dropdown-options.w-col-301{width:301px!important}.dropdown-options.w-col-302{width:302px!important}.dropdown-options.w-col-303{width:303px!important}.dropdown-options.w-col-304{width:304px!important}.dropdown-options.w-col-305{width:305px!important}.dropdown-options.w-col-306{width:306px!important}.dropdown-options.w-col-307{width:307px!important}.dropdown-options.w-col-308{width:308px!important}.dropdown-options.w-col-309{width:309px!important}.dropdown-options.w-col-310{width:310px!important}.dropdown-options.w-col-311{width:311px!important}.dropdown-options.w-col-312{width:312px!important}.dropdown-options.w-col-313{width:313px!important}.dropdown-options.w-col-314{width:314px!important}.dropdown-options.w-col-315{width:315px!important}.dropdown-options.w-col-316{width:316px!important}.dropdown-options.w-col-317{width:317px!important}.dropdown-options.w-col-318{width:318px!important}.dropdown-options.w-col-319{width:319px!important}.dropdown-options.w-col-320{width:320px!important}.dropdown-options.w-col-321{width:321px!important}.dropdown-options.w-col-322{width:322px!important}.dropdown-options.w-col-323{width:323px!important}.dropdown-options.w-col-324{width:324px!important}.dropdown-options.w-col-325{width:325px!important}.dropdown-options.w-col-326{width:326px!important}.dropdown-options.w-col-327{width:327px!important}.dropdown-options.w-col-328{width:328px!important}.dropdown-options.w-col-329{width:329px!important}.dropdown-options.w-col-330{width:330px!important}.dropdown-options.w-col-331{width:331px!important}.dropdown-options.w-col-332{width:332px!important}.dropdown-options.w-col-333{width:333px!important}.dropdown-options.w-col-334{width:334px!important}.dropdown-options.w-col-335{width:335px!important}.dropdown-options.w-col-336{width:336px!important}.dropdown-options.w-col-337{width:337px!important}.dropdown-options.w-col-338{width:338px!important}.dropdown-options.w-col-339{width:339px!important}.dropdown-options.w-col-340{width:340px!important}.dropdown-options.w-col-341{width:341px!important}.dropdown-options.w-col-342{width:342px!important}.dropdown-options.w-col-343{width:343px!important}.dropdown-options.w-col-344{width:344px!important}.dropdown-options.w-col-345{width:345px!important}.dropdown-options.w-col-346{width:346px!important}.dropdown-options.w-col-347{width:347px!important}.dropdown-options.w-col-348{width:348px!important}.dropdown-options.w-col-349{width:349px!important}.dropdown-options.w-col-350{width:350px!important}.dropdown-options.w-col-351{width:351px!important}.dropdown-options.w-col-352{width:352px!important}.dropdown-options.w-col-353{width:353px!important}.dropdown-options.w-col-354{width:354px!important}.dropdown-options.w-col-355{width:355px!important}.dropdown-options.w-col-356{width:356px!important}.dropdown-options.w-col-357{width:357px!important}.dropdown-options.w-col-358{width:358px!important}.dropdown-options.w-col-359{width:359px!important}.dropdown-options.w-col-360{width:360px!important}.dropdown-options.w-col-361{width:361px!important}.dropdown-options.w-col-362{width:362px!important}.dropdown-options.w-col-363{width:363px!important}.dropdown-options.w-col-364{width:364px!important}.dropdown-options.w-col-365{width:365px!important}.dropdown-options.w-col-366{width:366px!important}.dropdown-options.w-col-367{width:367px!important}.dropdown-options.w-col-368{width:368px!important}.dropdown-options.w-col-369{width:369px!important}.dropdown-options.w-col-370{width:370px!important}.dropdown-options.w-col-371{width:371px!important}.dropdown-options.w-col-372{width:372px!important}.dropdown-options.w-col-373{width:373px!important}.dropdown-options.w-col-374{width:374px!important}.dropdown-options.w-col-375{width:375px!important}.dropdown-options.w-col-376{width:376px!important}.dropdown-options.w-col-377{width:377px!important}.dropdown-options.w-col-378{width:378px!important}.dropdown-options.w-col-379{width:379px!important}.dropdown-options.w-col-380{width:380px!important}.dropdown-options.w-col-381{width:381px!important}.dropdown-options.w-col-382{width:382px!important}.dropdown-options.w-col-383{width:383px!important}.dropdown-options.w-col-384{width:384px!important}.dropdown-options.w-col-385{width:385px!important}.dropdown-options.w-col-386{width:386px!important}.dropdown-options.w-col-387{width:387px!important}.dropdown-options.w-col-388{width:388px!important}.dropdown-options.w-col-389{width:389px!important}.dropdown-options.w-col-390{width:390px!important}.dropdown-options.w-col-391{width:391px!important}.dropdown-options.w-col-392{width:392px!important}.dropdown-options.w-col-393{width:393px!important}.dropdown-options.w-col-394{width:394px!important}.dropdown-options.w-col-395{width:395px!important}.dropdown-options.w-col-396{width:396px!important}.dropdown-options.w-col-397{width:397px!important}.dropdown-options.w-col-398{width:398px!important}.dropdown-options.w-col-399{width:399px!important}.dropdown-options.w-col-400{width:400px!important}.dropdown-options.w-col-401{width:401px!important}.dropdown-options.w-col-402{width:402px!important}.dropdown-options.w-col-403{width:403px!important}.dropdown-options.w-col-404{width:404px!important}.dropdown-options.w-col-405{width:405px!important}.dropdown-options.w-col-406{width:406px!important}.dropdown-options.w-col-407{width:407px!important}.dropdown-options.w-col-408{width:408px!important}.dropdown-options.w-col-409{width:409px!important}.dropdown-options.w-col-410{width:410px!important}.dropdown-options.w-col-411{width:411px!important}.dropdown-options.w-col-412{width:412px!important}.dropdown-options.w-col-413{width:413px!important}.dropdown-options.w-col-414{width:414px!important}.dropdown-options.w-col-415{width:415px!important}.dropdown-options.w-col-416{width:416px!important}.dropdown-options.w-col-417{width:417px!important}.dropdown-options.w-col-418{width:418px!important}.dropdown-options.w-col-419{width:419px!important}.dropdown-options.w-col-420{width:420px!important}.dropdown-options.w-col-421{width:421px!important}.dropdown-options.w-col-422{width:422px!important}.dropdown-options.w-col-423{width:423px!important}.dropdown-options.w-col-424{width:424px!important}.dropdown-options.w-col-425{width:425px!important}.dropdown-options.w-col-426{width:426px!important}.dropdown-options.w-col-427{width:427px!important}.dropdown-options.w-col-428{width:428px!important}.dropdown-options.w-col-429{width:429px!important}.dropdown-options.w-col-430{width:430px!important}.dropdown-options.w-col-431{width:431px!important}.dropdown-options.w-col-432{width:432px!important}.dropdown-options.w-col-433{width:433px!important}.dropdown-options.w-col-434{width:434px!important}.dropdown-options.w-col-435{width:435px!important}.dropdown-options.w-col-436{width:436px!important}.dropdown-options.w-col-437{width:437px!important}.dropdown-options.w-col-438{width:438px!important}.dropdown-options.w-col-439{width:439px!important}.dropdown-options.w-col-440{width:440px!important}.dropdown-options.w-col-441{width:441px!important}.dropdown-options.w-col-442{width:442px!important}.dropdown-options.w-col-443{width:443px!important}.dropdown-options.w-col-444{width:444px!important}.dropdown-options.w-col-445{width:445px!important}.dropdown-options.w-col-446{width:446px!important}.dropdown-options.w-col-447{width:447px!important}.dropdown-options.w-col-448{width:448px!important}.dropdown-options.w-col-449{width:449px!important}.dropdown-options.w-col-450{width:450px!important}.dropdown-options.w-col-451{width:451px!important}.dropdown-options.w-col-452{width:452px!important}.dropdown-options.w-col-453{width:453px!important}.dropdown-options.w-col-454{width:454px!important}.dropdown-options.w-col-455{width:455px!important}.dropdown-options.w-col-456{width:456px!important}.dropdown-options.w-col-457{width:457px!important}.dropdown-options.w-col-458{width:458px!important}.dropdown-options.w-col-459{width:459px!important}.dropdown-options.w-col-460{width:460px!important}.dropdown-options.w-col-461{width:461px!important}.dropdown-options.w-col-462{width:462px!important}.dropdown-options.w-col-463{width:463px!important}.dropdown-options.w-col-464{width:464px!important}.dropdown-options.w-col-465{width:465px!important}.dropdown-options.w-col-466{width:466px!important}.dropdown-options.w-col-467{width:467px!important}.dropdown-options.w-col-468{width:468px!important}.dropdown-options.w-col-469{width:469px!important}.dropdown-options.w-col-470{width:470px!important}.dropdown-options.w-col-471{width:471px!important}.dropdown-options.w-col-472{width:472px!important}.dropdown-options.w-col-473{width:473px!important}.dropdown-options.w-col-474{width:474px!important}.dropdown-options.w-col-475{width:475px!important}.dropdown-options.w-col-476{width:476px!important}.dropdown-options.w-col-477{width:477px!important}.dropdown-options.w-col-478{width:478px!important}.dropdown-options.w-col-479{width:479px!important}.dropdown-options.w-col-480{width:480px!important}.dropdown-options.w-col-481{width:481px!important}.dropdown-options.w-col-482{width:482px!important}.dropdown-options.w-col-483{width:483px!important}.dropdown-options.w-col-484{width:484px!important}.dropdown-options.w-col-485{width:485px!important}.dropdown-options.w-col-486{width:486px!important}.dropdown-options.w-col-487{width:487px!important}.dropdown-options.w-col-488{width:488px!important}.dropdown-options.w-col-489{width:489px!important}.dropdown-options.w-col-490{width:490px!important}.dropdown-options.w-col-491{width:491px!important}.dropdown-options.w-col-492{width:492px!important}.dropdown-options.w-col-493{width:493px!important}.dropdown-options.w-col-494{width:494px!important}.dropdown-options.w-col-495{width:495px!important}.dropdown-options.w-col-496{width:496px!important}.dropdown-options.w-col-497{width:497px!important}.dropdown-options.w-col-498{width:498px!important}.dropdown-options.w-col-499{width:499px!important}.dropdown-options.w-col-500{width:500px!important}.dropdown-options.w-col-501{width:501px!important}.dropdown-options.w-col-502{width:502px!important}.dropdown-options.w-col-503{width:503px!important}.dropdown-options.w-col-504{width:504px!important}.dropdown-options.w-col-505{width:505px!important}.dropdown-options.w-col-506{width:506px!important}.dropdown-options.w-col-507{width:507px!important}.dropdown-options.w-col-508{width:508px!important}.dropdown-options.w-col-509{width:509px!important}.dropdown-options.w-col-510{width:510px!important}.dropdown-options.w-col-511{width:511px!important}.dropdown-options.w-col-512{width:512px!important}.dropdown-options.w-col-513{width:513px!important}.dropdown-options.w-col-514{width:514px!important}.dropdown-options.w-col-515{width:515px!important}.dropdown-options.w-col-516{width:516px!important}.dropdown-options.w-col-517{width:517px!important}.dropdown-options.w-col-518{width:518px!important}.dropdown-options.w-col-519{width:519px!important}.dropdown-options.w-col-520{width:520px!important}.dropdown-options.w-col-521{width:521px!important}.dropdown-options.w-col-522{width:522px!important}.dropdown-options.w-col-523{width:523px!important}.dropdown-options.w-col-524{width:524px!important}.dropdown-options.w-col-525{width:525px!important}.dropdown-options.w-col-526{width:526px!important}.dropdown-options.w-col-527{width:527px!important}.dropdown-options.w-col-528{width:528px!important}.dropdown-options.w-col-529{width:529px!important}.dropdown-options.w-col-530{width:530px!important}.dropdown-options.w-col-531{width:531px!important}.dropdown-options.w-col-532{width:532px!important}.dropdown-options.w-col-533{width:533px!important}.dropdown-options.w-col-534{width:534px!important}.dropdown-options.w-col-535{width:535px!important}.dropdown-options.w-col-536{width:536px!important}.dropdown-options.w-col-537{width:537px!important}.dropdown-options.w-col-538{width:538px!important}.dropdown-options.w-col-539{width:539px!important}.dropdown-options.w-col-540{width:540px!important}.dropdown-options.w-col-541{width:541px!important}.dropdown-options.w-col-542{width:542px!important}.dropdown-options.w-col-543{width:543px!important}.dropdown-options.w-col-544{width:544px!important}.dropdown-options.w-col-545{width:545px!important}.dropdown-options.w-col-546{width:546px!important}.dropdown-options.w-col-547{width:547px!important}.dropdown-options.w-col-548{width:548px!important}.dropdown-options.w-col-549{width:549px!important}.dropdown-options.w-col-550{width:550px!important}.dropdown-options.w-col-551{width:551px!important}.dropdown-options.w-col-552{width:552px!important}.dropdown-options.w-col-553{width:553px!important}.dropdown-options.w-col-554{width:554px!important}.dropdown-options.w-col-555{width:555px!important}.dropdown-options.w-col-556{width:556px!important}.dropdown-options.w-col-557{width:557px!important}.dropdown-options.w-col-558{width:558px!important}.dropdown-options.w-col-559{width:559px!important}.dropdown-options.w-col-560{width:560px!important}.dropdown-options.w-col-561{width:561px!important}.dropdown-options.w-col-562{width:562px!important}.dropdown-options.w-col-563{width:563px!important}.dropdown-options.w-col-564{width:564px!important}.dropdown-options.w-col-565{width:565px!important}.dropdown-options.w-col-566{width:566px!important}.dropdown-options.w-col-567{width:567px!important}.dropdown-options.w-col-568{width:568px!important}.dropdown-options.w-col-569{width:569px!important}.dropdown-options.w-col-570{width:570px!important}.dropdown-options.w-col-571{width:571px!important}.dropdown-options.w-col-572{width:572px!important}.dropdown-options.w-col-573{width:573px!important}.dropdown-options.w-col-574{width:574px!important}.dropdown-options.w-col-575{width:575px!important}.dropdown-options.w-col-576{width:576px!important}.dropdown-options.w-col-577{width:577px!important}.dropdown-options.w-col-578{width:578px!important}.dropdown-options.w-col-579{width:579px!important}.dropdown-options.w-col-580{width:580px!important}.dropdown-options.w-col-581{width:581px!important}.dropdown-options.w-col-582{width:582px!important}.dropdown-options.w-col-583{width:583px!important}.dropdown-options.w-col-584{width:584px!important}.dropdown-options.w-col-585{width:585px!important}.dropdown-options.w-col-586{width:586px!important}.dropdown-options.w-col-587{width:587px!important}.dropdown-options.w-col-588{width:588px!important}.dropdown-options.w-col-589{width:589px!important}.dropdown-options.w-col-590{width:590px!important}.dropdown-options.w-col-591{width:591px!important}.dropdown-options.w-col-592{width:592px!important}.dropdown-options.w-col-593{width:593px!important}.dropdown-options.w-col-594{width:594px!important}.dropdown-options.w-col-595{width:595px!important}.dropdown-options.w-col-596{width:596px!important}.dropdown-options.w-col-597{width:597px!important}.dropdown-options.w-col-598{width:598px!important}.dropdown-options.w-col-599{width:599px!important}.dropdown-options.w-col-600{width:600px!important}.dropdown-options.w-col-601{width:601px!important}.dropdown-options.w-col-602{width:602px!important}.dropdown-options.w-col-603{width:603px!important}.dropdown-options.w-col-604{width:604px!important}.dropdown-options.w-col-605{width:605px!important}.dropdown-options.w-col-606{width:606px!important}.dropdown-options.w-col-607{width:607px!important}.dropdown-options.w-col-608{width:608px!important}.dropdown-options.w-col-609{width:609px!important}.dropdown-options.w-col-610{width:610px!important}.dropdown-options.w-col-611{width:611px!important}.dropdown-options.w-col-612{width:612px!important}.dropdown-options.w-col-613{width:613px!important}.dropdown-options.w-col-614{width:614px!important}.dropdown-options.w-col-615{width:615px!important}.dropdown-options.w-col-616{width:616px!important}.dropdown-options.w-col-617{width:617px!important}.dropdown-options.w-col-618{width:618px!important}.dropdown-options.w-col-619{width:619px!important}.dropdown-options.w-col-620{width:620px!important}.dropdown-options.w-col-621{width:621px!important}.dropdown-options.w-col-622{width:622px!important}.dropdown-options.w-col-623{width:623px!important}.dropdown-options.w-col-624{width:624px!important}.dropdown-options.w-col-625{width:625px!important}.dropdown-options.w-col-626{width:626px!important}.dropdown-options.w-col-627{width:627px!important}.dropdown-options.w-col-628{width:628px!important}.dropdown-options.w-col-629{width:629px!important}.dropdown-options.w-col-630{width:630px!important}.dropdown-options.w-col-631{width:631px!important}.dropdown-options.w-col-632{width:632px!important}.dropdown-options.w-col-633{width:633px!important}.dropdown-options.w-col-634{width:634px!important}.dropdown-options.w-col-635{width:635px!important}.dropdown-options.w-col-636{width:636px!important}.dropdown-options.w-col-637{width:637px!important}.dropdown-options.w-col-638{width:638px!important}.dropdown-options.w-col-639{width:639px!important}.dropdown-options.w-col-640{width:640px!important}.dropdown-options.w-col-641{width:641px!important}.dropdown-options.w-col-642{width:642px!important}.dropdown-options.w-col-643{width:643px!important}.dropdown-options.w-col-644{width:644px!important}.dropdown-options.w-col-645{width:645px!important}.dropdown-options.w-col-646{width:646px!important}.dropdown-options.w-col-647{width:647px!important}.dropdown-options.w-col-648{width:648px!important}.dropdown-options.w-col-649{width:649px!important}.dropdown-options.w-col-650{width:650px!important}.dropdown-options.w-col-651{width:651px!important}.dropdown-options.w-col-652{width:652px!important}.dropdown-options.w-col-653{width:653px!important}.dropdown-options.w-col-654{width:654px!important}.dropdown-options.w-col-655{width:655px!important}.dropdown-options.w-col-656{width:656px!important}.dropdown-options.w-col-657{width:657px!important}.dropdown-options.w-col-658{width:658px!important}.dropdown-options.w-col-659{width:659px!important}.dropdown-options.w-col-660{width:660px!important}.dropdown-options.w-col-661{width:661px!important}.dropdown-options.w-col-662{width:662px!important}.dropdown-options.w-col-663{width:663px!important}.dropdown-options.w-col-664{width:664px!important}.dropdown-options.w-col-665{width:665px!important}.dropdown-options.w-col-666{width:666px!important}.dropdown-options.w-col-667{width:667px!important}.dropdown-options.w-col-668{width:668px!important}.dropdown-options.w-col-669{width:669px!important}.dropdown-options.w-col-670{width:670px!important}.dropdown-options.w-col-671{width:671px!important}.dropdown-options.w-col-672{width:672px!important}.dropdown-options.w-col-673{width:673px!important}.dropdown-options.w-col-674{width:674px!important}.dropdown-options.w-col-675{width:675px!important}.dropdown-options.w-col-676{width:676px!important}.dropdown-options.w-col-677{width:677px!important}.dropdown-options.w-col-678{width:678px!important}.dropdown-options.w-col-679{width:679px!important}.dropdown-options.w-col-680{width:680px!important}.dropdown-options.w-col-681{width:681px!important}.dropdown-options.w-col-682{width:682px!important}.dropdown-options.w-col-683{width:683px!important}.dropdown-options.w-col-684{width:684px!important}.dropdown-options.w-col-685{width:685px!important}.dropdown-options.w-col-686{width:686px!important}.dropdown-options.w-col-687{width:687px!important}.dropdown-options.w-col-688{width:688px!important}.dropdown-options.w-col-689{width:689px!important}.dropdown-options.w-col-690{width:690px!important}.dropdown-options.w-col-691{width:691px!important}.dropdown-options.w-col-692{width:692px!important}.dropdown-options.w-col-693{width:693px!important}.dropdown-options.w-col-694{width:694px!important}.dropdown-options.w-col-695{width:695px!important}.dropdown-options.w-col-696{width:696px!important}.dropdown-options.w-col-697{width:697px!important}.dropdown-options.w-col-698{width:698px!important}.dropdown-options.w-col-699{width:699px!important}.dropdown-options.w-col-700{width:700px!important}.dropdown-options.w-col-701{width:701px!important}.dropdown-options.w-col-702{width:702px!important}.dropdown-options.w-col-703{width:703px!important}.dropdown-options.w-col-704{width:704px!important}.dropdown-options.w-col-705{width:705px!important}.dropdown-options.w-col-706{width:706px!important}.dropdown-options.w-col-707{width:707px!important}.dropdown-options.w-col-708{width:708px!important}.dropdown-options.w-col-709{width:709px!important}.dropdown-options.w-col-710{width:710px!important}.dropdown-options.w-col-711{width:711px!important}.dropdown-options.w-col-712{width:712px!important}.dropdown-options.w-col-713{width:713px!important}.dropdown-options.w-col-714{width:714px!important}.dropdown-options.w-col-715{width:715px!important}.dropdown-options.w-col-716{width:716px!important}.dropdown-options.w-col-717{width:717px!important}.dropdown-options.w-col-718{width:718px!important}.dropdown-options.w-col-719{width:719px!important}.dropdown-options.w-col-720{width:720px!important}.dropdown-options.w-col-721{width:721px!important}.dropdown-options.w-col-722{width:722px!important}.dropdown-options.w-col-723{width:723px!important}.dropdown-options.w-col-724{width:724px!important}.dropdown-options.w-col-725{width:725px!important}.dropdown-options.w-col-726{width:726px!important}.dropdown-options.w-col-727{width:727px!important}.dropdown-options.w-col-728{width:728px!important}.dropdown-options.w-col-729{width:729px!important}.dropdown-options.w-col-730{width:730px!important}.dropdown-options.w-col-731{width:731px!important}.dropdown-options.w-col-732{width:732px!important}.dropdown-options.w-col-733{width:733px!important}.dropdown-options.w-col-734{width:734px!important}.dropdown-options.w-col-735{width:735px!important}.dropdown-options.w-col-736{width:736px!important}.dropdown-options.w-col-737{width:737px!important}.dropdown-options.w-col-738{width:738px!important}.dropdown-options.w-col-739{width:739px!important}.dropdown-options.w-col-740{width:740px!important}.dropdown-options.w-col-741{width:741px!important}.dropdown-options.w-col-742{width:742px!important}.dropdown-options.w-col-743{width:743px!important}.dropdown-options.w-col-744{width:744px!important}.dropdown-options.w-col-745{width:745px!important}.dropdown-options.w-col-746{width:746px!important}.dropdown-options.w-col-747{width:747px!important}.dropdown-options.w-col-748{width:748px!important}.dropdown-options.w-col-749{width:749px!important}.dropdown-options.w-col-750{width:750px!important}.dropdown-options.w-col-751{width:751px!important}.dropdown-options.w-col-752{width:752px!important}.dropdown-options.w-col-753{width:753px!important}.dropdown-options.w-col-754{width:754px!important}.dropdown-options.w-col-755{width:755px!important}.dropdown-options.w-col-756{width:756px!important}.dropdown-options.w-col-757{width:757px!important}.dropdown-options.w-col-758{width:758px!important}.dropdown-options.w-col-759{width:759px!important}.dropdown-options.w-col-760{width:760px!important}.dropdown-options.w-col-761{width:761px!important}.dropdown-options.w-col-762{width:762px!important}.dropdown-options.w-col-763{width:763px!important}.dropdown-options.w-col-764{width:764px!important}.dropdown-options.w-col-765{width:765px!important}.dropdown-options.w-col-766{width:766px!important}.dropdown-options.w-col-767{width:767px!important}.dropdown-options.w-col-768{width:768px!important}.dropdown-options.w-col-769{width:769px!important}.dropdown-options.w-col-770{width:770px!important}.dropdown-options.w-col-771{width:771px!important}.dropdown-options.w-col-772{width:772px!important}.dropdown-options.w-col-773{width:773px!important}.dropdown-options.w-col-774{width:774px!important}.dropdown-options.w-col-775{width:775px!important}.dropdown-options.w-col-776{width:776px!important}.dropdown-options.w-col-777{width:777px!important}.dropdown-options.w-col-778{width:778px!important}.dropdown-options.w-col-779{width:779px!important}.dropdown-options.w-col-780{width:780px!important}.dropdown-options.w-col-781{width:781px!important}.dropdown-options.w-col-782{width:782px!important}.dropdown-options.w-col-783{width:783px!important}.dropdown-options.w-col-784{width:784px!important}.dropdown-options.w-col-785{width:785px!important}.dropdown-options.w-col-786{width:786px!important}.dropdown-options.w-col-787{width:787px!important}.dropdown-options.w-col-788{width:788px!important}.dropdown-options.w-col-789{width:789px!important}.dropdown-options.w-col-790{width:790px!important}.dropdown-options.w-col-791{width:791px!important}.dropdown-options.w-col-792{width:792px!important}.dropdown-options.w-col-793{width:793px!important}.dropdown-options.w-col-794{width:794px!important}.dropdown-options.w-col-795{width:795px!important}.dropdown-options.w-col-796{width:796px!important}.dropdown-options.w-col-797{width:797px!important}.dropdown-options.w-col-798{width:798px!important}.dropdown-options.w-col-799{width:799px!important}.dropdown-options.w-col-800{width:800px!important}.dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;padding-right:0}.dropdown-options.scroll::-webkit-scrollbar{width:3px}.dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.dropdown-options-fuel-franchise{padding:4px;max-height:300px}.dropdown-options.no-result-container{padding:6px 10px!important}.dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.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,.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,.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,.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}.dropdown-options:not(.dropdown_value) .dropdown-option{color:#fff}.dropdown-options .dropdown-option{padding:0;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0;font-weight:700}.dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#fff;font-size:14px;line-height:18px}.dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#fff;font-size:14px;line-height:18px}.dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.dropdown-options .dropdown-option:hover{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.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}.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}.dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.dropdown-options .dropdown-option.no-result div{padding-top:1px}.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}.dropdown-options .dropdown-option.add-new:hover{color:#fff;background:#3b73ed66}.dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.dropdown-options .dropdown-option.all-assigned .details-template-text,.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}.dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.dropdown-options .dropdown-option.active-label .labels-template-counter,.dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.dropdown-options .dropdown-option.active,.dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.dropdown-options .dropdown-option.active .highlight-text-45632,.dropdown-options .dropdown-option.active-label .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.active .highlight-text-45632:hover,.dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.dropdown-options .dropdown-option.active:not(.payroll-trucks):after,.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}.dropdown-options .dropdown-option.active-label:after{right:35px}.dropdown-options .dropdown-option.last-active{position:relative}.dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.dropdown-options .dropdown-option .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.svg-text-template,.dropdown-options .dropdown-option .svg-text-template{display:flex;align-items:center}.dropdown-options .dropdown-option.svg-text-template.container,.dropdown-options .dropdown-option .svg-text-template.container{padding:0!important}.dropdown-options .dropdown-option.svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text,.dropdown-options .dropdown-option .svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text{padding-left:25px}.dropdown-options .dropdown-option.svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text:after,.dropdown-options .dropdown-option .svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text:after{position:absolute;content:url(/assets/ca-components/svg/common/trailers/ic_hazardous.svg);width:14px;height:10px;left:0}.dropdown-options .dropdown-option.svg-text-template.hazardous,.dropdown-options .dropdown-option .svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.dropdown-options .dropdown-option.svg-text-template.hazardous svg,.dropdown-options .dropdown-option .svg-text-template.hazardous svg{margin-right:5px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo,.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}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px;padding:0!important}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.radiator svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.turbo svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.alignment svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.accompressor svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.aircompressor svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.fuelpump svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.waterpump svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.oilpump svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.brakechamber svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.battery svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-text{position:relative}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-text.truck-text{top:1px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-text.flex-1{flex:1}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text,.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}.dropdown-options .dropdown-option.svg-text-template .colors,.dropdown-options .dropdown-option .svg-text-template .colors{height:18px;width:18px}.dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo,.dropdown-options .dropdown-option .svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text,.dropdown-options .dropdown-option .svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.dropdown-options .dropdown-option.labels-template,.dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.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}.dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.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}.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}.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}.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}.dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.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}.dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.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}.dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.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}.dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.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}.dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.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}.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}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.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}.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}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.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}.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}.dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.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}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.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}.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}.dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.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}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::-moz-selection{background-color:#ccc3!important;color:#ccc6!important}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.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;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.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}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.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}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-option-hovered{border-radius:2px;background-color:#1d1d1d}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-option-hovered .dropdown-subgroup-text{color:#fff!important}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options.selected-option{padding:0 4px}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options.selected-option .dropdown-subgroup-additional-text{padding-right:40px!important}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:not(.selected-option) .dropdown-subgroup-text{color:#fff}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:not(.selected-option) .dropdown-subgroup-additional-text.active{color:#6f9ee0}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.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}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.dropdown-options.svgtext-dispatch-template{top:-4px}.dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.load-dispatcher-template{display:flex;align-items:center;gap:6px}.load-shipper-template{display:grid;grid-template-columns:1fr 1fr;align-items:center;padding-right:5px}.load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.load-shipper-template .load-shipper-status-text.in-option{height:22px}.load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.load-shipper-template div:nth-child(2),.load-shipper-template div:nth-child(3){text-align:right}.load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400;white-space:nowrap;max-width:100%;text-overflow:ellipsis;overflow:hidden}.load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.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}.load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.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}.load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;-moz-column-gap:29px;column-gap:29px}.load-broker-template.in-option{height:26px}.load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:26px}.load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.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}.load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.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}.load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.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}.load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.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}.load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.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}.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}.load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.load-dispatches-ttd-template.active .load-dispatch-driver-rate,.load-dispatches-ttd-template.active .load-dispatch-driver,.load-dispatches-ttd-template.active .load-dispatch-truck,.load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.application-dropdown{position:relative}.application-dropdown .dropdown_value{position:absolute;color:#2f2f2f!important;z-index:9;padding:0 0 0 10px;font-size:14px;line-height:26px;pointer-events:none}.application-dropdown .dropdown_value.open{color:#fff;font-weight:400;opacity:.7}.application-dropdown .dropdown_value.leftIcon{padding-left:37px;line-height:26px}.application-dropdown .dropdown_value.dropdown-value-right-side{text-align:right;padding-right:40px}.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-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .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-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .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-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .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-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-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-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-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:
587
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CaInputDropdownTestComponent, isStandalone: true, selector: "ca-input-dropdown-test", 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", searchInputEvent: "searchInputEvent" }, providers: [FormControlPipe], viewQueries: [{ propertyName: "inputRef", first: true, predicate: ["input"], descendants: true }, { propertyName: "popoverRef", first: true, predicate: ["t2"], descendants: true }, { propertyName: "dropdownComponentRef", first: true, predicate: ["dropdownComponentRef"], descendants: 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 (\n multiselectItems.length &&\n !inputConfig.isDisabled &&\n !getSuperControl?.disabled\n ) {\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 (\n !inputConfig.isDisabled && !getSuperControl?.disabled\n ) {\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 @if (!searchInputText.value) {\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 <div\n [class.open]=\"isDropDownIsOpen\"\n [class.leftIcon]=\"inputConfig.placeholderIcon\"\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 'svgtext-dispatch-template':\n _template == 'svgtext-dispatch-template',\n 'dropdown-value-right-side': inputConfig.placeholderIconRightSide\n }\"\n class=\"dropdown_value dropdown-options {{\n inputConfig.dropdownWidthClass\n }}\"\n >\n @switch (_template) {\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHES_TTD) {\n @if (activeItem) {\n <div class=\"dropdown-option dropdown-double-column\">\n <app-ca-input-dropdown-load-dispatches-ttd-item\n [index]=\"0\"\n [searchText]=\"searchInputText.value || ''\"\n [activeItem]=\"activeItem\"\n [option]=\"activeItem!\"\n [label]=\"label\"\n >\n </app-ca-input-dropdown-load-dispatches-ttd-item>\n </div>\n }\n }\n @case (dropdownTemplateTypeEnum.LOAD_BROKER) {\n @if (activeItem) {\n <app-ca-input-dropdown-load-broker-item\n [option]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [isInOption]=\"true\"\n [label]=\"label\"\n ></app-ca-input-dropdown-load-broker-item>\n }\n }\n\n @case (dropdownTemplateTypeEnum.LOAD_SHIPPER) {\n @if (activeItem) {\n <app-ca-input-dropdown-load-shipper-item\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [option]=\"activeItem\"\n [isInOption]=\"true\"\n [label]=\"label\"\n ></app-ca-input-dropdown-load-shipper-item>\n }\n }\n\n @case (dropdownTemplateTypeEnum.LOAD_BROKER_CONTACT) {\n @if (activeItem) {\n <div class=\"load-broker-contact-groups\">\n <ca-input-dropdown-load-broker-contact-item\n [activeItem]=\"activeItem\"\n [item]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [isInOption]=\"true\"\n ></ca-input-dropdown-load-broker-contact-item>\n </div>\n }\n }\n\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHER) {\n @if (activeItem) {\n <app-ca-input-dropdown-load-dispatcher-item\n [option]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [activeItem]=\"activeItem\"\n [label]=\"label\"\n [dropdownWithImage]=\"\n inputConfig.dropdownImageInput\n \"\n [isInOption]=\"true\"\n >\n </app-ca-input-dropdown-load-dispatcher-item>\n }\n }\n\n @default {\n <!-- Special Dropdown Selected SVG with or Without Text -->\n @if (inputConfig.dropdownImageInput && activeItem) {\n <svg-icon\n [src]=\"\n inputConfig.dropdownImageInput!\n | inputDropdownGetIcons: activeItem\n \"\n class=\"dropdown-selected-image {{\n inputConfig.dropdownImageInput?.class\n }}\"\n [ngClass]=\"{\n 'unset-color':\n inputConfig.dropdownImageInput?.class,\n }\"\n [svgStyle]=\"{\n fill: inputConfig.dropdownImageInput\n ? activeItem?.code\n : '#ffffff',\n }\"\n >\n </svg-icon>\n }\n\n @if (\n inputConfig.dropdownImageInput?.withText ||\n !inputConfig.dropdownImageInput\n ) {\n {{ dropdownValue }}\n }\n }\n }\n </div>\n }\n\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 [parentControl]=\"getSuperControl\"\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 !getSuperControl?.disabled) ||\n ((inputConfig?.name == 'Address' ||\n inputConfig?.name == 'RoutingAddress') &&\n !inputConfig.isDisabled &&\n !getSuperControl?.disabled &&\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [dropdownWithImage]=\"inputConfig.dropdownImageInput\"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [sort]=\"_sort\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n ></app-ca-input-dropdown-groups>\n }\n\n <!--------------------------- Multiselect Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.MULTISELECT) {\n <app-ca-input-dropdown-multiselect\n #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [lastActiveMultiselectItem]=\"lastActiveMultiselectItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onMultiselectSelect)=\"onMultiselectSelect($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n ></app-ca-input-dropdown-multiselect>\n }\n <!--------------------------- Labels Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LABELS) {\n <app-ca-input-dropdown-labels\n #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [inputConfig]=\"inputConfig\"\n [labelMode]=\"labelMode\"\n [canAddNew]=\"_canAddNew\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n ></app-ca-input-dropdown-labels>\n }\n\n <!--------------------------- Dispatch Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.DISPATCH) {\n <app-ca-input-dropdown-dispatch\n #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n [inputConfig]=\"inputConfig\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n (toggleNestedList)=\"toggleNestedList($event)\"\n (onActiveItemGroup)=\"onActiveItemGroup($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [inputConfig]=\"inputConfig\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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}.load-pickup-delivery-popover{top:-34px!important;max-width:400px!important}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#fff}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#fff}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#fff}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.dropdown-menu-popover.bs-popover-end-top .dropdown-container{transform:translate(-4px,-3px)}.dropdown-menu-popover.bs-popover-bottom-end .dropdown-container{transform:translate(3px,-3px)}.dropdown-menu-popover.bs-popover-end-bottom .dropdown-container{transform:translate(-3px,3px)}.dropdown-menu-popover.bs-popover-top-end .dropdown-container{transform:translate(3px,3px)}.dropdown-details-title-card-popover .dropdown-container{transform:translateY(-4px)}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background-color:#42424233!important;color:#424242!important}.text-color-black::selection{background-color:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-muted::selection{background-color:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green-2{color:#259f94!important}.text-color-green-2::-moz-selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-2::selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-blue-5{color:#3074d3!important}.text-color-blue-5::-moz-selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-5::selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-13::selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-16{color:#e9effd!important}.text-color-blue-16::-moz-selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-16::selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-11{color:#df3c3c!important}.text-color-red-11::-moz-selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-11::selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-yellow{color:#fab15c!important}.text-color-yellow::-moz-selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-yellow::selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-purple{color:#b370f0!important}.text-color-purple::-moz-selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-purple::selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-special-filter-purple{color:#9e47ec!important}.text-color-special-filter-purple::-moz-selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-special-filter-purple::selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-grey-9{color:#b7b7b7!important}.text-color-grey-9::-moz-selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-grey-9::selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{background-color:#ccc3!important;color:#ccc!important}.text-color-light-grey-6::selection{background-color:#ccc3!important;color:#ccc!important}.text-color-white{color:#fff!important}.text-color-white::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-white-4::selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw6-2::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{background-color:#dadada33!important;color:#dadada!important}.text-color-bw-9::selection{background-color:#dadada33!important;color:#dadada!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey::selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{background-color:#91919133!important;color:#919191!important}.text-color-orange-1{color:#ff7043!important}.text-color-orange-1::-moz-selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-1::selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-2{color:#f77d3b!important}.text-color-orange-2::-moz-selection{background-color:#f77d3b33!important;color:#f77d3b!important}.text-color-orange-2::selection{background-color:#f77d3b33!important;color:#f77d3b!important}.text-color-orange-3{color:#ffb097!important}.text-color-orange-3::-moz-selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-orange-3::selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-brown-1{color:#865e3a!important}.text-color-brown-1::-moz-selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-brown-1::selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-light-blue-2{color:#1ab5e6!important}.text-color-light-blue-2::-moz-selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-color-light-blue-2::selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-hover-white{transition:color .3s ease-in-out ease-in-out}.text-hover-white:hover{color:#fff!important}.text-hover-black{transition:color .3s ease-in-out ease-in-out}.text-hover-black:hover{color:#424242!important}.text-hover-blue-15{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-15:hover{color:#0b49d1!important}.text-hover-blue-18{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-18:hover{color:#3b73ed!important}.text-hover-bw6-2{transition:color .3s ease-in-out ease-in-out}.text-hover-bw6-2:hover{color:#6c6c6c!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-20{font-size:20px!important;line-height:24px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.font-size-11{font-size:11px!important}.line-height-12{line-height:12px!important}.svg-fill-black svg path,.svg-fill-black svg circle{fill:#424242!important}.svg-fill-black-2 svg path,.svg-fill-black-2 svg circle{fill:#2f2f2f!important}.svg-fill-black-9 svg path,.svg-fill-black-9 svg circle{fill:#1d1d1d!important}.svg-fill-white svg path,.svg-fill-white svg circle{fill:#fff!important}.svg-fill-white-2 svg path,.svg-fill-white-2 svg circle{fill:#fff!important}.svg-fill-muted svg path,.svg-fill-muted svg circle{fill:#919191!important}.svg-fill-bw6-2 svg path,.svg-fill-bw6-2 svg circle{fill:#6c6c6c!important}.svg-fill-bw-9 svg path,.svg-fill-bw-9 svg circle{fill:#dadada!important}.svg-fill-light-grey-2 svg path,.svg-fill-light-grey-2 svg circle{fill:#aaa!important}.svg-fill-light-grey-6 svg path,.svg-fill-light-grey-6 svg circle{fill:#ccc!important}.svg-fill-blue-8 svg path,.svg-fill-blue-8 svg circle{fill:#6692f1!important}.svg-fill-blue-13 svg path,.svg-fill-blue-13 svg circle{fill:#6692f1!important}.svg-fill-blue-14 svg path,.svg-fill-blue-14 svg circle{fill:#3b73ed!important}.svg-fill-blue-17 svg path,.svg-fill-blue-17 svg circle{fill:#bed0f9!important}.svg-fill-blue-19 svg path,.svg-fill-blue-19 svg circle{fill:#92b1f5!important}.svg-fill-blue-26 svg path,.svg-fill-blue-26 svg circle{fill:#4dc5eb!important}.svg-fill-green svg path,.svg-fill-green svg circle{fill:#56b4ac!important}.svg-fill-green-2 svg path,.svg-fill-green-2 svg circle{fill:#259f94!important}.svg-fill-green-4 svg path,.svg-fill-green-4 svg circle{fill:#86c9c3!important}.svg-fill-green-6 svg path,.svg-fill-green-6 svg circle{fill:#77bf56!important}.svg-fill-yellow-1 svg path,.svg-fill-yellow-1 svg circle{fill:#fab15c!important}.svg-fill-yellow-4 svg path,.svg-fill-yellow-4 svg circle{fill:#fbc88b!important}.svg-fill-yellow-5 svg path,.svg-fill-yellow-5 svg circle{fill:#f89b2e!important}.svg-fill-yellow-8 svg path,.svg-fill-yellow-8 svg circle{fill:#daad4f!important}.svg-fill-white-4 svg path,.svg-fill-white-4 svg circle{fill:#ffffffb2!important}.svg-fill-grey svg path,.svg-fill-grey svg circle{fill:#919191!important}.svg-fill-red-10 svg path,.svg-fill-red-10 svg circle{fill:#e66767!important}.svg-fill-red-11 svg path,.svg-fill-red-11 svg circle{fill:#df3c3c!important}.svg-fill-red-13 svg path,.svg-fill-red-13 svg circle{fill:#ed9292!important}.svg-fill-red-14 svg path,.svg-fill-red-14 svg circle{fill:#c20c0c!important}.svg-fill-red-15 svg path,.svg-fill-red-15 svg circle{fill:#f4bebe!important}.svg-fill-red-18 svg path,.svg-fill-red-18 svg circle{fill:#e668a0!important}.svg-fill-orange-4 svg path,.svg-fill-orange-4 svg circle{fill:#ff906d!important}.svg-fill-brown svg path,.svg-fill-brown svg circle{fill:#865e3a!important}.svg-fill-purple-4 svg path,.svg-fill-purple-4 svg circle{fill:#9e47ec!important}.svg-hover-white svg path{transition:fill .3s ease-in-out}.svg-hover-white:hover svg path{fill:#fff!important}.svg-hover-white-2 svg path{transition:fill .3s ease-in-out}.svg-hover-white-2:hover svg path{fill:#fff!important}.svg-hover-muted svg path{transition:fill .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-grey-4 svg path{transition:fill .3s ease-in-out}.svg-hover-grey-4:hover svg path{fill:#ccc!important}.svg-hover-black svg path{transition:fill .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-9 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-9:hover svg path{fill:#0b49d1!important}.svg-hover-blue-10 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-10:hover svg path{fill:#6f9ee033!important}.svg-hover-blue-15 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-blue-17 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-17:hover svg path{fill:#bed0f9!important}.svg-hover-blue-19 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-19:hover svg path{fill:#92b1f5!important}.svg-hover-bw6-2 svg path{transition:fill .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-bw-9 svg path{transition:fill .3s ease-in-out}.svg-hover-bw-9:hover svg path{fill:#dadada!important}.svg-hover-trash-red svg path{transition:fill .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:fill .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-6 svg{width:6px;height:6px}.svg-size-7 svg{width:7px;height:7px}.svg-size-10 svg{width:10px;height:10px}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-17 svg{width:17px;height:17px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-23 svg{width:23px;height:23px}.svg-size-26 svg{width:26px;height:26px}.svg-size-30-26 svg{width:30px;height:26px}.svg-size-44-16 svg{width:44px;height:16px}.svg-size-90 svg{width:90px;height:90px}.background-transparent{background-color:transparent}.background-white{background-color:#fff}.background-black{background-color:#424242}.background-black-2{background-color:#2f2f2f}.background-black-3{background-color:#1d1d1d}.background-gray{background-color:#e5e5e5}.background-gray-2{background-color:#6c6c6c}.background-gray-12{background-color:#eee}.background-light-gray-2{background-color:#aaa}.background-light-gray-6{background-color:#ccc}.background-light-gray-7{background-color:#fbfbfb}.background-grey{background-color:#919191}.background-blue-5{background-color:#3074d3}.background-blue-13{background-color:#6692f1}.background-blue-14,.background-blue-18{background-color:#3b73ed}.background-blue-19{background-color:#92b1f5}.background-blue-20{background-color:#3b73ed33}.background-green-0{background-color:#56b4ac}.background-green-2{background-color:#259f94}.background-green-3{background-color:#b6dfdb}.background-green-4,.background-green-6{background-color:#86c9c3}.background-dark-2{background-color:#91919133}.background-red-19{background-color:#df3d85}.background-purple-4{background-color:#9e47ec}.background-gold-bold{background-color:#cf961d}.background-gold-subtle{background-color:#e4c481}.background-orange-3{background-color:#ffb097}.background-orange-4{background-color:#ff906d}.background-orange-7{background-color:#ffcfc0}.background-yellow-8{background-color:#daad4f}.background-bw5{background-color:#919191}.background-bw6-2{background-color:#6c6c6c}.background-brown-bold{background-color:#865e3a}.background-bw2{background-color:#eee}.background-bw-9{background-color:#dadada}.background-hover-white{transition:background-color .3s ease-in-out}.background-hover-white:hover{background-color:#fff!important}.background-hover-black{transition:background-color .3s ease-in-out}.background-hover-black:hover{background-color:#424242!important}.background-hover-black-1{transition:background-color .3s ease-in-out}.background-hover-black-1:hover{background-color:#424242!important}.background-hover-grey{transition:background-color .3s ease-in-out}.background-hover-grey:hover{background-color:#919191!important}.background-hover-grey-2{transition:background-color .3s ease-in-out}.background-hover-grey-2:hover{background-color:#6c6c6c!important}.background-hover-grey-6{transition:background-color .3s ease-in-out}.background-hover-grey-6:hover{background-color:#91919120!important}.background-hover-dark-2{transition:background-color .3s ease-in-out}.background-hover-dark-2:hover{background-color:#91919133!important}.background-hover-bw2{transition:background-color .3s ease-in-out}.background-hover-bw2:hover{background-color:#eee!important}.background-hover-bw6{transition:background-color .3s ease-in-out}.background-hover-bw6:hover{background-color:#606060!important}.background-hover-bw6-2{transition:background-color .3s ease-in-out}.background-hover-bw6-2:hover{background-color:#6c6c6c!important}.background-hover-blue-13{transition:background-color .3s ease-in-out}.background-hover-blue-13:hover{background-color:#6692f1!important}.background-hover-blue-15{transition:background-color .3s ease-in-out}.background-hover-blue-15:hover{background-color:#0b49d1!important}.background-hover-blue-16{transition:background-color .3s ease-in-out}.background-hover-blue-16:hover{background-color:#e9effd!important}.background-hover-blue-17{transition:background-color .3s ease-in-out}.background-hover-blue-17:hover{background-color:#bed0f9!important}.background-hover-blue-19{transition:background-color .3s ease-in-out}.background-hover-blue-19:hover{background-color:#92b1f5!important}.background-hover-blue-20{transition:background-color .3s ease-in-out}.background-hover-blue-20:hover{background-color:#3b73ed33!important}.background-hover-blue-21{transition:background-color .3s ease-in-out}.background-hover-blue-21:hover{background-color:#3b73ed66!important}.background-hover-red-15{transition:background-color .3s ease-in-out}.background-hover-red-15:hover{background-color:#f4bebe!important}.background-hover-gray{transition:background-color .3s ease-in-out}.background-hover-gray:hover{background-color:#e5e5e5!important}.background-hover-light-grey{transition:background-color .3s ease-in-out}.background-hover-light-grey:hover{background-color:#e5e5e5!important}.background-hover-bw-9{transition:background-color .3s ease-in-out}.background-hover-bw-9:hover{background-color:#dadada!important}.br-1{border-radius:1px}.br-2{border-radius:2px}.br-3{border-radius:3px}.br-10{border-radius:10px}.br-60{border-radius:60px}.br-circle{border-radius:50%}.padding-2{padding:2px}.padding-l-2{padding-left:2px}.padding-r-2{padding-right:2px}.padding-t-2{padding-top:2px}.padding-4{padding:4px}.padding-l-4{padding-left:4px}.padding-r-4{padding-right:4px}.padding-t-4{padding-top:4px}.padding-6{padding:6px}.padding-l-6{padding-left:6px}.padding-r-6{padding-right:6px}.padding-t-6{padding-top:6px}.padding-10{padding:10px}.padding-l-10{padding-left:10px}.padding-r-10{padding-right:10px}.padding-t-10{padding-top:10px}.padding-15{padding:15px}.padding-l-15{padding-left:15px}.padding-r-15{padding-right:15px}.padding-t-15{padding-top:15px}.padding-y-2{padding-top:2px;padding-bottom:2px}.padding-y-4{padding-top:4px;padding-bottom:4px}.padding-y-6{padding-top:6px;padding-bottom:6px}.padding-y-10{padding-top:10px;padding-bottom:10px}.padding-y-15{padding-top:15px;padding-bottom:15px}.padding-x-4{padding-left:4px;padding-right:4px}.padding-x-5{padding-left:5px;padding-right:5px}.padding-x-6{padding-left:6px;padding-right:6px}.padding-x-10{padding-left:10px;padding-right:10px}.margin--2{margin:-2px}.margin-y--2{margin-top:-2px;margin-bottom:-2px}.margin-x--2{margin-left:-2px;margin-right:-2px}.margin-t--2{margin-top:-2px}.margin-r--2{margin-right:-2px}.margin-b--2{margin-bottom:-2px}.margin-l--2{margin-left:-2px}.margin-1{margin:1px}.margin-y-1{margin-top:1px;margin-bottom:1px}.margin-x-1{margin-left:1px;margin-right:1px}.margin-t-1{margin-top:1px}.margin-r-1{margin-right:1px}.margin-b-1{margin-bottom:1px}.margin-l-1{margin-left:1px}.margin-2{margin:2px}.margin-y-2{margin-top:2px;margin-bottom:2px}.margin-x-2{margin-left:2px;margin-right:2px}.margin-t-2{margin-top:2px}.margin-r-2{margin-right:2px}.margin-b-2{margin-bottom:2px}.margin-l-2{margin-left:2px}.margin-4{margin:4px}.margin-y-4{margin-top:4px;margin-bottom:4px}.margin-x-4{margin-left:4px;margin-right:4px}.margin-t-4{margin-top:4px}.margin-r-4{margin-right:4px}.margin-b-4{margin-bottom:4px}.margin-l-4{margin-left:4px}.margin-5{margin:5px}.margin-y-5{margin-top:5px;margin-bottom:5px}.margin-x-5{margin-left:5px;margin-right:5px}.margin-t-5{margin-top:5px}.margin-r-5{margin-right:5px}.margin-b-5{margin-bottom:5px}.margin-l-5{margin-left:5px}.margin-6{margin:6px}.margin-y-6{margin-top:6px;margin-bottom:6px}.margin-x-6{margin-left:6px;margin-right:6px}.margin-t-6{margin-top:6px}.margin-r-6{margin-right:6px}.margin-b-6{margin-bottom:6px}.margin-l-6{margin-left:6px}.margin-8{margin:8px}.margin-y-8{margin-top:8px;margin-bottom:8px}.margin-x-8{margin-left:8px;margin-right:8px}.margin-t-8{margin-top:8px}.margin-r-8{margin-right:8px}.margin-b-8{margin-bottom:8px}.margin-l-8{margin-left:8px}.margin-10{margin:10px}.margin-y-10{margin-top:10px;margin-bottom:10px}.margin-x-10{margin-left:10px;margin-right:10px}.margin-t-10{margin-top:10px}.margin-r-10{margin-right:10px}.margin-b-10{margin-bottom:10px}.margin-l-10{margin-left:10px}.margin-15{margin:15px}.margin-y-15{margin-top:15px;margin-bottom:15px}.margin-x-15{margin-left:15px;margin-right:15px}.margin-t-15{margin-top:15px}.margin-r-15{margin-right:15px}.margin-b-15{margin-bottom:15px}.margin-l-15{margin-left:15px}.margin-22{margin:22px}.margin-y-22{margin-top:22px;margin-bottom:22px}.margin-x-22{margin-left:22px;margin-right:22px}.margin-t-22{margin-top:22px}.margin-r-22{margin-right:22px}.margin-b-22{margin-bottom:22px}.margin-l-22{margin-left:22px}.margin-24{margin:24px}.margin-y-24{margin-top:24px;margin-bottom:24px}.margin-x-24{margin-left:24px;margin-right:24px}.margin-t-24{margin-top:24px}.margin-r-24{margin-right:24px}.margin-b-24{margin-bottom:24px}.margin-l-24{margin-left:24px}.gap-xs{gap:2px}.w-1{width:1px}.h-1{height:1px}.w-2{width:2px}.h-2{height:2px}.w-4{width:4px}.h-4{height:4px}.w-10{width:10px}.h-10{height:10px}.w-14{width:14px}.h-14{height:14px}.w-15{width:15px}.h-15{height:15px}.w-18{width:18px}.h-18{height:18px}.w-22{width:22px}.h-22{height:22px}.w-26{width:26px}.h-26{height:26px}.w-31{width:31px}.h-31{height:31px}.w-32{width:32px}.h-32{height:32px}.w-36{width:36px}.h-36{height:36px}.w-116{width:116px}.h-116{height:116px}.w-120{width:120px}.h-120{height:120px}.w-fit-content{width:fit-content}.filter-dropdown-popover{width:260px;position:relative;top:-4px;left:-4px}.filter-dropdown-popover-max-height{max-height:360px}.filter-dropdown-list{max-height:260px;overflow-y:auto}.filter-dropdown-list-icon{height:26px;transition:background-color .3s ease-in-out}.filter-dropdown-list-icon-value{height:14px;width:14px}.filter-dropdown-list-icon-remove{display:none}.filter-dropdown-list-icon:hover{background-color:#424242}.filter-dropdown-list-icon:hover .filter-dropdown-icon-count{display:none}.filter-dropdown-list-icon-selected:hover{background-color:#0b49d1}.filter-dropdown-list-item-icons{transition:opacity .3s ease-in-out;opacity:0}.filter-dropdown-list-item-status-circle{height:10px;width:10px}.filter-dropdown-list-item-remove{display:none}.filter-dropdown-list-item:hover{background-color:#424242}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons{opacity:1}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons svg path{fill:var(--svg-fill-color, #e66767)}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove{display:flex}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove svg path{fill:#e66767!important}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-count{display:none!important}.filter-dropdown-icon{height:26px;width:26px}.filter-dropdown-count{height:14px;width:14px}.filter-dropdown-count-remove,.filter-dropdown-count-hover:hover .filter-dropdown-count-value{display:none}.filter-dropdown-count-hover:hover .filter-dropdown-count-remove{display:flex}.filter-dropdown-button{height:26px}.filter-dropdown-footer-button{color:#dadada;transition:color .3s ease-in-out,background-color .3s ease-in-out;height:18px;width:50%}.filter-dropdown-footer-button-set{color:#fff;background-color:#3b73ed}.filter-dropdown-footer-button-set:hover{background-color:#e9effd;color:#0b49d1}.filter-dropdown-footer-button-clear{color:#dadada}.filter-dropdown-footer-button-clear:hover{background-color:#eee;color:#424242}.filter-dropdown-list-badge{min-width:18px}.h-7{height:7px!important;min-height:7px!important}.h-8{height:8px!important;min-height:8px!important}.h-10{height:10px!important;min-height:10px!important}.h-12{height:12px!important;min-height:12px!important}.h-14{height:14px!important;min-height:14px!important}.h-15{height:15px!important;min-height:15px!important}.h-16{height:16px!important;min-height:16px!important}.h-18{height:18px!important;min-height:18px!important}.h-22{height:22px!important;min-height:22px!important}.h-24{height:24px!important;min-height:24px!important}.h-26{height:26px!important;min-height:26px!important}.h-30{height:30px!important;min-height:30px!important}.h-34{height:34px!important;min-height:34px!important}.h-37{height:37px!important;min-height:37px!important}.h-40{height:40px!important;min-height:40px!important}.h-42{height:42px!important;min-height:42px!important}.h-44{height:44px!important;min-height:44px!important}.h-52{height:52px!important;min-height:52px!important}.h-80{height:80px!important;min-height:80px!important}.h-160{height:160px!important;min-height:160px!important}.h-486{height:486px!important;min-height:486px!important}.h-800{height:800px!important;min-height:800px!important}.h-960{height:960px!important;min-height:960px!important}.w-2{width:2px!important;min-width:2px!important}.w-7{width:7px!important;min-width:7px!important}.w-8{width:8px!important;min-width:8px!important}.w-10{width:10px!important;min-width:10px!important}.w-12{width:12px!important;min-width:12px!important}.w-15{width:15px!important;min-width:15px!important}.w-18{width:18px!important;min-width:18px!important}.w-22{width:22px!important;min-width:22px!important}.w-24{width:24px!important;min-width:24px!important}.w-26{width:26px!important;min-width:26px!important}.w-29{width:29px!important;min-width:29px!important}.w-30{width:30px!important;min-width:30px!important}.w-36{width:36px!important;min-width:36px!important}.w-40{width:40px!important;min-width:40px!important}.w-42{width:42px!important;min-width:42px!important}.w-46{width:46px!important;min-width:46px!important}.w-49{width:49px!important;min-width:49px!important}.w-57{width:57px!important;min-width:57px!important}.w-60{width:60px!important;min-width:60px!important}.w-68{width:68px!important;min-width:68px!important}.w-70{width:70px!important;min-width:70px!important}.w-71{width:71px!important;min-width:71px!important}.w-78{width:78px!important;min-width:78px!important}.w-80{width:80px!important;min-width:80px!important}.w-83{width:83px!important;min-width:83px!important}.w-84{width:84px!important;min-width:84px!important}.w-88{width:88px!important;min-width:88px!important}.w-90{width:90px!important;min-width:90px!important}.w-91{width:91px!important;min-width:91px!important}.w-93{width:93px!important;min-width:93px!important}.w-98{width:98px!important;min-width:98px!important}.w-101{width:101px!important;min-width:101px!important}.w-106{width:106px!important;min-width:106px!important}.w-108{width:108px!important;min-width:108px!important}.w-116{width:116px!important;min-width:116px!important}.w-126{width:126px!important;min-width:126px!important}.w-144{width:144px!important;min-width:144px!important}.w-155{width:155px!important;min-width:155px!important}.w-172{width:172px!important;min-width:172px!important}.w-179{width:179px!important;min-width:179px!important}.w-202{width:202px!important;min-width:202px!important}.w-214{width:214px!important;min-width:214px!important}.w-223{width:223px!important;min-width:223px!important}.w-264{width:264px!important;min-width:264px!important}.w-268{width:268px!important;min-width:268px!important}.w-272{width:272px!important;min-width:272px!important}.w-277{width:277px!important;min-width:277px!important}.w-334{width:334px!important;min-width:334px!important}.w-442{width:442px!important;min-width:442px!important}.w-462{width:462px!important;min-width:462px!important}.w-612{width:612px!important;min-width:612px!important}.w-616{width:616px!important;min-width:616px!important}.w-620{width:620px!important;min-width:620px!important}.min-w-18{min-width:18px}.flex-1{flex:1}.w-33{width:33%}.w-40p{width:40%}.w-90p{width:90%}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.c-pointer{cursor:pointer}.pointer-events-none{pointer-events:none}.ca-scroll-bar{overflow-y:scroll}.ca-scroll-bar::-webkit-scrollbar{width:2px}.ca-scroll-bar::-webkit-scrollbar-thumb{background:#ccc;border-radius:1px}.ca-scroll-bar::-webkit-scrollbar-track{background:#2f2f2f}.place-items-center{justify-content:center;align-items:center}.prevent-text-selection{-ms-user-select:none;-webkit-user-select:none;user-select:none;-moz-user-select:none}@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}}.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}.dropdown-options.dropdown_value{background-color:transparent!important;top:0;left:0}.dropdown-options.w-col-1{width:1px!important}.dropdown-options.w-col-2{width:2px!important}.dropdown-options.w-col-3{width:3px!important}.dropdown-options.w-col-4{width:4px!important}.dropdown-options.w-col-5{width:5px!important}.dropdown-options.w-col-6{width:6px!important}.dropdown-options.w-col-7{width:7px!important}.dropdown-options.w-col-8{width:8px!important}.dropdown-options.w-col-9{width:9px!important}.dropdown-options.w-col-10{width:10px!important}.dropdown-options.w-col-11{width:11px!important}.dropdown-options.w-col-12{width:12px!important}.dropdown-options.w-col-13{width:13px!important}.dropdown-options.w-col-14{width:14px!important}.dropdown-options.w-col-15{width:15px!important}.dropdown-options.w-col-16{width:16px!important}.dropdown-options.w-col-17{width:17px!important}.dropdown-options.w-col-18{width:18px!important}.dropdown-options.w-col-19{width:19px!important}.dropdown-options.w-col-20{width:20px!important}.dropdown-options.w-col-21{width:21px!important}.dropdown-options.w-col-22{width:22px!important}.dropdown-options.w-col-23{width:23px!important}.dropdown-options.w-col-24{width:24px!important}.dropdown-options.w-col-25{width:25px!important}.dropdown-options.w-col-26{width:26px!important}.dropdown-options.w-col-27{width:27px!important}.dropdown-options.w-col-28{width:28px!important}.dropdown-options.w-col-29{width:29px!important}.dropdown-options.w-col-30{width:30px!important}.dropdown-options.w-col-31{width:31px!important}.dropdown-options.w-col-32{width:32px!important}.dropdown-options.w-col-33{width:33px!important}.dropdown-options.w-col-34{width:34px!important}.dropdown-options.w-col-35{width:35px!important}.dropdown-options.w-col-36{width:36px!important}.dropdown-options.w-col-37{width:37px!important}.dropdown-options.w-col-38{width:38px!important}.dropdown-options.w-col-39{width:39px!important}.dropdown-options.w-col-40{width:40px!important}.dropdown-options.w-col-41{width:41px!important}.dropdown-options.w-col-42{width:42px!important}.dropdown-options.w-col-43{width:43px!important}.dropdown-options.w-col-44{width:44px!important}.dropdown-options.w-col-45{width:45px!important}.dropdown-options.w-col-46{width:46px!important}.dropdown-options.w-col-47{width:47px!important}.dropdown-options.w-col-48{width:48px!important}.dropdown-options.w-col-49{width:49px!important}.dropdown-options.w-col-50{width:50px!important}.dropdown-options.w-col-51{width:51px!important}.dropdown-options.w-col-52{width:52px!important}.dropdown-options.w-col-53{width:53px!important}.dropdown-options.w-col-54{width:54px!important}.dropdown-options.w-col-55{width:55px!important}.dropdown-options.w-col-56{width:56px!important}.dropdown-options.w-col-57{width:57px!important}.dropdown-options.w-col-58{width:58px!important}.dropdown-options.w-col-59{width:59px!important}.dropdown-options.w-col-60{width:60px!important}.dropdown-options.w-col-61{width:61px!important}.dropdown-options.w-col-62{width:62px!important}.dropdown-options.w-col-63{width:63px!important}.dropdown-options.w-col-64{width:64px!important}.dropdown-options.w-col-65{width:65px!important}.dropdown-options.w-col-66{width:66px!important}.dropdown-options.w-col-67{width:67px!important}.dropdown-options.w-col-68{width:68px!important}.dropdown-options.w-col-69{width:69px!important}.dropdown-options.w-col-70{width:70px!important}.dropdown-options.w-col-71{width:71px!important}.dropdown-options.w-col-72{width:72px!important}.dropdown-options.w-col-73{width:73px!important}.dropdown-options.w-col-74{width:74px!important}.dropdown-options.w-col-75{width:75px!important}.dropdown-options.w-col-76{width:76px!important}.dropdown-options.w-col-77{width:77px!important}.dropdown-options.w-col-78{width:78px!important}.dropdown-options.w-col-79{width:79px!important}.dropdown-options.w-col-80{width:80px!important}.dropdown-options.w-col-81{width:81px!important}.dropdown-options.w-col-82{width:82px!important}.dropdown-options.w-col-83{width:83px!important}.dropdown-options.w-col-84{width:84px!important}.dropdown-options.w-col-85{width:85px!important}.dropdown-options.w-col-86{width:86px!important}.dropdown-options.w-col-87{width:87px!important}.dropdown-options.w-col-88{width:88px!important}.dropdown-options.w-col-89{width:89px!important}.dropdown-options.w-col-90{width:90px!important}.dropdown-options.w-col-91{width:91px!important}.dropdown-options.w-col-92{width:92px!important}.dropdown-options.w-col-93{width:93px!important}.dropdown-options.w-col-94{width:94px!important}.dropdown-options.w-col-95{width:95px!important}.dropdown-options.w-col-96{width:96px!important}.dropdown-options.w-col-97{width:97px!important}.dropdown-options.w-col-98{width:98px!important}.dropdown-options.w-col-99{width:99px!important}.dropdown-options.w-col-100{width:100px!important}.dropdown-options.w-col-101{width:101px!important}.dropdown-options.w-col-102{width:102px!important}.dropdown-options.w-col-103{width:103px!important}.dropdown-options.w-col-104{width:104px!important}.dropdown-options.w-col-105{width:105px!important}.dropdown-options.w-col-106{width:106px!important}.dropdown-options.w-col-107{width:107px!important}.dropdown-options.w-col-108{width:108px!important}.dropdown-options.w-col-109{width:109px!important}.dropdown-options.w-col-110{width:110px!important}.dropdown-options.w-col-111{width:111px!important}.dropdown-options.w-col-112{width:112px!important}.dropdown-options.w-col-113{width:113px!important}.dropdown-options.w-col-114{width:114px!important}.dropdown-options.w-col-115{width:115px!important}.dropdown-options.w-col-116{width:116px!important}.dropdown-options.w-col-117{width:117px!important}.dropdown-options.w-col-118{width:118px!important}.dropdown-options.w-col-119{width:119px!important}.dropdown-options.w-col-120{width:120px!important}.dropdown-options.w-col-121{width:121px!important}.dropdown-options.w-col-122{width:122px!important}.dropdown-options.w-col-123{width:123px!important}.dropdown-options.w-col-124{width:124px!important}.dropdown-options.w-col-125{width:125px!important}.dropdown-options.w-col-126{width:126px!important}.dropdown-options.w-col-127{width:127px!important}.dropdown-options.w-col-128{width:128px!important}.dropdown-options.w-col-129{width:129px!important}.dropdown-options.w-col-130{width:130px!important}.dropdown-options.w-col-131{width:131px!important}.dropdown-options.w-col-132{width:132px!important}.dropdown-options.w-col-133{width:133px!important}.dropdown-options.w-col-134{width:134px!important}.dropdown-options.w-col-135{width:135px!important}.dropdown-options.w-col-136{width:136px!important}.dropdown-options.w-col-137{width:137px!important}.dropdown-options.w-col-138{width:138px!important}.dropdown-options.w-col-139{width:139px!important}.dropdown-options.w-col-140{width:140px!important}.dropdown-options.w-col-141{width:141px!important}.dropdown-options.w-col-142{width:142px!important}.dropdown-options.w-col-143{width:143px!important}.dropdown-options.w-col-144{width:144px!important}.dropdown-options.w-col-145{width:145px!important}.dropdown-options.w-col-146{width:146px!important}.dropdown-options.w-col-147{width:147px!important}.dropdown-options.w-col-148{width:148px!important}.dropdown-options.w-col-149{width:149px!important}.dropdown-options.w-col-150{width:150px!important}.dropdown-options.w-col-151{width:151px!important}.dropdown-options.w-col-152{width:152px!important}.dropdown-options.w-col-153{width:153px!important}.dropdown-options.w-col-154{width:154px!important}.dropdown-options.w-col-155{width:155px!important}.dropdown-options.w-col-156{width:156px!important}.dropdown-options.w-col-157{width:157px!important}.dropdown-options.w-col-158{width:158px!important}.dropdown-options.w-col-159{width:159px!important}.dropdown-options.w-col-160{width:160px!important}.dropdown-options.w-col-161{width:161px!important}.dropdown-options.w-col-162{width:162px!important}.dropdown-options.w-col-163{width:163px!important}.dropdown-options.w-col-164{width:164px!important}.dropdown-options.w-col-165{width:165px!important}.dropdown-options.w-col-166{width:166px!important}.dropdown-options.w-col-167{width:167px!important}.dropdown-options.w-col-168{width:168px!important}.dropdown-options.w-col-169{width:169px!important}.dropdown-options.w-col-170{width:170px!important}.dropdown-options.w-col-171{width:171px!important}.dropdown-options.w-col-172{width:172px!important}.dropdown-options.w-col-173{width:173px!important}.dropdown-options.w-col-174{width:174px!important}.dropdown-options.w-col-175{width:175px!important}.dropdown-options.w-col-176{width:176px!important}.dropdown-options.w-col-177{width:177px!important}.dropdown-options.w-col-178{width:178px!important}.dropdown-options.w-col-179{width:179px!important}.dropdown-options.w-col-180{width:180px!important}.dropdown-options.w-col-181{width:181px!important}.dropdown-options.w-col-182{width:182px!important}.dropdown-options.w-col-183{width:183px!important}.dropdown-options.w-col-184{width:184px!important}.dropdown-options.w-col-185{width:185px!important}.dropdown-options.w-col-186{width:186px!important}.dropdown-options.w-col-187{width:187px!important}.dropdown-options.w-col-188{width:188px!important}.dropdown-options.w-col-189{width:189px!important}.dropdown-options.w-col-190{width:190px!important}.dropdown-options.w-col-191{width:191px!important}.dropdown-options.w-col-192{width:192px!important}.dropdown-options.w-col-193{width:193px!important}.dropdown-options.w-col-194{width:194px!important}.dropdown-options.w-col-195{width:195px!important}.dropdown-options.w-col-196{width:196px!important}.dropdown-options.w-col-197{width:197px!important}.dropdown-options.w-col-198{width:198px!important}.dropdown-options.w-col-199{width:199px!important}.dropdown-options.w-col-200{width:200px!important}.dropdown-options.w-col-201{width:201px!important}.dropdown-options.w-col-202{width:202px!important}.dropdown-options.w-col-203{width:203px!important}.dropdown-options.w-col-204{width:204px!important}.dropdown-options.w-col-205{width:205px!important}.dropdown-options.w-col-206{width:206px!important}.dropdown-options.w-col-207{width:207px!important}.dropdown-options.w-col-208{width:208px!important}.dropdown-options.w-col-209{width:209px!important}.dropdown-options.w-col-210{width:210px!important}.dropdown-options.w-col-211{width:211px!important}.dropdown-options.w-col-212{width:212px!important}.dropdown-options.w-col-213{width:213px!important}.dropdown-options.w-col-214{width:214px!important}.dropdown-options.w-col-215{width:215px!important}.dropdown-options.w-col-216{width:216px!important}.dropdown-options.w-col-217{width:217px!important}.dropdown-options.w-col-218{width:218px!important}.dropdown-options.w-col-219{width:219px!important}.dropdown-options.w-col-220{width:220px!important}.dropdown-options.w-col-221{width:221px!important}.dropdown-options.w-col-222{width:222px!important}.dropdown-options.w-col-223{width:223px!important}.dropdown-options.w-col-224{width:224px!important}.dropdown-options.w-col-225{width:225px!important}.dropdown-options.w-col-226{width:226px!important}.dropdown-options.w-col-227{width:227px!important}.dropdown-options.w-col-228{width:228px!important}.dropdown-options.w-col-229{width:229px!important}.dropdown-options.w-col-230{width:230px!important}.dropdown-options.w-col-231{width:231px!important}.dropdown-options.w-col-232{width:232px!important}.dropdown-options.w-col-233{width:233px!important}.dropdown-options.w-col-234{width:234px!important}.dropdown-options.w-col-235{width:235px!important}.dropdown-options.w-col-236{width:236px!important}.dropdown-options.w-col-237{width:237px!important}.dropdown-options.w-col-238{width:238px!important}.dropdown-options.w-col-239{width:239px!important}.dropdown-options.w-col-240{width:240px!important}.dropdown-options.w-col-241{width:241px!important}.dropdown-options.w-col-242{width:242px!important}.dropdown-options.w-col-243{width:243px!important}.dropdown-options.w-col-244{width:244px!important}.dropdown-options.w-col-245{width:245px!important}.dropdown-options.w-col-246{width:246px!important}.dropdown-options.w-col-247{width:247px!important}.dropdown-options.w-col-248{width:248px!important}.dropdown-options.w-col-249{width:249px!important}.dropdown-options.w-col-250{width:250px!important}.dropdown-options.w-col-251{width:251px!important}.dropdown-options.w-col-252{width:252px!important}.dropdown-options.w-col-253{width:253px!important}.dropdown-options.w-col-254{width:254px!important}.dropdown-options.w-col-255{width:255px!important}.dropdown-options.w-col-256{width:256px!important}.dropdown-options.w-col-257{width:257px!important}.dropdown-options.w-col-258{width:258px!important}.dropdown-options.w-col-259{width:259px!important}.dropdown-options.w-col-260{width:260px!important}.dropdown-options.w-col-261{width:261px!important}.dropdown-options.w-col-262{width:262px!important}.dropdown-options.w-col-263{width:263px!important}.dropdown-options.w-col-264{width:264px!important}.dropdown-options.w-col-265{width:265px!important}.dropdown-options.w-col-266{width:266px!important}.dropdown-options.w-col-267{width:267px!important}.dropdown-options.w-col-268{width:268px!important}.dropdown-options.w-col-269{width:269px!important}.dropdown-options.w-col-270{width:270px!important}.dropdown-options.w-col-271{width:271px!important}.dropdown-options.w-col-272{width:272px!important}.dropdown-options.w-col-273{width:273px!important}.dropdown-options.w-col-274{width:274px!important}.dropdown-options.w-col-275{width:275px!important}.dropdown-options.w-col-276{width:276px!important}.dropdown-options.w-col-277{width:277px!important}.dropdown-options.w-col-278{width:278px!important}.dropdown-options.w-col-279{width:279px!important}.dropdown-options.w-col-280{width:280px!important}.dropdown-options.w-col-281{width:281px!important}.dropdown-options.w-col-282{width:282px!important}.dropdown-options.w-col-283{width:283px!important}.dropdown-options.w-col-284{width:284px!important}.dropdown-options.w-col-285{width:285px!important}.dropdown-options.w-col-286{width:286px!important}.dropdown-options.w-col-287{width:287px!important}.dropdown-options.w-col-288{width:288px!important}.dropdown-options.w-col-289{width:289px!important}.dropdown-options.w-col-290{width:290px!important}.dropdown-options.w-col-291{width:291px!important}.dropdown-options.w-col-292{width:292px!important}.dropdown-options.w-col-293{width:293px!important}.dropdown-options.w-col-294{width:294px!important}.dropdown-options.w-col-295{width:295px!important}.dropdown-options.w-col-296{width:296px!important}.dropdown-options.w-col-297{width:297px!important}.dropdown-options.w-col-298{width:298px!important}.dropdown-options.w-col-299{width:299px!important}.dropdown-options.w-col-300{width:300px!important}.dropdown-options.w-col-301{width:301px!important}.dropdown-options.w-col-302{width:302px!important}.dropdown-options.w-col-303{width:303px!important}.dropdown-options.w-col-304{width:304px!important}.dropdown-options.w-col-305{width:305px!important}.dropdown-options.w-col-306{width:306px!important}.dropdown-options.w-col-307{width:307px!important}.dropdown-options.w-col-308{width:308px!important}.dropdown-options.w-col-309{width:309px!important}.dropdown-options.w-col-310{width:310px!important}.dropdown-options.w-col-311{width:311px!important}.dropdown-options.w-col-312{width:312px!important}.dropdown-options.w-col-313{width:313px!important}.dropdown-options.w-col-314{width:314px!important}.dropdown-options.w-col-315{width:315px!important}.dropdown-options.w-col-316{width:316px!important}.dropdown-options.w-col-317{width:317px!important}.dropdown-options.w-col-318{width:318px!important}.dropdown-options.w-col-319{width:319px!important}.dropdown-options.w-col-320{width:320px!important}.dropdown-options.w-col-321{width:321px!important}.dropdown-options.w-col-322{width:322px!important}.dropdown-options.w-col-323{width:323px!important}.dropdown-options.w-col-324{width:324px!important}.dropdown-options.w-col-325{width:325px!important}.dropdown-options.w-col-326{width:326px!important}.dropdown-options.w-col-327{width:327px!important}.dropdown-options.w-col-328{width:328px!important}.dropdown-options.w-col-329{width:329px!important}.dropdown-options.w-col-330{width:330px!important}.dropdown-options.w-col-331{width:331px!important}.dropdown-options.w-col-332{width:332px!important}.dropdown-options.w-col-333{width:333px!important}.dropdown-options.w-col-334{width:334px!important}.dropdown-options.w-col-335{width:335px!important}.dropdown-options.w-col-336{width:336px!important}.dropdown-options.w-col-337{width:337px!important}.dropdown-options.w-col-338{width:338px!important}.dropdown-options.w-col-339{width:339px!important}.dropdown-options.w-col-340{width:340px!important}.dropdown-options.w-col-341{width:341px!important}.dropdown-options.w-col-342{width:342px!important}.dropdown-options.w-col-343{width:343px!important}.dropdown-options.w-col-344{width:344px!important}.dropdown-options.w-col-345{width:345px!important}.dropdown-options.w-col-346{width:346px!important}.dropdown-options.w-col-347{width:347px!important}.dropdown-options.w-col-348{width:348px!important}.dropdown-options.w-col-349{width:349px!important}.dropdown-options.w-col-350{width:350px!important}.dropdown-options.w-col-351{width:351px!important}.dropdown-options.w-col-352{width:352px!important}.dropdown-options.w-col-353{width:353px!important}.dropdown-options.w-col-354{width:354px!important}.dropdown-options.w-col-355{width:355px!important}.dropdown-options.w-col-356{width:356px!important}.dropdown-options.w-col-357{width:357px!important}.dropdown-options.w-col-358{width:358px!important}.dropdown-options.w-col-359{width:359px!important}.dropdown-options.w-col-360{width:360px!important}.dropdown-options.w-col-361{width:361px!important}.dropdown-options.w-col-362{width:362px!important}.dropdown-options.w-col-363{width:363px!important}.dropdown-options.w-col-364{width:364px!important}.dropdown-options.w-col-365{width:365px!important}.dropdown-options.w-col-366{width:366px!important}.dropdown-options.w-col-367{width:367px!important}.dropdown-options.w-col-368{width:368px!important}.dropdown-options.w-col-369{width:369px!important}.dropdown-options.w-col-370{width:370px!important}.dropdown-options.w-col-371{width:371px!important}.dropdown-options.w-col-372{width:372px!important}.dropdown-options.w-col-373{width:373px!important}.dropdown-options.w-col-374{width:374px!important}.dropdown-options.w-col-375{width:375px!important}.dropdown-options.w-col-376{width:376px!important}.dropdown-options.w-col-377{width:377px!important}.dropdown-options.w-col-378{width:378px!important}.dropdown-options.w-col-379{width:379px!important}.dropdown-options.w-col-380{width:380px!important}.dropdown-options.w-col-381{width:381px!important}.dropdown-options.w-col-382{width:382px!important}.dropdown-options.w-col-383{width:383px!important}.dropdown-options.w-col-384{width:384px!important}.dropdown-options.w-col-385{width:385px!important}.dropdown-options.w-col-386{width:386px!important}.dropdown-options.w-col-387{width:387px!important}.dropdown-options.w-col-388{width:388px!important}.dropdown-options.w-col-389{width:389px!important}.dropdown-options.w-col-390{width:390px!important}.dropdown-options.w-col-391{width:391px!important}.dropdown-options.w-col-392{width:392px!important}.dropdown-options.w-col-393{width:393px!important}.dropdown-options.w-col-394{width:394px!important}.dropdown-options.w-col-395{width:395px!important}.dropdown-options.w-col-396{width:396px!important}.dropdown-options.w-col-397{width:397px!important}.dropdown-options.w-col-398{width:398px!important}.dropdown-options.w-col-399{width:399px!important}.dropdown-options.w-col-400{width:400px!important}.dropdown-options.w-col-401{width:401px!important}.dropdown-options.w-col-402{width:402px!important}.dropdown-options.w-col-403{width:403px!important}.dropdown-options.w-col-404{width:404px!important}.dropdown-options.w-col-405{width:405px!important}.dropdown-options.w-col-406{width:406px!important}.dropdown-options.w-col-407{width:407px!important}.dropdown-options.w-col-408{width:408px!important}.dropdown-options.w-col-409{width:409px!important}.dropdown-options.w-col-410{width:410px!important}.dropdown-options.w-col-411{width:411px!important}.dropdown-options.w-col-412{width:412px!important}.dropdown-options.w-col-413{width:413px!important}.dropdown-options.w-col-414{width:414px!important}.dropdown-options.w-col-415{width:415px!important}.dropdown-options.w-col-416{width:416px!important}.dropdown-options.w-col-417{width:417px!important}.dropdown-options.w-col-418{width:418px!important}.dropdown-options.w-col-419{width:419px!important}.dropdown-options.w-col-420{width:420px!important}.dropdown-options.w-col-421{width:421px!important}.dropdown-options.w-col-422{width:422px!important}.dropdown-options.w-col-423{width:423px!important}.dropdown-options.w-col-424{width:424px!important}.dropdown-options.w-col-425{width:425px!important}.dropdown-options.w-col-426{width:426px!important}.dropdown-options.w-col-427{width:427px!important}.dropdown-options.w-col-428{width:428px!important}.dropdown-options.w-col-429{width:429px!important}.dropdown-options.w-col-430{width:430px!important}.dropdown-options.w-col-431{width:431px!important}.dropdown-options.w-col-432{width:432px!important}.dropdown-options.w-col-433{width:433px!important}.dropdown-options.w-col-434{width:434px!important}.dropdown-options.w-col-435{width:435px!important}.dropdown-options.w-col-436{width:436px!important}.dropdown-options.w-col-437{width:437px!important}.dropdown-options.w-col-438{width:438px!important}.dropdown-options.w-col-439{width:439px!important}.dropdown-options.w-col-440{width:440px!important}.dropdown-options.w-col-441{width:441px!important}.dropdown-options.w-col-442{width:442px!important}.dropdown-options.w-col-443{width:443px!important}.dropdown-options.w-col-444{width:444px!important}.dropdown-options.w-col-445{width:445px!important}.dropdown-options.w-col-446{width:446px!important}.dropdown-options.w-col-447{width:447px!important}.dropdown-options.w-col-448{width:448px!important}.dropdown-options.w-col-449{width:449px!important}.dropdown-options.w-col-450{width:450px!important}.dropdown-options.w-col-451{width:451px!important}.dropdown-options.w-col-452{width:452px!important}.dropdown-options.w-col-453{width:453px!important}.dropdown-options.w-col-454{width:454px!important}.dropdown-options.w-col-455{width:455px!important}.dropdown-options.w-col-456{width:456px!important}.dropdown-options.w-col-457{width:457px!important}.dropdown-options.w-col-458{width:458px!important}.dropdown-options.w-col-459{width:459px!important}.dropdown-options.w-col-460{width:460px!important}.dropdown-options.w-col-461{width:461px!important}.dropdown-options.w-col-462{width:462px!important}.dropdown-options.w-col-463{width:463px!important}.dropdown-options.w-col-464{width:464px!important}.dropdown-options.w-col-465{width:465px!important}.dropdown-options.w-col-466{width:466px!important}.dropdown-options.w-col-467{width:467px!important}.dropdown-options.w-col-468{width:468px!important}.dropdown-options.w-col-469{width:469px!important}.dropdown-options.w-col-470{width:470px!important}.dropdown-options.w-col-471{width:471px!important}.dropdown-options.w-col-472{width:472px!important}.dropdown-options.w-col-473{width:473px!important}.dropdown-options.w-col-474{width:474px!important}.dropdown-options.w-col-475{width:475px!important}.dropdown-options.w-col-476{width:476px!important}.dropdown-options.w-col-477{width:477px!important}.dropdown-options.w-col-478{width:478px!important}.dropdown-options.w-col-479{width:479px!important}.dropdown-options.w-col-480{width:480px!important}.dropdown-options.w-col-481{width:481px!important}.dropdown-options.w-col-482{width:482px!important}.dropdown-options.w-col-483{width:483px!important}.dropdown-options.w-col-484{width:484px!important}.dropdown-options.w-col-485{width:485px!important}.dropdown-options.w-col-486{width:486px!important}.dropdown-options.w-col-487{width:487px!important}.dropdown-options.w-col-488{width:488px!important}.dropdown-options.w-col-489{width:489px!important}.dropdown-options.w-col-490{width:490px!important}.dropdown-options.w-col-491{width:491px!important}.dropdown-options.w-col-492{width:492px!important}.dropdown-options.w-col-493{width:493px!important}.dropdown-options.w-col-494{width:494px!important}.dropdown-options.w-col-495{width:495px!important}.dropdown-options.w-col-496{width:496px!important}.dropdown-options.w-col-497{width:497px!important}.dropdown-options.w-col-498{width:498px!important}.dropdown-options.w-col-499{width:499px!important}.dropdown-options.w-col-500{width:500px!important}.dropdown-options.w-col-501{width:501px!important}.dropdown-options.w-col-502{width:502px!important}.dropdown-options.w-col-503{width:503px!important}.dropdown-options.w-col-504{width:504px!important}.dropdown-options.w-col-505{width:505px!important}.dropdown-options.w-col-506{width:506px!important}.dropdown-options.w-col-507{width:507px!important}.dropdown-options.w-col-508{width:508px!important}.dropdown-options.w-col-509{width:509px!important}.dropdown-options.w-col-510{width:510px!important}.dropdown-options.w-col-511{width:511px!important}.dropdown-options.w-col-512{width:512px!important}.dropdown-options.w-col-513{width:513px!important}.dropdown-options.w-col-514{width:514px!important}.dropdown-options.w-col-515{width:515px!important}.dropdown-options.w-col-516{width:516px!important}.dropdown-options.w-col-517{width:517px!important}.dropdown-options.w-col-518{width:518px!important}.dropdown-options.w-col-519{width:519px!important}.dropdown-options.w-col-520{width:520px!important}.dropdown-options.w-col-521{width:521px!important}.dropdown-options.w-col-522{width:522px!important}.dropdown-options.w-col-523{width:523px!important}.dropdown-options.w-col-524{width:524px!important}.dropdown-options.w-col-525{width:525px!important}.dropdown-options.w-col-526{width:526px!important}.dropdown-options.w-col-527{width:527px!important}.dropdown-options.w-col-528{width:528px!important}.dropdown-options.w-col-529{width:529px!important}.dropdown-options.w-col-530{width:530px!important}.dropdown-options.w-col-531{width:531px!important}.dropdown-options.w-col-532{width:532px!important}.dropdown-options.w-col-533{width:533px!important}.dropdown-options.w-col-534{width:534px!important}.dropdown-options.w-col-535{width:535px!important}.dropdown-options.w-col-536{width:536px!important}.dropdown-options.w-col-537{width:537px!important}.dropdown-options.w-col-538{width:538px!important}.dropdown-options.w-col-539{width:539px!important}.dropdown-options.w-col-540{width:540px!important}.dropdown-options.w-col-541{width:541px!important}.dropdown-options.w-col-542{width:542px!important}.dropdown-options.w-col-543{width:543px!important}.dropdown-options.w-col-544{width:544px!important}.dropdown-options.w-col-545{width:545px!important}.dropdown-options.w-col-546{width:546px!important}.dropdown-options.w-col-547{width:547px!important}.dropdown-options.w-col-548{width:548px!important}.dropdown-options.w-col-549{width:549px!important}.dropdown-options.w-col-550{width:550px!important}.dropdown-options.w-col-551{width:551px!important}.dropdown-options.w-col-552{width:552px!important}.dropdown-options.w-col-553{width:553px!important}.dropdown-options.w-col-554{width:554px!important}.dropdown-options.w-col-555{width:555px!important}.dropdown-options.w-col-556{width:556px!important}.dropdown-options.w-col-557{width:557px!important}.dropdown-options.w-col-558{width:558px!important}.dropdown-options.w-col-559{width:559px!important}.dropdown-options.w-col-560{width:560px!important}.dropdown-options.w-col-561{width:561px!important}.dropdown-options.w-col-562{width:562px!important}.dropdown-options.w-col-563{width:563px!important}.dropdown-options.w-col-564{width:564px!important}.dropdown-options.w-col-565{width:565px!important}.dropdown-options.w-col-566{width:566px!important}.dropdown-options.w-col-567{width:567px!important}.dropdown-options.w-col-568{width:568px!important}.dropdown-options.w-col-569{width:569px!important}.dropdown-options.w-col-570{width:570px!important}.dropdown-options.w-col-571{width:571px!important}.dropdown-options.w-col-572{width:572px!important}.dropdown-options.w-col-573{width:573px!important}.dropdown-options.w-col-574{width:574px!important}.dropdown-options.w-col-575{width:575px!important}.dropdown-options.w-col-576{width:576px!important}.dropdown-options.w-col-577{width:577px!important}.dropdown-options.w-col-578{width:578px!important}.dropdown-options.w-col-579{width:579px!important}.dropdown-options.w-col-580{width:580px!important}.dropdown-options.w-col-581{width:581px!important}.dropdown-options.w-col-582{width:582px!important}.dropdown-options.w-col-583{width:583px!important}.dropdown-options.w-col-584{width:584px!important}.dropdown-options.w-col-585{width:585px!important}.dropdown-options.w-col-586{width:586px!important}.dropdown-options.w-col-587{width:587px!important}.dropdown-options.w-col-588{width:588px!important}.dropdown-options.w-col-589{width:589px!important}.dropdown-options.w-col-590{width:590px!important}.dropdown-options.w-col-591{width:591px!important}.dropdown-options.w-col-592{width:592px!important}.dropdown-options.w-col-593{width:593px!important}.dropdown-options.w-col-594{width:594px!important}.dropdown-options.w-col-595{width:595px!important}.dropdown-options.w-col-596{width:596px!important}.dropdown-options.w-col-597{width:597px!important}.dropdown-options.w-col-598{width:598px!important}.dropdown-options.w-col-599{width:599px!important}.dropdown-options.w-col-600{width:600px!important}.dropdown-options.w-col-601{width:601px!important}.dropdown-options.w-col-602{width:602px!important}.dropdown-options.w-col-603{width:603px!important}.dropdown-options.w-col-604{width:604px!important}.dropdown-options.w-col-605{width:605px!important}.dropdown-options.w-col-606{width:606px!important}.dropdown-options.w-col-607{width:607px!important}.dropdown-options.w-col-608{width:608px!important}.dropdown-options.w-col-609{width:609px!important}.dropdown-options.w-col-610{width:610px!important}.dropdown-options.w-col-611{width:611px!important}.dropdown-options.w-col-612{width:612px!important}.dropdown-options.w-col-613{width:613px!important}.dropdown-options.w-col-614{width:614px!important}.dropdown-options.w-col-615{width:615px!important}.dropdown-options.w-col-616{width:616px!important}.dropdown-options.w-col-617{width:617px!important}.dropdown-options.w-col-618{width:618px!important}.dropdown-options.w-col-619{width:619px!important}.dropdown-options.w-col-620{width:620px!important}.dropdown-options.w-col-621{width:621px!important}.dropdown-options.w-col-622{width:622px!important}.dropdown-options.w-col-623{width:623px!important}.dropdown-options.w-col-624{width:624px!important}.dropdown-options.w-col-625{width:625px!important}.dropdown-options.w-col-626{width:626px!important}.dropdown-options.w-col-627{width:627px!important}.dropdown-options.w-col-628{width:628px!important}.dropdown-options.w-col-629{width:629px!important}.dropdown-options.w-col-630{width:630px!important}.dropdown-options.w-col-631{width:631px!important}.dropdown-options.w-col-632{width:632px!important}.dropdown-options.w-col-633{width:633px!important}.dropdown-options.w-col-634{width:634px!important}.dropdown-options.w-col-635{width:635px!important}.dropdown-options.w-col-636{width:636px!important}.dropdown-options.w-col-637{width:637px!important}.dropdown-options.w-col-638{width:638px!important}.dropdown-options.w-col-639{width:639px!important}.dropdown-options.w-col-640{width:640px!important}.dropdown-options.w-col-641{width:641px!important}.dropdown-options.w-col-642{width:642px!important}.dropdown-options.w-col-643{width:643px!important}.dropdown-options.w-col-644{width:644px!important}.dropdown-options.w-col-645{width:645px!important}.dropdown-options.w-col-646{width:646px!important}.dropdown-options.w-col-647{width:647px!important}.dropdown-options.w-col-648{width:648px!important}.dropdown-options.w-col-649{width:649px!important}.dropdown-options.w-col-650{width:650px!important}.dropdown-options.w-col-651{width:651px!important}.dropdown-options.w-col-652{width:652px!important}.dropdown-options.w-col-653{width:653px!important}.dropdown-options.w-col-654{width:654px!important}.dropdown-options.w-col-655{width:655px!important}.dropdown-options.w-col-656{width:656px!important}.dropdown-options.w-col-657{width:657px!important}.dropdown-options.w-col-658{width:658px!important}.dropdown-options.w-col-659{width:659px!important}.dropdown-options.w-col-660{width:660px!important}.dropdown-options.w-col-661{width:661px!important}.dropdown-options.w-col-662{width:662px!important}.dropdown-options.w-col-663{width:663px!important}.dropdown-options.w-col-664{width:664px!important}.dropdown-options.w-col-665{width:665px!important}.dropdown-options.w-col-666{width:666px!important}.dropdown-options.w-col-667{width:667px!important}.dropdown-options.w-col-668{width:668px!important}.dropdown-options.w-col-669{width:669px!important}.dropdown-options.w-col-670{width:670px!important}.dropdown-options.w-col-671{width:671px!important}.dropdown-options.w-col-672{width:672px!important}.dropdown-options.w-col-673{width:673px!important}.dropdown-options.w-col-674{width:674px!important}.dropdown-options.w-col-675{width:675px!important}.dropdown-options.w-col-676{width:676px!important}.dropdown-options.w-col-677{width:677px!important}.dropdown-options.w-col-678{width:678px!important}.dropdown-options.w-col-679{width:679px!important}.dropdown-options.w-col-680{width:680px!important}.dropdown-options.w-col-681{width:681px!important}.dropdown-options.w-col-682{width:682px!important}.dropdown-options.w-col-683{width:683px!important}.dropdown-options.w-col-684{width:684px!important}.dropdown-options.w-col-685{width:685px!important}.dropdown-options.w-col-686{width:686px!important}.dropdown-options.w-col-687{width:687px!important}.dropdown-options.w-col-688{width:688px!important}.dropdown-options.w-col-689{width:689px!important}.dropdown-options.w-col-690{width:690px!important}.dropdown-options.w-col-691{width:691px!important}.dropdown-options.w-col-692{width:692px!important}.dropdown-options.w-col-693{width:693px!important}.dropdown-options.w-col-694{width:694px!important}.dropdown-options.w-col-695{width:695px!important}.dropdown-options.w-col-696{width:696px!important}.dropdown-options.w-col-697{width:697px!important}.dropdown-options.w-col-698{width:698px!important}.dropdown-options.w-col-699{width:699px!important}.dropdown-options.w-col-700{width:700px!important}.dropdown-options.w-col-701{width:701px!important}.dropdown-options.w-col-702{width:702px!important}.dropdown-options.w-col-703{width:703px!important}.dropdown-options.w-col-704{width:704px!important}.dropdown-options.w-col-705{width:705px!important}.dropdown-options.w-col-706{width:706px!important}.dropdown-options.w-col-707{width:707px!important}.dropdown-options.w-col-708{width:708px!important}.dropdown-options.w-col-709{width:709px!important}.dropdown-options.w-col-710{width:710px!important}.dropdown-options.w-col-711{width:711px!important}.dropdown-options.w-col-712{width:712px!important}.dropdown-options.w-col-713{width:713px!important}.dropdown-options.w-col-714{width:714px!important}.dropdown-options.w-col-715{width:715px!important}.dropdown-options.w-col-716{width:716px!important}.dropdown-options.w-col-717{width:717px!important}.dropdown-options.w-col-718{width:718px!important}.dropdown-options.w-col-719{width:719px!important}.dropdown-options.w-col-720{width:720px!important}.dropdown-options.w-col-721{width:721px!important}.dropdown-options.w-col-722{width:722px!important}.dropdown-options.w-col-723{width:723px!important}.dropdown-options.w-col-724{width:724px!important}.dropdown-options.w-col-725{width:725px!important}.dropdown-options.w-col-726{width:726px!important}.dropdown-options.w-col-727{width:727px!important}.dropdown-options.w-col-728{width:728px!important}.dropdown-options.w-col-729{width:729px!important}.dropdown-options.w-col-730{width:730px!important}.dropdown-options.w-col-731{width:731px!important}.dropdown-options.w-col-732{width:732px!important}.dropdown-options.w-col-733{width:733px!important}.dropdown-options.w-col-734{width:734px!important}.dropdown-options.w-col-735{width:735px!important}.dropdown-options.w-col-736{width:736px!important}.dropdown-options.w-col-737{width:737px!important}.dropdown-options.w-col-738{width:738px!important}.dropdown-options.w-col-739{width:739px!important}.dropdown-options.w-col-740{width:740px!important}.dropdown-options.w-col-741{width:741px!important}.dropdown-options.w-col-742{width:742px!important}.dropdown-options.w-col-743{width:743px!important}.dropdown-options.w-col-744{width:744px!important}.dropdown-options.w-col-745{width:745px!important}.dropdown-options.w-col-746{width:746px!important}.dropdown-options.w-col-747{width:747px!important}.dropdown-options.w-col-748{width:748px!important}.dropdown-options.w-col-749{width:749px!important}.dropdown-options.w-col-750{width:750px!important}.dropdown-options.w-col-751{width:751px!important}.dropdown-options.w-col-752{width:752px!important}.dropdown-options.w-col-753{width:753px!important}.dropdown-options.w-col-754{width:754px!important}.dropdown-options.w-col-755{width:755px!important}.dropdown-options.w-col-756{width:756px!important}.dropdown-options.w-col-757{width:757px!important}.dropdown-options.w-col-758{width:758px!important}.dropdown-options.w-col-759{width:759px!important}.dropdown-options.w-col-760{width:760px!important}.dropdown-options.w-col-761{width:761px!important}.dropdown-options.w-col-762{width:762px!important}.dropdown-options.w-col-763{width:763px!important}.dropdown-options.w-col-764{width:764px!important}.dropdown-options.w-col-765{width:765px!important}.dropdown-options.w-col-766{width:766px!important}.dropdown-options.w-col-767{width:767px!important}.dropdown-options.w-col-768{width:768px!important}.dropdown-options.w-col-769{width:769px!important}.dropdown-options.w-col-770{width:770px!important}.dropdown-options.w-col-771{width:771px!important}.dropdown-options.w-col-772{width:772px!important}.dropdown-options.w-col-773{width:773px!important}.dropdown-options.w-col-774{width:774px!important}.dropdown-options.w-col-775{width:775px!important}.dropdown-options.w-col-776{width:776px!important}.dropdown-options.w-col-777{width:777px!important}.dropdown-options.w-col-778{width:778px!important}.dropdown-options.w-col-779{width:779px!important}.dropdown-options.w-col-780{width:780px!important}.dropdown-options.w-col-781{width:781px!important}.dropdown-options.w-col-782{width:782px!important}.dropdown-options.w-col-783{width:783px!important}.dropdown-options.w-col-784{width:784px!important}.dropdown-options.w-col-785{width:785px!important}.dropdown-options.w-col-786{width:786px!important}.dropdown-options.w-col-787{width:787px!important}.dropdown-options.w-col-788{width:788px!important}.dropdown-options.w-col-789{width:789px!important}.dropdown-options.w-col-790{width:790px!important}.dropdown-options.w-col-791{width:791px!important}.dropdown-options.w-col-792{width:792px!important}.dropdown-options.w-col-793{width:793px!important}.dropdown-options.w-col-794{width:794px!important}.dropdown-options.w-col-795{width:795px!important}.dropdown-options.w-col-796{width:796px!important}.dropdown-options.w-col-797{width:797px!important}.dropdown-options.w-col-798{width:798px!important}.dropdown-options.w-col-799{width:799px!important}.dropdown-options.w-col-800{width:800px!important}.dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;padding-right:0}.dropdown-options.scroll::-webkit-scrollbar{width:3px}.dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.dropdown-options-fuel-franchise{padding:4px;max-height:300px}.dropdown-options.no-result-container{padding:6px 10px!important}.dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.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,.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,.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,.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}.dropdown-options:not(.dropdown_value) .dropdown-option{color:#fff}.dropdown-options .dropdown-option{padding:0;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0;font-weight:700}.dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#fff;font-size:14px;line-height:18px}.dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#fff;font-size:14px;line-height:18px}.dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.dropdown-options .dropdown-option:hover{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.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}.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}.dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.dropdown-options .dropdown-option.no-result div{padding-top:1px}.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}.dropdown-options .dropdown-option.add-new:hover{color:#fff;background:#3b73ed66}.dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.dropdown-options .dropdown-option.all-assigned .details-template-text,.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}.dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.dropdown-options .dropdown-option.active-label .labels-template-counter,.dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.dropdown-options .dropdown-option.active,.dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.dropdown-options .dropdown-option.active .highlight-text-45632,.dropdown-options .dropdown-option.active-label .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.active .highlight-text-45632:hover,.dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.dropdown-options .dropdown-option.active:not(.payroll-trucks):after,.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}.dropdown-options .dropdown-option.active-label:after{right:35px}.dropdown-options .dropdown-option.last-active{position:relative}.dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.dropdown-options .dropdown-option .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.svg-text-template,.dropdown-options .dropdown-option .svg-text-template{display:flex;align-items:center}.dropdown-options .dropdown-option.svg-text-template.container,.dropdown-options .dropdown-option .svg-text-template.container{padding:0!important}.dropdown-options .dropdown-option.svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text,.dropdown-options .dropdown-option .svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text{padding-left:25px}.dropdown-options .dropdown-option.svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text:after,.dropdown-options .dropdown-option .svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text:after{position:absolute;content:url(/assets/ca-components/svg/common/trailers/ic_hazardous.svg);width:14px;height:10px;left:0}.dropdown-options .dropdown-option.svg-text-template.hazardous,.dropdown-options .dropdown-option .svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.dropdown-options .dropdown-option.svg-text-template.hazardous svg,.dropdown-options .dropdown-option .svg-text-template.hazardous svg{margin-right:5px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo,.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}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px;padding:0!important}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.radiator svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.turbo svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.alignment svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.accompressor svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.aircompressor svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.fuelpump svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.waterpump svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.oilpump svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.brakechamber svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.battery svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-text{position:relative}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-text.truck-text{top:1px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-text.flex-1{flex:1}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text,.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}.dropdown-options .dropdown-option.svg-text-template .colors,.dropdown-options .dropdown-option .svg-text-template .colors{height:18px;width:18px}.dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo,.dropdown-options .dropdown-option .svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text,.dropdown-options .dropdown-option .svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.dropdown-options .dropdown-option.labels-template,.dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.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}.dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.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}.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}.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}.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}.dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.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}.dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.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}.dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.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}.dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.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}.dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.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}.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}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.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}.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}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.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}.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}.dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.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}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.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}.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}.dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.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}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::-moz-selection{background-color:#ccc3!important;color:#ccc6!important}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.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;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.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}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.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}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-option-hovered{border-radius:2px;background-color:#1d1d1d}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-option-hovered .dropdown-subgroup-text{color:#fff!important}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options.selected-option{padding:0 4px}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options.selected-option .dropdown-subgroup-additional-text{padding-right:40px!important}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:not(.selected-option) .dropdown-subgroup-text{color:#fff}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:not(.selected-option) .dropdown-subgroup-additional-text.active{color:#6f9ee0}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.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}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.dropdown-options.svgtext-dispatch-template{top:-4px}.dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.load-dispatcher-template{display:flex;align-items:center;gap:6px}.load-shipper-template{display:grid;grid-template-columns:1fr 1fr;align-items:center;padding-right:5px}.load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.load-shipper-template .load-shipper-status-text.in-option{height:22px}.load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.load-shipper-template div:nth-child(2),.load-shipper-template div:nth-child(3){text-align:right}.load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400;white-space:nowrap;max-width:100%;text-overflow:ellipsis;overflow:hidden}.load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.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}.load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.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}.load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;-moz-column-gap:29px;column-gap:29px}.load-broker-template.in-option{height:26px}.load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:26px}.load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.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}.load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.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}.load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.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}.load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.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}.load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.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}.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}.load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.load-dispatches-ttd-template.active .load-dispatch-driver-rate,.load-dispatches-ttd-template.active .load-dispatch-driver,.load-dispatches-ttd-template.active .load-dispatch-truck,.load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.application-dropdown{position:relative}.application-dropdown .dropdown_value{position:absolute;color:#2f2f2f!important;z-index:9;padding:0 0 0 10px;font-size:14px;line-height:26px;pointer-events:none}.application-dropdown .dropdown_value.open{color:#fff;font-weight:400;opacity:.7}.application-dropdown .dropdown_value.leftIcon{padding-left:37px;line-height:26px}.application-dropdown .dropdown_value.dropdown-value-right-side{text-align:right;padding-right:30px}.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-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .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-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .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-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .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-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-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-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-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:
588
588
  // Module
589
589
  CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: 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.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: i4.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "component", type:
590
590
  // Component
@@ -634,7 +634,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
634
634
  InputDropdownMultiselectClassPipe,
635
635
  DropdownOptionsPipe,
636
636
  InputDropdownGetIconsPipe,
637
- ], 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 (\n multiselectItems.length &&\n !inputConfig.isDisabled &&\n !getSuperControl?.disabled\n ) {\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 (\n !inputConfig.isDisabled && !getSuperControl?.disabled\n ) {\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 @if (!searchInputText.value) {\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 <div\n [class.open]=\"isDropDownIsOpen\"\n [class.leftIcon]=\"inputConfig.placeholderIcon\"\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 'svgtext-dispatch-template':\n _template == 'svgtext-dispatch-template',\n 'dropdown-value-right-side': inputConfig.placeholderIconRightSide\n }\"\n class=\"dropdown_value dropdown-options {{\n inputConfig.dropdownWidthClass\n }}\"\n >\n @switch (_template) {\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHES_TTD) {\n @if (activeItem) {\n <div class=\"dropdown-option dropdown-double-column\">\n <app-ca-input-dropdown-load-dispatches-ttd-item\n [index]=\"0\"\n [searchText]=\"searchInputText.value || ''\"\n [activeItem]=\"activeItem\"\n [option]=\"activeItem!\"\n [label]=\"label\"\n >\n </app-ca-input-dropdown-load-dispatches-ttd-item>\n </div>\n }\n }\n @case (dropdownTemplateTypeEnum.LOAD_BROKER) {\n @if (activeItem) {\n <app-ca-input-dropdown-load-broker-item\n [option]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [isInOption]=\"true\"\n [label]=\"label\"\n ></app-ca-input-dropdown-load-broker-item>\n }\n }\n\n @case (dropdownTemplateTypeEnum.LOAD_SHIPPER) {\n @if (activeItem) {\n <app-ca-input-dropdown-load-shipper-item\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [option]=\"activeItem\"\n [isInOption]=\"true\"\n [label]=\"label\"\n ></app-ca-input-dropdown-load-shipper-item>\n }\n }\n\n @case (dropdownTemplateTypeEnum.LOAD_BROKER_CONTACT) {\n @if (activeItem) {\n <div class=\"load-broker-contact-groups\">\n <ca-input-dropdown-load-broker-contact-item\n [activeItem]=\"activeItem\"\n [item]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [isInOption]=\"true\"\n ></ca-input-dropdown-load-broker-contact-item>\n </div>\n }\n }\n\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHER) {\n @if (activeItem) {\n <app-ca-input-dropdown-load-dispatcher-item\n [option]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [activeItem]=\"activeItem\"\n [label]=\"label\"\n [dropdownWithImage]=\"\n inputConfig.dropdownImageInput\n \"\n [isInOption]=\"true\"\n >\n </app-ca-input-dropdown-load-dispatcher-item>\n }\n }\n\n @default {\n <!-- Special Dropdown Selected SVG with or Without Text -->\n @if (inputConfig.dropdownImageInput && activeItem) {\n <svg-icon\n [src]=\"\n inputConfig.dropdownImageInput!\n | inputDropdownGetIcons: activeItem\n \"\n class=\"dropdown-selected-image {{\n inputConfig.dropdownImageInput?.class\n }}\"\n [ngClass]=\"{\n 'unset-color':\n inputConfig.dropdownImageInput?.class,\n }\"\n [svgStyle]=\"{\n fill: inputConfig.dropdownImageInput\n ? activeItem?.code\n : '#ffffff',\n }\"\n >\n </svg-icon>\n }\n\n @if (\n inputConfig.dropdownImageInput?.withText ||\n !inputConfig.dropdownImageInput\n ) {\n {{ dropdownValue }}\n }\n }\n }\n </div>\n }\n\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 [parentControl]=\"getSuperControl\"\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 !getSuperControl?.disabled) ||\n ((inputConfig?.name == 'Address' ||\n inputConfig?.name == 'RoutingAddress') &&\n !inputConfig.isDisabled &&\n !getSuperControl?.disabled &&\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [dropdownWithImage]=\"inputConfig.dropdownImageInput\"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [sort]=\"_sort\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n ></app-ca-input-dropdown-groups>\n }\n\n <!--------------------------- Multiselect Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.MULTISELECT) {\n <app-ca-input-dropdown-multiselect\n #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [lastActiveMultiselectItem]=\"lastActiveMultiselectItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onMultiselectSelect)=\"onMultiselectSelect($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n ></app-ca-input-dropdown-multiselect>\n }\n <!--------------------------- Labels Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LABELS) {\n <app-ca-input-dropdown-labels\n #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [inputConfig]=\"inputConfig\"\n [labelMode]=\"labelMode\"\n [canAddNew]=\"_canAddNew\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n ></app-ca-input-dropdown-labels>\n }\n\n <!--------------------------- Dispatch Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.DISPATCH) {\n <app-ca-input-dropdown-dispatch\n #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n [inputConfig]=\"inputConfig\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n (toggleNestedList)=\"toggleNestedList($event)\"\n (onActiveItemGroup)=\"onActiveItemGroup($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [inputConfig]=\"inputConfig\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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}.load-pickup-delivery-popover{top:-34px!important;max-width:400px!important}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#fff}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#fff}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#fff}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.dropdown-menu-popover.bs-popover-end-top .dropdown-container{transform:translate(-4px,-3px)}.dropdown-menu-popover.bs-popover-bottom-end .dropdown-container{transform:translate(3px,-3px)}.dropdown-menu-popover.bs-popover-end-bottom .dropdown-container{transform:translate(-3px,3px)}.dropdown-menu-popover.bs-popover-top-end .dropdown-container{transform:translate(3px,3px)}.dropdown-details-title-card-popover .dropdown-container{transform:translateY(-4px)}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background-color:#42424233!important;color:#424242!important}.text-color-black::selection{background-color:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-muted::selection{background-color:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green-2{color:#259f94!important}.text-color-green-2::-moz-selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-2::selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-blue-5{color:#3074d3!important}.text-color-blue-5::-moz-selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-5::selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-13::selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-16{color:#e9effd!important}.text-color-blue-16::-moz-selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-16::selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-11{color:#df3c3c!important}.text-color-red-11::-moz-selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-11::selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-yellow{color:#fab15c!important}.text-color-yellow::-moz-selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-yellow::selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-purple{color:#b370f0!important}.text-color-purple::-moz-selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-purple::selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-special-filter-purple{color:#9e47ec!important}.text-color-special-filter-purple::-moz-selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-special-filter-purple::selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-grey-9{color:#b7b7b7!important}.text-color-grey-9::-moz-selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-grey-9::selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{background-color:#ccc3!important;color:#ccc!important}.text-color-light-grey-6::selection{background-color:#ccc3!important;color:#ccc!important}.text-color-white{color:#fff!important}.text-color-white::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-white-4::selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw6-2::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{background-color:#dadada33!important;color:#dadada!important}.text-color-bw-9::selection{background-color:#dadada33!important;color:#dadada!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey::selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{background-color:#91919133!important;color:#919191!important}.text-color-orange-1{color:#ff7043!important}.text-color-orange-1::-moz-selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-1::selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-2{color:#f77d3b!important}.text-color-orange-2::-moz-selection{background-color:#f77d3b33!important;color:#f77d3b!important}.text-color-orange-2::selection{background-color:#f77d3b33!important;color:#f77d3b!important}.text-color-orange-3{color:#ffb097!important}.text-color-orange-3::-moz-selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-orange-3::selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-brown-1{color:#865e3a!important}.text-color-brown-1::-moz-selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-brown-1::selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-light-blue-2{color:#1ab5e6!important}.text-color-light-blue-2::-moz-selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-color-light-blue-2::selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-hover-white{transition:color .3s ease-in-out ease-in-out}.text-hover-white:hover{color:#fff!important}.text-hover-black{transition:color .3s ease-in-out ease-in-out}.text-hover-black:hover{color:#424242!important}.text-hover-blue-15{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-15:hover{color:#0b49d1!important}.text-hover-blue-18{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-18:hover{color:#3b73ed!important}.text-hover-bw6-2{transition:color .3s ease-in-out ease-in-out}.text-hover-bw6-2:hover{color:#6c6c6c!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-20{font-size:20px!important;line-height:24px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.font-size-11{font-size:11px!important}.line-height-12{line-height:12px!important}.svg-fill-black svg path,.svg-fill-black svg circle{fill:#424242!important}.svg-fill-black-2 svg path,.svg-fill-black-2 svg circle{fill:#2f2f2f!important}.svg-fill-black-9 svg path,.svg-fill-black-9 svg circle{fill:#1d1d1d!important}.svg-fill-white svg path,.svg-fill-white svg circle{fill:#fff!important}.svg-fill-white-2 svg path,.svg-fill-white-2 svg circle{fill:#fff!important}.svg-fill-muted svg path,.svg-fill-muted svg circle{fill:#919191!important}.svg-fill-bw6-2 svg path,.svg-fill-bw6-2 svg circle{fill:#6c6c6c!important}.svg-fill-bw-9 svg path,.svg-fill-bw-9 svg circle{fill:#dadada!important}.svg-fill-light-grey-2 svg path,.svg-fill-light-grey-2 svg circle{fill:#aaa!important}.svg-fill-light-grey-6 svg path,.svg-fill-light-grey-6 svg circle{fill:#ccc!important}.svg-fill-blue-8 svg path,.svg-fill-blue-8 svg circle{fill:#6692f1!important}.svg-fill-blue-13 svg path,.svg-fill-blue-13 svg circle{fill:#6692f1!important}.svg-fill-blue-14 svg path,.svg-fill-blue-14 svg circle{fill:#3b73ed!important}.svg-fill-blue-17 svg path,.svg-fill-blue-17 svg circle{fill:#bed0f9!important}.svg-fill-blue-19 svg path,.svg-fill-blue-19 svg circle{fill:#92b1f5!important}.svg-fill-blue-26 svg path,.svg-fill-blue-26 svg circle{fill:#4dc5eb!important}.svg-fill-green svg path,.svg-fill-green svg circle{fill:#56b4ac!important}.svg-fill-green-2 svg path,.svg-fill-green-2 svg circle{fill:#259f94!important}.svg-fill-green-4 svg path,.svg-fill-green-4 svg circle{fill:#86c9c3!important}.svg-fill-green-6 svg path,.svg-fill-green-6 svg circle{fill:#77bf56!important}.svg-fill-yellow-1 svg path,.svg-fill-yellow-1 svg circle{fill:#fab15c!important}.svg-fill-yellow-4 svg path,.svg-fill-yellow-4 svg circle{fill:#fbc88b!important}.svg-fill-yellow-5 svg path,.svg-fill-yellow-5 svg circle{fill:#f89b2e!important}.svg-fill-yellow-8 svg path,.svg-fill-yellow-8 svg circle{fill:#daad4f!important}.svg-fill-white-4 svg path,.svg-fill-white-4 svg circle{fill:#ffffffb2!important}.svg-fill-grey svg path,.svg-fill-grey svg circle{fill:#919191!important}.svg-fill-red-10 svg path,.svg-fill-red-10 svg circle{fill:#e66767!important}.svg-fill-red-11 svg path,.svg-fill-red-11 svg circle{fill:#df3c3c!important}.svg-fill-red-13 svg path,.svg-fill-red-13 svg circle{fill:#ed9292!important}.svg-fill-red-14 svg path,.svg-fill-red-14 svg circle{fill:#c20c0c!important}.svg-fill-red-15 svg path,.svg-fill-red-15 svg circle{fill:#f4bebe!important}.svg-fill-red-18 svg path,.svg-fill-red-18 svg circle{fill:#e668a0!important}.svg-fill-orange-4 svg path,.svg-fill-orange-4 svg circle{fill:#ff906d!important}.svg-fill-brown svg path,.svg-fill-brown svg circle{fill:#865e3a!important}.svg-fill-purple-4 svg path,.svg-fill-purple-4 svg circle{fill:#9e47ec!important}.svg-hover-white svg path{transition:fill .3s ease-in-out}.svg-hover-white:hover svg path{fill:#fff!important}.svg-hover-white-2 svg path{transition:fill .3s ease-in-out}.svg-hover-white-2:hover svg path{fill:#fff!important}.svg-hover-muted svg path{transition:fill .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-grey-4 svg path{transition:fill .3s ease-in-out}.svg-hover-grey-4:hover svg path{fill:#ccc!important}.svg-hover-black svg path{transition:fill .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-9 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-9:hover svg path{fill:#0b49d1!important}.svg-hover-blue-10 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-10:hover svg path{fill:#6f9ee033!important}.svg-hover-blue-15 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-blue-17 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-17:hover svg path{fill:#bed0f9!important}.svg-hover-blue-19 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-19:hover svg path{fill:#92b1f5!important}.svg-hover-bw6-2 svg path{transition:fill .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-bw-9 svg path{transition:fill .3s ease-in-out}.svg-hover-bw-9:hover svg path{fill:#dadada!important}.svg-hover-trash-red svg path{transition:fill .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:fill .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-6 svg{width:6px;height:6px}.svg-size-7 svg{width:7px;height:7px}.svg-size-10 svg{width:10px;height:10px}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-17 svg{width:17px;height:17px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-23 svg{width:23px;height:23px}.svg-size-26 svg{width:26px;height:26px}.svg-size-30-26 svg{width:30px;height:26px}.svg-size-44-16 svg{width:44px;height:16px}.svg-size-90 svg{width:90px;height:90px}.background-transparent{background-color:transparent}.background-white{background-color:#fff}.background-black{background-color:#424242}.background-black-2{background-color:#2f2f2f}.background-black-3{background-color:#1d1d1d}.background-gray{background-color:#e5e5e5}.background-gray-2{background-color:#6c6c6c}.background-gray-12{background-color:#eee}.background-light-gray-2{background-color:#aaa}.background-light-gray-6{background-color:#ccc}.background-light-gray-7{background-color:#fbfbfb}.background-grey{background-color:#919191}.background-blue-5{background-color:#3074d3}.background-blue-13{background-color:#6692f1}.background-blue-14,.background-blue-18{background-color:#3b73ed}.background-blue-19{background-color:#92b1f5}.background-blue-20{background-color:#3b73ed33}.background-green-0{background-color:#56b4ac}.background-green-2{background-color:#259f94}.background-green-3{background-color:#b6dfdb}.background-green-4,.background-green-6{background-color:#86c9c3}.background-dark-2{background-color:#91919133}.background-red-19{background-color:#df3d85}.background-purple-4{background-color:#9e47ec}.background-gold-bold{background-color:#cf961d}.background-gold-subtle{background-color:#e4c481}.background-orange-3{background-color:#ffb097}.background-orange-4{background-color:#ff906d}.background-orange-7{background-color:#ffcfc0}.background-yellow-8{background-color:#daad4f}.background-bw5{background-color:#919191}.background-bw6-2{background-color:#6c6c6c}.background-brown-bold{background-color:#865e3a}.background-bw2{background-color:#eee}.background-bw-9{background-color:#dadada}.background-hover-white{transition:background-color .3s ease-in-out}.background-hover-white:hover{background-color:#fff!important}.background-hover-black{transition:background-color .3s ease-in-out}.background-hover-black:hover{background-color:#424242!important}.background-hover-black-1{transition:background-color .3s ease-in-out}.background-hover-black-1:hover{background-color:#424242!important}.background-hover-grey{transition:background-color .3s ease-in-out}.background-hover-grey:hover{background-color:#919191!important}.background-hover-grey-2{transition:background-color .3s ease-in-out}.background-hover-grey-2:hover{background-color:#6c6c6c!important}.background-hover-grey-6{transition:background-color .3s ease-in-out}.background-hover-grey-6:hover{background-color:#91919120!important}.background-hover-dark-2{transition:background-color .3s ease-in-out}.background-hover-dark-2:hover{background-color:#91919133!important}.background-hover-bw2{transition:background-color .3s ease-in-out}.background-hover-bw2:hover{background-color:#eee!important}.background-hover-bw6{transition:background-color .3s ease-in-out}.background-hover-bw6:hover{background-color:#606060!important}.background-hover-bw6-2{transition:background-color .3s ease-in-out}.background-hover-bw6-2:hover{background-color:#6c6c6c!important}.background-hover-blue-13{transition:background-color .3s ease-in-out}.background-hover-blue-13:hover{background-color:#6692f1!important}.background-hover-blue-15{transition:background-color .3s ease-in-out}.background-hover-blue-15:hover{background-color:#0b49d1!important}.background-hover-blue-16{transition:background-color .3s ease-in-out}.background-hover-blue-16:hover{background-color:#e9effd!important}.background-hover-blue-17{transition:background-color .3s ease-in-out}.background-hover-blue-17:hover{background-color:#bed0f9!important}.background-hover-blue-19{transition:background-color .3s ease-in-out}.background-hover-blue-19:hover{background-color:#92b1f5!important}.background-hover-blue-20{transition:background-color .3s ease-in-out}.background-hover-blue-20:hover{background-color:#3b73ed33!important}.background-hover-blue-21{transition:background-color .3s ease-in-out}.background-hover-blue-21:hover{background-color:#3b73ed66!important}.background-hover-red-15{transition:background-color .3s ease-in-out}.background-hover-red-15:hover{background-color:#f4bebe!important}.background-hover-gray{transition:background-color .3s ease-in-out}.background-hover-gray:hover{background-color:#e5e5e5!important}.background-hover-light-grey{transition:background-color .3s ease-in-out}.background-hover-light-grey:hover{background-color:#e5e5e5!important}.background-hover-bw-9{transition:background-color .3s ease-in-out}.background-hover-bw-9:hover{background-color:#dadada!important}.br-1{border-radius:1px}.br-2{border-radius:2px}.br-3{border-radius:3px}.br-10{border-radius:10px}.br-60{border-radius:60px}.br-circle{border-radius:50%}.padding-2{padding:2px}.padding-l-2{padding-left:2px}.padding-r-2{padding-right:2px}.padding-t-2{padding-top:2px}.padding-4{padding:4px}.padding-l-4{padding-left:4px}.padding-r-4{padding-right:4px}.padding-t-4{padding-top:4px}.padding-6{padding:6px}.padding-l-6{padding-left:6px}.padding-r-6{padding-right:6px}.padding-t-6{padding-top:6px}.padding-10{padding:10px}.padding-l-10{padding-left:10px}.padding-r-10{padding-right:10px}.padding-t-10{padding-top:10px}.padding-15{padding:15px}.padding-l-15{padding-left:15px}.padding-r-15{padding-right:15px}.padding-t-15{padding-top:15px}.padding-y-2{padding-top:2px;padding-bottom:2px}.padding-y-4{padding-top:4px;padding-bottom:4px}.padding-y-6{padding-top:6px;padding-bottom:6px}.padding-y-10{padding-top:10px;padding-bottom:10px}.padding-y-15{padding-top:15px;padding-bottom:15px}.padding-x-4{padding-left:4px;padding-right:4px}.padding-x-5{padding-left:5px;padding-right:5px}.padding-x-6{padding-left:6px;padding-right:6px}.padding-x-10{padding-left:10px;padding-right:10px}.margin--2{margin:-2px}.margin-y--2{margin-top:-2px;margin-bottom:-2px}.margin-x--2{margin-left:-2px;margin-right:-2px}.margin-t--2{margin-top:-2px}.margin-r--2{margin-right:-2px}.margin-b--2{margin-bottom:-2px}.margin-l--2{margin-left:-2px}.margin-1{margin:1px}.margin-y-1{margin-top:1px;margin-bottom:1px}.margin-x-1{margin-left:1px;margin-right:1px}.margin-t-1{margin-top:1px}.margin-r-1{margin-right:1px}.margin-b-1{margin-bottom:1px}.margin-l-1{margin-left:1px}.margin-2{margin:2px}.margin-y-2{margin-top:2px;margin-bottom:2px}.margin-x-2{margin-left:2px;margin-right:2px}.margin-t-2{margin-top:2px}.margin-r-2{margin-right:2px}.margin-b-2{margin-bottom:2px}.margin-l-2{margin-left:2px}.margin-4{margin:4px}.margin-y-4{margin-top:4px;margin-bottom:4px}.margin-x-4{margin-left:4px;margin-right:4px}.margin-t-4{margin-top:4px}.margin-r-4{margin-right:4px}.margin-b-4{margin-bottom:4px}.margin-l-4{margin-left:4px}.margin-5{margin:5px}.margin-y-5{margin-top:5px;margin-bottom:5px}.margin-x-5{margin-left:5px;margin-right:5px}.margin-t-5{margin-top:5px}.margin-r-5{margin-right:5px}.margin-b-5{margin-bottom:5px}.margin-l-5{margin-left:5px}.margin-6{margin:6px}.margin-y-6{margin-top:6px;margin-bottom:6px}.margin-x-6{margin-left:6px;margin-right:6px}.margin-t-6{margin-top:6px}.margin-r-6{margin-right:6px}.margin-b-6{margin-bottom:6px}.margin-l-6{margin-left:6px}.margin-8{margin:8px}.margin-y-8{margin-top:8px;margin-bottom:8px}.margin-x-8{margin-left:8px;margin-right:8px}.margin-t-8{margin-top:8px}.margin-r-8{margin-right:8px}.margin-b-8{margin-bottom:8px}.margin-l-8{margin-left:8px}.margin-10{margin:10px}.margin-y-10{margin-top:10px;margin-bottom:10px}.margin-x-10{margin-left:10px;margin-right:10px}.margin-t-10{margin-top:10px}.margin-r-10{margin-right:10px}.margin-b-10{margin-bottom:10px}.margin-l-10{margin-left:10px}.margin-15{margin:15px}.margin-y-15{margin-top:15px;margin-bottom:15px}.margin-x-15{margin-left:15px;margin-right:15px}.margin-t-15{margin-top:15px}.margin-r-15{margin-right:15px}.margin-b-15{margin-bottom:15px}.margin-l-15{margin-left:15px}.margin-22{margin:22px}.margin-y-22{margin-top:22px;margin-bottom:22px}.margin-x-22{margin-left:22px;margin-right:22px}.margin-t-22{margin-top:22px}.margin-r-22{margin-right:22px}.margin-b-22{margin-bottom:22px}.margin-l-22{margin-left:22px}.margin-24{margin:24px}.margin-y-24{margin-top:24px;margin-bottom:24px}.margin-x-24{margin-left:24px;margin-right:24px}.margin-t-24{margin-top:24px}.margin-r-24{margin-right:24px}.margin-b-24{margin-bottom:24px}.margin-l-24{margin-left:24px}.gap-xs{gap:2px}.w-1{width:1px}.h-1{height:1px}.w-2{width:2px}.h-2{height:2px}.w-4{width:4px}.h-4{height:4px}.w-10{width:10px}.h-10{height:10px}.w-14{width:14px}.h-14{height:14px}.w-15{width:15px}.h-15{height:15px}.w-18{width:18px}.h-18{height:18px}.w-22{width:22px}.h-22{height:22px}.w-26{width:26px}.h-26{height:26px}.w-31{width:31px}.h-31{height:31px}.w-32{width:32px}.h-32{height:32px}.w-36{width:36px}.h-36{height:36px}.w-116{width:116px}.h-116{height:116px}.w-120{width:120px}.h-120{height:120px}.w-fit-content{width:fit-content}.filter-dropdown-popover{width:260px;position:relative;top:-4px;left:-4px}.filter-dropdown-popover-max-height{max-height:360px}.filter-dropdown-list{max-height:260px;overflow-y:auto}.filter-dropdown-list-icon{height:26px;transition:background-color .3s ease-in-out}.filter-dropdown-list-icon-value{height:14px;width:14px}.filter-dropdown-list-icon-remove{display:none}.filter-dropdown-list-icon:hover{background-color:#424242}.filter-dropdown-list-icon:hover .filter-dropdown-icon-count{display:none}.filter-dropdown-list-icon-selected:hover{background-color:#0b49d1}.filter-dropdown-list-item-icons{transition:opacity .3s ease-in-out;opacity:0}.filter-dropdown-list-item-status-circle{height:10px;width:10px}.filter-dropdown-list-item-remove{display:none}.filter-dropdown-list-item:hover{background-color:#424242}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons{opacity:1}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons svg path{fill:var(--svg-fill-color, #e66767)}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove{display:flex}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove svg path{fill:#e66767!important}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-count{display:none!important}.filter-dropdown-icon{height:26px;width:26px}.filter-dropdown-count{height:14px;width:14px}.filter-dropdown-count-remove,.filter-dropdown-count-hover:hover .filter-dropdown-count-value{display:none}.filter-dropdown-count-hover:hover .filter-dropdown-count-remove{display:flex}.filter-dropdown-button{height:26px}.filter-dropdown-footer-button{color:#dadada;transition:color .3s ease-in-out,background-color .3s ease-in-out;height:18px;width:50%}.filter-dropdown-footer-button-set{color:#fff;background-color:#3b73ed}.filter-dropdown-footer-button-set:hover{background-color:#e9effd;color:#0b49d1}.filter-dropdown-footer-button-clear{color:#dadada}.filter-dropdown-footer-button-clear:hover{background-color:#eee;color:#424242}.filter-dropdown-list-badge{min-width:18px}.h-7{height:7px!important;min-height:7px!important}.h-8{height:8px!important;min-height:8px!important}.h-10{height:10px!important;min-height:10px!important}.h-12{height:12px!important;min-height:12px!important}.h-14{height:14px!important;min-height:14px!important}.h-15{height:15px!important;min-height:15px!important}.h-16{height:16px!important;min-height:16px!important}.h-18{height:18px!important;min-height:18px!important}.h-22{height:22px!important;min-height:22px!important}.h-24{height:24px!important;min-height:24px!important}.h-26{height:26px!important;min-height:26px!important}.h-30{height:30px!important;min-height:30px!important}.h-34{height:34px!important;min-height:34px!important}.h-37{height:37px!important;min-height:37px!important}.h-40{height:40px!important;min-height:40px!important}.h-42{height:42px!important;min-height:42px!important}.h-44{height:44px!important;min-height:44px!important}.h-52{height:52px!important;min-height:52px!important}.h-80{height:80px!important;min-height:80px!important}.h-160{height:160px!important;min-height:160px!important}.h-486{height:486px!important;min-height:486px!important}.h-800{height:800px!important;min-height:800px!important}.h-960{height:960px!important;min-height:960px!important}.w-2{width:2px!important;min-width:2px!important}.w-7{width:7px!important;min-width:7px!important}.w-8{width:8px!important;min-width:8px!important}.w-10{width:10px!important;min-width:10px!important}.w-12{width:12px!important;min-width:12px!important}.w-15{width:15px!important;min-width:15px!important}.w-18{width:18px!important;min-width:18px!important}.w-22{width:22px!important;min-width:22px!important}.w-24{width:24px!important;min-width:24px!important}.w-26{width:26px!important;min-width:26px!important}.w-29{width:29px!important;min-width:29px!important}.w-30{width:30px!important;min-width:30px!important}.w-36{width:36px!important;min-width:36px!important}.w-40{width:40px!important;min-width:40px!important}.w-42{width:42px!important;min-width:42px!important}.w-46{width:46px!important;min-width:46px!important}.w-49{width:49px!important;min-width:49px!important}.w-57{width:57px!important;min-width:57px!important}.w-60{width:60px!important;min-width:60px!important}.w-68{width:68px!important;min-width:68px!important}.w-70{width:70px!important;min-width:70px!important}.w-71{width:71px!important;min-width:71px!important}.w-78{width:78px!important;min-width:78px!important}.w-80{width:80px!important;min-width:80px!important}.w-83{width:83px!important;min-width:83px!important}.w-84{width:84px!important;min-width:84px!important}.w-88{width:88px!important;min-width:88px!important}.w-90{width:90px!important;min-width:90px!important}.w-91{width:91px!important;min-width:91px!important}.w-93{width:93px!important;min-width:93px!important}.w-98{width:98px!important;min-width:98px!important}.w-101{width:101px!important;min-width:101px!important}.w-106{width:106px!important;min-width:106px!important}.w-108{width:108px!important;min-width:108px!important}.w-116{width:116px!important;min-width:116px!important}.w-126{width:126px!important;min-width:126px!important}.w-144{width:144px!important;min-width:144px!important}.w-155{width:155px!important;min-width:155px!important}.w-172{width:172px!important;min-width:172px!important}.w-179{width:179px!important;min-width:179px!important}.w-202{width:202px!important;min-width:202px!important}.w-214{width:214px!important;min-width:214px!important}.w-223{width:223px!important;min-width:223px!important}.w-264{width:264px!important;min-width:264px!important}.w-268{width:268px!important;min-width:268px!important}.w-272{width:272px!important;min-width:272px!important}.w-277{width:277px!important;min-width:277px!important}.w-334{width:334px!important;min-width:334px!important}.w-442{width:442px!important;min-width:442px!important}.w-462{width:462px!important;min-width:462px!important}.w-612{width:612px!important;min-width:612px!important}.w-616{width:616px!important;min-width:616px!important}.w-620{width:620px!important;min-width:620px!important}.min-w-18{min-width:18px}.flex-1{flex:1}.w-33{width:33%}.w-40p{width:40%}.w-90p{width:90%}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.c-pointer{cursor:pointer}.pointer-events-none{pointer-events:none}.ca-scroll-bar{overflow-y:scroll}.ca-scroll-bar::-webkit-scrollbar{width:2px}.ca-scroll-bar::-webkit-scrollbar-thumb{background:#ccc;border-radius:1px}.ca-scroll-bar::-webkit-scrollbar-track{background:#2f2f2f}.place-items-center{justify-content:center;align-items:center}.prevent-text-selection{-ms-user-select:none;-webkit-user-select:none;user-select:none;-moz-user-select:none}@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}}.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}.dropdown-options.dropdown_value{background-color:transparent!important;top:0;left:0}.dropdown-options.w-col-1{width:1px!important}.dropdown-options.w-col-2{width:2px!important}.dropdown-options.w-col-3{width:3px!important}.dropdown-options.w-col-4{width:4px!important}.dropdown-options.w-col-5{width:5px!important}.dropdown-options.w-col-6{width:6px!important}.dropdown-options.w-col-7{width:7px!important}.dropdown-options.w-col-8{width:8px!important}.dropdown-options.w-col-9{width:9px!important}.dropdown-options.w-col-10{width:10px!important}.dropdown-options.w-col-11{width:11px!important}.dropdown-options.w-col-12{width:12px!important}.dropdown-options.w-col-13{width:13px!important}.dropdown-options.w-col-14{width:14px!important}.dropdown-options.w-col-15{width:15px!important}.dropdown-options.w-col-16{width:16px!important}.dropdown-options.w-col-17{width:17px!important}.dropdown-options.w-col-18{width:18px!important}.dropdown-options.w-col-19{width:19px!important}.dropdown-options.w-col-20{width:20px!important}.dropdown-options.w-col-21{width:21px!important}.dropdown-options.w-col-22{width:22px!important}.dropdown-options.w-col-23{width:23px!important}.dropdown-options.w-col-24{width:24px!important}.dropdown-options.w-col-25{width:25px!important}.dropdown-options.w-col-26{width:26px!important}.dropdown-options.w-col-27{width:27px!important}.dropdown-options.w-col-28{width:28px!important}.dropdown-options.w-col-29{width:29px!important}.dropdown-options.w-col-30{width:30px!important}.dropdown-options.w-col-31{width:31px!important}.dropdown-options.w-col-32{width:32px!important}.dropdown-options.w-col-33{width:33px!important}.dropdown-options.w-col-34{width:34px!important}.dropdown-options.w-col-35{width:35px!important}.dropdown-options.w-col-36{width:36px!important}.dropdown-options.w-col-37{width:37px!important}.dropdown-options.w-col-38{width:38px!important}.dropdown-options.w-col-39{width:39px!important}.dropdown-options.w-col-40{width:40px!important}.dropdown-options.w-col-41{width:41px!important}.dropdown-options.w-col-42{width:42px!important}.dropdown-options.w-col-43{width:43px!important}.dropdown-options.w-col-44{width:44px!important}.dropdown-options.w-col-45{width:45px!important}.dropdown-options.w-col-46{width:46px!important}.dropdown-options.w-col-47{width:47px!important}.dropdown-options.w-col-48{width:48px!important}.dropdown-options.w-col-49{width:49px!important}.dropdown-options.w-col-50{width:50px!important}.dropdown-options.w-col-51{width:51px!important}.dropdown-options.w-col-52{width:52px!important}.dropdown-options.w-col-53{width:53px!important}.dropdown-options.w-col-54{width:54px!important}.dropdown-options.w-col-55{width:55px!important}.dropdown-options.w-col-56{width:56px!important}.dropdown-options.w-col-57{width:57px!important}.dropdown-options.w-col-58{width:58px!important}.dropdown-options.w-col-59{width:59px!important}.dropdown-options.w-col-60{width:60px!important}.dropdown-options.w-col-61{width:61px!important}.dropdown-options.w-col-62{width:62px!important}.dropdown-options.w-col-63{width:63px!important}.dropdown-options.w-col-64{width:64px!important}.dropdown-options.w-col-65{width:65px!important}.dropdown-options.w-col-66{width:66px!important}.dropdown-options.w-col-67{width:67px!important}.dropdown-options.w-col-68{width:68px!important}.dropdown-options.w-col-69{width:69px!important}.dropdown-options.w-col-70{width:70px!important}.dropdown-options.w-col-71{width:71px!important}.dropdown-options.w-col-72{width:72px!important}.dropdown-options.w-col-73{width:73px!important}.dropdown-options.w-col-74{width:74px!important}.dropdown-options.w-col-75{width:75px!important}.dropdown-options.w-col-76{width:76px!important}.dropdown-options.w-col-77{width:77px!important}.dropdown-options.w-col-78{width:78px!important}.dropdown-options.w-col-79{width:79px!important}.dropdown-options.w-col-80{width:80px!important}.dropdown-options.w-col-81{width:81px!important}.dropdown-options.w-col-82{width:82px!important}.dropdown-options.w-col-83{width:83px!important}.dropdown-options.w-col-84{width:84px!important}.dropdown-options.w-col-85{width:85px!important}.dropdown-options.w-col-86{width:86px!important}.dropdown-options.w-col-87{width:87px!important}.dropdown-options.w-col-88{width:88px!important}.dropdown-options.w-col-89{width:89px!important}.dropdown-options.w-col-90{width:90px!important}.dropdown-options.w-col-91{width:91px!important}.dropdown-options.w-col-92{width:92px!important}.dropdown-options.w-col-93{width:93px!important}.dropdown-options.w-col-94{width:94px!important}.dropdown-options.w-col-95{width:95px!important}.dropdown-options.w-col-96{width:96px!important}.dropdown-options.w-col-97{width:97px!important}.dropdown-options.w-col-98{width:98px!important}.dropdown-options.w-col-99{width:99px!important}.dropdown-options.w-col-100{width:100px!important}.dropdown-options.w-col-101{width:101px!important}.dropdown-options.w-col-102{width:102px!important}.dropdown-options.w-col-103{width:103px!important}.dropdown-options.w-col-104{width:104px!important}.dropdown-options.w-col-105{width:105px!important}.dropdown-options.w-col-106{width:106px!important}.dropdown-options.w-col-107{width:107px!important}.dropdown-options.w-col-108{width:108px!important}.dropdown-options.w-col-109{width:109px!important}.dropdown-options.w-col-110{width:110px!important}.dropdown-options.w-col-111{width:111px!important}.dropdown-options.w-col-112{width:112px!important}.dropdown-options.w-col-113{width:113px!important}.dropdown-options.w-col-114{width:114px!important}.dropdown-options.w-col-115{width:115px!important}.dropdown-options.w-col-116{width:116px!important}.dropdown-options.w-col-117{width:117px!important}.dropdown-options.w-col-118{width:118px!important}.dropdown-options.w-col-119{width:119px!important}.dropdown-options.w-col-120{width:120px!important}.dropdown-options.w-col-121{width:121px!important}.dropdown-options.w-col-122{width:122px!important}.dropdown-options.w-col-123{width:123px!important}.dropdown-options.w-col-124{width:124px!important}.dropdown-options.w-col-125{width:125px!important}.dropdown-options.w-col-126{width:126px!important}.dropdown-options.w-col-127{width:127px!important}.dropdown-options.w-col-128{width:128px!important}.dropdown-options.w-col-129{width:129px!important}.dropdown-options.w-col-130{width:130px!important}.dropdown-options.w-col-131{width:131px!important}.dropdown-options.w-col-132{width:132px!important}.dropdown-options.w-col-133{width:133px!important}.dropdown-options.w-col-134{width:134px!important}.dropdown-options.w-col-135{width:135px!important}.dropdown-options.w-col-136{width:136px!important}.dropdown-options.w-col-137{width:137px!important}.dropdown-options.w-col-138{width:138px!important}.dropdown-options.w-col-139{width:139px!important}.dropdown-options.w-col-140{width:140px!important}.dropdown-options.w-col-141{width:141px!important}.dropdown-options.w-col-142{width:142px!important}.dropdown-options.w-col-143{width:143px!important}.dropdown-options.w-col-144{width:144px!important}.dropdown-options.w-col-145{width:145px!important}.dropdown-options.w-col-146{width:146px!important}.dropdown-options.w-col-147{width:147px!important}.dropdown-options.w-col-148{width:148px!important}.dropdown-options.w-col-149{width:149px!important}.dropdown-options.w-col-150{width:150px!important}.dropdown-options.w-col-151{width:151px!important}.dropdown-options.w-col-152{width:152px!important}.dropdown-options.w-col-153{width:153px!important}.dropdown-options.w-col-154{width:154px!important}.dropdown-options.w-col-155{width:155px!important}.dropdown-options.w-col-156{width:156px!important}.dropdown-options.w-col-157{width:157px!important}.dropdown-options.w-col-158{width:158px!important}.dropdown-options.w-col-159{width:159px!important}.dropdown-options.w-col-160{width:160px!important}.dropdown-options.w-col-161{width:161px!important}.dropdown-options.w-col-162{width:162px!important}.dropdown-options.w-col-163{width:163px!important}.dropdown-options.w-col-164{width:164px!important}.dropdown-options.w-col-165{width:165px!important}.dropdown-options.w-col-166{width:166px!important}.dropdown-options.w-col-167{width:167px!important}.dropdown-options.w-col-168{width:168px!important}.dropdown-options.w-col-169{width:169px!important}.dropdown-options.w-col-170{width:170px!important}.dropdown-options.w-col-171{width:171px!important}.dropdown-options.w-col-172{width:172px!important}.dropdown-options.w-col-173{width:173px!important}.dropdown-options.w-col-174{width:174px!important}.dropdown-options.w-col-175{width:175px!important}.dropdown-options.w-col-176{width:176px!important}.dropdown-options.w-col-177{width:177px!important}.dropdown-options.w-col-178{width:178px!important}.dropdown-options.w-col-179{width:179px!important}.dropdown-options.w-col-180{width:180px!important}.dropdown-options.w-col-181{width:181px!important}.dropdown-options.w-col-182{width:182px!important}.dropdown-options.w-col-183{width:183px!important}.dropdown-options.w-col-184{width:184px!important}.dropdown-options.w-col-185{width:185px!important}.dropdown-options.w-col-186{width:186px!important}.dropdown-options.w-col-187{width:187px!important}.dropdown-options.w-col-188{width:188px!important}.dropdown-options.w-col-189{width:189px!important}.dropdown-options.w-col-190{width:190px!important}.dropdown-options.w-col-191{width:191px!important}.dropdown-options.w-col-192{width:192px!important}.dropdown-options.w-col-193{width:193px!important}.dropdown-options.w-col-194{width:194px!important}.dropdown-options.w-col-195{width:195px!important}.dropdown-options.w-col-196{width:196px!important}.dropdown-options.w-col-197{width:197px!important}.dropdown-options.w-col-198{width:198px!important}.dropdown-options.w-col-199{width:199px!important}.dropdown-options.w-col-200{width:200px!important}.dropdown-options.w-col-201{width:201px!important}.dropdown-options.w-col-202{width:202px!important}.dropdown-options.w-col-203{width:203px!important}.dropdown-options.w-col-204{width:204px!important}.dropdown-options.w-col-205{width:205px!important}.dropdown-options.w-col-206{width:206px!important}.dropdown-options.w-col-207{width:207px!important}.dropdown-options.w-col-208{width:208px!important}.dropdown-options.w-col-209{width:209px!important}.dropdown-options.w-col-210{width:210px!important}.dropdown-options.w-col-211{width:211px!important}.dropdown-options.w-col-212{width:212px!important}.dropdown-options.w-col-213{width:213px!important}.dropdown-options.w-col-214{width:214px!important}.dropdown-options.w-col-215{width:215px!important}.dropdown-options.w-col-216{width:216px!important}.dropdown-options.w-col-217{width:217px!important}.dropdown-options.w-col-218{width:218px!important}.dropdown-options.w-col-219{width:219px!important}.dropdown-options.w-col-220{width:220px!important}.dropdown-options.w-col-221{width:221px!important}.dropdown-options.w-col-222{width:222px!important}.dropdown-options.w-col-223{width:223px!important}.dropdown-options.w-col-224{width:224px!important}.dropdown-options.w-col-225{width:225px!important}.dropdown-options.w-col-226{width:226px!important}.dropdown-options.w-col-227{width:227px!important}.dropdown-options.w-col-228{width:228px!important}.dropdown-options.w-col-229{width:229px!important}.dropdown-options.w-col-230{width:230px!important}.dropdown-options.w-col-231{width:231px!important}.dropdown-options.w-col-232{width:232px!important}.dropdown-options.w-col-233{width:233px!important}.dropdown-options.w-col-234{width:234px!important}.dropdown-options.w-col-235{width:235px!important}.dropdown-options.w-col-236{width:236px!important}.dropdown-options.w-col-237{width:237px!important}.dropdown-options.w-col-238{width:238px!important}.dropdown-options.w-col-239{width:239px!important}.dropdown-options.w-col-240{width:240px!important}.dropdown-options.w-col-241{width:241px!important}.dropdown-options.w-col-242{width:242px!important}.dropdown-options.w-col-243{width:243px!important}.dropdown-options.w-col-244{width:244px!important}.dropdown-options.w-col-245{width:245px!important}.dropdown-options.w-col-246{width:246px!important}.dropdown-options.w-col-247{width:247px!important}.dropdown-options.w-col-248{width:248px!important}.dropdown-options.w-col-249{width:249px!important}.dropdown-options.w-col-250{width:250px!important}.dropdown-options.w-col-251{width:251px!important}.dropdown-options.w-col-252{width:252px!important}.dropdown-options.w-col-253{width:253px!important}.dropdown-options.w-col-254{width:254px!important}.dropdown-options.w-col-255{width:255px!important}.dropdown-options.w-col-256{width:256px!important}.dropdown-options.w-col-257{width:257px!important}.dropdown-options.w-col-258{width:258px!important}.dropdown-options.w-col-259{width:259px!important}.dropdown-options.w-col-260{width:260px!important}.dropdown-options.w-col-261{width:261px!important}.dropdown-options.w-col-262{width:262px!important}.dropdown-options.w-col-263{width:263px!important}.dropdown-options.w-col-264{width:264px!important}.dropdown-options.w-col-265{width:265px!important}.dropdown-options.w-col-266{width:266px!important}.dropdown-options.w-col-267{width:267px!important}.dropdown-options.w-col-268{width:268px!important}.dropdown-options.w-col-269{width:269px!important}.dropdown-options.w-col-270{width:270px!important}.dropdown-options.w-col-271{width:271px!important}.dropdown-options.w-col-272{width:272px!important}.dropdown-options.w-col-273{width:273px!important}.dropdown-options.w-col-274{width:274px!important}.dropdown-options.w-col-275{width:275px!important}.dropdown-options.w-col-276{width:276px!important}.dropdown-options.w-col-277{width:277px!important}.dropdown-options.w-col-278{width:278px!important}.dropdown-options.w-col-279{width:279px!important}.dropdown-options.w-col-280{width:280px!important}.dropdown-options.w-col-281{width:281px!important}.dropdown-options.w-col-282{width:282px!important}.dropdown-options.w-col-283{width:283px!important}.dropdown-options.w-col-284{width:284px!important}.dropdown-options.w-col-285{width:285px!important}.dropdown-options.w-col-286{width:286px!important}.dropdown-options.w-col-287{width:287px!important}.dropdown-options.w-col-288{width:288px!important}.dropdown-options.w-col-289{width:289px!important}.dropdown-options.w-col-290{width:290px!important}.dropdown-options.w-col-291{width:291px!important}.dropdown-options.w-col-292{width:292px!important}.dropdown-options.w-col-293{width:293px!important}.dropdown-options.w-col-294{width:294px!important}.dropdown-options.w-col-295{width:295px!important}.dropdown-options.w-col-296{width:296px!important}.dropdown-options.w-col-297{width:297px!important}.dropdown-options.w-col-298{width:298px!important}.dropdown-options.w-col-299{width:299px!important}.dropdown-options.w-col-300{width:300px!important}.dropdown-options.w-col-301{width:301px!important}.dropdown-options.w-col-302{width:302px!important}.dropdown-options.w-col-303{width:303px!important}.dropdown-options.w-col-304{width:304px!important}.dropdown-options.w-col-305{width:305px!important}.dropdown-options.w-col-306{width:306px!important}.dropdown-options.w-col-307{width:307px!important}.dropdown-options.w-col-308{width:308px!important}.dropdown-options.w-col-309{width:309px!important}.dropdown-options.w-col-310{width:310px!important}.dropdown-options.w-col-311{width:311px!important}.dropdown-options.w-col-312{width:312px!important}.dropdown-options.w-col-313{width:313px!important}.dropdown-options.w-col-314{width:314px!important}.dropdown-options.w-col-315{width:315px!important}.dropdown-options.w-col-316{width:316px!important}.dropdown-options.w-col-317{width:317px!important}.dropdown-options.w-col-318{width:318px!important}.dropdown-options.w-col-319{width:319px!important}.dropdown-options.w-col-320{width:320px!important}.dropdown-options.w-col-321{width:321px!important}.dropdown-options.w-col-322{width:322px!important}.dropdown-options.w-col-323{width:323px!important}.dropdown-options.w-col-324{width:324px!important}.dropdown-options.w-col-325{width:325px!important}.dropdown-options.w-col-326{width:326px!important}.dropdown-options.w-col-327{width:327px!important}.dropdown-options.w-col-328{width:328px!important}.dropdown-options.w-col-329{width:329px!important}.dropdown-options.w-col-330{width:330px!important}.dropdown-options.w-col-331{width:331px!important}.dropdown-options.w-col-332{width:332px!important}.dropdown-options.w-col-333{width:333px!important}.dropdown-options.w-col-334{width:334px!important}.dropdown-options.w-col-335{width:335px!important}.dropdown-options.w-col-336{width:336px!important}.dropdown-options.w-col-337{width:337px!important}.dropdown-options.w-col-338{width:338px!important}.dropdown-options.w-col-339{width:339px!important}.dropdown-options.w-col-340{width:340px!important}.dropdown-options.w-col-341{width:341px!important}.dropdown-options.w-col-342{width:342px!important}.dropdown-options.w-col-343{width:343px!important}.dropdown-options.w-col-344{width:344px!important}.dropdown-options.w-col-345{width:345px!important}.dropdown-options.w-col-346{width:346px!important}.dropdown-options.w-col-347{width:347px!important}.dropdown-options.w-col-348{width:348px!important}.dropdown-options.w-col-349{width:349px!important}.dropdown-options.w-col-350{width:350px!important}.dropdown-options.w-col-351{width:351px!important}.dropdown-options.w-col-352{width:352px!important}.dropdown-options.w-col-353{width:353px!important}.dropdown-options.w-col-354{width:354px!important}.dropdown-options.w-col-355{width:355px!important}.dropdown-options.w-col-356{width:356px!important}.dropdown-options.w-col-357{width:357px!important}.dropdown-options.w-col-358{width:358px!important}.dropdown-options.w-col-359{width:359px!important}.dropdown-options.w-col-360{width:360px!important}.dropdown-options.w-col-361{width:361px!important}.dropdown-options.w-col-362{width:362px!important}.dropdown-options.w-col-363{width:363px!important}.dropdown-options.w-col-364{width:364px!important}.dropdown-options.w-col-365{width:365px!important}.dropdown-options.w-col-366{width:366px!important}.dropdown-options.w-col-367{width:367px!important}.dropdown-options.w-col-368{width:368px!important}.dropdown-options.w-col-369{width:369px!important}.dropdown-options.w-col-370{width:370px!important}.dropdown-options.w-col-371{width:371px!important}.dropdown-options.w-col-372{width:372px!important}.dropdown-options.w-col-373{width:373px!important}.dropdown-options.w-col-374{width:374px!important}.dropdown-options.w-col-375{width:375px!important}.dropdown-options.w-col-376{width:376px!important}.dropdown-options.w-col-377{width:377px!important}.dropdown-options.w-col-378{width:378px!important}.dropdown-options.w-col-379{width:379px!important}.dropdown-options.w-col-380{width:380px!important}.dropdown-options.w-col-381{width:381px!important}.dropdown-options.w-col-382{width:382px!important}.dropdown-options.w-col-383{width:383px!important}.dropdown-options.w-col-384{width:384px!important}.dropdown-options.w-col-385{width:385px!important}.dropdown-options.w-col-386{width:386px!important}.dropdown-options.w-col-387{width:387px!important}.dropdown-options.w-col-388{width:388px!important}.dropdown-options.w-col-389{width:389px!important}.dropdown-options.w-col-390{width:390px!important}.dropdown-options.w-col-391{width:391px!important}.dropdown-options.w-col-392{width:392px!important}.dropdown-options.w-col-393{width:393px!important}.dropdown-options.w-col-394{width:394px!important}.dropdown-options.w-col-395{width:395px!important}.dropdown-options.w-col-396{width:396px!important}.dropdown-options.w-col-397{width:397px!important}.dropdown-options.w-col-398{width:398px!important}.dropdown-options.w-col-399{width:399px!important}.dropdown-options.w-col-400{width:400px!important}.dropdown-options.w-col-401{width:401px!important}.dropdown-options.w-col-402{width:402px!important}.dropdown-options.w-col-403{width:403px!important}.dropdown-options.w-col-404{width:404px!important}.dropdown-options.w-col-405{width:405px!important}.dropdown-options.w-col-406{width:406px!important}.dropdown-options.w-col-407{width:407px!important}.dropdown-options.w-col-408{width:408px!important}.dropdown-options.w-col-409{width:409px!important}.dropdown-options.w-col-410{width:410px!important}.dropdown-options.w-col-411{width:411px!important}.dropdown-options.w-col-412{width:412px!important}.dropdown-options.w-col-413{width:413px!important}.dropdown-options.w-col-414{width:414px!important}.dropdown-options.w-col-415{width:415px!important}.dropdown-options.w-col-416{width:416px!important}.dropdown-options.w-col-417{width:417px!important}.dropdown-options.w-col-418{width:418px!important}.dropdown-options.w-col-419{width:419px!important}.dropdown-options.w-col-420{width:420px!important}.dropdown-options.w-col-421{width:421px!important}.dropdown-options.w-col-422{width:422px!important}.dropdown-options.w-col-423{width:423px!important}.dropdown-options.w-col-424{width:424px!important}.dropdown-options.w-col-425{width:425px!important}.dropdown-options.w-col-426{width:426px!important}.dropdown-options.w-col-427{width:427px!important}.dropdown-options.w-col-428{width:428px!important}.dropdown-options.w-col-429{width:429px!important}.dropdown-options.w-col-430{width:430px!important}.dropdown-options.w-col-431{width:431px!important}.dropdown-options.w-col-432{width:432px!important}.dropdown-options.w-col-433{width:433px!important}.dropdown-options.w-col-434{width:434px!important}.dropdown-options.w-col-435{width:435px!important}.dropdown-options.w-col-436{width:436px!important}.dropdown-options.w-col-437{width:437px!important}.dropdown-options.w-col-438{width:438px!important}.dropdown-options.w-col-439{width:439px!important}.dropdown-options.w-col-440{width:440px!important}.dropdown-options.w-col-441{width:441px!important}.dropdown-options.w-col-442{width:442px!important}.dropdown-options.w-col-443{width:443px!important}.dropdown-options.w-col-444{width:444px!important}.dropdown-options.w-col-445{width:445px!important}.dropdown-options.w-col-446{width:446px!important}.dropdown-options.w-col-447{width:447px!important}.dropdown-options.w-col-448{width:448px!important}.dropdown-options.w-col-449{width:449px!important}.dropdown-options.w-col-450{width:450px!important}.dropdown-options.w-col-451{width:451px!important}.dropdown-options.w-col-452{width:452px!important}.dropdown-options.w-col-453{width:453px!important}.dropdown-options.w-col-454{width:454px!important}.dropdown-options.w-col-455{width:455px!important}.dropdown-options.w-col-456{width:456px!important}.dropdown-options.w-col-457{width:457px!important}.dropdown-options.w-col-458{width:458px!important}.dropdown-options.w-col-459{width:459px!important}.dropdown-options.w-col-460{width:460px!important}.dropdown-options.w-col-461{width:461px!important}.dropdown-options.w-col-462{width:462px!important}.dropdown-options.w-col-463{width:463px!important}.dropdown-options.w-col-464{width:464px!important}.dropdown-options.w-col-465{width:465px!important}.dropdown-options.w-col-466{width:466px!important}.dropdown-options.w-col-467{width:467px!important}.dropdown-options.w-col-468{width:468px!important}.dropdown-options.w-col-469{width:469px!important}.dropdown-options.w-col-470{width:470px!important}.dropdown-options.w-col-471{width:471px!important}.dropdown-options.w-col-472{width:472px!important}.dropdown-options.w-col-473{width:473px!important}.dropdown-options.w-col-474{width:474px!important}.dropdown-options.w-col-475{width:475px!important}.dropdown-options.w-col-476{width:476px!important}.dropdown-options.w-col-477{width:477px!important}.dropdown-options.w-col-478{width:478px!important}.dropdown-options.w-col-479{width:479px!important}.dropdown-options.w-col-480{width:480px!important}.dropdown-options.w-col-481{width:481px!important}.dropdown-options.w-col-482{width:482px!important}.dropdown-options.w-col-483{width:483px!important}.dropdown-options.w-col-484{width:484px!important}.dropdown-options.w-col-485{width:485px!important}.dropdown-options.w-col-486{width:486px!important}.dropdown-options.w-col-487{width:487px!important}.dropdown-options.w-col-488{width:488px!important}.dropdown-options.w-col-489{width:489px!important}.dropdown-options.w-col-490{width:490px!important}.dropdown-options.w-col-491{width:491px!important}.dropdown-options.w-col-492{width:492px!important}.dropdown-options.w-col-493{width:493px!important}.dropdown-options.w-col-494{width:494px!important}.dropdown-options.w-col-495{width:495px!important}.dropdown-options.w-col-496{width:496px!important}.dropdown-options.w-col-497{width:497px!important}.dropdown-options.w-col-498{width:498px!important}.dropdown-options.w-col-499{width:499px!important}.dropdown-options.w-col-500{width:500px!important}.dropdown-options.w-col-501{width:501px!important}.dropdown-options.w-col-502{width:502px!important}.dropdown-options.w-col-503{width:503px!important}.dropdown-options.w-col-504{width:504px!important}.dropdown-options.w-col-505{width:505px!important}.dropdown-options.w-col-506{width:506px!important}.dropdown-options.w-col-507{width:507px!important}.dropdown-options.w-col-508{width:508px!important}.dropdown-options.w-col-509{width:509px!important}.dropdown-options.w-col-510{width:510px!important}.dropdown-options.w-col-511{width:511px!important}.dropdown-options.w-col-512{width:512px!important}.dropdown-options.w-col-513{width:513px!important}.dropdown-options.w-col-514{width:514px!important}.dropdown-options.w-col-515{width:515px!important}.dropdown-options.w-col-516{width:516px!important}.dropdown-options.w-col-517{width:517px!important}.dropdown-options.w-col-518{width:518px!important}.dropdown-options.w-col-519{width:519px!important}.dropdown-options.w-col-520{width:520px!important}.dropdown-options.w-col-521{width:521px!important}.dropdown-options.w-col-522{width:522px!important}.dropdown-options.w-col-523{width:523px!important}.dropdown-options.w-col-524{width:524px!important}.dropdown-options.w-col-525{width:525px!important}.dropdown-options.w-col-526{width:526px!important}.dropdown-options.w-col-527{width:527px!important}.dropdown-options.w-col-528{width:528px!important}.dropdown-options.w-col-529{width:529px!important}.dropdown-options.w-col-530{width:530px!important}.dropdown-options.w-col-531{width:531px!important}.dropdown-options.w-col-532{width:532px!important}.dropdown-options.w-col-533{width:533px!important}.dropdown-options.w-col-534{width:534px!important}.dropdown-options.w-col-535{width:535px!important}.dropdown-options.w-col-536{width:536px!important}.dropdown-options.w-col-537{width:537px!important}.dropdown-options.w-col-538{width:538px!important}.dropdown-options.w-col-539{width:539px!important}.dropdown-options.w-col-540{width:540px!important}.dropdown-options.w-col-541{width:541px!important}.dropdown-options.w-col-542{width:542px!important}.dropdown-options.w-col-543{width:543px!important}.dropdown-options.w-col-544{width:544px!important}.dropdown-options.w-col-545{width:545px!important}.dropdown-options.w-col-546{width:546px!important}.dropdown-options.w-col-547{width:547px!important}.dropdown-options.w-col-548{width:548px!important}.dropdown-options.w-col-549{width:549px!important}.dropdown-options.w-col-550{width:550px!important}.dropdown-options.w-col-551{width:551px!important}.dropdown-options.w-col-552{width:552px!important}.dropdown-options.w-col-553{width:553px!important}.dropdown-options.w-col-554{width:554px!important}.dropdown-options.w-col-555{width:555px!important}.dropdown-options.w-col-556{width:556px!important}.dropdown-options.w-col-557{width:557px!important}.dropdown-options.w-col-558{width:558px!important}.dropdown-options.w-col-559{width:559px!important}.dropdown-options.w-col-560{width:560px!important}.dropdown-options.w-col-561{width:561px!important}.dropdown-options.w-col-562{width:562px!important}.dropdown-options.w-col-563{width:563px!important}.dropdown-options.w-col-564{width:564px!important}.dropdown-options.w-col-565{width:565px!important}.dropdown-options.w-col-566{width:566px!important}.dropdown-options.w-col-567{width:567px!important}.dropdown-options.w-col-568{width:568px!important}.dropdown-options.w-col-569{width:569px!important}.dropdown-options.w-col-570{width:570px!important}.dropdown-options.w-col-571{width:571px!important}.dropdown-options.w-col-572{width:572px!important}.dropdown-options.w-col-573{width:573px!important}.dropdown-options.w-col-574{width:574px!important}.dropdown-options.w-col-575{width:575px!important}.dropdown-options.w-col-576{width:576px!important}.dropdown-options.w-col-577{width:577px!important}.dropdown-options.w-col-578{width:578px!important}.dropdown-options.w-col-579{width:579px!important}.dropdown-options.w-col-580{width:580px!important}.dropdown-options.w-col-581{width:581px!important}.dropdown-options.w-col-582{width:582px!important}.dropdown-options.w-col-583{width:583px!important}.dropdown-options.w-col-584{width:584px!important}.dropdown-options.w-col-585{width:585px!important}.dropdown-options.w-col-586{width:586px!important}.dropdown-options.w-col-587{width:587px!important}.dropdown-options.w-col-588{width:588px!important}.dropdown-options.w-col-589{width:589px!important}.dropdown-options.w-col-590{width:590px!important}.dropdown-options.w-col-591{width:591px!important}.dropdown-options.w-col-592{width:592px!important}.dropdown-options.w-col-593{width:593px!important}.dropdown-options.w-col-594{width:594px!important}.dropdown-options.w-col-595{width:595px!important}.dropdown-options.w-col-596{width:596px!important}.dropdown-options.w-col-597{width:597px!important}.dropdown-options.w-col-598{width:598px!important}.dropdown-options.w-col-599{width:599px!important}.dropdown-options.w-col-600{width:600px!important}.dropdown-options.w-col-601{width:601px!important}.dropdown-options.w-col-602{width:602px!important}.dropdown-options.w-col-603{width:603px!important}.dropdown-options.w-col-604{width:604px!important}.dropdown-options.w-col-605{width:605px!important}.dropdown-options.w-col-606{width:606px!important}.dropdown-options.w-col-607{width:607px!important}.dropdown-options.w-col-608{width:608px!important}.dropdown-options.w-col-609{width:609px!important}.dropdown-options.w-col-610{width:610px!important}.dropdown-options.w-col-611{width:611px!important}.dropdown-options.w-col-612{width:612px!important}.dropdown-options.w-col-613{width:613px!important}.dropdown-options.w-col-614{width:614px!important}.dropdown-options.w-col-615{width:615px!important}.dropdown-options.w-col-616{width:616px!important}.dropdown-options.w-col-617{width:617px!important}.dropdown-options.w-col-618{width:618px!important}.dropdown-options.w-col-619{width:619px!important}.dropdown-options.w-col-620{width:620px!important}.dropdown-options.w-col-621{width:621px!important}.dropdown-options.w-col-622{width:622px!important}.dropdown-options.w-col-623{width:623px!important}.dropdown-options.w-col-624{width:624px!important}.dropdown-options.w-col-625{width:625px!important}.dropdown-options.w-col-626{width:626px!important}.dropdown-options.w-col-627{width:627px!important}.dropdown-options.w-col-628{width:628px!important}.dropdown-options.w-col-629{width:629px!important}.dropdown-options.w-col-630{width:630px!important}.dropdown-options.w-col-631{width:631px!important}.dropdown-options.w-col-632{width:632px!important}.dropdown-options.w-col-633{width:633px!important}.dropdown-options.w-col-634{width:634px!important}.dropdown-options.w-col-635{width:635px!important}.dropdown-options.w-col-636{width:636px!important}.dropdown-options.w-col-637{width:637px!important}.dropdown-options.w-col-638{width:638px!important}.dropdown-options.w-col-639{width:639px!important}.dropdown-options.w-col-640{width:640px!important}.dropdown-options.w-col-641{width:641px!important}.dropdown-options.w-col-642{width:642px!important}.dropdown-options.w-col-643{width:643px!important}.dropdown-options.w-col-644{width:644px!important}.dropdown-options.w-col-645{width:645px!important}.dropdown-options.w-col-646{width:646px!important}.dropdown-options.w-col-647{width:647px!important}.dropdown-options.w-col-648{width:648px!important}.dropdown-options.w-col-649{width:649px!important}.dropdown-options.w-col-650{width:650px!important}.dropdown-options.w-col-651{width:651px!important}.dropdown-options.w-col-652{width:652px!important}.dropdown-options.w-col-653{width:653px!important}.dropdown-options.w-col-654{width:654px!important}.dropdown-options.w-col-655{width:655px!important}.dropdown-options.w-col-656{width:656px!important}.dropdown-options.w-col-657{width:657px!important}.dropdown-options.w-col-658{width:658px!important}.dropdown-options.w-col-659{width:659px!important}.dropdown-options.w-col-660{width:660px!important}.dropdown-options.w-col-661{width:661px!important}.dropdown-options.w-col-662{width:662px!important}.dropdown-options.w-col-663{width:663px!important}.dropdown-options.w-col-664{width:664px!important}.dropdown-options.w-col-665{width:665px!important}.dropdown-options.w-col-666{width:666px!important}.dropdown-options.w-col-667{width:667px!important}.dropdown-options.w-col-668{width:668px!important}.dropdown-options.w-col-669{width:669px!important}.dropdown-options.w-col-670{width:670px!important}.dropdown-options.w-col-671{width:671px!important}.dropdown-options.w-col-672{width:672px!important}.dropdown-options.w-col-673{width:673px!important}.dropdown-options.w-col-674{width:674px!important}.dropdown-options.w-col-675{width:675px!important}.dropdown-options.w-col-676{width:676px!important}.dropdown-options.w-col-677{width:677px!important}.dropdown-options.w-col-678{width:678px!important}.dropdown-options.w-col-679{width:679px!important}.dropdown-options.w-col-680{width:680px!important}.dropdown-options.w-col-681{width:681px!important}.dropdown-options.w-col-682{width:682px!important}.dropdown-options.w-col-683{width:683px!important}.dropdown-options.w-col-684{width:684px!important}.dropdown-options.w-col-685{width:685px!important}.dropdown-options.w-col-686{width:686px!important}.dropdown-options.w-col-687{width:687px!important}.dropdown-options.w-col-688{width:688px!important}.dropdown-options.w-col-689{width:689px!important}.dropdown-options.w-col-690{width:690px!important}.dropdown-options.w-col-691{width:691px!important}.dropdown-options.w-col-692{width:692px!important}.dropdown-options.w-col-693{width:693px!important}.dropdown-options.w-col-694{width:694px!important}.dropdown-options.w-col-695{width:695px!important}.dropdown-options.w-col-696{width:696px!important}.dropdown-options.w-col-697{width:697px!important}.dropdown-options.w-col-698{width:698px!important}.dropdown-options.w-col-699{width:699px!important}.dropdown-options.w-col-700{width:700px!important}.dropdown-options.w-col-701{width:701px!important}.dropdown-options.w-col-702{width:702px!important}.dropdown-options.w-col-703{width:703px!important}.dropdown-options.w-col-704{width:704px!important}.dropdown-options.w-col-705{width:705px!important}.dropdown-options.w-col-706{width:706px!important}.dropdown-options.w-col-707{width:707px!important}.dropdown-options.w-col-708{width:708px!important}.dropdown-options.w-col-709{width:709px!important}.dropdown-options.w-col-710{width:710px!important}.dropdown-options.w-col-711{width:711px!important}.dropdown-options.w-col-712{width:712px!important}.dropdown-options.w-col-713{width:713px!important}.dropdown-options.w-col-714{width:714px!important}.dropdown-options.w-col-715{width:715px!important}.dropdown-options.w-col-716{width:716px!important}.dropdown-options.w-col-717{width:717px!important}.dropdown-options.w-col-718{width:718px!important}.dropdown-options.w-col-719{width:719px!important}.dropdown-options.w-col-720{width:720px!important}.dropdown-options.w-col-721{width:721px!important}.dropdown-options.w-col-722{width:722px!important}.dropdown-options.w-col-723{width:723px!important}.dropdown-options.w-col-724{width:724px!important}.dropdown-options.w-col-725{width:725px!important}.dropdown-options.w-col-726{width:726px!important}.dropdown-options.w-col-727{width:727px!important}.dropdown-options.w-col-728{width:728px!important}.dropdown-options.w-col-729{width:729px!important}.dropdown-options.w-col-730{width:730px!important}.dropdown-options.w-col-731{width:731px!important}.dropdown-options.w-col-732{width:732px!important}.dropdown-options.w-col-733{width:733px!important}.dropdown-options.w-col-734{width:734px!important}.dropdown-options.w-col-735{width:735px!important}.dropdown-options.w-col-736{width:736px!important}.dropdown-options.w-col-737{width:737px!important}.dropdown-options.w-col-738{width:738px!important}.dropdown-options.w-col-739{width:739px!important}.dropdown-options.w-col-740{width:740px!important}.dropdown-options.w-col-741{width:741px!important}.dropdown-options.w-col-742{width:742px!important}.dropdown-options.w-col-743{width:743px!important}.dropdown-options.w-col-744{width:744px!important}.dropdown-options.w-col-745{width:745px!important}.dropdown-options.w-col-746{width:746px!important}.dropdown-options.w-col-747{width:747px!important}.dropdown-options.w-col-748{width:748px!important}.dropdown-options.w-col-749{width:749px!important}.dropdown-options.w-col-750{width:750px!important}.dropdown-options.w-col-751{width:751px!important}.dropdown-options.w-col-752{width:752px!important}.dropdown-options.w-col-753{width:753px!important}.dropdown-options.w-col-754{width:754px!important}.dropdown-options.w-col-755{width:755px!important}.dropdown-options.w-col-756{width:756px!important}.dropdown-options.w-col-757{width:757px!important}.dropdown-options.w-col-758{width:758px!important}.dropdown-options.w-col-759{width:759px!important}.dropdown-options.w-col-760{width:760px!important}.dropdown-options.w-col-761{width:761px!important}.dropdown-options.w-col-762{width:762px!important}.dropdown-options.w-col-763{width:763px!important}.dropdown-options.w-col-764{width:764px!important}.dropdown-options.w-col-765{width:765px!important}.dropdown-options.w-col-766{width:766px!important}.dropdown-options.w-col-767{width:767px!important}.dropdown-options.w-col-768{width:768px!important}.dropdown-options.w-col-769{width:769px!important}.dropdown-options.w-col-770{width:770px!important}.dropdown-options.w-col-771{width:771px!important}.dropdown-options.w-col-772{width:772px!important}.dropdown-options.w-col-773{width:773px!important}.dropdown-options.w-col-774{width:774px!important}.dropdown-options.w-col-775{width:775px!important}.dropdown-options.w-col-776{width:776px!important}.dropdown-options.w-col-777{width:777px!important}.dropdown-options.w-col-778{width:778px!important}.dropdown-options.w-col-779{width:779px!important}.dropdown-options.w-col-780{width:780px!important}.dropdown-options.w-col-781{width:781px!important}.dropdown-options.w-col-782{width:782px!important}.dropdown-options.w-col-783{width:783px!important}.dropdown-options.w-col-784{width:784px!important}.dropdown-options.w-col-785{width:785px!important}.dropdown-options.w-col-786{width:786px!important}.dropdown-options.w-col-787{width:787px!important}.dropdown-options.w-col-788{width:788px!important}.dropdown-options.w-col-789{width:789px!important}.dropdown-options.w-col-790{width:790px!important}.dropdown-options.w-col-791{width:791px!important}.dropdown-options.w-col-792{width:792px!important}.dropdown-options.w-col-793{width:793px!important}.dropdown-options.w-col-794{width:794px!important}.dropdown-options.w-col-795{width:795px!important}.dropdown-options.w-col-796{width:796px!important}.dropdown-options.w-col-797{width:797px!important}.dropdown-options.w-col-798{width:798px!important}.dropdown-options.w-col-799{width:799px!important}.dropdown-options.w-col-800{width:800px!important}.dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;padding-right:0}.dropdown-options.scroll::-webkit-scrollbar{width:3px}.dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.dropdown-options-fuel-franchise{padding:4px;max-height:300px}.dropdown-options.no-result-container{padding:6px 10px!important}.dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.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,.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,.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,.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}.dropdown-options:not(.dropdown_value) .dropdown-option{color:#fff}.dropdown-options .dropdown-option{padding:0;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0;font-weight:700}.dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#fff;font-size:14px;line-height:18px}.dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#fff;font-size:14px;line-height:18px}.dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.dropdown-options .dropdown-option:hover{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.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}.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}.dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.dropdown-options .dropdown-option.no-result div{padding-top:1px}.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}.dropdown-options .dropdown-option.add-new:hover{color:#fff;background:#3b73ed66}.dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.dropdown-options .dropdown-option.all-assigned .details-template-text,.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}.dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.dropdown-options .dropdown-option.active-label .labels-template-counter,.dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.dropdown-options .dropdown-option.active,.dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.dropdown-options .dropdown-option.active .highlight-text-45632,.dropdown-options .dropdown-option.active-label .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.active .highlight-text-45632:hover,.dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.dropdown-options .dropdown-option.active:not(.payroll-trucks):after,.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}.dropdown-options .dropdown-option.active-label:after{right:35px}.dropdown-options .dropdown-option.last-active{position:relative}.dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.dropdown-options .dropdown-option .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.svg-text-template,.dropdown-options .dropdown-option .svg-text-template{display:flex;align-items:center}.dropdown-options .dropdown-option.svg-text-template.container,.dropdown-options .dropdown-option .svg-text-template.container{padding:0!important}.dropdown-options .dropdown-option.svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text,.dropdown-options .dropdown-option .svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text{padding-left:25px}.dropdown-options .dropdown-option.svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text:after,.dropdown-options .dropdown-option .svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text:after{position:absolute;content:url(/assets/ca-components/svg/common/trailers/ic_hazardous.svg);width:14px;height:10px;left:0}.dropdown-options .dropdown-option.svg-text-template.hazardous,.dropdown-options .dropdown-option .svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.dropdown-options .dropdown-option.svg-text-template.hazardous svg,.dropdown-options .dropdown-option .svg-text-template.hazardous svg{margin-right:5px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo,.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}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px;padding:0!important}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.radiator svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.turbo svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.alignment svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.accompressor svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.aircompressor svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.fuelpump svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.waterpump svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.oilpump svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.brakechamber svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.battery svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-text{position:relative}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-text.truck-text{top:1px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-text.flex-1{flex:1}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text,.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}.dropdown-options .dropdown-option.svg-text-template .colors,.dropdown-options .dropdown-option .svg-text-template .colors{height:18px;width:18px}.dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo,.dropdown-options .dropdown-option .svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text,.dropdown-options .dropdown-option .svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.dropdown-options .dropdown-option.labels-template,.dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.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}.dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.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}.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}.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}.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}.dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.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}.dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.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}.dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.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}.dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.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}.dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.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}.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}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.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}.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}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.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}.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}.dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.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}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.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}.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}.dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.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}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::-moz-selection{background-color:#ccc3!important;color:#ccc6!important}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.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;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.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}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.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}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-option-hovered{border-radius:2px;background-color:#1d1d1d}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-option-hovered .dropdown-subgroup-text{color:#fff!important}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options.selected-option{padding:0 4px}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options.selected-option .dropdown-subgroup-additional-text{padding-right:40px!important}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:not(.selected-option) .dropdown-subgroup-text{color:#fff}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:not(.selected-option) .dropdown-subgroup-additional-text.active{color:#6f9ee0}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.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}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.dropdown-options.svgtext-dispatch-template{top:-4px}.dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.load-dispatcher-template{display:flex;align-items:center;gap:6px}.load-shipper-template{display:grid;grid-template-columns:1fr 1fr;align-items:center;padding-right:5px}.load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.load-shipper-template .load-shipper-status-text.in-option{height:22px}.load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.load-shipper-template div:nth-child(2),.load-shipper-template div:nth-child(3){text-align:right}.load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400;white-space:nowrap;max-width:100%;text-overflow:ellipsis;overflow:hidden}.load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.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}.load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.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}.load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;-moz-column-gap:29px;column-gap:29px}.load-broker-template.in-option{height:26px}.load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:26px}.load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.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}.load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.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}.load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.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}.load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.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}.load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.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}.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}.load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.load-dispatches-ttd-template.active .load-dispatch-driver-rate,.load-dispatches-ttd-template.active .load-dispatch-driver,.load-dispatches-ttd-template.active .load-dispatch-truck,.load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.application-dropdown{position:relative}.application-dropdown .dropdown_value{position:absolute;color:#2f2f2f!important;z-index:9;padding:0 0 0 10px;font-size:14px;line-height:26px;pointer-events:none}.application-dropdown .dropdown_value.open{color:#fff;font-weight:400;opacity:.7}.application-dropdown .dropdown_value.leftIcon{padding-left:37px;line-height:26px}.application-dropdown .dropdown_value.dropdown-value-right-side{text-align:right;padding-right:40px}.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-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .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-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .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-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .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-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-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-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-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"] }]
637
+ ], 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 (\n multiselectItems.length &&\n !inputConfig.isDisabled &&\n !getSuperControl?.disabled\n ) {\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 (\n !inputConfig.isDisabled && !getSuperControl?.disabled\n ) {\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 @if (!searchInputText.value) {\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 <div\n [class.open]=\"isDropDownIsOpen\"\n [class.leftIcon]=\"inputConfig.placeholderIcon\"\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 'svgtext-dispatch-template':\n _template == 'svgtext-dispatch-template',\n 'dropdown-value-right-side': inputConfig.placeholderIconRightSide\n }\"\n class=\"dropdown_value dropdown-options {{\n inputConfig.dropdownWidthClass\n }}\"\n >\n @switch (_template) {\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHES_TTD) {\n @if (activeItem) {\n <div class=\"dropdown-option dropdown-double-column\">\n <app-ca-input-dropdown-load-dispatches-ttd-item\n [index]=\"0\"\n [searchText]=\"searchInputText.value || ''\"\n [activeItem]=\"activeItem\"\n [option]=\"activeItem!\"\n [label]=\"label\"\n >\n </app-ca-input-dropdown-load-dispatches-ttd-item>\n </div>\n }\n }\n @case (dropdownTemplateTypeEnum.LOAD_BROKER) {\n @if (activeItem) {\n <app-ca-input-dropdown-load-broker-item\n [option]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [isInOption]=\"true\"\n [label]=\"label\"\n ></app-ca-input-dropdown-load-broker-item>\n }\n }\n\n @case (dropdownTemplateTypeEnum.LOAD_SHIPPER) {\n @if (activeItem) {\n <app-ca-input-dropdown-load-shipper-item\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [option]=\"activeItem\"\n [isInOption]=\"true\"\n [label]=\"label\"\n ></app-ca-input-dropdown-load-shipper-item>\n }\n }\n\n @case (dropdownTemplateTypeEnum.LOAD_BROKER_CONTACT) {\n @if (activeItem) {\n <div class=\"load-broker-contact-groups\">\n <ca-input-dropdown-load-broker-contact-item\n [activeItem]=\"activeItem\"\n [item]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [isInOption]=\"true\"\n ></ca-input-dropdown-load-broker-contact-item>\n </div>\n }\n }\n\n @case (dropdownTemplateTypeEnum.LOAD_DISPATCHER) {\n @if (activeItem) {\n <app-ca-input-dropdown-load-dispatcher-item\n [option]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [activeItem]=\"activeItem\"\n [label]=\"label\"\n [dropdownWithImage]=\"\n inputConfig.dropdownImageInput\n \"\n [isInOption]=\"true\"\n >\n </app-ca-input-dropdown-load-dispatcher-item>\n }\n }\n\n @default {\n <!-- Special Dropdown Selected SVG with or Without Text -->\n @if (inputConfig.dropdownImageInput && activeItem) {\n <svg-icon\n [src]=\"\n inputConfig.dropdownImageInput!\n | inputDropdownGetIcons: activeItem\n \"\n class=\"dropdown-selected-image {{\n inputConfig.dropdownImageInput?.class\n }}\"\n [ngClass]=\"{\n 'unset-color':\n inputConfig.dropdownImageInput?.class,\n }\"\n [svgStyle]=\"{\n fill: inputConfig.dropdownImageInput\n ? activeItem?.code\n : '#ffffff',\n }\"\n >\n </svg-icon>\n }\n\n @if (\n inputConfig.dropdownImageInput?.withText ||\n !inputConfig.dropdownImageInput\n ) {\n {{ dropdownValue }}\n }\n }\n }\n </div>\n }\n\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 [parentControl]=\"getSuperControl\"\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 !getSuperControl?.disabled) ||\n ((inputConfig?.name == 'Address' ||\n inputConfig?.name == 'RoutingAddress') &&\n !inputConfig.isDisabled &&\n !getSuperControl?.disabled &&\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [dropdownWithImage]=\"inputConfig.dropdownImageInput\"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [inputConfig]=\"inputConfig\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [sort]=\"_sort\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n ></app-ca-input-dropdown-groups>\n }\n\n <!--------------------------- Multiselect Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.MULTISELECT) {\n <app-ca-input-dropdown-multiselect\n #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [lastActiveMultiselectItem]=\"lastActiveMultiselectItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onMultiselectSelect)=\"onMultiselectSelect($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n ></app-ca-input-dropdown-multiselect>\n }\n <!--------------------------- Labels Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.LABELS) {\n <app-ca-input-dropdown-labels\n #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n [inputConfig]=\"inputConfig\"\n [labelMode]=\"labelMode\"\n [canAddNew]=\"_canAddNew\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n ></app-ca-input-dropdown-labels>\n }\n\n <!--------------------------- Dispatch Template --------------------------->\n\n @case (dropdownTemplateTypeEnum.DISPATCH) {\n <app-ca-input-dropdown-dispatch\n #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\n [inputConfig]=\"inputConfig\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n (toggleNestedList)=\"toggleNestedList($event)\"\n (onActiveItemGroup)=\"onActiveItemGroup($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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 #dropdownComponentRef\n [options]=\"\n searchInputText.value || ''\n | caDropdownOptionsPipe\n : _options\n : inputConfig\n : canAddNew\n : label\n : sort\n : _template\n \"\n [activeItem]=\"activeItem\"\n [inputConfig]=\"inputConfig\"\n [searchText]=\"searchInputText.value || ''\"\n (onActiveItem)=\"onActiveItem($event)\"\n [inputHoveredItem]=\"inputHoveredItem\"\n [label]=\"label\"\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}.load-pickup-delivery-popover{top:-34px!important;max-width:400px!important}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#fff}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#fff}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#fff}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.dropdown-menu-popover.bs-popover-end-top .dropdown-container{transform:translate(-4px,-3px)}.dropdown-menu-popover.bs-popover-bottom-end .dropdown-container{transform:translate(3px,-3px)}.dropdown-menu-popover.bs-popover-end-bottom .dropdown-container{transform:translate(-3px,3px)}.dropdown-menu-popover.bs-popover-top-end .dropdown-container{transform:translate(3px,3px)}.dropdown-details-title-card-popover .dropdown-container{transform:translateY(-4px)}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background-color:#42424233!important;color:#424242!important}.text-color-black::selection{background-color:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-muted::selection{background-color:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background-color:#56b4ac33!important;color:#56b4ac!important}.text-color-green-2{color:#259f94!important}.text-color-green-2::-moz-selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-2::selection{background-color:#259f9433!important;color:#259f94!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background-color:#86c9c333!important;color:#86c9c3!important}.text-color-blue-5{color:#3074d3!important}.text-color-blue-5::-moz-selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-5::selection{background-color:#3074d333!important;color:#3074d3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-13::selection{background-color:#6692f133!important;color:#6692f1!important}.text-color-blue-16{color:#e9effd!important}.text-color-blue-16::-moz-selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-16::selection{background-color:#e9effd33!important;color:#e9effd!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background-color:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background-color:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background-color:#e6676733!important;color:#e66767!important}.text-color-red-11{color:#df3c3c!important}.text-color-red-11::-moz-selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-11::selection{background-color:#df3c3c33!important;color:#df3c3c!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background-color:#ed929233!important;color:#ed9292!important}.text-color-yellow{color:#fab15c!important}.text-color-yellow::-moz-selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-yellow::selection{background-color:#fab15c33!important;color:#fab15c!important}.text-color-purple{color:#b370f0!important}.text-color-purple::-moz-selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-purple::selection{background-color:#b370f033!important;color:#b370f0!important}.text-color-special-filter-purple{color:#9e47ec!important}.text-color-special-filter-purple::-moz-selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-special-filter-purple::selection{background-color:#9e47ec33!important;color:#9e47ec!important}.text-color-grey-9{color:#b7b7b7!important}.text-color-grey-9::-moz-selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-grey-9::selection{background-color:#b7b7b733!important;color:#b7b7b7!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background-color:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background-color:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{background-color:#ccc3!important;color:#ccc!important}.text-color-light-grey-6::selection{background-color:#ccc3!important;color:#ccc!important}.text-color-white{color:#fff!important}.text-color-white::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{background-color:#fff3!important;color:#fff!important}.text-color-white-2::selection{background-color:#fff3!important;color:#fff!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-white-4::selection{background-color:#fff3!important;color:#ffffffb2!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw6-2::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{background-color:#dadada33!important;color:#dadada!important}.text-color-bw-9::selection{background-color:#dadada33!important;color:#dadada!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey::selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{background-color:#91919133!important;color:#919191!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{background-color:#91919133!important;color:#919191!important}.text-color-orange-1{color:#ff7043!important}.text-color-orange-1::-moz-selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-1::selection{background-color:#ff704333!important;color:#ff7043!important}.text-color-orange-2{color:#f77d3b!important}.text-color-orange-2::-moz-selection{background-color:#f77d3b33!important;color:#f77d3b!important}.text-color-orange-2::selection{background-color:#f77d3b33!important;color:#f77d3b!important}.text-color-orange-3{color:#ffb097!important}.text-color-orange-3::-moz-selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-orange-3::selection{background-color:#ffb09733!important;color:#ffb097!important}.text-color-brown-1{color:#865e3a!important}.text-color-brown-1::-moz-selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-brown-1::selection{background-color:#865e3a33!important;color:#865e3a!important}.text-color-light-blue-2{color:#1ab5e6!important}.text-color-light-blue-2::-moz-selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-color-light-blue-2::selection{background-color:#1ab5e633!important;color:#1ab5e6!important}.text-hover-white{transition:color .3s ease-in-out ease-in-out}.text-hover-white:hover{color:#fff!important}.text-hover-black{transition:color .3s ease-in-out ease-in-out}.text-hover-black:hover{color:#424242!important}.text-hover-blue-15{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-15:hover{color:#0b49d1!important}.text-hover-blue-18{transition:color .3s ease-in-out ease-in-out}.text-hover-blue-18:hover{color:#3b73ed!important}.text-hover-bw6-2{transition:color .3s ease-in-out ease-in-out}.text-hover-bw6-2:hover{color:#6c6c6c!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-20{font-size:20px!important;line-height:24px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}.font-size-11{font-size:11px!important}.line-height-12{line-height:12px!important}.svg-fill-black svg path,.svg-fill-black svg circle{fill:#424242!important}.svg-fill-black-2 svg path,.svg-fill-black-2 svg circle{fill:#2f2f2f!important}.svg-fill-black-9 svg path,.svg-fill-black-9 svg circle{fill:#1d1d1d!important}.svg-fill-white svg path,.svg-fill-white svg circle{fill:#fff!important}.svg-fill-white-2 svg path,.svg-fill-white-2 svg circle{fill:#fff!important}.svg-fill-muted svg path,.svg-fill-muted svg circle{fill:#919191!important}.svg-fill-bw6-2 svg path,.svg-fill-bw6-2 svg circle{fill:#6c6c6c!important}.svg-fill-bw-9 svg path,.svg-fill-bw-9 svg circle{fill:#dadada!important}.svg-fill-light-grey-2 svg path,.svg-fill-light-grey-2 svg circle{fill:#aaa!important}.svg-fill-light-grey-6 svg path,.svg-fill-light-grey-6 svg circle{fill:#ccc!important}.svg-fill-blue-8 svg path,.svg-fill-blue-8 svg circle{fill:#6692f1!important}.svg-fill-blue-13 svg path,.svg-fill-blue-13 svg circle{fill:#6692f1!important}.svg-fill-blue-14 svg path,.svg-fill-blue-14 svg circle{fill:#3b73ed!important}.svg-fill-blue-17 svg path,.svg-fill-blue-17 svg circle{fill:#bed0f9!important}.svg-fill-blue-19 svg path,.svg-fill-blue-19 svg circle{fill:#92b1f5!important}.svg-fill-blue-26 svg path,.svg-fill-blue-26 svg circle{fill:#4dc5eb!important}.svg-fill-green svg path,.svg-fill-green svg circle{fill:#56b4ac!important}.svg-fill-green-2 svg path,.svg-fill-green-2 svg circle{fill:#259f94!important}.svg-fill-green-4 svg path,.svg-fill-green-4 svg circle{fill:#86c9c3!important}.svg-fill-green-6 svg path,.svg-fill-green-6 svg circle{fill:#77bf56!important}.svg-fill-yellow-1 svg path,.svg-fill-yellow-1 svg circle{fill:#fab15c!important}.svg-fill-yellow-4 svg path,.svg-fill-yellow-4 svg circle{fill:#fbc88b!important}.svg-fill-yellow-5 svg path,.svg-fill-yellow-5 svg circle{fill:#f89b2e!important}.svg-fill-yellow-8 svg path,.svg-fill-yellow-8 svg circle{fill:#daad4f!important}.svg-fill-white-4 svg path,.svg-fill-white-4 svg circle{fill:#ffffffb2!important}.svg-fill-grey svg path,.svg-fill-grey svg circle{fill:#919191!important}.svg-fill-red-10 svg path,.svg-fill-red-10 svg circle{fill:#e66767!important}.svg-fill-red-11 svg path,.svg-fill-red-11 svg circle{fill:#df3c3c!important}.svg-fill-red-13 svg path,.svg-fill-red-13 svg circle{fill:#ed9292!important}.svg-fill-red-14 svg path,.svg-fill-red-14 svg circle{fill:#c20c0c!important}.svg-fill-red-15 svg path,.svg-fill-red-15 svg circle{fill:#f4bebe!important}.svg-fill-red-18 svg path,.svg-fill-red-18 svg circle{fill:#e668a0!important}.svg-fill-orange-4 svg path,.svg-fill-orange-4 svg circle{fill:#ff906d!important}.svg-fill-brown svg path,.svg-fill-brown svg circle{fill:#865e3a!important}.svg-fill-purple-4 svg path,.svg-fill-purple-4 svg circle{fill:#9e47ec!important}.svg-hover-white svg path{transition:fill .3s ease-in-out}.svg-hover-white:hover svg path{fill:#fff!important}.svg-hover-white-2 svg path{transition:fill .3s ease-in-out}.svg-hover-white-2:hover svg path{fill:#fff!important}.svg-hover-muted svg path{transition:fill .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-grey-4 svg path{transition:fill .3s ease-in-out}.svg-hover-grey-4:hover svg path{fill:#ccc!important}.svg-hover-black svg path{transition:fill .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-9 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-9:hover svg path{fill:#0b49d1!important}.svg-hover-blue-10 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-10:hover svg path{fill:#6f9ee033!important}.svg-hover-blue-15 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-blue-17 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-17:hover svg path{fill:#bed0f9!important}.svg-hover-blue-19 svg path{transition:fill .3s ease-in-out}.svg-hover-blue-19:hover svg path{fill:#92b1f5!important}.svg-hover-bw6-2 svg path{transition:fill .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-bw-9 svg path{transition:fill .3s ease-in-out}.svg-hover-bw-9:hover svg path{fill:#dadada!important}.svg-hover-trash-red svg path{transition:fill .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:fill .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-6 svg{width:6px;height:6px}.svg-size-7 svg{width:7px;height:7px}.svg-size-10 svg{width:10px;height:10px}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-17 svg{width:17px;height:17px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-23 svg{width:23px;height:23px}.svg-size-26 svg{width:26px;height:26px}.svg-size-30-26 svg{width:30px;height:26px}.svg-size-44-16 svg{width:44px;height:16px}.svg-size-90 svg{width:90px;height:90px}.background-transparent{background-color:transparent}.background-white{background-color:#fff}.background-black{background-color:#424242}.background-black-2{background-color:#2f2f2f}.background-black-3{background-color:#1d1d1d}.background-gray{background-color:#e5e5e5}.background-gray-2{background-color:#6c6c6c}.background-gray-12{background-color:#eee}.background-light-gray-2{background-color:#aaa}.background-light-gray-6{background-color:#ccc}.background-light-gray-7{background-color:#fbfbfb}.background-grey{background-color:#919191}.background-blue-5{background-color:#3074d3}.background-blue-13{background-color:#6692f1}.background-blue-14,.background-blue-18{background-color:#3b73ed}.background-blue-19{background-color:#92b1f5}.background-blue-20{background-color:#3b73ed33}.background-green-0{background-color:#56b4ac}.background-green-2{background-color:#259f94}.background-green-3{background-color:#b6dfdb}.background-green-4,.background-green-6{background-color:#86c9c3}.background-dark-2{background-color:#91919133}.background-red-19{background-color:#df3d85}.background-purple-4{background-color:#9e47ec}.background-gold-bold{background-color:#cf961d}.background-gold-subtle{background-color:#e4c481}.background-orange-3{background-color:#ffb097}.background-orange-4{background-color:#ff906d}.background-orange-7{background-color:#ffcfc0}.background-yellow-8{background-color:#daad4f}.background-bw5{background-color:#919191}.background-bw6-2{background-color:#6c6c6c}.background-brown-bold{background-color:#865e3a}.background-bw2{background-color:#eee}.background-bw-9{background-color:#dadada}.background-hover-white{transition:background-color .3s ease-in-out}.background-hover-white:hover{background-color:#fff!important}.background-hover-black{transition:background-color .3s ease-in-out}.background-hover-black:hover{background-color:#424242!important}.background-hover-black-1{transition:background-color .3s ease-in-out}.background-hover-black-1:hover{background-color:#424242!important}.background-hover-grey{transition:background-color .3s ease-in-out}.background-hover-grey:hover{background-color:#919191!important}.background-hover-grey-2{transition:background-color .3s ease-in-out}.background-hover-grey-2:hover{background-color:#6c6c6c!important}.background-hover-grey-6{transition:background-color .3s ease-in-out}.background-hover-grey-6:hover{background-color:#91919120!important}.background-hover-dark-2{transition:background-color .3s ease-in-out}.background-hover-dark-2:hover{background-color:#91919133!important}.background-hover-bw2{transition:background-color .3s ease-in-out}.background-hover-bw2:hover{background-color:#eee!important}.background-hover-bw6{transition:background-color .3s ease-in-out}.background-hover-bw6:hover{background-color:#606060!important}.background-hover-bw6-2{transition:background-color .3s ease-in-out}.background-hover-bw6-2:hover{background-color:#6c6c6c!important}.background-hover-blue-13{transition:background-color .3s ease-in-out}.background-hover-blue-13:hover{background-color:#6692f1!important}.background-hover-blue-15{transition:background-color .3s ease-in-out}.background-hover-blue-15:hover{background-color:#0b49d1!important}.background-hover-blue-16{transition:background-color .3s ease-in-out}.background-hover-blue-16:hover{background-color:#e9effd!important}.background-hover-blue-17{transition:background-color .3s ease-in-out}.background-hover-blue-17:hover{background-color:#bed0f9!important}.background-hover-blue-19{transition:background-color .3s ease-in-out}.background-hover-blue-19:hover{background-color:#92b1f5!important}.background-hover-blue-20{transition:background-color .3s ease-in-out}.background-hover-blue-20:hover{background-color:#3b73ed33!important}.background-hover-blue-21{transition:background-color .3s ease-in-out}.background-hover-blue-21:hover{background-color:#3b73ed66!important}.background-hover-red-15{transition:background-color .3s ease-in-out}.background-hover-red-15:hover{background-color:#f4bebe!important}.background-hover-gray{transition:background-color .3s ease-in-out}.background-hover-gray:hover{background-color:#e5e5e5!important}.background-hover-light-grey{transition:background-color .3s ease-in-out}.background-hover-light-grey:hover{background-color:#e5e5e5!important}.background-hover-bw-9{transition:background-color .3s ease-in-out}.background-hover-bw-9:hover{background-color:#dadada!important}.br-1{border-radius:1px}.br-2{border-radius:2px}.br-3{border-radius:3px}.br-10{border-radius:10px}.br-60{border-radius:60px}.br-circle{border-radius:50%}.padding-2{padding:2px}.padding-l-2{padding-left:2px}.padding-r-2{padding-right:2px}.padding-t-2{padding-top:2px}.padding-4{padding:4px}.padding-l-4{padding-left:4px}.padding-r-4{padding-right:4px}.padding-t-4{padding-top:4px}.padding-6{padding:6px}.padding-l-6{padding-left:6px}.padding-r-6{padding-right:6px}.padding-t-6{padding-top:6px}.padding-10{padding:10px}.padding-l-10{padding-left:10px}.padding-r-10{padding-right:10px}.padding-t-10{padding-top:10px}.padding-15{padding:15px}.padding-l-15{padding-left:15px}.padding-r-15{padding-right:15px}.padding-t-15{padding-top:15px}.padding-y-2{padding-top:2px;padding-bottom:2px}.padding-y-4{padding-top:4px;padding-bottom:4px}.padding-y-6{padding-top:6px;padding-bottom:6px}.padding-y-10{padding-top:10px;padding-bottom:10px}.padding-y-15{padding-top:15px;padding-bottom:15px}.padding-x-4{padding-left:4px;padding-right:4px}.padding-x-5{padding-left:5px;padding-right:5px}.padding-x-6{padding-left:6px;padding-right:6px}.padding-x-10{padding-left:10px;padding-right:10px}.margin--2{margin:-2px}.margin-y--2{margin-top:-2px;margin-bottom:-2px}.margin-x--2{margin-left:-2px;margin-right:-2px}.margin-t--2{margin-top:-2px}.margin-r--2{margin-right:-2px}.margin-b--2{margin-bottom:-2px}.margin-l--2{margin-left:-2px}.margin-1{margin:1px}.margin-y-1{margin-top:1px;margin-bottom:1px}.margin-x-1{margin-left:1px;margin-right:1px}.margin-t-1{margin-top:1px}.margin-r-1{margin-right:1px}.margin-b-1{margin-bottom:1px}.margin-l-1{margin-left:1px}.margin-2{margin:2px}.margin-y-2{margin-top:2px;margin-bottom:2px}.margin-x-2{margin-left:2px;margin-right:2px}.margin-t-2{margin-top:2px}.margin-r-2{margin-right:2px}.margin-b-2{margin-bottom:2px}.margin-l-2{margin-left:2px}.margin-4{margin:4px}.margin-y-4{margin-top:4px;margin-bottom:4px}.margin-x-4{margin-left:4px;margin-right:4px}.margin-t-4{margin-top:4px}.margin-r-4{margin-right:4px}.margin-b-4{margin-bottom:4px}.margin-l-4{margin-left:4px}.margin-5{margin:5px}.margin-y-5{margin-top:5px;margin-bottom:5px}.margin-x-5{margin-left:5px;margin-right:5px}.margin-t-5{margin-top:5px}.margin-r-5{margin-right:5px}.margin-b-5{margin-bottom:5px}.margin-l-5{margin-left:5px}.margin-6{margin:6px}.margin-y-6{margin-top:6px;margin-bottom:6px}.margin-x-6{margin-left:6px;margin-right:6px}.margin-t-6{margin-top:6px}.margin-r-6{margin-right:6px}.margin-b-6{margin-bottom:6px}.margin-l-6{margin-left:6px}.margin-8{margin:8px}.margin-y-8{margin-top:8px;margin-bottom:8px}.margin-x-8{margin-left:8px;margin-right:8px}.margin-t-8{margin-top:8px}.margin-r-8{margin-right:8px}.margin-b-8{margin-bottom:8px}.margin-l-8{margin-left:8px}.margin-10{margin:10px}.margin-y-10{margin-top:10px;margin-bottom:10px}.margin-x-10{margin-left:10px;margin-right:10px}.margin-t-10{margin-top:10px}.margin-r-10{margin-right:10px}.margin-b-10{margin-bottom:10px}.margin-l-10{margin-left:10px}.margin-15{margin:15px}.margin-y-15{margin-top:15px;margin-bottom:15px}.margin-x-15{margin-left:15px;margin-right:15px}.margin-t-15{margin-top:15px}.margin-r-15{margin-right:15px}.margin-b-15{margin-bottom:15px}.margin-l-15{margin-left:15px}.margin-22{margin:22px}.margin-y-22{margin-top:22px;margin-bottom:22px}.margin-x-22{margin-left:22px;margin-right:22px}.margin-t-22{margin-top:22px}.margin-r-22{margin-right:22px}.margin-b-22{margin-bottom:22px}.margin-l-22{margin-left:22px}.margin-24{margin:24px}.margin-y-24{margin-top:24px;margin-bottom:24px}.margin-x-24{margin-left:24px;margin-right:24px}.margin-t-24{margin-top:24px}.margin-r-24{margin-right:24px}.margin-b-24{margin-bottom:24px}.margin-l-24{margin-left:24px}.gap-xs{gap:2px}.w-1{width:1px}.h-1{height:1px}.w-2{width:2px}.h-2{height:2px}.w-4{width:4px}.h-4{height:4px}.w-10{width:10px}.h-10{height:10px}.w-14{width:14px}.h-14{height:14px}.w-15{width:15px}.h-15{height:15px}.w-18{width:18px}.h-18{height:18px}.w-22{width:22px}.h-22{height:22px}.w-26{width:26px}.h-26{height:26px}.w-31{width:31px}.h-31{height:31px}.w-32{width:32px}.h-32{height:32px}.w-36{width:36px}.h-36{height:36px}.w-116{width:116px}.h-116{height:116px}.w-120{width:120px}.h-120{height:120px}.w-fit-content{width:fit-content}.filter-dropdown-popover{width:260px;position:relative;top:-4px;left:-4px}.filter-dropdown-popover-max-height{max-height:360px}.filter-dropdown-list{max-height:260px;overflow-y:auto}.filter-dropdown-list-icon{height:26px;transition:background-color .3s ease-in-out}.filter-dropdown-list-icon-value{height:14px;width:14px}.filter-dropdown-list-icon-remove{display:none}.filter-dropdown-list-icon:hover{background-color:#424242}.filter-dropdown-list-icon:hover .filter-dropdown-icon-count{display:none}.filter-dropdown-list-icon-selected:hover{background-color:#0b49d1}.filter-dropdown-list-item-icons{transition:opacity .3s ease-in-out;opacity:0}.filter-dropdown-list-item-status-circle{height:10px;width:10px}.filter-dropdown-list-item-remove{display:none}.filter-dropdown-list-item:hover{background-color:#424242}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons{opacity:1}.filter-dropdown-list-item:hover .filter-dropdown-list-item-icons svg path{fill:var(--svg-fill-color, #e66767)}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove{display:flex}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-remove svg path{fill:#e66767!important}.filter-dropdown-list-item-hover:hover .filter-dropdown-list-item-count{display:none!important}.filter-dropdown-icon{height:26px;width:26px}.filter-dropdown-count{height:14px;width:14px}.filter-dropdown-count-remove,.filter-dropdown-count-hover:hover .filter-dropdown-count-value{display:none}.filter-dropdown-count-hover:hover .filter-dropdown-count-remove{display:flex}.filter-dropdown-button{height:26px}.filter-dropdown-footer-button{color:#dadada;transition:color .3s ease-in-out,background-color .3s ease-in-out;height:18px;width:50%}.filter-dropdown-footer-button-set{color:#fff;background-color:#3b73ed}.filter-dropdown-footer-button-set:hover{background-color:#e9effd;color:#0b49d1}.filter-dropdown-footer-button-clear{color:#dadada}.filter-dropdown-footer-button-clear:hover{background-color:#eee;color:#424242}.filter-dropdown-list-badge{min-width:18px}.h-7{height:7px!important;min-height:7px!important}.h-8{height:8px!important;min-height:8px!important}.h-10{height:10px!important;min-height:10px!important}.h-12{height:12px!important;min-height:12px!important}.h-14{height:14px!important;min-height:14px!important}.h-15{height:15px!important;min-height:15px!important}.h-16{height:16px!important;min-height:16px!important}.h-18{height:18px!important;min-height:18px!important}.h-22{height:22px!important;min-height:22px!important}.h-24{height:24px!important;min-height:24px!important}.h-26{height:26px!important;min-height:26px!important}.h-30{height:30px!important;min-height:30px!important}.h-34{height:34px!important;min-height:34px!important}.h-37{height:37px!important;min-height:37px!important}.h-40{height:40px!important;min-height:40px!important}.h-42{height:42px!important;min-height:42px!important}.h-44{height:44px!important;min-height:44px!important}.h-52{height:52px!important;min-height:52px!important}.h-80{height:80px!important;min-height:80px!important}.h-160{height:160px!important;min-height:160px!important}.h-486{height:486px!important;min-height:486px!important}.h-800{height:800px!important;min-height:800px!important}.h-960{height:960px!important;min-height:960px!important}.w-2{width:2px!important;min-width:2px!important}.w-7{width:7px!important;min-width:7px!important}.w-8{width:8px!important;min-width:8px!important}.w-10{width:10px!important;min-width:10px!important}.w-12{width:12px!important;min-width:12px!important}.w-15{width:15px!important;min-width:15px!important}.w-18{width:18px!important;min-width:18px!important}.w-22{width:22px!important;min-width:22px!important}.w-24{width:24px!important;min-width:24px!important}.w-26{width:26px!important;min-width:26px!important}.w-29{width:29px!important;min-width:29px!important}.w-30{width:30px!important;min-width:30px!important}.w-36{width:36px!important;min-width:36px!important}.w-40{width:40px!important;min-width:40px!important}.w-42{width:42px!important;min-width:42px!important}.w-46{width:46px!important;min-width:46px!important}.w-49{width:49px!important;min-width:49px!important}.w-57{width:57px!important;min-width:57px!important}.w-60{width:60px!important;min-width:60px!important}.w-68{width:68px!important;min-width:68px!important}.w-70{width:70px!important;min-width:70px!important}.w-71{width:71px!important;min-width:71px!important}.w-78{width:78px!important;min-width:78px!important}.w-80{width:80px!important;min-width:80px!important}.w-83{width:83px!important;min-width:83px!important}.w-84{width:84px!important;min-width:84px!important}.w-88{width:88px!important;min-width:88px!important}.w-90{width:90px!important;min-width:90px!important}.w-91{width:91px!important;min-width:91px!important}.w-93{width:93px!important;min-width:93px!important}.w-98{width:98px!important;min-width:98px!important}.w-101{width:101px!important;min-width:101px!important}.w-106{width:106px!important;min-width:106px!important}.w-108{width:108px!important;min-width:108px!important}.w-116{width:116px!important;min-width:116px!important}.w-126{width:126px!important;min-width:126px!important}.w-144{width:144px!important;min-width:144px!important}.w-155{width:155px!important;min-width:155px!important}.w-172{width:172px!important;min-width:172px!important}.w-179{width:179px!important;min-width:179px!important}.w-202{width:202px!important;min-width:202px!important}.w-214{width:214px!important;min-width:214px!important}.w-223{width:223px!important;min-width:223px!important}.w-264{width:264px!important;min-width:264px!important}.w-268{width:268px!important;min-width:268px!important}.w-272{width:272px!important;min-width:272px!important}.w-277{width:277px!important;min-width:277px!important}.w-334{width:334px!important;min-width:334px!important}.w-442{width:442px!important;min-width:442px!important}.w-462{width:462px!important;min-width:462px!important}.w-612{width:612px!important;min-width:612px!important}.w-616{width:616px!important;min-width:616px!important}.w-620{width:620px!important;min-width:620px!important}.min-w-18{min-width:18px}.flex-1{flex:1}.w-33{width:33%}.w-40p{width:40%}.w-90p{width:90%}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.c-pointer{cursor:pointer}.pointer-events-none{pointer-events:none}.ca-scroll-bar{overflow-y:scroll}.ca-scroll-bar::-webkit-scrollbar{width:2px}.ca-scroll-bar::-webkit-scrollbar-thumb{background:#ccc;border-radius:1px}.ca-scroll-bar::-webkit-scrollbar-track{background:#2f2f2f}.place-items-center{justify-content:center;align-items:center}.prevent-text-selection{-ms-user-select:none;-webkit-user-select:none;user-select:none;-moz-user-select:none}@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}}.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}.dropdown-options.dropdown_value{background-color:transparent!important;top:0;left:0}.dropdown-options.w-col-1{width:1px!important}.dropdown-options.w-col-2{width:2px!important}.dropdown-options.w-col-3{width:3px!important}.dropdown-options.w-col-4{width:4px!important}.dropdown-options.w-col-5{width:5px!important}.dropdown-options.w-col-6{width:6px!important}.dropdown-options.w-col-7{width:7px!important}.dropdown-options.w-col-8{width:8px!important}.dropdown-options.w-col-9{width:9px!important}.dropdown-options.w-col-10{width:10px!important}.dropdown-options.w-col-11{width:11px!important}.dropdown-options.w-col-12{width:12px!important}.dropdown-options.w-col-13{width:13px!important}.dropdown-options.w-col-14{width:14px!important}.dropdown-options.w-col-15{width:15px!important}.dropdown-options.w-col-16{width:16px!important}.dropdown-options.w-col-17{width:17px!important}.dropdown-options.w-col-18{width:18px!important}.dropdown-options.w-col-19{width:19px!important}.dropdown-options.w-col-20{width:20px!important}.dropdown-options.w-col-21{width:21px!important}.dropdown-options.w-col-22{width:22px!important}.dropdown-options.w-col-23{width:23px!important}.dropdown-options.w-col-24{width:24px!important}.dropdown-options.w-col-25{width:25px!important}.dropdown-options.w-col-26{width:26px!important}.dropdown-options.w-col-27{width:27px!important}.dropdown-options.w-col-28{width:28px!important}.dropdown-options.w-col-29{width:29px!important}.dropdown-options.w-col-30{width:30px!important}.dropdown-options.w-col-31{width:31px!important}.dropdown-options.w-col-32{width:32px!important}.dropdown-options.w-col-33{width:33px!important}.dropdown-options.w-col-34{width:34px!important}.dropdown-options.w-col-35{width:35px!important}.dropdown-options.w-col-36{width:36px!important}.dropdown-options.w-col-37{width:37px!important}.dropdown-options.w-col-38{width:38px!important}.dropdown-options.w-col-39{width:39px!important}.dropdown-options.w-col-40{width:40px!important}.dropdown-options.w-col-41{width:41px!important}.dropdown-options.w-col-42{width:42px!important}.dropdown-options.w-col-43{width:43px!important}.dropdown-options.w-col-44{width:44px!important}.dropdown-options.w-col-45{width:45px!important}.dropdown-options.w-col-46{width:46px!important}.dropdown-options.w-col-47{width:47px!important}.dropdown-options.w-col-48{width:48px!important}.dropdown-options.w-col-49{width:49px!important}.dropdown-options.w-col-50{width:50px!important}.dropdown-options.w-col-51{width:51px!important}.dropdown-options.w-col-52{width:52px!important}.dropdown-options.w-col-53{width:53px!important}.dropdown-options.w-col-54{width:54px!important}.dropdown-options.w-col-55{width:55px!important}.dropdown-options.w-col-56{width:56px!important}.dropdown-options.w-col-57{width:57px!important}.dropdown-options.w-col-58{width:58px!important}.dropdown-options.w-col-59{width:59px!important}.dropdown-options.w-col-60{width:60px!important}.dropdown-options.w-col-61{width:61px!important}.dropdown-options.w-col-62{width:62px!important}.dropdown-options.w-col-63{width:63px!important}.dropdown-options.w-col-64{width:64px!important}.dropdown-options.w-col-65{width:65px!important}.dropdown-options.w-col-66{width:66px!important}.dropdown-options.w-col-67{width:67px!important}.dropdown-options.w-col-68{width:68px!important}.dropdown-options.w-col-69{width:69px!important}.dropdown-options.w-col-70{width:70px!important}.dropdown-options.w-col-71{width:71px!important}.dropdown-options.w-col-72{width:72px!important}.dropdown-options.w-col-73{width:73px!important}.dropdown-options.w-col-74{width:74px!important}.dropdown-options.w-col-75{width:75px!important}.dropdown-options.w-col-76{width:76px!important}.dropdown-options.w-col-77{width:77px!important}.dropdown-options.w-col-78{width:78px!important}.dropdown-options.w-col-79{width:79px!important}.dropdown-options.w-col-80{width:80px!important}.dropdown-options.w-col-81{width:81px!important}.dropdown-options.w-col-82{width:82px!important}.dropdown-options.w-col-83{width:83px!important}.dropdown-options.w-col-84{width:84px!important}.dropdown-options.w-col-85{width:85px!important}.dropdown-options.w-col-86{width:86px!important}.dropdown-options.w-col-87{width:87px!important}.dropdown-options.w-col-88{width:88px!important}.dropdown-options.w-col-89{width:89px!important}.dropdown-options.w-col-90{width:90px!important}.dropdown-options.w-col-91{width:91px!important}.dropdown-options.w-col-92{width:92px!important}.dropdown-options.w-col-93{width:93px!important}.dropdown-options.w-col-94{width:94px!important}.dropdown-options.w-col-95{width:95px!important}.dropdown-options.w-col-96{width:96px!important}.dropdown-options.w-col-97{width:97px!important}.dropdown-options.w-col-98{width:98px!important}.dropdown-options.w-col-99{width:99px!important}.dropdown-options.w-col-100{width:100px!important}.dropdown-options.w-col-101{width:101px!important}.dropdown-options.w-col-102{width:102px!important}.dropdown-options.w-col-103{width:103px!important}.dropdown-options.w-col-104{width:104px!important}.dropdown-options.w-col-105{width:105px!important}.dropdown-options.w-col-106{width:106px!important}.dropdown-options.w-col-107{width:107px!important}.dropdown-options.w-col-108{width:108px!important}.dropdown-options.w-col-109{width:109px!important}.dropdown-options.w-col-110{width:110px!important}.dropdown-options.w-col-111{width:111px!important}.dropdown-options.w-col-112{width:112px!important}.dropdown-options.w-col-113{width:113px!important}.dropdown-options.w-col-114{width:114px!important}.dropdown-options.w-col-115{width:115px!important}.dropdown-options.w-col-116{width:116px!important}.dropdown-options.w-col-117{width:117px!important}.dropdown-options.w-col-118{width:118px!important}.dropdown-options.w-col-119{width:119px!important}.dropdown-options.w-col-120{width:120px!important}.dropdown-options.w-col-121{width:121px!important}.dropdown-options.w-col-122{width:122px!important}.dropdown-options.w-col-123{width:123px!important}.dropdown-options.w-col-124{width:124px!important}.dropdown-options.w-col-125{width:125px!important}.dropdown-options.w-col-126{width:126px!important}.dropdown-options.w-col-127{width:127px!important}.dropdown-options.w-col-128{width:128px!important}.dropdown-options.w-col-129{width:129px!important}.dropdown-options.w-col-130{width:130px!important}.dropdown-options.w-col-131{width:131px!important}.dropdown-options.w-col-132{width:132px!important}.dropdown-options.w-col-133{width:133px!important}.dropdown-options.w-col-134{width:134px!important}.dropdown-options.w-col-135{width:135px!important}.dropdown-options.w-col-136{width:136px!important}.dropdown-options.w-col-137{width:137px!important}.dropdown-options.w-col-138{width:138px!important}.dropdown-options.w-col-139{width:139px!important}.dropdown-options.w-col-140{width:140px!important}.dropdown-options.w-col-141{width:141px!important}.dropdown-options.w-col-142{width:142px!important}.dropdown-options.w-col-143{width:143px!important}.dropdown-options.w-col-144{width:144px!important}.dropdown-options.w-col-145{width:145px!important}.dropdown-options.w-col-146{width:146px!important}.dropdown-options.w-col-147{width:147px!important}.dropdown-options.w-col-148{width:148px!important}.dropdown-options.w-col-149{width:149px!important}.dropdown-options.w-col-150{width:150px!important}.dropdown-options.w-col-151{width:151px!important}.dropdown-options.w-col-152{width:152px!important}.dropdown-options.w-col-153{width:153px!important}.dropdown-options.w-col-154{width:154px!important}.dropdown-options.w-col-155{width:155px!important}.dropdown-options.w-col-156{width:156px!important}.dropdown-options.w-col-157{width:157px!important}.dropdown-options.w-col-158{width:158px!important}.dropdown-options.w-col-159{width:159px!important}.dropdown-options.w-col-160{width:160px!important}.dropdown-options.w-col-161{width:161px!important}.dropdown-options.w-col-162{width:162px!important}.dropdown-options.w-col-163{width:163px!important}.dropdown-options.w-col-164{width:164px!important}.dropdown-options.w-col-165{width:165px!important}.dropdown-options.w-col-166{width:166px!important}.dropdown-options.w-col-167{width:167px!important}.dropdown-options.w-col-168{width:168px!important}.dropdown-options.w-col-169{width:169px!important}.dropdown-options.w-col-170{width:170px!important}.dropdown-options.w-col-171{width:171px!important}.dropdown-options.w-col-172{width:172px!important}.dropdown-options.w-col-173{width:173px!important}.dropdown-options.w-col-174{width:174px!important}.dropdown-options.w-col-175{width:175px!important}.dropdown-options.w-col-176{width:176px!important}.dropdown-options.w-col-177{width:177px!important}.dropdown-options.w-col-178{width:178px!important}.dropdown-options.w-col-179{width:179px!important}.dropdown-options.w-col-180{width:180px!important}.dropdown-options.w-col-181{width:181px!important}.dropdown-options.w-col-182{width:182px!important}.dropdown-options.w-col-183{width:183px!important}.dropdown-options.w-col-184{width:184px!important}.dropdown-options.w-col-185{width:185px!important}.dropdown-options.w-col-186{width:186px!important}.dropdown-options.w-col-187{width:187px!important}.dropdown-options.w-col-188{width:188px!important}.dropdown-options.w-col-189{width:189px!important}.dropdown-options.w-col-190{width:190px!important}.dropdown-options.w-col-191{width:191px!important}.dropdown-options.w-col-192{width:192px!important}.dropdown-options.w-col-193{width:193px!important}.dropdown-options.w-col-194{width:194px!important}.dropdown-options.w-col-195{width:195px!important}.dropdown-options.w-col-196{width:196px!important}.dropdown-options.w-col-197{width:197px!important}.dropdown-options.w-col-198{width:198px!important}.dropdown-options.w-col-199{width:199px!important}.dropdown-options.w-col-200{width:200px!important}.dropdown-options.w-col-201{width:201px!important}.dropdown-options.w-col-202{width:202px!important}.dropdown-options.w-col-203{width:203px!important}.dropdown-options.w-col-204{width:204px!important}.dropdown-options.w-col-205{width:205px!important}.dropdown-options.w-col-206{width:206px!important}.dropdown-options.w-col-207{width:207px!important}.dropdown-options.w-col-208{width:208px!important}.dropdown-options.w-col-209{width:209px!important}.dropdown-options.w-col-210{width:210px!important}.dropdown-options.w-col-211{width:211px!important}.dropdown-options.w-col-212{width:212px!important}.dropdown-options.w-col-213{width:213px!important}.dropdown-options.w-col-214{width:214px!important}.dropdown-options.w-col-215{width:215px!important}.dropdown-options.w-col-216{width:216px!important}.dropdown-options.w-col-217{width:217px!important}.dropdown-options.w-col-218{width:218px!important}.dropdown-options.w-col-219{width:219px!important}.dropdown-options.w-col-220{width:220px!important}.dropdown-options.w-col-221{width:221px!important}.dropdown-options.w-col-222{width:222px!important}.dropdown-options.w-col-223{width:223px!important}.dropdown-options.w-col-224{width:224px!important}.dropdown-options.w-col-225{width:225px!important}.dropdown-options.w-col-226{width:226px!important}.dropdown-options.w-col-227{width:227px!important}.dropdown-options.w-col-228{width:228px!important}.dropdown-options.w-col-229{width:229px!important}.dropdown-options.w-col-230{width:230px!important}.dropdown-options.w-col-231{width:231px!important}.dropdown-options.w-col-232{width:232px!important}.dropdown-options.w-col-233{width:233px!important}.dropdown-options.w-col-234{width:234px!important}.dropdown-options.w-col-235{width:235px!important}.dropdown-options.w-col-236{width:236px!important}.dropdown-options.w-col-237{width:237px!important}.dropdown-options.w-col-238{width:238px!important}.dropdown-options.w-col-239{width:239px!important}.dropdown-options.w-col-240{width:240px!important}.dropdown-options.w-col-241{width:241px!important}.dropdown-options.w-col-242{width:242px!important}.dropdown-options.w-col-243{width:243px!important}.dropdown-options.w-col-244{width:244px!important}.dropdown-options.w-col-245{width:245px!important}.dropdown-options.w-col-246{width:246px!important}.dropdown-options.w-col-247{width:247px!important}.dropdown-options.w-col-248{width:248px!important}.dropdown-options.w-col-249{width:249px!important}.dropdown-options.w-col-250{width:250px!important}.dropdown-options.w-col-251{width:251px!important}.dropdown-options.w-col-252{width:252px!important}.dropdown-options.w-col-253{width:253px!important}.dropdown-options.w-col-254{width:254px!important}.dropdown-options.w-col-255{width:255px!important}.dropdown-options.w-col-256{width:256px!important}.dropdown-options.w-col-257{width:257px!important}.dropdown-options.w-col-258{width:258px!important}.dropdown-options.w-col-259{width:259px!important}.dropdown-options.w-col-260{width:260px!important}.dropdown-options.w-col-261{width:261px!important}.dropdown-options.w-col-262{width:262px!important}.dropdown-options.w-col-263{width:263px!important}.dropdown-options.w-col-264{width:264px!important}.dropdown-options.w-col-265{width:265px!important}.dropdown-options.w-col-266{width:266px!important}.dropdown-options.w-col-267{width:267px!important}.dropdown-options.w-col-268{width:268px!important}.dropdown-options.w-col-269{width:269px!important}.dropdown-options.w-col-270{width:270px!important}.dropdown-options.w-col-271{width:271px!important}.dropdown-options.w-col-272{width:272px!important}.dropdown-options.w-col-273{width:273px!important}.dropdown-options.w-col-274{width:274px!important}.dropdown-options.w-col-275{width:275px!important}.dropdown-options.w-col-276{width:276px!important}.dropdown-options.w-col-277{width:277px!important}.dropdown-options.w-col-278{width:278px!important}.dropdown-options.w-col-279{width:279px!important}.dropdown-options.w-col-280{width:280px!important}.dropdown-options.w-col-281{width:281px!important}.dropdown-options.w-col-282{width:282px!important}.dropdown-options.w-col-283{width:283px!important}.dropdown-options.w-col-284{width:284px!important}.dropdown-options.w-col-285{width:285px!important}.dropdown-options.w-col-286{width:286px!important}.dropdown-options.w-col-287{width:287px!important}.dropdown-options.w-col-288{width:288px!important}.dropdown-options.w-col-289{width:289px!important}.dropdown-options.w-col-290{width:290px!important}.dropdown-options.w-col-291{width:291px!important}.dropdown-options.w-col-292{width:292px!important}.dropdown-options.w-col-293{width:293px!important}.dropdown-options.w-col-294{width:294px!important}.dropdown-options.w-col-295{width:295px!important}.dropdown-options.w-col-296{width:296px!important}.dropdown-options.w-col-297{width:297px!important}.dropdown-options.w-col-298{width:298px!important}.dropdown-options.w-col-299{width:299px!important}.dropdown-options.w-col-300{width:300px!important}.dropdown-options.w-col-301{width:301px!important}.dropdown-options.w-col-302{width:302px!important}.dropdown-options.w-col-303{width:303px!important}.dropdown-options.w-col-304{width:304px!important}.dropdown-options.w-col-305{width:305px!important}.dropdown-options.w-col-306{width:306px!important}.dropdown-options.w-col-307{width:307px!important}.dropdown-options.w-col-308{width:308px!important}.dropdown-options.w-col-309{width:309px!important}.dropdown-options.w-col-310{width:310px!important}.dropdown-options.w-col-311{width:311px!important}.dropdown-options.w-col-312{width:312px!important}.dropdown-options.w-col-313{width:313px!important}.dropdown-options.w-col-314{width:314px!important}.dropdown-options.w-col-315{width:315px!important}.dropdown-options.w-col-316{width:316px!important}.dropdown-options.w-col-317{width:317px!important}.dropdown-options.w-col-318{width:318px!important}.dropdown-options.w-col-319{width:319px!important}.dropdown-options.w-col-320{width:320px!important}.dropdown-options.w-col-321{width:321px!important}.dropdown-options.w-col-322{width:322px!important}.dropdown-options.w-col-323{width:323px!important}.dropdown-options.w-col-324{width:324px!important}.dropdown-options.w-col-325{width:325px!important}.dropdown-options.w-col-326{width:326px!important}.dropdown-options.w-col-327{width:327px!important}.dropdown-options.w-col-328{width:328px!important}.dropdown-options.w-col-329{width:329px!important}.dropdown-options.w-col-330{width:330px!important}.dropdown-options.w-col-331{width:331px!important}.dropdown-options.w-col-332{width:332px!important}.dropdown-options.w-col-333{width:333px!important}.dropdown-options.w-col-334{width:334px!important}.dropdown-options.w-col-335{width:335px!important}.dropdown-options.w-col-336{width:336px!important}.dropdown-options.w-col-337{width:337px!important}.dropdown-options.w-col-338{width:338px!important}.dropdown-options.w-col-339{width:339px!important}.dropdown-options.w-col-340{width:340px!important}.dropdown-options.w-col-341{width:341px!important}.dropdown-options.w-col-342{width:342px!important}.dropdown-options.w-col-343{width:343px!important}.dropdown-options.w-col-344{width:344px!important}.dropdown-options.w-col-345{width:345px!important}.dropdown-options.w-col-346{width:346px!important}.dropdown-options.w-col-347{width:347px!important}.dropdown-options.w-col-348{width:348px!important}.dropdown-options.w-col-349{width:349px!important}.dropdown-options.w-col-350{width:350px!important}.dropdown-options.w-col-351{width:351px!important}.dropdown-options.w-col-352{width:352px!important}.dropdown-options.w-col-353{width:353px!important}.dropdown-options.w-col-354{width:354px!important}.dropdown-options.w-col-355{width:355px!important}.dropdown-options.w-col-356{width:356px!important}.dropdown-options.w-col-357{width:357px!important}.dropdown-options.w-col-358{width:358px!important}.dropdown-options.w-col-359{width:359px!important}.dropdown-options.w-col-360{width:360px!important}.dropdown-options.w-col-361{width:361px!important}.dropdown-options.w-col-362{width:362px!important}.dropdown-options.w-col-363{width:363px!important}.dropdown-options.w-col-364{width:364px!important}.dropdown-options.w-col-365{width:365px!important}.dropdown-options.w-col-366{width:366px!important}.dropdown-options.w-col-367{width:367px!important}.dropdown-options.w-col-368{width:368px!important}.dropdown-options.w-col-369{width:369px!important}.dropdown-options.w-col-370{width:370px!important}.dropdown-options.w-col-371{width:371px!important}.dropdown-options.w-col-372{width:372px!important}.dropdown-options.w-col-373{width:373px!important}.dropdown-options.w-col-374{width:374px!important}.dropdown-options.w-col-375{width:375px!important}.dropdown-options.w-col-376{width:376px!important}.dropdown-options.w-col-377{width:377px!important}.dropdown-options.w-col-378{width:378px!important}.dropdown-options.w-col-379{width:379px!important}.dropdown-options.w-col-380{width:380px!important}.dropdown-options.w-col-381{width:381px!important}.dropdown-options.w-col-382{width:382px!important}.dropdown-options.w-col-383{width:383px!important}.dropdown-options.w-col-384{width:384px!important}.dropdown-options.w-col-385{width:385px!important}.dropdown-options.w-col-386{width:386px!important}.dropdown-options.w-col-387{width:387px!important}.dropdown-options.w-col-388{width:388px!important}.dropdown-options.w-col-389{width:389px!important}.dropdown-options.w-col-390{width:390px!important}.dropdown-options.w-col-391{width:391px!important}.dropdown-options.w-col-392{width:392px!important}.dropdown-options.w-col-393{width:393px!important}.dropdown-options.w-col-394{width:394px!important}.dropdown-options.w-col-395{width:395px!important}.dropdown-options.w-col-396{width:396px!important}.dropdown-options.w-col-397{width:397px!important}.dropdown-options.w-col-398{width:398px!important}.dropdown-options.w-col-399{width:399px!important}.dropdown-options.w-col-400{width:400px!important}.dropdown-options.w-col-401{width:401px!important}.dropdown-options.w-col-402{width:402px!important}.dropdown-options.w-col-403{width:403px!important}.dropdown-options.w-col-404{width:404px!important}.dropdown-options.w-col-405{width:405px!important}.dropdown-options.w-col-406{width:406px!important}.dropdown-options.w-col-407{width:407px!important}.dropdown-options.w-col-408{width:408px!important}.dropdown-options.w-col-409{width:409px!important}.dropdown-options.w-col-410{width:410px!important}.dropdown-options.w-col-411{width:411px!important}.dropdown-options.w-col-412{width:412px!important}.dropdown-options.w-col-413{width:413px!important}.dropdown-options.w-col-414{width:414px!important}.dropdown-options.w-col-415{width:415px!important}.dropdown-options.w-col-416{width:416px!important}.dropdown-options.w-col-417{width:417px!important}.dropdown-options.w-col-418{width:418px!important}.dropdown-options.w-col-419{width:419px!important}.dropdown-options.w-col-420{width:420px!important}.dropdown-options.w-col-421{width:421px!important}.dropdown-options.w-col-422{width:422px!important}.dropdown-options.w-col-423{width:423px!important}.dropdown-options.w-col-424{width:424px!important}.dropdown-options.w-col-425{width:425px!important}.dropdown-options.w-col-426{width:426px!important}.dropdown-options.w-col-427{width:427px!important}.dropdown-options.w-col-428{width:428px!important}.dropdown-options.w-col-429{width:429px!important}.dropdown-options.w-col-430{width:430px!important}.dropdown-options.w-col-431{width:431px!important}.dropdown-options.w-col-432{width:432px!important}.dropdown-options.w-col-433{width:433px!important}.dropdown-options.w-col-434{width:434px!important}.dropdown-options.w-col-435{width:435px!important}.dropdown-options.w-col-436{width:436px!important}.dropdown-options.w-col-437{width:437px!important}.dropdown-options.w-col-438{width:438px!important}.dropdown-options.w-col-439{width:439px!important}.dropdown-options.w-col-440{width:440px!important}.dropdown-options.w-col-441{width:441px!important}.dropdown-options.w-col-442{width:442px!important}.dropdown-options.w-col-443{width:443px!important}.dropdown-options.w-col-444{width:444px!important}.dropdown-options.w-col-445{width:445px!important}.dropdown-options.w-col-446{width:446px!important}.dropdown-options.w-col-447{width:447px!important}.dropdown-options.w-col-448{width:448px!important}.dropdown-options.w-col-449{width:449px!important}.dropdown-options.w-col-450{width:450px!important}.dropdown-options.w-col-451{width:451px!important}.dropdown-options.w-col-452{width:452px!important}.dropdown-options.w-col-453{width:453px!important}.dropdown-options.w-col-454{width:454px!important}.dropdown-options.w-col-455{width:455px!important}.dropdown-options.w-col-456{width:456px!important}.dropdown-options.w-col-457{width:457px!important}.dropdown-options.w-col-458{width:458px!important}.dropdown-options.w-col-459{width:459px!important}.dropdown-options.w-col-460{width:460px!important}.dropdown-options.w-col-461{width:461px!important}.dropdown-options.w-col-462{width:462px!important}.dropdown-options.w-col-463{width:463px!important}.dropdown-options.w-col-464{width:464px!important}.dropdown-options.w-col-465{width:465px!important}.dropdown-options.w-col-466{width:466px!important}.dropdown-options.w-col-467{width:467px!important}.dropdown-options.w-col-468{width:468px!important}.dropdown-options.w-col-469{width:469px!important}.dropdown-options.w-col-470{width:470px!important}.dropdown-options.w-col-471{width:471px!important}.dropdown-options.w-col-472{width:472px!important}.dropdown-options.w-col-473{width:473px!important}.dropdown-options.w-col-474{width:474px!important}.dropdown-options.w-col-475{width:475px!important}.dropdown-options.w-col-476{width:476px!important}.dropdown-options.w-col-477{width:477px!important}.dropdown-options.w-col-478{width:478px!important}.dropdown-options.w-col-479{width:479px!important}.dropdown-options.w-col-480{width:480px!important}.dropdown-options.w-col-481{width:481px!important}.dropdown-options.w-col-482{width:482px!important}.dropdown-options.w-col-483{width:483px!important}.dropdown-options.w-col-484{width:484px!important}.dropdown-options.w-col-485{width:485px!important}.dropdown-options.w-col-486{width:486px!important}.dropdown-options.w-col-487{width:487px!important}.dropdown-options.w-col-488{width:488px!important}.dropdown-options.w-col-489{width:489px!important}.dropdown-options.w-col-490{width:490px!important}.dropdown-options.w-col-491{width:491px!important}.dropdown-options.w-col-492{width:492px!important}.dropdown-options.w-col-493{width:493px!important}.dropdown-options.w-col-494{width:494px!important}.dropdown-options.w-col-495{width:495px!important}.dropdown-options.w-col-496{width:496px!important}.dropdown-options.w-col-497{width:497px!important}.dropdown-options.w-col-498{width:498px!important}.dropdown-options.w-col-499{width:499px!important}.dropdown-options.w-col-500{width:500px!important}.dropdown-options.w-col-501{width:501px!important}.dropdown-options.w-col-502{width:502px!important}.dropdown-options.w-col-503{width:503px!important}.dropdown-options.w-col-504{width:504px!important}.dropdown-options.w-col-505{width:505px!important}.dropdown-options.w-col-506{width:506px!important}.dropdown-options.w-col-507{width:507px!important}.dropdown-options.w-col-508{width:508px!important}.dropdown-options.w-col-509{width:509px!important}.dropdown-options.w-col-510{width:510px!important}.dropdown-options.w-col-511{width:511px!important}.dropdown-options.w-col-512{width:512px!important}.dropdown-options.w-col-513{width:513px!important}.dropdown-options.w-col-514{width:514px!important}.dropdown-options.w-col-515{width:515px!important}.dropdown-options.w-col-516{width:516px!important}.dropdown-options.w-col-517{width:517px!important}.dropdown-options.w-col-518{width:518px!important}.dropdown-options.w-col-519{width:519px!important}.dropdown-options.w-col-520{width:520px!important}.dropdown-options.w-col-521{width:521px!important}.dropdown-options.w-col-522{width:522px!important}.dropdown-options.w-col-523{width:523px!important}.dropdown-options.w-col-524{width:524px!important}.dropdown-options.w-col-525{width:525px!important}.dropdown-options.w-col-526{width:526px!important}.dropdown-options.w-col-527{width:527px!important}.dropdown-options.w-col-528{width:528px!important}.dropdown-options.w-col-529{width:529px!important}.dropdown-options.w-col-530{width:530px!important}.dropdown-options.w-col-531{width:531px!important}.dropdown-options.w-col-532{width:532px!important}.dropdown-options.w-col-533{width:533px!important}.dropdown-options.w-col-534{width:534px!important}.dropdown-options.w-col-535{width:535px!important}.dropdown-options.w-col-536{width:536px!important}.dropdown-options.w-col-537{width:537px!important}.dropdown-options.w-col-538{width:538px!important}.dropdown-options.w-col-539{width:539px!important}.dropdown-options.w-col-540{width:540px!important}.dropdown-options.w-col-541{width:541px!important}.dropdown-options.w-col-542{width:542px!important}.dropdown-options.w-col-543{width:543px!important}.dropdown-options.w-col-544{width:544px!important}.dropdown-options.w-col-545{width:545px!important}.dropdown-options.w-col-546{width:546px!important}.dropdown-options.w-col-547{width:547px!important}.dropdown-options.w-col-548{width:548px!important}.dropdown-options.w-col-549{width:549px!important}.dropdown-options.w-col-550{width:550px!important}.dropdown-options.w-col-551{width:551px!important}.dropdown-options.w-col-552{width:552px!important}.dropdown-options.w-col-553{width:553px!important}.dropdown-options.w-col-554{width:554px!important}.dropdown-options.w-col-555{width:555px!important}.dropdown-options.w-col-556{width:556px!important}.dropdown-options.w-col-557{width:557px!important}.dropdown-options.w-col-558{width:558px!important}.dropdown-options.w-col-559{width:559px!important}.dropdown-options.w-col-560{width:560px!important}.dropdown-options.w-col-561{width:561px!important}.dropdown-options.w-col-562{width:562px!important}.dropdown-options.w-col-563{width:563px!important}.dropdown-options.w-col-564{width:564px!important}.dropdown-options.w-col-565{width:565px!important}.dropdown-options.w-col-566{width:566px!important}.dropdown-options.w-col-567{width:567px!important}.dropdown-options.w-col-568{width:568px!important}.dropdown-options.w-col-569{width:569px!important}.dropdown-options.w-col-570{width:570px!important}.dropdown-options.w-col-571{width:571px!important}.dropdown-options.w-col-572{width:572px!important}.dropdown-options.w-col-573{width:573px!important}.dropdown-options.w-col-574{width:574px!important}.dropdown-options.w-col-575{width:575px!important}.dropdown-options.w-col-576{width:576px!important}.dropdown-options.w-col-577{width:577px!important}.dropdown-options.w-col-578{width:578px!important}.dropdown-options.w-col-579{width:579px!important}.dropdown-options.w-col-580{width:580px!important}.dropdown-options.w-col-581{width:581px!important}.dropdown-options.w-col-582{width:582px!important}.dropdown-options.w-col-583{width:583px!important}.dropdown-options.w-col-584{width:584px!important}.dropdown-options.w-col-585{width:585px!important}.dropdown-options.w-col-586{width:586px!important}.dropdown-options.w-col-587{width:587px!important}.dropdown-options.w-col-588{width:588px!important}.dropdown-options.w-col-589{width:589px!important}.dropdown-options.w-col-590{width:590px!important}.dropdown-options.w-col-591{width:591px!important}.dropdown-options.w-col-592{width:592px!important}.dropdown-options.w-col-593{width:593px!important}.dropdown-options.w-col-594{width:594px!important}.dropdown-options.w-col-595{width:595px!important}.dropdown-options.w-col-596{width:596px!important}.dropdown-options.w-col-597{width:597px!important}.dropdown-options.w-col-598{width:598px!important}.dropdown-options.w-col-599{width:599px!important}.dropdown-options.w-col-600{width:600px!important}.dropdown-options.w-col-601{width:601px!important}.dropdown-options.w-col-602{width:602px!important}.dropdown-options.w-col-603{width:603px!important}.dropdown-options.w-col-604{width:604px!important}.dropdown-options.w-col-605{width:605px!important}.dropdown-options.w-col-606{width:606px!important}.dropdown-options.w-col-607{width:607px!important}.dropdown-options.w-col-608{width:608px!important}.dropdown-options.w-col-609{width:609px!important}.dropdown-options.w-col-610{width:610px!important}.dropdown-options.w-col-611{width:611px!important}.dropdown-options.w-col-612{width:612px!important}.dropdown-options.w-col-613{width:613px!important}.dropdown-options.w-col-614{width:614px!important}.dropdown-options.w-col-615{width:615px!important}.dropdown-options.w-col-616{width:616px!important}.dropdown-options.w-col-617{width:617px!important}.dropdown-options.w-col-618{width:618px!important}.dropdown-options.w-col-619{width:619px!important}.dropdown-options.w-col-620{width:620px!important}.dropdown-options.w-col-621{width:621px!important}.dropdown-options.w-col-622{width:622px!important}.dropdown-options.w-col-623{width:623px!important}.dropdown-options.w-col-624{width:624px!important}.dropdown-options.w-col-625{width:625px!important}.dropdown-options.w-col-626{width:626px!important}.dropdown-options.w-col-627{width:627px!important}.dropdown-options.w-col-628{width:628px!important}.dropdown-options.w-col-629{width:629px!important}.dropdown-options.w-col-630{width:630px!important}.dropdown-options.w-col-631{width:631px!important}.dropdown-options.w-col-632{width:632px!important}.dropdown-options.w-col-633{width:633px!important}.dropdown-options.w-col-634{width:634px!important}.dropdown-options.w-col-635{width:635px!important}.dropdown-options.w-col-636{width:636px!important}.dropdown-options.w-col-637{width:637px!important}.dropdown-options.w-col-638{width:638px!important}.dropdown-options.w-col-639{width:639px!important}.dropdown-options.w-col-640{width:640px!important}.dropdown-options.w-col-641{width:641px!important}.dropdown-options.w-col-642{width:642px!important}.dropdown-options.w-col-643{width:643px!important}.dropdown-options.w-col-644{width:644px!important}.dropdown-options.w-col-645{width:645px!important}.dropdown-options.w-col-646{width:646px!important}.dropdown-options.w-col-647{width:647px!important}.dropdown-options.w-col-648{width:648px!important}.dropdown-options.w-col-649{width:649px!important}.dropdown-options.w-col-650{width:650px!important}.dropdown-options.w-col-651{width:651px!important}.dropdown-options.w-col-652{width:652px!important}.dropdown-options.w-col-653{width:653px!important}.dropdown-options.w-col-654{width:654px!important}.dropdown-options.w-col-655{width:655px!important}.dropdown-options.w-col-656{width:656px!important}.dropdown-options.w-col-657{width:657px!important}.dropdown-options.w-col-658{width:658px!important}.dropdown-options.w-col-659{width:659px!important}.dropdown-options.w-col-660{width:660px!important}.dropdown-options.w-col-661{width:661px!important}.dropdown-options.w-col-662{width:662px!important}.dropdown-options.w-col-663{width:663px!important}.dropdown-options.w-col-664{width:664px!important}.dropdown-options.w-col-665{width:665px!important}.dropdown-options.w-col-666{width:666px!important}.dropdown-options.w-col-667{width:667px!important}.dropdown-options.w-col-668{width:668px!important}.dropdown-options.w-col-669{width:669px!important}.dropdown-options.w-col-670{width:670px!important}.dropdown-options.w-col-671{width:671px!important}.dropdown-options.w-col-672{width:672px!important}.dropdown-options.w-col-673{width:673px!important}.dropdown-options.w-col-674{width:674px!important}.dropdown-options.w-col-675{width:675px!important}.dropdown-options.w-col-676{width:676px!important}.dropdown-options.w-col-677{width:677px!important}.dropdown-options.w-col-678{width:678px!important}.dropdown-options.w-col-679{width:679px!important}.dropdown-options.w-col-680{width:680px!important}.dropdown-options.w-col-681{width:681px!important}.dropdown-options.w-col-682{width:682px!important}.dropdown-options.w-col-683{width:683px!important}.dropdown-options.w-col-684{width:684px!important}.dropdown-options.w-col-685{width:685px!important}.dropdown-options.w-col-686{width:686px!important}.dropdown-options.w-col-687{width:687px!important}.dropdown-options.w-col-688{width:688px!important}.dropdown-options.w-col-689{width:689px!important}.dropdown-options.w-col-690{width:690px!important}.dropdown-options.w-col-691{width:691px!important}.dropdown-options.w-col-692{width:692px!important}.dropdown-options.w-col-693{width:693px!important}.dropdown-options.w-col-694{width:694px!important}.dropdown-options.w-col-695{width:695px!important}.dropdown-options.w-col-696{width:696px!important}.dropdown-options.w-col-697{width:697px!important}.dropdown-options.w-col-698{width:698px!important}.dropdown-options.w-col-699{width:699px!important}.dropdown-options.w-col-700{width:700px!important}.dropdown-options.w-col-701{width:701px!important}.dropdown-options.w-col-702{width:702px!important}.dropdown-options.w-col-703{width:703px!important}.dropdown-options.w-col-704{width:704px!important}.dropdown-options.w-col-705{width:705px!important}.dropdown-options.w-col-706{width:706px!important}.dropdown-options.w-col-707{width:707px!important}.dropdown-options.w-col-708{width:708px!important}.dropdown-options.w-col-709{width:709px!important}.dropdown-options.w-col-710{width:710px!important}.dropdown-options.w-col-711{width:711px!important}.dropdown-options.w-col-712{width:712px!important}.dropdown-options.w-col-713{width:713px!important}.dropdown-options.w-col-714{width:714px!important}.dropdown-options.w-col-715{width:715px!important}.dropdown-options.w-col-716{width:716px!important}.dropdown-options.w-col-717{width:717px!important}.dropdown-options.w-col-718{width:718px!important}.dropdown-options.w-col-719{width:719px!important}.dropdown-options.w-col-720{width:720px!important}.dropdown-options.w-col-721{width:721px!important}.dropdown-options.w-col-722{width:722px!important}.dropdown-options.w-col-723{width:723px!important}.dropdown-options.w-col-724{width:724px!important}.dropdown-options.w-col-725{width:725px!important}.dropdown-options.w-col-726{width:726px!important}.dropdown-options.w-col-727{width:727px!important}.dropdown-options.w-col-728{width:728px!important}.dropdown-options.w-col-729{width:729px!important}.dropdown-options.w-col-730{width:730px!important}.dropdown-options.w-col-731{width:731px!important}.dropdown-options.w-col-732{width:732px!important}.dropdown-options.w-col-733{width:733px!important}.dropdown-options.w-col-734{width:734px!important}.dropdown-options.w-col-735{width:735px!important}.dropdown-options.w-col-736{width:736px!important}.dropdown-options.w-col-737{width:737px!important}.dropdown-options.w-col-738{width:738px!important}.dropdown-options.w-col-739{width:739px!important}.dropdown-options.w-col-740{width:740px!important}.dropdown-options.w-col-741{width:741px!important}.dropdown-options.w-col-742{width:742px!important}.dropdown-options.w-col-743{width:743px!important}.dropdown-options.w-col-744{width:744px!important}.dropdown-options.w-col-745{width:745px!important}.dropdown-options.w-col-746{width:746px!important}.dropdown-options.w-col-747{width:747px!important}.dropdown-options.w-col-748{width:748px!important}.dropdown-options.w-col-749{width:749px!important}.dropdown-options.w-col-750{width:750px!important}.dropdown-options.w-col-751{width:751px!important}.dropdown-options.w-col-752{width:752px!important}.dropdown-options.w-col-753{width:753px!important}.dropdown-options.w-col-754{width:754px!important}.dropdown-options.w-col-755{width:755px!important}.dropdown-options.w-col-756{width:756px!important}.dropdown-options.w-col-757{width:757px!important}.dropdown-options.w-col-758{width:758px!important}.dropdown-options.w-col-759{width:759px!important}.dropdown-options.w-col-760{width:760px!important}.dropdown-options.w-col-761{width:761px!important}.dropdown-options.w-col-762{width:762px!important}.dropdown-options.w-col-763{width:763px!important}.dropdown-options.w-col-764{width:764px!important}.dropdown-options.w-col-765{width:765px!important}.dropdown-options.w-col-766{width:766px!important}.dropdown-options.w-col-767{width:767px!important}.dropdown-options.w-col-768{width:768px!important}.dropdown-options.w-col-769{width:769px!important}.dropdown-options.w-col-770{width:770px!important}.dropdown-options.w-col-771{width:771px!important}.dropdown-options.w-col-772{width:772px!important}.dropdown-options.w-col-773{width:773px!important}.dropdown-options.w-col-774{width:774px!important}.dropdown-options.w-col-775{width:775px!important}.dropdown-options.w-col-776{width:776px!important}.dropdown-options.w-col-777{width:777px!important}.dropdown-options.w-col-778{width:778px!important}.dropdown-options.w-col-779{width:779px!important}.dropdown-options.w-col-780{width:780px!important}.dropdown-options.w-col-781{width:781px!important}.dropdown-options.w-col-782{width:782px!important}.dropdown-options.w-col-783{width:783px!important}.dropdown-options.w-col-784{width:784px!important}.dropdown-options.w-col-785{width:785px!important}.dropdown-options.w-col-786{width:786px!important}.dropdown-options.w-col-787{width:787px!important}.dropdown-options.w-col-788{width:788px!important}.dropdown-options.w-col-789{width:789px!important}.dropdown-options.w-col-790{width:790px!important}.dropdown-options.w-col-791{width:791px!important}.dropdown-options.w-col-792{width:792px!important}.dropdown-options.w-col-793{width:793px!important}.dropdown-options.w-col-794{width:794px!important}.dropdown-options.w-col-795{width:795px!important}.dropdown-options.w-col-796{width:796px!important}.dropdown-options.w-col-797{width:797px!important}.dropdown-options.w-col-798{width:798px!important}.dropdown-options.w-col-799{width:799px!important}.dropdown-options.w-col-800{width:800px!important}.dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;padding-right:0}.dropdown-options.scroll::-webkit-scrollbar{width:3px}.dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.dropdown-options-fuel-franchise{padding:4px;max-height:300px}.dropdown-options.no-result-container{padding:6px 10px!important}.dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.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,.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,.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,.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}.dropdown-options:not(.dropdown_value) .dropdown-option{color:#fff}.dropdown-options .dropdown-option{padding:0;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0;font-weight:700}.dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#fff;font-size:14px;line-height:18px}.dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#fff;font-size:14px;line-height:18px}.dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.dropdown-options .dropdown-option:hover{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.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}.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}.dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.dropdown-options .dropdown-option.no-result div{padding-top:1px}.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}.dropdown-options .dropdown-option.add-new:hover{color:#fff;background:#3b73ed66}.dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.dropdown-options .dropdown-option.all-assigned .details-template-text,.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}.dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.dropdown-options .dropdown-option.active-label .labels-template-counter,.dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.dropdown-options .dropdown-option.active,.dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.dropdown-options .dropdown-option.active .highlight-text-45632,.dropdown-options .dropdown-option.active-label .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.active .highlight-text-45632:hover,.dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.dropdown-options .dropdown-option.active:not(.payroll-trucks):after,.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}.dropdown-options .dropdown-option.active-label:after{right:35px}.dropdown-options .dropdown-option.last-active{position:relative}.dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.dropdown-options .dropdown-option .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.svg-text-template,.dropdown-options .dropdown-option .svg-text-template{display:flex;align-items:center}.dropdown-options .dropdown-option.svg-text-template.container,.dropdown-options .dropdown-option .svg-text-template.container{padding:0!important}.dropdown-options .dropdown-option.svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text,.dropdown-options .dropdown-option .svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text{padding-left:25px}.dropdown-options .dropdown-option.svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text:after,.dropdown-options .dropdown-option .svg-text-template .hazardous.hazardous-dropdown .svgtext-template-text:after{position:absolute;content:url(/assets/ca-components/svg/common/trailers/ic_hazardous.svg);width:14px;height:10px;left:0}.dropdown-options .dropdown-option.svg-text-template.hazardous,.dropdown-options .dropdown-option .svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.dropdown-options .dropdown-option.svg-text-template.hazardous svg,.dropdown-options .dropdown-option .svg-text-template.hazardous svg{margin-right:5px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo,.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}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px;padding:0!important}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.radiator svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.turbo svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.alignment svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.accompressor svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.aircompressor svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.fuelpump svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.waterpump svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.oilpump svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.brakechamber svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.battery svg path,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-text{position:relative}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-text.truck-text{top:1px}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1,.dropdown-options .dropdown-option .svg-text-template .svgtext-template-text.flex-1{flex:1}.dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text,.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}.dropdown-options .dropdown-option.svg-text-template .colors,.dropdown-options .dropdown-option .svg-text-template .colors{height:18px;width:18px}.dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo,.dropdown-options .dropdown-option .svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text,.dropdown-options .dropdown-option .svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.dropdown-options .dropdown-option.labels-template,.dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.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}.dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.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}.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}.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}.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}.dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.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}.dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.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}.dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.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}.dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.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}.dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.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}.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}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.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}.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}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.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}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.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}.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}.dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.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}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.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}.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}.dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.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}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::-moz-selection{background-color:#ccc3!important;color:#ccc6!important}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.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;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.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}.dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.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}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-option-hovered{border-radius:2px;background-color:#1d1d1d}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-option-hovered .dropdown-subgroup-text{color:#fff!important}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options.selected-option{padding:0 4px}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options.selected-option .dropdown-subgroup-additional-text{padding-right:40px!important}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:not(.selected-option) .dropdown-subgroup-text{color:#fff}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:not(.selected-option) .dropdown-subgroup-additional-text.active{color:#6f9ee0}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;display:block;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.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}.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}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400}.dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.dropdown-options.svgtext-dispatch-template{top:-4px}.dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.load-dispatcher-template{display:flex;align-items:center;gap:6px}.load-shipper-template{display:grid;grid-template-columns:1fr 1fr;align-items:center;padding-right:5px}.load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.load-shipper-template .load-shipper-status-text.in-option{height:22px}.load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.load-shipper-template div:nth-child(2),.load-shipper-template div:nth-child(3){text-align:right}.load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400;white-space:nowrap;max-width:100%;text-overflow:ellipsis;overflow:hidden}.load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.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}.load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.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}.load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;-moz-column-gap:29px;column-gap:29px}.load-broker-template.in-option{height:26px}.load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:26px}.load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.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}.load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.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}.load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.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}.load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.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}.load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.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}.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}.load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.load-dispatches-ttd-template.active .load-dispatch-driver-rate,.load-dispatches-ttd-template.active .load-dispatch-driver,.load-dispatches-ttd-template.active .load-dispatch-truck,.load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.application-dropdown{position:relative}.application-dropdown .dropdown_value{position:absolute;color:#2f2f2f!important;z-index:9;padding:0 0 0 10px;font-size:14px;line-height:26px;pointer-events:none}.application-dropdown .dropdown_value.open{color:#fff;font-weight:400;opacity:.7}.application-dropdown .dropdown_value.leftIcon{padding-left:37px;line-height:26px}.application-dropdown .dropdown_value.dropdown-value-right-side{text-align:right;padding-right:30px}.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-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .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-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .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-option:not(:hover):not(.active):not(.dropdown-option-hovered).dropdown-options-groups.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .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-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-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-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-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"] }]
638
638
  }], ctorParameters: () => [{ type: i1.NgControl, decorators: [{
639
639
  type: Self
640
640
  }] }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }], propDecorators: { inputRef: [{