ca-components 1.0.65 → 1.0.66

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.
@@ -256,7 +256,7 @@ export class CaInputComponent {
256
256
  this.destroy$.complete();
257
257
  }
258
258
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaInputComponent, deps: [{ token: i1.NgControl, self: true }, { token: i0.ChangeDetectorRef }, { token: i2.InputStateService }, { token: i3.ThousandSeparatorPipe }], target: i0.ɵɵFactoryTarget.Component }); }
259
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CaInputComponent, isStandalone: true, selector: "app-ca-input", inputs: { inputConfig: "inputConfig", incorrectValue: "incorrectValue", selectedDropdownLabelColor: "selectedDropdownLabelColor", template: "template" }, outputs: { incorrectInput: "incorrectEvent", blurInput: "blurInput", focusInputEvent: "focusInput", changeInput: "change", commandEvent: "commandEvent", clearInputEvent: "clear", showHideDropdownEvent: "showHideDropdown", dropDownKeyNavigationEvent: "dropDownKeyNavigation" }, providers: [InputStateService, CalendarDateTimePickerService], viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: true }, { propertyName: "ngbMainPopover", first: true, predicate: NgbPopover, descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div\n class=\"input-custom-group {{ inputConfig.customClass }}\"\n [ngClass]=\"\n getSuperControl\n | inputContainerClass\n : isFocusInput\n : isTouchedInput\n : inputConfig\n : getSuperControl?.value\n \"\n>\n <!-- Input Commands -->\n <ng-container *ngIf=\"inputConfig.commands?.active && isVisibleCommands\">\n <app-ca-input-commands\n [inputConfig]=\"inputConfig\"\n [isFocusInput]=\"isFocusInput\"\n [isVisibleCommands]=\"isVisibleCommands\"\n (onCommandsClick)=\"onCommands($event)\"\n >\n </app-ca-input-commands>\n </ng-container>\n\n <!-- DateTime Picker -->\n <ng-container\n *ngIf=\"\n (inputConfig.name === 'datepicker' ||\n inputConfig.name === 'timepicker') &&\n !inputConfig.isDisabled\n \"\n >\n <app-ca-input-datetime-picker\n [showDateInput]=\"showDateInput\"\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isVisibleCommands]=\"isVisibleCommands\"\n [isTouchedInput]=\"isTouchedInput\"\n (selectLastOneForSelectionEmitter)=\"selectLastOneForSelection()\"\n (selectLastOneAfterMouseUpEmitter)=\"selectLastOneAfterMouseUp()\"\n (onDatePasteEmitter)=\"onDatePaste($event)\"\n (onBlurEmitter)=\"onBlur()\"\n (changeSelectionEmmiter)=\"changeSelection($event)\"\n (onFocusEmitter)=\"onFocus($event)\"\n (setSelectionEmmiter)=\"setSelection($event)\"\n >\n </app-ca-input-datetime-picker>\n </ng-container>\n\n <!-- Input Label -->\n <ng-container *ngIf=\"!inputConfig.multiSelectDropdownActive\">\n <label\n [for]=\"inputConfig.name\"\n class=\"input-label {{ inputConfig.customClass }} {{\n inputConfig.multipleLabel?.customClass\n }}\"\n [ngClass]=\"\n getSuperControl?.value | labelClass: isFocusInput : inputConfig\n \"\n >\n <ng-container *ngIf=\"inputConfig.label\">\n <span>{{ inputConfig.label }} </span>\n </ng-container>\n <ng-container *ngIf=\"inputConfig.multipleLabel?.labels?.length\">\n <div\n [class]=\"inputConfig.multipleLabel?.customClass!\"\n [ngClass]=\"{\n 'multiple-labels-position-on-focus':\n isFocusInput ||\n inputConfig.multipleInputValues?.options?.length,\n required: inputConfig.isRequired && !inputConfig.isDisabled\n }\"\n >\n <span *ngFor=\"let label of inputConfig.multipleLabel?.labels\">\n {{ label }}\n </span>\n </div>\n </ng-container>\n </label>\n </ng-container>\n\n <!-- Input Clear -->\n <ng-container *ngIf=\"inputConfig | showClear\">\n <app-ca-input-clear\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [incorrectValue]=\"incorrectValue\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [template]=\"template\"\n (clearInputClick)=\"clearInput($event)\"\n >\n </app-ca-input-clear>\n </ng-container>\n\n <!-- Input Clear for dispatch dropdown -->\n <ng-container *ngIf=\"template === 'svgtext-dispatch-template'\">\n <div\n class=\"input-clear-dispatch\"\n position=\"top\"\n (click)=\"clearInput($event)\"\n >\n <svg-icon\n [src]=\"inputSvgRoutes.xClearCommonSvg\"\n class=\"input-clear-dispatch-icon\"\n ></svg-icon>\n </div>\n </ng-container>\n\n <!-- Input Pen -->\n <ng-container\n *ngIf=\"\n selectedDropdownLabelColor &&\n !isEditInput &&\n !isFocusInput &&\n getSuperControl?.value\n \"\n >\n <div\n class=\"input-pen-container\"\n ngbTooltip\n [mainCaTooltip]=\"'Edit'\"\n [tooltipBackground]=\"'#2F2F2F'\"\n position=\"top\"\n (click)=\"onEditInput($event)\"\n >\n <svg-icon [src]=\"inputSvgRoutes.inputPenSvg\" class=\"input-pen\"></svg-icon>\n </div>\n </ng-container>\n\n <!-- Input Invalid Danger Mark -->\n <ng-container\n *ngIf=\"\n inputConfig\n | showInvalidDangerMark\n : getSuperControl\n : isFocusInput\n : isTouchedInput\n : getSuperControl?.value\n \"\n >\n <svg-icon\n class=\"input-invalid-danger-mark {{ inputConfig.customClass }}\"\n [src]=\"inputSvgRoutes.dangerSvg\"\n >\n </svg-icon>\n </ng-container>\n\n <!-- Input Valid Check -->\n <ng-container\n *ngIf=\"\n getSuperControl\n | showValidCheck: isFocusInput : inputConfig : getSuperControl?.value\n \"\n >\n <svg-icon\n class=\"input-required-check {{ inputConfig.customClass }}\"\n [src]=\"inputSvgRoutes.confirmSvg\"\n ></svg-icon>\n </ng-container>\n\n <!-- Input Password Caps Lock And Eye -->\n <ng-container *ngIf=\"inputConfig.type === 'password'\">\n <app-ca-input-password\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [isCapsLockOn]=\"isCapsLockOn\"\n [isTogglePassword]=\"isTogglePassword\"\n (onTogglePasswordClick)=\"onTogglePassword($event)\"\n >\n </app-ca-input-password>\n </ng-container>\n\n <!-- Input Dropdown Arrow -->\n <ng-container *ngIf=\"inputConfig | showDropdownArrow\">\n <svg-icon\n class=\"input-dropdown-arrow {{ inputConfig.customClass }}\"\n [ngClass]=\"\n getSuperControl\n | inputDropdownArrowClass\n : isFocusInput\n : inputConfig\n : isTouchedInput\n : getSuperControl?.value\n \"\n [src]=\"inputSvgRoutes.inputDropdownArrowSvg\"\n (click)=\"toggleDropdownOptions()\"\n ></svg-icon>\n </ng-container>\n\n <!-- Input Placeholder Icon -->\n <ng-container \n *ngIf=\"\n inputConfig.placeholderIcon ||\n inputConfig.name === 'datepicker' ||\n inputConfig.name === 'timepicker'\n \"\n >\n <app-ca-input-placeholder-icon\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [isEditInput]=\"isEditInput\"\n [dateTimePopover]=\"dateTimePopover\"\n (onPopoverShownEmitter)=\"onPopoverShown()\"\n (onPopoverHiddenEmitter)=\"onPopoverHidden()\"\n (onPlaceholderIconEventEmitter)=\"onPlaceholderIconEvent($event)\"\n >\n </app-ca-input-placeholder-icon>\n </ng-container>\n\n <!-- Input Placeholder Text -->\n <ng-container\n *ngIf=\"\n inputConfig | showPlaceholderText : getSuperControl : \n isVisibleCommands : getSuperControl?.value\n \"\n >\n <span\n class=\"ca-placeholder-text {{ inputConfig.customClass }}\"\n [ngClass]=\" \n isFocusInput | inputPlaceholderTextClass\n : isTouchedInput : getSuperControl : inputConfig\n : isVisibleCommands : getSuperControl?.value\n \"\n [style.left]=\"\n inputConfig.placeholderText?.toLowerCase() === inputStringEnum.PERSONS ||\n inputConfig.placeholderText?.toLowerCase() === inputStringEnum.VEHICLES\n ? 30 +\n (getSuperControl?.value?.toString()?.length + 1) * 9 +\n 'px'\n : isFocusInput &&\n inputConfig.placeholderText?.toLowerCase() !== inputCommandsType.MONTHS\n ? 'auto'\n : (getSuperControl?.value?.toString()?.length + 1) * 8 + 'px'\n \"\n [style.right]=\"\n isFocusInput &&\n inputConfig.placeholderText?.toLowerCase() !== inputCommandsType.MONTHS\n ? '28px'\n : 'auto'\n \"\n >\n {{ inputConfig.placeholderText }}\n </span>\n </ng-container>\n \n <!-- Input Label Counter -->\n <ng-container\n *ngIf=\"\n selectedDropdownLabelColor &&\n getSuperControl?.value &&\n !isFocusInput &&\n !inputConfig.isDisabled &&\n inputConfig.showCount\n \"\n >\n <p\n [style.top]=\"'4px'\"\n [style.left]=\"\n (getSuperControl?.value?.toString()?.length + 6.5) * 8 + 'px'\n \"\n class=\"input-label-counter\"\n >\n {{ selectedDropdownLabelColor.count }}\n </p>\n </ng-container>\n\n <!-- Special Dropdown Selected SVG with or Without Text -->\n <ng-container\n *ngIf=\"\n inputConfig?.dropdownImageInput?.svg &&\n !inputConfig?.hideAllItemsInInputDropdown &&\n !(!inputConfig.dropdownImageInput?.withText && isFocusInput) &&\n !(\n ['truck', 'trailer'].includes(\n inputConfig.dropdownImageInput?.template!\n ) &&\n isFocusInput &&\n inputConfig.dropdownImageInput?.remove\n ) &&\n !inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl\n \"\n >\n <svg-icon\n [src]=\"inputConfig.dropdownImageInput?.url!\"\n class=\"dropdown-selected-image {{\n inputConfig.dropdownImageInput?.class\n }}\"\n [ngClass]=\"{\n 'unset-color': isFocusInput && inputConfig.dropdownImageInput?.class\n }\"\n [svgStyle]=\"{\n fill:\n inputConfig.dropdownImageInput?.color && !isFocusInput\n ? inputConfig.dropdownImageInput?.color\n : '#ffffff'\n }\"\n >\n </svg-icon>\n </ng-container>\n\n <!-- Special Dropdown Selected Image With Text With Initials name -->\n <ng-container\n *ngIf=\"\n inputConfig?.dropdownImageInput?.image &&\n !inputConfig?.hideAllItemsInInputDropdown &&\n inputConfig?.dropdownImageInput?.url &&\n !inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl\n \"\n >\n <img\n class=\"dropdown-selected-image name-initials-instead-url\"\n [src]=\"inputConfig.dropdownImageInput?.url\"\n [alt]=\"'Input Image'\"\n />\n </ng-container>\n <ng-container\n *ngIf=\"\n inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl &&\n !inputConfig?.hideAllItemsInInputDropdown &&\n !(!inputConfig.dropdownImageInput?.withText && isFocusInput)\n \"\n >\n <div\n class=\"no-profile-image dropdown-selected-image name-initials-instead-url\"\n >\n <app-ca-profile-image\n [indx]=\"0\"\n [size]=\"'small'\"\n [type]=\"'user'\"\n [name]=\"inputConfig.dropdownImageInput?.nameInitialsInsteadUrl!\"\n >\n </app-ca-profile-image>\n </div>\n </ng-container>\n\n <!-- Multiple Input Values -->\n <ng-container\n *ngIf=\"\n inputConfig?.multipleInputValues?.options?.length && !isFocusInput\n \"\n >\n <div\n class=\"input-control {{\n inputConfig.multipleInputValues?.customClass\n }}\"\n (click)=\"toggleDropdownOptions()\"\n >\n <span\n style=\"display: flex; gap: 6px; align-items: center\"\n *ngFor=\"\n let item of inputConfig.multipleInputValues?.options;\n let indx = index;\n trackBy: trackIdentity\n \"\n >\n <!-- Image / SVG -->\n <ng-container *ngIf=\"item?.logoName && item?.isImg\">\n <span>\n <ng-container *ngIf=\"item?.logoName !== 'no-url'\">\n <img\n [ngStyle]=\"{\n width: '18px',\n 'aspect-ratio': 1,\n 'border-radis': '2px'\n }\"\n [src]=\"item.logoName\"\n [alt]=\"item.value\"\n />\n </ng-container>\n <ng-container *ngIf=\"item.logoName === 'no-url'\">\n <div class=\"no-profile-image\">\n <app-ca-profile-image\n [indx]=\"0\"\n [size]=\"'small'\"\n [name]=\"item.value\"\n ></app-ca-profile-image>\n </div>\n </ng-container>\n \n <!-- Owner Flag -->\n <ng-container *ngIf=\"item?.isOwner\">\n <div class=\"load-dispatches-ttd-owner\">\n <svg-icon\n [src]=\"inputSvgRoutes.ownerBadgeBlueSvg\"\n ></svg-icon>\n </div>\n </ng-container>\n </span>\n </ng-container>\n \n <ng-container *ngIf=\"item?.logoName && item?.isSvg\">\n <svg-icon\n [ngClass]=\"{\n 'payroll-deduction-truck-svg': template === dropdownTemplateTypeEnum.PAYROLL_TRUCKS\n }\"\n class=\"{{ item?.subFolder }}\"\n [src]=\"item?.logoName!\"\n ></svg-icon>\n </ng-container>\n \n <!-- Text -->\n <ng-container *ngIf=\"!item?.isProgressBar\">\n <span\n class=\"multiple-input-text\"\n [ngStyle]=\"{\n color: '#2F2F2F'\n }\"\n [ngClass]=\"{\n counter: item?.isCounter,\n 'counter-one': item?.value === 1\n }\"\n >\n {{ item.value }}\n <ng-container *ngIf=\"item?.second_value\">\n <span\n [ngStyle]=\"{ color: '#919191' }\"\n >{{ item.second_value }}\n </span>\n </ng-container>\n </span>\n </ng-container>\n \n <!-- Load Broker ProgressBar -->\n <ng-container *ngIf=\"item?.isProgressBar\">\n <ca-load-modal-progress-bar\n [totalAmount]=\"item.second_value!\"\n [availableCredit]=\"item.value ? item.value : 0\"\n ></ca-load-modal-progress-bar>\n </ng-container>\n </span>\n </div>\n \n </ng-container>\n\n <!-- Multiple Input Placeholder -->\n <ng-container\n *ngIf=\"\n inputConfig?.multipleInputValues?.options?.length &&\n isFocusInput &&\n !getSuperControl?.value\n \"\n >\n <div\n class=\"input-control multiple-input-placeholder {{\n inputConfig.multipleInputValues?.customClass\n }}\"\n [ngClass]=\"{ \n focus: isFocusInput,\n 'payroll-deduction-truck': template === dropdownTemplateTypeEnum.PAYROLL_TRUCKS\n }\"\n >\n <span\n style=\"display: flex; gap: 6px; align-items: center\"\n *ngFor=\"\n let item of inputConfig.multipleInputValues?.options;\n let indx = index;\n trackBy: trackIdentity\n \"\n >\n <!-- Image / SVG -->\n <ng-container *ngIf=\"item?.logoName && item?.isImg\">\n <span\n [ngClass]=\"{ 'focusable-image': isFocusInput }\"\n >\n <ng-container *ngIf=\"item?.logoName !== 'no-url'\">\n <img\n [ngStyle]=\"{\n width: '18px',\n 'aspect-ratio': 1,\n 'border-radis': '2px'\n }\"\n [src]=\"item.logoName\"\n [alt]=\"item.value\"\n />\n </ng-container>\n <ng-container *ngIf=\"item.logoName === 'no-url'\">\n <div class=\"no-profile-image\">\n <app-ca-profile-image\n [indx]=\"0\"\n [size]=\"'small'\"\n [name]=\"item.value!\"\n ></app-ca-profile-image>\n </div>\n </ng-container>\n </span>\n </ng-container>\n \n <ng-container *ngIf=\"item?.logoName && item?.isSvg\">\n <svg-icon\n [ngClass]=\"{ \n 'focusable-svg': isFocusInput,\n 'payroll-deduction-truck-svg': template === dropdownTemplateTypeEnum.PAYROLL_TRUCKS\n }\"\n class=\"{{ item?.subFolder }} {{\n item?.logoType?.trim()?.replace(' ', '')?.toLowerCase()\n }}\"\n [src]=\"item?.logoName!\"\n ></svg-icon>\n </ng-container>\n \n <!-- Text -->\n <ng-container *ngIf=\"!item?.isProgressBar\">\n <span\n class=\"multiple-input-text\"\n [ngClass]=\"{\n 'focusable-text': isFocusInput,\n counter: item?.isCounter,\n 'counter-focus': item?.isCounter && isFocusInput,\n 'counter-one': item?.value === 1,\n 'ca-add-dot': template === dropdownTemplateTypeEnum.LOAD_DISPATCHER\n }\"\n [ngStyle]=\"{\n color: '#6F9EE0'\n }\"\n >\n {{ item.value }}\n <ng-container *ngIf=\"item?.second_value\">\n <span>{{ item.second_value }}</span>\n </ng-container>\n </span>\n </ng-container>\n \n <!-- Load Broker ProgressBar -->\n <ng-container *ngIf=\"item?.isProgressBar\">\n <ca-load-modal-progress-bar\n [totalAmount]=\"item.second_value!\"\n [availableCredit]=\"item.value ? item.value : 0\"\n [inputFocus]=\"isFocusInput\"\n ></ca-load-modal-progress-bar>\n </ng-container>\n </span>\n </div>\n </ng-container>\n\n <input\n #input\n [type]=\"inputConfig.type | inputType: isTogglePassword\"\n [id]=\"inputConfig.id ? inputConfig.id : inputConfig.name\"\n [name]=\"inputConfig.name\"\n [disabled]=\"inputConfig.isDisabled!\"\n [autocomplete]=\"inputConfig.autocomplete ? inputConfig.autocomplete : 'off'\"\n [placeholder]=\"\n (inputConfig.placeholderInsteadOfLabel &&\n inputConfig.placeholder &&\n isFocusInput\n ? inputConfig.placeholder\n : '') ||\n (inputConfig.placeholder && isFocusInput ? inputConfig.placeholder : '')\n \"\n [minLength]=\"inputConfig.minLength ? inputConfig.minLength : 0\"\n [maxLength]=\"inputConfig.maxLength ? inputConfig.maxLength : 999\"\n [mask]=\"inputConfig.mask\"\n [min]=\"inputConfig.min ? inputConfig.min : 0\"\n [max]=\"inputConfig.max\"\n [step]=\"inputConfig.step ? inputConfig.step : null\"\n [readOnly]=\"inputConfig.readOnly\"\n appMinMaxValue\n [minValue]=\"inputConfig.min!\"\n [maxValue]=\"inputConfig.max!\"\n inputformat=\"dd-mm-yy\"\n class=\"input-control\n {{ inputConfig.textTransform }}\n {{ inputConfig.textAlign }}\n {{ inputConfig.customClass }}\n \"\n [ngClass]=\"\n getSuperControl\n | inputClass\n : isFocusInput\n : isTouchedInput\n : inputConfig\n : input\n : isVisibleCommands\n : getSuperControl?.value\n : getSuperControl?.invalid\n : getSuperControl?.touched\n : isDropdownToggler\n : isEditInput\n : template\n \"\n (keypress)=\"onKeyPress($event)\"\n (keydown)=\"onKeydown($event)\"\n (keyup)=\"onKeyup($event)\"\n (blur)=\"onBlur($event)\"\n (focus)=\"onFocus($event)\"\n (select)=\"selectionChange($event)\"\n (input)=\"onChange($any($event.target).value); transformText($event)\"\n [(ngModel)]=\"input.value\"\n [ngStyle]=\"\n inputConfig.statusStyle ? (input.value | loadStatusColor) : ''\n \"\n />\n\n <!-- Placeholder Icon on Right Side -->\n <ng-container *ngIf=\"inputConfig.placeholderIconRightSide\">\n <svg-icon\n class=\"placeholder-icon-right-side {{\n inputConfig.placeholderIconColor\n }}\"\n [ngClass]=\"\n isFocusInput\n | inputPlaceholderIconRightClass\n : getSuperControl\n : inputConfig\n : isTouchedInput\n : getSuperControl?.value\n \"\n [src]=\"\n inputConfig.placeholderIconRightSide.toLowerCase()\n | caSvg : 'common'\n \"\n ></svg-icon>\n </ng-container>\n\n <!-- Input Error Message -->\n <ng-container\n *ngIf=\"\n !(!getSuperControl?.value && isFocusInput) &&\n (isTouchedInput || getSuperControl?.touched || getSuperControl?.value) &&\n getSuperControl?.invalid &&\n !inputConfig.isInvalidSearchInDropdown &&\n !inputConfig.isDisabled\n \"\n >\n <ng-container *ngIf=\"!(inputConfig.hideErrorMessage || inputConfig.errorInsideInput)\">\n <span class=\"input-error {{ inputConfig.customClass }}\">\n {{ getSuperControl?.errors | inputError: inputConfig.name }}\n </span>\n </ng-container>\n\n <!-- Error Message Inside Input -->\n <ng-container *ngIf=\"inputConfig.errorInsideInput\">\n <span class=\"error-inside-input {{ inputConfig.customClass }}\">\n {{ getSuperControl?.errors | inputError: inputConfig.name }}\n </span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"inputConfig.fixedPlacholder && input.value\">\n <span class=\"input-fixed-placehoder-label\">\n {{ inputConfig.fixedPlacholder }}\n </span>\n </ng-container>\n</div>\n\n<!-- Popover for DateTime Pickers -->\n<ng-template #dateTimePopover let-data=\"data\">\n <div class=\"datetime-dropdown-holder\">\n <app-ca-custom-datetime-pickers\n [calendarType]=\"\n inputConfig.name === 'datepicker' ||\n inputConfig.name === 'datepickerBankCard'\n ? 'date'\n : 'time'\n \"\n [inputConfig]=\"inputConfig\"\n [placeholder]=\"'MM/DD/YY'\"\n [dateTime]=\"dateTimeInputDate\"\n (closePopover)=\"closePopover()\"\n ></app-ca-custom-datetime-pickers>\n </div>\n</ng-template>", styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.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 .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::-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:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option{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.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.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.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active:not(.payroll-trucks):after,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:not(.payroll-trucks):after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#ccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ca-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:-webkit-max-content!important;width:-moz-max-content!important;width:max-content!important;padding:0!important;margin:0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;-moz-column-gap:29px;column-gap:29px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ca-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ca-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ca-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ca-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ca-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ca-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ca-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ca-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ca-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ca-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ca-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ca-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ca-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ca-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ca-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ca-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ca-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ca-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ca-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ca-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ca-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ca-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ca-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ca-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ca-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ca-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ca-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ca-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ca-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ca-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ca-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ca-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ca-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ca-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ca-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ca-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ca-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ca-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ca-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ca-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ca-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ca-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ca-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ca-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ca-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ca-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ca-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ca-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ca-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ca-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ca-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ca-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ca-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ca-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ca-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ca-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ca-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ca-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ca-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ca-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ca-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ca-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ca-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ca-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ca-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ca-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ca-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ca-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ca-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ca-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ca-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ca-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ca-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ca-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ca-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ca-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ca-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ca-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ca-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ca-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ca-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ca-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ca-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ca-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ca-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ca-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ca-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ca-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ca-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ca-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ca-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ca-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ca-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ca-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ca-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ca-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ca-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ca-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ca-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ca-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ca-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ca-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ca-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ca-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ca-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ca-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ca-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ca-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ca-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ca-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ca-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ca-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ca-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ca-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ca-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ca-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ca-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ca-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ca-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ca-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ca-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ca-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ca-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ca-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ca-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ca-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ca-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ca-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ca-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ca-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ca-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ca-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ca-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ca-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ca-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ca-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ca-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ca-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ca-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ca-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ca-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ca-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ca-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ca-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ca-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ca-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ca-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ca-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ca-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ca-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ca-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ca-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ca-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ca-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ca-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ca-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ca-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ca-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ca-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ca-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ca-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ca-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ca-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ca-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ca-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ca-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ca-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ca-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ca-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ca-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ca-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ca-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ca-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ca-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ca-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ca-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ca-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ca-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ca-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ca-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ca-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ca-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ca-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ca-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ca-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ca-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ca-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ca-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ca-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ca-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ca-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ca-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ca-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ca-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ca-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ca-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ca-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ca-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ca-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ca-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ca-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ca-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ca-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ca-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ca-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ca-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ca-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ca-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ca-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ca-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ca-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ca-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ca-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ca-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ca-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ca-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ca-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ca-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ca-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ca-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ca-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ca-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ca-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ca-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ca-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ca-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ca-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ca-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ca-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ca-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ca-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ca-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ca-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ca-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ca-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ca-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ca-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ca-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ca-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ca-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ca-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ca-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ca-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ca-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ca-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ca-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ca-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ca-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ca-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ca-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ca-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ca-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ca-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ca-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ca-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ca-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ca-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ca-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ca-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ca-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ca-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ca-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ca-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ca-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ca-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ca-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ca-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ca-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ca-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ca-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ca-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ca-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ca-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ca-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ca-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ca-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ca-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ca-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ca-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ca-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ca-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ca-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ca-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ca-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ca-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ca-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ca-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ca-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ca-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ca-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ca-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ca-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ca-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ca-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ca-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ca-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ca-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ca-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ca-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ca-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ca-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ca-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ca-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ca-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ca-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ca-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ca-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ca-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ca-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ca-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ca-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ca-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ca-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ca-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ca-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ca-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ca-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ca-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ca-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ca-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ca-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ca-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ca-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ca-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ca-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ca-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ca-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ca-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ca-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ca-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ca-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ca-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ca-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ca-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ca-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ca-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ca-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ca-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ca-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ca-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ca-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ca-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ca-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ca-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ca-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ca-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ca-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ca-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ca-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ca-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ca-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ca-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ca-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ca-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ca-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ca-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ca-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ca-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ca-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ca-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ca-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ca-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ca-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ca-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ca-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ca-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ca-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ca-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ca-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ca-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ca-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ca-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ca-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ca-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ca-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ca-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ca-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ca-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ca-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ca-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ca-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ca-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ca-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ca-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ca-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ca-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ca-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ca-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ca-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ca-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ca-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ca-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ca-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ca-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ca-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ca-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ca-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ca-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ca-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ca-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ca-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ca-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ca-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ca-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ca-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ca-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ca-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ca-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ca-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ca-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ca-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ca-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ca-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ca-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ca-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ca-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ca-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ca-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ca-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ca-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ca-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ca-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ca-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ca-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ca-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ca-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ca-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ca-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ca-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ca-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ca-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ca-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ca-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ca-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ca-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ca-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ca-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ca-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ca-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ca-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ca-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ca-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ca-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ca-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ca-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ca-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ca-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ca-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ca-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ca-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ca-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ca-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ca-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ca-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ca-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ca-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ca-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ca-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ca-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ca-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ca-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ca-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ca-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ca-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ca-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ca-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ca-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ca-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ca-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ca-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ca-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ca-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ca-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ca-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ca-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ca-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ca-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ca-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ca-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ca-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ca-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ca-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ca-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ca-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ca-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ca-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ca-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ca-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ca-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ca-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ca-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ca-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ca-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ca-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ca-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ca-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ca-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ca-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ca-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ca-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ca-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ca-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ca-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ca-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ca-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ca-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ca-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ca-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ca-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ca-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ca-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ca-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ca-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ca-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ca-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ca-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ca-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ca-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ca-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ca-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ca-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ca-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ca-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ca-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ca-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ca-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ca-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ca-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ca-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ca-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ca-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ca-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ca-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ca-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ca-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ca-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ca-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ca-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ca-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ca-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ca-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ca-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ca-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ca-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ca-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ca-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ca-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ca-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ca-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ca-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ca-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ca-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ca-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ca-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ca-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ca-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ca-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ca-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ca-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ca-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ca-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ca-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ca-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ca-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ca-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ca-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ca-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ca-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ca-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ca-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ca-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ca-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ca-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ca-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ca-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ca-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ca-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ca-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ca-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ca-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ca-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ca-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ca-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ca-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ca-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ca-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ca-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ca-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ca-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ca-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ca-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ca-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ca-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ca-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ca-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ca-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ca-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ca-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ca-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ca-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ca-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ca-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ca-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ca-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ca-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ca-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ca-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ca-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ca-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ca-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ca-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ca-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ca-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ca-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ca-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ca-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ca-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ca-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ca-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ca-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ca-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ca-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ca-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ca-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ca-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ca-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ca-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ca-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ca-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ca-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ca-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ca-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ca-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ca-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ca-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ca-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ca-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ca-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ca-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ca-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ca-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ca-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ca-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ca-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ca-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ca-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ca-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ca-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ca-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ca-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ca-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ca-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ca-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ca-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ca-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ca-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ca-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ca-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ca-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ca-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ca-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ca-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ca-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ca-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ca-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ca-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ca-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ca-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ca-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ca-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ca-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ca-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ca-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ca-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ca-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ca-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ca-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ca-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ca-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ca-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ca-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ca-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ca-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ca-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ca-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ca-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ca-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ca-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ca-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ca-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ca-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ca-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ca-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ca-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ca-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ca-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ca-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ca-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ca-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ca-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ca-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ca-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ca-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ca-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ca-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ca-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ca-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ca-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ca-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ca-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ca-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ca-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ca-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ca-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ca-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ca-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ca-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ca-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ca-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ca-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ca-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ca-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ca-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ca-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ca-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ca-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ca-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ca-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ca-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ca-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ca-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ca-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ca-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ca-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ca-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ca-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ca-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ca-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ca-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ca-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ca-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ca-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ca-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ca-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ca-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ca-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ca-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ca-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ca-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ca-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ca-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ca-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ca-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ca-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ca-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ca-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ca-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ca-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ca-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ca-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ca-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ca-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ca-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ca-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ca-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ca-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ca-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ca-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ca-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ca-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ca-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ca-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ca-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ca-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ca-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ca-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ca-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ca-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ca-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ca-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ca-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ca-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ca-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ca-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ca-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ca-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ca-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ca-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ca-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ca-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ca-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ca-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ca-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ca-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ca-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ca-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ca-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ca-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::-moz-selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::-moz-selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.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}.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;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}.tooltip-arrow{display:none!important}p{margin-bottom:0!important}.desc::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.desc::selection{color:#6c6c6c;background:#6c6c6c33}.details-container-items{display:grid;grid-template-columns:440px repeat(4,335px);-moz-column-gap:12px;column-gap:12px;row-gap:12px;padding-bottom:12px}.details-component{display:grid;grid-auto-flow:column;column-gap:12px;row-gap:12px}.details-component .truck-wrapper{background-color:#fff;border-radius:3px;margin-bottom:8px;width:440px;height:226px}.details-component .truck-wrapper p{margin:0}.details-component .truck-wrapper .truck-card-top{display:flex;align-items:center;justify-content:space-between}.details-component .truck-wrapper .truck-card-top .truck-card-name{color:#6c6c6c;font-size:18px;font-weight:500;position:relative;top:1px}.details-component .truck-wrapper .truck-card-top .truck-card-name::-moz-selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .truck-card-top .truck-card-name::selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .details-page-row-5{margin-top:8px}.details-component .truck-wrapper .details-page-row-7{height:236px;width:100%;margin:22px 0}.details-component .truck-wrapper .show-details{font-size:12px;font-weight:700;color:#778fbb;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.details-component .truck-wrapper .show-details:hover{transition:all .3s ease-in-out;cursor:pointer;text-decoration:underline;color:#5673aa}.details-component .details-cards{border-radius:3px;overflow:hidden;width:440px;background-color:#fff;padding:1px 8px 0}.details-component .details-cards.trailer-details-card{padding:0 8px}.assign-to{position:relative;left:-3px;display:grid;grid-template-columns:204px 204px;column-gap:12px;padding:0}.assign-to .assign-to-vehicle svg{width:55px;height:20px;display:flex;align-items:center}.assign-to .assign-to-vehicle svg:hover path{fill:#6c6c6c!important}.assign-to .assign-to-vehicle svg path{fill:#aaa}.assign-to .first .assign-to-vehicle svg{display:flex;align-items:center}.assign-to .first:hover .open-modal-icon{display:block;position:relative;bottom:4px;height:18px;width:18px}.assign-to .first:hover .open-modal-icon svg{cursor:pointer}.assign-to .first:hover .open-modal-icon svg:hover path{fill:#6c6c6c}.assign-to .second .icon-text-wrapper-cmp{position:relative;top:1px}.assign-to .second .assign-to-vehicle svg{display:flex}.assign-to .second:hover .open-modal-icon2{display:block;height:18px;width:18px;position:relative;bottom:4px}.assign-to .second:hover .open-modal-icon2 svg{cursor:pointer}.assign-to .second:hover .open-modal-icon2 svg:hover path{fill:#6c6c6c}.assign-to .assign-to-item{background-color:#f7f7f7;border-radius:2px;display:flex;align-items:center}.assign-to .assign-to-item .icon-text-wrapper-cmp{display:flex;align-items:center;padding-left:6px;margin:7px 0}.assign-to .assign-to-item .semi-tooltip{width:40px;height:20px}.assign-to .assign-to-item .semi-tooltip.typeDetails{width:auto}.assign-to .assign-to-item svg{fill:#aaa;object-fit:fill;height:20px;width:55px}.assign-to .assign-to-item .open-modal-icon,.assign-to .assign-to-item .open-modal-icon2{display:none}.assign-to .assign-to-item .assign-to-vehicle{margin-right:6px;position:relative;bottom:0}.assign-to .assign-to-item .assign-to-vehicle.backImage{margin-right:0}.assign-to .assign-to-item .assign-to-value{font-size:14px;font-weight:500;color:#424242;line-height:18px;padding:4px 6px}.assign-to .assign-to-item .assign-to-value::-moz-selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value::selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value.inactive-assignTo-value{color:#aaa;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.assign-to .assign-to-item p{margin:0!important}.card-container .card-body-cdl{display:grid;padding:0 4px}.card-container .card-body-cdl .card-item-name{font-size:11px;color:#2f2f2f;font-weight:700;height:15px;margin-bottom:2px}.card-container .card-body-cdl .card-item-name::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-name::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap;height:18px}.card-container .card-body-cdl .card-item-value::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value:hover{color:#2f2f2f}.card-container .card-body-cdl .card-row-issued{display:grid;grid-template-columns:32px 32px 32px;column-gap:49px;margin-top:12px}.card-container .card-body-cdl .card-row-endor{display:grid;grid-template-columns:repeat(auto-fit,minmax(20%,1fr));gap:6px;margin-bottom:4px}.card-container .card-body-cdl .card-row-progress{margin-top:8px}.card-container .card-body-cdl .endorsement{margin-top:12px}.perfomance{display:flex!important;flex-direction:column}.perfomance .common-template-item-name{font-size:14px!important;font-weight:600!important}.perfomance .common-template-item-value{font-size:18px!important;font-weight:600!important}.card-pdf{padding:0 5px;margin-bottom:12px}.card-pdf.extended{margin-bottom:30px}.card-pdf.disabled{height:0!important;margin:0!important;padding:0!important}.status-container{padding-top:12px;display:flex;flex-direction:column;margin-bottom:-12px!important}.status-container .status-header{display:flex;justify-content:space-between;align-items:center}.status-container .status-header .status-item{height:18px}.status-container .status-header .status-item .p-status{font-size:14px;font-weight:700;color:#2f2f2f}.status-container .status-header .status-item .p-status::-moz-selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status::selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status .note-textarea{color:#6c6c6c!important;font-weight:500!important}.status-container .status-header .status-item .p-status .note-textarea::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::-moz-selection,.status-container .status-header .status-item .p-status .note-textarea div::-moz-selection,.status-container .status-header .status-item .p-status .note-textarea b::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::selection,.status-container .status-header .status-item .p-status .note-textarea div::selection,.status-container .status-header .status-item .p-status .note-textarea b::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::-moz-selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::-moz-selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::-moz-selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::-moz-selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::-moz-selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::-moz-selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-items .item-wrapper{display:grid;grid-template-columns:119px 137px 78px;grid-column-gap:45px;align-content:center;justify-content:center}.status-container .status-items .item-wrapper .svg-text{display:flex;align-items:center}.status-container .status-items .item-wrapper .svg-text .employment{margin-left:6px;position:relative;bottom:-2px}.status-container .status-items .item-wrapper .duration{text-align:right}.status-container .status-items .item-wrapper p{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap}.status-container .status-items .item-wrapper p::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::selection{color:#6c6c6c;background:#6c6c6c33}.charts-template{display:grid;grid-template-columns:215px 1fr;grid-row-gap:12px;row-gap:12px;margin-bottom:12px}.charts-template .charts-template-item{display:flex;flex-direction:column}.charts-template .charts-template-item .icon-name-item{display:flex;align-items:baseline;height:18px}.charts-template .charts-template-item .icon-name-item .charts-template-item-name{margin-right:4px}.charts-template .charts-template-item .charts-template-item-name{font-size:11px;color:#424242;font-weight:700;line-height:14px}.charts-template .charts-template-item .charts-template-item-name::-moz-selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value{font-size:18px;font-weight:500;color:#424242;width:220px}.charts-template .charts-template-item .charts-template-item-value::-moz-selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::-moz-selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.second-progress{margin-bottom:16px}.truck-details-wrapper{padding:0 12px}.truck-details-wrapper .truck svg{width:132px;height:48px}.truck-details-wrapper .details-header-avatar{display:flex;align-items:center;height:48px;margin-top:14px}.truck-details-wrapper .details-header-avatar .model-name{flex-direction:column;margin-left:12px;margin-top:12px}.truck-details-wrapper .details-header-avatar .model-name p{font-size:18px;font-weight:500;color:#2f2f2f}.truck-details-wrapper .details-header-avatar .model-name p::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name p::selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name .svg-wrapper{height:14px;display:flex;align-items:flex-end;margin-bottom:2px}.truck-details-wrapper .details-header-avatar .model-name svg path{fill:#424242;object-fit:fill}.truck-details-wrapper .details-header-avatar .model-name svg rect{fill:#aaa}.truck-details-wrapper .details-header-data{margin-top:14px}.truck-details-wrapper .details-header-data .details-header-data-item{display:flex;height:18px;align-items:center}.truck-details-wrapper .details-header-data .details-header-data-item p{font-size:18px;color:#2f2f2f;font-weight:400}.truck-details-wrapper .details-header-data .details-header-data-item .header-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .details-header-data .second{margin-top:14px;margin-bottom:14px}.truck-details-wrapper .details-header-data .second p{font-size:14px!important;color:#2f2f2f;font-weight:400;position:relative;bottom:-1px}.truck-details-wrapper .details-header-data .second .date{margin-left:8px!important;position:relative}.truck-details-wrapper .color-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .vin-text{margin-left:6px!important;margin-right:37px;position:relative;bottom:-1px!important}.common-template{display:grid;grid-template-columns:202px 1fr;row-gap:12px}.common-template .common-item-wrapper{display:flex;align-items:center;height:40px}.common-template .common-template-item{display:flex;flex-direction:column}.common-template .common-template-item::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item::selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item .icon-name-item{display:flex;align-items:center;height:18px}.common-template .common-template-item .icon-name-item .common-template-item-name{margin-left:6px}.common-template .common-template-item .common-template-item-name{font-size:11px;font-weight:600;color:#424242}.common-template .common-template-item .common-template-item-name::-moz-selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value{font-size:14px;font-weight:500;color:#424242;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.common-template .common-template-item .common-template-item-value::-moz-selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::-moz-selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.divider{margin:0;height:2px;width:100%;border-radius:1px;background-color:#f3f3f3}.card_files_holder.active{min-height:448px}.note-cards .note-body{padding-left:0!important;padding-right:2px!important}.note-cards .note-body .note-textarea{color:#6c6c6c!important;font-weight:400!important;padding-bottom:12px!important}.note-cards .note-body .note-textarea::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.note-cards .note-body .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::selection{color:#6c6c6c;background:#6c6c6c33}.no-data-driver-details{font-size:14px;font-weight:400;color:#919191}.no-data-driver-details::-moz-selection{color:#919191;background:#b7b7b733}.no-data-driver-details::selection{color:#919191;background:#b7b7b733}.owner-items{display:flex;align-items:center;height:18px}.owner-items .card-icon{display:none;cursor:pointer;margin-left:6px}.owner-items .information-value{font-size:14px;font-weight:400;color:#6c6c6c;margin-left:6px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.owner-items .information-value::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.owner-items .information-value::selection{color:#6c6c6c;background:#6c6c6c33}.owner-items:hover .card-icon{display:flex}.copied .vin-text,.copied .information-value{animation-duration:1.5s;animation-name:change}.copied .card-icon svg path{animation-duration:1.5s;animation-name:changeSVG}.copied .card-icon svg path:hover{animation-duration:1.5s;animation-name:changeSVG}.hide-show{font-size:14px;color:#6d82c7;font-weight:600;margin-left:6px;cursor:pointer}.hide-show::-moz-selection{color:#6d82c7;background:#536bc233}.hide-show::selection{color:#6d82c7;background:#536bc233}.hide-show:hover{color:#536bc2}.bind-height{max-height:fit-content!important}.card-width{width:335px}.icons-details{margin-right:6px}.date-details-svg{margin-left:29px}.note-details-holder{padding-right:6px;padding-left:3px}.note-details-holder .note-container .note-header.active .note-label{color:#6c6c6c!important}.note-details-holder .note-container .note-header .note_upper_hold svg path{fill:#919191}.note-details-holder .note-container .note-header .note_upper_hold .rotate svg path{fill:#aaa}.boldSanVin{font-weight:800}@media (max-width: 1910px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,320px)}.card-width{width:320px}.repair-details-container,.repair-details-cmp{grid-template-columns:440px 712px 320px 260px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 145px!important}.repair-container{width:712px!important}.repaired-vehicle-container{width:320px!important}.likes-count-container{width:260px}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 50px 46px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 79px 52px 66px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 325px!important}.counter-text{padding:0 0 0 8px!important}.reason-span{display:none}app-shipper-details .load,app-broker-details .load{width:712px!important}app-shipper-details .contact,app-broker-details .contact{width:320px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:320px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:260px!important}app-shipper-details .review-container,app-broker-details .review-container{width:260px!important}}@media (max-width: 1870px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,300px)}.card-width{width:300px}}@media (max-width: 1850px){.repair-details-container,.repair-details-cmp{grid-template-columns:430px 702px 310px 250px!important}.repair-general-holder{width:430px}.repair-container{width:702px!important}.repaired-vehicle-container{width:310px!important}.likes-count-container{width:250px}.repair-component{height:max-content}.repair-component .repair-cards{width:430px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 37px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 40px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:430px!important}app-shipper-details .load,app-broker-details .load{width:702px!important}app-shipper-details .contact,app-broker-details .contact{width:310px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:310px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:250px!important}app-shipper-details .review-container,app-broker-details .review-container{width:250px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:407px!important}}@media (max-width: 1820px){.repair-details-container,.repair-details-cmp{grid-template-columns:420px 692px 300px 240px!important}.repair-general-holder{width:420px}.repair-container{width:692px!important}.repaired-vehicle-container{width:300px!important}.likes-count-container{width:240px}.repair-component .repair-cards{width:420px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 100px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 99px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 27px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 29px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:420px!important}app-shipper-details .load,app-broker-details .load{width:692px!important}app-shipper-details .contact,app-broker-details .contact{width:300px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:300px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:240px!important}app-shipper-details .review-container,app-broker-details .review-container{width:240px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:396px!important}}@media (max-width: 1780px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,280px)}.card-width{width:280px}.request-header-container{width:26px!important;height:26px!important}.request-header-container p{display:none}.request-header-container svg-icon{display:flex!important;transition:background .2s ease-in}.request-header-container svg-icon:hover{background:#e9effd!important}.request-header-container svg-icon:hover svg path{fill:#0b49d1}.repair-details-container{grid-template-columns:475px 760px 410px 0px!important}.repair-general-holder{width:475px}.repair-container{width:760px!important}.repaired-vehicle-container{width:410px!important;max-width:410px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:475px!important}.repair-component .repair-cards{width:475px!important}.repair-details-cmp{grid-template-columns:475px 760px 410px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:410px!important;max-width:410px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:410px!important;max-width:410px!important}.purchase-template{display:grid;grid-template-columns:repeat(2,50%)!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:475px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:475px!important;max-width:475px!important}app-shipper-details .load,app-broker-details .load{width:760px!important}app-shipper-details .contact,app-broker-details .contact{width:410px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:410px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:410px!important}app-shipper-details .review-container,app-broker-details .review-container{width:410px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:450px!important}}@media (max-width: 1760px){.repair-details-container{grid-template-columns:455px 740px 390px 0px!important}.repair-general-holder{width:455px}.repair-container{width:740px!important}.repaired-vehicle-container{width:390px!important;max-width:390px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:455px!important}.repair-component .repair-cards{width:455px!important}.repair-details-cmp{grid-template-columns:455px 740px 390px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:390px!important;max-width:390px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:390px!important;max-width:390px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:455px!important;max-width:455px!important}app-shipper-details .load,app-broker-details .load{width:740px!important}app-shipper-details .contact,app-broker-details .contact{width:390px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:390px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:390px!important}app-shipper-details .review-container,app-broker-details .review-container{width:390px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:430px!important}}@media (max-width: 1700px){.details-container-items{display:grid;grid-template-columns:420px repeat(4,270px)}.card-width{width:270px}.cards-item-wrapper-1,.details-component .details-cards{width:420px}.repair-details-container{grid-template-columns:400px 740px 390px 0px!important}.repair-general-holder{width:400px}.details-header-wrapper-reapirShop{max-width:400px!important}.repair-component .repair-cards{width:400px!important}.repair-details-cmp{grid-template-columns:400px 740px 390px 0px!important}.longText{display:none!important}.shortText{display:block!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 105px 92px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:400px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:377px!important}.details-container-items{display:grid;grid-template-columns:400px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:400px}.assign-to{grid-template-columns:185px 185px}}@media (max-width: 1640px){.repair-details-container{grid-template-columns:400px 720px 370px 0px!important}.repair-container{width:720px!important}.repaired-vehicle-container{width:370px!important;max-width:370px!important}.repair-details-cmp{grid-template-columns:400px 720px 370px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:370px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:370px!important;max-width:370px!important}app-shipper-details .load,app-broker-details .load{width:720px!important}app-shipper-details .contact,app-broker-details .contact{width:370px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:370px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:370px!important}app-shipper-details .review-container,app-broker-details .review-container{width:370px!important}}@media (max-width: 1610px){.details-container-items{display:grid;grid-template-columns:380px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:380px}.assign-to{grid-template-columns:175px 175px}.repair-details-container{grid-template-columns:380px 710px 350px 0px!important}.repair-container{width:710px!important}.repaired-vehicle-container{width:350px!important;max-width:350px!important}.repair-details-cmp{grid-template-columns:380px 710px 350px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:350px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:350px!important;max-width:350px!important}.repair-component .repair-cards{width:380px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 86px 92px!important}app-shipper-details-card .hours-template{grid-template-columns:150px 150px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:380px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:356px!important}}@media (max-width: 1590px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,260px)}.details-component .details-cards,.cards-item-wrapper-1{width:360px}.card-width{width:260px}.reason-span{display:none}.assign-to{grid-template-columns:162px 162px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 710px 350px 0px!important}.repair-component .repair-cards{width:360px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 91px 70px!important}app-shipper-details-card .hours-template{grid-template-columns:140px 140px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:336px!important}}@media (max-width: 1440px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,250px)}.card-width{width:250px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-container{width:700px!important}.repaired-vehicle-container{width:272!important;max-width:272px!important}.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{width:272px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:272px!important;max-width:272px!important}.repair-component .repair-cards{width:360px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:35px 40px 25px 35px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:45px 68px 27px 66px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:700px!important}app-shipper-details .contact,app-broker-details .contact{width:272px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:272px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:272px!important}app-shipper-details .review-container,app-broker-details .review-container{width:272px!important}}@media (max-width: 1500px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,237px)}.card-width{width:237px}}.datetime-dropdown-holder{position:relative;top:16px}.picker_input_holder{display:flex;min-width:146px;max-width:260px;border-radius:3px;background-color:#f9f9f9}.picker_input_holder input{width:100%;padding-left:6px;border:none;outline:none;background-color:transparent;caret-color:transparent;-webkit-appearance:none}.picker_input_holder input:focus{outline:none;border:none}.picker_input_holder input::-webkit-input-placeholder{color:#919191!important}.picker_input_holder input:-ms-input-placeholder{color:#919191!important}.picker_input_holder input::placeholder{color:#919191!important}.picker_input_holder .toggle_picker{display:flex;justify-content:center;align-items:center;width:26px;height:26px;min-width:26px;background-color:#eee;border-radius:3px;cursor:pointer}.picker_input_holder .toggle_picker:after{display:none}.picker_input_holder .toggle_picker svg-icon{display:flex}.picker_input_holder .toggle_picker svg-icon svg{width:12px;height:10px}.picker_input_holder .toggle_picker svg-icon svg path{fill:#919191}.picker_input_holder:hover{opacity:1}.picker_input_holder.active{background-color:#6c6c6c;border-left:3px solid #6c6c6c}.picker_input_holder.active .toggle_picker{background-color:#919191}.picker_input_holder.active .toggle_picker svg-icon{display:flex}.picker_input_holder.active .toggle_picker svg-icon svg{transform:rotate(180deg)}.picker_input_holder.active .toggle_picker svg-icon svg path{fill:#fff}.picker_input_holder.active input::-webkit-input-placeholder{color:#fff!important}.picker_input_holder.active input:-ms-input-placeholder{color:#fff!important}.picker_input_holder.active input::placeholder{color:#fff!important}.pickers_holder{position:absolute;top:3px!important;width:auto!important;padding:0;background-color:#fff;box-shadow:0 0 4px #00000026;z-index:999;border-radius:3px;overflow:hidden}.pickers_holder .time_picker{width:167px}.pickers_holder .date_picker{display:flex}.pickers_holder .date_picker .month-years-size{position:relative;width:48px;background-color:#f9f9f9}.pickers_holder .date_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:24px;transform:translateY(-50%);background-color:#fff}.pickers_holder .date_picker .month-years-size .month-year-item{display:flex;align-items:center;justify-content:center;height:24px;font-size:14px;color:#919191;font-weight:400;text-align:center;text-transform:uppercase}.pickers_holder .date_picker .month-years-size .month-year-item .left-year-show{color:#919191;font-size:14px;font-weight:700}.pickers_holder .date_picker .month-years-size .month-year-item:hover{color:#6c6c6c;cursor:pointer;background-color:#fbe9e9;border-radius:2px}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 2px 0}.pickers_holder .date_picker .full-calendars-list{flex:1;max-height:290px;min-width:264px;overflow:hidden}.pickers_holder .date_picker .full-calendars-list .full_list{height:100%}.pickers_holder .date_picker .full-calendars-list .full_list .selfScroll{width:100%;height:100%}.pickers_holder .time_picker .time_picker_head{height:36px;display:flex;padding:0 12px;align-items:center;justify-content:space-between}.pickers_holder .time_picker .time_picker_head .selected_time{font-size:14px;font-weight:800;color:#6c6c6c}.pickers_holder .time_picker .time_picker_head .sel_now{color:#536bc2;font-size:14px;font-weight:700}.pickers_holder .time_picker .time_picker_head .sel_now:hover{cursor:pointer;color:#5673aa}.pickers_holder .time_picker .time_picker_body .picker_body_head{height:22px;display:flex;align-items:center;background-color:#f7f7f7;margin:0 4px 2px;border-radius:2px}.pickers_holder .time_picker .time_picker_body .picker_body_head div{flex:0 0 33%;text-align:center;font-size:10px;font-weight:700;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body_head div.active{color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body{position:relative;height:155px;display:flex;justify-content:center}.pickers_holder .time_picker .time_picker_body .picker_body:after{content:\"\";position:absolute;width:100%;height:31px;top:-1px;left:0;pointer-events:none;background:linear-gradient(to bottom,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body:before{content:\"\";position:absolute;pointer-events:none;width:100%;height:31px;bottom:-1px;left:0;background:linear-gradient(to top,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line{position:absolute;width:calc(100% - 8px);height:22px;top:50%;left:4px;border-radius:2px;transform:translateY(-50%);background-color:#9191911a}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line span{position:absolute;left:30%;font-size:14px;font-weight:400;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers{position:relative;height:22px;flex:0 0 33.3%;height:100%;padding:67px 0;margin:0 7px;overflow:auto;text-align:center;-ms-overflow-style:none;scrollbar-width:none;z-index:10}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:first-child{flex:0 0 28px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(2){flex:0 0 36px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(3){flex:0 0 38px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers::-webkit-scrollbar{display:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{height:22px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#919191;font-weight:400;-webkit-user-select:none;user-select:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item:hover{color:#5673aa;cursor:pointer}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:hover{box-shadow:inset 0 0 4px #00000026}.pickers_holder .time_picker .picker_buttons{display:flex;padding:6px;justify-content:space-between}.pickers_holder .time_picker .picker_buttons .pick_button{display:flex;align-items:center;justify-content:center;height:32px;padding:0 12px;text-align:center;border-radius:2px;font-size:12px;font-weight:700;color:#919191b3}.pickers_holder .time_picker .picker_buttons .pick_button:hover{background-color:#f3f3f3;color:#919191;cursor:pointer}.pickers_holder .time_picker .picker_buttons .pick_button.set_button{width:57px;text-align:center;background-color:#6d82c7;color:#fff}.pickers_holder .time_picker .picker_buttons .pick_button.set_button:hover{background-color:#536bc2}.pickers_holder.dark_picker{background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size{width:40px;background-color:#424242}.pickers_holder.dark_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:26px;transform:translateY(-50%);background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .month-year-item{height:22px;color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item .left-year-show{color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year{color:#fff}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year .left-year-show{color:#fff;font-weight:700}.pickers_holder.dark_picker .month-years-size .month-year-item:hover{color:#fff;background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 4px 0}.pickers_holder.dark_picker .date_picker{margin:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list{min-width:184px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view{width:182px;padding-top:6px;background-color:#2f2f2f}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head{padding:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name{padding:0 4px;color:#fff;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name .year_hold{margin-right:0;color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today{padding:0 4px;color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today:hover{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator{margin:12px 10px;color:#919191;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.current_year{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.full_calendar{margin-bottom:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px 4px;padding:0}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days .cal_day{width:22px;height:22px;margin:0;font-size:9px;color:#aaa;text-align:center}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;row-gap:12px;justify-content:unset;margin:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item{margin:0;height:22px;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item:hover:not(.current_month){background-color:#424242;color:#fff;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item.current_month{color:#fff;background-color:#3b73ed66;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list.current_year .month_list_item{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px;padding:0;height:auto}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day{width:22px;height:22px;margin:0;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#fff;background-color:#3b73ed66;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#3b73ed66;color:#fff;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.day_in_current_month{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.weekend_day_in_current_month{color:#ccc}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#424242;border-radius:2px;cursor:pointer;color:#fff}.pickers_holder.dark_picker .time_picker{width:156px;margin:4px}.pickers_holder.dark_picker .time_picker .time_picker_head{height:18px;padding:0 4px;margin-bottom:4px}.pickers_holder.dark_picker .time_picker .time_picker_head .selected_time{color:#fff;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_head .sel_now{color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;margin:0 0 4px;padding:2px;background:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head div{color:#aaa;font-size:9px;text-align:center;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body{height:176px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;padding:0 2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:before{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:after{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line{left:0;width:100%;background-color:#3b73ed33}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line{left:33.3%;width:1px;height:12px;margin-top:5px;background-color:#92b1f5;opacity:.4;border-radius:2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line.line_2{left:66.6%}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers{margin:0;padding:77px 0}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{color:#aaa;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item.active_item{color:#fff}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons{display:grid;grid-template-columns:repeat(2,1fr);column-gap:4px;margin-top:6px;padding:4px 0 0;border-top:1px solid #424242}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button{height:18px;background-color:#424242;color:#fff;font-size:11px;text-transform:uppercase;border-radius:1px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button.set_button{width:auto;background-color:#3b73ed}.calendar_view{width:260px;padding-top:12px;background-color:#fff}.calendar_view .calendar_view_head{display:flex;justify-content:space-between;margin-bottom:12px;padding:0 12px}.calendar_view .calendar_view_head .month_name{font-size:12px;font-weight:700;color:#6c6c6c}.calendar_view .calendar_view_head .month_name .year_hold{margin-right:5px;text-transform:uppercase;color:#6c6c6c;cursor:pointer}.calendar_view .calendar_view_head .month_name .year_hold:hover{color:#919191}.calendar_view .calendar_view_head .today{font-size:12px;font-weight:700;color:#5673aab3;cursor:pointer}.calendar_view .calendar_view_head .today:hover{color:#3551b7}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport{height:230px;min-height:230px}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view .calendar_indicator{margin:12px;height:18px;font-size:12px;color:#6c6c6c66;font-weight:700}.calendar_view .calendars_list_view .calendar_month_days{padding:0 3px}.calendar_view .calendars_list_view .calendar_month_days.hideVisibility{visibility:hidden}.calendar_view .calendars_list_view .calendar_month_days .cal_day{width:24px;margin:0 6px;font-size:12px;font-weight:700;color:#b7b7b7}.calendar_view .calendars_list_view .calendar_days{height:140px;display:flex;flex-wrap:wrap;padding:0 3px}.calendar_view .calendars_list_view .calendar_days .calendar_day{display:flex;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;margin:0 6px;font-size:14px;font-weight:400;color:#6c6c6c}.calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#fff;background-color:#919191;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#919191;color:#fff;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#f7f7f7;border-radius:2px;cursor:pointer;color:#3c3c3c}.calendar_view .month_list{display:flex;flex-wrap:wrap;justify-content:space-around;height:140px}.calendar_view .month_list .month_list_item{flex:0 0 50px;height:24px;margin:0 10px;display:flex;align-items:center;justify-content:center;border-radius:3px;font-size:12px;color:#6c6c6c;font-weight:400}.calendar_view .month_list .month_list_item:hover:not(.current_month){background-color:#f7f7f7;color:#3c3c3c;border-radius:2px;cursor:pointer}.calendar_view .month_list .month_list_item.current_month{color:#3c3c3c;background-color:#f7f7f7;border-radius:2px;cursor:pointer}.dropdown{z-index:999!important}input[type=date]::-webkit-inner-spin-button,input[type=date]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}.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}*{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}.input-custom-group{display:block;position:relative}.input-custom-group .location-area-filter,.input-custom-group .location-area-filter.focus,.input-custom-group .location-area-filter.focus:hover{background-color:#424242!important;color:#fff!important}.input-custom-group .location-area-filter.focus::placeholder{background-color:#424242!important}.input-custom-group .location-area-filter:focus{background-color:#424242!important;color:#fff!important}.input-custom-group.datetimeclass{border-radius:2px!important}.input-custom-group.datetimeclass:not(.invalid-focus-out-filled),.input-custom-group.datetimeclass:not(.valid-focus-in),.input-custom-group.datetimeclass:not(.valid-focus-out),.input-custom-group.datetimeclass:not(.valid-focus-out-filled),.input-custom-group.datetimeclass:not(.invalid-focus-in),.input-custom-group.datetimeclass:not(.invalid-focus-out-empty){background-color:#eee}.input-custom-group.datetimeclass:not(.invalid-focus-out-filled):hover,.input-custom-group.datetimeclass:not(.valid-focus-in):hover,.input-custom-group.datetimeclass:not(.valid-focus-out):hover,.input-custom-group.datetimeclass:not(.valid-focus-out-filled):hover,.input-custom-group.datetimeclass:not(.invalid-focus-in):hover,.input-custom-group.datetimeclass:not(.invalid-focus-out-empty):hover{background-color:#dadada}.input-custom-group.datetimeclass.invalid-empty-focus-out{background-color:#fae3e3}.input-custom-group.datetimeclass.invalid-empty-focus-out:hover{background-color:#f5c7c7}.input-custom-group.datetimeclass.valid-focus-out{background-color:#e2ecf9}.input-custom-group.datetimeclass.valid-focus-out:hover{background-color:#c5d8f3}.input-custom-group.datetimeclass.inactive-empty,.input-custom-group.datetimeclass.inactive-filled{background-color:#f7f7f7}.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-filled),.input-custom-group.datetimeclass.dark:not(.valid-focus-in),.input-custom-group.datetimeclass.dark:not(.valid-focus-out),.input-custom-group.datetimeclass.dark:not(.valid-focus-out-filled),.input-custom-group.datetimeclass.dark:not(.invalid-focus-in),.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-empty){background-color:#424242}.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-filled):hover,.input-custom-group.datetimeclass.dark:not(.valid-focus-in):hover,.input-custom-group.datetimeclass.dark:not(.valid-focus-out):hover,.input-custom-group.datetimeclass.dark:not(.valid-focus-out-filled):hover,.input-custom-group.datetimeclass.dark:not(.invalid-focus-in):hover,.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-empty):hover{background-color:#6c6c6c}.input-custom-group.datetimeclass.dark.valid-focus-out-filled{background-color:red}.input-custom-group.datetimeclass.dark.valid-focus-out-filled:hover{background-color:#c5d8f3}.input-custom-group.datetimeclass.dark.inactive-empty,.input-custom-group.datetimeclass.dark.inactive-filled{background-color:#f7f7f7}.input-custom-group.custom-empty-hover:hover{transition:.3s ease-in-out}.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.custom-empty-hover:hover .input-icon:hover~.input-control,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:hover~.input-control{background-color:#dadada}.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:before:hover,.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.custom-empty-hover:hover .input-icon:before:hover,.input-custom-group.custom-empty-hover:hover .input-icon:after:hover~.input-control,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:after:hover~.input-control{background-color:#dadada}.input-custom-group.custom-filled-hover:hover{transition:.3s ease-in-out}.input-custom-group.custom-filled-hover:hover .input-clear{display:inline-block}.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-icon:hover~.input-control,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-clear:hover~.input-control{background-color:#dadada}.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:before:hover,.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-icon:before:hover,.input-custom-group.custom-filled-hover:hover .input-icon:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-clear:before:hover,.input-custom-group.custom-filled-hover:hover .input-clear:after:hover~.input-control{background-color:#dadada}.input-custom-group.input-remove-trash-can:hover .input-clear{display:inline-block!important}.input-custom-group.input-remove-trash-can:hover .input-clear:hover~.input-control{background-color:#dadada}.input-custom-group.input-remove-trash-can:hover .placeholder-icon-right-side{opacity:0}.input-custom-group.input-remove-background:hover .input-control{background:transparent!important}.input-custom-group.input-remove-background.input-blue-text{color:red}.input-custom-group.input-remove-background .input-control{background:transparent;color:#2f2f2f;font-weight:400}.input-custom-group.input-remove-background .input-control.focus,.input-custom-group.input-remove-background .input-control.focus:hover{background:#2f2f2f!important;color:#fff!important}.input-custom-group.input-remove-background .input-control.focus::placeholder{color:#fff!important}.input-custom-group.input-remove-background .input-control:focus{background:#2f2f2f!important;color:#fff!important}.input-custom-group.input-remove-background .input-dropdown-arrow svg path{fill:#919191!important}.input-custom-group.input-blue-text .input-control{color:#6692f1}.input-custom-group.invalid-filled-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.invalid-filled-focus-out:hover .input-clear,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow,.input-custom-group.invalid-filled-focus-out:hover .input-icon,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear{display:inline-block}.input-custom-group.invalid-filled-focus-out:hover .input-clear:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-icon:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-filled-focus-out:hover .input-clear:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-clear:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-icon:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-icon:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:after:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-filled-focus-out:hover .input-label-counter{display:flex}.input-custom-group.invalid-empty-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.invalid-empty-focus-out:hover .input-clear{display:none}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x svg path{fill:#e66767}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x svg rect{fill:#e66767}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x:hover svg path{fill:#c20c0c}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x:hover svg rect{fill:#c20c0c}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.invalid-empty-focus-out:hover .input-icon{display:inline-block}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-icon:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-icon:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-icon:after:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-focus-in:hover{transition:.3s ease-in-out}.input-custom-group.invalid-focus-in:hover .input-password-eye:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-password:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:hover~.input-control{background-color:#e22e22}.input-custom-group.invalid-focus-in:hover .input-password-eye:before:hover,.input-custom-group.invalid-focus-in:hover .input-password-eye:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-password:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:after:hover~.input-control{background-color:#e22e22}.input-custom-group.valid-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.valid-focus-out:hover .input-clear,.input-custom-group.valid-focus-out:hover .input-pen-container,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow,.input-custom-group.valid-focus-out:hover .input-icon,.input-custom-group.valid-focus-out:hover .input-label-counter,.input-custom-group.valid-focus-out:hover .input-password-eye,.input-custom-group.valid-focus-out:hover app-ca-input-password,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.valid-focus-out:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.valid-focus-out:hover .input-clear:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-icon:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-label-counter:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-password-eye:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-password:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-clear:hover~.input-control{background-color:#c5d8f3}.input-custom-group.valid-focus-out:hover .input-clear:before:hover,.input-custom-group.valid-focus-out:hover .input-clear:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-pen-container:before:hover,.input-custom-group.valid-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-icon:before:hover,.input-custom-group.valid-focus-out:hover .input-icon:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-label-counter:before:hover,.input-custom-group.valid-focus-out:hover .input-label-counter:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-password-eye:before:hover,.input-custom-group.valid-focus-out:hover .input-password-eye:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-password:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-clear:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-clear:after:hover~.input-control{background-color:#c5d8f3}.input-custom-group.valid-focus-out:hover .input-label-counter{display:flex}.input-custom-group.valid-focus-out:hover .input-required-check{display:none}.input-custom-group.valid-focus-in:hover{transition:.3s ease-in-out}.input-custom-group.valid-focus-in:hover .trash-can-svg:hover~.input-control,.input-custom-group.valid-focus-in:hover .input-password-eye:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-password:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-clear:hover~.input-control{background-color:#255bb9}.input-custom-group.valid-focus-in:hover .trash-can-svg:before:hover,.input-custom-group.valid-focus-in:hover .trash-can-svg:after:hover~.input-control,.input-custom-group.valid-focus-in:hover .input-password-eye:before:hover,.input-custom-group.valid-focus-in:hover .input-password-eye:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-password:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-clear:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-clear:after:hover~.input-control{background-color:#255bb9}.input-custom-group.inactive-filled:hover .input-clear,.input-custom-group.inactive-filled:hover .trash-can-svg,.input-custom-group.inactive-filled:hover .input-pen-container,.input-custom-group.inactive-filled:hover .input-dropdown-arrow,.input-custom-group.inactive-filled:hover .input-icon,.input-custom-group.inactive-filled:hover .input-password-eye,.input-custom-group.inactive-filled:hover app-ca-input-password,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon,.input-custom-group.inactive-filled:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.inactive-filled:hover .input-clear:hover~.input-control,.input-custom-group.inactive-filled:hover .trash-can-svg:hover~.input-control,.input-custom-group.inactive-filled:hover .input-pen-container:hover~.input-control,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.inactive-filled:hover .input-icon:hover~.input-control,.input-custom-group.inactive-filled:hover .input-password-eye:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-password:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-clear:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-filled:hover .input-clear:before:hover,.input-custom-group.inactive-filled:hover .input-clear:after:hover~.input-control,.input-custom-group.inactive-filled:hover .trash-can-svg:before:hover,.input-custom-group.inactive-filled:hover .trash-can-svg:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-pen-container:before:hover,.input-custom-group.inactive-filled:hover .input-pen-container:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:before:hover,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-icon:before:hover,.input-custom-group.inactive-filled:hover .input-icon:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-password-eye:before:hover,.input-custom-group.inactive-filled:hover .input-password-eye:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-password:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-clear:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-clear:after:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-empty:hover .input-clear,.input-custom-group.inactive-empty:hover .input-pen-container,.input-custom-group.inactive-empty:hover .input-dropdown-arrow,.input-custom-group.inactive-empty:hover .input-icon,.input-custom-group.inactive-empty:hover .input-password-eye,.input-custom-group.inactive-empty:hover app-ca-input-password,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon,.input-custom-group.inactive-empty:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.inactive-empty:hover .input-clear:hover~.input-control,.input-custom-group.inactive-empty:hover .input-pen-container:hover~.input-control,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.inactive-empty:hover .input-icon:hover~.input-control,.input-custom-group.inactive-empty:hover .input-password-eye:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-password:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-clear:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-empty:hover .input-clear:before:hover,.input-custom-group.inactive-empty:hover .input-clear:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-pen-container:before:hover,.input-custom-group.inactive-empty:hover .input-pen-container:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:before:hover,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-icon:before:hover,.input-custom-group.inactive-empty:hover .input-icon:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-password-eye:before:hover,.input-custom-group.inactive-empty:hover .input-password-eye:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-password:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-clear:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-clear:after:hover~.input-control{background-color:#f7f7f7}.input-custom-group .input-label{position:absolute;top:4px;left:6px;font-size:14px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;transition:.3s ease-in-out}.input-custom-group .input-label span::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.input-custom-group .input-label span::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.input-custom-group .input-label.required:after{content:\" *\";color:#ef5350}.input-custom-group .input-label.inactive-empty{color:#919191!important}.input-custom-group .input-label.up-label{top:-17px;left:6px;font-size:11px;font-weight:600}.input-custom-group .input-label.in-label{top:4px!important;font-size:11px!important;font-weight:600!important;transition:none!important}.input-custom-group .input-label.in-label.in-label-focus{color:#fff!important}.input-custom-group .input-label.no-transition{transition:none!important}.input-custom-group .input-label.input-placeholderIcon-on{left:37px}.input-custom-group .input-label.input-placeholderIcon-on.up-label{left:36px}.input-custom-group .input-label.hidden{display:none!important}.input-custom-group .input-label.load-shipper .load-shipper{display:grid;grid-template-columns:455px 120px;align-items:center}.input-custom-group .input-label.load-shipper .load-shipper span:nth-child(2){text-align:right;color:#6c6c6c;font-size:11px;font-weight:600}.input-custom-group .input-label.load-shipper.required:after{position:absolute;right:0;left:60px;top:0}.input-custom-group .input-label.load-shipper.multiple-labels.required:after,.input-custom-group .input-label.load-shipper.up-label.required:after{transition-delay:.1s;transition-timing-function:ease-in;position:absolute;right:0;left:48px;top:0}.input-custom-group .input-label .load-dispatches-ttd{display:grid;grid-template-columns:92px 89px 182px 53px;align-items:center;-moz-column-gap:65px;grid-column-gap:65px;column-gap:65px}.input-custom-group .input-label .load-dispatches-ttd span:nth-child(4){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label .load-dispatches-ttd.multiple-labels-position-on-focus span:nth-child(4){transition-delay:.3s;color:#6c6c6c!important;opacity:1;top:-19px}.input-custom-group .input-label.dropdown-double-column>*{display:grid;grid-template-columns:118px 1fr;align-items:center;-moz-column-gap:4px;grid-column-gap:4px;column-gap:4px}.input-custom-group .input-label.dropdown-triple-column>*{display:grid;grid-template-columns:220px 138px 220px;align-items:center;-moz-column-gap:4px;grid-column-gap:4px;column-gap:4px}.input-custom-group .input-label.load-broker .load-broker{display:grid;align-items:center;grid-template-columns:277px 82px 69px}.input-custom-group .input-label.load-broker .load-broker span:nth-child(2),.input-custom-group .input-label.load-broker .load-broker span:nth-child(3){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label.load-broker .load-broker.multiple-labels-position-on-focus span:nth-child(2),.input-custom-group .input-label.load-broker .load-broker.multiple-labels-position-on-focus span:nth-child(3){transition-delay:.3s;color:#919191!important;opacity:1;top:-19px;text-align:right}.input-custom-group .input-label.load-broker.required:after{position:absolute;left:51px;right:0;top:-1px}.input-custom-group .input-label.load-broker.multiple-labels.required:after,.input-custom-group .input-label.load-broker.up-label.required:after{transition-delay:.1s;transition-timing-function:ease-in;position:absolute;left:44px;right:0;top:-1px}.input-custom-group .input-label .load-broker-contact,.input-custom-group .input-label .load-shipper-contact{display:grid;grid-template-columns:235px 38px;align-items:center;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;transition:.3 ease-in-out}.input-custom-group .input-label .load-broker-contact span:nth-child(2),.input-custom-group .input-label .load-shipper-contact span:nth-child(2){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label .load-broker-contact.multiple-labels-position-on-focus span:nth-child(2),.input-custom-group .input-label .load-shipper-contact.multiple-labels-position-on-focus span:nth-child(2){transition-delay:.3s;opacity:1;top:-19px;color:#6c6c6c!important}.input-custom-group .input-label.load-shipper-contact .load-shipper-contact{grid-template-columns:295px 38px}.input-custom-group .input-label.regular{font-weight:400}.input-custom-group .input-label.datetimeclass.dark{color:#fff}.input-custom-group .hide-loads .load-broker{grid-template-columns:365px 92px}.input-custom-group .input-control{width:100%;height:26px;border:none;outline:none;border-radius:2px;padding:4px 6px;font-size:14px;font-weight:400;background-color:#eee;color:#2f2f2f;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.input-custom-group .input-control::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.center{text-align:center}.input-custom-group .input-control.uppercase{text-transform:uppercase}.input-custom-group .input-control.lowercase{text-transform:lowercase}.input-custom-group .input-control:hover{background-color:#dadada}.input-custom-group .input-control:focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .input-control:focus::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::-moz-placeholder{color:#fff6}.input-custom-group .input-control:focus:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::placeholder{color:#fff6}.input-custom-group .input-control:focus::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control:focus::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control:focus.blue-dropdown{background-color:#0b49d1}.input-custom-group .input-control.valid-focus-in,.input-custom-group .input-control.dropdown-placeholder-active,.input-custom-group .input-control.multiSelect-dropdown-active{background-color:#255bb9;color:#fff}.input-custom-group .input-control.valid-focus-in::-webkit-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-webkit-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-webkit-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-moz-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-moz-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-moz-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in:-ms-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active:-ms-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active:-ms-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-ms-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-ms-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-ms-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::placeholder,.input-custom-group .input-control.dropdown-placeholder-active::placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-moz-selection,.input-custom-group .input-control.dropdown-placeholder-active::-moz-selection,.input-custom-group .input-control.multiSelect-dropdown-active::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.valid-focus-in::selection,.input-custom-group .input-control.dropdown-placeholder-active::selection,.input-custom-group .input-control.multiSelect-dropdown-active::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.valid-focus-out-filled{background-color:#e2ecf9;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled.input-dropdown-table{background-color:#fff}.input-custom-group .input-control.valid-focus-out-filled::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled:hover{background-color:#c5d8f3}.input-custom-group .input-control.invalid-focus-in,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in{background-color:#e22e22;color:#fff}.input-custom-group .input-control.invalid-focus-in::-moz-selection,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.invalid-focus-in::selection,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.invalid-focus-out-filled,.input-custom-group .input-control.invalid-focus-out-empty{background-color:#fae3e3;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled::-moz-selection,.input-custom-group .input-control.invalid-focus-out-empty::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled::selection,.input-custom-group .input-control.invalid-focus-out-empty::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled:hover,.input-custom-group .input-control.invalid-focus-out-empty:hover{background-color:#f5c7c7}.input-custom-group .input-control.inactive-empty{background-color:#f7f7f7;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled{background-color:#f7f7f7;color:#2f2f2f;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.inactive-filled::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.datetimeclass:not(.inactive-filled){letter-spacing:1px;pointer-events:none;opacity:0}.input-custom-group .input-control.has-placeholderIcon{padding-left:37px}.input-custom-group .input-control.dropdown-input-image-truck{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-webkit-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-moz-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus:-ms-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-ms-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-trailer{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-webkit-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-moz-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus:-ms-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-ms-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-color{padding-left:29px}.input-custom-group .input-control.dropdown-input-image-user{padding-left:30px}.input-custom-group .input-control.dropdown-input-image-pm{padding-left:37px}.input-custom-group .input-control.dropdown-input-image-without-text-transparent,.input-custom-group .input-control.multiple-input-values{color:transparent}.input-custom-group .input-control.input-32-font-20{font-weight:700;font-size:20px}.input-custom-group .input-control.details-pages{height:32px;background:#1d1d1d;color:#fff6}.input-custom-group .input-control.details-pages .input-dropdown-arrow:hover,.input-custom-group .input-control.details-pages:hover{background:#1d1d1d}.input-custom-group .input-control.details-pages::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::-moz-placeholder{color:#fff6}.input-custom-group .input-control.details-pages:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::placeholder{color:#fff6}.input-custom-group .input-control.disable-select-on-focus-out::-moz-selection{background-color:transparent}.input-custom-group .input-control.disable-select-on-focus-out::selection{background-color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-webkit-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-moz-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input:-ms-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-ms-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::placeholder{opacity:0;color:transparent}.input-custom-group .input-control.multiple-input-placeholder{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.load-dispatches-ttd,.input-custom-group .input-control.load-broker,.input-custom-group .input-control.load-shipper,.input-custom-group .input-control.load-shipper-contact{position:absolute;bottom:1.5px;background-color:transparent;display:grid;align-items:center}.input-custom-group .input-control.load-dispatches-ttd span,.input-custom-group .input-control.load-broker span,.input-custom-group .input-control.load-shipper span,.input-custom-group .input-control.load-shipper-contact span{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.double-text-dropdown{position:absolute;top:50%;transform:translateY(-48%);background-color:transparent;display:flex;align-items:center;justify-content:space-between;padding-right:26px}.input-custom-group .input-control.double-text-dropdown span:last-child .multiple-input-text{color:#919191;font-size:11px;font-weight:400}.input-custom-group .input-control.double-text-dropdown span:last-child .multiple-input-text.focusable-text{color:#6f9ee0;font-size:11px;font-weight:400}.input-custom-group .input-control.double-text-dropdown span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd{grid-template-columns:repeat(2,156px) 150px 122px;padding-top:3px}.input-custom-group .input-control.load-dispatches-ttd svg{height:16px;width:44px}.input-custom-group .input-control.load-dispatches-ttd svg path{fill:#919191}.input-custom-group .input-control.load-dispatches-ttd span:nth-child(1) .multiple-input-text,.input-custom-group .input-control.load-dispatches-ttd span:nth-child(2) .multiple-input-text{max-width:70px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.input-custom-group .input-control.load-dispatches-ttd span:nth-child(3) .multiple-input-text{max-width:100px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.input-custom-group .input-control.load-dispatches-ttd span:last-child{justify-content:flex-end}.input-custom-group .input-control.load-dispatches-ttd span:last-child .multiple-input-text{color:#919191!important;font-size:11px;font-weight:400;line-height:24px}.input-custom-group .input-control.load-dispatches-ttd span:last-child .multiple-input-text.focusable-text{color:#6f9ee0;font-size:11px;font-weight:400}.input-custom-group .input-control.load-dispatches-ttd span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd span span{line-height:23px;position:relative}.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9856,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9857,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9858,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg path{fill:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd .focusable-image{opacity:.6}.input-custom-group .input-control.load-dispatches-ttd .trailerContainer{width:max-content!important;padding:0!important;margin:0!important}.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9856,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9857,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9858,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg path{fill:#6f9ee0}.input-custom-group .input-control.load-broker{display:grid;grid-template-columns:229px 115px 48px;align-items:center;height:24px}.input-custom-group .input-control.load-broker span:nth-child(1){white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.input-custom-group .input-control.load-broker span:nth-child(2),.input-custom-group .input-control.load-broker span:nth-child(3){justify-content:flex-end}.input-custom-group .input-control.load-broker span:nth-child(3){position:relative;bottom:1px}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter.counter-focus{color:#6f9ee0;background-color:#6f9ee033}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter.counter-one{max-width:none!important;width:19px!important}.input-custom-group .input-control.load-broker-contact,.input-custom-group .input-control.load-shipper-contact{position:absolute;top:50%;transform:translateY(-50%);background-color:transparent!important;display:grid;grid-template-columns:165px 94px;align-items:center;grid-column-gap:20px;-moz-column-gap:20px;column-gap:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px;padding-right:35px}.input-custom-group .input-control.load-broker-contact span,.input-custom-group .input-control.load-shipper-contact span{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.load-broker-contact span span,.input-custom-group .input-control.load-shipper-contact span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.load-broker-contact span:nth-child(2),.input-custom-group .input-control.load-shipper-contact span:nth-child(2){justify-self:flex-end;font-size:11px;font-weight:400;line-height:24px}.input-custom-group .input-control.load-broker-contact span:nth-child(2) span,.input-custom-group .input-control.load-shipper-contact span:nth-child(2) span{color:#919191!important}.input-custom-group .input-control.text-suffix{position:absolute;top:50%;transform:translateY(-50%);background-color:transparent!important;display:flex;align-items:center;column-gap:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px;padding-right:35px}.input-custom-group .input-control.text-suffix span{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.text-suffix span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.text-suffix span:nth-child(2){justify-self:flex-end;font-size:14px;font-weight:400;line-height:18px}.input-custom-group .input-control.text-suffix span:nth-child(2) span:not(.focusable-text){color:#919191!important}.input-custom-group .input-control.text-suffix span:nth-child(2) span:not(.focusable-text):before{content:\"\\2022 \"}.input-custom-group .input-control.text-suffix span:nth-child(2) span.ca-add-dot:before{content:\"\\2022 \"}.input-custom-group .input-control.load-shipper-contact{grid-template-columns:283px 38px}.input-custom-group .input-control.load-shipper{grid-template-columns:394px 180px;-moz-column-gap:2px;column-gap:2px;padding-right:25px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px}.input-custom-group .input-control.load-shipper span:nth-child(2),.input-custom-group .input-control.load-shipper span:nth-child(3){justify-content:flex-end;font-size:11px;color:#919191!important;font-weight:400}.input-custom-group .input-control.load-shipper span:nth-child(2) span{color:#919191!important}.input-custom-group .input-control.load-shipper span:nth-child(2) span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;position:relative;bottom:1px}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter.counter-focus{color:#6f9ee0;background-color:#6f9ee033}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter.counter-one{max-width:none!important;width:19px!important}.input-custom-group .input-control.load-shipper span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.cursor-on-right-side{text-align:right;padding-right:32px}.input-custom-group .input-control.merge-dropdown-body-with-input::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::-moz-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::placeholder{color:#fff6}.input-custom-group .input-control.input-commands{background-color:#1d1d1d!important;color:#fff!important}.input-custom-group .input-control.input-commands.blue-commands{background-color:#0b49d1!important}.input-custom-group .input-control.dropdown-label-active{background-color:#1d1d1d!important;color:#fff!important}.input-custom-group .input-control.dispatch-dropdown{width:calc(100% - 24px);background-color:#2f2f2f!important}.input-custom-group input[type=number]::-webkit-inner-spin-button,.input-custom-group input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0!important}.input-custom-group input[type=number]::-webkit-inner-spin-button:hover,.input-custom-group input[type=number]::-webkit-outer-spin-button:hover,.input-custom-group input[type=number]::-webkit-inner-spin-button:focus,.input-custom-group input[type=number]::-webkit-outer-spin-button:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0!important}.input-custom-group input[type=number]{-moz-appearance:textfield!important}.input-custom-group input[type=number]:hover,.input-custom-group input[type=number]:focus{-moz-appearance:textfield!important}.input-custom-group .load-dispatches-ttd-owner{position:absolute;left:13px;bottom:7px;width:10px;height:10px}.input-custom-group .load-dispatches-ttd-owner svg{width:10px!important;height:10px!important}.input-custom-group .time-picker-opacity{opacity:1!important}.input-custom-group .dispatch-history-default-color{background:#f7f7f7!important;transition:background .3s ease-in-out}.input-custom-group .dispatch-history-row-hover{background:#eee!important;transition:background .3s ease-in-out}.input-custom-group .input-required-check{position:absolute;right:6px;width:14px;height:10px;display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-required-check svg path{fill:#6f9ee0}.input-custom-group .input-clear{position:absolute;right:4px;top:47%;transform:translateY(-50%);border-radius:1px;display:none;z-index:10;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-clear .input-clear-x svg{width:18px!important;height:18px!important;overflow:visible}.input-custom-group .input-clear .input-clear-x svg path{fill:#eee}.input-custom-group .input-clear .input-clear-x svg rect{fill:#919191;transition:transform .3s;transform:scale(1);transform-origin:center}.input-custom-group .input-clear .input-clear-x:hover svg{overflow:visible}.input-custom-group .input-clear .input-clear-x:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#424242}.input-custom-group .input-clear.datetimeclass{z-index:22!important}.input-custom-group .input-clear.focus{display:inline-block}.input-custom-group .input-clear.focus .input-clear-x svg path{fill:#1d1d1d}.input-custom-group .input-clear.focus .input-clear-x svg rect{fill:#aaa}.input-custom-group .input-clear.focus .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.valid-focus-in{display:inline-block}.input-custom-group .input-clear.valid-focus-in .input-clear-x svg path{fill:#255bb9}.input-custom-group .input-clear.valid-focus-in .input-clear-x svg rect{fill:#c5d8f3}.input-custom-group .input-clear.valid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.valid-focus-out .input-clear-x svg path{fill:#c5d8f3}.input-custom-group .input-clear.valid-focus-out .input-clear-x svg rect{fill:#6f9ee0}.input-custom-group .input-clear.valid-focus-out .input-clear-x:hover svg rect{fill:#3074d3}.input-custom-group .input-clear.invalid-focus-in{display:inline-block}.input-custom-group .input-clear.invalid-focus-in .input-clear-x svg path{fill:#e22e22}.input-custom-group .input-clear.invalid-focus-in .input-clear-x svg rect{fill:#f5c7c7}.input-custom-group .input-clear.invalid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.invalid-focus-out .input-clear-x svg path{fill:#f5c7c7}.input-custom-group .input-clear.invalid-focus-out .input-clear-x svg rect{fill:#e57373}.input-custom-group .input-clear.invalid-focus-out .input-clear-x:hover svg rect{fill:#ef5350}.input-custom-group .input-clear.incorrect-input{display:none}.input-custom-group .input-clear.incorrect-input .input-clear-x svg path{fill:#ef5350!important}.input-custom-group .input-clear.incorrect-input .input-clear-x svg rect{fill:transparent!important}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover{display:inline-block}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover svg rect{fill:#ef5350!important}.input-custom-group .input-clear.incorrect-input-on{display:inline-block}.input-custom-group .input-clear.incorrect-input-on .input-clear-x svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x svg rect{fill:#e57373!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x:hover svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x:hover svg rect{fill:#ef5350!important}.input-custom-group .input-clear.dropdown-on{right:27px!important;top:50%;transform:translateY(-50%)}.input-custom-group .input-clear.dropdown-on svg-icon{display:flex}.input-custom-group .input-clear.hidden{display:none}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg{width:20px!important;height:20px!important;position:relative;left:1px}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg path{fill:#aaa}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg rect{fill:#aaa}.input-custom-group .input-clear.trash-can-svg .input-clear-x:hover svg path{fill:#919191}.input-custom-group .input-clear.trash-can-svg .input-clear-x:hover svg rect{fill:#919191}.input-custom-group .input-clear.trash-can-svg:before{content:\"\";display:block;height:16px;width:1px;border-radius:3px;background-color:#91919166;position:absolute;right:22px;top:56%;transform:translateY(-50%)}.input-custom-group .input-clear.trash-can-svg.valid-focus-in{display:none}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x svg path{fill:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x svg rect{fill:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x:hover svg path{fill:#fff}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.trash-can-svg.valid-focus-in:before{background-color:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x svg path{fill:#6f9ee0}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x svg rect{fill:#6f9ee0}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x:hover svg path{fill:#3074d3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x:hover svg rect{fill:#3074d3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out:before{background-color:#6f9ee066}.input-custom-group .input-clear-dispatch{position:absolute;right:0;top:47%;display:flex;justify-content:center;align-items:center;width:26px;height:26px;transform:translateY(-50%);border-radius:2px;z-index:10;cursor:pointer;transition:background .3s ease-in-out}.input-custom-group .input-clear-dispatch svg-icon svg{display:flex;width:12px!important;height:12px!important}.input-custom-group .input-clear-dispatch svg-icon svg path{fill:#919191;transition:fill .3s ease-in-out}.input-custom-group .input-clear-dispatch:hover{background-color:#91919166}.input-custom-group .input-clear-dispatch:hover svg-icon svg path{fill:#dadada}.input-custom-group .input-icon{position:absolute;left:6px;top:47%;transform:translateY(-50%);z-index:10;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:.3s ease-in-out}.input-custom-group .input-icon svg-icon svg{width:18px;height:18px}.input-custom-group .input-icon.datetimeclass{z-index:21}.input-custom-group .input-icon.default-svg-color svg path{fill:#919191}.input-custom-group .input-icon.cursor-pointer{cursor:pointer}.input-custom-group .input-icon:after{content:\"\";display:block;height:15px;width:1px;border-radius:3px;background:#91919166;position:absolute;left:21px;top:55%;transform:translateY(-50%)}.input-custom-group .input-icon.focus svg path{fill:#ccc}.input-custom-group .input-icon.focus text{fill:#ccc}.input-custom-group .input-icon.focus:after{background:#ccc6}.input-custom-group .input-icon.valid-focus-in svg path{fill:#98b9ea}.input-custom-group .input-icon.valid-focus-in text{fill:#98b9ea}.input-custom-group .input-icon.valid-focus-in:after{background:#c5d8f3}.input-custom-group .input-icon.valid-focus-out svg path{fill:#6692f1}.input-custom-group .input-icon.valid-focus-out text{fill:#6f9ee0}.input-custom-group .input-icon.valid-focus-out:after{background-color:#6f9ee066}.input-custom-group .input-icon.valid-focus-out-dropdown-label:after{background-color:#6f9ee066}.input-custom-group .input-icon.invalid-focus-in svg path{fill:#ffb0a8}.input-custom-group .input-icon.invalid-focus-in text{fill:#ffb0a8}.input-custom-group .input-icon.invalid-focus-in:after{background-color:#f5c7c7}.input-custom-group .input-icon.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-icon.invalid-focus-out text{fill:#e57373}.input-custom-group .input-icon.invalid-focus-out:after{background:#e5737366}.input-custom-group .input-icon.inactive-empty svg path{fill:#ccc}.input-custom-group .input-icon.inactive-filled svg path{fill:#aaa}.input-custom-group .input-icon.inactive-filled:after{background-color:#aaa6}.input-custom-group .input-icon.discolor-placeholder svg path{fill:#919191}.input-custom-group .input-icon.load-adjusted-rate svg path{fill:#ffa726}.input-custom-group .input-icon.load-advance-rate svg path{fill:#4db6a2}.input-custom-group .input-icon.hidden{display:none!important}.input-custom-group .input-dropdown-arrow{display:inline-block;position:absolute;right:6px;top:50%;transform:translateY(-50%);width:14px;height:14px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:10;cursor:pointer}.input-custom-group .input-dropdown-arrow svg{display:flex;width:100%;transform:rotate(0);transition:.3s ease-in-out}.input-custom-group .input-dropdown-arrow svg path{fill:#919191}.input-custom-group .input-dropdown-arrow:hover svg path{fill:#424242}.input-custom-group .input-dropdown-arrow.datetimeclass{z-index:22!important}.input-custom-group .input-dropdown-arrow.focus svg{transform:rotate(180deg);transition:.3s ease-in-out}.input-custom-group .input-dropdown-arrow.focus svg path{fill:#ccc}.input-custom-group .input-dropdown-arrow.focus:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-dropdown-arrow.invalid-focus-out:hover svg path{fill:#ef5350}.input-custom-group .input-dropdown-arrow.invalid-focus-in svg path,.input-custom-group .input-dropdown-arrow.invalid-search-in-dropdown-focus-in svg path{fill:#f5c7c7}.input-custom-group .input-dropdown-arrow.invalid-focus-in:hover svg path,.input-custom-group .input-dropdown-arrow.invalid-search-in-dropdown-focus-in:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.valid-focus-in svg path{fill:#c5d8f3}.input-custom-group .input-dropdown-arrow.valid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.valid-focus-out svg path{fill:#6692f1}.input-custom-group .input-dropdown-arrow.valid-focus-out:hover svg path{fill:#3074d3}.input-custom-group .input-error{position:absolute;top:100%;right:5px;color:#ef5350;font-size:11px;font-weight:600;line-height:14px;display:inline-block}.input-custom-group .input-error::-moz-selection{background-color:#ef535033;color:#ef5350}.input-custom-group .input-error::selection{background-color:#ef535033;color:#ef5350}.input-custom-group .error-inside-input{position:absolute;right:32px;font-weight:600;font-size:11px;line-height:14px;color:#df3c3c;top:24%;pointer-events:none}.input-custom-group .input-password-eye{display:none;width:18px;height:18px;position:absolute;left:6px;top:50%;transform:translateY(-50%);padding-top:0;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-password-eye svg{width:18px;height:18px;position:absolute;bottom:0}.input-custom-group .input-password-eye svg path{fill:#919191}.input-custom-group .input-password-eye:after{content:\"\";display:block;height:15px;width:1px;border-radius:3px;background:#91919166;position:absolute;left:24px;top:52%;transform:translateY(-50%)}.input-custom-group .input-password-eye.visible{display:inline-block}.input-custom-group .input-password-eye.inactive svg path{fill:#ccc}.input-custom-group .input-password-eye.inactive:after{background-color:#aaa6}.input-custom-group .input-password-eye.valid-focus-out svg path{fill:#6f9ee0}.input-custom-group .input-password-eye.valid-focus-out:hover svg path{fill:#3074d3}.input-custom-group .input-password-eye.valid-focus-out:after{background-color:#6f9ee066}.input-custom-group .input-password-eye.valid-focus-in{display:inline-block}.input-custom-group .input-password-eye.valid-focus-in svg path{fill:#98b9ea}.input-custom-group .input-password-eye.valid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-password-eye.valid-focus-in:after{background-color:#c5d8f3}.input-custom-group .input-password-eye.invalid-focus-out svg{transition:.3s ease-in-out}.input-custom-group .input-password-eye.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-password-eye.invalid-focus-out:hover svg path{fill:#ef5350}.input-custom-group .input-password-eye.invalid-focus-out:after{background-color:#e5737366}.input-custom-group .input-password-eye.invalid-focus-in svg{transition:.3s ease-in-out}.input-custom-group .input-password-eye.invalid-focus-in svg path{fill:#ffb0a8}.input-custom-group .input-password-eye.invalid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-password-eye.invalid-focus-in:after{background-color:#f5c7c7}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.input-custom-group .date_time_holder{display:flex;align-items:center;position:absolute;top:0;width:100%;height:100%;padding:0 6px;opacity:0;z-index:20;cursor:text}.input-custom-group .date_time_holder span{position:relative;line-height:14px;display:flex;height:100%;align-items:center;z-index:10}.input-custom-group .date_time_holder span .border-picker{position:absolute;top:0;left:50%;transform:translate(-50%);height:100%;display:flex;align-items:center;justify-content:center;width:0px}.input-custom-group .date_time_holder span::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder span div::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder::selection{background-color:transparent!important;color:#fff}.input-custom-group .date_time_holder span.main{padding:0 2px;outline:none;font-size:14px;z-index:11}.input-custom-group .date_time_holder span.main::selection{z-index:10}.input-custom-group .date_time_holder span.main:first-child{padding-left:4px}.input-custom-group .date_time_holder span.reset-selection-color::selection{background-color:transparent!important;color:#2f2f2f!important}.input-custom-group .date_time_holder.focus{opacity:1;padding-left:35px}.input-custom-group .date_time_holder.focus span:nth-child(2){z-index:12;pointer-events:none}.input-custom-group .date_time_holder.focus span:nth-child(3){z-index:13}.input-custom-group .date_time_holder.focus span:nth-child(4){z-index:14;pointer-events:none}.input-custom-group .date_time_holder.focus span:nth-child(5){z-index:15}.input-custom-group .date_time_holder.valid-focus-out-filled{opacity:1}.input-custom-group .date_time_holder.valid-focus-out-filled span,.input-custom-group .date_time_holder.valid-focus-out-filled span .border-picker{color:#2f2f2f!important;-webkit-user-select:none;user-select:none}.input-custom-group .date_time_holder.dark.valid-focus-out-filled{background:#3b73ed33!important}.input-custom-group .date_time_holder.dark.valid-focus-out-filled span,.input-custom-group .date_time_holder.dark.valid-focus-out-filled span .border-picker{color:#fff!important}.input-custom-group .date_time_holder.dark.valid-focus-out-filled:hover{background:#3b73ed66!important}.input-custom-group .date_time_holder.dark.valid-focus-in{background:#0b49d1!important}.input-custom-group .date_time_holder.dark.valid-focus-in span,.input-custom-group .date_time_holder.dark.valid-focus-in span .border-picker{color:#fff!important}.input-custom-group .date_time_holder.focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .date_time_holder.valid-focus-in{opacity:1}.input-custom-group .date_time_holder.valid-focus-in::selection,.input-custom-group .date_time_holder.valid-focus-in div::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder.invalid-focus-out-filled{opacity:1}.input-custom-group .date_time_holder.date_time_holder_bank_card span.main{padding:0 3px}.input-custom-group .ca-placeholder-text{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;top:50%;transform:translateY(-50%);color:#919191;font-weight:400;font-size:14px;line-height:18px;padding-left:1px}.input-custom-group .ca-placeholder-text svg text{fill:#919191}.input-custom-group .ca-placeholder-text.inactive-filled{color:#aaa}.input-custom-group .ca-placeholder-text.inactive-filled svg text{fill:#aaa}.input-custom-group .ca-placeholder-text.focus{color:#919191}.input-custom-group .ca-placeholder-text.focus svg text{fill:#919191}.input-custom-group .ca-placeholder-text.valid-focus-in{color:#c5d8f3}.input-custom-group .ca-placeholder-text.valid-focus-in svg text{fill:#c5d8f3}.input-custom-group .ca-placeholder-text.valid-focus-out{color:#919191}.input-custom-group .ca-placeholder-text.valid-focus-out svg text{fill:#919191}.input-custom-group .ca-placeholder-text.invalid-focus-in{color:#f5c7c7}.input-custom-group .ca-placeholder-text.invalid-focus-in svg text{fill:#f5c7c7}.input-custom-group .ca-placeholder-text.invalid-focus-out{color:#919191}.input-custom-group .ca-placeholder-text.invalid-focus-out svg text{fill:#919191}.input-custom-group .input-invalid-danger-mark{position:absolute;right:5px;top:48%;transform:translateY(-50%);line-height:13.3px}.input-custom-group .input-invalid-danger-mark svg{width:13.3px;height:13.3px}.input-custom-group .input-invalid-danger-mark svg path{fill:#e57373}.input-custom-group .password-capslock{position:absolute;right:5px;top:-16px;color:#ffb74d;font-size:11px;font-weight:600;margin:0;padding:0;-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.input-custom-group .ta-input-commands{display:flex;align-items:center;gap:4px;position:absolute;right:4px}.input-custom-group .ta-input-commands:before{content:attr(data-before-content);color:#919191;font-weight:400;font-size:14px;line-height:18px}.input-custom-group .ta-input-commands .ta-input-command-first{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands .ta-input-command-second{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands .ta-input-command-third{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third svg rect{fill:none}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third svg path{fill:#6692f1}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#6692f1}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg path{fill:#bed0f9}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third svg rect{fill:#ffffffb2}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first svg path,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second svg path,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third svg path{fill:#0b49d1}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first:hover svg,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second:hover svg,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first:hover svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second:hover svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s}.input-custom-group .input-label-counter{position:absolute;display:flex;align-items:center;justify-content:center;width:22px;height:18px;font-size:11px;font-weight:700;color:#424242;background-color:#42424233;border-radius:9px;margin:0;padding-left:.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-loading-spinner{position:absolute;right:6px;bottom:3px}.input-custom-group .input-pen-container{position:absolute;right:50px;top:46%;transform:translateY(-50%);display:none;z-index:10;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-pen-container .input-pen svg{width:18px!important;height:18px!important;overflow:visible}.input-custom-group .input-pen-container .input-pen svg path{fill:#c5d8f3}.input-custom-group .input-pen-container .input-pen svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#6f9ee0}.input-custom-group .input-pen-container .input-pen:hover svg{overflow:visible}.input-custom-group .input-pen-container .input-pen:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#3074d3}.input-custom-group .dropdown-selected-image{position:absolute;left:6px;top:48%;transform:translateY(-50%);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .dropdown-selected-image.truck-make svg path{fill:#6c6c6c}.input-custom-group .dropdown-selected-image.trailer-make svg path{fill:#6c6c6c}.input-custom-group .dropdown-selected-image.name-initials-instead-url{width:18px;height:18px;border-radius:50%;object-fit:cover;top:50%;transform:translateY(-50%)}.input-custom-group .dropdown-selected-image.load-broker{height:26px}.input-custom-group .dropdown-selected-image.load-broker svg{height:18px}.input-custom-group .dropdown-selected-image.load-broker.medium svg #Path_33564{fill:#ffb74d}.input-custom-group .dropdown-selected-image.load-broker.low svg #Path_33564{fill:#e57373}.input-custom-group .dropdown-selected-image.semitruck svg path,.input-custom-group .dropdown-selected-image.semisleeper svg path,.input-custom-group .dropdown-selected-image.boxtruck svg path,.input-custom-group .dropdown-selected-image.reefertruck svg path,.input-custom-group .dropdown-selected-image.cargovan svg path,.input-custom-group .dropdown-selected-image.dumptruck svg path,.input-custom-group .dropdown-selected-image.cementtruck svg path,.input-custom-group .dropdown-selected-image.garbagetruckm .input-custom-group .dropdown-selected-image.towtruck svg path,.input-custom-group .dropdown-selected-image.carhauler svg path,.input-custom-group .dropdown-selected-image.spotter svg path,.input-custom-group .dropdown-selected-image.flatbed svg path,.input-custom-group .dropdown-selected-image.stepdeck svg path,.input-custom-group .dropdown-selected-image.lowboyrgn svg path,.input-custom-group .dropdown-selected-image.chassis svg path,.input-custom-group .dropdown-selected-image.conestoga svg path,.input-custom-group .dropdown-selected-image.sidekit svg path,.input-custom-group .dropdown-selected-image.container svg path,.input-custom-group .dropdown-selected-image.dryvan svg path,.input-custom-group .dropdown-selected-image.reefer svg path,.input-custom-group .dropdown-selected-image.enddump svg path,.input-custom-group .dropdown-selected-image.bottomdump svg path,.input-custom-group .dropdown-selected-image.hopper svg path,.input-custom-group .dropdown-selected-image.tanker svg path,.input-custom-group .dropdown-selected-image.pneumatictanker svg path,.input-custom-group .dropdown-selected-image.carhaulerstigner svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9856,.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9857,.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9858,.input-custom-group .dropdown-selected-image.unset-color svg path{fill:#fff6!important}.input-custom-group .placeholder-icon-right-side{position:absolute;right:4px}.input-custom-group .placeholder-icon-right-side.green svg path{fill:#4db6a2}.input-custom-group .placeholder-icon-right-side.purple svg path{fill:#ba68c8}.input-custom-group .placeholder-icon-right-side.blue svg path{fill:#6f9ee0}.input-custom-group .placeholder-icon-right-side.orange svg path{fill:#f89b2e}.input-custom-group .placeholder-icon-right-side.red svg path{fill:#e66767}.input-custom-group .placeholder-icon-right-side:before{content:\"\";display:block;height:15px;width:1px;border-radius:3px;position:absolute;right:22px;top:55%;transform:translateY(-50%);background-color:#91919166}.input-custom-group .placeholder-icon-right-side.focus:before{background-color:#ccc6}.input-custom-group .placeholder-icon-right-side.valid-focus-out:before{background-color:#6f9ee066}.input-custom-group .placeholder-icon-right-side.valid-focus-in:before{background-color:#c5d8f3}.input-custom-group .placeholder-icon-right-side.invalid-focus-out:before{background-color:#e5737366}.input-custom-group .placeholder-icon-right-side.invalid-focus-in:before{background-color:#f5c7c7}.input-fixed-placehoder-label{color:#919191;position:absolute;right:0;font-size:14px;top:3px}.input-fixed-placehoder-input{padding-right:25px!important}.input-border-radius{border-radius:8px!important}.hide-input-value{text-indent:-9999px}.payroll-deduction-truck-svg{line-height:16px}.payroll-deduction-truck-svg svg{width:46px;height:16px}.payroll-deduction-truck{display:grid!important;grid-template-columns:305px 92px!important}\n"], dependencies: [{ kind: "ngmodule", type:
259
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CaInputComponent, isStandalone: true, selector: "app-ca-input", inputs: { inputConfig: "inputConfig", incorrectValue: "incorrectValue", selectedDropdownLabelColor: "selectedDropdownLabelColor", template: "template" }, outputs: { incorrectInput: "incorrectEvent", blurInput: "blurInput", focusInputEvent: "focusInput", changeInput: "change", commandEvent: "commandEvent", clearInputEvent: "clear", showHideDropdownEvent: "showHideDropdown", dropDownKeyNavigationEvent: "dropDownKeyNavigation" }, providers: [InputStateService, CalendarDateTimePickerService], viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: true }, { propertyName: "ngbMainPopover", first: true, predicate: NgbPopover, descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div\n class=\"input-custom-group {{ inputConfig.customClass }}\"\n [ngClass]=\"\n getSuperControl\n | inputContainerClass\n : isFocusInput\n : isTouchedInput\n : inputConfig\n : getSuperControl?.value\n \"\n ngbTooltip\n [mainCaTooltip]=\"getSuperControl?.errors | inputError: inputConfig.name\"\n [tooltipBackground]=\"'#DF3C3C'\"\n [disableTooltip]=\"!inputConfig.requiredLabel || !!superControl.valid\"\n position=\"bottom\"\n triggers=\"hover\"\n>\n <!-- Input Commands -->\n <ng-container *ngIf=\"inputConfig.commands?.active && isVisibleCommands\">\n <app-ca-input-commands\n [inputConfig]=\"inputConfig\"\n [isFocusInput]=\"isFocusInput\"\n [isVisibleCommands]=\"isVisibleCommands\"\n (onCommandsClick)=\"onCommands($event)\"\n >\n </app-ca-input-commands>\n </ng-container>\n\n <!-- DateTime Picker -->\n <ng-container\n *ngIf=\"\n (inputConfig.name === 'datepicker' ||\n inputConfig.name === 'timepicker') &&\n !inputConfig.isDisabled\n \"\n >\n <app-ca-input-datetime-picker\n [showDateInput]=\"showDateInput\"\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isVisibleCommands]=\"isVisibleCommands\"\n [isTouchedInput]=\"isTouchedInput\"\n (selectLastOneForSelectionEmitter)=\"selectLastOneForSelection()\"\n (selectLastOneAfterMouseUpEmitter)=\"selectLastOneAfterMouseUp()\"\n (onDatePasteEmitter)=\"onDatePaste($event)\"\n (onBlurEmitter)=\"onBlur()\"\n (changeSelectionEmmiter)=\"changeSelection($event)\"\n (onFocusEmitter)=\"onFocus($event)\"\n (setSelectionEmmiter)=\"setSelection($event)\"\n >\n </app-ca-input-datetime-picker>\n </ng-container>\n\n <!-- Input Label -->\n <ng-container *ngIf=\"!inputConfig.multiSelectDropdownActive\">\n <label\n [for]=\"inputConfig.name\"\n class=\"input-label {{ inputConfig.customClass }} {{\n inputConfig.multipleLabel?.customClass\n }}\"\n [ngClass]=\"\n getSuperControl?.value | labelClass: isFocusInput : inputConfig\n : isTouchedInput : getSuperControl?.invalid\n : getSuperControl?.touched\n \"\n >\n <ng-container *ngIf=\"inputConfig.label\">\n <span>{{ inputConfig.label }} </span>\n </ng-container>\n <ng-container *ngIf=\"inputConfig.multipleLabel?.labels?.length\">\n <div\n [class]=\"inputConfig.multipleLabel?.customClass!\"\n [ngClass]=\"{\n 'multiple-labels-position-on-focus':\n isFocusInput ||\n inputConfig.multipleInputValues?.options?.length,\n required: inputConfig.isRequired && !inputConfig.isDisabled\n }\"\n >\n <span *ngFor=\"let label of inputConfig.multipleLabel?.labels\">\n {{ label }}\n </span>\n </div>\n </ng-container>\n </label>\n </ng-container>\n\n <!-- Input Clear -->\n <ng-container *ngIf=\"inputConfig | showClear\">\n <app-ca-input-clear\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [incorrectValue]=\"incorrectValue\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [template]=\"template\"\n (clearInputClick)=\"clearInput($event)\"\n >\n </app-ca-input-clear>\n </ng-container>\n\n <!-- Input Clear for dispatch dropdown -->\n <ng-container *ngIf=\"template === 'svgtext-dispatch-template'\">\n <div\n class=\"input-clear-dispatch\"\n position=\"top\"\n (click)=\"clearInput($event)\"\n >\n <svg-icon\n [src]=\"inputSvgRoutes.xClearCommonSvg\"\n class=\"input-clear-dispatch-icon\"\n ></svg-icon>\n </div>\n </ng-container>\n\n <!-- Input Pen -->\n <ng-container\n *ngIf=\"\n selectedDropdownLabelColor &&\n !isEditInput &&\n !isFocusInput &&\n getSuperControl?.value\n \"\n >\n <div\n class=\"input-pen-container\"\n ngbTooltip\n [mainCaTooltip]=\"'Edit'\"\n [tooltipBackground]=\"'#2F2F2F'\"\n position=\"top\"\n (click)=\"onEditInput($event)\"\n >\n <svg-icon [src]=\"inputSvgRoutes.inputPenSvg\" class=\"input-pen\"></svg-icon>\n </div>\n </ng-container>\n\n <!-- Input Invalid Danger Mark -->\n <ng-container\n *ngIf=\"\n inputConfig\n | showInvalidDangerMark\n : getSuperControl\n : isFocusInput\n : isTouchedInput\n : getSuperControl?.value\n \"\n >\n <svg-icon\n class=\"input-invalid-danger-mark {{ inputConfig.customClass }}\"\n [src]=\"inputSvgRoutes.dangerSvg\"\n >\n </svg-icon>\n </ng-container>\n\n <!-- Input Valid Check -->\n <ng-container\n *ngIf=\"\n getSuperControl\n | showValidCheck: isFocusInput : inputConfig : getSuperControl?.value\n \"\n >\n <svg-icon\n class=\"input-required-check {{ inputConfig.customClass }}\"\n [src]=\"inputSvgRoutes.confirmSvg\"\n ></svg-icon>\n </ng-container>\n\n <!-- Input Password Caps Lock And Eye -->\n <ng-container *ngIf=\"inputConfig.type === 'password'\">\n <app-ca-input-password\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [isCapsLockOn]=\"isCapsLockOn\"\n [isTogglePassword]=\"isTogglePassword\"\n (onTogglePasswordClick)=\"onTogglePassword($event)\"\n >\n </app-ca-input-password>\n </ng-container>\n\n <!-- Input Dropdown Arrow -->\n <ng-container *ngIf=\"inputConfig | showDropdownArrow\">\n <svg-icon\n class=\"input-dropdown-arrow {{ inputConfig.customClass }}\"\n [ngClass]=\"\n getSuperControl\n | inputDropdownArrowClass\n : isFocusInput\n : inputConfig\n : isTouchedInput\n : getSuperControl?.value\n \"\n [src]=\"inputSvgRoutes.inputDropdownArrowSvg\"\n (click)=\"toggleDropdownOptions()\"\n ></svg-icon>\n </ng-container>\n\n <!-- Input Placeholder Icon -->\n <ng-container \n *ngIf=\"\n inputConfig.placeholderIcon ||\n inputConfig.name === 'datepicker' ||\n inputConfig.name === 'timepicker'\n \"\n >\n <app-ca-input-placeholder-icon\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [isEditInput]=\"isEditInput\"\n [dateTimePopover]=\"dateTimePopover\"\n (onPopoverShownEmitter)=\"onPopoverShown()\"\n (onPopoverHiddenEmitter)=\"onPopoverHidden()\"\n (onPlaceholderIconEventEmitter)=\"onPlaceholderIconEvent($event)\"\n >\n </app-ca-input-placeholder-icon>\n </ng-container>\n\n <!-- Input Placeholder Text -->\n <ng-container\n *ngIf=\"\n inputConfig | showPlaceholderText : getSuperControl : \n isVisibleCommands : getSuperControl?.value\n \"\n >\n <span\n class=\"ca-placeholder-text {{ inputConfig.customClass }}\"\n [ngClass]=\" \n isFocusInput | inputPlaceholderTextClass\n : isTouchedInput : getSuperControl : inputConfig\n : isVisibleCommands : getSuperControl?.value\n \"\n [style.left]=\"\n inputConfig.placeholderText?.toLowerCase() === inputStringEnum.PERSONS ||\n inputConfig.placeholderText?.toLowerCase() === inputStringEnum.VEHICLES\n ? 30 +\n (getSuperControl?.value?.toString()?.length + 1) * 9 +\n 'px'\n : isFocusInput &&\n inputConfig.placeholderText?.toLowerCase() !== inputCommandsType.MONTHS\n ? 'auto'\n : (getSuperControl?.value?.toString()?.length + 1) * 8 + 'px'\n \"\n [style.right]=\"\n isFocusInput &&\n inputConfig.placeholderText?.toLowerCase() !== inputCommandsType.MONTHS\n ? '28px'\n : 'auto'\n \"\n >\n {{ inputConfig.placeholderText }}\n </span>\n </ng-container>\n \n <!-- Input Label Counter -->\n <ng-container\n *ngIf=\"\n selectedDropdownLabelColor &&\n getSuperControl?.value &&\n !isFocusInput &&\n !inputConfig.isDisabled &&\n inputConfig.showCount\n \"\n >\n <p\n [style.top]=\"'4px'\"\n [style.left]=\"\n (getSuperControl?.value?.toString()?.length + 6.5) * 8 + 'px'\n \"\n class=\"input-label-counter\"\n >\n {{ selectedDropdownLabelColor.count }}\n </p>\n </ng-container>\n\n <!-- Special Dropdown Selected SVG with or Without Text -->\n <ng-container\n *ngIf=\"\n inputConfig?.dropdownImageInput?.svg &&\n !inputConfig?.hideAllItemsInInputDropdown &&\n !(!inputConfig.dropdownImageInput?.withText && isFocusInput) &&\n !(\n ['truck', 'trailer'].includes(\n inputConfig.dropdownImageInput?.template!\n ) &&\n isFocusInput &&\n inputConfig.dropdownImageInput?.remove\n ) &&\n !inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl\n \"\n >\n <svg-icon\n [src]=\"inputConfig.dropdownImageInput?.url!\"\n class=\"dropdown-selected-image {{\n inputConfig.dropdownImageInput?.class\n }}\"\n [ngClass]=\"{\n 'unset-color': isFocusInput && inputConfig.dropdownImageInput?.class\n }\"\n [svgStyle]=\"{\n fill:\n inputConfig.dropdownImageInput?.color && !isFocusInput\n ? inputConfig.dropdownImageInput?.color\n : '#ffffff'\n }\"\n >\n </svg-icon>\n </ng-container>\n\n <!-- Special Dropdown Selected Image With Text With Initials name -->\n <ng-container\n *ngIf=\"\n inputConfig?.dropdownImageInput?.image &&\n !inputConfig?.hideAllItemsInInputDropdown &&\n inputConfig?.dropdownImageInput?.url &&\n !inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl\n \"\n >\n <img\n class=\"dropdown-selected-image name-initials-instead-url\"\n [src]=\"inputConfig.dropdownImageInput?.url\"\n [alt]=\"'Input Image'\"\n />\n </ng-container>\n <ng-container\n *ngIf=\"\n inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl &&\n !inputConfig?.hideAllItemsInInputDropdown &&\n !(!inputConfig.dropdownImageInput?.withText && isFocusInput)\n \"\n >\n <div\n class=\"no-profile-image dropdown-selected-image name-initials-instead-url\"\n >\n <app-ca-profile-image\n [indx]=\"0\"\n [size]=\"'small'\"\n [type]=\"'user'\"\n [name]=\"inputConfig.dropdownImageInput?.nameInitialsInsteadUrl!\"\n >\n </app-ca-profile-image>\n </div>\n </ng-container>\n\n <!-- Multiple Input Values -->\n <ng-container\n *ngIf=\"\n inputConfig?.multipleInputValues?.options?.length && !isFocusInput\n \"\n >\n <div\n class=\"input-control {{\n inputConfig.multipleInputValues?.customClass\n }}\"\n (click)=\"toggleDropdownOptions()\"\n >\n <span\n style=\"display: flex; gap: 6px; align-items: center\"\n *ngFor=\"\n let item of inputConfig.multipleInputValues?.options;\n let indx = index;\n trackBy: trackIdentity\n \"\n >\n <!-- Image / SVG -->\n <ng-container *ngIf=\"item?.logoName && item?.isImg\">\n <span>\n <ng-container *ngIf=\"item?.logoName !== 'no-url'\">\n <img\n [ngStyle]=\"{\n width: '18px',\n 'aspect-ratio': 1,\n 'border-radis': '2px'\n }\"\n [src]=\"item.logoName\"\n [alt]=\"item.value\"\n />\n </ng-container>\n <ng-container *ngIf=\"item.logoName === 'no-url'\">\n <div class=\"no-profile-image\">\n <app-ca-profile-image\n [indx]=\"0\"\n [size]=\"'small'\"\n [name]=\"item.value\"\n ></app-ca-profile-image>\n </div>\n </ng-container>\n \n <!-- Owner Flag -->\n <ng-container *ngIf=\"item?.isOwner\">\n <div class=\"load-dispatches-ttd-owner\">\n <svg-icon\n [src]=\"inputSvgRoutes.ownerBadgeBlueSvg\"\n ></svg-icon>\n </div>\n </ng-container>\n </span>\n </ng-container>\n \n <ng-container *ngIf=\"item?.logoName && item?.isSvg\">\n <svg-icon\n [ngClass]=\"{\n 'payroll-deduction-truck-svg': template === dropdownTemplateTypeEnum.PAYROLL_TRUCKS\n }\"\n class=\"{{ item?.subFolder }}\"\n [src]=\"item?.logoName!\"\n ></svg-icon>\n </ng-container>\n \n <!-- Text -->\n <ng-container *ngIf=\"!item?.isProgressBar\">\n <span\n class=\"multiple-input-text\"\n [ngStyle]=\"{\n color: '#2F2F2F'\n }\"\n [ngClass]=\"{\n counter: item?.isCounter,\n 'counter-one': item?.value === 1\n }\"\n >\n {{ item.value }}\n <ng-container *ngIf=\"item?.second_value\">\n <span\n [ngStyle]=\"{ color: '#919191' }\"\n >{{ item.second_value }}\n </span>\n </ng-container>\n </span>\n </ng-container>\n \n <!-- Load Broker ProgressBar -->\n <ng-container *ngIf=\"item?.isProgressBar\">\n <ca-load-modal-progress-bar\n [totalAmount]=\"item.second_value!\"\n [availableCredit]=\"item.value ? item.value : 0\"\n ></ca-load-modal-progress-bar>\n </ng-container>\n </span>\n </div>\n \n </ng-container>\n\n <!-- Multiple Input Placeholder -->\n <ng-container\n *ngIf=\"\n inputConfig?.multipleInputValues?.options?.length &&\n isFocusInput &&\n !getSuperControl?.value\n \"\n >\n <div\n class=\"input-control multiple-input-placeholder {{\n inputConfig.multipleInputValues?.customClass\n }}\"\n [ngClass]=\"{ \n focus: isFocusInput,\n 'payroll-deduction-truck': template === dropdownTemplateTypeEnum.PAYROLL_TRUCKS\n }\"\n >\n <span\n style=\"display: flex; gap: 6px; align-items: center\"\n *ngFor=\"\n let item of inputConfig.multipleInputValues?.options;\n let indx = index;\n trackBy: trackIdentity\n \"\n >\n <!-- Image / SVG -->\n <ng-container *ngIf=\"item?.logoName && item?.isImg\">\n <span\n [ngClass]=\"{ 'focusable-image': isFocusInput }\"\n >\n <ng-container *ngIf=\"item?.logoName !== 'no-url'\">\n <img\n [ngStyle]=\"{\n width: '18px',\n 'aspect-ratio': 1,\n 'border-radis': '2px'\n }\"\n [src]=\"item.logoName\"\n [alt]=\"item.value\"\n />\n </ng-container>\n <ng-container *ngIf=\"item.logoName === 'no-url'\">\n <div class=\"no-profile-image\">\n <app-ca-profile-image\n [indx]=\"0\"\n [size]=\"'small'\"\n [name]=\"item.value!\"\n ></app-ca-profile-image>\n </div>\n </ng-container>\n </span>\n </ng-container>\n \n <ng-container *ngIf=\"item?.logoName && item?.isSvg\">\n <svg-icon\n [ngClass]=\"{ \n 'focusable-svg': isFocusInput,\n 'payroll-deduction-truck-svg': template === dropdownTemplateTypeEnum.PAYROLL_TRUCKS\n }\"\n class=\"{{ item?.subFolder }} {{\n item?.logoType?.trim()?.replace(' ', '')?.toLowerCase()\n }}\"\n [src]=\"item?.logoName!\"\n ></svg-icon>\n </ng-container>\n \n <!-- Text -->\n <ng-container *ngIf=\"!item?.isProgressBar\">\n <span\n class=\"multiple-input-text\"\n [ngClass]=\"{\n 'focusable-text': isFocusInput,\n counter: item?.isCounter,\n 'counter-focus': item?.isCounter && isFocusInput,\n 'counter-one': item?.value === 1,\n 'ca-add-dot': template === dropdownTemplateTypeEnum.LOAD_DISPATCHER\n }\"\n [ngStyle]=\"{\n color: '#6F9EE0'\n }\"\n >\n {{ item.value }}\n <ng-container *ngIf=\"item?.second_value\">\n <span>{{ item.second_value }}</span>\n </ng-container>\n </span>\n </ng-container>\n \n <!-- Load Broker ProgressBar -->\n <ng-container *ngIf=\"item?.isProgressBar\">\n <ca-load-modal-progress-bar\n [totalAmount]=\"item.second_value!\"\n [availableCredit]=\"item.value ? item.value : 0\"\n [inputFocus]=\"isFocusInput\"\n ></ca-load-modal-progress-bar>\n </ng-container>\n </span>\n </div>\n </ng-container>\n\n <input\n #input\n [type]=\"inputConfig.type | inputType: isTogglePassword\"\n [id]=\"inputConfig.id ? inputConfig.id : inputConfig.name\"\n [name]=\"inputConfig.name\"\n [disabled]=\"inputConfig.isDisabled!\"\n [autocomplete]=\"inputConfig.autocomplete ? inputConfig.autocomplete : 'off'\"\n [placeholder]=\"\n (inputConfig.placeholderInsteadOfLabel &&\n inputConfig.placeholder &&\n isFocusInput\n ? inputConfig.placeholder\n : '') ||\n (inputConfig.placeholder && isFocusInput ? inputConfig.placeholder : '')\n \"\n [minLength]=\"inputConfig.minLength ? inputConfig.minLength : 0\"\n [maxLength]=\"inputConfig.maxLength ? inputConfig.maxLength : 999\"\n [mask]=\"inputConfig.mask\"\n [min]=\"inputConfig.min ? inputConfig.min : 0\"\n [max]=\"inputConfig.max\"\n [step]=\"inputConfig.step ? inputConfig.step : null\"\n [readOnly]=\"inputConfig.readOnly\"\n appMinMaxValue\n [minValue]=\"inputConfig.min!\"\n [maxValue]=\"inputConfig.max!\"\n inputformat=\"dd-mm-yy\"\n class=\"input-control\n {{ inputConfig.textTransform }}\n {{ inputConfig.textAlign }}\n {{ inputConfig.customClass }}\n \"\n [ngClass]=\"\n getSuperControl\n | inputClass\n : isFocusInput\n : isTouchedInput\n : inputConfig\n : input\n : isVisibleCommands\n : getSuperControl?.value\n : getSuperControl?.invalid\n : getSuperControl?.touched\n : isDropdownToggler\n : isEditInput\n : template\n \"\n (keypress)=\"onKeyPress($event)\"\n (keydown)=\"onKeydown($event)\"\n (keyup)=\"onKeyup($event)\"\n (blur)=\"onBlur($event)\"\n (focus)=\"onFocus($event)\"\n (select)=\"selectionChange($event)\"\n (input)=\"onChange($any($event.target).value); transformText($event)\"\n [(ngModel)]=\"input.value\"\n [ngStyle]=\"\n inputConfig.statusStyle ? (input.value | loadStatusColor) : ''\n \"\n />\n\n <!-- Placeholder Icon on Right Side -->\n <ng-container *ngIf=\"inputConfig.placeholderIconRightSide\">\n <svg-icon\n class=\"placeholder-icon-right-side {{\n inputConfig.placeholderIconColor\n }}\"\n [ngClass]=\"\n isFocusInput\n | inputPlaceholderIconRightClass\n : getSuperControl\n : inputConfig\n : isTouchedInput\n : getSuperControl?.value\n \"\n [src]=\"\n inputConfig.placeholderIconRightSide.toLowerCase()\n | caSvg : 'common'\n \"\n ></svg-icon>\n </ng-container>\n\n <!-- Input Error Message -->\n <ng-container\n *ngIf=\"\n !(!getSuperControl?.value && isFocusInput) &&\n (isTouchedInput || getSuperControl?.touched || getSuperControl?.value) &&\n getSuperControl?.invalid &&\n !inputConfig.isInvalidSearchInDropdown &&\n !inputConfig.isDisabled\n \"\n >\n <ng-container *ngIf=\"!(inputConfig.hideErrorMessage || inputConfig.errorInsideInput)\">\n <span class=\"input-error {{ inputConfig.customClass }}\">\n {{ getSuperControl?.errors | inputError: inputConfig.name }}\n </span>\n </ng-container>\n\n <!-- Error Message Inside Input -->\n <ng-container *ngIf=\"inputConfig.errorInsideInput\">\n <span class=\"error-inside-input {{ inputConfig.customClass }}\">\n {{ getSuperControl?.errors | inputError: inputConfig.name }}\n </span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"inputConfig.fixedPlacholder && input.value\">\n <span class=\"input-fixed-placehoder-label\">\n {{ inputConfig.fixedPlacholder }}\n </span>\n </ng-container>\n</div>\n\n<!-- Popover for DateTime Pickers -->\n<ng-template #dateTimePopover let-data=\"data\">\n <div class=\"datetime-dropdown-holder\">\n <app-ca-custom-datetime-pickers\n [calendarType]=\"\n inputConfig.name === 'datepicker' ||\n inputConfig.name === 'datepickerBankCard'\n ? 'date'\n : 'time'\n \"\n [inputConfig]=\"inputConfig\"\n [placeholder]=\"'MM/DD/YY'\"\n [dateTime]=\"dateTimeInputDate\"\n (closePopover)=\"closePopover()\"\n ></app-ca-custom-datetime-pickers>\n </div>\n</ng-template>", styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.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 .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::-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:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option{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.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.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.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active:not(.payroll-trucks):after,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:not(.payroll-trucks):after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#ccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ca-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:-webkit-max-content!important;width:-moz-max-content!important;width:max-content!important;padding:0!important;margin:0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;-moz-column-gap:29px;column-gap:29px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ca-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ca-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ca-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ca-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ca-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ca-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ca-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ca-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ca-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ca-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ca-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ca-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ca-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ca-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ca-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ca-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ca-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ca-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ca-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ca-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ca-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ca-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ca-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ca-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ca-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ca-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ca-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ca-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ca-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ca-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ca-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ca-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ca-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ca-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ca-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ca-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ca-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ca-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ca-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ca-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ca-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ca-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ca-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ca-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ca-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ca-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ca-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ca-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ca-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ca-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ca-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ca-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ca-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ca-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ca-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ca-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ca-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ca-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ca-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ca-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ca-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ca-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ca-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ca-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ca-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ca-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ca-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ca-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ca-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ca-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ca-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ca-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ca-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ca-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ca-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ca-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ca-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ca-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ca-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ca-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ca-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ca-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ca-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ca-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ca-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ca-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ca-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ca-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ca-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ca-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ca-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ca-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ca-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ca-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ca-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ca-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ca-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ca-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ca-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ca-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ca-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ca-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ca-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ca-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ca-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ca-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ca-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ca-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ca-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ca-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ca-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ca-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ca-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ca-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ca-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ca-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ca-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ca-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ca-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ca-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ca-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ca-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ca-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ca-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ca-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ca-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ca-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ca-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ca-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ca-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ca-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ca-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ca-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ca-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ca-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ca-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ca-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ca-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ca-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ca-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ca-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ca-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ca-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ca-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ca-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ca-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ca-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ca-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ca-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ca-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ca-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ca-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ca-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ca-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ca-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ca-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ca-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ca-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ca-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ca-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ca-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ca-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ca-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ca-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ca-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ca-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ca-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ca-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ca-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ca-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ca-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ca-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ca-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ca-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ca-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ca-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ca-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ca-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ca-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ca-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ca-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ca-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ca-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ca-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ca-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ca-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ca-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ca-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ca-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ca-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ca-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ca-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ca-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ca-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ca-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ca-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ca-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ca-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ca-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ca-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ca-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ca-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ca-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ca-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ca-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ca-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ca-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ca-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ca-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ca-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ca-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ca-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ca-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ca-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ca-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ca-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ca-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ca-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ca-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ca-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ca-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ca-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ca-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ca-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ca-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ca-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ca-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ca-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ca-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ca-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ca-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ca-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ca-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ca-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ca-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ca-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ca-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ca-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ca-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ca-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ca-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ca-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ca-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ca-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ca-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ca-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ca-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ca-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ca-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ca-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ca-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ca-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ca-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ca-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ca-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ca-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ca-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ca-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ca-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ca-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ca-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ca-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ca-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ca-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ca-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ca-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ca-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ca-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ca-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ca-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ca-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ca-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ca-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ca-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ca-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ca-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ca-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ca-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ca-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ca-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ca-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ca-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ca-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ca-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ca-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ca-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ca-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ca-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ca-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ca-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ca-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ca-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ca-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ca-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ca-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ca-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ca-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ca-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ca-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ca-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ca-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ca-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ca-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ca-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ca-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ca-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ca-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ca-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ca-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ca-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ca-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ca-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ca-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ca-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ca-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ca-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ca-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ca-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ca-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ca-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ca-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ca-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ca-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ca-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ca-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ca-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ca-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ca-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ca-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ca-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ca-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ca-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ca-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ca-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ca-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ca-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ca-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ca-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ca-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ca-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ca-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ca-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ca-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ca-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ca-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ca-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ca-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ca-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ca-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ca-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ca-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ca-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ca-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ca-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ca-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ca-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ca-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ca-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ca-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ca-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ca-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ca-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ca-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ca-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ca-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ca-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ca-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ca-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ca-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ca-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ca-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ca-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ca-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ca-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ca-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ca-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ca-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ca-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ca-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ca-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ca-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ca-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ca-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ca-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ca-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ca-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ca-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ca-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ca-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ca-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ca-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ca-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ca-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ca-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ca-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ca-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ca-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ca-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ca-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ca-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ca-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ca-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ca-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ca-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ca-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ca-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ca-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ca-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ca-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ca-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ca-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ca-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ca-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ca-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ca-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ca-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ca-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ca-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ca-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ca-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ca-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ca-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ca-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ca-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ca-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ca-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ca-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ca-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ca-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ca-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ca-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ca-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ca-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ca-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ca-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ca-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ca-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ca-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ca-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ca-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ca-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ca-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ca-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ca-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ca-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ca-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ca-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ca-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ca-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ca-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ca-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ca-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ca-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ca-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ca-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ca-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ca-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ca-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ca-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ca-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ca-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ca-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ca-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ca-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ca-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ca-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ca-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ca-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ca-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ca-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ca-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ca-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ca-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ca-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ca-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ca-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ca-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ca-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ca-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ca-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ca-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ca-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ca-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ca-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ca-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ca-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ca-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ca-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ca-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ca-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ca-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ca-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ca-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ca-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ca-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ca-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ca-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ca-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ca-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ca-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ca-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ca-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ca-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ca-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ca-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ca-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ca-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ca-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ca-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ca-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ca-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ca-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ca-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ca-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ca-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ca-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ca-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ca-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ca-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ca-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ca-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ca-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ca-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ca-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ca-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ca-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ca-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ca-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ca-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ca-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ca-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ca-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ca-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ca-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ca-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ca-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ca-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ca-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ca-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ca-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ca-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ca-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ca-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ca-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ca-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ca-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ca-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ca-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ca-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ca-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ca-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ca-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ca-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ca-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ca-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ca-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ca-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ca-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ca-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ca-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ca-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ca-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ca-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ca-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ca-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ca-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ca-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ca-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ca-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ca-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ca-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ca-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ca-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ca-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ca-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ca-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ca-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ca-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ca-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ca-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ca-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ca-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ca-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ca-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ca-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ca-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ca-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ca-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ca-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ca-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ca-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ca-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ca-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ca-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ca-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ca-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ca-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ca-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ca-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ca-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ca-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ca-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ca-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ca-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ca-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ca-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ca-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ca-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ca-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ca-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ca-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ca-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ca-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ca-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ca-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ca-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ca-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ca-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ca-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ca-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ca-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ca-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ca-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ca-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ca-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ca-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ca-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ca-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ca-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ca-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ca-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ca-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ca-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ca-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ca-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ca-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ca-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ca-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ca-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ca-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ca-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ca-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ca-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ca-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ca-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ca-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ca-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ca-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ca-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ca-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ca-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ca-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ca-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ca-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ca-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ca-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ca-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ca-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ca-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ca-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ca-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ca-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ca-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ca-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ca-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ca-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ca-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ca-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ca-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ca-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ca-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ca-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ca-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ca-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ca-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ca-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ca-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ca-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ca-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ca-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ca-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ca-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ca-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ca-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ca-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ca-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ca-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ca-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ca-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ca-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ca-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ca-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ca-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ca-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ca-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ca-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ca-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ca-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ca-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ca-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ca-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ca-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ca-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ca-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ca-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ca-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ca-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ca-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ca-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ca-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ca-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ca-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ca-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ca-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ca-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ca-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ca-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ca-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ca-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ca-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ca-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ca-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ca-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ca-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ca-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ca-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ca-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ca-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ca-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ca-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ca-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ca-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ca-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ca-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ca-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ca-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ca-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ca-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ca-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ca-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ca-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ca-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ca-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ca-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ca-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ca-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ca-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ca-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ca-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ca-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ca-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ca-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ca-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ca-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ca-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ca-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ca-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ca-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ca-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ca-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ca-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ca-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ca-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ca-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ca-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ca-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ca-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ca-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ca-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ca-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ca-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ca-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ca-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ca-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ca-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ca-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ca-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ca-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ca-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ca-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ca-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ca-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ca-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ca-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ca-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ca-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ca-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ca-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ca-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ca-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ca-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ca-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ca-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ca-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ca-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ca-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ca-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ca-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::-moz-selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::-moz-selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.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}.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;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}.tooltip-arrow{display:none!important}p{margin-bottom:0!important}.desc::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.desc::selection{color:#6c6c6c;background:#6c6c6c33}.details-container-items{display:grid;grid-template-columns:440px repeat(4,335px);-moz-column-gap:12px;column-gap:12px;row-gap:12px;padding-bottom:12px}.details-component{display:grid;grid-auto-flow:column;column-gap:12px;row-gap:12px}.details-component .truck-wrapper{background-color:#fff;border-radius:3px;margin-bottom:8px;width:440px;height:226px}.details-component .truck-wrapper p{margin:0}.details-component .truck-wrapper .truck-card-top{display:flex;align-items:center;justify-content:space-between}.details-component .truck-wrapper .truck-card-top .truck-card-name{color:#6c6c6c;font-size:18px;font-weight:500;position:relative;top:1px}.details-component .truck-wrapper .truck-card-top .truck-card-name::-moz-selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .truck-card-top .truck-card-name::selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .details-page-row-5{margin-top:8px}.details-component .truck-wrapper .details-page-row-7{height:236px;width:100%;margin:22px 0}.details-component .truck-wrapper .show-details{font-size:12px;font-weight:700;color:#778fbb;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.details-component .truck-wrapper .show-details:hover{transition:all .3s ease-in-out;cursor:pointer;text-decoration:underline;color:#5673aa}.details-component .details-cards{border-radius:3px;overflow:hidden;width:440px;background-color:#fff;padding:1px 8px 0}.details-component .details-cards.trailer-details-card{padding:0 8px}.assign-to{position:relative;left:-3px;display:grid;grid-template-columns:204px 204px;column-gap:12px;padding:0}.assign-to .assign-to-vehicle svg{width:55px;height:20px;display:flex;align-items:center}.assign-to .assign-to-vehicle svg:hover path{fill:#6c6c6c!important}.assign-to .assign-to-vehicle svg path{fill:#aaa}.assign-to .first .assign-to-vehicle svg{display:flex;align-items:center}.assign-to .first:hover .open-modal-icon{display:block;position:relative;bottom:4px;height:18px;width:18px}.assign-to .first:hover .open-modal-icon svg{cursor:pointer}.assign-to .first:hover .open-modal-icon svg:hover path{fill:#6c6c6c}.assign-to .second .icon-text-wrapper-cmp{position:relative;top:1px}.assign-to .second .assign-to-vehicle svg{display:flex}.assign-to .second:hover .open-modal-icon2{display:block;height:18px;width:18px;position:relative;bottom:4px}.assign-to .second:hover .open-modal-icon2 svg{cursor:pointer}.assign-to .second:hover .open-modal-icon2 svg:hover path{fill:#6c6c6c}.assign-to .assign-to-item{background-color:#f7f7f7;border-radius:2px;display:flex;align-items:center}.assign-to .assign-to-item .icon-text-wrapper-cmp{display:flex;align-items:center;padding-left:6px;margin:7px 0}.assign-to .assign-to-item .semi-tooltip{width:40px;height:20px}.assign-to .assign-to-item .semi-tooltip.typeDetails{width:auto}.assign-to .assign-to-item svg{fill:#aaa;object-fit:fill;height:20px;width:55px}.assign-to .assign-to-item .open-modal-icon,.assign-to .assign-to-item .open-modal-icon2{display:none}.assign-to .assign-to-item .assign-to-vehicle{margin-right:6px;position:relative;bottom:0}.assign-to .assign-to-item .assign-to-vehicle.backImage{margin-right:0}.assign-to .assign-to-item .assign-to-value{font-size:14px;font-weight:500;color:#424242;line-height:18px;padding:4px 6px}.assign-to .assign-to-item .assign-to-value::-moz-selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value::selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value.inactive-assignTo-value{color:#aaa;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.assign-to .assign-to-item p{margin:0!important}.card-container .card-body-cdl{display:grid;padding:0 4px}.card-container .card-body-cdl .card-item-name{font-size:11px;color:#2f2f2f;font-weight:700;height:15px;margin-bottom:2px}.card-container .card-body-cdl .card-item-name::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-name::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap;height:18px}.card-container .card-body-cdl .card-item-value::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value:hover{color:#2f2f2f}.card-container .card-body-cdl .card-row-issued{display:grid;grid-template-columns:32px 32px 32px;column-gap:49px;margin-top:12px}.card-container .card-body-cdl .card-row-endor{display:grid;grid-template-columns:repeat(auto-fit,minmax(20%,1fr));gap:6px;margin-bottom:4px}.card-container .card-body-cdl .card-row-progress{margin-top:8px}.card-container .card-body-cdl .endorsement{margin-top:12px}.perfomance{display:flex!important;flex-direction:column}.perfomance .common-template-item-name{font-size:14px!important;font-weight:600!important}.perfomance .common-template-item-value{font-size:18px!important;font-weight:600!important}.card-pdf{padding:0 5px;margin-bottom:12px}.card-pdf.extended{margin-bottom:30px}.card-pdf.disabled{height:0!important;margin:0!important;padding:0!important}.status-container{padding-top:12px;display:flex;flex-direction:column;margin-bottom:-12px!important}.status-container .status-header{display:flex;justify-content:space-between;align-items:center}.status-container .status-header .status-item{height:18px}.status-container .status-header .status-item .p-status{font-size:14px;font-weight:700;color:#2f2f2f}.status-container .status-header .status-item .p-status::-moz-selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status::selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status .note-textarea{color:#6c6c6c!important;font-weight:500!important}.status-container .status-header .status-item .p-status .note-textarea::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::-moz-selection,.status-container .status-header .status-item .p-status .note-textarea div::-moz-selection,.status-container .status-header .status-item .p-status .note-textarea b::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::selection,.status-container .status-header .status-item .p-status .note-textarea div::selection,.status-container .status-header .status-item .p-status .note-textarea b::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::-moz-selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::-moz-selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::-moz-selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::-moz-selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::-moz-selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::-moz-selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-items .item-wrapper{display:grid;grid-template-columns:119px 137px 78px;grid-column-gap:45px;align-content:center;justify-content:center}.status-container .status-items .item-wrapper .svg-text{display:flex;align-items:center}.status-container .status-items .item-wrapper .svg-text .employment{margin-left:6px;position:relative;bottom:-2px}.status-container .status-items .item-wrapper .duration{text-align:right}.status-container .status-items .item-wrapper p{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap}.status-container .status-items .item-wrapper p::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::selection{color:#6c6c6c;background:#6c6c6c33}.charts-template{display:grid;grid-template-columns:215px 1fr;grid-row-gap:12px;row-gap:12px;margin-bottom:12px}.charts-template .charts-template-item{display:flex;flex-direction:column}.charts-template .charts-template-item .icon-name-item{display:flex;align-items:baseline;height:18px}.charts-template .charts-template-item .icon-name-item .charts-template-item-name{margin-right:4px}.charts-template .charts-template-item .charts-template-item-name{font-size:11px;color:#424242;font-weight:700;line-height:14px}.charts-template .charts-template-item .charts-template-item-name::-moz-selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value{font-size:18px;font-weight:500;color:#424242;width:220px}.charts-template .charts-template-item .charts-template-item-value::-moz-selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::-moz-selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.second-progress{margin-bottom:16px}.truck-details-wrapper{padding:0 12px}.truck-details-wrapper .truck svg{width:132px;height:48px}.truck-details-wrapper .details-header-avatar{display:flex;align-items:center;height:48px;margin-top:14px}.truck-details-wrapper .details-header-avatar .model-name{flex-direction:column;margin-left:12px;margin-top:12px}.truck-details-wrapper .details-header-avatar .model-name p{font-size:18px;font-weight:500;color:#2f2f2f}.truck-details-wrapper .details-header-avatar .model-name p::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name p::selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name .svg-wrapper{height:14px;display:flex;align-items:flex-end;margin-bottom:2px}.truck-details-wrapper .details-header-avatar .model-name svg path{fill:#424242;object-fit:fill}.truck-details-wrapper .details-header-avatar .model-name svg rect{fill:#aaa}.truck-details-wrapper .details-header-data{margin-top:14px}.truck-details-wrapper .details-header-data .details-header-data-item{display:flex;height:18px;align-items:center}.truck-details-wrapper .details-header-data .details-header-data-item p{font-size:18px;color:#2f2f2f;font-weight:400}.truck-details-wrapper .details-header-data .details-header-data-item .header-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .details-header-data .second{margin-top:14px;margin-bottom:14px}.truck-details-wrapper .details-header-data .second p{font-size:14px!important;color:#2f2f2f;font-weight:400;position:relative;bottom:-1px}.truck-details-wrapper .details-header-data .second .date{margin-left:8px!important;position:relative}.truck-details-wrapper .color-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .vin-text{margin-left:6px!important;margin-right:37px;position:relative;bottom:-1px!important}.common-template{display:grid;grid-template-columns:202px 1fr;row-gap:12px}.common-template .common-item-wrapper{display:flex;align-items:center;height:40px}.common-template .common-template-item{display:flex;flex-direction:column}.common-template .common-template-item::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item::selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item .icon-name-item{display:flex;align-items:center;height:18px}.common-template .common-template-item .icon-name-item .common-template-item-name{margin-left:6px}.common-template .common-template-item .common-template-item-name{font-size:11px;font-weight:600;color:#424242}.common-template .common-template-item .common-template-item-name::-moz-selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value{font-size:14px;font-weight:500;color:#424242;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.common-template .common-template-item .common-template-item-value::-moz-selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::-moz-selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.divider{margin:0;height:2px;width:100%;border-radius:1px;background-color:#f3f3f3}.card_files_holder.active{min-height:448px}.note-cards .note-body{padding-left:0!important;padding-right:2px!important}.note-cards .note-body .note-textarea{color:#6c6c6c!important;font-weight:400!important;padding-bottom:12px!important}.note-cards .note-body .note-textarea::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.note-cards .note-body .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::selection{color:#6c6c6c;background:#6c6c6c33}.no-data-driver-details{font-size:14px;font-weight:400;color:#919191}.no-data-driver-details::-moz-selection{color:#919191;background:#b7b7b733}.no-data-driver-details::selection{color:#919191;background:#b7b7b733}.owner-items{display:flex;align-items:center;height:18px}.owner-items .card-icon{display:none;cursor:pointer;margin-left:6px}.owner-items .information-value{font-size:14px;font-weight:400;color:#6c6c6c;margin-left:6px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.owner-items .information-value::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.owner-items .information-value::selection{color:#6c6c6c;background:#6c6c6c33}.owner-items:hover .card-icon{display:flex}.copied .vin-text,.copied .information-value{animation-duration:1.5s;animation-name:change}.copied .card-icon svg path{animation-duration:1.5s;animation-name:changeSVG}.copied .card-icon svg path:hover{animation-duration:1.5s;animation-name:changeSVG}.hide-show{font-size:14px;color:#6d82c7;font-weight:600;margin-left:6px;cursor:pointer}.hide-show::-moz-selection{color:#6d82c7;background:#536bc233}.hide-show::selection{color:#6d82c7;background:#536bc233}.hide-show:hover{color:#536bc2}.bind-height{max-height:fit-content!important}.card-width{width:335px}.icons-details{margin-right:6px}.date-details-svg{margin-left:29px}.note-details-holder{padding-right:6px;padding-left:3px}.note-details-holder .note-container .note-header.active .note-label{color:#6c6c6c!important}.note-details-holder .note-container .note-header .note_upper_hold svg path{fill:#919191}.note-details-holder .note-container .note-header .note_upper_hold .rotate svg path{fill:#aaa}.boldSanVin{font-weight:800}@media (max-width: 1910px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,320px)}.card-width{width:320px}.repair-details-container,.repair-details-cmp{grid-template-columns:440px 712px 320px 260px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 145px!important}.repair-container{width:712px!important}.repaired-vehicle-container{width:320px!important}.likes-count-container{width:260px}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 50px 46px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 79px 52px 66px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 325px!important}.counter-text{padding:0 0 0 8px!important}.reason-span{display:none}app-shipper-details .load,app-broker-details .load{width:712px!important}app-shipper-details .contact,app-broker-details .contact{width:320px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:320px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:260px!important}app-shipper-details .review-container,app-broker-details .review-container{width:260px!important}}@media (max-width: 1870px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,300px)}.card-width{width:300px}}@media (max-width: 1850px){.repair-details-container,.repair-details-cmp{grid-template-columns:430px 702px 310px 250px!important}.repair-general-holder{width:430px}.repair-container{width:702px!important}.repaired-vehicle-container{width:310px!important}.likes-count-container{width:250px}.repair-component{height:max-content}.repair-component .repair-cards{width:430px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 37px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 40px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:430px!important}app-shipper-details .load,app-broker-details .load{width:702px!important}app-shipper-details .contact,app-broker-details .contact{width:310px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:310px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:250px!important}app-shipper-details .review-container,app-broker-details .review-container{width:250px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:407px!important}}@media (max-width: 1820px){.repair-details-container,.repair-details-cmp{grid-template-columns:420px 692px 300px 240px!important}.repair-general-holder{width:420px}.repair-container{width:692px!important}.repaired-vehicle-container{width:300px!important}.likes-count-container{width:240px}.repair-component .repair-cards{width:420px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 100px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 99px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 27px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 29px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:420px!important}app-shipper-details .load,app-broker-details .load{width:692px!important}app-shipper-details .contact,app-broker-details .contact{width:300px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:300px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:240px!important}app-shipper-details .review-container,app-broker-details .review-container{width:240px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:396px!important}}@media (max-width: 1780px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,280px)}.card-width{width:280px}.request-header-container{width:26px!important;height:26px!important}.request-header-container p{display:none}.request-header-container svg-icon{display:flex!important;transition:background .2s ease-in}.request-header-container svg-icon:hover{background:#e9effd!important}.request-header-container svg-icon:hover svg path{fill:#0b49d1}.repair-details-container{grid-template-columns:475px 760px 410px 0px!important}.repair-general-holder{width:475px}.repair-container{width:760px!important}.repaired-vehicle-container{width:410px!important;max-width:410px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:475px!important}.repair-component .repair-cards{width:475px!important}.repair-details-cmp{grid-template-columns:475px 760px 410px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:410px!important;max-width:410px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:410px!important;max-width:410px!important}.purchase-template{display:grid;grid-template-columns:repeat(2,50%)!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:475px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:475px!important;max-width:475px!important}app-shipper-details .load,app-broker-details .load{width:760px!important}app-shipper-details .contact,app-broker-details .contact{width:410px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:410px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:410px!important}app-shipper-details .review-container,app-broker-details .review-container{width:410px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:450px!important}}@media (max-width: 1760px){.repair-details-container{grid-template-columns:455px 740px 390px 0px!important}.repair-general-holder{width:455px}.repair-container{width:740px!important}.repaired-vehicle-container{width:390px!important;max-width:390px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:455px!important}.repair-component .repair-cards{width:455px!important}.repair-details-cmp{grid-template-columns:455px 740px 390px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:390px!important;max-width:390px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:390px!important;max-width:390px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:455px!important;max-width:455px!important}app-shipper-details .load,app-broker-details .load{width:740px!important}app-shipper-details .contact,app-broker-details .contact{width:390px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:390px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:390px!important}app-shipper-details .review-container,app-broker-details .review-container{width:390px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:430px!important}}@media (max-width: 1700px){.details-container-items{display:grid;grid-template-columns:420px repeat(4,270px)}.card-width{width:270px}.cards-item-wrapper-1,.details-component .details-cards{width:420px}.repair-details-container{grid-template-columns:400px 740px 390px 0px!important}.repair-general-holder{width:400px}.details-header-wrapper-reapirShop{max-width:400px!important}.repair-component .repair-cards{width:400px!important}.repair-details-cmp{grid-template-columns:400px 740px 390px 0px!important}.longText{display:none!important}.shortText{display:block!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 105px 92px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:400px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:377px!important}.details-container-items{display:grid;grid-template-columns:400px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:400px}.assign-to{grid-template-columns:185px 185px}}@media (max-width: 1640px){.repair-details-container{grid-template-columns:400px 720px 370px 0px!important}.repair-container{width:720px!important}.repaired-vehicle-container{width:370px!important;max-width:370px!important}.repair-details-cmp{grid-template-columns:400px 720px 370px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:370px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:370px!important;max-width:370px!important}app-shipper-details .load,app-broker-details .load{width:720px!important}app-shipper-details .contact,app-broker-details .contact{width:370px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:370px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:370px!important}app-shipper-details .review-container,app-broker-details .review-container{width:370px!important}}@media (max-width: 1610px){.details-container-items{display:grid;grid-template-columns:380px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:380px}.assign-to{grid-template-columns:175px 175px}.repair-details-container{grid-template-columns:380px 710px 350px 0px!important}.repair-container{width:710px!important}.repaired-vehicle-container{width:350px!important;max-width:350px!important}.repair-details-cmp{grid-template-columns:380px 710px 350px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:350px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:350px!important;max-width:350px!important}.repair-component .repair-cards{width:380px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 86px 92px!important}app-shipper-details-card .hours-template{grid-template-columns:150px 150px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:380px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:356px!important}}@media (max-width: 1590px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,260px)}.details-component .details-cards,.cards-item-wrapper-1{width:360px}.card-width{width:260px}.reason-span{display:none}.assign-to{grid-template-columns:162px 162px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 710px 350px 0px!important}.repair-component .repair-cards{width:360px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 91px 70px!important}app-shipper-details-card .hours-template{grid-template-columns:140px 140px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:336px!important}}@media (max-width: 1440px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,250px)}.card-width{width:250px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-container{width:700px!important}.repaired-vehicle-container{width:272!important;max-width:272px!important}.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{width:272px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:272px!important;max-width:272px!important}.repair-component .repair-cards{width:360px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:35px 40px 25px 35px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:45px 68px 27px 66px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:700px!important}app-shipper-details .contact,app-broker-details .contact{width:272px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:272px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:272px!important}app-shipper-details .review-container,app-broker-details .review-container{width:272px!important}}@media (max-width: 1500px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,237px)}.card-width{width:237px}}.datetime-dropdown-holder{position:relative;top:16px}.picker_input_holder{display:flex;min-width:146px;max-width:260px;border-radius:3px;background-color:#f9f9f9}.picker_input_holder input{width:100%;padding-left:6px;border:none;outline:none;background-color:transparent;caret-color:transparent;-webkit-appearance:none}.picker_input_holder input:focus{outline:none;border:none}.picker_input_holder input::-webkit-input-placeholder{color:#919191!important}.picker_input_holder input:-ms-input-placeholder{color:#919191!important}.picker_input_holder input::placeholder{color:#919191!important}.picker_input_holder .toggle_picker{display:flex;justify-content:center;align-items:center;width:26px;height:26px;min-width:26px;background-color:#eee;border-radius:3px;cursor:pointer}.picker_input_holder .toggle_picker:after{display:none}.picker_input_holder .toggle_picker svg-icon{display:flex}.picker_input_holder .toggle_picker svg-icon svg{width:12px;height:10px}.picker_input_holder .toggle_picker svg-icon svg path{fill:#919191}.picker_input_holder:hover{opacity:1}.picker_input_holder.active{background-color:#6c6c6c;border-left:3px solid #6c6c6c}.picker_input_holder.active .toggle_picker{background-color:#919191}.picker_input_holder.active .toggle_picker svg-icon{display:flex}.picker_input_holder.active .toggle_picker svg-icon svg{transform:rotate(180deg)}.picker_input_holder.active .toggle_picker svg-icon svg path{fill:#fff}.picker_input_holder.active input::-webkit-input-placeholder{color:#fff!important}.picker_input_holder.active input:-ms-input-placeholder{color:#fff!important}.picker_input_holder.active input::placeholder{color:#fff!important}.pickers_holder{position:absolute;top:3px!important;width:auto!important;padding:0;background-color:#fff;box-shadow:0 0 4px #00000026;z-index:999;border-radius:3px;overflow:hidden}.pickers_holder .time_picker{width:167px}.pickers_holder .date_picker{display:flex}.pickers_holder .date_picker .month-years-size{position:relative;width:48px;background-color:#f9f9f9}.pickers_holder .date_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:24px;transform:translateY(-50%);background-color:#fff}.pickers_holder .date_picker .month-years-size .month-year-item{display:flex;align-items:center;justify-content:center;height:24px;font-size:14px;color:#919191;font-weight:400;text-align:center;text-transform:uppercase}.pickers_holder .date_picker .month-years-size .month-year-item .left-year-show{color:#919191;font-size:14px;font-weight:700}.pickers_holder .date_picker .month-years-size .month-year-item:hover{color:#6c6c6c;cursor:pointer;background-color:#fbe9e9;border-radius:2px}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 2px 0}.pickers_holder .date_picker .full-calendars-list{flex:1;max-height:290px;min-width:264px;overflow:hidden}.pickers_holder .date_picker .full-calendars-list .full_list{height:100%}.pickers_holder .date_picker .full-calendars-list .full_list .selfScroll{width:100%;height:100%}.pickers_holder .time_picker .time_picker_head{height:36px;display:flex;padding:0 12px;align-items:center;justify-content:space-between}.pickers_holder .time_picker .time_picker_head .selected_time{font-size:14px;font-weight:800;color:#6c6c6c}.pickers_holder .time_picker .time_picker_head .sel_now{color:#536bc2;font-size:14px;font-weight:700}.pickers_holder .time_picker .time_picker_head .sel_now:hover{cursor:pointer;color:#5673aa}.pickers_holder .time_picker .time_picker_body .picker_body_head{height:22px;display:flex;align-items:center;background-color:#f7f7f7;margin:0 4px 2px;border-radius:2px}.pickers_holder .time_picker .time_picker_body .picker_body_head div{flex:0 0 33%;text-align:center;font-size:10px;font-weight:700;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body_head div.active{color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body{position:relative;height:155px;display:flex;justify-content:center}.pickers_holder .time_picker .time_picker_body .picker_body:after{content:\"\";position:absolute;width:100%;height:31px;top:-1px;left:0;pointer-events:none;background:linear-gradient(to bottom,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body:before{content:\"\";position:absolute;pointer-events:none;width:100%;height:31px;bottom:-1px;left:0;background:linear-gradient(to top,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line{position:absolute;width:calc(100% - 8px);height:22px;top:50%;left:4px;border-radius:2px;transform:translateY(-50%);background-color:#9191911a}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line span{position:absolute;left:30%;font-size:14px;font-weight:400;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers{position:relative;height:22px;flex:0 0 33.3%;height:100%;padding:67px 0;margin:0 7px;overflow:auto;text-align:center;-ms-overflow-style:none;scrollbar-width:none;z-index:10}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:first-child{flex:0 0 28px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(2){flex:0 0 36px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(3){flex:0 0 38px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers::-webkit-scrollbar{display:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{height:22px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#919191;font-weight:400;-webkit-user-select:none;user-select:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item:hover{color:#5673aa;cursor:pointer}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:hover{box-shadow:inset 0 0 4px #00000026}.pickers_holder .time_picker .picker_buttons{display:flex;padding:6px;justify-content:space-between}.pickers_holder .time_picker .picker_buttons .pick_button{display:flex;align-items:center;justify-content:center;height:32px;padding:0 12px;text-align:center;border-radius:2px;font-size:12px;font-weight:700;color:#919191b3}.pickers_holder .time_picker .picker_buttons .pick_button:hover{background-color:#f3f3f3;color:#919191;cursor:pointer}.pickers_holder .time_picker .picker_buttons .pick_button.set_button{width:57px;text-align:center;background-color:#6d82c7;color:#fff}.pickers_holder .time_picker .picker_buttons .pick_button.set_button:hover{background-color:#536bc2}.pickers_holder.dark_picker{background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size{width:40px;background-color:#424242}.pickers_holder.dark_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:26px;transform:translateY(-50%);background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .month-year-item{height:22px;color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item .left-year-show{color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year{color:#fff}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year .left-year-show{color:#fff;font-weight:700}.pickers_holder.dark_picker .month-years-size .month-year-item:hover{color:#fff;background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 4px 0}.pickers_holder.dark_picker .date_picker{margin:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list{min-width:184px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view{width:182px;padding-top:6px;background-color:#2f2f2f}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head{padding:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name{padding:0 4px;color:#fff;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name .year_hold{margin-right:0;color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today{padding:0 4px;color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today:hover{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator{margin:12px 10px;color:#919191;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.current_year{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.full_calendar{margin-bottom:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px 4px;padding:0}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days .cal_day{width:22px;height:22px;margin:0;font-size:9px;color:#aaa;text-align:center}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;row-gap:12px;justify-content:unset;margin:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item{margin:0;height:22px;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item:hover:not(.current_month){background-color:#424242;color:#fff;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item.current_month{color:#fff;background-color:#3b73ed66;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list.current_year .month_list_item{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px;padding:0;height:auto}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day{width:22px;height:22px;margin:0;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#fff;background-color:#3b73ed66;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#3b73ed66;color:#fff;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.day_in_current_month{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.weekend_day_in_current_month{color:#ccc}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#424242;border-radius:2px;cursor:pointer;color:#fff}.pickers_holder.dark_picker .time_picker{width:156px;margin:4px}.pickers_holder.dark_picker .time_picker .time_picker_head{height:18px;padding:0 4px;margin-bottom:4px}.pickers_holder.dark_picker .time_picker .time_picker_head .selected_time{color:#fff;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_head .sel_now{color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;margin:0 0 4px;padding:2px;background:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head div{color:#aaa;font-size:9px;text-align:center;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body{height:176px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;padding:0 2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:before{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:after{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line{left:0;width:100%;background-color:#3b73ed33}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line{left:33.3%;width:1px;height:12px;margin-top:5px;background-color:#92b1f5;opacity:.4;border-radius:2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line.line_2{left:66.6%}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers{margin:0;padding:77px 0}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{color:#aaa;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item.active_item{color:#fff}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons{display:grid;grid-template-columns:repeat(2,1fr);column-gap:4px;margin-top:6px;padding:4px 0 0;border-top:1px solid #424242}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button{height:18px;background-color:#424242;color:#fff;font-size:11px;text-transform:uppercase;border-radius:1px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button.set_button{width:auto;background-color:#3b73ed}.calendar_view{width:260px;padding-top:12px;background-color:#fff}.calendar_view .calendar_view_head{display:flex;justify-content:space-between;margin-bottom:12px;padding:0 12px}.calendar_view .calendar_view_head .month_name{font-size:12px;font-weight:700;color:#6c6c6c}.calendar_view .calendar_view_head .month_name .year_hold{margin-right:5px;text-transform:uppercase;color:#6c6c6c;cursor:pointer}.calendar_view .calendar_view_head .month_name .year_hold:hover{color:#919191}.calendar_view .calendar_view_head .today{font-size:12px;font-weight:700;color:#5673aab3;cursor:pointer}.calendar_view .calendar_view_head .today:hover{color:#3551b7}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport{height:230px;min-height:230px}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view .calendar_indicator{margin:12px;height:18px;font-size:12px;color:#6c6c6c66;font-weight:700}.calendar_view .calendars_list_view .calendar_month_days{padding:0 3px}.calendar_view .calendars_list_view .calendar_month_days.hideVisibility{visibility:hidden}.calendar_view .calendars_list_view .calendar_month_days .cal_day{width:24px;margin:0 6px;font-size:12px;font-weight:700;color:#b7b7b7}.calendar_view .calendars_list_view .calendar_days{height:140px;display:flex;flex-wrap:wrap;padding:0 3px}.calendar_view .calendars_list_view .calendar_days .calendar_day{display:flex;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;margin:0 6px;font-size:14px;font-weight:400;color:#6c6c6c}.calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#fff;background-color:#919191;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#919191;color:#fff;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#f7f7f7;border-radius:2px;cursor:pointer;color:#3c3c3c}.calendar_view .month_list{display:flex;flex-wrap:wrap;justify-content:space-around;height:140px}.calendar_view .month_list .month_list_item{flex:0 0 50px;height:24px;margin:0 10px;display:flex;align-items:center;justify-content:center;border-radius:3px;font-size:12px;color:#6c6c6c;font-weight:400}.calendar_view .month_list .month_list_item:hover:not(.current_month){background-color:#f7f7f7;color:#3c3c3c;border-radius:2px;cursor:pointer}.calendar_view .month_list .month_list_item.current_month{color:#3c3c3c;background-color:#f7f7f7;border-radius:2px;cursor:pointer}.dropdown{z-index:999!important}input[type=date]::-webkit-inner-spin-button,input[type=date]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}.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}*{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}.input-custom-group{display:block;position:relative}.input-custom-group .location-area-filter,.input-custom-group .location-area-filter.focus,.input-custom-group .location-area-filter.focus:hover{background-color:#424242!important;color:#fff!important}.input-custom-group .location-area-filter.focus::placeholder{background-color:#424242!important}.input-custom-group .location-area-filter:focus{background-color:#424242!important;color:#fff!important}.input-custom-group:hover.required-label-table label span{color:#2f2f2f!important}.input-custom-group.datetimeclass{border-radius:2px!important}.input-custom-group.datetimeclass:not(.invalid-focus-out-filled),.input-custom-group.datetimeclass:not(.valid-focus-in),.input-custom-group.datetimeclass:not(.valid-focus-out),.input-custom-group.datetimeclass:not(.valid-focus-out-filled),.input-custom-group.datetimeclass:not(.invalid-focus-in),.input-custom-group.datetimeclass:not(.invalid-focus-out-empty){background-color:#eee}.input-custom-group.datetimeclass:not(.invalid-focus-out-filled):hover,.input-custom-group.datetimeclass:not(.valid-focus-in):hover,.input-custom-group.datetimeclass:not(.valid-focus-out):hover,.input-custom-group.datetimeclass:not(.valid-focus-out-filled):hover,.input-custom-group.datetimeclass:not(.invalid-focus-in):hover,.input-custom-group.datetimeclass:not(.invalid-focus-out-empty):hover{background-color:#dadada}.input-custom-group.datetimeclass.invalid-empty-focus-out{background-color:#fae3e3}.input-custom-group.datetimeclass.invalid-empty-focus-out:hover{background-color:#f5c7c7}.input-custom-group.datetimeclass.valid-focus-out{background-color:#e2ecf9}.input-custom-group.datetimeclass.valid-focus-out:hover{background-color:#c5d8f3}.input-custom-group.datetimeclass.inactive-empty,.input-custom-group.datetimeclass.inactive-filled{background-color:#f7f7f7}.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-filled),.input-custom-group.datetimeclass.dark:not(.valid-focus-in),.input-custom-group.datetimeclass.dark:not(.valid-focus-out),.input-custom-group.datetimeclass.dark:not(.valid-focus-out-filled),.input-custom-group.datetimeclass.dark:not(.invalid-focus-in),.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-empty){background-color:#424242}.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-filled):hover,.input-custom-group.datetimeclass.dark:not(.valid-focus-in):hover,.input-custom-group.datetimeclass.dark:not(.valid-focus-out):hover,.input-custom-group.datetimeclass.dark:not(.valid-focus-out-filled):hover,.input-custom-group.datetimeclass.dark:not(.invalid-focus-in):hover,.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-empty):hover{background-color:#6c6c6c}.input-custom-group.datetimeclass.dark.valid-focus-out-filled{background-color:red}.input-custom-group.datetimeclass.dark.valid-focus-out-filled:hover{background-color:#c5d8f3}.input-custom-group.datetimeclass.dark.inactive-empty,.input-custom-group.datetimeclass.dark.inactive-filled{background-color:#f7f7f7}.input-custom-group.custom-empty-hover:hover{transition:.3s ease-in-out}.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.custom-empty-hover:hover .input-icon:hover~.input-control,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:hover~.input-control{background-color:#dadada}.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:before:hover,.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.custom-empty-hover:hover .input-icon:before:hover,.input-custom-group.custom-empty-hover:hover .input-icon:after:hover~.input-control,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:after:hover~.input-control{background-color:#dadada}.input-custom-group.custom-filled-hover:hover{transition:.3s ease-in-out}.input-custom-group.custom-filled-hover:hover .input-clear{display:inline-block}.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-icon:hover~.input-control,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-clear:hover~.input-control{background-color:#dadada}.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:before:hover,.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-icon:before:hover,.input-custom-group.custom-filled-hover:hover .input-icon:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-clear:before:hover,.input-custom-group.custom-filled-hover:hover .input-clear:after:hover~.input-control{background-color:#dadada}.input-custom-group.input-remove-trash-can:hover .input-clear{display:inline-block!important}.input-custom-group.input-remove-trash-can:hover .input-clear:hover~.input-control{background-color:#dadada}.input-custom-group.input-remove-trash-can:hover .placeholder-icon-right-side{opacity:0}.input-custom-group.input-remove-background:hover .input-control{background:transparent!important}.input-custom-group.input-remove-background.input-blue-text{color:red}.input-custom-group.input-remove-background .input-control{background:transparent;color:#2f2f2f;font-weight:400}.input-custom-group.input-remove-background .input-control.focus,.input-custom-group.input-remove-background .input-control.focus:hover{background:#2f2f2f!important;color:#fff!important}.input-custom-group.input-remove-background .input-control.focus::placeholder{color:#fff!important}.input-custom-group.input-remove-background .input-control:focus{background:#2f2f2f!important;color:#fff!important}.input-custom-group.input-remove-background .input-dropdown-arrow svg path{fill:#919191!important}.input-custom-group.input-blue-text .input-control{color:#6692f1}.input-custom-group.invalid-filled-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.invalid-filled-focus-out:hover .input-clear,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow,.input-custom-group.invalid-filled-focus-out:hover .input-icon,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear{display:inline-block}.input-custom-group.invalid-filled-focus-out:hover .input-clear:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-icon:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-filled-focus-out:hover .input-clear:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-clear:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-icon:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-icon:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:after:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-filled-focus-out:hover .input-label-counter{display:flex}.input-custom-group.invalid-empty-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.invalid-empty-focus-out:hover .input-clear{display:none}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x svg path{fill:#e66767}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x svg rect{fill:#e66767}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x:hover svg path{fill:#c20c0c}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x:hover svg rect{fill:#c20c0c}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.invalid-empty-focus-out:hover .input-icon{display:inline-block}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-icon:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-icon:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-icon:after:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-focus-in:hover{transition:.3s ease-in-out}.input-custom-group.invalid-focus-in:hover .input-password-eye:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-password:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:hover~.input-control{background-color:#e22e22}.input-custom-group.invalid-focus-in:hover .input-password-eye:before:hover,.input-custom-group.invalid-focus-in:hover .input-password-eye:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-password:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:after:hover~.input-control{background-color:#e22e22}.input-custom-group.valid-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.valid-focus-out:hover .input-clear,.input-custom-group.valid-focus-out:hover .input-pen-container,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow,.input-custom-group.valid-focus-out:hover .input-icon,.input-custom-group.valid-focus-out:hover .input-label-counter,.input-custom-group.valid-focus-out:hover .input-password-eye,.input-custom-group.valid-focus-out:hover app-ca-input-password,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.valid-focus-out:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.valid-focus-out:hover .input-clear:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-icon:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-label-counter:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-password-eye:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-password:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-clear:hover~.input-control{background-color:#c5d8f3}.input-custom-group.valid-focus-out:hover .input-clear:before:hover,.input-custom-group.valid-focus-out:hover .input-clear:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-pen-container:before:hover,.input-custom-group.valid-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-icon:before:hover,.input-custom-group.valid-focus-out:hover .input-icon:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-label-counter:before:hover,.input-custom-group.valid-focus-out:hover .input-label-counter:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-password-eye:before:hover,.input-custom-group.valid-focus-out:hover .input-password-eye:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-password:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-clear:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-clear:after:hover~.input-control{background-color:#c5d8f3}.input-custom-group.valid-focus-out:hover .input-label-counter{display:flex}.input-custom-group.valid-focus-out:hover .input-required-check{display:none}.input-custom-group.valid-focus-in:hover{transition:.3s ease-in-out}.input-custom-group.valid-focus-in:hover .trash-can-svg:hover~.input-control,.input-custom-group.valid-focus-in:hover .input-password-eye:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-password:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-clear:hover~.input-control{background-color:#255bb9}.input-custom-group.valid-focus-in:hover .trash-can-svg:before:hover,.input-custom-group.valid-focus-in:hover .trash-can-svg:after:hover~.input-control,.input-custom-group.valid-focus-in:hover .input-password-eye:before:hover,.input-custom-group.valid-focus-in:hover .input-password-eye:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-password:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-clear:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-clear:after:hover~.input-control{background-color:#255bb9}.input-custom-group.inactive-filled:hover .input-clear,.input-custom-group.inactive-filled:hover .trash-can-svg,.input-custom-group.inactive-filled:hover .input-pen-container,.input-custom-group.inactive-filled:hover .input-dropdown-arrow,.input-custom-group.inactive-filled:hover .input-icon,.input-custom-group.inactive-filled:hover .input-password-eye,.input-custom-group.inactive-filled:hover app-ca-input-password,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon,.input-custom-group.inactive-filled:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.inactive-filled:hover .input-clear:hover~.input-control,.input-custom-group.inactive-filled:hover .trash-can-svg:hover~.input-control,.input-custom-group.inactive-filled:hover .input-pen-container:hover~.input-control,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.inactive-filled:hover .input-icon:hover~.input-control,.input-custom-group.inactive-filled:hover .input-password-eye:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-password:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-clear:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-filled:hover .input-clear:before:hover,.input-custom-group.inactive-filled:hover .input-clear:after:hover~.input-control,.input-custom-group.inactive-filled:hover .trash-can-svg:before:hover,.input-custom-group.inactive-filled:hover .trash-can-svg:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-pen-container:before:hover,.input-custom-group.inactive-filled:hover .input-pen-container:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:before:hover,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-icon:before:hover,.input-custom-group.inactive-filled:hover .input-icon:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-password-eye:before:hover,.input-custom-group.inactive-filled:hover .input-password-eye:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-password:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-clear:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-clear:after:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-empty:hover .input-clear,.input-custom-group.inactive-empty:hover .input-pen-container,.input-custom-group.inactive-empty:hover .input-dropdown-arrow,.input-custom-group.inactive-empty:hover .input-icon,.input-custom-group.inactive-empty:hover .input-password-eye,.input-custom-group.inactive-empty:hover app-ca-input-password,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon,.input-custom-group.inactive-empty:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.inactive-empty:hover .input-clear:hover~.input-control,.input-custom-group.inactive-empty:hover .input-pen-container:hover~.input-control,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.inactive-empty:hover .input-icon:hover~.input-control,.input-custom-group.inactive-empty:hover .input-password-eye:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-password:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-clear:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-empty:hover .input-clear:before:hover,.input-custom-group.inactive-empty:hover .input-clear:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-pen-container:before:hover,.input-custom-group.inactive-empty:hover .input-pen-container:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:before:hover,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-icon:before:hover,.input-custom-group.inactive-empty:hover .input-icon:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-password-eye:before:hover,.input-custom-group.inactive-empty:hover .input-password-eye:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-password:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-clear:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-clear:after:hover~.input-control{background-color:#f7f7f7}.input-custom-group .input-label{position:absolute;top:4px;left:6px;font-size:14px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;transition:.3s ease-in-out}.input-custom-group .input-label span::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.input-custom-group .input-label span::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.input-custom-group .input-label.required:after{content:\" *\";color:#ef5350}.input-custom-group .input-label.inactive-empty{color:#919191!important}.input-custom-group .input-label.up-label{top:-17px;left:6px;font-size:11px;font-weight:600}.input-custom-group .input-label.in-label{top:4px!important;font-size:11px!important;font-weight:600!important;transition:none!important}.input-custom-group .input-label.in-label.in-label-focus{color:#fff!important}.input-custom-group .input-label.no-transition{transition:none!important}.input-custom-group .input-label.input-placeholderIcon-on{left:37px}.input-custom-group .input-label.input-placeholderIcon-on.up-label{left:36px}.input-custom-group .input-label.hidden{display:none!important}.input-custom-group .input-label.required-label span{color:#df3c3c}.input-custom-group .input-label.load-shipper .load-shipper{display:grid;grid-template-columns:455px 120px;align-items:center}.input-custom-group .input-label.load-shipper .load-shipper span:nth-child(2){text-align:right;color:#6c6c6c;font-size:11px;font-weight:600}.input-custom-group .input-label.load-shipper.required:after{position:absolute;right:0;left:60px;top:0}.input-custom-group .input-label.load-shipper.multiple-labels.required:after,.input-custom-group .input-label.load-shipper.up-label.required:after{transition-delay:.1s;transition-timing-function:ease-in;position:absolute;right:0;left:48px;top:0}.input-custom-group .input-label .load-dispatches-ttd{display:grid;grid-template-columns:92px 89px 182px 53px;align-items:center;-moz-column-gap:65px;grid-column-gap:65px;column-gap:65px}.input-custom-group .input-label .load-dispatches-ttd span:nth-child(4){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label .load-dispatches-ttd.multiple-labels-position-on-focus span:nth-child(4){transition-delay:.3s;color:#6c6c6c!important;opacity:1;top:-19px}.input-custom-group .input-label.dropdown-double-column>*{display:grid;grid-template-columns:118px 1fr;align-items:center;-moz-column-gap:4px;grid-column-gap:4px;column-gap:4px}.input-custom-group .input-label.dropdown-triple-column>*{display:grid;grid-template-columns:220px 138px 220px;align-items:center;-moz-column-gap:4px;grid-column-gap:4px;column-gap:4px}.input-custom-group .input-label.load-broker .load-broker{display:grid;align-items:center;grid-template-columns:277px 82px 69px}.input-custom-group .input-label.load-broker .load-broker span:nth-child(2),.input-custom-group .input-label.load-broker .load-broker span:nth-child(3){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label.load-broker .load-broker.multiple-labels-position-on-focus span:nth-child(2),.input-custom-group .input-label.load-broker .load-broker.multiple-labels-position-on-focus span:nth-child(3){transition-delay:.3s;color:#919191!important;opacity:1;top:-19px;text-align:right}.input-custom-group .input-label.load-broker.required:after{position:absolute;left:51px;right:0;top:-1px}.input-custom-group .input-label.load-broker.multiple-labels.required:after,.input-custom-group .input-label.load-broker.up-label.required:after{transition-delay:.1s;transition-timing-function:ease-in;position:absolute;left:44px;right:0;top:-1px}.input-custom-group .input-label .load-broker-contact,.input-custom-group .input-label .load-shipper-contact{display:grid;grid-template-columns:235px 38px;align-items:center;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;transition:.3 ease-in-out}.input-custom-group .input-label .load-broker-contact span:nth-child(2),.input-custom-group .input-label .load-shipper-contact span:nth-child(2){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label .load-broker-contact.multiple-labels-position-on-focus span:nth-child(2),.input-custom-group .input-label .load-shipper-contact.multiple-labels-position-on-focus span:nth-child(2){transition-delay:.3s;opacity:1;top:-19px;color:#6c6c6c!important}.input-custom-group .input-label.load-shipper-contact .load-shipper-contact{grid-template-columns:295px 38px}.input-custom-group .input-label.regular{font-weight:400}.input-custom-group .input-label.datetimeclass.dark{color:#fff}.input-custom-group .hide-loads .load-broker{grid-template-columns:365px 92px}.input-custom-group .input-control{width:100%;height:26px;border:none;outline:none;border-radius:2px;padding:4px 6px;font-size:14px;font-weight:400;background-color:#eee;color:#2f2f2f;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.input-custom-group .input-control::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.center{text-align:center}.input-custom-group .input-control.uppercase{text-transform:uppercase}.input-custom-group .input-control.lowercase{text-transform:lowercase}.input-custom-group .input-control:hover{background-color:#dadada}.input-custom-group .input-control:focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .input-control:focus::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::-moz-placeholder{color:#fff6}.input-custom-group .input-control:focus:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::placeholder{color:#fff6}.input-custom-group .input-control:focus::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control:focus::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control:focus.blue-dropdown{background-color:#0b49d1}.input-custom-group .input-control.valid-focus-in,.input-custom-group .input-control.dropdown-placeholder-active,.input-custom-group .input-control.multiSelect-dropdown-active{background-color:#255bb9;color:#fff}.input-custom-group .input-control.valid-focus-in::-webkit-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-webkit-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-webkit-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-moz-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-moz-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-moz-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in:-ms-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active:-ms-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active:-ms-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-ms-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-ms-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-ms-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::placeholder,.input-custom-group .input-control.dropdown-placeholder-active::placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-moz-selection,.input-custom-group .input-control.dropdown-placeholder-active::-moz-selection,.input-custom-group .input-control.multiSelect-dropdown-active::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.valid-focus-in::selection,.input-custom-group .input-control.dropdown-placeholder-active::selection,.input-custom-group .input-control.multiSelect-dropdown-active::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.valid-focus-out-filled{background-color:#e2ecf9;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled.input-dropdown-table{background-color:#fff}.input-custom-group .input-control.valid-focus-out-filled::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled:hover{background-color:#c5d8f3}.input-custom-group .input-control.invalid-focus-in,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in{background-color:#e22e22;color:#fff}.input-custom-group .input-control.invalid-focus-in::-moz-selection,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.invalid-focus-in::selection,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.invalid-focus-out-filled,.input-custom-group .input-control.invalid-focus-out-empty{background-color:#fae3e3;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled::-moz-selection,.input-custom-group .input-control.invalid-focus-out-empty::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled::selection,.input-custom-group .input-control.invalid-focus-out-empty::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled:hover,.input-custom-group .input-control.invalid-focus-out-empty:hover{background-color:#f5c7c7}.input-custom-group .input-control.invalid-focus-out-empty-table:hover{color:#2f2f2f;background-color:#f5c7c7}.input-custom-group .input-control.inactive-empty{background-color:#f7f7f7;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled{background-color:#f7f7f7;color:#2f2f2f;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.inactive-filled::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.datetimeclass:not(.inactive-filled){letter-spacing:1px;pointer-events:none;opacity:0}.input-custom-group .input-control.has-placeholderIcon{padding-left:37px}.input-custom-group .input-control.dropdown-input-image-truck{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-webkit-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-moz-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus:-ms-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-ms-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-trailer{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-webkit-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-moz-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus:-ms-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-ms-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-color{padding-left:29px}.input-custom-group .input-control.dropdown-input-image-user{padding-left:30px}.input-custom-group .input-control.dropdown-input-image-pm{padding-left:37px}.input-custom-group .input-control.dropdown-input-image-without-text-transparent,.input-custom-group .input-control.multiple-input-values{color:transparent}.input-custom-group .input-control.input-32-font-20{font-weight:700;font-size:20px}.input-custom-group .input-control.details-pages{height:32px;background:#1d1d1d;color:#fff6}.input-custom-group .input-control.details-pages .input-dropdown-arrow:hover,.input-custom-group .input-control.details-pages:hover{background:#1d1d1d}.input-custom-group .input-control.details-pages::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::-moz-placeholder{color:#fff6}.input-custom-group .input-control.details-pages:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::placeholder{color:#fff6}.input-custom-group .input-control.disable-select-on-focus-out::-moz-selection{background-color:transparent}.input-custom-group .input-control.disable-select-on-focus-out::selection{background-color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-webkit-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-moz-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input:-ms-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-ms-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::placeholder{opacity:0;color:transparent}.input-custom-group .input-control.multiple-input-placeholder{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.load-dispatches-ttd,.input-custom-group .input-control.load-broker,.input-custom-group .input-control.load-shipper,.input-custom-group .input-control.load-shipper-contact{position:absolute;bottom:1.5px;background-color:transparent;display:grid;align-items:center}.input-custom-group .input-control.load-dispatches-ttd span,.input-custom-group .input-control.load-broker span,.input-custom-group .input-control.load-shipper span,.input-custom-group .input-control.load-shipper-contact span{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.double-text-dropdown{position:absolute;top:50%;transform:translateY(-48%);background-color:transparent;display:flex;align-items:center;justify-content:space-between;padding-right:26px}.input-custom-group .input-control.double-text-dropdown span:last-child .multiple-input-text{color:#919191;font-size:11px;font-weight:400}.input-custom-group .input-control.double-text-dropdown span:last-child .multiple-input-text.focusable-text{color:#6f9ee0;font-size:11px;font-weight:400}.input-custom-group .input-control.double-text-dropdown span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd{grid-template-columns:repeat(2,156px) 150px 122px;padding-top:3px}.input-custom-group .input-control.load-dispatches-ttd svg{height:16px;width:44px}.input-custom-group .input-control.load-dispatches-ttd svg path{fill:#919191}.input-custom-group .input-control.load-dispatches-ttd span:nth-child(1) .multiple-input-text,.input-custom-group .input-control.load-dispatches-ttd span:nth-child(2) .multiple-input-text{max-width:70px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.input-custom-group .input-control.load-dispatches-ttd span:nth-child(3) .multiple-input-text{max-width:100px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.input-custom-group .input-control.load-dispatches-ttd span:last-child{justify-content:flex-end}.input-custom-group .input-control.load-dispatches-ttd span:last-child .multiple-input-text{color:#919191!important;font-size:11px;font-weight:400;line-height:24px}.input-custom-group .input-control.load-dispatches-ttd span:last-child .multiple-input-text.focusable-text{color:#6f9ee0;font-size:11px;font-weight:400}.input-custom-group .input-control.load-dispatches-ttd span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd span span{line-height:23px;position:relative}.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9856,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9857,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9858,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg path{fill:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd .focusable-image{opacity:.6}.input-custom-group .input-control.load-dispatches-ttd .trailerContainer{width:max-content!important;padding:0!important;margin:0!important}.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9856,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9857,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9858,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg path{fill:#6f9ee0}.input-custom-group .input-control.load-broker{display:grid;grid-template-columns:229px 115px 48px;align-items:center;height:24px}.input-custom-group .input-control.load-broker span:nth-child(1){white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.input-custom-group .input-control.load-broker span:nth-child(2),.input-custom-group .input-control.load-broker span:nth-child(3){justify-content:flex-end}.input-custom-group .input-control.load-broker span:nth-child(3){position:relative;bottom:1px}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter.counter-focus{color:#6f9ee0;background-color:#6f9ee033}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter.counter-one{max-width:none!important;width:19px!important}.input-custom-group .input-control.load-broker-contact,.input-custom-group .input-control.load-shipper-contact{position:absolute;top:50%;transform:translateY(-50%);background-color:transparent!important;display:grid;grid-template-columns:165px 94px;align-items:center;grid-column-gap:20px;-moz-column-gap:20px;column-gap:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px;padding-right:35px}.input-custom-group .input-control.load-broker-contact span,.input-custom-group .input-control.load-shipper-contact span{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.load-broker-contact span span,.input-custom-group .input-control.load-shipper-contact span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.load-broker-contact span:nth-child(2),.input-custom-group .input-control.load-shipper-contact span:nth-child(2){justify-self:flex-end;font-size:11px;font-weight:400;line-height:24px}.input-custom-group .input-control.load-broker-contact span:nth-child(2) span,.input-custom-group .input-control.load-shipper-contact span:nth-child(2) span{color:#919191!important}.input-custom-group .input-control.text-suffix{position:absolute;top:50%;transform:translateY(-50%);background-color:transparent!important;display:flex;align-items:center;column-gap:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px;padding-right:35px}.input-custom-group .input-control.text-suffix span{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.text-suffix span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.text-suffix span:nth-child(2){justify-self:flex-end;font-size:14px;font-weight:400;line-height:18px}.input-custom-group .input-control.text-suffix span:nth-child(2) span:not(.focusable-text){color:#919191!important}.input-custom-group .input-control.text-suffix span:nth-child(2) span:not(.focusable-text):before{content:\"\\2022 \"}.input-custom-group .input-control.text-suffix span:nth-child(2) span.ca-add-dot:before{content:\"\\2022 \"}.input-custom-group .input-control.load-shipper-contact{grid-template-columns:283px 38px}.input-custom-group .input-control.load-shipper{grid-template-columns:394px 180px;-moz-column-gap:2px;column-gap:2px;padding-right:25px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px}.input-custom-group .input-control.load-shipper span:nth-child(2),.input-custom-group .input-control.load-shipper span:nth-child(3){justify-content:flex-end;font-size:11px;color:#919191!important;font-weight:400}.input-custom-group .input-control.load-shipper span:nth-child(2) span{color:#919191!important}.input-custom-group .input-control.load-shipper span:nth-child(2) span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;position:relative;bottom:1px}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter.counter-focus{color:#6f9ee0;background-color:#6f9ee033}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter.counter-one{max-width:none!important;width:19px!important}.input-custom-group .input-control.load-shipper span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.cursor-on-right-side{text-align:right;padding-right:32px}.input-custom-group .input-control.merge-dropdown-body-with-input::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::-moz-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::placeholder{color:#fff6}.input-custom-group .input-control.input-commands{background-color:#1d1d1d!important;color:#fff!important}.input-custom-group .input-control.input-commands.blue-commands{background-color:#0b49d1!important}.input-custom-group .input-control.dropdown-label-active{background-color:#1d1d1d!important;color:#fff!important}.input-custom-group .input-control.dispatch-dropdown{width:calc(100% - 24px);background-color:#2f2f2f!important}.input-custom-group input[type=number]::-webkit-inner-spin-button,.input-custom-group input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0!important}.input-custom-group input[type=number]::-webkit-inner-spin-button:hover,.input-custom-group input[type=number]::-webkit-outer-spin-button:hover,.input-custom-group input[type=number]::-webkit-inner-spin-button:focus,.input-custom-group input[type=number]::-webkit-outer-spin-button:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0!important}.input-custom-group input[type=number]{-moz-appearance:textfield!important}.input-custom-group input[type=number]:hover,.input-custom-group input[type=number]:focus{-moz-appearance:textfield!important}.input-custom-group .load-dispatches-ttd-owner{position:absolute;left:13px;bottom:7px;width:10px;height:10px}.input-custom-group .load-dispatches-ttd-owner svg{width:10px!important;height:10px!important}.input-custom-group .time-picker-opacity{opacity:1!important}.input-custom-group .dispatch-history-default-color{background:#f7f7f7!important;transition:background .3s ease-in-out}.input-custom-group .dispatch-history-row-hover{background:#eee!important;transition:background .3s ease-in-out}.input-custom-group .input-required-check{position:absolute;right:6px;width:14px;height:10px;display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-required-check svg path{fill:#6f9ee0}.input-custom-group .input-clear{position:absolute;right:4px;top:47%;transform:translateY(-50%);border-radius:1px;display:none;z-index:10;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-clear .input-clear-x svg{width:18px!important;height:18px!important;overflow:visible}.input-custom-group .input-clear .input-clear-x svg path{fill:#eee}.input-custom-group .input-clear .input-clear-x svg rect{fill:#919191;transition:transform .3s;transform:scale(1);transform-origin:center}.input-custom-group .input-clear .input-clear-x:hover svg{overflow:visible}.input-custom-group .input-clear .input-clear-x:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#424242}.input-custom-group .input-clear.datetimeclass{z-index:22!important}.input-custom-group .input-clear.focus{display:inline-block}.input-custom-group .input-clear.focus .input-clear-x svg path{fill:#1d1d1d}.input-custom-group .input-clear.focus .input-clear-x svg rect{fill:#aaa}.input-custom-group .input-clear.focus .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.valid-focus-in{display:inline-block}.input-custom-group .input-clear.valid-focus-in .input-clear-x svg path{fill:#255bb9}.input-custom-group .input-clear.valid-focus-in .input-clear-x svg rect{fill:#c5d8f3}.input-custom-group .input-clear.valid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.valid-focus-out .input-clear-x svg path{fill:#c5d8f3}.input-custom-group .input-clear.valid-focus-out .input-clear-x svg rect{fill:#6f9ee0}.input-custom-group .input-clear.valid-focus-out .input-clear-x:hover svg rect{fill:#3074d3}.input-custom-group .input-clear.invalid-focus-in{display:inline-block}.input-custom-group .input-clear.invalid-focus-in .input-clear-x svg path{fill:#e22e22}.input-custom-group .input-clear.invalid-focus-in .input-clear-x svg rect{fill:#f5c7c7}.input-custom-group .input-clear.invalid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.invalid-focus-out .input-clear-x svg path{fill:#f5c7c7}.input-custom-group .input-clear.invalid-focus-out .input-clear-x svg rect{fill:#e57373}.input-custom-group .input-clear.invalid-focus-out .input-clear-x:hover svg rect{fill:#ef5350}.input-custom-group .input-clear.incorrect-input{display:none}.input-custom-group .input-clear.incorrect-input .input-clear-x svg path{fill:#ef5350!important}.input-custom-group .input-clear.incorrect-input .input-clear-x svg rect{fill:transparent!important}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover{display:inline-block}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover svg rect{fill:#ef5350!important}.input-custom-group .input-clear.incorrect-input-on{display:inline-block}.input-custom-group .input-clear.incorrect-input-on .input-clear-x svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x svg rect{fill:#e57373!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x:hover svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x:hover svg rect{fill:#ef5350!important}.input-custom-group .input-clear.dropdown-on{right:27px!important;top:50%;transform:translateY(-50%)}.input-custom-group .input-clear.dropdown-on svg-icon{display:flex}.input-custom-group .input-clear.hidden{display:none}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg{width:20px!important;height:20px!important;position:relative;left:1px}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg path{fill:#aaa}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg rect{fill:#aaa}.input-custom-group .input-clear.trash-can-svg .input-clear-x:hover svg path{fill:#919191}.input-custom-group .input-clear.trash-can-svg .input-clear-x:hover svg rect{fill:#919191}.input-custom-group .input-clear.trash-can-svg:before{content:\"\";display:block;height:16px;width:1px;border-radius:3px;background-color:#91919166;position:absolute;right:22px;top:56%;transform:translateY(-50%)}.input-custom-group .input-clear.trash-can-svg.valid-focus-in{display:none}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x svg path{fill:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x svg rect{fill:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x:hover svg path{fill:#fff}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.trash-can-svg.valid-focus-in:before{background-color:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x svg path{fill:#6f9ee0}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x svg rect{fill:#6f9ee0}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x:hover svg path{fill:#3074d3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x:hover svg rect{fill:#3074d3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out:before{background-color:#6f9ee066}.input-custom-group .input-clear-dispatch{position:absolute;right:0;top:47%;display:flex;justify-content:center;align-items:center;width:26px;height:26px;transform:translateY(-50%);border-radius:2px;z-index:10;cursor:pointer;transition:background .3s ease-in-out}.input-custom-group .input-clear-dispatch svg-icon svg{display:flex;width:12px!important;height:12px!important}.input-custom-group .input-clear-dispatch svg-icon svg path{fill:#919191;transition:fill .3s ease-in-out}.input-custom-group .input-clear-dispatch:hover{background-color:#91919166}.input-custom-group .input-clear-dispatch:hover svg-icon svg path{fill:#dadada}.input-custom-group .input-icon{position:absolute;left:6px;top:47%;transform:translateY(-50%);z-index:10;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:.3s ease-in-out}.input-custom-group .input-icon svg-icon svg{width:18px;height:18px}.input-custom-group .input-icon.datetimeclass{z-index:21}.input-custom-group .input-icon.default-svg-color svg path{fill:#919191}.input-custom-group .input-icon.cursor-pointer{cursor:pointer}.input-custom-group .input-icon:after{content:\"\";display:block;height:15px;width:1px;border-radius:3px;background:#91919166;position:absolute;left:21px;top:55%;transform:translateY(-50%)}.input-custom-group .input-icon.focus svg path{fill:#ccc}.input-custom-group .input-icon.focus text{fill:#ccc}.input-custom-group .input-icon.focus:after{background:#ccc6}.input-custom-group .input-icon.valid-focus-in svg path{fill:#98b9ea}.input-custom-group .input-icon.valid-focus-in text{fill:#98b9ea}.input-custom-group .input-icon.valid-focus-in:after{background:#c5d8f3}.input-custom-group .input-icon.valid-focus-out svg path{fill:#6692f1}.input-custom-group .input-icon.valid-focus-out text{fill:#6f9ee0}.input-custom-group .input-icon.valid-focus-out:after{background-color:#6f9ee066}.input-custom-group .input-icon.valid-focus-out-dropdown-label:after{background-color:#6f9ee066}.input-custom-group .input-icon.invalid-focus-in svg path{fill:#ffb0a8}.input-custom-group .input-icon.invalid-focus-in text{fill:#ffb0a8}.input-custom-group .input-icon.invalid-focus-in:after{background-color:#f5c7c7}.input-custom-group .input-icon.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-icon.invalid-focus-out text{fill:#e57373}.input-custom-group .input-icon.invalid-focus-out:after{background:#e5737366}.input-custom-group .input-icon.inactive-empty svg path{fill:#ccc}.input-custom-group .input-icon.inactive-filled svg path{fill:#aaa}.input-custom-group .input-icon.inactive-filled:after{background-color:#aaa6}.input-custom-group .input-icon.discolor-placeholder svg path{fill:#919191}.input-custom-group .input-icon.load-adjusted-rate svg path{fill:#ffa726}.input-custom-group .input-icon.load-advance-rate svg path{fill:#4db6a2}.input-custom-group .input-icon.hidden{display:none!important}.input-custom-group .input-dropdown-arrow{display:inline-block;position:absolute;right:6px;top:50%;transform:translateY(-50%);width:14px;height:14px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:10;cursor:pointer}.input-custom-group .input-dropdown-arrow svg{display:flex;width:100%;transform:rotate(0);transition:.3s ease-in-out}.input-custom-group .input-dropdown-arrow svg path{fill:#919191}.input-custom-group .input-dropdown-arrow:hover svg path{fill:#424242}.input-custom-group .input-dropdown-arrow.datetimeclass{z-index:22!important}.input-custom-group .input-dropdown-arrow.focus svg{transform:rotate(180deg);transition:.3s ease-in-out}.input-custom-group .input-dropdown-arrow.focus svg path{fill:#ccc}.input-custom-group .input-dropdown-arrow.focus:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-dropdown-arrow.invalid-focus-out:hover svg path{fill:#ef5350}.input-custom-group .input-dropdown-arrow.invalid-focus-in svg path,.input-custom-group .input-dropdown-arrow.invalid-search-in-dropdown-focus-in svg path{fill:#f5c7c7}.input-custom-group .input-dropdown-arrow.invalid-focus-in:hover svg path,.input-custom-group .input-dropdown-arrow.invalid-search-in-dropdown-focus-in:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.valid-focus-in svg path{fill:#c5d8f3}.input-custom-group .input-dropdown-arrow.valid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.valid-focus-out svg path{fill:#6692f1}.input-custom-group .input-dropdown-arrow.valid-focus-out:hover svg path{fill:#3074d3}.input-custom-group .input-error{position:absolute;top:100%;right:5px;color:#ef5350;font-size:11px;font-weight:600;line-height:14px;display:inline-block}.input-custom-group .input-error::-moz-selection{background-color:#ef535033;color:#ef5350}.input-custom-group .input-error::selection{background-color:#ef535033;color:#ef5350}.input-custom-group .error-inside-input{position:absolute;right:32px;font-weight:600;font-size:11px;line-height:14px;color:#df3c3c;top:24%;pointer-events:none}.input-custom-group .input-password-eye{display:none;width:18px;height:18px;position:absolute;left:6px;top:50%;transform:translateY(-50%);padding-top:0;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-password-eye svg{width:18px;height:18px;position:absolute;bottom:0}.input-custom-group .input-password-eye svg path{fill:#919191}.input-custom-group .input-password-eye:after{content:\"\";display:block;height:15px;width:1px;border-radius:3px;background:#91919166;position:absolute;left:24px;top:52%;transform:translateY(-50%)}.input-custom-group .input-password-eye.visible{display:inline-block}.input-custom-group .input-password-eye.inactive svg path{fill:#ccc}.input-custom-group .input-password-eye.inactive:after{background-color:#aaa6}.input-custom-group .input-password-eye.valid-focus-out svg path{fill:#6f9ee0}.input-custom-group .input-password-eye.valid-focus-out:hover svg path{fill:#3074d3}.input-custom-group .input-password-eye.valid-focus-out:after{background-color:#6f9ee066}.input-custom-group .input-password-eye.valid-focus-in{display:inline-block}.input-custom-group .input-password-eye.valid-focus-in svg path{fill:#98b9ea}.input-custom-group .input-password-eye.valid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-password-eye.valid-focus-in:after{background-color:#c5d8f3}.input-custom-group .input-password-eye.invalid-focus-out svg{transition:.3s ease-in-out}.input-custom-group .input-password-eye.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-password-eye.invalid-focus-out:hover svg path{fill:#ef5350}.input-custom-group .input-password-eye.invalid-focus-out:after{background-color:#e5737366}.input-custom-group .input-password-eye.invalid-focus-in svg{transition:.3s ease-in-out}.input-custom-group .input-password-eye.invalid-focus-in svg path{fill:#ffb0a8}.input-custom-group .input-password-eye.invalid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-password-eye.invalid-focus-in:after{background-color:#f5c7c7}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.input-custom-group .date_time_holder{display:flex;align-items:center;position:absolute;top:0;width:100%;height:100%;padding:0 6px;opacity:0;z-index:20;cursor:text}.input-custom-group .date_time_holder span{position:relative;line-height:14px;display:flex;height:100%;align-items:center;z-index:10}.input-custom-group .date_time_holder span .border-picker{position:absolute;top:0;left:50%;transform:translate(-50%);height:100%;display:flex;align-items:center;justify-content:center;width:0px}.input-custom-group .date_time_holder span::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder span div::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder::selection{background-color:transparent!important;color:#fff}.input-custom-group .date_time_holder span.main{padding:0 2px;outline:none;font-size:14px;z-index:11}.input-custom-group .date_time_holder span.main::selection{z-index:10}.input-custom-group .date_time_holder span.main:first-child{padding-left:4px}.input-custom-group .date_time_holder span.reset-selection-color::selection{background-color:transparent!important;color:#2f2f2f!important}.input-custom-group .date_time_holder.focus{opacity:1;padding-left:35px}.input-custom-group .date_time_holder.focus span:nth-child(2){z-index:12;pointer-events:none}.input-custom-group .date_time_holder.focus span:nth-child(3){z-index:13}.input-custom-group .date_time_holder.focus span:nth-child(4){z-index:14;pointer-events:none}.input-custom-group .date_time_holder.focus span:nth-child(5){z-index:15}.input-custom-group .date_time_holder.valid-focus-out-filled{opacity:1}.input-custom-group .date_time_holder.valid-focus-out-filled span,.input-custom-group .date_time_holder.valid-focus-out-filled span .border-picker{color:#2f2f2f!important;-webkit-user-select:none;user-select:none}.input-custom-group .date_time_holder.dark.valid-focus-out-filled{background:#3b73ed33!important}.input-custom-group .date_time_holder.dark.valid-focus-out-filled span,.input-custom-group .date_time_holder.dark.valid-focus-out-filled span .border-picker{color:#fff!important}.input-custom-group .date_time_holder.dark.valid-focus-out-filled:hover{background:#3b73ed66!important}.input-custom-group .date_time_holder.dark.valid-focus-in{background:#0b49d1!important}.input-custom-group .date_time_holder.dark.valid-focus-in span,.input-custom-group .date_time_holder.dark.valid-focus-in span .border-picker{color:#fff!important}.input-custom-group .date_time_holder.focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .date_time_holder.valid-focus-in{opacity:1}.input-custom-group .date_time_holder.valid-focus-in::selection,.input-custom-group .date_time_holder.valid-focus-in div::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder.invalid-focus-out-filled{opacity:1}.input-custom-group .date_time_holder.date_time_holder_bank_card span.main{padding:0 3px}.input-custom-group .ca-placeholder-text{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;top:50%;transform:translateY(-50%);color:#919191;font-weight:400;font-size:14px;line-height:18px;padding-left:1px}.input-custom-group .ca-placeholder-text svg text{fill:#919191}.input-custom-group .ca-placeholder-text.inactive-filled{color:#aaa}.input-custom-group .ca-placeholder-text.inactive-filled svg text{fill:#aaa}.input-custom-group .ca-placeholder-text.focus{color:#919191}.input-custom-group .ca-placeholder-text.focus svg text{fill:#919191}.input-custom-group .ca-placeholder-text.valid-focus-in{color:#c5d8f3}.input-custom-group .ca-placeholder-text.valid-focus-in svg text{fill:#c5d8f3}.input-custom-group .ca-placeholder-text.valid-focus-out{color:#919191}.input-custom-group .ca-placeholder-text.valid-focus-out svg text{fill:#919191}.input-custom-group .ca-placeholder-text.invalid-focus-in{color:#f5c7c7}.input-custom-group .ca-placeholder-text.invalid-focus-in svg text{fill:#f5c7c7}.input-custom-group .ca-placeholder-text.invalid-focus-out{color:#919191}.input-custom-group .ca-placeholder-text.invalid-focus-out svg text{fill:#919191}.input-custom-group .input-invalid-danger-mark{position:absolute;right:5px;top:48%;transform:translateY(-50%);line-height:13.3px}.input-custom-group .input-invalid-danger-mark svg{width:13.3px;height:13.3px}.input-custom-group .input-invalid-danger-mark svg path{fill:#e57373}.input-custom-group .password-capslock{position:absolute;right:5px;top:-16px;color:#ffb74d;font-size:11px;font-weight:600;margin:0;padding:0;-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.input-custom-group .ta-input-commands{display:flex;align-items:center;gap:4px;position:absolute;right:4px}.input-custom-group .ta-input-commands:before{content:attr(data-before-content);color:#919191;font-weight:400;font-size:14px;line-height:18px}.input-custom-group .ta-input-commands .ta-input-command-first{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands .ta-input-command-second{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands .ta-input-command-third{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third svg rect{fill:none}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third svg path{fill:#6692f1}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#6692f1}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg path{fill:#bed0f9}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third svg rect{fill:#ffffffb2}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first svg path,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second svg path,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third svg path{fill:#0b49d1}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first:hover svg,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second:hover svg,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first:hover svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second:hover svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s}.input-custom-group .input-label-counter{position:absolute;display:flex;align-items:center;justify-content:center;width:22px;height:18px;font-size:11px;font-weight:700;color:#424242;background-color:#42424233;border-radius:9px;margin:0;padding-left:.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-loading-spinner{position:absolute;right:6px;bottom:3px}.input-custom-group .input-pen-container{position:absolute;right:50px;top:46%;transform:translateY(-50%);display:none;z-index:10;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-pen-container .input-pen svg{width:18px!important;height:18px!important;overflow:visible}.input-custom-group .input-pen-container .input-pen svg path{fill:#c5d8f3}.input-custom-group .input-pen-container .input-pen svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#6f9ee0}.input-custom-group .input-pen-container .input-pen:hover svg{overflow:visible}.input-custom-group .input-pen-container .input-pen:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#3074d3}.input-custom-group .dropdown-selected-image{position:absolute;left:6px;top:48%;transform:translateY(-50%);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .dropdown-selected-image.truck-make svg path{fill:#6c6c6c}.input-custom-group .dropdown-selected-image.trailer-make svg path{fill:#6c6c6c}.input-custom-group .dropdown-selected-image.name-initials-instead-url{width:18px;height:18px;border-radius:50%;object-fit:cover;top:50%;transform:translateY(-50%)}.input-custom-group .dropdown-selected-image.load-broker{height:26px}.input-custom-group .dropdown-selected-image.load-broker svg{height:18px}.input-custom-group .dropdown-selected-image.load-broker.medium svg #Path_33564{fill:#ffb74d}.input-custom-group .dropdown-selected-image.load-broker.low svg #Path_33564{fill:#e57373}.input-custom-group .dropdown-selected-image.semitruck svg path,.input-custom-group .dropdown-selected-image.semisleeper svg path,.input-custom-group .dropdown-selected-image.boxtruck svg path,.input-custom-group .dropdown-selected-image.reefertruck svg path,.input-custom-group .dropdown-selected-image.cargovan svg path,.input-custom-group .dropdown-selected-image.dumptruck svg path,.input-custom-group .dropdown-selected-image.cementtruck svg path,.input-custom-group .dropdown-selected-image.garbagetruckm .input-custom-group .dropdown-selected-image.towtruck svg path,.input-custom-group .dropdown-selected-image.carhauler svg path,.input-custom-group .dropdown-selected-image.spotter svg path,.input-custom-group .dropdown-selected-image.flatbed svg path,.input-custom-group .dropdown-selected-image.stepdeck svg path,.input-custom-group .dropdown-selected-image.lowboyrgn svg path,.input-custom-group .dropdown-selected-image.chassis svg path,.input-custom-group .dropdown-selected-image.conestoga svg path,.input-custom-group .dropdown-selected-image.sidekit svg path,.input-custom-group .dropdown-selected-image.container svg path,.input-custom-group .dropdown-selected-image.dryvan svg path,.input-custom-group .dropdown-selected-image.reefer svg path,.input-custom-group .dropdown-selected-image.enddump svg path,.input-custom-group .dropdown-selected-image.bottomdump svg path,.input-custom-group .dropdown-selected-image.hopper svg path,.input-custom-group .dropdown-selected-image.tanker svg path,.input-custom-group .dropdown-selected-image.pneumatictanker svg path,.input-custom-group .dropdown-selected-image.carhaulerstigner svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9856,.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9857,.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9858,.input-custom-group .dropdown-selected-image.unset-color svg path{fill:#fff6!important}.input-custom-group .placeholder-icon-right-side{position:absolute;right:4px}.input-custom-group .placeholder-icon-right-side.green svg path{fill:#4db6a2}.input-custom-group .placeholder-icon-right-side.purple svg path{fill:#ba68c8}.input-custom-group .placeholder-icon-right-side.blue svg path{fill:#6f9ee0}.input-custom-group .placeholder-icon-right-side.orange svg path{fill:#f89b2e}.input-custom-group .placeholder-icon-right-side.red svg path{fill:#e66767}.input-custom-group .placeholder-icon-right-side:before{content:\"\";display:block;height:15px;width:1px;border-radius:3px;position:absolute;right:22px;top:55%;transform:translateY(-50%);background-color:#91919166}.input-custom-group .placeholder-icon-right-side.focus:before{background-color:#ccc6}.input-custom-group .placeholder-icon-right-side.valid-focus-out:before{background-color:#6f9ee066}.input-custom-group .placeholder-icon-right-side.valid-focus-in:before{background-color:#c5d8f3}.input-custom-group .placeholder-icon-right-side.invalid-focus-out:before{background-color:#e5737366}.input-custom-group .placeholder-icon-right-side.invalid-focus-in:before{background-color:#f5c7c7}.input-fixed-placehoder-label{color:#919191;position:absolute;right:0;font-size:14px;top:3px}.input-fixed-placehoder-input{padding-right:25px!important}.input-border-radius{border-radius:8px!important}.hide-input-value{text-indent:-9999px}.payroll-deduction-truck-svg{line-height:16px}.payroll-deduction-truck-svg svg{width:46px;height:16px}.payroll-deduction-truck{display:grid!important;grid-template-columns:305px 92px!important}\n"], dependencies: [{ kind: "ngmodule", type:
260
260
  // Module
261
261
  CommonModule }, { kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "component", type: i5.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "ngmodule", type: NgbModule }, { kind: "directive", type: i6.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: NgxMaskModule }, { kind: "directive", type: i7.NgxMaskDirective, selector: "input[mask], textarea[mask]", inputs: ["mask", "specialCharacters", "patterns", "prefix", "suffix", "thousandSeparator", "decimalMarker", "dropSpecialCharacters", "hiddenInput", "showMaskTyped", "placeHolderCharacter", "shownMaskExpression", "showTemplate", "clearIfNotMatch", "validation", "separatorLimit", "allowNegativeNumbers", "leadZeroDateTime", "leadZero", "triggerOnMaskChange", "apm", "inputTransformFn", "outputTransformFn", "keepCharacterPositions"], outputs: ["maskFilled"], exportAs: ["mask", "ngxMask"] }, { kind: "pipe", type:
262
262
  // Pipe
@@ -305,7 +305,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
305
305
  CaLoadModalProgressBarComponent,
306
306
  // Directives
307
307
  MinMaxValueDirective,
308
- ], schemas: [CUSTOM_ELEMENTS_SCHEMA], providers: [InputStateService, CalendarDateTimePickerService], template: "<div\n class=\"input-custom-group {{ inputConfig.customClass }}\"\n [ngClass]=\"\n getSuperControl\n | inputContainerClass\n : isFocusInput\n : isTouchedInput\n : inputConfig\n : getSuperControl?.value\n \"\n>\n <!-- Input Commands -->\n <ng-container *ngIf=\"inputConfig.commands?.active && isVisibleCommands\">\n <app-ca-input-commands\n [inputConfig]=\"inputConfig\"\n [isFocusInput]=\"isFocusInput\"\n [isVisibleCommands]=\"isVisibleCommands\"\n (onCommandsClick)=\"onCommands($event)\"\n >\n </app-ca-input-commands>\n </ng-container>\n\n <!-- DateTime Picker -->\n <ng-container\n *ngIf=\"\n (inputConfig.name === 'datepicker' ||\n inputConfig.name === 'timepicker') &&\n !inputConfig.isDisabled\n \"\n >\n <app-ca-input-datetime-picker\n [showDateInput]=\"showDateInput\"\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isVisibleCommands]=\"isVisibleCommands\"\n [isTouchedInput]=\"isTouchedInput\"\n (selectLastOneForSelectionEmitter)=\"selectLastOneForSelection()\"\n (selectLastOneAfterMouseUpEmitter)=\"selectLastOneAfterMouseUp()\"\n (onDatePasteEmitter)=\"onDatePaste($event)\"\n (onBlurEmitter)=\"onBlur()\"\n (changeSelectionEmmiter)=\"changeSelection($event)\"\n (onFocusEmitter)=\"onFocus($event)\"\n (setSelectionEmmiter)=\"setSelection($event)\"\n >\n </app-ca-input-datetime-picker>\n </ng-container>\n\n <!-- Input Label -->\n <ng-container *ngIf=\"!inputConfig.multiSelectDropdownActive\">\n <label\n [for]=\"inputConfig.name\"\n class=\"input-label {{ inputConfig.customClass }} {{\n inputConfig.multipleLabel?.customClass\n }}\"\n [ngClass]=\"\n getSuperControl?.value | labelClass: isFocusInput : inputConfig\n \"\n >\n <ng-container *ngIf=\"inputConfig.label\">\n <span>{{ inputConfig.label }} </span>\n </ng-container>\n <ng-container *ngIf=\"inputConfig.multipleLabel?.labels?.length\">\n <div\n [class]=\"inputConfig.multipleLabel?.customClass!\"\n [ngClass]=\"{\n 'multiple-labels-position-on-focus':\n isFocusInput ||\n inputConfig.multipleInputValues?.options?.length,\n required: inputConfig.isRequired && !inputConfig.isDisabled\n }\"\n >\n <span *ngFor=\"let label of inputConfig.multipleLabel?.labels\">\n {{ label }}\n </span>\n </div>\n </ng-container>\n </label>\n </ng-container>\n\n <!-- Input Clear -->\n <ng-container *ngIf=\"inputConfig | showClear\">\n <app-ca-input-clear\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [incorrectValue]=\"incorrectValue\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [template]=\"template\"\n (clearInputClick)=\"clearInput($event)\"\n >\n </app-ca-input-clear>\n </ng-container>\n\n <!-- Input Clear for dispatch dropdown -->\n <ng-container *ngIf=\"template === 'svgtext-dispatch-template'\">\n <div\n class=\"input-clear-dispatch\"\n position=\"top\"\n (click)=\"clearInput($event)\"\n >\n <svg-icon\n [src]=\"inputSvgRoutes.xClearCommonSvg\"\n class=\"input-clear-dispatch-icon\"\n ></svg-icon>\n </div>\n </ng-container>\n\n <!-- Input Pen -->\n <ng-container\n *ngIf=\"\n selectedDropdownLabelColor &&\n !isEditInput &&\n !isFocusInput &&\n getSuperControl?.value\n \"\n >\n <div\n class=\"input-pen-container\"\n ngbTooltip\n [mainCaTooltip]=\"'Edit'\"\n [tooltipBackground]=\"'#2F2F2F'\"\n position=\"top\"\n (click)=\"onEditInput($event)\"\n >\n <svg-icon [src]=\"inputSvgRoutes.inputPenSvg\" class=\"input-pen\"></svg-icon>\n </div>\n </ng-container>\n\n <!-- Input Invalid Danger Mark -->\n <ng-container\n *ngIf=\"\n inputConfig\n | showInvalidDangerMark\n : getSuperControl\n : isFocusInput\n : isTouchedInput\n : getSuperControl?.value\n \"\n >\n <svg-icon\n class=\"input-invalid-danger-mark {{ inputConfig.customClass }}\"\n [src]=\"inputSvgRoutes.dangerSvg\"\n >\n </svg-icon>\n </ng-container>\n\n <!-- Input Valid Check -->\n <ng-container\n *ngIf=\"\n getSuperControl\n | showValidCheck: isFocusInput : inputConfig : getSuperControl?.value\n \"\n >\n <svg-icon\n class=\"input-required-check {{ inputConfig.customClass }}\"\n [src]=\"inputSvgRoutes.confirmSvg\"\n ></svg-icon>\n </ng-container>\n\n <!-- Input Password Caps Lock And Eye -->\n <ng-container *ngIf=\"inputConfig.type === 'password'\">\n <app-ca-input-password\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [isCapsLockOn]=\"isCapsLockOn\"\n [isTogglePassword]=\"isTogglePassword\"\n (onTogglePasswordClick)=\"onTogglePassword($event)\"\n >\n </app-ca-input-password>\n </ng-container>\n\n <!-- Input Dropdown Arrow -->\n <ng-container *ngIf=\"inputConfig | showDropdownArrow\">\n <svg-icon\n class=\"input-dropdown-arrow {{ inputConfig.customClass }}\"\n [ngClass]=\"\n getSuperControl\n | inputDropdownArrowClass\n : isFocusInput\n : inputConfig\n : isTouchedInput\n : getSuperControl?.value\n \"\n [src]=\"inputSvgRoutes.inputDropdownArrowSvg\"\n (click)=\"toggleDropdownOptions()\"\n ></svg-icon>\n </ng-container>\n\n <!-- Input Placeholder Icon -->\n <ng-container \n *ngIf=\"\n inputConfig.placeholderIcon ||\n inputConfig.name === 'datepicker' ||\n inputConfig.name === 'timepicker'\n \"\n >\n <app-ca-input-placeholder-icon\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [isEditInput]=\"isEditInput\"\n [dateTimePopover]=\"dateTimePopover\"\n (onPopoverShownEmitter)=\"onPopoverShown()\"\n (onPopoverHiddenEmitter)=\"onPopoverHidden()\"\n (onPlaceholderIconEventEmitter)=\"onPlaceholderIconEvent($event)\"\n >\n </app-ca-input-placeholder-icon>\n </ng-container>\n\n <!-- Input Placeholder Text -->\n <ng-container\n *ngIf=\"\n inputConfig | showPlaceholderText : getSuperControl : \n isVisibleCommands : getSuperControl?.value\n \"\n >\n <span\n class=\"ca-placeholder-text {{ inputConfig.customClass }}\"\n [ngClass]=\" \n isFocusInput | inputPlaceholderTextClass\n : isTouchedInput : getSuperControl : inputConfig\n : isVisibleCommands : getSuperControl?.value\n \"\n [style.left]=\"\n inputConfig.placeholderText?.toLowerCase() === inputStringEnum.PERSONS ||\n inputConfig.placeholderText?.toLowerCase() === inputStringEnum.VEHICLES\n ? 30 +\n (getSuperControl?.value?.toString()?.length + 1) * 9 +\n 'px'\n : isFocusInput &&\n inputConfig.placeholderText?.toLowerCase() !== inputCommandsType.MONTHS\n ? 'auto'\n : (getSuperControl?.value?.toString()?.length + 1) * 8 + 'px'\n \"\n [style.right]=\"\n isFocusInput &&\n inputConfig.placeholderText?.toLowerCase() !== inputCommandsType.MONTHS\n ? '28px'\n : 'auto'\n \"\n >\n {{ inputConfig.placeholderText }}\n </span>\n </ng-container>\n \n <!-- Input Label Counter -->\n <ng-container\n *ngIf=\"\n selectedDropdownLabelColor &&\n getSuperControl?.value &&\n !isFocusInput &&\n !inputConfig.isDisabled &&\n inputConfig.showCount\n \"\n >\n <p\n [style.top]=\"'4px'\"\n [style.left]=\"\n (getSuperControl?.value?.toString()?.length + 6.5) * 8 + 'px'\n \"\n class=\"input-label-counter\"\n >\n {{ selectedDropdownLabelColor.count }}\n </p>\n </ng-container>\n\n <!-- Special Dropdown Selected SVG with or Without Text -->\n <ng-container\n *ngIf=\"\n inputConfig?.dropdownImageInput?.svg &&\n !inputConfig?.hideAllItemsInInputDropdown &&\n !(!inputConfig.dropdownImageInput?.withText && isFocusInput) &&\n !(\n ['truck', 'trailer'].includes(\n inputConfig.dropdownImageInput?.template!\n ) &&\n isFocusInput &&\n inputConfig.dropdownImageInput?.remove\n ) &&\n !inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl\n \"\n >\n <svg-icon\n [src]=\"inputConfig.dropdownImageInput?.url!\"\n class=\"dropdown-selected-image {{\n inputConfig.dropdownImageInput?.class\n }}\"\n [ngClass]=\"{\n 'unset-color': isFocusInput && inputConfig.dropdownImageInput?.class\n }\"\n [svgStyle]=\"{\n fill:\n inputConfig.dropdownImageInput?.color && !isFocusInput\n ? inputConfig.dropdownImageInput?.color\n : '#ffffff'\n }\"\n >\n </svg-icon>\n </ng-container>\n\n <!-- Special Dropdown Selected Image With Text With Initials name -->\n <ng-container\n *ngIf=\"\n inputConfig?.dropdownImageInput?.image &&\n !inputConfig?.hideAllItemsInInputDropdown &&\n inputConfig?.dropdownImageInput?.url &&\n !inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl\n \"\n >\n <img\n class=\"dropdown-selected-image name-initials-instead-url\"\n [src]=\"inputConfig.dropdownImageInput?.url\"\n [alt]=\"'Input Image'\"\n />\n </ng-container>\n <ng-container\n *ngIf=\"\n inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl &&\n !inputConfig?.hideAllItemsInInputDropdown &&\n !(!inputConfig.dropdownImageInput?.withText && isFocusInput)\n \"\n >\n <div\n class=\"no-profile-image dropdown-selected-image name-initials-instead-url\"\n >\n <app-ca-profile-image\n [indx]=\"0\"\n [size]=\"'small'\"\n [type]=\"'user'\"\n [name]=\"inputConfig.dropdownImageInput?.nameInitialsInsteadUrl!\"\n >\n </app-ca-profile-image>\n </div>\n </ng-container>\n\n <!-- Multiple Input Values -->\n <ng-container\n *ngIf=\"\n inputConfig?.multipleInputValues?.options?.length && !isFocusInput\n \"\n >\n <div\n class=\"input-control {{\n inputConfig.multipleInputValues?.customClass\n }}\"\n (click)=\"toggleDropdownOptions()\"\n >\n <span\n style=\"display: flex; gap: 6px; align-items: center\"\n *ngFor=\"\n let item of inputConfig.multipleInputValues?.options;\n let indx = index;\n trackBy: trackIdentity\n \"\n >\n <!-- Image / SVG -->\n <ng-container *ngIf=\"item?.logoName && item?.isImg\">\n <span>\n <ng-container *ngIf=\"item?.logoName !== 'no-url'\">\n <img\n [ngStyle]=\"{\n width: '18px',\n 'aspect-ratio': 1,\n 'border-radis': '2px'\n }\"\n [src]=\"item.logoName\"\n [alt]=\"item.value\"\n />\n </ng-container>\n <ng-container *ngIf=\"item.logoName === 'no-url'\">\n <div class=\"no-profile-image\">\n <app-ca-profile-image\n [indx]=\"0\"\n [size]=\"'small'\"\n [name]=\"item.value\"\n ></app-ca-profile-image>\n </div>\n </ng-container>\n \n <!-- Owner Flag -->\n <ng-container *ngIf=\"item?.isOwner\">\n <div class=\"load-dispatches-ttd-owner\">\n <svg-icon\n [src]=\"inputSvgRoutes.ownerBadgeBlueSvg\"\n ></svg-icon>\n </div>\n </ng-container>\n </span>\n </ng-container>\n \n <ng-container *ngIf=\"item?.logoName && item?.isSvg\">\n <svg-icon\n [ngClass]=\"{\n 'payroll-deduction-truck-svg': template === dropdownTemplateTypeEnum.PAYROLL_TRUCKS\n }\"\n class=\"{{ item?.subFolder }}\"\n [src]=\"item?.logoName!\"\n ></svg-icon>\n </ng-container>\n \n <!-- Text -->\n <ng-container *ngIf=\"!item?.isProgressBar\">\n <span\n class=\"multiple-input-text\"\n [ngStyle]=\"{\n color: '#2F2F2F'\n }\"\n [ngClass]=\"{\n counter: item?.isCounter,\n 'counter-one': item?.value === 1\n }\"\n >\n {{ item.value }}\n <ng-container *ngIf=\"item?.second_value\">\n <span\n [ngStyle]=\"{ color: '#919191' }\"\n >{{ item.second_value }}\n </span>\n </ng-container>\n </span>\n </ng-container>\n \n <!-- Load Broker ProgressBar -->\n <ng-container *ngIf=\"item?.isProgressBar\">\n <ca-load-modal-progress-bar\n [totalAmount]=\"item.second_value!\"\n [availableCredit]=\"item.value ? item.value : 0\"\n ></ca-load-modal-progress-bar>\n </ng-container>\n </span>\n </div>\n \n </ng-container>\n\n <!-- Multiple Input Placeholder -->\n <ng-container\n *ngIf=\"\n inputConfig?.multipleInputValues?.options?.length &&\n isFocusInput &&\n !getSuperControl?.value\n \"\n >\n <div\n class=\"input-control multiple-input-placeholder {{\n inputConfig.multipleInputValues?.customClass\n }}\"\n [ngClass]=\"{ \n focus: isFocusInput,\n 'payroll-deduction-truck': template === dropdownTemplateTypeEnum.PAYROLL_TRUCKS\n }\"\n >\n <span\n style=\"display: flex; gap: 6px; align-items: center\"\n *ngFor=\"\n let item of inputConfig.multipleInputValues?.options;\n let indx = index;\n trackBy: trackIdentity\n \"\n >\n <!-- Image / SVG -->\n <ng-container *ngIf=\"item?.logoName && item?.isImg\">\n <span\n [ngClass]=\"{ 'focusable-image': isFocusInput }\"\n >\n <ng-container *ngIf=\"item?.logoName !== 'no-url'\">\n <img\n [ngStyle]=\"{\n width: '18px',\n 'aspect-ratio': 1,\n 'border-radis': '2px'\n }\"\n [src]=\"item.logoName\"\n [alt]=\"item.value\"\n />\n </ng-container>\n <ng-container *ngIf=\"item.logoName === 'no-url'\">\n <div class=\"no-profile-image\">\n <app-ca-profile-image\n [indx]=\"0\"\n [size]=\"'small'\"\n [name]=\"item.value!\"\n ></app-ca-profile-image>\n </div>\n </ng-container>\n </span>\n </ng-container>\n \n <ng-container *ngIf=\"item?.logoName && item?.isSvg\">\n <svg-icon\n [ngClass]=\"{ \n 'focusable-svg': isFocusInput,\n 'payroll-deduction-truck-svg': template === dropdownTemplateTypeEnum.PAYROLL_TRUCKS\n }\"\n class=\"{{ item?.subFolder }} {{\n item?.logoType?.trim()?.replace(' ', '')?.toLowerCase()\n }}\"\n [src]=\"item?.logoName!\"\n ></svg-icon>\n </ng-container>\n \n <!-- Text -->\n <ng-container *ngIf=\"!item?.isProgressBar\">\n <span\n class=\"multiple-input-text\"\n [ngClass]=\"{\n 'focusable-text': isFocusInput,\n counter: item?.isCounter,\n 'counter-focus': item?.isCounter && isFocusInput,\n 'counter-one': item?.value === 1,\n 'ca-add-dot': template === dropdownTemplateTypeEnum.LOAD_DISPATCHER\n }\"\n [ngStyle]=\"{\n color: '#6F9EE0'\n }\"\n >\n {{ item.value }}\n <ng-container *ngIf=\"item?.second_value\">\n <span>{{ item.second_value }}</span>\n </ng-container>\n </span>\n </ng-container>\n \n <!-- Load Broker ProgressBar -->\n <ng-container *ngIf=\"item?.isProgressBar\">\n <ca-load-modal-progress-bar\n [totalAmount]=\"item.second_value!\"\n [availableCredit]=\"item.value ? item.value : 0\"\n [inputFocus]=\"isFocusInput\"\n ></ca-load-modal-progress-bar>\n </ng-container>\n </span>\n </div>\n </ng-container>\n\n <input\n #input\n [type]=\"inputConfig.type | inputType: isTogglePassword\"\n [id]=\"inputConfig.id ? inputConfig.id : inputConfig.name\"\n [name]=\"inputConfig.name\"\n [disabled]=\"inputConfig.isDisabled!\"\n [autocomplete]=\"inputConfig.autocomplete ? inputConfig.autocomplete : 'off'\"\n [placeholder]=\"\n (inputConfig.placeholderInsteadOfLabel &&\n inputConfig.placeholder &&\n isFocusInput\n ? inputConfig.placeholder\n : '') ||\n (inputConfig.placeholder && isFocusInput ? inputConfig.placeholder : '')\n \"\n [minLength]=\"inputConfig.minLength ? inputConfig.minLength : 0\"\n [maxLength]=\"inputConfig.maxLength ? inputConfig.maxLength : 999\"\n [mask]=\"inputConfig.mask\"\n [min]=\"inputConfig.min ? inputConfig.min : 0\"\n [max]=\"inputConfig.max\"\n [step]=\"inputConfig.step ? inputConfig.step : null\"\n [readOnly]=\"inputConfig.readOnly\"\n appMinMaxValue\n [minValue]=\"inputConfig.min!\"\n [maxValue]=\"inputConfig.max!\"\n inputformat=\"dd-mm-yy\"\n class=\"input-control\n {{ inputConfig.textTransform }}\n {{ inputConfig.textAlign }}\n {{ inputConfig.customClass }}\n \"\n [ngClass]=\"\n getSuperControl\n | inputClass\n : isFocusInput\n : isTouchedInput\n : inputConfig\n : input\n : isVisibleCommands\n : getSuperControl?.value\n : getSuperControl?.invalid\n : getSuperControl?.touched\n : isDropdownToggler\n : isEditInput\n : template\n \"\n (keypress)=\"onKeyPress($event)\"\n (keydown)=\"onKeydown($event)\"\n (keyup)=\"onKeyup($event)\"\n (blur)=\"onBlur($event)\"\n (focus)=\"onFocus($event)\"\n (select)=\"selectionChange($event)\"\n (input)=\"onChange($any($event.target).value); transformText($event)\"\n [(ngModel)]=\"input.value\"\n [ngStyle]=\"\n inputConfig.statusStyle ? (input.value | loadStatusColor) : ''\n \"\n />\n\n <!-- Placeholder Icon on Right Side -->\n <ng-container *ngIf=\"inputConfig.placeholderIconRightSide\">\n <svg-icon\n class=\"placeholder-icon-right-side {{\n inputConfig.placeholderIconColor\n }}\"\n [ngClass]=\"\n isFocusInput\n | inputPlaceholderIconRightClass\n : getSuperControl\n : inputConfig\n : isTouchedInput\n : getSuperControl?.value\n \"\n [src]=\"\n inputConfig.placeholderIconRightSide.toLowerCase()\n | caSvg : 'common'\n \"\n ></svg-icon>\n </ng-container>\n\n <!-- Input Error Message -->\n <ng-container\n *ngIf=\"\n !(!getSuperControl?.value && isFocusInput) &&\n (isTouchedInput || getSuperControl?.touched || getSuperControl?.value) &&\n getSuperControl?.invalid &&\n !inputConfig.isInvalidSearchInDropdown &&\n !inputConfig.isDisabled\n \"\n >\n <ng-container *ngIf=\"!(inputConfig.hideErrorMessage || inputConfig.errorInsideInput)\">\n <span class=\"input-error {{ inputConfig.customClass }}\">\n {{ getSuperControl?.errors | inputError: inputConfig.name }}\n </span>\n </ng-container>\n\n <!-- Error Message Inside Input -->\n <ng-container *ngIf=\"inputConfig.errorInsideInput\">\n <span class=\"error-inside-input {{ inputConfig.customClass }}\">\n {{ getSuperControl?.errors | inputError: inputConfig.name }}\n </span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"inputConfig.fixedPlacholder && input.value\">\n <span class=\"input-fixed-placehoder-label\">\n {{ inputConfig.fixedPlacholder }}\n </span>\n </ng-container>\n</div>\n\n<!-- Popover for DateTime Pickers -->\n<ng-template #dateTimePopover let-data=\"data\">\n <div class=\"datetime-dropdown-holder\">\n <app-ca-custom-datetime-pickers\n [calendarType]=\"\n inputConfig.name === 'datepicker' ||\n inputConfig.name === 'datepickerBankCard'\n ? 'date'\n : 'time'\n \"\n [inputConfig]=\"inputConfig\"\n [placeholder]=\"'MM/DD/YY'\"\n [dateTime]=\"dateTimeInputDate\"\n (closePopover)=\"closePopover()\"\n ></app-ca-custom-datetime-pickers>\n </div>\n</ng-template>", styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.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 .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::-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:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option{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.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.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.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active:not(.payroll-trucks):after,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:not(.payroll-trucks):after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#ccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ca-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:-webkit-max-content!important;width:-moz-max-content!important;width:max-content!important;padding:0!important;margin:0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;-moz-column-gap:29px;column-gap:29px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ca-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ca-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ca-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ca-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ca-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ca-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ca-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ca-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ca-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ca-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ca-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ca-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ca-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ca-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ca-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ca-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ca-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ca-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ca-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ca-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ca-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ca-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ca-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ca-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ca-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ca-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ca-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ca-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ca-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ca-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ca-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ca-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ca-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ca-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ca-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ca-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ca-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ca-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ca-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ca-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ca-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ca-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ca-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ca-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ca-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ca-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ca-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ca-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ca-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ca-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ca-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ca-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ca-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ca-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ca-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ca-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ca-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ca-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ca-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ca-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ca-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ca-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ca-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ca-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ca-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ca-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ca-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ca-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ca-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ca-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ca-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ca-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ca-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ca-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ca-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ca-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ca-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ca-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ca-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ca-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ca-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ca-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ca-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ca-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ca-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ca-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ca-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ca-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ca-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ca-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ca-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ca-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ca-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ca-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ca-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ca-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ca-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ca-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ca-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ca-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ca-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ca-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ca-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ca-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ca-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ca-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ca-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ca-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ca-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ca-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ca-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ca-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ca-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ca-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ca-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ca-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ca-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ca-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ca-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ca-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ca-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ca-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ca-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ca-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ca-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ca-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ca-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ca-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ca-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ca-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ca-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ca-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ca-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ca-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ca-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ca-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ca-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ca-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ca-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ca-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ca-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ca-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ca-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ca-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ca-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ca-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ca-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ca-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ca-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ca-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ca-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ca-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ca-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ca-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ca-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ca-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ca-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ca-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ca-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ca-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ca-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ca-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ca-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ca-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ca-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ca-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ca-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ca-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ca-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ca-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ca-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ca-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ca-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ca-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ca-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ca-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ca-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ca-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ca-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ca-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ca-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ca-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ca-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ca-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ca-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ca-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ca-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ca-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ca-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ca-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ca-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ca-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ca-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ca-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ca-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ca-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ca-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ca-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ca-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ca-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ca-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ca-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ca-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ca-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ca-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ca-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ca-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ca-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ca-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ca-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ca-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ca-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ca-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ca-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ca-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ca-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ca-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ca-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ca-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ca-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ca-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ca-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ca-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ca-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ca-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ca-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ca-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ca-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ca-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ca-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ca-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ca-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ca-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ca-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ca-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ca-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ca-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ca-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ca-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ca-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ca-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ca-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ca-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ca-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ca-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ca-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ca-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ca-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ca-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ca-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ca-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ca-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ca-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ca-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ca-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ca-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ca-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ca-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ca-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ca-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ca-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ca-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ca-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ca-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ca-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ca-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ca-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ca-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ca-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ca-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ca-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ca-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ca-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ca-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ca-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ca-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ca-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ca-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ca-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ca-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ca-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ca-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ca-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ca-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ca-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ca-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ca-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ca-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ca-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ca-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ca-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ca-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ca-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ca-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ca-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ca-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ca-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ca-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ca-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ca-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ca-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ca-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ca-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ca-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ca-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ca-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ca-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ca-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ca-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ca-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ca-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ca-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ca-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ca-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ca-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ca-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ca-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ca-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ca-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ca-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ca-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ca-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ca-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ca-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ca-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ca-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ca-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ca-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ca-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ca-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ca-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ca-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ca-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ca-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ca-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ca-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ca-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ca-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ca-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ca-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ca-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ca-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ca-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ca-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ca-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ca-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ca-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ca-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ca-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ca-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ca-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ca-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ca-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ca-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ca-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ca-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ca-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ca-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ca-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ca-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ca-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ca-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ca-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ca-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ca-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ca-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ca-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ca-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ca-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ca-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ca-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ca-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ca-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ca-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ca-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ca-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ca-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ca-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ca-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ca-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ca-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ca-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ca-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ca-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ca-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ca-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ca-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ca-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ca-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ca-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ca-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ca-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ca-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ca-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ca-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ca-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ca-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ca-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ca-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ca-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ca-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ca-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ca-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ca-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ca-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ca-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ca-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ca-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ca-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ca-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ca-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ca-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ca-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ca-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ca-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ca-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ca-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ca-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ca-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ca-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ca-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ca-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ca-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ca-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ca-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ca-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ca-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ca-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ca-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ca-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ca-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ca-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ca-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ca-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ca-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ca-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ca-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ca-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ca-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ca-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ca-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ca-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ca-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ca-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ca-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ca-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ca-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ca-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ca-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ca-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ca-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ca-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ca-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ca-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ca-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ca-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ca-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ca-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ca-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ca-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ca-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ca-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ca-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ca-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ca-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ca-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ca-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ca-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ca-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ca-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ca-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ca-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ca-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ca-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ca-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ca-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ca-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ca-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ca-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ca-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ca-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ca-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ca-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ca-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ca-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ca-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ca-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ca-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ca-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ca-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ca-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ca-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ca-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ca-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ca-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ca-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ca-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ca-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ca-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ca-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ca-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ca-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ca-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ca-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ca-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ca-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ca-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ca-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ca-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ca-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ca-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ca-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ca-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ca-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ca-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ca-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ca-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ca-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ca-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ca-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ca-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ca-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ca-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ca-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ca-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ca-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ca-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ca-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ca-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ca-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ca-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ca-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ca-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ca-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ca-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ca-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ca-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ca-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ca-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ca-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ca-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ca-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ca-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ca-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ca-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ca-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ca-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ca-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ca-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ca-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ca-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ca-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ca-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ca-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ca-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ca-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ca-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ca-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ca-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ca-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ca-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ca-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ca-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ca-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ca-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ca-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ca-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ca-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ca-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ca-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ca-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ca-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ca-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ca-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ca-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ca-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ca-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ca-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ca-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ca-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ca-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ca-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ca-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ca-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ca-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ca-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ca-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ca-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ca-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ca-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ca-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ca-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ca-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ca-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ca-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ca-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ca-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ca-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ca-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ca-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ca-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ca-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ca-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ca-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ca-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ca-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ca-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ca-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ca-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ca-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ca-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ca-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ca-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ca-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ca-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ca-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ca-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ca-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ca-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ca-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ca-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ca-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ca-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ca-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ca-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ca-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ca-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ca-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ca-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ca-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ca-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ca-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ca-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ca-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ca-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ca-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ca-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ca-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ca-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ca-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ca-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ca-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ca-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ca-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ca-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ca-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ca-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ca-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ca-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ca-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ca-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ca-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ca-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ca-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ca-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ca-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ca-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ca-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ca-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ca-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ca-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ca-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ca-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ca-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ca-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ca-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ca-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ca-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ca-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ca-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ca-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ca-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ca-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ca-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ca-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ca-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ca-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ca-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ca-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ca-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ca-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ca-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ca-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ca-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ca-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ca-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ca-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ca-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ca-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ca-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ca-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ca-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ca-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ca-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ca-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ca-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ca-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ca-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ca-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ca-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ca-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ca-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ca-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ca-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ca-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ca-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ca-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ca-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ca-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ca-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ca-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ca-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ca-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ca-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ca-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ca-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ca-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ca-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ca-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ca-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ca-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ca-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ca-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ca-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ca-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ca-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ca-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ca-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ca-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ca-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ca-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ca-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ca-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ca-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ca-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ca-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ca-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ca-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ca-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ca-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ca-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ca-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ca-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ca-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ca-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ca-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ca-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ca-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ca-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ca-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ca-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ca-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ca-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ca-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ca-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ca-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ca-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ca-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ca-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ca-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ca-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ca-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ca-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ca-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ca-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ca-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ca-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ca-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ca-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ca-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ca-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ca-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ca-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ca-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ca-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ca-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ca-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ca-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ca-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ca-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ca-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ca-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ca-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ca-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ca-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ca-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ca-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ca-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ca-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ca-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ca-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ca-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ca-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ca-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ca-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ca-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ca-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ca-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::-moz-selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::-moz-selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.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}.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;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}.tooltip-arrow{display:none!important}p{margin-bottom:0!important}.desc::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.desc::selection{color:#6c6c6c;background:#6c6c6c33}.details-container-items{display:grid;grid-template-columns:440px repeat(4,335px);-moz-column-gap:12px;column-gap:12px;row-gap:12px;padding-bottom:12px}.details-component{display:grid;grid-auto-flow:column;column-gap:12px;row-gap:12px}.details-component .truck-wrapper{background-color:#fff;border-radius:3px;margin-bottom:8px;width:440px;height:226px}.details-component .truck-wrapper p{margin:0}.details-component .truck-wrapper .truck-card-top{display:flex;align-items:center;justify-content:space-between}.details-component .truck-wrapper .truck-card-top .truck-card-name{color:#6c6c6c;font-size:18px;font-weight:500;position:relative;top:1px}.details-component .truck-wrapper .truck-card-top .truck-card-name::-moz-selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .truck-card-top .truck-card-name::selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .details-page-row-5{margin-top:8px}.details-component .truck-wrapper .details-page-row-7{height:236px;width:100%;margin:22px 0}.details-component .truck-wrapper .show-details{font-size:12px;font-weight:700;color:#778fbb;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.details-component .truck-wrapper .show-details:hover{transition:all .3s ease-in-out;cursor:pointer;text-decoration:underline;color:#5673aa}.details-component .details-cards{border-radius:3px;overflow:hidden;width:440px;background-color:#fff;padding:1px 8px 0}.details-component .details-cards.trailer-details-card{padding:0 8px}.assign-to{position:relative;left:-3px;display:grid;grid-template-columns:204px 204px;column-gap:12px;padding:0}.assign-to .assign-to-vehicle svg{width:55px;height:20px;display:flex;align-items:center}.assign-to .assign-to-vehicle svg:hover path{fill:#6c6c6c!important}.assign-to .assign-to-vehicle svg path{fill:#aaa}.assign-to .first .assign-to-vehicle svg{display:flex;align-items:center}.assign-to .first:hover .open-modal-icon{display:block;position:relative;bottom:4px;height:18px;width:18px}.assign-to .first:hover .open-modal-icon svg{cursor:pointer}.assign-to .first:hover .open-modal-icon svg:hover path{fill:#6c6c6c}.assign-to .second .icon-text-wrapper-cmp{position:relative;top:1px}.assign-to .second .assign-to-vehicle svg{display:flex}.assign-to .second:hover .open-modal-icon2{display:block;height:18px;width:18px;position:relative;bottom:4px}.assign-to .second:hover .open-modal-icon2 svg{cursor:pointer}.assign-to .second:hover .open-modal-icon2 svg:hover path{fill:#6c6c6c}.assign-to .assign-to-item{background-color:#f7f7f7;border-radius:2px;display:flex;align-items:center}.assign-to .assign-to-item .icon-text-wrapper-cmp{display:flex;align-items:center;padding-left:6px;margin:7px 0}.assign-to .assign-to-item .semi-tooltip{width:40px;height:20px}.assign-to .assign-to-item .semi-tooltip.typeDetails{width:auto}.assign-to .assign-to-item svg{fill:#aaa;object-fit:fill;height:20px;width:55px}.assign-to .assign-to-item .open-modal-icon,.assign-to .assign-to-item .open-modal-icon2{display:none}.assign-to .assign-to-item .assign-to-vehicle{margin-right:6px;position:relative;bottom:0}.assign-to .assign-to-item .assign-to-vehicle.backImage{margin-right:0}.assign-to .assign-to-item .assign-to-value{font-size:14px;font-weight:500;color:#424242;line-height:18px;padding:4px 6px}.assign-to .assign-to-item .assign-to-value::-moz-selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value::selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value.inactive-assignTo-value{color:#aaa;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.assign-to .assign-to-item p{margin:0!important}.card-container .card-body-cdl{display:grid;padding:0 4px}.card-container .card-body-cdl .card-item-name{font-size:11px;color:#2f2f2f;font-weight:700;height:15px;margin-bottom:2px}.card-container .card-body-cdl .card-item-name::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-name::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap;height:18px}.card-container .card-body-cdl .card-item-value::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value:hover{color:#2f2f2f}.card-container .card-body-cdl .card-row-issued{display:grid;grid-template-columns:32px 32px 32px;column-gap:49px;margin-top:12px}.card-container .card-body-cdl .card-row-endor{display:grid;grid-template-columns:repeat(auto-fit,minmax(20%,1fr));gap:6px;margin-bottom:4px}.card-container .card-body-cdl .card-row-progress{margin-top:8px}.card-container .card-body-cdl .endorsement{margin-top:12px}.perfomance{display:flex!important;flex-direction:column}.perfomance .common-template-item-name{font-size:14px!important;font-weight:600!important}.perfomance .common-template-item-value{font-size:18px!important;font-weight:600!important}.card-pdf{padding:0 5px;margin-bottom:12px}.card-pdf.extended{margin-bottom:30px}.card-pdf.disabled{height:0!important;margin:0!important;padding:0!important}.status-container{padding-top:12px;display:flex;flex-direction:column;margin-bottom:-12px!important}.status-container .status-header{display:flex;justify-content:space-between;align-items:center}.status-container .status-header .status-item{height:18px}.status-container .status-header .status-item .p-status{font-size:14px;font-weight:700;color:#2f2f2f}.status-container .status-header .status-item .p-status::-moz-selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status::selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status .note-textarea{color:#6c6c6c!important;font-weight:500!important}.status-container .status-header .status-item .p-status .note-textarea::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::-moz-selection,.status-container .status-header .status-item .p-status .note-textarea div::-moz-selection,.status-container .status-header .status-item .p-status .note-textarea b::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::selection,.status-container .status-header .status-item .p-status .note-textarea div::selection,.status-container .status-header .status-item .p-status .note-textarea b::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::-moz-selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::-moz-selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::-moz-selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::-moz-selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::-moz-selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::-moz-selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-items .item-wrapper{display:grid;grid-template-columns:119px 137px 78px;grid-column-gap:45px;align-content:center;justify-content:center}.status-container .status-items .item-wrapper .svg-text{display:flex;align-items:center}.status-container .status-items .item-wrapper .svg-text .employment{margin-left:6px;position:relative;bottom:-2px}.status-container .status-items .item-wrapper .duration{text-align:right}.status-container .status-items .item-wrapper p{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap}.status-container .status-items .item-wrapper p::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::selection{color:#6c6c6c;background:#6c6c6c33}.charts-template{display:grid;grid-template-columns:215px 1fr;grid-row-gap:12px;row-gap:12px;margin-bottom:12px}.charts-template .charts-template-item{display:flex;flex-direction:column}.charts-template .charts-template-item .icon-name-item{display:flex;align-items:baseline;height:18px}.charts-template .charts-template-item .icon-name-item .charts-template-item-name{margin-right:4px}.charts-template .charts-template-item .charts-template-item-name{font-size:11px;color:#424242;font-weight:700;line-height:14px}.charts-template .charts-template-item .charts-template-item-name::-moz-selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value{font-size:18px;font-weight:500;color:#424242;width:220px}.charts-template .charts-template-item .charts-template-item-value::-moz-selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::-moz-selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.second-progress{margin-bottom:16px}.truck-details-wrapper{padding:0 12px}.truck-details-wrapper .truck svg{width:132px;height:48px}.truck-details-wrapper .details-header-avatar{display:flex;align-items:center;height:48px;margin-top:14px}.truck-details-wrapper .details-header-avatar .model-name{flex-direction:column;margin-left:12px;margin-top:12px}.truck-details-wrapper .details-header-avatar .model-name p{font-size:18px;font-weight:500;color:#2f2f2f}.truck-details-wrapper .details-header-avatar .model-name p::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name p::selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name .svg-wrapper{height:14px;display:flex;align-items:flex-end;margin-bottom:2px}.truck-details-wrapper .details-header-avatar .model-name svg path{fill:#424242;object-fit:fill}.truck-details-wrapper .details-header-avatar .model-name svg rect{fill:#aaa}.truck-details-wrapper .details-header-data{margin-top:14px}.truck-details-wrapper .details-header-data .details-header-data-item{display:flex;height:18px;align-items:center}.truck-details-wrapper .details-header-data .details-header-data-item p{font-size:18px;color:#2f2f2f;font-weight:400}.truck-details-wrapper .details-header-data .details-header-data-item .header-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .details-header-data .second{margin-top:14px;margin-bottom:14px}.truck-details-wrapper .details-header-data .second p{font-size:14px!important;color:#2f2f2f;font-weight:400;position:relative;bottom:-1px}.truck-details-wrapper .details-header-data .second .date{margin-left:8px!important;position:relative}.truck-details-wrapper .color-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .vin-text{margin-left:6px!important;margin-right:37px;position:relative;bottom:-1px!important}.common-template{display:grid;grid-template-columns:202px 1fr;row-gap:12px}.common-template .common-item-wrapper{display:flex;align-items:center;height:40px}.common-template .common-template-item{display:flex;flex-direction:column}.common-template .common-template-item::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item::selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item .icon-name-item{display:flex;align-items:center;height:18px}.common-template .common-template-item .icon-name-item .common-template-item-name{margin-left:6px}.common-template .common-template-item .common-template-item-name{font-size:11px;font-weight:600;color:#424242}.common-template .common-template-item .common-template-item-name::-moz-selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value{font-size:14px;font-weight:500;color:#424242;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.common-template .common-template-item .common-template-item-value::-moz-selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::-moz-selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.divider{margin:0;height:2px;width:100%;border-radius:1px;background-color:#f3f3f3}.card_files_holder.active{min-height:448px}.note-cards .note-body{padding-left:0!important;padding-right:2px!important}.note-cards .note-body .note-textarea{color:#6c6c6c!important;font-weight:400!important;padding-bottom:12px!important}.note-cards .note-body .note-textarea::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.note-cards .note-body .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::selection{color:#6c6c6c;background:#6c6c6c33}.no-data-driver-details{font-size:14px;font-weight:400;color:#919191}.no-data-driver-details::-moz-selection{color:#919191;background:#b7b7b733}.no-data-driver-details::selection{color:#919191;background:#b7b7b733}.owner-items{display:flex;align-items:center;height:18px}.owner-items .card-icon{display:none;cursor:pointer;margin-left:6px}.owner-items .information-value{font-size:14px;font-weight:400;color:#6c6c6c;margin-left:6px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.owner-items .information-value::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.owner-items .information-value::selection{color:#6c6c6c;background:#6c6c6c33}.owner-items:hover .card-icon{display:flex}.copied .vin-text,.copied .information-value{animation-duration:1.5s;animation-name:change}.copied .card-icon svg path{animation-duration:1.5s;animation-name:changeSVG}.copied .card-icon svg path:hover{animation-duration:1.5s;animation-name:changeSVG}.hide-show{font-size:14px;color:#6d82c7;font-weight:600;margin-left:6px;cursor:pointer}.hide-show::-moz-selection{color:#6d82c7;background:#536bc233}.hide-show::selection{color:#6d82c7;background:#536bc233}.hide-show:hover{color:#536bc2}.bind-height{max-height:fit-content!important}.card-width{width:335px}.icons-details{margin-right:6px}.date-details-svg{margin-left:29px}.note-details-holder{padding-right:6px;padding-left:3px}.note-details-holder .note-container .note-header.active .note-label{color:#6c6c6c!important}.note-details-holder .note-container .note-header .note_upper_hold svg path{fill:#919191}.note-details-holder .note-container .note-header .note_upper_hold .rotate svg path{fill:#aaa}.boldSanVin{font-weight:800}@media (max-width: 1910px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,320px)}.card-width{width:320px}.repair-details-container,.repair-details-cmp{grid-template-columns:440px 712px 320px 260px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 145px!important}.repair-container{width:712px!important}.repaired-vehicle-container{width:320px!important}.likes-count-container{width:260px}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 50px 46px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 79px 52px 66px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 325px!important}.counter-text{padding:0 0 0 8px!important}.reason-span{display:none}app-shipper-details .load,app-broker-details .load{width:712px!important}app-shipper-details .contact,app-broker-details .contact{width:320px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:320px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:260px!important}app-shipper-details .review-container,app-broker-details .review-container{width:260px!important}}@media (max-width: 1870px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,300px)}.card-width{width:300px}}@media (max-width: 1850px){.repair-details-container,.repair-details-cmp{grid-template-columns:430px 702px 310px 250px!important}.repair-general-holder{width:430px}.repair-container{width:702px!important}.repaired-vehicle-container{width:310px!important}.likes-count-container{width:250px}.repair-component{height:max-content}.repair-component .repair-cards{width:430px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 37px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 40px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:430px!important}app-shipper-details .load,app-broker-details .load{width:702px!important}app-shipper-details .contact,app-broker-details .contact{width:310px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:310px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:250px!important}app-shipper-details .review-container,app-broker-details .review-container{width:250px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:407px!important}}@media (max-width: 1820px){.repair-details-container,.repair-details-cmp{grid-template-columns:420px 692px 300px 240px!important}.repair-general-holder{width:420px}.repair-container{width:692px!important}.repaired-vehicle-container{width:300px!important}.likes-count-container{width:240px}.repair-component .repair-cards{width:420px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 100px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 99px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 27px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 29px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:420px!important}app-shipper-details .load,app-broker-details .load{width:692px!important}app-shipper-details .contact,app-broker-details .contact{width:300px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:300px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:240px!important}app-shipper-details .review-container,app-broker-details .review-container{width:240px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:396px!important}}@media (max-width: 1780px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,280px)}.card-width{width:280px}.request-header-container{width:26px!important;height:26px!important}.request-header-container p{display:none}.request-header-container svg-icon{display:flex!important;transition:background .2s ease-in}.request-header-container svg-icon:hover{background:#e9effd!important}.request-header-container svg-icon:hover svg path{fill:#0b49d1}.repair-details-container{grid-template-columns:475px 760px 410px 0px!important}.repair-general-holder{width:475px}.repair-container{width:760px!important}.repaired-vehicle-container{width:410px!important;max-width:410px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:475px!important}.repair-component .repair-cards{width:475px!important}.repair-details-cmp{grid-template-columns:475px 760px 410px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:410px!important;max-width:410px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:410px!important;max-width:410px!important}.purchase-template{display:grid;grid-template-columns:repeat(2,50%)!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:475px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:475px!important;max-width:475px!important}app-shipper-details .load,app-broker-details .load{width:760px!important}app-shipper-details .contact,app-broker-details .contact{width:410px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:410px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:410px!important}app-shipper-details .review-container,app-broker-details .review-container{width:410px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:450px!important}}@media (max-width: 1760px){.repair-details-container{grid-template-columns:455px 740px 390px 0px!important}.repair-general-holder{width:455px}.repair-container{width:740px!important}.repaired-vehicle-container{width:390px!important;max-width:390px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:455px!important}.repair-component .repair-cards{width:455px!important}.repair-details-cmp{grid-template-columns:455px 740px 390px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:390px!important;max-width:390px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:390px!important;max-width:390px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:455px!important;max-width:455px!important}app-shipper-details .load,app-broker-details .load{width:740px!important}app-shipper-details .contact,app-broker-details .contact{width:390px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:390px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:390px!important}app-shipper-details .review-container,app-broker-details .review-container{width:390px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:430px!important}}@media (max-width: 1700px){.details-container-items{display:grid;grid-template-columns:420px repeat(4,270px)}.card-width{width:270px}.cards-item-wrapper-1,.details-component .details-cards{width:420px}.repair-details-container{grid-template-columns:400px 740px 390px 0px!important}.repair-general-holder{width:400px}.details-header-wrapper-reapirShop{max-width:400px!important}.repair-component .repair-cards{width:400px!important}.repair-details-cmp{grid-template-columns:400px 740px 390px 0px!important}.longText{display:none!important}.shortText{display:block!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 105px 92px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:400px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:377px!important}.details-container-items{display:grid;grid-template-columns:400px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:400px}.assign-to{grid-template-columns:185px 185px}}@media (max-width: 1640px){.repair-details-container{grid-template-columns:400px 720px 370px 0px!important}.repair-container{width:720px!important}.repaired-vehicle-container{width:370px!important;max-width:370px!important}.repair-details-cmp{grid-template-columns:400px 720px 370px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:370px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:370px!important;max-width:370px!important}app-shipper-details .load,app-broker-details .load{width:720px!important}app-shipper-details .contact,app-broker-details .contact{width:370px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:370px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:370px!important}app-shipper-details .review-container,app-broker-details .review-container{width:370px!important}}@media (max-width: 1610px){.details-container-items{display:grid;grid-template-columns:380px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:380px}.assign-to{grid-template-columns:175px 175px}.repair-details-container{grid-template-columns:380px 710px 350px 0px!important}.repair-container{width:710px!important}.repaired-vehicle-container{width:350px!important;max-width:350px!important}.repair-details-cmp{grid-template-columns:380px 710px 350px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:350px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:350px!important;max-width:350px!important}.repair-component .repair-cards{width:380px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 86px 92px!important}app-shipper-details-card .hours-template{grid-template-columns:150px 150px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:380px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:356px!important}}@media (max-width: 1590px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,260px)}.details-component .details-cards,.cards-item-wrapper-1{width:360px}.card-width{width:260px}.reason-span{display:none}.assign-to{grid-template-columns:162px 162px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 710px 350px 0px!important}.repair-component .repair-cards{width:360px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 91px 70px!important}app-shipper-details-card .hours-template{grid-template-columns:140px 140px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:336px!important}}@media (max-width: 1440px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,250px)}.card-width{width:250px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-container{width:700px!important}.repaired-vehicle-container{width:272!important;max-width:272px!important}.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{width:272px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:272px!important;max-width:272px!important}.repair-component .repair-cards{width:360px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:35px 40px 25px 35px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:45px 68px 27px 66px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:700px!important}app-shipper-details .contact,app-broker-details .contact{width:272px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:272px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:272px!important}app-shipper-details .review-container,app-broker-details .review-container{width:272px!important}}@media (max-width: 1500px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,237px)}.card-width{width:237px}}.datetime-dropdown-holder{position:relative;top:16px}.picker_input_holder{display:flex;min-width:146px;max-width:260px;border-radius:3px;background-color:#f9f9f9}.picker_input_holder input{width:100%;padding-left:6px;border:none;outline:none;background-color:transparent;caret-color:transparent;-webkit-appearance:none}.picker_input_holder input:focus{outline:none;border:none}.picker_input_holder input::-webkit-input-placeholder{color:#919191!important}.picker_input_holder input:-ms-input-placeholder{color:#919191!important}.picker_input_holder input::placeholder{color:#919191!important}.picker_input_holder .toggle_picker{display:flex;justify-content:center;align-items:center;width:26px;height:26px;min-width:26px;background-color:#eee;border-radius:3px;cursor:pointer}.picker_input_holder .toggle_picker:after{display:none}.picker_input_holder .toggle_picker svg-icon{display:flex}.picker_input_holder .toggle_picker svg-icon svg{width:12px;height:10px}.picker_input_holder .toggle_picker svg-icon svg path{fill:#919191}.picker_input_holder:hover{opacity:1}.picker_input_holder.active{background-color:#6c6c6c;border-left:3px solid #6c6c6c}.picker_input_holder.active .toggle_picker{background-color:#919191}.picker_input_holder.active .toggle_picker svg-icon{display:flex}.picker_input_holder.active .toggle_picker svg-icon svg{transform:rotate(180deg)}.picker_input_holder.active .toggle_picker svg-icon svg path{fill:#fff}.picker_input_holder.active input::-webkit-input-placeholder{color:#fff!important}.picker_input_holder.active input:-ms-input-placeholder{color:#fff!important}.picker_input_holder.active input::placeholder{color:#fff!important}.pickers_holder{position:absolute;top:3px!important;width:auto!important;padding:0;background-color:#fff;box-shadow:0 0 4px #00000026;z-index:999;border-radius:3px;overflow:hidden}.pickers_holder .time_picker{width:167px}.pickers_holder .date_picker{display:flex}.pickers_holder .date_picker .month-years-size{position:relative;width:48px;background-color:#f9f9f9}.pickers_holder .date_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:24px;transform:translateY(-50%);background-color:#fff}.pickers_holder .date_picker .month-years-size .month-year-item{display:flex;align-items:center;justify-content:center;height:24px;font-size:14px;color:#919191;font-weight:400;text-align:center;text-transform:uppercase}.pickers_holder .date_picker .month-years-size .month-year-item .left-year-show{color:#919191;font-size:14px;font-weight:700}.pickers_holder .date_picker .month-years-size .month-year-item:hover{color:#6c6c6c;cursor:pointer;background-color:#fbe9e9;border-radius:2px}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 2px 0}.pickers_holder .date_picker .full-calendars-list{flex:1;max-height:290px;min-width:264px;overflow:hidden}.pickers_holder .date_picker .full-calendars-list .full_list{height:100%}.pickers_holder .date_picker .full-calendars-list .full_list .selfScroll{width:100%;height:100%}.pickers_holder .time_picker .time_picker_head{height:36px;display:flex;padding:0 12px;align-items:center;justify-content:space-between}.pickers_holder .time_picker .time_picker_head .selected_time{font-size:14px;font-weight:800;color:#6c6c6c}.pickers_holder .time_picker .time_picker_head .sel_now{color:#536bc2;font-size:14px;font-weight:700}.pickers_holder .time_picker .time_picker_head .sel_now:hover{cursor:pointer;color:#5673aa}.pickers_holder .time_picker .time_picker_body .picker_body_head{height:22px;display:flex;align-items:center;background-color:#f7f7f7;margin:0 4px 2px;border-radius:2px}.pickers_holder .time_picker .time_picker_body .picker_body_head div{flex:0 0 33%;text-align:center;font-size:10px;font-weight:700;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body_head div.active{color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body{position:relative;height:155px;display:flex;justify-content:center}.pickers_holder .time_picker .time_picker_body .picker_body:after{content:\"\";position:absolute;width:100%;height:31px;top:-1px;left:0;pointer-events:none;background:linear-gradient(to bottom,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body:before{content:\"\";position:absolute;pointer-events:none;width:100%;height:31px;bottom:-1px;left:0;background:linear-gradient(to top,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line{position:absolute;width:calc(100% - 8px);height:22px;top:50%;left:4px;border-radius:2px;transform:translateY(-50%);background-color:#9191911a}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line span{position:absolute;left:30%;font-size:14px;font-weight:400;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers{position:relative;height:22px;flex:0 0 33.3%;height:100%;padding:67px 0;margin:0 7px;overflow:auto;text-align:center;-ms-overflow-style:none;scrollbar-width:none;z-index:10}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:first-child{flex:0 0 28px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(2){flex:0 0 36px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(3){flex:0 0 38px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers::-webkit-scrollbar{display:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{height:22px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#919191;font-weight:400;-webkit-user-select:none;user-select:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item:hover{color:#5673aa;cursor:pointer}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:hover{box-shadow:inset 0 0 4px #00000026}.pickers_holder .time_picker .picker_buttons{display:flex;padding:6px;justify-content:space-between}.pickers_holder .time_picker .picker_buttons .pick_button{display:flex;align-items:center;justify-content:center;height:32px;padding:0 12px;text-align:center;border-radius:2px;font-size:12px;font-weight:700;color:#919191b3}.pickers_holder .time_picker .picker_buttons .pick_button:hover{background-color:#f3f3f3;color:#919191;cursor:pointer}.pickers_holder .time_picker .picker_buttons .pick_button.set_button{width:57px;text-align:center;background-color:#6d82c7;color:#fff}.pickers_holder .time_picker .picker_buttons .pick_button.set_button:hover{background-color:#536bc2}.pickers_holder.dark_picker{background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size{width:40px;background-color:#424242}.pickers_holder.dark_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:26px;transform:translateY(-50%);background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .month-year-item{height:22px;color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item .left-year-show{color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year{color:#fff}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year .left-year-show{color:#fff;font-weight:700}.pickers_holder.dark_picker .month-years-size .month-year-item:hover{color:#fff;background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 4px 0}.pickers_holder.dark_picker .date_picker{margin:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list{min-width:184px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view{width:182px;padding-top:6px;background-color:#2f2f2f}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head{padding:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name{padding:0 4px;color:#fff;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name .year_hold{margin-right:0;color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today{padding:0 4px;color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today:hover{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator{margin:12px 10px;color:#919191;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.current_year{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.full_calendar{margin-bottom:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px 4px;padding:0}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days .cal_day{width:22px;height:22px;margin:0;font-size:9px;color:#aaa;text-align:center}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;row-gap:12px;justify-content:unset;margin:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item{margin:0;height:22px;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item:hover:not(.current_month){background-color:#424242;color:#fff;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item.current_month{color:#fff;background-color:#3b73ed66;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list.current_year .month_list_item{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px;padding:0;height:auto}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day{width:22px;height:22px;margin:0;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#fff;background-color:#3b73ed66;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#3b73ed66;color:#fff;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.day_in_current_month{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.weekend_day_in_current_month{color:#ccc}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#424242;border-radius:2px;cursor:pointer;color:#fff}.pickers_holder.dark_picker .time_picker{width:156px;margin:4px}.pickers_holder.dark_picker .time_picker .time_picker_head{height:18px;padding:0 4px;margin-bottom:4px}.pickers_holder.dark_picker .time_picker .time_picker_head .selected_time{color:#fff;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_head .sel_now{color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;margin:0 0 4px;padding:2px;background:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head div{color:#aaa;font-size:9px;text-align:center;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body{height:176px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;padding:0 2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:before{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:after{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line{left:0;width:100%;background-color:#3b73ed33}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line{left:33.3%;width:1px;height:12px;margin-top:5px;background-color:#92b1f5;opacity:.4;border-radius:2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line.line_2{left:66.6%}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers{margin:0;padding:77px 0}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{color:#aaa;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item.active_item{color:#fff}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons{display:grid;grid-template-columns:repeat(2,1fr);column-gap:4px;margin-top:6px;padding:4px 0 0;border-top:1px solid #424242}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button{height:18px;background-color:#424242;color:#fff;font-size:11px;text-transform:uppercase;border-radius:1px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button.set_button{width:auto;background-color:#3b73ed}.calendar_view{width:260px;padding-top:12px;background-color:#fff}.calendar_view .calendar_view_head{display:flex;justify-content:space-between;margin-bottom:12px;padding:0 12px}.calendar_view .calendar_view_head .month_name{font-size:12px;font-weight:700;color:#6c6c6c}.calendar_view .calendar_view_head .month_name .year_hold{margin-right:5px;text-transform:uppercase;color:#6c6c6c;cursor:pointer}.calendar_view .calendar_view_head .month_name .year_hold:hover{color:#919191}.calendar_view .calendar_view_head .today{font-size:12px;font-weight:700;color:#5673aab3;cursor:pointer}.calendar_view .calendar_view_head .today:hover{color:#3551b7}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport{height:230px;min-height:230px}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view .calendar_indicator{margin:12px;height:18px;font-size:12px;color:#6c6c6c66;font-weight:700}.calendar_view .calendars_list_view .calendar_month_days{padding:0 3px}.calendar_view .calendars_list_view .calendar_month_days.hideVisibility{visibility:hidden}.calendar_view .calendars_list_view .calendar_month_days .cal_day{width:24px;margin:0 6px;font-size:12px;font-weight:700;color:#b7b7b7}.calendar_view .calendars_list_view .calendar_days{height:140px;display:flex;flex-wrap:wrap;padding:0 3px}.calendar_view .calendars_list_view .calendar_days .calendar_day{display:flex;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;margin:0 6px;font-size:14px;font-weight:400;color:#6c6c6c}.calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#fff;background-color:#919191;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#919191;color:#fff;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#f7f7f7;border-radius:2px;cursor:pointer;color:#3c3c3c}.calendar_view .month_list{display:flex;flex-wrap:wrap;justify-content:space-around;height:140px}.calendar_view .month_list .month_list_item{flex:0 0 50px;height:24px;margin:0 10px;display:flex;align-items:center;justify-content:center;border-radius:3px;font-size:12px;color:#6c6c6c;font-weight:400}.calendar_view .month_list .month_list_item:hover:not(.current_month){background-color:#f7f7f7;color:#3c3c3c;border-radius:2px;cursor:pointer}.calendar_view .month_list .month_list_item.current_month{color:#3c3c3c;background-color:#f7f7f7;border-radius:2px;cursor:pointer}.dropdown{z-index:999!important}input[type=date]::-webkit-inner-spin-button,input[type=date]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}.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}*{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}.input-custom-group{display:block;position:relative}.input-custom-group .location-area-filter,.input-custom-group .location-area-filter.focus,.input-custom-group .location-area-filter.focus:hover{background-color:#424242!important;color:#fff!important}.input-custom-group .location-area-filter.focus::placeholder{background-color:#424242!important}.input-custom-group .location-area-filter:focus{background-color:#424242!important;color:#fff!important}.input-custom-group.datetimeclass{border-radius:2px!important}.input-custom-group.datetimeclass:not(.invalid-focus-out-filled),.input-custom-group.datetimeclass:not(.valid-focus-in),.input-custom-group.datetimeclass:not(.valid-focus-out),.input-custom-group.datetimeclass:not(.valid-focus-out-filled),.input-custom-group.datetimeclass:not(.invalid-focus-in),.input-custom-group.datetimeclass:not(.invalid-focus-out-empty){background-color:#eee}.input-custom-group.datetimeclass:not(.invalid-focus-out-filled):hover,.input-custom-group.datetimeclass:not(.valid-focus-in):hover,.input-custom-group.datetimeclass:not(.valid-focus-out):hover,.input-custom-group.datetimeclass:not(.valid-focus-out-filled):hover,.input-custom-group.datetimeclass:not(.invalid-focus-in):hover,.input-custom-group.datetimeclass:not(.invalid-focus-out-empty):hover{background-color:#dadada}.input-custom-group.datetimeclass.invalid-empty-focus-out{background-color:#fae3e3}.input-custom-group.datetimeclass.invalid-empty-focus-out:hover{background-color:#f5c7c7}.input-custom-group.datetimeclass.valid-focus-out{background-color:#e2ecf9}.input-custom-group.datetimeclass.valid-focus-out:hover{background-color:#c5d8f3}.input-custom-group.datetimeclass.inactive-empty,.input-custom-group.datetimeclass.inactive-filled{background-color:#f7f7f7}.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-filled),.input-custom-group.datetimeclass.dark:not(.valid-focus-in),.input-custom-group.datetimeclass.dark:not(.valid-focus-out),.input-custom-group.datetimeclass.dark:not(.valid-focus-out-filled),.input-custom-group.datetimeclass.dark:not(.invalid-focus-in),.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-empty){background-color:#424242}.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-filled):hover,.input-custom-group.datetimeclass.dark:not(.valid-focus-in):hover,.input-custom-group.datetimeclass.dark:not(.valid-focus-out):hover,.input-custom-group.datetimeclass.dark:not(.valid-focus-out-filled):hover,.input-custom-group.datetimeclass.dark:not(.invalid-focus-in):hover,.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-empty):hover{background-color:#6c6c6c}.input-custom-group.datetimeclass.dark.valid-focus-out-filled{background-color:red}.input-custom-group.datetimeclass.dark.valid-focus-out-filled:hover{background-color:#c5d8f3}.input-custom-group.datetimeclass.dark.inactive-empty,.input-custom-group.datetimeclass.dark.inactive-filled{background-color:#f7f7f7}.input-custom-group.custom-empty-hover:hover{transition:.3s ease-in-out}.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.custom-empty-hover:hover .input-icon:hover~.input-control,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:hover~.input-control{background-color:#dadada}.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:before:hover,.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.custom-empty-hover:hover .input-icon:before:hover,.input-custom-group.custom-empty-hover:hover .input-icon:after:hover~.input-control,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:after:hover~.input-control{background-color:#dadada}.input-custom-group.custom-filled-hover:hover{transition:.3s ease-in-out}.input-custom-group.custom-filled-hover:hover .input-clear{display:inline-block}.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-icon:hover~.input-control,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-clear:hover~.input-control{background-color:#dadada}.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:before:hover,.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-icon:before:hover,.input-custom-group.custom-filled-hover:hover .input-icon:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-clear:before:hover,.input-custom-group.custom-filled-hover:hover .input-clear:after:hover~.input-control{background-color:#dadada}.input-custom-group.input-remove-trash-can:hover .input-clear{display:inline-block!important}.input-custom-group.input-remove-trash-can:hover .input-clear:hover~.input-control{background-color:#dadada}.input-custom-group.input-remove-trash-can:hover .placeholder-icon-right-side{opacity:0}.input-custom-group.input-remove-background:hover .input-control{background:transparent!important}.input-custom-group.input-remove-background.input-blue-text{color:red}.input-custom-group.input-remove-background .input-control{background:transparent;color:#2f2f2f;font-weight:400}.input-custom-group.input-remove-background .input-control.focus,.input-custom-group.input-remove-background .input-control.focus:hover{background:#2f2f2f!important;color:#fff!important}.input-custom-group.input-remove-background .input-control.focus::placeholder{color:#fff!important}.input-custom-group.input-remove-background .input-control:focus{background:#2f2f2f!important;color:#fff!important}.input-custom-group.input-remove-background .input-dropdown-arrow svg path{fill:#919191!important}.input-custom-group.input-blue-text .input-control{color:#6692f1}.input-custom-group.invalid-filled-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.invalid-filled-focus-out:hover .input-clear,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow,.input-custom-group.invalid-filled-focus-out:hover .input-icon,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear{display:inline-block}.input-custom-group.invalid-filled-focus-out:hover .input-clear:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-icon:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-filled-focus-out:hover .input-clear:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-clear:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-icon:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-icon:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:after:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-filled-focus-out:hover .input-label-counter{display:flex}.input-custom-group.invalid-empty-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.invalid-empty-focus-out:hover .input-clear{display:none}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x svg path{fill:#e66767}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x svg rect{fill:#e66767}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x:hover svg path{fill:#c20c0c}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x:hover svg rect{fill:#c20c0c}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.invalid-empty-focus-out:hover .input-icon{display:inline-block}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-icon:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-icon:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-icon:after:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-focus-in:hover{transition:.3s ease-in-out}.input-custom-group.invalid-focus-in:hover .input-password-eye:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-password:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:hover~.input-control{background-color:#e22e22}.input-custom-group.invalid-focus-in:hover .input-password-eye:before:hover,.input-custom-group.invalid-focus-in:hover .input-password-eye:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-password:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:after:hover~.input-control{background-color:#e22e22}.input-custom-group.valid-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.valid-focus-out:hover .input-clear,.input-custom-group.valid-focus-out:hover .input-pen-container,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow,.input-custom-group.valid-focus-out:hover .input-icon,.input-custom-group.valid-focus-out:hover .input-label-counter,.input-custom-group.valid-focus-out:hover .input-password-eye,.input-custom-group.valid-focus-out:hover app-ca-input-password,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.valid-focus-out:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.valid-focus-out:hover .input-clear:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-icon:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-label-counter:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-password-eye:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-password:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-clear:hover~.input-control{background-color:#c5d8f3}.input-custom-group.valid-focus-out:hover .input-clear:before:hover,.input-custom-group.valid-focus-out:hover .input-clear:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-pen-container:before:hover,.input-custom-group.valid-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-icon:before:hover,.input-custom-group.valid-focus-out:hover .input-icon:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-label-counter:before:hover,.input-custom-group.valid-focus-out:hover .input-label-counter:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-password-eye:before:hover,.input-custom-group.valid-focus-out:hover .input-password-eye:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-password:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-clear:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-clear:after:hover~.input-control{background-color:#c5d8f3}.input-custom-group.valid-focus-out:hover .input-label-counter{display:flex}.input-custom-group.valid-focus-out:hover .input-required-check{display:none}.input-custom-group.valid-focus-in:hover{transition:.3s ease-in-out}.input-custom-group.valid-focus-in:hover .trash-can-svg:hover~.input-control,.input-custom-group.valid-focus-in:hover .input-password-eye:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-password:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-clear:hover~.input-control{background-color:#255bb9}.input-custom-group.valid-focus-in:hover .trash-can-svg:before:hover,.input-custom-group.valid-focus-in:hover .trash-can-svg:after:hover~.input-control,.input-custom-group.valid-focus-in:hover .input-password-eye:before:hover,.input-custom-group.valid-focus-in:hover .input-password-eye:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-password:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-clear:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-clear:after:hover~.input-control{background-color:#255bb9}.input-custom-group.inactive-filled:hover .input-clear,.input-custom-group.inactive-filled:hover .trash-can-svg,.input-custom-group.inactive-filled:hover .input-pen-container,.input-custom-group.inactive-filled:hover .input-dropdown-arrow,.input-custom-group.inactive-filled:hover .input-icon,.input-custom-group.inactive-filled:hover .input-password-eye,.input-custom-group.inactive-filled:hover app-ca-input-password,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon,.input-custom-group.inactive-filled:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.inactive-filled:hover .input-clear:hover~.input-control,.input-custom-group.inactive-filled:hover .trash-can-svg:hover~.input-control,.input-custom-group.inactive-filled:hover .input-pen-container:hover~.input-control,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.inactive-filled:hover .input-icon:hover~.input-control,.input-custom-group.inactive-filled:hover .input-password-eye:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-password:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-clear:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-filled:hover .input-clear:before:hover,.input-custom-group.inactive-filled:hover .input-clear:after:hover~.input-control,.input-custom-group.inactive-filled:hover .trash-can-svg:before:hover,.input-custom-group.inactive-filled:hover .trash-can-svg:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-pen-container:before:hover,.input-custom-group.inactive-filled:hover .input-pen-container:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:before:hover,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-icon:before:hover,.input-custom-group.inactive-filled:hover .input-icon:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-password-eye:before:hover,.input-custom-group.inactive-filled:hover .input-password-eye:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-password:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-clear:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-clear:after:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-empty:hover .input-clear,.input-custom-group.inactive-empty:hover .input-pen-container,.input-custom-group.inactive-empty:hover .input-dropdown-arrow,.input-custom-group.inactive-empty:hover .input-icon,.input-custom-group.inactive-empty:hover .input-password-eye,.input-custom-group.inactive-empty:hover app-ca-input-password,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon,.input-custom-group.inactive-empty:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.inactive-empty:hover .input-clear:hover~.input-control,.input-custom-group.inactive-empty:hover .input-pen-container:hover~.input-control,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.inactive-empty:hover .input-icon:hover~.input-control,.input-custom-group.inactive-empty:hover .input-password-eye:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-password:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-clear:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-empty:hover .input-clear:before:hover,.input-custom-group.inactive-empty:hover .input-clear:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-pen-container:before:hover,.input-custom-group.inactive-empty:hover .input-pen-container:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:before:hover,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-icon:before:hover,.input-custom-group.inactive-empty:hover .input-icon:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-password-eye:before:hover,.input-custom-group.inactive-empty:hover .input-password-eye:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-password:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-clear:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-clear:after:hover~.input-control{background-color:#f7f7f7}.input-custom-group .input-label{position:absolute;top:4px;left:6px;font-size:14px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;transition:.3s ease-in-out}.input-custom-group .input-label span::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.input-custom-group .input-label span::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.input-custom-group .input-label.required:after{content:\" *\";color:#ef5350}.input-custom-group .input-label.inactive-empty{color:#919191!important}.input-custom-group .input-label.up-label{top:-17px;left:6px;font-size:11px;font-weight:600}.input-custom-group .input-label.in-label{top:4px!important;font-size:11px!important;font-weight:600!important;transition:none!important}.input-custom-group .input-label.in-label.in-label-focus{color:#fff!important}.input-custom-group .input-label.no-transition{transition:none!important}.input-custom-group .input-label.input-placeholderIcon-on{left:37px}.input-custom-group .input-label.input-placeholderIcon-on.up-label{left:36px}.input-custom-group .input-label.hidden{display:none!important}.input-custom-group .input-label.load-shipper .load-shipper{display:grid;grid-template-columns:455px 120px;align-items:center}.input-custom-group .input-label.load-shipper .load-shipper span:nth-child(2){text-align:right;color:#6c6c6c;font-size:11px;font-weight:600}.input-custom-group .input-label.load-shipper.required:after{position:absolute;right:0;left:60px;top:0}.input-custom-group .input-label.load-shipper.multiple-labels.required:after,.input-custom-group .input-label.load-shipper.up-label.required:after{transition-delay:.1s;transition-timing-function:ease-in;position:absolute;right:0;left:48px;top:0}.input-custom-group .input-label .load-dispatches-ttd{display:grid;grid-template-columns:92px 89px 182px 53px;align-items:center;-moz-column-gap:65px;grid-column-gap:65px;column-gap:65px}.input-custom-group .input-label .load-dispatches-ttd span:nth-child(4){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label .load-dispatches-ttd.multiple-labels-position-on-focus span:nth-child(4){transition-delay:.3s;color:#6c6c6c!important;opacity:1;top:-19px}.input-custom-group .input-label.dropdown-double-column>*{display:grid;grid-template-columns:118px 1fr;align-items:center;-moz-column-gap:4px;grid-column-gap:4px;column-gap:4px}.input-custom-group .input-label.dropdown-triple-column>*{display:grid;grid-template-columns:220px 138px 220px;align-items:center;-moz-column-gap:4px;grid-column-gap:4px;column-gap:4px}.input-custom-group .input-label.load-broker .load-broker{display:grid;align-items:center;grid-template-columns:277px 82px 69px}.input-custom-group .input-label.load-broker .load-broker span:nth-child(2),.input-custom-group .input-label.load-broker .load-broker span:nth-child(3){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label.load-broker .load-broker.multiple-labels-position-on-focus span:nth-child(2),.input-custom-group .input-label.load-broker .load-broker.multiple-labels-position-on-focus span:nth-child(3){transition-delay:.3s;color:#919191!important;opacity:1;top:-19px;text-align:right}.input-custom-group .input-label.load-broker.required:after{position:absolute;left:51px;right:0;top:-1px}.input-custom-group .input-label.load-broker.multiple-labels.required:after,.input-custom-group .input-label.load-broker.up-label.required:after{transition-delay:.1s;transition-timing-function:ease-in;position:absolute;left:44px;right:0;top:-1px}.input-custom-group .input-label .load-broker-contact,.input-custom-group .input-label .load-shipper-contact{display:grid;grid-template-columns:235px 38px;align-items:center;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;transition:.3 ease-in-out}.input-custom-group .input-label .load-broker-contact span:nth-child(2),.input-custom-group .input-label .load-shipper-contact span:nth-child(2){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label .load-broker-contact.multiple-labels-position-on-focus span:nth-child(2),.input-custom-group .input-label .load-shipper-contact.multiple-labels-position-on-focus span:nth-child(2){transition-delay:.3s;opacity:1;top:-19px;color:#6c6c6c!important}.input-custom-group .input-label.load-shipper-contact .load-shipper-contact{grid-template-columns:295px 38px}.input-custom-group .input-label.regular{font-weight:400}.input-custom-group .input-label.datetimeclass.dark{color:#fff}.input-custom-group .hide-loads .load-broker{grid-template-columns:365px 92px}.input-custom-group .input-control{width:100%;height:26px;border:none;outline:none;border-radius:2px;padding:4px 6px;font-size:14px;font-weight:400;background-color:#eee;color:#2f2f2f;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.input-custom-group .input-control::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.center{text-align:center}.input-custom-group .input-control.uppercase{text-transform:uppercase}.input-custom-group .input-control.lowercase{text-transform:lowercase}.input-custom-group .input-control:hover{background-color:#dadada}.input-custom-group .input-control:focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .input-control:focus::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::-moz-placeholder{color:#fff6}.input-custom-group .input-control:focus:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::placeholder{color:#fff6}.input-custom-group .input-control:focus::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control:focus::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control:focus.blue-dropdown{background-color:#0b49d1}.input-custom-group .input-control.valid-focus-in,.input-custom-group .input-control.dropdown-placeholder-active,.input-custom-group .input-control.multiSelect-dropdown-active{background-color:#255bb9;color:#fff}.input-custom-group .input-control.valid-focus-in::-webkit-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-webkit-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-webkit-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-moz-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-moz-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-moz-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in:-ms-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active:-ms-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active:-ms-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-ms-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-ms-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-ms-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::placeholder,.input-custom-group .input-control.dropdown-placeholder-active::placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-moz-selection,.input-custom-group .input-control.dropdown-placeholder-active::-moz-selection,.input-custom-group .input-control.multiSelect-dropdown-active::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.valid-focus-in::selection,.input-custom-group .input-control.dropdown-placeholder-active::selection,.input-custom-group .input-control.multiSelect-dropdown-active::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.valid-focus-out-filled{background-color:#e2ecf9;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled.input-dropdown-table{background-color:#fff}.input-custom-group .input-control.valid-focus-out-filled::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled:hover{background-color:#c5d8f3}.input-custom-group .input-control.invalid-focus-in,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in{background-color:#e22e22;color:#fff}.input-custom-group .input-control.invalid-focus-in::-moz-selection,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.invalid-focus-in::selection,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.invalid-focus-out-filled,.input-custom-group .input-control.invalid-focus-out-empty{background-color:#fae3e3;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled::-moz-selection,.input-custom-group .input-control.invalid-focus-out-empty::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled::selection,.input-custom-group .input-control.invalid-focus-out-empty::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled:hover,.input-custom-group .input-control.invalid-focus-out-empty:hover{background-color:#f5c7c7}.input-custom-group .input-control.inactive-empty{background-color:#f7f7f7;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled{background-color:#f7f7f7;color:#2f2f2f;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.inactive-filled::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.datetimeclass:not(.inactive-filled){letter-spacing:1px;pointer-events:none;opacity:0}.input-custom-group .input-control.has-placeholderIcon{padding-left:37px}.input-custom-group .input-control.dropdown-input-image-truck{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-webkit-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-moz-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus:-ms-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-ms-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-trailer{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-webkit-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-moz-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus:-ms-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-ms-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-color{padding-left:29px}.input-custom-group .input-control.dropdown-input-image-user{padding-left:30px}.input-custom-group .input-control.dropdown-input-image-pm{padding-left:37px}.input-custom-group .input-control.dropdown-input-image-without-text-transparent,.input-custom-group .input-control.multiple-input-values{color:transparent}.input-custom-group .input-control.input-32-font-20{font-weight:700;font-size:20px}.input-custom-group .input-control.details-pages{height:32px;background:#1d1d1d;color:#fff6}.input-custom-group .input-control.details-pages .input-dropdown-arrow:hover,.input-custom-group .input-control.details-pages:hover{background:#1d1d1d}.input-custom-group .input-control.details-pages::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::-moz-placeholder{color:#fff6}.input-custom-group .input-control.details-pages:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::placeholder{color:#fff6}.input-custom-group .input-control.disable-select-on-focus-out::-moz-selection{background-color:transparent}.input-custom-group .input-control.disable-select-on-focus-out::selection{background-color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-webkit-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-moz-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input:-ms-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-ms-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::placeholder{opacity:0;color:transparent}.input-custom-group .input-control.multiple-input-placeholder{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.load-dispatches-ttd,.input-custom-group .input-control.load-broker,.input-custom-group .input-control.load-shipper,.input-custom-group .input-control.load-shipper-contact{position:absolute;bottom:1.5px;background-color:transparent;display:grid;align-items:center}.input-custom-group .input-control.load-dispatches-ttd span,.input-custom-group .input-control.load-broker span,.input-custom-group .input-control.load-shipper span,.input-custom-group .input-control.load-shipper-contact span{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.double-text-dropdown{position:absolute;top:50%;transform:translateY(-48%);background-color:transparent;display:flex;align-items:center;justify-content:space-between;padding-right:26px}.input-custom-group .input-control.double-text-dropdown span:last-child .multiple-input-text{color:#919191;font-size:11px;font-weight:400}.input-custom-group .input-control.double-text-dropdown span:last-child .multiple-input-text.focusable-text{color:#6f9ee0;font-size:11px;font-weight:400}.input-custom-group .input-control.double-text-dropdown span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd{grid-template-columns:repeat(2,156px) 150px 122px;padding-top:3px}.input-custom-group .input-control.load-dispatches-ttd svg{height:16px;width:44px}.input-custom-group .input-control.load-dispatches-ttd svg path{fill:#919191}.input-custom-group .input-control.load-dispatches-ttd span:nth-child(1) .multiple-input-text,.input-custom-group .input-control.load-dispatches-ttd span:nth-child(2) .multiple-input-text{max-width:70px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.input-custom-group .input-control.load-dispatches-ttd span:nth-child(3) .multiple-input-text{max-width:100px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.input-custom-group .input-control.load-dispatches-ttd span:last-child{justify-content:flex-end}.input-custom-group .input-control.load-dispatches-ttd span:last-child .multiple-input-text{color:#919191!important;font-size:11px;font-weight:400;line-height:24px}.input-custom-group .input-control.load-dispatches-ttd span:last-child .multiple-input-text.focusable-text{color:#6f9ee0;font-size:11px;font-weight:400}.input-custom-group .input-control.load-dispatches-ttd span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd span span{line-height:23px;position:relative}.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9856,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9857,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9858,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg path{fill:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd .focusable-image{opacity:.6}.input-custom-group .input-control.load-dispatches-ttd .trailerContainer{width:max-content!important;padding:0!important;margin:0!important}.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9856,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9857,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9858,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg path{fill:#6f9ee0}.input-custom-group .input-control.load-broker{display:grid;grid-template-columns:229px 115px 48px;align-items:center;height:24px}.input-custom-group .input-control.load-broker span:nth-child(1){white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.input-custom-group .input-control.load-broker span:nth-child(2),.input-custom-group .input-control.load-broker span:nth-child(3){justify-content:flex-end}.input-custom-group .input-control.load-broker span:nth-child(3){position:relative;bottom:1px}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter.counter-focus{color:#6f9ee0;background-color:#6f9ee033}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter.counter-one{max-width:none!important;width:19px!important}.input-custom-group .input-control.load-broker-contact,.input-custom-group .input-control.load-shipper-contact{position:absolute;top:50%;transform:translateY(-50%);background-color:transparent!important;display:grid;grid-template-columns:165px 94px;align-items:center;grid-column-gap:20px;-moz-column-gap:20px;column-gap:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px;padding-right:35px}.input-custom-group .input-control.load-broker-contact span,.input-custom-group .input-control.load-shipper-contact span{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.load-broker-contact span span,.input-custom-group .input-control.load-shipper-contact span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.load-broker-contact span:nth-child(2),.input-custom-group .input-control.load-shipper-contact span:nth-child(2){justify-self:flex-end;font-size:11px;font-weight:400;line-height:24px}.input-custom-group .input-control.load-broker-contact span:nth-child(2) span,.input-custom-group .input-control.load-shipper-contact span:nth-child(2) span{color:#919191!important}.input-custom-group .input-control.text-suffix{position:absolute;top:50%;transform:translateY(-50%);background-color:transparent!important;display:flex;align-items:center;column-gap:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px;padding-right:35px}.input-custom-group .input-control.text-suffix span{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.text-suffix span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.text-suffix span:nth-child(2){justify-self:flex-end;font-size:14px;font-weight:400;line-height:18px}.input-custom-group .input-control.text-suffix span:nth-child(2) span:not(.focusable-text){color:#919191!important}.input-custom-group .input-control.text-suffix span:nth-child(2) span:not(.focusable-text):before{content:\"\\2022 \"}.input-custom-group .input-control.text-suffix span:nth-child(2) span.ca-add-dot:before{content:\"\\2022 \"}.input-custom-group .input-control.load-shipper-contact{grid-template-columns:283px 38px}.input-custom-group .input-control.load-shipper{grid-template-columns:394px 180px;-moz-column-gap:2px;column-gap:2px;padding-right:25px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px}.input-custom-group .input-control.load-shipper span:nth-child(2),.input-custom-group .input-control.load-shipper span:nth-child(3){justify-content:flex-end;font-size:11px;color:#919191!important;font-weight:400}.input-custom-group .input-control.load-shipper span:nth-child(2) span{color:#919191!important}.input-custom-group .input-control.load-shipper span:nth-child(2) span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;position:relative;bottom:1px}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter.counter-focus{color:#6f9ee0;background-color:#6f9ee033}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter.counter-one{max-width:none!important;width:19px!important}.input-custom-group .input-control.load-shipper span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.cursor-on-right-side{text-align:right;padding-right:32px}.input-custom-group .input-control.merge-dropdown-body-with-input::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::-moz-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::placeholder{color:#fff6}.input-custom-group .input-control.input-commands{background-color:#1d1d1d!important;color:#fff!important}.input-custom-group .input-control.input-commands.blue-commands{background-color:#0b49d1!important}.input-custom-group .input-control.dropdown-label-active{background-color:#1d1d1d!important;color:#fff!important}.input-custom-group .input-control.dispatch-dropdown{width:calc(100% - 24px);background-color:#2f2f2f!important}.input-custom-group input[type=number]::-webkit-inner-spin-button,.input-custom-group input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0!important}.input-custom-group input[type=number]::-webkit-inner-spin-button:hover,.input-custom-group input[type=number]::-webkit-outer-spin-button:hover,.input-custom-group input[type=number]::-webkit-inner-spin-button:focus,.input-custom-group input[type=number]::-webkit-outer-spin-button:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0!important}.input-custom-group input[type=number]{-moz-appearance:textfield!important}.input-custom-group input[type=number]:hover,.input-custom-group input[type=number]:focus{-moz-appearance:textfield!important}.input-custom-group .load-dispatches-ttd-owner{position:absolute;left:13px;bottom:7px;width:10px;height:10px}.input-custom-group .load-dispatches-ttd-owner svg{width:10px!important;height:10px!important}.input-custom-group .time-picker-opacity{opacity:1!important}.input-custom-group .dispatch-history-default-color{background:#f7f7f7!important;transition:background .3s ease-in-out}.input-custom-group .dispatch-history-row-hover{background:#eee!important;transition:background .3s ease-in-out}.input-custom-group .input-required-check{position:absolute;right:6px;width:14px;height:10px;display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-required-check svg path{fill:#6f9ee0}.input-custom-group .input-clear{position:absolute;right:4px;top:47%;transform:translateY(-50%);border-radius:1px;display:none;z-index:10;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-clear .input-clear-x svg{width:18px!important;height:18px!important;overflow:visible}.input-custom-group .input-clear .input-clear-x svg path{fill:#eee}.input-custom-group .input-clear .input-clear-x svg rect{fill:#919191;transition:transform .3s;transform:scale(1);transform-origin:center}.input-custom-group .input-clear .input-clear-x:hover svg{overflow:visible}.input-custom-group .input-clear .input-clear-x:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#424242}.input-custom-group .input-clear.datetimeclass{z-index:22!important}.input-custom-group .input-clear.focus{display:inline-block}.input-custom-group .input-clear.focus .input-clear-x svg path{fill:#1d1d1d}.input-custom-group .input-clear.focus .input-clear-x svg rect{fill:#aaa}.input-custom-group .input-clear.focus .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.valid-focus-in{display:inline-block}.input-custom-group .input-clear.valid-focus-in .input-clear-x svg path{fill:#255bb9}.input-custom-group .input-clear.valid-focus-in .input-clear-x svg rect{fill:#c5d8f3}.input-custom-group .input-clear.valid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.valid-focus-out .input-clear-x svg path{fill:#c5d8f3}.input-custom-group .input-clear.valid-focus-out .input-clear-x svg rect{fill:#6f9ee0}.input-custom-group .input-clear.valid-focus-out .input-clear-x:hover svg rect{fill:#3074d3}.input-custom-group .input-clear.invalid-focus-in{display:inline-block}.input-custom-group .input-clear.invalid-focus-in .input-clear-x svg path{fill:#e22e22}.input-custom-group .input-clear.invalid-focus-in .input-clear-x svg rect{fill:#f5c7c7}.input-custom-group .input-clear.invalid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.invalid-focus-out .input-clear-x svg path{fill:#f5c7c7}.input-custom-group .input-clear.invalid-focus-out .input-clear-x svg rect{fill:#e57373}.input-custom-group .input-clear.invalid-focus-out .input-clear-x:hover svg rect{fill:#ef5350}.input-custom-group .input-clear.incorrect-input{display:none}.input-custom-group .input-clear.incorrect-input .input-clear-x svg path{fill:#ef5350!important}.input-custom-group .input-clear.incorrect-input .input-clear-x svg rect{fill:transparent!important}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover{display:inline-block}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover svg rect{fill:#ef5350!important}.input-custom-group .input-clear.incorrect-input-on{display:inline-block}.input-custom-group .input-clear.incorrect-input-on .input-clear-x svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x svg rect{fill:#e57373!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x:hover svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x:hover svg rect{fill:#ef5350!important}.input-custom-group .input-clear.dropdown-on{right:27px!important;top:50%;transform:translateY(-50%)}.input-custom-group .input-clear.dropdown-on svg-icon{display:flex}.input-custom-group .input-clear.hidden{display:none}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg{width:20px!important;height:20px!important;position:relative;left:1px}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg path{fill:#aaa}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg rect{fill:#aaa}.input-custom-group .input-clear.trash-can-svg .input-clear-x:hover svg path{fill:#919191}.input-custom-group .input-clear.trash-can-svg .input-clear-x:hover svg rect{fill:#919191}.input-custom-group .input-clear.trash-can-svg:before{content:\"\";display:block;height:16px;width:1px;border-radius:3px;background-color:#91919166;position:absolute;right:22px;top:56%;transform:translateY(-50%)}.input-custom-group .input-clear.trash-can-svg.valid-focus-in{display:none}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x svg path{fill:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x svg rect{fill:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x:hover svg path{fill:#fff}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.trash-can-svg.valid-focus-in:before{background-color:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x svg path{fill:#6f9ee0}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x svg rect{fill:#6f9ee0}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x:hover svg path{fill:#3074d3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x:hover svg rect{fill:#3074d3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out:before{background-color:#6f9ee066}.input-custom-group .input-clear-dispatch{position:absolute;right:0;top:47%;display:flex;justify-content:center;align-items:center;width:26px;height:26px;transform:translateY(-50%);border-radius:2px;z-index:10;cursor:pointer;transition:background .3s ease-in-out}.input-custom-group .input-clear-dispatch svg-icon svg{display:flex;width:12px!important;height:12px!important}.input-custom-group .input-clear-dispatch svg-icon svg path{fill:#919191;transition:fill .3s ease-in-out}.input-custom-group .input-clear-dispatch:hover{background-color:#91919166}.input-custom-group .input-clear-dispatch:hover svg-icon svg path{fill:#dadada}.input-custom-group .input-icon{position:absolute;left:6px;top:47%;transform:translateY(-50%);z-index:10;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:.3s ease-in-out}.input-custom-group .input-icon svg-icon svg{width:18px;height:18px}.input-custom-group .input-icon.datetimeclass{z-index:21}.input-custom-group .input-icon.default-svg-color svg path{fill:#919191}.input-custom-group .input-icon.cursor-pointer{cursor:pointer}.input-custom-group .input-icon:after{content:\"\";display:block;height:15px;width:1px;border-radius:3px;background:#91919166;position:absolute;left:21px;top:55%;transform:translateY(-50%)}.input-custom-group .input-icon.focus svg path{fill:#ccc}.input-custom-group .input-icon.focus text{fill:#ccc}.input-custom-group .input-icon.focus:after{background:#ccc6}.input-custom-group .input-icon.valid-focus-in svg path{fill:#98b9ea}.input-custom-group .input-icon.valid-focus-in text{fill:#98b9ea}.input-custom-group .input-icon.valid-focus-in:after{background:#c5d8f3}.input-custom-group .input-icon.valid-focus-out svg path{fill:#6692f1}.input-custom-group .input-icon.valid-focus-out text{fill:#6f9ee0}.input-custom-group .input-icon.valid-focus-out:after{background-color:#6f9ee066}.input-custom-group .input-icon.valid-focus-out-dropdown-label:after{background-color:#6f9ee066}.input-custom-group .input-icon.invalid-focus-in svg path{fill:#ffb0a8}.input-custom-group .input-icon.invalid-focus-in text{fill:#ffb0a8}.input-custom-group .input-icon.invalid-focus-in:after{background-color:#f5c7c7}.input-custom-group .input-icon.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-icon.invalid-focus-out text{fill:#e57373}.input-custom-group .input-icon.invalid-focus-out:after{background:#e5737366}.input-custom-group .input-icon.inactive-empty svg path{fill:#ccc}.input-custom-group .input-icon.inactive-filled svg path{fill:#aaa}.input-custom-group .input-icon.inactive-filled:after{background-color:#aaa6}.input-custom-group .input-icon.discolor-placeholder svg path{fill:#919191}.input-custom-group .input-icon.load-adjusted-rate svg path{fill:#ffa726}.input-custom-group .input-icon.load-advance-rate svg path{fill:#4db6a2}.input-custom-group .input-icon.hidden{display:none!important}.input-custom-group .input-dropdown-arrow{display:inline-block;position:absolute;right:6px;top:50%;transform:translateY(-50%);width:14px;height:14px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:10;cursor:pointer}.input-custom-group .input-dropdown-arrow svg{display:flex;width:100%;transform:rotate(0);transition:.3s ease-in-out}.input-custom-group .input-dropdown-arrow svg path{fill:#919191}.input-custom-group .input-dropdown-arrow:hover svg path{fill:#424242}.input-custom-group .input-dropdown-arrow.datetimeclass{z-index:22!important}.input-custom-group .input-dropdown-arrow.focus svg{transform:rotate(180deg);transition:.3s ease-in-out}.input-custom-group .input-dropdown-arrow.focus svg path{fill:#ccc}.input-custom-group .input-dropdown-arrow.focus:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-dropdown-arrow.invalid-focus-out:hover svg path{fill:#ef5350}.input-custom-group .input-dropdown-arrow.invalid-focus-in svg path,.input-custom-group .input-dropdown-arrow.invalid-search-in-dropdown-focus-in svg path{fill:#f5c7c7}.input-custom-group .input-dropdown-arrow.invalid-focus-in:hover svg path,.input-custom-group .input-dropdown-arrow.invalid-search-in-dropdown-focus-in:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.valid-focus-in svg path{fill:#c5d8f3}.input-custom-group .input-dropdown-arrow.valid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.valid-focus-out svg path{fill:#6692f1}.input-custom-group .input-dropdown-arrow.valid-focus-out:hover svg path{fill:#3074d3}.input-custom-group .input-error{position:absolute;top:100%;right:5px;color:#ef5350;font-size:11px;font-weight:600;line-height:14px;display:inline-block}.input-custom-group .input-error::-moz-selection{background-color:#ef535033;color:#ef5350}.input-custom-group .input-error::selection{background-color:#ef535033;color:#ef5350}.input-custom-group .error-inside-input{position:absolute;right:32px;font-weight:600;font-size:11px;line-height:14px;color:#df3c3c;top:24%;pointer-events:none}.input-custom-group .input-password-eye{display:none;width:18px;height:18px;position:absolute;left:6px;top:50%;transform:translateY(-50%);padding-top:0;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-password-eye svg{width:18px;height:18px;position:absolute;bottom:0}.input-custom-group .input-password-eye svg path{fill:#919191}.input-custom-group .input-password-eye:after{content:\"\";display:block;height:15px;width:1px;border-radius:3px;background:#91919166;position:absolute;left:24px;top:52%;transform:translateY(-50%)}.input-custom-group .input-password-eye.visible{display:inline-block}.input-custom-group .input-password-eye.inactive svg path{fill:#ccc}.input-custom-group .input-password-eye.inactive:after{background-color:#aaa6}.input-custom-group .input-password-eye.valid-focus-out svg path{fill:#6f9ee0}.input-custom-group .input-password-eye.valid-focus-out:hover svg path{fill:#3074d3}.input-custom-group .input-password-eye.valid-focus-out:after{background-color:#6f9ee066}.input-custom-group .input-password-eye.valid-focus-in{display:inline-block}.input-custom-group .input-password-eye.valid-focus-in svg path{fill:#98b9ea}.input-custom-group .input-password-eye.valid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-password-eye.valid-focus-in:after{background-color:#c5d8f3}.input-custom-group .input-password-eye.invalid-focus-out svg{transition:.3s ease-in-out}.input-custom-group .input-password-eye.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-password-eye.invalid-focus-out:hover svg path{fill:#ef5350}.input-custom-group .input-password-eye.invalid-focus-out:after{background-color:#e5737366}.input-custom-group .input-password-eye.invalid-focus-in svg{transition:.3s ease-in-out}.input-custom-group .input-password-eye.invalid-focus-in svg path{fill:#ffb0a8}.input-custom-group .input-password-eye.invalid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-password-eye.invalid-focus-in:after{background-color:#f5c7c7}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.input-custom-group .date_time_holder{display:flex;align-items:center;position:absolute;top:0;width:100%;height:100%;padding:0 6px;opacity:0;z-index:20;cursor:text}.input-custom-group .date_time_holder span{position:relative;line-height:14px;display:flex;height:100%;align-items:center;z-index:10}.input-custom-group .date_time_holder span .border-picker{position:absolute;top:0;left:50%;transform:translate(-50%);height:100%;display:flex;align-items:center;justify-content:center;width:0px}.input-custom-group .date_time_holder span::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder span div::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder::selection{background-color:transparent!important;color:#fff}.input-custom-group .date_time_holder span.main{padding:0 2px;outline:none;font-size:14px;z-index:11}.input-custom-group .date_time_holder span.main::selection{z-index:10}.input-custom-group .date_time_holder span.main:first-child{padding-left:4px}.input-custom-group .date_time_holder span.reset-selection-color::selection{background-color:transparent!important;color:#2f2f2f!important}.input-custom-group .date_time_holder.focus{opacity:1;padding-left:35px}.input-custom-group .date_time_holder.focus span:nth-child(2){z-index:12;pointer-events:none}.input-custom-group .date_time_holder.focus span:nth-child(3){z-index:13}.input-custom-group .date_time_holder.focus span:nth-child(4){z-index:14;pointer-events:none}.input-custom-group .date_time_holder.focus span:nth-child(5){z-index:15}.input-custom-group .date_time_holder.valid-focus-out-filled{opacity:1}.input-custom-group .date_time_holder.valid-focus-out-filled span,.input-custom-group .date_time_holder.valid-focus-out-filled span .border-picker{color:#2f2f2f!important;-webkit-user-select:none;user-select:none}.input-custom-group .date_time_holder.dark.valid-focus-out-filled{background:#3b73ed33!important}.input-custom-group .date_time_holder.dark.valid-focus-out-filled span,.input-custom-group .date_time_holder.dark.valid-focus-out-filled span .border-picker{color:#fff!important}.input-custom-group .date_time_holder.dark.valid-focus-out-filled:hover{background:#3b73ed66!important}.input-custom-group .date_time_holder.dark.valid-focus-in{background:#0b49d1!important}.input-custom-group .date_time_holder.dark.valid-focus-in span,.input-custom-group .date_time_holder.dark.valid-focus-in span .border-picker{color:#fff!important}.input-custom-group .date_time_holder.focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .date_time_holder.valid-focus-in{opacity:1}.input-custom-group .date_time_holder.valid-focus-in::selection,.input-custom-group .date_time_holder.valid-focus-in div::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder.invalid-focus-out-filled{opacity:1}.input-custom-group .date_time_holder.date_time_holder_bank_card span.main{padding:0 3px}.input-custom-group .ca-placeholder-text{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;top:50%;transform:translateY(-50%);color:#919191;font-weight:400;font-size:14px;line-height:18px;padding-left:1px}.input-custom-group .ca-placeholder-text svg text{fill:#919191}.input-custom-group .ca-placeholder-text.inactive-filled{color:#aaa}.input-custom-group .ca-placeholder-text.inactive-filled svg text{fill:#aaa}.input-custom-group .ca-placeholder-text.focus{color:#919191}.input-custom-group .ca-placeholder-text.focus svg text{fill:#919191}.input-custom-group .ca-placeholder-text.valid-focus-in{color:#c5d8f3}.input-custom-group .ca-placeholder-text.valid-focus-in svg text{fill:#c5d8f3}.input-custom-group .ca-placeholder-text.valid-focus-out{color:#919191}.input-custom-group .ca-placeholder-text.valid-focus-out svg text{fill:#919191}.input-custom-group .ca-placeholder-text.invalid-focus-in{color:#f5c7c7}.input-custom-group .ca-placeholder-text.invalid-focus-in svg text{fill:#f5c7c7}.input-custom-group .ca-placeholder-text.invalid-focus-out{color:#919191}.input-custom-group .ca-placeholder-text.invalid-focus-out svg text{fill:#919191}.input-custom-group .input-invalid-danger-mark{position:absolute;right:5px;top:48%;transform:translateY(-50%);line-height:13.3px}.input-custom-group .input-invalid-danger-mark svg{width:13.3px;height:13.3px}.input-custom-group .input-invalid-danger-mark svg path{fill:#e57373}.input-custom-group .password-capslock{position:absolute;right:5px;top:-16px;color:#ffb74d;font-size:11px;font-weight:600;margin:0;padding:0;-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.input-custom-group .ta-input-commands{display:flex;align-items:center;gap:4px;position:absolute;right:4px}.input-custom-group .ta-input-commands:before{content:attr(data-before-content);color:#919191;font-weight:400;font-size:14px;line-height:18px}.input-custom-group .ta-input-commands .ta-input-command-first{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands .ta-input-command-second{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands .ta-input-command-third{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third svg rect{fill:none}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third svg path{fill:#6692f1}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#6692f1}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg path{fill:#bed0f9}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third svg rect{fill:#ffffffb2}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first svg path,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second svg path,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third svg path{fill:#0b49d1}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first:hover svg,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second:hover svg,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first:hover svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second:hover svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s}.input-custom-group .input-label-counter{position:absolute;display:flex;align-items:center;justify-content:center;width:22px;height:18px;font-size:11px;font-weight:700;color:#424242;background-color:#42424233;border-radius:9px;margin:0;padding-left:.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-loading-spinner{position:absolute;right:6px;bottom:3px}.input-custom-group .input-pen-container{position:absolute;right:50px;top:46%;transform:translateY(-50%);display:none;z-index:10;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-pen-container .input-pen svg{width:18px!important;height:18px!important;overflow:visible}.input-custom-group .input-pen-container .input-pen svg path{fill:#c5d8f3}.input-custom-group .input-pen-container .input-pen svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#6f9ee0}.input-custom-group .input-pen-container .input-pen:hover svg{overflow:visible}.input-custom-group .input-pen-container .input-pen:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#3074d3}.input-custom-group .dropdown-selected-image{position:absolute;left:6px;top:48%;transform:translateY(-50%);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .dropdown-selected-image.truck-make svg path{fill:#6c6c6c}.input-custom-group .dropdown-selected-image.trailer-make svg path{fill:#6c6c6c}.input-custom-group .dropdown-selected-image.name-initials-instead-url{width:18px;height:18px;border-radius:50%;object-fit:cover;top:50%;transform:translateY(-50%)}.input-custom-group .dropdown-selected-image.load-broker{height:26px}.input-custom-group .dropdown-selected-image.load-broker svg{height:18px}.input-custom-group .dropdown-selected-image.load-broker.medium svg #Path_33564{fill:#ffb74d}.input-custom-group .dropdown-selected-image.load-broker.low svg #Path_33564{fill:#e57373}.input-custom-group .dropdown-selected-image.semitruck svg path,.input-custom-group .dropdown-selected-image.semisleeper svg path,.input-custom-group .dropdown-selected-image.boxtruck svg path,.input-custom-group .dropdown-selected-image.reefertruck svg path,.input-custom-group .dropdown-selected-image.cargovan svg path,.input-custom-group .dropdown-selected-image.dumptruck svg path,.input-custom-group .dropdown-selected-image.cementtruck svg path,.input-custom-group .dropdown-selected-image.garbagetruckm .input-custom-group .dropdown-selected-image.towtruck svg path,.input-custom-group .dropdown-selected-image.carhauler svg path,.input-custom-group .dropdown-selected-image.spotter svg path,.input-custom-group .dropdown-selected-image.flatbed svg path,.input-custom-group .dropdown-selected-image.stepdeck svg path,.input-custom-group .dropdown-selected-image.lowboyrgn svg path,.input-custom-group .dropdown-selected-image.chassis svg path,.input-custom-group .dropdown-selected-image.conestoga svg path,.input-custom-group .dropdown-selected-image.sidekit svg path,.input-custom-group .dropdown-selected-image.container svg path,.input-custom-group .dropdown-selected-image.dryvan svg path,.input-custom-group .dropdown-selected-image.reefer svg path,.input-custom-group .dropdown-selected-image.enddump svg path,.input-custom-group .dropdown-selected-image.bottomdump svg path,.input-custom-group .dropdown-selected-image.hopper svg path,.input-custom-group .dropdown-selected-image.tanker svg path,.input-custom-group .dropdown-selected-image.pneumatictanker svg path,.input-custom-group .dropdown-selected-image.carhaulerstigner svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9856,.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9857,.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9858,.input-custom-group .dropdown-selected-image.unset-color svg path{fill:#fff6!important}.input-custom-group .placeholder-icon-right-side{position:absolute;right:4px}.input-custom-group .placeholder-icon-right-side.green svg path{fill:#4db6a2}.input-custom-group .placeholder-icon-right-side.purple svg path{fill:#ba68c8}.input-custom-group .placeholder-icon-right-side.blue svg path{fill:#6f9ee0}.input-custom-group .placeholder-icon-right-side.orange svg path{fill:#f89b2e}.input-custom-group .placeholder-icon-right-side.red svg path{fill:#e66767}.input-custom-group .placeholder-icon-right-side:before{content:\"\";display:block;height:15px;width:1px;border-radius:3px;position:absolute;right:22px;top:55%;transform:translateY(-50%);background-color:#91919166}.input-custom-group .placeholder-icon-right-side.focus:before{background-color:#ccc6}.input-custom-group .placeholder-icon-right-side.valid-focus-out:before{background-color:#6f9ee066}.input-custom-group .placeholder-icon-right-side.valid-focus-in:before{background-color:#c5d8f3}.input-custom-group .placeholder-icon-right-side.invalid-focus-out:before{background-color:#e5737366}.input-custom-group .placeholder-icon-right-side.invalid-focus-in:before{background-color:#f5c7c7}.input-fixed-placehoder-label{color:#919191;position:absolute;right:0;font-size:14px;top:3px}.input-fixed-placehoder-input{padding-right:25px!important}.input-border-radius{border-radius:8px!important}.hide-input-value{text-indent:-9999px}.payroll-deduction-truck-svg{line-height:16px}.payroll-deduction-truck-svg svg{width:46px;height:16px}.payroll-deduction-truck{display:grid!important;grid-template-columns:305px 92px!important}\n"] }]
308
+ ], schemas: [CUSTOM_ELEMENTS_SCHEMA], providers: [InputStateService, CalendarDateTimePickerService], template: "<div\n class=\"input-custom-group {{ inputConfig.customClass }}\"\n [ngClass]=\"\n getSuperControl\n | inputContainerClass\n : isFocusInput\n : isTouchedInput\n : inputConfig\n : getSuperControl?.value\n \"\n ngbTooltip\n [mainCaTooltip]=\"getSuperControl?.errors | inputError: inputConfig.name\"\n [tooltipBackground]=\"'#DF3C3C'\"\n [disableTooltip]=\"!inputConfig.requiredLabel || !!superControl.valid\"\n position=\"bottom\"\n triggers=\"hover\"\n>\n <!-- Input Commands -->\n <ng-container *ngIf=\"inputConfig.commands?.active && isVisibleCommands\">\n <app-ca-input-commands\n [inputConfig]=\"inputConfig\"\n [isFocusInput]=\"isFocusInput\"\n [isVisibleCommands]=\"isVisibleCommands\"\n (onCommandsClick)=\"onCommands($event)\"\n >\n </app-ca-input-commands>\n </ng-container>\n\n <!-- DateTime Picker -->\n <ng-container\n *ngIf=\"\n (inputConfig.name === 'datepicker' ||\n inputConfig.name === 'timepicker') &&\n !inputConfig.isDisabled\n \"\n >\n <app-ca-input-datetime-picker\n [showDateInput]=\"showDateInput\"\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isVisibleCommands]=\"isVisibleCommands\"\n [isTouchedInput]=\"isTouchedInput\"\n (selectLastOneForSelectionEmitter)=\"selectLastOneForSelection()\"\n (selectLastOneAfterMouseUpEmitter)=\"selectLastOneAfterMouseUp()\"\n (onDatePasteEmitter)=\"onDatePaste($event)\"\n (onBlurEmitter)=\"onBlur()\"\n (changeSelectionEmmiter)=\"changeSelection($event)\"\n (onFocusEmitter)=\"onFocus($event)\"\n (setSelectionEmmiter)=\"setSelection($event)\"\n >\n </app-ca-input-datetime-picker>\n </ng-container>\n\n <!-- Input Label -->\n <ng-container *ngIf=\"!inputConfig.multiSelectDropdownActive\">\n <label\n [for]=\"inputConfig.name\"\n class=\"input-label {{ inputConfig.customClass }} {{\n inputConfig.multipleLabel?.customClass\n }}\"\n [ngClass]=\"\n getSuperControl?.value | labelClass: isFocusInput : inputConfig\n : isTouchedInput : getSuperControl?.invalid\n : getSuperControl?.touched\n \"\n >\n <ng-container *ngIf=\"inputConfig.label\">\n <span>{{ inputConfig.label }} </span>\n </ng-container>\n <ng-container *ngIf=\"inputConfig.multipleLabel?.labels?.length\">\n <div\n [class]=\"inputConfig.multipleLabel?.customClass!\"\n [ngClass]=\"{\n 'multiple-labels-position-on-focus':\n isFocusInput ||\n inputConfig.multipleInputValues?.options?.length,\n required: inputConfig.isRequired && !inputConfig.isDisabled\n }\"\n >\n <span *ngFor=\"let label of inputConfig.multipleLabel?.labels\">\n {{ label }}\n </span>\n </div>\n </ng-container>\n </label>\n </ng-container>\n\n <!-- Input Clear -->\n <ng-container *ngIf=\"inputConfig | showClear\">\n <app-ca-input-clear\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [incorrectValue]=\"incorrectValue\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [template]=\"template\"\n (clearInputClick)=\"clearInput($event)\"\n >\n </app-ca-input-clear>\n </ng-container>\n\n <!-- Input Clear for dispatch dropdown -->\n <ng-container *ngIf=\"template === 'svgtext-dispatch-template'\">\n <div\n class=\"input-clear-dispatch\"\n position=\"top\"\n (click)=\"clearInput($event)\"\n >\n <svg-icon\n [src]=\"inputSvgRoutes.xClearCommonSvg\"\n class=\"input-clear-dispatch-icon\"\n ></svg-icon>\n </div>\n </ng-container>\n\n <!-- Input Pen -->\n <ng-container\n *ngIf=\"\n selectedDropdownLabelColor &&\n !isEditInput &&\n !isFocusInput &&\n getSuperControl?.value\n \"\n >\n <div\n class=\"input-pen-container\"\n ngbTooltip\n [mainCaTooltip]=\"'Edit'\"\n [tooltipBackground]=\"'#2F2F2F'\"\n position=\"top\"\n (click)=\"onEditInput($event)\"\n >\n <svg-icon [src]=\"inputSvgRoutes.inputPenSvg\" class=\"input-pen\"></svg-icon>\n </div>\n </ng-container>\n\n <!-- Input Invalid Danger Mark -->\n <ng-container\n *ngIf=\"\n inputConfig\n | showInvalidDangerMark\n : getSuperControl\n : isFocusInput\n : isTouchedInput\n : getSuperControl?.value\n \"\n >\n <svg-icon\n class=\"input-invalid-danger-mark {{ inputConfig.customClass }}\"\n [src]=\"inputSvgRoutes.dangerSvg\"\n >\n </svg-icon>\n </ng-container>\n\n <!-- Input Valid Check -->\n <ng-container\n *ngIf=\"\n getSuperControl\n | showValidCheck: isFocusInput : inputConfig : getSuperControl?.value\n \"\n >\n <svg-icon\n class=\"input-required-check {{ inputConfig.customClass }}\"\n [src]=\"inputSvgRoutes.confirmSvg\"\n ></svg-icon>\n </ng-container>\n\n <!-- Input Password Caps Lock And Eye -->\n <ng-container *ngIf=\"inputConfig.type === 'password'\">\n <app-ca-input-password\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [isCapsLockOn]=\"isCapsLockOn\"\n [isTogglePassword]=\"isTogglePassword\"\n (onTogglePasswordClick)=\"onTogglePassword($event)\"\n >\n </app-ca-input-password>\n </ng-container>\n\n <!-- Input Dropdown Arrow -->\n <ng-container *ngIf=\"inputConfig | showDropdownArrow\">\n <svg-icon\n class=\"input-dropdown-arrow {{ inputConfig.customClass }}\"\n [ngClass]=\"\n getSuperControl\n | inputDropdownArrowClass\n : isFocusInput\n : inputConfig\n : isTouchedInput\n : getSuperControl?.value\n \"\n [src]=\"inputSvgRoutes.inputDropdownArrowSvg\"\n (click)=\"toggleDropdownOptions()\"\n ></svg-icon>\n </ng-container>\n\n <!-- Input Placeholder Icon -->\n <ng-container \n *ngIf=\"\n inputConfig.placeholderIcon ||\n inputConfig.name === 'datepicker' ||\n inputConfig.name === 'timepicker'\n \"\n >\n <app-ca-input-placeholder-icon\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n [isEditInput]=\"isEditInput\"\n [dateTimePopover]=\"dateTimePopover\"\n (onPopoverShownEmitter)=\"onPopoverShown()\"\n (onPopoverHiddenEmitter)=\"onPopoverHidden()\"\n (onPlaceholderIconEventEmitter)=\"onPlaceholderIconEvent($event)\"\n >\n </app-ca-input-placeholder-icon>\n </ng-container>\n\n <!-- Input Placeholder Text -->\n <ng-container\n *ngIf=\"\n inputConfig | showPlaceholderText : getSuperControl : \n isVisibleCommands : getSuperControl?.value\n \"\n >\n <span\n class=\"ca-placeholder-text {{ inputConfig.customClass }}\"\n [ngClass]=\" \n isFocusInput | inputPlaceholderTextClass\n : isTouchedInput : getSuperControl : inputConfig\n : isVisibleCommands : getSuperControl?.value\n \"\n [style.left]=\"\n inputConfig.placeholderText?.toLowerCase() === inputStringEnum.PERSONS ||\n inputConfig.placeholderText?.toLowerCase() === inputStringEnum.VEHICLES\n ? 30 +\n (getSuperControl?.value?.toString()?.length + 1) * 9 +\n 'px'\n : isFocusInput &&\n inputConfig.placeholderText?.toLowerCase() !== inputCommandsType.MONTHS\n ? 'auto'\n : (getSuperControl?.value?.toString()?.length + 1) * 8 + 'px'\n \"\n [style.right]=\"\n isFocusInput &&\n inputConfig.placeholderText?.toLowerCase() !== inputCommandsType.MONTHS\n ? '28px'\n : 'auto'\n \"\n >\n {{ inputConfig.placeholderText }}\n </span>\n </ng-container>\n \n <!-- Input Label Counter -->\n <ng-container\n *ngIf=\"\n selectedDropdownLabelColor &&\n getSuperControl?.value &&\n !isFocusInput &&\n !inputConfig.isDisabled &&\n inputConfig.showCount\n \"\n >\n <p\n [style.top]=\"'4px'\"\n [style.left]=\"\n (getSuperControl?.value?.toString()?.length + 6.5) * 8 + 'px'\n \"\n class=\"input-label-counter\"\n >\n {{ selectedDropdownLabelColor.count }}\n </p>\n </ng-container>\n\n <!-- Special Dropdown Selected SVG with or Without Text -->\n <ng-container\n *ngIf=\"\n inputConfig?.dropdownImageInput?.svg &&\n !inputConfig?.hideAllItemsInInputDropdown &&\n !(!inputConfig.dropdownImageInput?.withText && isFocusInput) &&\n !(\n ['truck', 'trailer'].includes(\n inputConfig.dropdownImageInput?.template!\n ) &&\n isFocusInput &&\n inputConfig.dropdownImageInput?.remove\n ) &&\n !inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl\n \"\n >\n <svg-icon\n [src]=\"inputConfig.dropdownImageInput?.url!\"\n class=\"dropdown-selected-image {{\n inputConfig.dropdownImageInput?.class\n }}\"\n [ngClass]=\"{\n 'unset-color': isFocusInput && inputConfig.dropdownImageInput?.class\n }\"\n [svgStyle]=\"{\n fill:\n inputConfig.dropdownImageInput?.color && !isFocusInput\n ? inputConfig.dropdownImageInput?.color\n : '#ffffff'\n }\"\n >\n </svg-icon>\n </ng-container>\n\n <!-- Special Dropdown Selected Image With Text With Initials name -->\n <ng-container\n *ngIf=\"\n inputConfig?.dropdownImageInput?.image &&\n !inputConfig?.hideAllItemsInInputDropdown &&\n inputConfig?.dropdownImageInput?.url &&\n !inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl\n \"\n >\n <img\n class=\"dropdown-selected-image name-initials-instead-url\"\n [src]=\"inputConfig.dropdownImageInput?.url\"\n [alt]=\"'Input Image'\"\n />\n </ng-container>\n <ng-container\n *ngIf=\"\n inputConfig?.dropdownImageInput?.nameInitialsInsteadUrl &&\n !inputConfig?.hideAllItemsInInputDropdown &&\n !(!inputConfig.dropdownImageInput?.withText && isFocusInput)\n \"\n >\n <div\n class=\"no-profile-image dropdown-selected-image name-initials-instead-url\"\n >\n <app-ca-profile-image\n [indx]=\"0\"\n [size]=\"'small'\"\n [type]=\"'user'\"\n [name]=\"inputConfig.dropdownImageInput?.nameInitialsInsteadUrl!\"\n >\n </app-ca-profile-image>\n </div>\n </ng-container>\n\n <!-- Multiple Input Values -->\n <ng-container\n *ngIf=\"\n inputConfig?.multipleInputValues?.options?.length && !isFocusInput\n \"\n >\n <div\n class=\"input-control {{\n inputConfig.multipleInputValues?.customClass\n }}\"\n (click)=\"toggleDropdownOptions()\"\n >\n <span\n style=\"display: flex; gap: 6px; align-items: center\"\n *ngFor=\"\n let item of inputConfig.multipleInputValues?.options;\n let indx = index;\n trackBy: trackIdentity\n \"\n >\n <!-- Image / SVG -->\n <ng-container *ngIf=\"item?.logoName && item?.isImg\">\n <span>\n <ng-container *ngIf=\"item?.logoName !== 'no-url'\">\n <img\n [ngStyle]=\"{\n width: '18px',\n 'aspect-ratio': 1,\n 'border-radis': '2px'\n }\"\n [src]=\"item.logoName\"\n [alt]=\"item.value\"\n />\n </ng-container>\n <ng-container *ngIf=\"item.logoName === 'no-url'\">\n <div class=\"no-profile-image\">\n <app-ca-profile-image\n [indx]=\"0\"\n [size]=\"'small'\"\n [name]=\"item.value\"\n ></app-ca-profile-image>\n </div>\n </ng-container>\n \n <!-- Owner Flag -->\n <ng-container *ngIf=\"item?.isOwner\">\n <div class=\"load-dispatches-ttd-owner\">\n <svg-icon\n [src]=\"inputSvgRoutes.ownerBadgeBlueSvg\"\n ></svg-icon>\n </div>\n </ng-container>\n </span>\n </ng-container>\n \n <ng-container *ngIf=\"item?.logoName && item?.isSvg\">\n <svg-icon\n [ngClass]=\"{\n 'payroll-deduction-truck-svg': template === dropdownTemplateTypeEnum.PAYROLL_TRUCKS\n }\"\n class=\"{{ item?.subFolder }}\"\n [src]=\"item?.logoName!\"\n ></svg-icon>\n </ng-container>\n \n <!-- Text -->\n <ng-container *ngIf=\"!item?.isProgressBar\">\n <span\n class=\"multiple-input-text\"\n [ngStyle]=\"{\n color: '#2F2F2F'\n }\"\n [ngClass]=\"{\n counter: item?.isCounter,\n 'counter-one': item?.value === 1\n }\"\n >\n {{ item.value }}\n <ng-container *ngIf=\"item?.second_value\">\n <span\n [ngStyle]=\"{ color: '#919191' }\"\n >{{ item.second_value }}\n </span>\n </ng-container>\n </span>\n </ng-container>\n \n <!-- Load Broker ProgressBar -->\n <ng-container *ngIf=\"item?.isProgressBar\">\n <ca-load-modal-progress-bar\n [totalAmount]=\"item.second_value!\"\n [availableCredit]=\"item.value ? item.value : 0\"\n ></ca-load-modal-progress-bar>\n </ng-container>\n </span>\n </div>\n \n </ng-container>\n\n <!-- Multiple Input Placeholder -->\n <ng-container\n *ngIf=\"\n inputConfig?.multipleInputValues?.options?.length &&\n isFocusInput &&\n !getSuperControl?.value\n \"\n >\n <div\n class=\"input-control multiple-input-placeholder {{\n inputConfig.multipleInputValues?.customClass\n }}\"\n [ngClass]=\"{ \n focus: isFocusInput,\n 'payroll-deduction-truck': template === dropdownTemplateTypeEnum.PAYROLL_TRUCKS\n }\"\n >\n <span\n style=\"display: flex; gap: 6px; align-items: center\"\n *ngFor=\"\n let item of inputConfig.multipleInputValues?.options;\n let indx = index;\n trackBy: trackIdentity\n \"\n >\n <!-- Image / SVG -->\n <ng-container *ngIf=\"item?.logoName && item?.isImg\">\n <span\n [ngClass]=\"{ 'focusable-image': isFocusInput }\"\n >\n <ng-container *ngIf=\"item?.logoName !== 'no-url'\">\n <img\n [ngStyle]=\"{\n width: '18px',\n 'aspect-ratio': 1,\n 'border-radis': '2px'\n }\"\n [src]=\"item.logoName\"\n [alt]=\"item.value\"\n />\n </ng-container>\n <ng-container *ngIf=\"item.logoName === 'no-url'\">\n <div class=\"no-profile-image\">\n <app-ca-profile-image\n [indx]=\"0\"\n [size]=\"'small'\"\n [name]=\"item.value!\"\n ></app-ca-profile-image>\n </div>\n </ng-container>\n </span>\n </ng-container>\n \n <ng-container *ngIf=\"item?.logoName && item?.isSvg\">\n <svg-icon\n [ngClass]=\"{ \n 'focusable-svg': isFocusInput,\n 'payroll-deduction-truck-svg': template === dropdownTemplateTypeEnum.PAYROLL_TRUCKS\n }\"\n class=\"{{ item?.subFolder }} {{\n item?.logoType?.trim()?.replace(' ', '')?.toLowerCase()\n }}\"\n [src]=\"item?.logoName!\"\n ></svg-icon>\n </ng-container>\n \n <!-- Text -->\n <ng-container *ngIf=\"!item?.isProgressBar\">\n <span\n class=\"multiple-input-text\"\n [ngClass]=\"{\n 'focusable-text': isFocusInput,\n counter: item?.isCounter,\n 'counter-focus': item?.isCounter && isFocusInput,\n 'counter-one': item?.value === 1,\n 'ca-add-dot': template === dropdownTemplateTypeEnum.LOAD_DISPATCHER\n }\"\n [ngStyle]=\"{\n color: '#6F9EE0'\n }\"\n >\n {{ item.value }}\n <ng-container *ngIf=\"item?.second_value\">\n <span>{{ item.second_value }}</span>\n </ng-container>\n </span>\n </ng-container>\n \n <!-- Load Broker ProgressBar -->\n <ng-container *ngIf=\"item?.isProgressBar\">\n <ca-load-modal-progress-bar\n [totalAmount]=\"item.second_value!\"\n [availableCredit]=\"item.value ? item.value : 0\"\n [inputFocus]=\"isFocusInput\"\n ></ca-load-modal-progress-bar>\n </ng-container>\n </span>\n </div>\n </ng-container>\n\n <input\n #input\n [type]=\"inputConfig.type | inputType: isTogglePassword\"\n [id]=\"inputConfig.id ? inputConfig.id : inputConfig.name\"\n [name]=\"inputConfig.name\"\n [disabled]=\"inputConfig.isDisabled!\"\n [autocomplete]=\"inputConfig.autocomplete ? inputConfig.autocomplete : 'off'\"\n [placeholder]=\"\n (inputConfig.placeholderInsteadOfLabel &&\n inputConfig.placeholder &&\n isFocusInput\n ? inputConfig.placeholder\n : '') ||\n (inputConfig.placeholder && isFocusInput ? inputConfig.placeholder : '')\n \"\n [minLength]=\"inputConfig.minLength ? inputConfig.minLength : 0\"\n [maxLength]=\"inputConfig.maxLength ? inputConfig.maxLength : 999\"\n [mask]=\"inputConfig.mask\"\n [min]=\"inputConfig.min ? inputConfig.min : 0\"\n [max]=\"inputConfig.max\"\n [step]=\"inputConfig.step ? inputConfig.step : null\"\n [readOnly]=\"inputConfig.readOnly\"\n appMinMaxValue\n [minValue]=\"inputConfig.min!\"\n [maxValue]=\"inputConfig.max!\"\n inputformat=\"dd-mm-yy\"\n class=\"input-control\n {{ inputConfig.textTransform }}\n {{ inputConfig.textAlign }}\n {{ inputConfig.customClass }}\n \"\n [ngClass]=\"\n getSuperControl\n | inputClass\n : isFocusInput\n : isTouchedInput\n : inputConfig\n : input\n : isVisibleCommands\n : getSuperControl?.value\n : getSuperControl?.invalid\n : getSuperControl?.touched\n : isDropdownToggler\n : isEditInput\n : template\n \"\n (keypress)=\"onKeyPress($event)\"\n (keydown)=\"onKeydown($event)\"\n (keyup)=\"onKeyup($event)\"\n (blur)=\"onBlur($event)\"\n (focus)=\"onFocus($event)\"\n (select)=\"selectionChange($event)\"\n (input)=\"onChange($any($event.target).value); transformText($event)\"\n [(ngModel)]=\"input.value\"\n [ngStyle]=\"\n inputConfig.statusStyle ? (input.value | loadStatusColor) : ''\n \"\n />\n\n <!-- Placeholder Icon on Right Side -->\n <ng-container *ngIf=\"inputConfig.placeholderIconRightSide\">\n <svg-icon\n class=\"placeholder-icon-right-side {{\n inputConfig.placeholderIconColor\n }}\"\n [ngClass]=\"\n isFocusInput\n | inputPlaceholderIconRightClass\n : getSuperControl\n : inputConfig\n : isTouchedInput\n : getSuperControl?.value\n \"\n [src]=\"\n inputConfig.placeholderIconRightSide.toLowerCase()\n | caSvg : 'common'\n \"\n ></svg-icon>\n </ng-container>\n\n <!-- Input Error Message -->\n <ng-container\n *ngIf=\"\n !(!getSuperControl?.value && isFocusInput) &&\n (isTouchedInput || getSuperControl?.touched || getSuperControl?.value) &&\n getSuperControl?.invalid &&\n !inputConfig.isInvalidSearchInDropdown &&\n !inputConfig.isDisabled\n \"\n >\n <ng-container *ngIf=\"!(inputConfig.hideErrorMessage || inputConfig.errorInsideInput)\">\n <span class=\"input-error {{ inputConfig.customClass }}\">\n {{ getSuperControl?.errors | inputError: inputConfig.name }}\n </span>\n </ng-container>\n\n <!-- Error Message Inside Input -->\n <ng-container *ngIf=\"inputConfig.errorInsideInput\">\n <span class=\"error-inside-input {{ inputConfig.customClass }}\">\n {{ getSuperControl?.errors | inputError: inputConfig.name }}\n </span>\n </ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"inputConfig.fixedPlacholder && input.value\">\n <span class=\"input-fixed-placehoder-label\">\n {{ inputConfig.fixedPlacholder }}\n </span>\n </ng-container>\n</div>\n\n<!-- Popover for DateTime Pickers -->\n<ng-template #dateTimePopover let-data=\"data\">\n <div class=\"datetime-dropdown-holder\">\n <app-ca-custom-datetime-pickers\n [calendarType]=\"\n inputConfig.name === 'datepicker' ||\n inputConfig.name === 'datepickerBankCard'\n ? 'date'\n : 'time'\n \"\n [inputConfig]=\"inputConfig\"\n [placeholder]=\"'MM/DD/YY'\"\n [dateTime]=\"dateTimeInputDate\"\n (closePopover)=\"closePopover()\"\n ></app-ca-custom-datetime-pickers>\n </div>\n</ng-template>", styles: ["@charset \"UTF-8\";@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.ca-font-thin{font-weight:100!important}.ca-font-extra-light{font-weight:200!important}.ca-font-light{font-weight:300!important}.ca-font-regular{font-weight:400!important}.ca-font-medium{font-weight:500!important}.ca-font-semi-bold{font-weight:600!important}.ca-font-bold{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black{font-weight:900!important}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.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 .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::-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:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option{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.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#fff;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#fff;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.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.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active:not(.payroll-trucks):after,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:not(.payroll-trucks):after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#ccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ca-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:-webkit-max-content!important;width:-moz-max-content!important;width:max-content!important;padding:0!important;margin:0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;-moz-column-gap:29px;column-gap:29px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ca-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ca-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ca-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ca-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ca-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ca-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ca-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ca-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ca-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ca-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ca-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ca-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ca-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ca-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ca-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ca-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ca-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ca-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ca-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ca-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ca-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ca-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ca-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ca-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ca-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ca-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ca-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ca-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ca-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ca-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ca-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ca-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ca-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ca-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ca-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ca-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ca-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ca-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ca-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ca-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ca-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ca-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ca-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ca-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ca-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ca-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ca-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ca-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ca-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ca-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ca-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ca-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ca-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ca-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ca-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ca-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ca-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ca-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ca-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ca-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ca-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ca-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ca-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ca-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ca-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ca-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ca-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ca-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ca-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ca-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ca-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ca-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ca-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ca-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ca-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ca-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ca-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ca-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ca-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ca-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ca-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ca-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ca-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ca-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ca-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ca-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ca-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ca-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ca-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ca-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ca-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ca-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ca-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ca-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ca-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ca-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ca-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ca-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ca-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ca-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ca-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ca-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ca-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ca-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ca-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ca-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ca-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ca-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ca-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ca-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ca-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ca-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ca-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ca-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ca-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ca-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ca-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ca-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ca-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ca-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ca-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ca-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ca-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ca-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ca-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ca-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ca-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ca-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ca-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ca-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ca-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ca-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ca-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ca-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ca-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ca-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ca-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ca-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ca-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ca-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ca-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ca-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ca-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ca-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ca-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ca-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ca-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ca-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ca-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ca-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ca-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ca-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ca-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ca-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ca-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ca-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ca-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ca-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ca-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ca-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ca-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ca-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ca-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ca-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ca-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ca-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ca-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ca-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ca-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ca-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ca-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ca-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ca-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ca-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ca-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ca-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ca-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ca-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ca-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ca-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ca-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ca-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ca-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ca-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ca-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ca-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ca-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ca-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ca-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ca-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ca-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ca-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ca-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ca-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ca-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ca-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ca-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ca-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ca-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ca-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ca-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ca-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ca-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ca-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ca-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ca-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ca-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ca-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ca-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ca-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ca-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ca-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ca-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ca-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ca-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ca-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ca-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ca-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ca-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ca-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ca-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ca-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ca-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ca-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ca-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ca-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ca-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ca-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ca-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ca-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ca-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ca-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ca-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ca-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ca-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ca-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ca-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ca-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ca-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ca-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ca-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ca-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ca-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ca-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ca-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ca-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ca-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ca-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ca-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ca-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ca-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ca-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ca-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ca-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ca-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ca-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ca-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ca-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ca-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ca-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ca-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ca-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ca-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ca-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ca-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ca-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ca-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ca-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ca-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ca-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ca-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ca-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ca-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ca-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ca-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ca-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ca-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ca-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ca-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ca-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ca-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ca-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ca-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ca-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ca-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ca-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ca-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ca-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ca-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ca-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ca-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ca-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ca-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ca-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ca-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ca-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ca-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ca-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ca-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ca-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ca-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ca-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ca-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ca-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ca-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ca-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ca-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ca-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ca-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ca-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ca-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ca-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ca-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ca-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ca-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ca-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ca-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ca-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ca-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ca-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ca-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ca-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ca-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ca-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ca-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ca-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ca-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ca-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ca-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ca-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ca-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ca-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ca-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ca-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ca-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ca-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ca-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ca-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ca-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ca-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ca-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ca-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ca-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ca-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ca-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ca-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ca-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ca-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ca-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ca-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ca-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ca-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ca-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ca-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ca-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ca-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ca-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ca-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ca-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ca-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ca-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ca-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ca-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ca-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ca-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ca-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ca-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ca-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ca-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ca-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ca-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ca-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ca-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ca-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ca-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ca-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ca-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ca-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ca-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ca-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ca-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ca-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ca-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ca-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ca-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ca-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ca-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ca-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ca-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ca-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ca-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ca-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ca-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ca-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ca-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ca-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ca-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ca-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ca-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ca-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ca-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ca-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ca-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ca-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ca-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ca-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ca-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ca-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ca-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ca-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ca-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ca-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ca-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ca-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ca-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ca-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ca-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ca-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ca-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ca-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ca-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ca-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ca-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ca-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ca-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ca-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ca-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ca-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ca-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ca-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ca-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ca-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ca-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ca-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ca-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ca-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ca-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ca-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ca-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ca-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ca-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ca-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ca-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ca-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ca-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ca-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ca-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ca-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ca-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ca-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ca-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ca-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ca-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ca-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ca-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ca-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ca-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ca-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ca-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ca-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ca-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ca-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ca-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ca-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ca-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ca-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ca-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ca-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ca-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ca-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ca-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ca-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ca-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ca-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ca-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ca-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ca-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ca-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ca-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ca-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ca-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ca-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ca-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ca-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ca-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ca-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ca-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ca-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ca-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ca-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ca-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ca-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ca-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ca-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ca-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ca-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ca-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ca-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ca-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ca-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ca-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ca-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ca-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ca-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ca-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ca-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ca-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ca-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ca-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ca-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ca-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ca-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ca-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ca-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ca-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ca-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ca-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ca-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ca-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ca-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ca-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ca-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ca-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ca-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ca-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ca-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ca-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ca-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ca-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ca-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ca-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ca-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ca-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ca-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ca-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ca-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ca-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ca-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ca-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ca-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ca-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ca-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ca-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ca-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ca-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ca-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ca-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ca-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ca-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ca-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ca-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ca-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ca-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ca-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ca-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ca-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ca-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ca-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ca-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ca-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ca-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ca-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ca-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ca-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ca-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ca-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ca-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ca-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ca-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ca-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ca-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ca-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ca-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ca-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ca-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ca-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ca-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ca-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ca-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ca-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ca-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ca-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ca-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ca-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ca-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ca-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ca-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ca-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ca-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ca-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ca-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ca-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ca-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ca-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ca-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ca-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ca-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ca-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ca-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ca-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ca-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ca-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ca-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ca-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ca-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ca-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ca-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ca-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ca-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ca-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ca-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ca-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ca-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ca-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ca-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ca-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ca-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ca-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ca-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ca-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ca-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ca-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ca-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ca-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ca-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ca-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ca-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ca-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ca-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ca-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ca-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ca-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ca-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ca-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ca-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ca-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ca-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ca-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ca-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ca-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ca-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ca-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ca-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ca-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ca-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ca-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ca-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ca-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ca-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ca-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ca-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ca-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ca-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ca-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ca-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ca-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ca-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ca-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ca-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ca-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ca-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ca-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ca-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ca-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ca-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ca-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ca-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ca-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ca-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ca-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ca-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ca-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ca-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ca-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ca-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ca-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ca-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ca-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ca-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ca-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ca-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ca-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ca-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ca-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ca-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ca-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ca-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ca-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ca-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ca-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ca-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ca-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ca-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ca-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ca-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ca-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ca-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ca-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ca-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ca-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ca-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ca-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ca-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ca-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ca-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ca-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ca-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ca-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ca-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ca-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ca-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ca-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ca-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ca-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ca-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ca-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ca-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ca-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ca-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ca-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ca-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ca-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ca-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ca-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ca-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ca-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ca-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ca-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ca-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ca-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ca-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ca-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ca-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ca-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ca-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ca-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ca-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ca-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ca-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ca-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ca-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ca-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ca-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ca-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ca-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ca-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ca-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ca-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ca-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ca-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ca-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ca-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ca-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ca-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ca-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ca-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ca-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ca-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ca-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ca-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ca-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ca-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ca-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ca-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ca-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ca-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ca-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ca-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ca-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ca-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ca-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ca-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ca-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ca-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ca-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ca-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ca-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ca-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ca-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ca-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ca-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ca-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ca-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ca-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ca-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ca-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ca-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ca-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ca-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ca-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ca-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ca-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ca-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ca-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ca-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ca-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ca-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ca-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::-moz-selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;content:url(/assets/ca-components/svg/input/ic_confirm.svg);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{background-color:#3b73ed33;color:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::-moz-selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.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}.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;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}.tooltip-arrow{display:none!important}p{margin-bottom:0!important}.desc::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.desc::selection{color:#6c6c6c;background:#6c6c6c33}.details-container-items{display:grid;grid-template-columns:440px repeat(4,335px);-moz-column-gap:12px;column-gap:12px;row-gap:12px;padding-bottom:12px}.details-component{display:grid;grid-auto-flow:column;column-gap:12px;row-gap:12px}.details-component .truck-wrapper{background-color:#fff;border-radius:3px;margin-bottom:8px;width:440px;height:226px}.details-component .truck-wrapper p{margin:0}.details-component .truck-wrapper .truck-card-top{display:flex;align-items:center;justify-content:space-between}.details-component .truck-wrapper .truck-card-top .truck-card-name{color:#6c6c6c;font-size:18px;font-weight:500;position:relative;top:1px}.details-component .truck-wrapper .truck-card-top .truck-card-name::-moz-selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .truck-card-top .truck-card-name::selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .details-page-row-5{margin-top:8px}.details-component .truck-wrapper .details-page-row-7{height:236px;width:100%;margin:22px 0}.details-component .truck-wrapper .show-details{font-size:12px;font-weight:700;color:#778fbb;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.details-component .truck-wrapper .show-details:hover{transition:all .3s ease-in-out;cursor:pointer;text-decoration:underline;color:#5673aa}.details-component .details-cards{border-radius:3px;overflow:hidden;width:440px;background-color:#fff;padding:1px 8px 0}.details-component .details-cards.trailer-details-card{padding:0 8px}.assign-to{position:relative;left:-3px;display:grid;grid-template-columns:204px 204px;column-gap:12px;padding:0}.assign-to .assign-to-vehicle svg{width:55px;height:20px;display:flex;align-items:center}.assign-to .assign-to-vehicle svg:hover path{fill:#6c6c6c!important}.assign-to .assign-to-vehicle svg path{fill:#aaa}.assign-to .first .assign-to-vehicle svg{display:flex;align-items:center}.assign-to .first:hover .open-modal-icon{display:block;position:relative;bottom:4px;height:18px;width:18px}.assign-to .first:hover .open-modal-icon svg{cursor:pointer}.assign-to .first:hover .open-modal-icon svg:hover path{fill:#6c6c6c}.assign-to .second .icon-text-wrapper-cmp{position:relative;top:1px}.assign-to .second .assign-to-vehicle svg{display:flex}.assign-to .second:hover .open-modal-icon2{display:block;height:18px;width:18px;position:relative;bottom:4px}.assign-to .second:hover .open-modal-icon2 svg{cursor:pointer}.assign-to .second:hover .open-modal-icon2 svg:hover path{fill:#6c6c6c}.assign-to .assign-to-item{background-color:#f7f7f7;border-radius:2px;display:flex;align-items:center}.assign-to .assign-to-item .icon-text-wrapper-cmp{display:flex;align-items:center;padding-left:6px;margin:7px 0}.assign-to .assign-to-item .semi-tooltip{width:40px;height:20px}.assign-to .assign-to-item .semi-tooltip.typeDetails{width:auto}.assign-to .assign-to-item svg{fill:#aaa;object-fit:fill;height:20px;width:55px}.assign-to .assign-to-item .open-modal-icon,.assign-to .assign-to-item .open-modal-icon2{display:none}.assign-to .assign-to-item .assign-to-vehicle{margin-right:6px;position:relative;bottom:0}.assign-to .assign-to-item .assign-to-vehicle.backImage{margin-right:0}.assign-to .assign-to-item .assign-to-value{font-size:14px;font-weight:500;color:#424242;line-height:18px;padding:4px 6px}.assign-to .assign-to-item .assign-to-value::-moz-selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value::selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value.inactive-assignTo-value{color:#aaa;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.assign-to .assign-to-item p{margin:0!important}.card-container .card-body-cdl{display:grid;padding:0 4px}.card-container .card-body-cdl .card-item-name{font-size:11px;color:#2f2f2f;font-weight:700;height:15px;margin-bottom:2px}.card-container .card-body-cdl .card-item-name::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-name::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap;height:18px}.card-container .card-body-cdl .card-item-value::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value:hover{color:#2f2f2f}.card-container .card-body-cdl .card-row-issued{display:grid;grid-template-columns:32px 32px 32px;column-gap:49px;margin-top:12px}.card-container .card-body-cdl .card-row-endor{display:grid;grid-template-columns:repeat(auto-fit,minmax(20%,1fr));gap:6px;margin-bottom:4px}.card-container .card-body-cdl .card-row-progress{margin-top:8px}.card-container .card-body-cdl .endorsement{margin-top:12px}.perfomance{display:flex!important;flex-direction:column}.perfomance .common-template-item-name{font-size:14px!important;font-weight:600!important}.perfomance .common-template-item-value{font-size:18px!important;font-weight:600!important}.card-pdf{padding:0 5px;margin-bottom:12px}.card-pdf.extended{margin-bottom:30px}.card-pdf.disabled{height:0!important;margin:0!important;padding:0!important}.status-container{padding-top:12px;display:flex;flex-direction:column;margin-bottom:-12px!important}.status-container .status-header{display:flex;justify-content:space-between;align-items:center}.status-container .status-header .status-item{height:18px}.status-container .status-header .status-item .p-status{font-size:14px;font-weight:700;color:#2f2f2f}.status-container .status-header .status-item .p-status::-moz-selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status::selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status .note-textarea{color:#6c6c6c!important;font-weight:500!important}.status-container .status-header .status-item .p-status .note-textarea::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::-moz-selection,.status-container .status-header .status-item .p-status .note-textarea div::-moz-selection,.status-container .status-header .status-item .p-status .note-textarea b::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::selection,.status-container .status-header .status-item .p-status .note-textarea div::selection,.status-container .status-header .status-item .p-status .note-textarea b::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::-moz-selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::-moz-selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::-moz-selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::-moz-selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::-moz-selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::-moz-selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-items .item-wrapper{display:grid;grid-template-columns:119px 137px 78px;grid-column-gap:45px;align-content:center;justify-content:center}.status-container .status-items .item-wrapper .svg-text{display:flex;align-items:center}.status-container .status-items .item-wrapper .svg-text .employment{margin-left:6px;position:relative;bottom:-2px}.status-container .status-items .item-wrapper .duration{text-align:right}.status-container .status-items .item-wrapper p{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap}.status-container .status-items .item-wrapper p::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::selection{color:#6c6c6c;background:#6c6c6c33}.charts-template{display:grid;grid-template-columns:215px 1fr;grid-row-gap:12px;row-gap:12px;margin-bottom:12px}.charts-template .charts-template-item{display:flex;flex-direction:column}.charts-template .charts-template-item .icon-name-item{display:flex;align-items:baseline;height:18px}.charts-template .charts-template-item .icon-name-item .charts-template-item-name{margin-right:4px}.charts-template .charts-template-item .charts-template-item-name{font-size:11px;color:#424242;font-weight:700;line-height:14px}.charts-template .charts-template-item .charts-template-item-name::-moz-selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value{font-size:18px;font-weight:500;color:#424242;width:220px}.charts-template .charts-template-item .charts-template-item-value::-moz-selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::-moz-selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.second-progress{margin-bottom:16px}.truck-details-wrapper{padding:0 12px}.truck-details-wrapper .truck svg{width:132px;height:48px}.truck-details-wrapper .details-header-avatar{display:flex;align-items:center;height:48px;margin-top:14px}.truck-details-wrapper .details-header-avatar .model-name{flex-direction:column;margin-left:12px;margin-top:12px}.truck-details-wrapper .details-header-avatar .model-name p{font-size:18px;font-weight:500;color:#2f2f2f}.truck-details-wrapper .details-header-avatar .model-name p::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name p::selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name .svg-wrapper{height:14px;display:flex;align-items:flex-end;margin-bottom:2px}.truck-details-wrapper .details-header-avatar .model-name svg path{fill:#424242;object-fit:fill}.truck-details-wrapper .details-header-avatar .model-name svg rect{fill:#aaa}.truck-details-wrapper .details-header-data{margin-top:14px}.truck-details-wrapper .details-header-data .details-header-data-item{display:flex;height:18px;align-items:center}.truck-details-wrapper .details-header-data .details-header-data-item p{font-size:18px;color:#2f2f2f;font-weight:400}.truck-details-wrapper .details-header-data .details-header-data-item .header-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .details-header-data .second{margin-top:14px;margin-bottom:14px}.truck-details-wrapper .details-header-data .second p{font-size:14px!important;color:#2f2f2f;font-weight:400;position:relative;bottom:-1px}.truck-details-wrapper .details-header-data .second .date{margin-left:8px!important;position:relative}.truck-details-wrapper .color-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .vin-text{margin-left:6px!important;margin-right:37px;position:relative;bottom:-1px!important}.common-template{display:grid;grid-template-columns:202px 1fr;row-gap:12px}.common-template .common-item-wrapper{display:flex;align-items:center;height:40px}.common-template .common-template-item{display:flex;flex-direction:column}.common-template .common-template-item::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item::selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item .icon-name-item{display:flex;align-items:center;height:18px}.common-template .common-template-item .icon-name-item .common-template-item-name{margin-left:6px}.common-template .common-template-item .common-template-item-name{font-size:11px;font-weight:600;color:#424242}.common-template .common-template-item .common-template-item-name::-moz-selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value{font-size:14px;font-weight:500;color:#424242;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.common-template .common-template-item .common-template-item-value::-moz-selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::-moz-selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.divider{margin:0;height:2px;width:100%;border-radius:1px;background-color:#f3f3f3}.card_files_holder.active{min-height:448px}.note-cards .note-body{padding-left:0!important;padding-right:2px!important}.note-cards .note-body .note-textarea{color:#6c6c6c!important;font-weight:400!important;padding-bottom:12px!important}.note-cards .note-body .note-textarea::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.note-cards .note-body .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::selection{color:#6c6c6c;background:#6c6c6c33}.no-data-driver-details{font-size:14px;font-weight:400;color:#919191}.no-data-driver-details::-moz-selection{color:#919191;background:#b7b7b733}.no-data-driver-details::selection{color:#919191;background:#b7b7b733}.owner-items{display:flex;align-items:center;height:18px}.owner-items .card-icon{display:none;cursor:pointer;margin-left:6px}.owner-items .information-value{font-size:14px;font-weight:400;color:#6c6c6c;margin-left:6px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.owner-items .information-value::-moz-selection{color:#6c6c6c;background:#6c6c6c33}.owner-items .information-value::selection{color:#6c6c6c;background:#6c6c6c33}.owner-items:hover .card-icon{display:flex}.copied .vin-text,.copied .information-value{animation-duration:1.5s;animation-name:change}.copied .card-icon svg path{animation-duration:1.5s;animation-name:changeSVG}.copied .card-icon svg path:hover{animation-duration:1.5s;animation-name:changeSVG}.hide-show{font-size:14px;color:#6d82c7;font-weight:600;margin-left:6px;cursor:pointer}.hide-show::-moz-selection{color:#6d82c7;background:#536bc233}.hide-show::selection{color:#6d82c7;background:#536bc233}.hide-show:hover{color:#536bc2}.bind-height{max-height:fit-content!important}.card-width{width:335px}.icons-details{margin-right:6px}.date-details-svg{margin-left:29px}.note-details-holder{padding-right:6px;padding-left:3px}.note-details-holder .note-container .note-header.active .note-label{color:#6c6c6c!important}.note-details-holder .note-container .note-header .note_upper_hold svg path{fill:#919191}.note-details-holder .note-container .note-header .note_upper_hold .rotate svg path{fill:#aaa}.boldSanVin{font-weight:800}@media (max-width: 1910px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,320px)}.card-width{width:320px}.repair-details-container,.repair-details-cmp{grid-template-columns:440px 712px 320px 260px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 145px!important}.repair-container{width:712px!important}.repaired-vehicle-container{width:320px!important}.likes-count-container{width:260px}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 50px 46px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 79px 52px 66px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 325px!important}.counter-text{padding:0 0 0 8px!important}.reason-span{display:none}app-shipper-details .load,app-broker-details .load{width:712px!important}app-shipper-details .contact,app-broker-details .contact{width:320px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:320px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:260px!important}app-shipper-details .review-container,app-broker-details .review-container{width:260px!important}}@media (max-width: 1870px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,300px)}.card-width{width:300px}}@media (max-width: 1850px){.repair-details-container,.repair-details-cmp{grid-template-columns:430px 702px 310px 250px!important}.repair-general-holder{width:430px}.repair-container{width:702px!important}.repaired-vehicle-container{width:310px!important}.likes-count-container{width:250px}.repair-component{height:max-content}.repair-component .repair-cards{width:430px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 37px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 40px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:430px!important}app-shipper-details .load,app-broker-details .load{width:702px!important}app-shipper-details .contact,app-broker-details .contact{width:310px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:310px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:250px!important}app-shipper-details .review-container,app-broker-details .review-container{width:250px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:407px!important}}@media (max-width: 1820px){.repair-details-container,.repair-details-cmp{grid-template-columns:420px 692px 300px 240px!important}.repair-general-holder{width:420px}.repair-container{width:692px!important}.repaired-vehicle-container{width:300px!important}.likes-count-container{width:240px}.repair-component .repair-cards{width:420px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 100px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 99px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 27px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 29px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:420px!important}app-shipper-details .load,app-broker-details .load{width:692px!important}app-shipper-details .contact,app-broker-details .contact{width:300px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:300px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:240px!important}app-shipper-details .review-container,app-broker-details .review-container{width:240px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:396px!important}}@media (max-width: 1780px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,280px)}.card-width{width:280px}.request-header-container{width:26px!important;height:26px!important}.request-header-container p{display:none}.request-header-container svg-icon{display:flex!important;transition:background .2s ease-in}.request-header-container svg-icon:hover{background:#e9effd!important}.request-header-container svg-icon:hover svg path{fill:#0b49d1}.repair-details-container{grid-template-columns:475px 760px 410px 0px!important}.repair-general-holder{width:475px}.repair-container{width:760px!important}.repaired-vehicle-container{width:410px!important;max-width:410px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:475px!important}.repair-component .repair-cards{width:475px!important}.repair-details-cmp{grid-template-columns:475px 760px 410px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:410px!important;max-width:410px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:410px!important;max-width:410px!important}.purchase-template{display:grid;grid-template-columns:repeat(2,50%)!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:475px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:475px!important;max-width:475px!important}app-shipper-details .load,app-broker-details .load{width:760px!important}app-shipper-details .contact,app-broker-details .contact{width:410px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:410px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:410px!important}app-shipper-details .review-container,app-broker-details .review-container{width:410px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:450px!important}}@media (max-width: 1760px){.repair-details-container{grid-template-columns:455px 740px 390px 0px!important}.repair-general-holder{width:455px}.repair-container{width:740px!important}.repaired-vehicle-container{width:390px!important;max-width:390px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:455px!important}.repair-component .repair-cards{width:455px!important}.repair-details-cmp{grid-template-columns:455px 740px 390px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:390px!important;max-width:390px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:390px!important;max-width:390px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:455px!important;max-width:455px!important}app-shipper-details .load,app-broker-details .load{width:740px!important}app-shipper-details .contact,app-broker-details .contact{width:390px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:390px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:390px!important}app-shipper-details .review-container,app-broker-details .review-container{width:390px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:430px!important}}@media (max-width: 1700px){.details-container-items{display:grid;grid-template-columns:420px repeat(4,270px)}.card-width{width:270px}.cards-item-wrapper-1,.details-component .details-cards{width:420px}.repair-details-container{grid-template-columns:400px 740px 390px 0px!important}.repair-general-holder{width:400px}.details-header-wrapper-reapirShop{max-width:400px!important}.repair-component .repair-cards{width:400px!important}.repair-details-cmp{grid-template-columns:400px 740px 390px 0px!important}.longText{display:none!important}.shortText{display:block!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 105px 92px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:400px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:377px!important}.details-container-items{display:grid;grid-template-columns:400px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:400px}.assign-to{grid-template-columns:185px 185px}}@media (max-width: 1640px){.repair-details-container{grid-template-columns:400px 720px 370px 0px!important}.repair-container{width:720px!important}.repaired-vehicle-container{width:370px!important;max-width:370px!important}.repair-details-cmp{grid-template-columns:400px 720px 370px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:370px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:370px!important;max-width:370px!important}app-shipper-details .load,app-broker-details .load{width:720px!important}app-shipper-details .contact,app-broker-details .contact{width:370px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:370px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:370px!important}app-shipper-details .review-container,app-broker-details .review-container{width:370px!important}}@media (max-width: 1610px){.details-container-items{display:grid;grid-template-columns:380px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:380px}.assign-to{grid-template-columns:175px 175px}.repair-details-container{grid-template-columns:380px 710px 350px 0px!important}.repair-container{width:710px!important}.repaired-vehicle-container{width:350px!important;max-width:350px!important}.repair-details-cmp{grid-template-columns:380px 710px 350px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:350px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:350px!important;max-width:350px!important}.repair-component .repair-cards{width:380px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 86px 92px!important}app-shipper-details-card .hours-template{grid-template-columns:150px 150px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:380px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:356px!important}}@media (max-width: 1590px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,260px)}.details-component .details-cards,.cards-item-wrapper-1{width:360px}.card-width{width:260px}.reason-span{display:none}.assign-to{grid-template-columns:162px 162px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 710px 350px 0px!important}.repair-component .repair-cards{width:360px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 91px 70px!important}app-shipper-details-card .hours-template{grid-template-columns:140px 140px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:336px!important}}@media (max-width: 1440px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,250px)}.card-width{width:250px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-container{width:700px!important}.repaired-vehicle-container{width:272!important;max-width:272px!important}.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{width:272px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:272px!important;max-width:272px!important}.repair-component .repair-cards{width:360px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:35px 40px 25px 35px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:45px 68px 27px 66px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:700px!important}app-shipper-details .contact,app-broker-details .contact{width:272px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:272px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:272px!important}app-shipper-details .review-container,app-broker-details .review-container{width:272px!important}}@media (max-width: 1500px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,237px)}.card-width{width:237px}}.datetime-dropdown-holder{position:relative;top:16px}.picker_input_holder{display:flex;min-width:146px;max-width:260px;border-radius:3px;background-color:#f9f9f9}.picker_input_holder input{width:100%;padding-left:6px;border:none;outline:none;background-color:transparent;caret-color:transparent;-webkit-appearance:none}.picker_input_holder input:focus{outline:none;border:none}.picker_input_holder input::-webkit-input-placeholder{color:#919191!important}.picker_input_holder input:-ms-input-placeholder{color:#919191!important}.picker_input_holder input::placeholder{color:#919191!important}.picker_input_holder .toggle_picker{display:flex;justify-content:center;align-items:center;width:26px;height:26px;min-width:26px;background-color:#eee;border-radius:3px;cursor:pointer}.picker_input_holder .toggle_picker:after{display:none}.picker_input_holder .toggle_picker svg-icon{display:flex}.picker_input_holder .toggle_picker svg-icon svg{width:12px;height:10px}.picker_input_holder .toggle_picker svg-icon svg path{fill:#919191}.picker_input_holder:hover{opacity:1}.picker_input_holder.active{background-color:#6c6c6c;border-left:3px solid #6c6c6c}.picker_input_holder.active .toggle_picker{background-color:#919191}.picker_input_holder.active .toggle_picker svg-icon{display:flex}.picker_input_holder.active .toggle_picker svg-icon svg{transform:rotate(180deg)}.picker_input_holder.active .toggle_picker svg-icon svg path{fill:#fff}.picker_input_holder.active input::-webkit-input-placeholder{color:#fff!important}.picker_input_holder.active input:-ms-input-placeholder{color:#fff!important}.picker_input_holder.active input::placeholder{color:#fff!important}.pickers_holder{position:absolute;top:3px!important;width:auto!important;padding:0;background-color:#fff;box-shadow:0 0 4px #00000026;z-index:999;border-radius:3px;overflow:hidden}.pickers_holder .time_picker{width:167px}.pickers_holder .date_picker{display:flex}.pickers_holder .date_picker .month-years-size{position:relative;width:48px;background-color:#f9f9f9}.pickers_holder .date_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:24px;transform:translateY(-50%);background-color:#fff}.pickers_holder .date_picker .month-years-size .month-year-item{display:flex;align-items:center;justify-content:center;height:24px;font-size:14px;color:#919191;font-weight:400;text-align:center;text-transform:uppercase}.pickers_holder .date_picker .month-years-size .month-year-item .left-year-show{color:#919191;font-size:14px;font-weight:700}.pickers_holder .date_picker .month-years-size .month-year-item:hover{color:#6c6c6c;cursor:pointer;background-color:#fbe9e9;border-radius:2px}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 2px 0}.pickers_holder .date_picker .full-calendars-list{flex:1;max-height:290px;min-width:264px;overflow:hidden}.pickers_holder .date_picker .full-calendars-list .full_list{height:100%}.pickers_holder .date_picker .full-calendars-list .full_list .selfScroll{width:100%;height:100%}.pickers_holder .time_picker .time_picker_head{height:36px;display:flex;padding:0 12px;align-items:center;justify-content:space-between}.pickers_holder .time_picker .time_picker_head .selected_time{font-size:14px;font-weight:800;color:#6c6c6c}.pickers_holder .time_picker .time_picker_head .sel_now{color:#536bc2;font-size:14px;font-weight:700}.pickers_holder .time_picker .time_picker_head .sel_now:hover{cursor:pointer;color:#5673aa}.pickers_holder .time_picker .time_picker_body .picker_body_head{height:22px;display:flex;align-items:center;background-color:#f7f7f7;margin:0 4px 2px;border-radius:2px}.pickers_holder .time_picker .time_picker_body .picker_body_head div{flex:0 0 33%;text-align:center;font-size:10px;font-weight:700;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body_head div.active{color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body{position:relative;height:155px;display:flex;justify-content:center}.pickers_holder .time_picker .time_picker_body .picker_body:after{content:\"\";position:absolute;width:100%;height:31px;top:-1px;left:0;pointer-events:none;background:linear-gradient(to bottom,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body:before{content:\"\";position:absolute;pointer-events:none;width:100%;height:31px;bottom:-1px;left:0;background:linear-gradient(to top,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line{position:absolute;width:calc(100% - 8px);height:22px;top:50%;left:4px;border-radius:2px;transform:translateY(-50%);background-color:#9191911a}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line span{position:absolute;left:30%;font-size:14px;font-weight:400;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers{position:relative;height:22px;flex:0 0 33.3%;height:100%;padding:67px 0;margin:0 7px;overflow:auto;text-align:center;-ms-overflow-style:none;scrollbar-width:none;z-index:10}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:first-child{flex:0 0 28px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(2){flex:0 0 36px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(3){flex:0 0 38px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers::-webkit-scrollbar{display:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{height:22px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#919191;font-weight:400;-webkit-user-select:none;user-select:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item:hover{color:#5673aa;cursor:pointer}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:hover{box-shadow:inset 0 0 4px #00000026}.pickers_holder .time_picker .picker_buttons{display:flex;padding:6px;justify-content:space-between}.pickers_holder .time_picker .picker_buttons .pick_button{display:flex;align-items:center;justify-content:center;height:32px;padding:0 12px;text-align:center;border-radius:2px;font-size:12px;font-weight:700;color:#919191b3}.pickers_holder .time_picker .picker_buttons .pick_button:hover{background-color:#f3f3f3;color:#919191;cursor:pointer}.pickers_holder .time_picker .picker_buttons .pick_button.set_button{width:57px;text-align:center;background-color:#6d82c7;color:#fff}.pickers_holder .time_picker .picker_buttons .pick_button.set_button:hover{background-color:#536bc2}.pickers_holder.dark_picker{background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size{width:40px;background-color:#424242}.pickers_holder.dark_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:26px;transform:translateY(-50%);background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .month-year-item{height:22px;color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item .left-year-show{color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year{color:#fff}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year .left-year-show{color:#fff;font-weight:700}.pickers_holder.dark_picker .month-years-size .month-year-item:hover{color:#fff;background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 4px 0}.pickers_holder.dark_picker .date_picker{margin:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list{min-width:184px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view{width:182px;padding-top:6px;background-color:#2f2f2f}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head{padding:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name{padding:0 4px;color:#fff;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name .year_hold{margin-right:0;color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today{padding:0 4px;color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today:hover{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator{margin:12px 10px;color:#919191;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.current_year{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.full_calendar{margin-bottom:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px 4px;padding:0}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days .cal_day{width:22px;height:22px;margin:0;font-size:9px;color:#aaa;text-align:center}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;row-gap:12px;justify-content:unset;margin:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item{margin:0;height:22px;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item:hover:not(.current_month){background-color:#424242;color:#fff;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item.current_month{color:#fff;background-color:#3b73ed66;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list.current_year .month_list_item{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px;padding:0;height:auto}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day{width:22px;height:22px;margin:0;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#fff;background-color:#3b73ed66;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#3b73ed66;color:#fff;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.day_in_current_month{color:#fff}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.weekend_day_in_current_month{color:#ccc}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#424242;border-radius:2px;cursor:pointer;color:#fff}.pickers_holder.dark_picker .time_picker{width:156px;margin:4px}.pickers_holder.dark_picker .time_picker .time_picker_head{height:18px;padding:0 4px;margin-bottom:4px}.pickers_holder.dark_picker .time_picker .time_picker_head .selected_time{color:#fff;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_head .sel_now{color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;margin:0 0 4px;padding:2px;background:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head div{color:#aaa;font-size:9px;text-align:center;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body{height:176px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;padding:0 2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:before{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:after{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line{left:0;width:100%;background-color:#3b73ed33}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line{left:33.3%;width:1px;height:12px;margin-top:5px;background-color:#92b1f5;opacity:.4;border-radius:2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line.line_2{left:66.6%}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers{margin:0;padding:77px 0}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{color:#aaa;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item.active_item{color:#fff}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons{display:grid;grid-template-columns:repeat(2,1fr);column-gap:4px;margin-top:6px;padding:4px 0 0;border-top:1px solid #424242}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button{height:18px;background-color:#424242;color:#fff;font-size:11px;text-transform:uppercase;border-radius:1px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button.set_button{width:auto;background-color:#3b73ed}.calendar_view{width:260px;padding-top:12px;background-color:#fff}.calendar_view .calendar_view_head{display:flex;justify-content:space-between;margin-bottom:12px;padding:0 12px}.calendar_view .calendar_view_head .month_name{font-size:12px;font-weight:700;color:#6c6c6c}.calendar_view .calendar_view_head .month_name .year_hold{margin-right:5px;text-transform:uppercase;color:#6c6c6c;cursor:pointer}.calendar_view .calendar_view_head .month_name .year_hold:hover{color:#919191}.calendar_view .calendar_view_head .today{font-size:12px;font-weight:700;color:#5673aab3;cursor:pointer}.calendar_view .calendar_view_head .today:hover{color:#3551b7}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport{height:230px;min-height:230px}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view .calendar_indicator{margin:12px;height:18px;font-size:12px;color:#6c6c6c66;font-weight:700}.calendar_view .calendars_list_view .calendar_month_days{padding:0 3px}.calendar_view .calendars_list_view .calendar_month_days.hideVisibility{visibility:hidden}.calendar_view .calendars_list_view .calendar_month_days .cal_day{width:24px;margin:0 6px;font-size:12px;font-weight:700;color:#b7b7b7}.calendar_view .calendars_list_view .calendar_days{height:140px;display:flex;flex-wrap:wrap;padding:0 3px}.calendar_view .calendars_list_view .calendar_days .calendar_day{display:flex;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;margin:0 6px;font-size:14px;font-weight:400;color:#6c6c6c}.calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#fff;background-color:#919191;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#919191;color:#fff;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#f7f7f7;border-radius:2px;cursor:pointer;color:#3c3c3c}.calendar_view .month_list{display:flex;flex-wrap:wrap;justify-content:space-around;height:140px}.calendar_view .month_list .month_list_item{flex:0 0 50px;height:24px;margin:0 10px;display:flex;align-items:center;justify-content:center;border-radius:3px;font-size:12px;color:#6c6c6c;font-weight:400}.calendar_view .month_list .month_list_item:hover:not(.current_month){background-color:#f7f7f7;color:#3c3c3c;border-radius:2px;cursor:pointer}.calendar_view .month_list .month_list_item.current_month{color:#3c3c3c;background-color:#f7f7f7;border-radius:2px;cursor:pointer}.dropdown{z-index:999!important}input[type=date]::-webkit-inner-spin-button,input[type=date]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}.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}*{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}.input-custom-group{display:block;position:relative}.input-custom-group .location-area-filter,.input-custom-group .location-area-filter.focus,.input-custom-group .location-area-filter.focus:hover{background-color:#424242!important;color:#fff!important}.input-custom-group .location-area-filter.focus::placeholder{background-color:#424242!important}.input-custom-group .location-area-filter:focus{background-color:#424242!important;color:#fff!important}.input-custom-group:hover.required-label-table label span{color:#2f2f2f!important}.input-custom-group.datetimeclass{border-radius:2px!important}.input-custom-group.datetimeclass:not(.invalid-focus-out-filled),.input-custom-group.datetimeclass:not(.valid-focus-in),.input-custom-group.datetimeclass:not(.valid-focus-out),.input-custom-group.datetimeclass:not(.valid-focus-out-filled),.input-custom-group.datetimeclass:not(.invalid-focus-in),.input-custom-group.datetimeclass:not(.invalid-focus-out-empty){background-color:#eee}.input-custom-group.datetimeclass:not(.invalid-focus-out-filled):hover,.input-custom-group.datetimeclass:not(.valid-focus-in):hover,.input-custom-group.datetimeclass:not(.valid-focus-out):hover,.input-custom-group.datetimeclass:not(.valid-focus-out-filled):hover,.input-custom-group.datetimeclass:not(.invalid-focus-in):hover,.input-custom-group.datetimeclass:not(.invalid-focus-out-empty):hover{background-color:#dadada}.input-custom-group.datetimeclass.invalid-empty-focus-out{background-color:#fae3e3}.input-custom-group.datetimeclass.invalid-empty-focus-out:hover{background-color:#f5c7c7}.input-custom-group.datetimeclass.valid-focus-out{background-color:#e2ecf9}.input-custom-group.datetimeclass.valid-focus-out:hover{background-color:#c5d8f3}.input-custom-group.datetimeclass.inactive-empty,.input-custom-group.datetimeclass.inactive-filled{background-color:#f7f7f7}.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-filled),.input-custom-group.datetimeclass.dark:not(.valid-focus-in),.input-custom-group.datetimeclass.dark:not(.valid-focus-out),.input-custom-group.datetimeclass.dark:not(.valid-focus-out-filled),.input-custom-group.datetimeclass.dark:not(.invalid-focus-in),.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-empty){background-color:#424242}.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-filled):hover,.input-custom-group.datetimeclass.dark:not(.valid-focus-in):hover,.input-custom-group.datetimeclass.dark:not(.valid-focus-out):hover,.input-custom-group.datetimeclass.dark:not(.valid-focus-out-filled):hover,.input-custom-group.datetimeclass.dark:not(.invalid-focus-in):hover,.input-custom-group.datetimeclass.dark:not(.invalid-focus-out-empty):hover{background-color:#6c6c6c}.input-custom-group.datetimeclass.dark.valid-focus-out-filled{background-color:red}.input-custom-group.datetimeclass.dark.valid-focus-out-filled:hover{background-color:#c5d8f3}.input-custom-group.datetimeclass.dark.inactive-empty,.input-custom-group.datetimeclass.dark.inactive-filled{background-color:#f7f7f7}.input-custom-group.custom-empty-hover:hover{transition:.3s ease-in-out}.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.custom-empty-hover:hover .input-icon:hover~.input-control,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:hover~.input-control{background-color:#dadada}.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:before:hover,.input-custom-group.custom-empty-hover:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.custom-empty-hover:hover .input-icon:before:hover,.input-custom-group.custom-empty-hover:hover .input-icon:after:hover~.input-control,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.custom-empty-hover:hover app-ca-input-placeholder-icon:after:hover~.input-control{background-color:#dadada}.input-custom-group.custom-filled-hover:hover{transition:.3s ease-in-out}.input-custom-group.custom-filled-hover:hover .input-clear{display:inline-block}.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-icon:hover~.input-control,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-clear:hover~.input-control{background-color:#dadada}.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:before:hover,.input-custom-group.custom-filled-hover:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-icon:before:hover,.input-custom-group.custom-filled-hover:hover .input-icon:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.custom-filled-hover:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.custom-filled-hover:hover .input-clear:before:hover,.input-custom-group.custom-filled-hover:hover .input-clear:after:hover~.input-control{background-color:#dadada}.input-custom-group.input-remove-trash-can:hover .input-clear{display:inline-block!important}.input-custom-group.input-remove-trash-can:hover .input-clear:hover~.input-control{background-color:#dadada}.input-custom-group.input-remove-trash-can:hover .placeholder-icon-right-side{opacity:0}.input-custom-group.input-remove-background:hover .input-control{background:transparent!important}.input-custom-group.input-remove-background.input-blue-text{color:red}.input-custom-group.input-remove-background .input-control{background:transparent;color:#2f2f2f;font-weight:400}.input-custom-group.input-remove-background .input-control.focus,.input-custom-group.input-remove-background .input-control.focus:hover{background:#2f2f2f!important;color:#fff!important}.input-custom-group.input-remove-background .input-control.focus::placeholder{color:#fff!important}.input-custom-group.input-remove-background .input-control:focus{background:#2f2f2f!important;color:#fff!important}.input-custom-group.input-remove-background .input-dropdown-arrow svg path{fill:#919191!important}.input-custom-group.input-blue-text .input-control{color:#6692f1}.input-custom-group.invalid-filled-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.invalid-filled-focus-out:hover .input-clear,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow,.input-custom-group.invalid-filled-focus-out:hover .input-icon,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear{display:inline-block}.input-custom-group.invalid-filled-focus-out:hover .input-clear:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-icon:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-filled-focus-out:hover .input-clear:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-clear:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-invalid-danger-mark:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-icon:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-icon:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-label-counter:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:before:hover,.input-custom-group.invalid-filled-focus-out:hover .input-password-eye:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:before:hover,.input-custom-group.invalid-filled-focus-out:hover app-ca-input-clear:after:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-filled-focus-out:hover .input-label-counter{display:flex}.input-custom-group.invalid-empty-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.invalid-empty-focus-out:hover .input-clear{display:none}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x svg path{fill:#e66767}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x svg rect{fill:#e66767}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x:hover svg path{fill:#c20c0c}.input-custom-group.invalid-empty-focus-out:hover.input-remove-trash-can app-ca-input-clear .trash-can-svg .input-clear-x:hover svg rect{fill:#c20c0c}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.invalid-empty-focus-out:hover .input-icon{display:inline-block}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-icon:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-invalid-danger-mark:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-empty-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-empty-focus-out:hover .input-icon:before:hover,.input-custom-group.invalid-empty-focus-out:hover .input-icon:after:hover~.input-control{background-color:#f5c7c7}.input-custom-group.invalid-focus-in:hover{transition:.3s ease-in-out}.input-custom-group.invalid-focus-in:hover .input-password-eye:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-password:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:hover~.input-control{background-color:#e22e22}.input-custom-group.invalid-focus-in:hover .input-password-eye:before:hover,.input-custom-group.invalid-focus-in:hover .input-password-eye:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-password:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:before:hover,.input-custom-group.invalid-focus-in:hover app-ca-input-clear:after:hover~.input-control{background-color:#e22e22}.input-custom-group.valid-focus-out:hover{transition:.3s ease-in-out}.input-custom-group.valid-focus-out:hover .input-clear,.input-custom-group.valid-focus-out:hover .input-pen-container,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow,.input-custom-group.valid-focus-out:hover .input-icon,.input-custom-group.valid-focus-out:hover .input-label-counter,.input-custom-group.valid-focus-out:hover .input-password-eye,.input-custom-group.valid-focus-out:hover app-ca-input-password,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon,.input-custom-group.valid-focus-out:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.valid-focus-out:hover .input-clear:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-pen-container:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-icon:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-label-counter:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-password-eye:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-password:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-clear:hover~.input-control{background-color:#c5d8f3}.input-custom-group.valid-focus-out:hover .input-clear:before:hover,.input-custom-group.valid-focus-out:hover .input-clear:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-pen-container:before:hover,.input-custom-group.valid-focus-out:hover .input-pen-container:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:before:hover,.input-custom-group.valid-focus-out:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-icon:before:hover,.input-custom-group.valid-focus-out:hover .input-icon:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-label-counter:before:hover,.input-custom-group.valid-focus-out:hover .input-label-counter:after:hover~.input-control,.input-custom-group.valid-focus-out:hover .input-password-eye:before:hover,.input-custom-group.valid-focus-out:hover .input-password-eye:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-password:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.valid-focus-out:hover app-ca-input-clear:before:hover,.input-custom-group.valid-focus-out:hover app-ca-input-clear:after:hover~.input-control{background-color:#c5d8f3}.input-custom-group.valid-focus-out:hover .input-label-counter{display:flex}.input-custom-group.valid-focus-out:hover .input-required-check{display:none}.input-custom-group.valid-focus-in:hover{transition:.3s ease-in-out}.input-custom-group.valid-focus-in:hover .trash-can-svg:hover~.input-control,.input-custom-group.valid-focus-in:hover .input-password-eye:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-password:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-clear:hover~.input-control{background-color:#255bb9}.input-custom-group.valid-focus-in:hover .trash-can-svg:before:hover,.input-custom-group.valid-focus-in:hover .trash-can-svg:after:hover~.input-control,.input-custom-group.valid-focus-in:hover .input-password-eye:before:hover,.input-custom-group.valid-focus-in:hover .input-password-eye:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-password:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.valid-focus-in:hover app-ca-input-clear:before:hover,.input-custom-group.valid-focus-in:hover app-ca-input-clear:after:hover~.input-control{background-color:#255bb9}.input-custom-group.inactive-filled:hover .input-clear,.input-custom-group.inactive-filled:hover .trash-can-svg,.input-custom-group.inactive-filled:hover .input-pen-container,.input-custom-group.inactive-filled:hover .input-dropdown-arrow,.input-custom-group.inactive-filled:hover .input-icon,.input-custom-group.inactive-filled:hover .input-password-eye,.input-custom-group.inactive-filled:hover app-ca-input-password,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon,.input-custom-group.inactive-filled:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.inactive-filled:hover .input-clear:hover~.input-control,.input-custom-group.inactive-filled:hover .trash-can-svg:hover~.input-control,.input-custom-group.inactive-filled:hover .input-pen-container:hover~.input-control,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.inactive-filled:hover .input-icon:hover~.input-control,.input-custom-group.inactive-filled:hover .input-password-eye:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-password:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-clear:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-filled:hover .input-clear:before:hover,.input-custom-group.inactive-filled:hover .input-clear:after:hover~.input-control,.input-custom-group.inactive-filled:hover .trash-can-svg:before:hover,.input-custom-group.inactive-filled:hover .trash-can-svg:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-pen-container:before:hover,.input-custom-group.inactive-filled:hover .input-pen-container:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:before:hover,.input-custom-group.inactive-filled:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-icon:before:hover,.input-custom-group.inactive-filled:hover .input-icon:after:hover~.input-control,.input-custom-group.inactive-filled:hover .input-password-eye:before:hover,.input-custom-group.inactive-filled:hover .input-password-eye:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-password:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.inactive-filled:hover app-ca-input-clear:before:hover,.input-custom-group.inactive-filled:hover app-ca-input-clear:after:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-empty:hover .input-clear,.input-custom-group.inactive-empty:hover .input-pen-container,.input-custom-group.inactive-empty:hover .input-dropdown-arrow,.input-custom-group.inactive-empty:hover .input-icon,.input-custom-group.inactive-empty:hover .input-password-eye,.input-custom-group.inactive-empty:hover app-ca-input-password,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon,.input-custom-group.inactive-empty:hover app-ca-input-clear{display:inline-block;transition:.3s ease-in-out}.input-custom-group.inactive-empty:hover .input-clear:hover~.input-control,.input-custom-group.inactive-empty:hover .input-pen-container:hover~.input-control,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:hover~.input-control,.input-custom-group.inactive-empty:hover .input-icon:hover~.input-control,.input-custom-group.inactive-empty:hover .input-password-eye:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-password:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-clear:hover~.input-control{background-color:#f7f7f7}.input-custom-group.inactive-empty:hover .input-clear:before:hover,.input-custom-group.inactive-empty:hover .input-clear:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-pen-container:before:hover,.input-custom-group.inactive-empty:hover .input-pen-container:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:before:hover,.input-custom-group.inactive-empty:hover .input-dropdown-arrow:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-icon:before:hover,.input-custom-group.inactive-empty:hover .input-icon:after:hover~.input-control,.input-custom-group.inactive-empty:hover .input-password-eye:before:hover,.input-custom-group.inactive-empty:hover .input-password-eye:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-password:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-password:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-placeholder-icon:after:hover~.input-control,.input-custom-group.inactive-empty:hover app-ca-input-clear:before:hover,.input-custom-group.inactive-empty:hover app-ca-input-clear:after:hover~.input-control{background-color:#f7f7f7}.input-custom-group .input-label{position:absolute;top:4px;left:6px;font-size:14px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;transition:.3s ease-in-out}.input-custom-group .input-label span::-moz-selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.input-custom-group .input-label span::selection{background-color:#2f2f2f33!important;color:#2f2f2f!important}.input-custom-group .input-label.required:after{content:\" *\";color:#ef5350}.input-custom-group .input-label.inactive-empty{color:#919191!important}.input-custom-group .input-label.up-label{top:-17px;left:6px;font-size:11px;font-weight:600}.input-custom-group .input-label.in-label{top:4px!important;font-size:11px!important;font-weight:600!important;transition:none!important}.input-custom-group .input-label.in-label.in-label-focus{color:#fff!important}.input-custom-group .input-label.no-transition{transition:none!important}.input-custom-group .input-label.input-placeholderIcon-on{left:37px}.input-custom-group .input-label.input-placeholderIcon-on.up-label{left:36px}.input-custom-group .input-label.hidden{display:none!important}.input-custom-group .input-label.required-label span{color:#df3c3c}.input-custom-group .input-label.load-shipper .load-shipper{display:grid;grid-template-columns:455px 120px;align-items:center}.input-custom-group .input-label.load-shipper .load-shipper span:nth-child(2){text-align:right;color:#6c6c6c;font-size:11px;font-weight:600}.input-custom-group .input-label.load-shipper.required:after{position:absolute;right:0;left:60px;top:0}.input-custom-group .input-label.load-shipper.multiple-labels.required:after,.input-custom-group .input-label.load-shipper.up-label.required:after{transition-delay:.1s;transition-timing-function:ease-in;position:absolute;right:0;left:48px;top:0}.input-custom-group .input-label .load-dispatches-ttd{display:grid;grid-template-columns:92px 89px 182px 53px;align-items:center;-moz-column-gap:65px;grid-column-gap:65px;column-gap:65px}.input-custom-group .input-label .load-dispatches-ttd span:nth-child(4){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label .load-dispatches-ttd.multiple-labels-position-on-focus span:nth-child(4){transition-delay:.3s;color:#6c6c6c!important;opacity:1;top:-19px}.input-custom-group .input-label.dropdown-double-column>*{display:grid;grid-template-columns:118px 1fr;align-items:center;-moz-column-gap:4px;grid-column-gap:4px;column-gap:4px}.input-custom-group .input-label.dropdown-triple-column>*{display:grid;grid-template-columns:220px 138px 220px;align-items:center;-moz-column-gap:4px;grid-column-gap:4px;column-gap:4px}.input-custom-group .input-label.load-broker .load-broker{display:grid;align-items:center;grid-template-columns:277px 82px 69px}.input-custom-group .input-label.load-broker .load-broker span:nth-child(2),.input-custom-group .input-label.load-broker .load-broker span:nth-child(3){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label.load-broker .load-broker.multiple-labels-position-on-focus span:nth-child(2),.input-custom-group .input-label.load-broker .load-broker.multiple-labels-position-on-focus span:nth-child(3){transition-delay:.3s;color:#919191!important;opacity:1;top:-19px;text-align:right}.input-custom-group .input-label.load-broker.required:after{position:absolute;left:51px;right:0;top:-1px}.input-custom-group .input-label.load-broker.multiple-labels.required:after,.input-custom-group .input-label.load-broker.up-label.required:after{transition-delay:.1s;transition-timing-function:ease-in;position:absolute;left:44px;right:0;top:-1px}.input-custom-group .input-label .load-broker-contact,.input-custom-group .input-label .load-shipper-contact{display:grid;grid-template-columns:235px 38px;align-items:center;grid-column-gap:10px;-moz-column-gap:10px;column-gap:10px;transition:.3 ease-in-out}.input-custom-group .input-label .load-broker-contact span:nth-child(2),.input-custom-group .input-label .load-shipper-contact span:nth-child(2){color:#2f2f2f!important;opacity:0;top:-19px;font-size:11px;font-weight:600}.input-custom-group .input-label .load-broker-contact.multiple-labels-position-on-focus span:nth-child(2),.input-custom-group .input-label .load-shipper-contact.multiple-labels-position-on-focus span:nth-child(2){transition-delay:.3s;opacity:1;top:-19px;color:#6c6c6c!important}.input-custom-group .input-label.load-shipper-contact .load-shipper-contact{grid-template-columns:295px 38px}.input-custom-group .input-label.regular{font-weight:400}.input-custom-group .input-label.datetimeclass.dark{color:#fff}.input-custom-group .hide-loads .load-broker{grid-template-columns:365px 92px}.input-custom-group .input-control{width:100%;height:26px;border:none;outline:none;border-radius:2px;padding:4px 6px;font-size:14px;font-weight:400;background-color:#eee;color:#2f2f2f;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.input-custom-group .input-control::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.center{text-align:center}.input-custom-group .input-control.uppercase{text-transform:uppercase}.input-custom-group .input-control.lowercase{text-transform:lowercase}.input-custom-group .input-control:hover{background-color:#dadada}.input-custom-group .input-control:focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .input-control:focus::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::-moz-placeholder{color:#fff6}.input-custom-group .input-control:focus:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control:focus::placeholder{color:#fff6}.input-custom-group .input-control:focus::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control:focus::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control:focus.blue-dropdown{background-color:#0b49d1}.input-custom-group .input-control.valid-focus-in,.input-custom-group .input-control.dropdown-placeholder-active,.input-custom-group .input-control.multiSelect-dropdown-active{background-color:#255bb9;color:#fff}.input-custom-group .input-control.valid-focus-in::-webkit-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-webkit-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-webkit-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-moz-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-moz-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-moz-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in:-ms-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active:-ms-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active:-ms-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-ms-input-placeholder,.input-custom-group .input-control.dropdown-placeholder-active::-ms-input-placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::-ms-input-placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::placeholder,.input-custom-group .input-control.dropdown-placeholder-active::placeholder,.input-custom-group .input-control.multiSelect-dropdown-active::placeholder{color:#6f9ee0}.input-custom-group .input-control.valid-focus-in::-moz-selection,.input-custom-group .input-control.dropdown-placeholder-active::-moz-selection,.input-custom-group .input-control.multiSelect-dropdown-active::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.valid-focus-in::selection,.input-custom-group .input-control.dropdown-placeholder-active::selection,.input-custom-group .input-control.multiSelect-dropdown-active::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.valid-focus-out-filled{background-color:#e2ecf9;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled.input-dropdown-table{background-color:#fff}.input-custom-group .input-control.valid-focus-out-filled::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.valid-focus-out-filled:hover{background-color:#c5d8f3}.input-custom-group .input-control.invalid-focus-in,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in{background-color:#e22e22;color:#fff}.input-custom-group .input-control.invalid-focus-in::-moz-selection,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in::-moz-selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.invalid-focus-in::selection,.input-custom-group .input-control.invalid-search-in-dropdown-focus-in::selection{background-color:#fff3;color:#fff}.input-custom-group .input-control.invalid-focus-out-filled,.input-custom-group .input-control.invalid-focus-out-empty{background-color:#fae3e3;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled::-moz-selection,.input-custom-group .input-control.invalid-focus-out-empty::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled::selection,.input-custom-group .input-control.invalid-focus-out-empty::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.invalid-focus-out-filled:hover,.input-custom-group .input-control.invalid-focus-out-empty:hover{background-color:#f5c7c7}.input-custom-group .input-control.invalid-focus-out-empty-table:hover{color:#2f2f2f;background-color:#f5c7c7}.input-custom-group .input-control.inactive-empty{background-color:#f7f7f7;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled{background-color:#f7f7f7;color:#2f2f2f;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled::-moz-selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.inactive-filled::selection{background-color:#2f2f2f33;color:#2f2f2f}.input-custom-group .input-control.datetimeclass:not(.inactive-filled){letter-spacing:1px;pointer-events:none;opacity:0}.input-custom-group .input-control.has-placeholderIcon{padding-left:37px}.input-custom-group .input-control.dropdown-input-image-truck{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-webkit-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-moz-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus:-ms-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::-ms-input-placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-truck-focus::placeholder{padding-left:63px}.input-custom-group .input-control.dropdown-input-image-trailer{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-webkit-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-moz-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus:-ms-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::-ms-input-placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-trailer-focus::placeholder{padding-left:68px}.input-custom-group .input-control.dropdown-input-image-color{padding-left:29px}.input-custom-group .input-control.dropdown-input-image-user{padding-left:30px}.input-custom-group .input-control.dropdown-input-image-pm{padding-left:37px}.input-custom-group .input-control.dropdown-input-image-without-text-transparent,.input-custom-group .input-control.multiple-input-values{color:transparent}.input-custom-group .input-control.input-32-font-20{font-weight:700;font-size:20px}.input-custom-group .input-control.details-pages{height:32px;background:#1d1d1d;color:#fff6}.input-custom-group .input-control.details-pages .input-dropdown-arrow:hover,.input-custom-group .input-control.details-pages:hover{background:#1d1d1d}.input-custom-group .input-control.details-pages::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::-moz-placeholder{color:#fff6}.input-custom-group .input-control.details-pages:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.details-pages::placeholder{color:#fff6}.input-custom-group .input-control.disable-select-on-focus-out::-moz-selection{background-color:transparent}.input-custom-group .input-control.disable-select-on-focus-out::selection{background-color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-webkit-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-moz-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input:-ms-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::-ms-input-placeholder{opacity:0;color:transparent}.input-custom-group .input-control.hide-placeholder-in-multiple-placeholder-input::placeholder{opacity:0;color:transparent}.input-custom-group .input-control.multiple-input-placeholder{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.load-dispatches-ttd,.input-custom-group .input-control.load-broker,.input-custom-group .input-control.load-shipper,.input-custom-group .input-control.load-shipper-contact{position:absolute;bottom:1.5px;background-color:transparent;display:grid;align-items:center}.input-custom-group .input-control.load-dispatches-ttd span,.input-custom-group .input-control.load-broker span,.input-custom-group .input-control.load-shipper span,.input-custom-group .input-control.load-shipper-contact span{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.double-text-dropdown{position:absolute;top:50%;transform:translateY(-48%);background-color:transparent;display:flex;align-items:center;justify-content:space-between;padding-right:26px}.input-custom-group .input-control.double-text-dropdown span:last-child .multiple-input-text{color:#919191;font-size:11px;font-weight:400}.input-custom-group .input-control.double-text-dropdown span:last-child .multiple-input-text.focusable-text{color:#6f9ee0;font-size:11px;font-weight:400}.input-custom-group .input-control.double-text-dropdown span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd{grid-template-columns:repeat(2,156px) 150px 122px;padding-top:3px}.input-custom-group .input-control.load-dispatches-ttd svg{height:16px;width:44px}.input-custom-group .input-control.load-dispatches-ttd svg path{fill:#919191}.input-custom-group .input-control.load-dispatches-ttd span:nth-child(1) .multiple-input-text,.input-custom-group .input-control.load-dispatches-ttd span:nth-child(2) .multiple-input-text{max-width:70px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.input-custom-group .input-control.load-dispatches-ttd span:nth-child(3) .multiple-input-text{max-width:100px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.input-custom-group .input-control.load-dispatches-ttd span:last-child{justify-content:flex-end}.input-custom-group .input-control.load-dispatches-ttd span:last-child .multiple-input-text{color:#919191!important;font-size:11px;font-weight:400;line-height:24px}.input-custom-group .input-control.load-dispatches-ttd span:last-child .multiple-input-text.focusable-text{color:#6f9ee0;font-size:11px;font-weight:400}.input-custom-group .input-control.load-dispatches-ttd span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd span span{line-height:23px;position:relative}.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9856,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9857,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg #Ellipse_9858,.input-custom-group .input-control.load-dispatches-ttd .focusable-svg svg path{fill:#6f9ee0}.input-custom-group .input-control.load-dispatches-ttd .focusable-image{opacity:.6}.input-custom-group .input-control.load-dispatches-ttd .trailerContainer{width:max-content!important;padding:0!important;margin:0!important}.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9856,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9857,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg #Ellipse_9858,.input-custom-group .input-control.payroll-deduction-truck .focusable-svg svg path{fill:#6f9ee0}.input-custom-group .input-control.load-broker{display:grid;grid-template-columns:229px 115px 48px;align-items:center;height:24px}.input-custom-group .input-control.load-broker span:nth-child(1){white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.input-custom-group .input-control.load-broker span:nth-child(2),.input-custom-group .input-control.load-broker span:nth-child(3){justify-content:flex-end}.input-custom-group .input-control.load-broker span:nth-child(3){position:relative;bottom:1px}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter.counter-focus{color:#6f9ee0;background-color:#6f9ee033}.input-custom-group .input-control.load-broker span:nth-child(3) .multiple-input-text.counter.counter-one{max-width:none!important;width:19px!important}.input-custom-group .input-control.load-broker-contact,.input-custom-group .input-control.load-shipper-contact{position:absolute;top:50%;transform:translateY(-50%);background-color:transparent!important;display:grid;grid-template-columns:165px 94px;align-items:center;grid-column-gap:20px;-moz-column-gap:20px;column-gap:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px;padding-right:35px}.input-custom-group .input-control.load-broker-contact span,.input-custom-group .input-control.load-shipper-contact span{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.load-broker-contact span span,.input-custom-group .input-control.load-shipper-contact span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.load-broker-contact span:nth-child(2),.input-custom-group .input-control.load-shipper-contact span:nth-child(2){justify-self:flex-end;font-size:11px;font-weight:400;line-height:24px}.input-custom-group .input-control.load-broker-contact span:nth-child(2) span,.input-custom-group .input-control.load-shipper-contact span:nth-child(2) span{color:#919191!important}.input-custom-group .input-control.text-suffix{position:absolute;top:50%;transform:translateY(-50%);background-color:transparent!important;display:flex;align-items:center;column-gap:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px;padding-right:35px}.input-custom-group .input-control.text-suffix span{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-control.text-suffix span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.text-suffix span:nth-child(2){justify-self:flex-end;font-size:14px;font-weight:400;line-height:18px}.input-custom-group .input-control.text-suffix span:nth-child(2) span:not(.focusable-text){color:#919191!important}.input-custom-group .input-control.text-suffix span:nth-child(2) span:not(.focusable-text):before{content:\"\\2022 \"}.input-custom-group .input-control.text-suffix span:nth-child(2) span.ca-add-dot:before{content:\"\\2022 \"}.input-custom-group .input-control.load-shipper-contact{grid-template-columns:283px 38px}.input-custom-group .input-control.load-shipper{grid-template-columns:394px 180px;-moz-column-gap:2px;column-gap:2px;padding-right:25px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:25px}.input-custom-group .input-control.load-shipper span:nth-child(2),.input-custom-group .input-control.load-shipper span:nth-child(3){justify-content:flex-end;font-size:11px;color:#919191!important;font-weight:400}.input-custom-group .input-control.load-shipper span:nth-child(2) span{color:#919191!important}.input-custom-group .input-control.load-shipper span:nth-child(2) span.focusable-text{color:#6f9ee0}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;position:relative;bottom:1px}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter.counter-focus{color:#6f9ee0;background-color:#6f9ee033}.input-custom-group .input-control.load-shipper span:nth-child(3) .multiple-input-text.counter.counter-one{max-width:none!important;width:19px!important}.input-custom-group .input-control.load-shipper span span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.input-custom-group .input-control.cursor-on-right-side{text-align:right;padding-right:32px}.input-custom-group .input-control.merge-dropdown-body-with-input::-webkit-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::-moz-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input:-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::-ms-input-placeholder{color:#fff6}.input-custom-group .input-control.merge-dropdown-body-with-input::placeholder{color:#fff6}.input-custom-group .input-control.input-commands{background-color:#1d1d1d!important;color:#fff!important}.input-custom-group .input-control.input-commands.blue-commands{background-color:#0b49d1!important}.input-custom-group .input-control.dropdown-label-active{background-color:#1d1d1d!important;color:#fff!important}.input-custom-group .input-control.dispatch-dropdown{width:calc(100% - 24px);background-color:#2f2f2f!important}.input-custom-group input[type=number]::-webkit-inner-spin-button,.input-custom-group input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0!important}.input-custom-group input[type=number]::-webkit-inner-spin-button:hover,.input-custom-group input[type=number]::-webkit-outer-spin-button:hover,.input-custom-group input[type=number]::-webkit-inner-spin-button:focus,.input-custom-group input[type=number]::-webkit-outer-spin-button:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0!important}.input-custom-group input[type=number]{-moz-appearance:textfield!important}.input-custom-group input[type=number]:hover,.input-custom-group input[type=number]:focus{-moz-appearance:textfield!important}.input-custom-group .load-dispatches-ttd-owner{position:absolute;left:13px;bottom:7px;width:10px;height:10px}.input-custom-group .load-dispatches-ttd-owner svg{width:10px!important;height:10px!important}.input-custom-group .time-picker-opacity{opacity:1!important}.input-custom-group .dispatch-history-default-color{background:#f7f7f7!important;transition:background .3s ease-in-out}.input-custom-group .dispatch-history-row-hover{background:#eee!important;transition:background .3s ease-in-out}.input-custom-group .input-required-check{position:absolute;right:6px;width:14px;height:10px;display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-required-check svg path{fill:#6f9ee0}.input-custom-group .input-clear{position:absolute;right:4px;top:47%;transform:translateY(-50%);border-radius:1px;display:none;z-index:10;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-clear .input-clear-x svg{width:18px!important;height:18px!important;overflow:visible}.input-custom-group .input-clear .input-clear-x svg path{fill:#eee}.input-custom-group .input-clear .input-clear-x svg rect{fill:#919191;transition:transform .3s;transform:scale(1);transform-origin:center}.input-custom-group .input-clear .input-clear-x:hover svg{overflow:visible}.input-custom-group .input-clear .input-clear-x:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#424242}.input-custom-group .input-clear.datetimeclass{z-index:22!important}.input-custom-group .input-clear.focus{display:inline-block}.input-custom-group .input-clear.focus .input-clear-x svg path{fill:#1d1d1d}.input-custom-group .input-clear.focus .input-clear-x svg rect{fill:#aaa}.input-custom-group .input-clear.focus .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.valid-focus-in{display:inline-block}.input-custom-group .input-clear.valid-focus-in .input-clear-x svg path{fill:#255bb9}.input-custom-group .input-clear.valid-focus-in .input-clear-x svg rect{fill:#c5d8f3}.input-custom-group .input-clear.valid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.valid-focus-out .input-clear-x svg path{fill:#c5d8f3}.input-custom-group .input-clear.valid-focus-out .input-clear-x svg rect{fill:#6f9ee0}.input-custom-group .input-clear.valid-focus-out .input-clear-x:hover svg rect{fill:#3074d3}.input-custom-group .input-clear.invalid-focus-in{display:inline-block}.input-custom-group .input-clear.invalid-focus-in .input-clear-x svg path{fill:#e22e22}.input-custom-group .input-clear.invalid-focus-in .input-clear-x svg rect{fill:#f5c7c7}.input-custom-group .input-clear.invalid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.invalid-focus-out .input-clear-x svg path{fill:#f5c7c7}.input-custom-group .input-clear.invalid-focus-out .input-clear-x svg rect{fill:#e57373}.input-custom-group .input-clear.invalid-focus-out .input-clear-x:hover svg rect{fill:#ef5350}.input-custom-group .input-clear.incorrect-input{display:none}.input-custom-group .input-clear.incorrect-input .input-clear-x svg path{fill:#ef5350!important}.input-custom-group .input-clear.incorrect-input .input-clear-x svg rect{fill:transparent!important}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover{display:inline-block}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input .input-clear-x:hover svg rect{fill:#ef5350!important}.input-custom-group .input-clear.incorrect-input-on{display:inline-block}.input-custom-group .input-clear.incorrect-input-on .input-clear-x svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x svg rect{fill:#e57373!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x:hover svg path{fill:#eee!important}.input-custom-group .input-clear.incorrect-input-on .input-clear-x:hover svg rect{fill:#ef5350!important}.input-custom-group .input-clear.dropdown-on{right:27px!important;top:50%;transform:translateY(-50%)}.input-custom-group .input-clear.dropdown-on svg-icon{display:flex}.input-custom-group .input-clear.hidden{display:none}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg{width:20px!important;height:20px!important;position:relative;left:1px}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg path{fill:#aaa}.input-custom-group .input-clear.trash-can-svg .input-clear-x svg rect{fill:#aaa}.input-custom-group .input-clear.trash-can-svg .input-clear-x:hover svg path{fill:#919191}.input-custom-group .input-clear.trash-can-svg .input-clear-x:hover svg rect{fill:#919191}.input-custom-group .input-clear.trash-can-svg:before{content:\"\";display:block;height:16px;width:1px;border-radius:3px;background-color:#91919166;position:absolute;right:22px;top:56%;transform:translateY(-50%)}.input-custom-group .input-clear.trash-can-svg.valid-focus-in{display:none}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x svg path{fill:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x svg rect{fill:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x:hover svg path{fill:#fff}.input-custom-group .input-clear.trash-can-svg.valid-focus-in .input-clear-x:hover svg rect{fill:#fff}.input-custom-group .input-clear.trash-can-svg.valid-focus-in:before{background-color:#c5d8f3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x svg path{fill:#6f9ee0}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x svg rect{fill:#6f9ee0}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x:hover svg path{fill:#3074d3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out .input-clear-x:hover svg rect{fill:#3074d3}.input-custom-group .input-clear.trash-can-svg.valid-focus-out:before{background-color:#6f9ee066}.input-custom-group .input-clear-dispatch{position:absolute;right:0;top:47%;display:flex;justify-content:center;align-items:center;width:26px;height:26px;transform:translateY(-50%);border-radius:2px;z-index:10;cursor:pointer;transition:background .3s ease-in-out}.input-custom-group .input-clear-dispatch svg-icon svg{display:flex;width:12px!important;height:12px!important}.input-custom-group .input-clear-dispatch svg-icon svg path{fill:#919191;transition:fill .3s ease-in-out}.input-custom-group .input-clear-dispatch:hover{background-color:#91919166}.input-custom-group .input-clear-dispatch:hover svg-icon svg path{fill:#dadada}.input-custom-group .input-icon{position:absolute;left:6px;top:47%;transform:translateY(-50%);z-index:10;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:.3s ease-in-out}.input-custom-group .input-icon svg-icon svg{width:18px;height:18px}.input-custom-group .input-icon.datetimeclass{z-index:21}.input-custom-group .input-icon.default-svg-color svg path{fill:#919191}.input-custom-group .input-icon.cursor-pointer{cursor:pointer}.input-custom-group .input-icon:after{content:\"\";display:block;height:15px;width:1px;border-radius:3px;background:#91919166;position:absolute;left:21px;top:55%;transform:translateY(-50%)}.input-custom-group .input-icon.focus svg path{fill:#ccc}.input-custom-group .input-icon.focus text{fill:#ccc}.input-custom-group .input-icon.focus:after{background:#ccc6}.input-custom-group .input-icon.valid-focus-in svg path{fill:#98b9ea}.input-custom-group .input-icon.valid-focus-in text{fill:#98b9ea}.input-custom-group .input-icon.valid-focus-in:after{background:#c5d8f3}.input-custom-group .input-icon.valid-focus-out svg path{fill:#6692f1}.input-custom-group .input-icon.valid-focus-out text{fill:#6f9ee0}.input-custom-group .input-icon.valid-focus-out:after{background-color:#6f9ee066}.input-custom-group .input-icon.valid-focus-out-dropdown-label:after{background-color:#6f9ee066}.input-custom-group .input-icon.invalid-focus-in svg path{fill:#ffb0a8}.input-custom-group .input-icon.invalid-focus-in text{fill:#ffb0a8}.input-custom-group .input-icon.invalid-focus-in:after{background-color:#f5c7c7}.input-custom-group .input-icon.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-icon.invalid-focus-out text{fill:#e57373}.input-custom-group .input-icon.invalid-focus-out:after{background:#e5737366}.input-custom-group .input-icon.inactive-empty svg path{fill:#ccc}.input-custom-group .input-icon.inactive-filled svg path{fill:#aaa}.input-custom-group .input-icon.inactive-filled:after{background-color:#aaa6}.input-custom-group .input-icon.discolor-placeholder svg path{fill:#919191}.input-custom-group .input-icon.load-adjusted-rate svg path{fill:#ffa726}.input-custom-group .input-icon.load-advance-rate svg path{fill:#4db6a2}.input-custom-group .input-icon.hidden{display:none!important}.input-custom-group .input-dropdown-arrow{display:inline-block;position:absolute;right:6px;top:50%;transform:translateY(-50%);width:14px;height:14px;line-height:18px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:10;cursor:pointer}.input-custom-group .input-dropdown-arrow svg{display:flex;width:100%;transform:rotate(0);transition:.3s ease-in-out}.input-custom-group .input-dropdown-arrow svg path{fill:#919191}.input-custom-group .input-dropdown-arrow:hover svg path{fill:#424242}.input-custom-group .input-dropdown-arrow.datetimeclass{z-index:22!important}.input-custom-group .input-dropdown-arrow.focus svg{transform:rotate(180deg);transition:.3s ease-in-out}.input-custom-group .input-dropdown-arrow.focus svg path{fill:#ccc}.input-custom-group .input-dropdown-arrow.focus:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-dropdown-arrow.invalid-focus-out:hover svg path{fill:#ef5350}.input-custom-group .input-dropdown-arrow.invalid-focus-in svg path,.input-custom-group .input-dropdown-arrow.invalid-search-in-dropdown-focus-in svg path{fill:#f5c7c7}.input-custom-group .input-dropdown-arrow.invalid-focus-in:hover svg path,.input-custom-group .input-dropdown-arrow.invalid-search-in-dropdown-focus-in:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.valid-focus-in svg path{fill:#c5d8f3}.input-custom-group .input-dropdown-arrow.valid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-dropdown-arrow.valid-focus-out svg path{fill:#6692f1}.input-custom-group .input-dropdown-arrow.valid-focus-out:hover svg path{fill:#3074d3}.input-custom-group .input-error{position:absolute;top:100%;right:5px;color:#ef5350;font-size:11px;font-weight:600;line-height:14px;display:inline-block}.input-custom-group .input-error::-moz-selection{background-color:#ef535033;color:#ef5350}.input-custom-group .input-error::selection{background-color:#ef535033;color:#ef5350}.input-custom-group .error-inside-input{position:absolute;right:32px;font-weight:600;font-size:11px;line-height:14px;color:#df3c3c;top:24%;pointer-events:none}.input-custom-group .input-password-eye{display:none;width:18px;height:18px;position:absolute;left:6px;top:50%;transform:translateY(-50%);padding-top:0;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-password-eye svg{width:18px;height:18px;position:absolute;bottom:0}.input-custom-group .input-password-eye svg path{fill:#919191}.input-custom-group .input-password-eye:after{content:\"\";display:block;height:15px;width:1px;border-radius:3px;background:#91919166;position:absolute;left:24px;top:52%;transform:translateY(-50%)}.input-custom-group .input-password-eye.visible{display:inline-block}.input-custom-group .input-password-eye.inactive svg path{fill:#ccc}.input-custom-group .input-password-eye.inactive:after{background-color:#aaa6}.input-custom-group .input-password-eye.valid-focus-out svg path{fill:#6f9ee0}.input-custom-group .input-password-eye.valid-focus-out:hover svg path{fill:#3074d3}.input-custom-group .input-password-eye.valid-focus-out:after{background-color:#6f9ee066}.input-custom-group .input-password-eye.valid-focus-in{display:inline-block}.input-custom-group .input-password-eye.valid-focus-in svg path{fill:#98b9ea}.input-custom-group .input-password-eye.valid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-password-eye.valid-focus-in:after{background-color:#c5d8f3}.input-custom-group .input-password-eye.invalid-focus-out svg{transition:.3s ease-in-out}.input-custom-group .input-password-eye.invalid-focus-out svg path{fill:#e57373}.input-custom-group .input-password-eye.invalid-focus-out:hover svg path{fill:#ef5350}.input-custom-group .input-password-eye.invalid-focus-out:after{background-color:#e5737366}.input-custom-group .input-password-eye.invalid-focus-in svg{transition:.3s ease-in-out}.input-custom-group .input-password-eye.invalid-focus-in svg path{fill:#ffb0a8}.input-custom-group .input-password-eye.invalid-focus-in:hover svg path{fill:#fff}.input-custom-group .input-password-eye.invalid-focus-in:after{background-color:#f5c7c7}@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}.input-custom-group .date_time_holder{display:flex;align-items:center;position:absolute;top:0;width:100%;height:100%;padding:0 6px;opacity:0;z-index:20;cursor:text}.input-custom-group .date_time_holder span{position:relative;line-height:14px;display:flex;height:100%;align-items:center;z-index:10}.input-custom-group .date_time_holder span .border-picker{position:absolute;top:0;left:50%;transform:translate(-50%);height:100%;display:flex;align-items:center;justify-content:center;width:0px}.input-custom-group .date_time_holder span::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder span div::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder::selection{background-color:transparent!important;color:#fff}.input-custom-group .date_time_holder span.main{padding:0 2px;outline:none;font-size:14px;z-index:11}.input-custom-group .date_time_holder span.main::selection{z-index:10}.input-custom-group .date_time_holder span.main:first-child{padding-left:4px}.input-custom-group .date_time_holder span.reset-selection-color::selection{background-color:transparent!important;color:#2f2f2f!important}.input-custom-group .date_time_holder.focus{opacity:1;padding-left:35px}.input-custom-group .date_time_holder.focus span:nth-child(2){z-index:12;pointer-events:none}.input-custom-group .date_time_holder.focus span:nth-child(3){z-index:13}.input-custom-group .date_time_holder.focus span:nth-child(4){z-index:14;pointer-events:none}.input-custom-group .date_time_holder.focus span:nth-child(5){z-index:15}.input-custom-group .date_time_holder.valid-focus-out-filled{opacity:1}.input-custom-group .date_time_holder.valid-focus-out-filled span,.input-custom-group .date_time_holder.valid-focus-out-filled span .border-picker{color:#2f2f2f!important;-webkit-user-select:none;user-select:none}.input-custom-group .date_time_holder.dark.valid-focus-out-filled{background:#3b73ed33!important}.input-custom-group .date_time_holder.dark.valid-focus-out-filled span,.input-custom-group .date_time_holder.dark.valid-focus-out-filled span .border-picker{color:#fff!important}.input-custom-group .date_time_holder.dark.valid-focus-out-filled:hover{background:#3b73ed66!important}.input-custom-group .date_time_holder.dark.valid-focus-in{background:#0b49d1!important}.input-custom-group .date_time_holder.dark.valid-focus-in span,.input-custom-group .date_time_holder.dark.valid-focus-in span .border-picker{color:#fff!important}.input-custom-group .date_time_holder.focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .date_time_holder.valid-focus-in{opacity:1}.input-custom-group .date_time_holder.valid-focus-in::selection,.input-custom-group .date_time_holder.valid-focus-in div::selection{background-color:#fff3;color:#fff}.input-custom-group .date_time_holder.invalid-focus-out-filled{opacity:1}.input-custom-group .date_time_holder.date_time_holder_bank_card span.main{padding:0 3px}.input-custom-group .ca-placeholder-text{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;top:50%;transform:translateY(-50%);color:#919191;font-weight:400;font-size:14px;line-height:18px;padding-left:1px}.input-custom-group .ca-placeholder-text svg text{fill:#919191}.input-custom-group .ca-placeholder-text.inactive-filled{color:#aaa}.input-custom-group .ca-placeholder-text.inactive-filled svg text{fill:#aaa}.input-custom-group .ca-placeholder-text.focus{color:#919191}.input-custom-group .ca-placeholder-text.focus svg text{fill:#919191}.input-custom-group .ca-placeholder-text.valid-focus-in{color:#c5d8f3}.input-custom-group .ca-placeholder-text.valid-focus-in svg text{fill:#c5d8f3}.input-custom-group .ca-placeholder-text.valid-focus-out{color:#919191}.input-custom-group .ca-placeholder-text.valid-focus-out svg text{fill:#919191}.input-custom-group .ca-placeholder-text.invalid-focus-in{color:#f5c7c7}.input-custom-group .ca-placeholder-text.invalid-focus-in svg text{fill:#f5c7c7}.input-custom-group .ca-placeholder-text.invalid-focus-out{color:#919191}.input-custom-group .ca-placeholder-text.invalid-focus-out svg text{fill:#919191}.input-custom-group .input-invalid-danger-mark{position:absolute;right:5px;top:48%;transform:translateY(-50%);line-height:13.3px}.input-custom-group .input-invalid-danger-mark svg{width:13.3px;height:13.3px}.input-custom-group .input-invalid-danger-mark svg path{fill:#e57373}.input-custom-group .password-capslock{position:absolute;right:5px;top:-16px;color:#ffb74d;font-size:11px;font-weight:600;margin:0;padding:0;-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.input-custom-group .ta-input-commands{display:flex;align-items:center;gap:4px;position:absolute;right:4px}.input-custom-group .ta-input-commands:before{content:attr(data-before-content);color:#919191;font-weight:400;font-size:14px;line-height:18px}.input-custom-group .ta-input-commands .ta-input-command-first{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-first .ta-input-command-svg-first:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands .ta-input-command-second{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-second .ta-input-command-svg-second:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands .ta-input-command-third{border-radius:1px;display:block;z-index:20;cursor:pointer}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg{width:18px!important;height:18px!important;overflow:visible;transition:transform .3s}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg path{fill:#1d1d1d}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#ccc}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands .ta-input-command-third .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#fff}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third svg rect{fill:none}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third svg path{fill:#6692f1}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg rect,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#6692f1}.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-first:hover svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-second:hover svg path,.input-custom-group .ta-input-commands.blue-commands .ta-input-command-svg-third:hover svg path{fill:#bed0f9}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third svg rect{fill:#ffffffb2}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first svg path,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second svg path,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third svg path{fill:#0b49d1}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first:hover svg,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second:hover svg,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third:hover svg{overflow:visible}.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-first:hover svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-second:hover svg rect,.input-custom-group .ta-input-commands.blue-commands-focus .ta-input-command-svg-third:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s}.input-custom-group .input-label-counter{position:absolute;display:flex;align-items:center;justify-content:center;width:22px;height:18px;font-size:11px;font-weight:700;color:#424242;background-color:#42424233;border-radius:9px;margin:0;padding-left:.5px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.input-custom-group .input-loading-spinner{position:absolute;right:6px;bottom:3px}.input-custom-group .input-pen-container{position:absolute;right:50px;top:46%;transform:translateY(-50%);display:none;z-index:10;cursor:pointer;transition:.3s ease-in-out}.input-custom-group .input-pen-container .input-pen svg{width:18px!important;height:18px!important;overflow:visible}.input-custom-group .input-pen-container .input-pen svg path{fill:#c5d8f3}.input-custom-group .input-pen-container .input-pen svg rect{transition:transform .3s;transform:scale(1);transform-origin:center;fill:#6f9ee0}.input-custom-group .input-pen-container .input-pen:hover svg{overflow:visible}.input-custom-group .input-pen-container .input-pen:hover svg rect{transform:scale(1.2);transform-origin:center;transition:transform .3s;fill:#3074d3}.input-custom-group .dropdown-selected-image{position:absolute;left:6px;top:48%;transform:translateY(-50%);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.input-custom-group .dropdown-selected-image.truck-make svg path{fill:#6c6c6c}.input-custom-group .dropdown-selected-image.trailer-make svg path{fill:#6c6c6c}.input-custom-group .dropdown-selected-image.name-initials-instead-url{width:18px;height:18px;border-radius:50%;object-fit:cover;top:50%;transform:translateY(-50%)}.input-custom-group .dropdown-selected-image.load-broker{height:26px}.input-custom-group .dropdown-selected-image.load-broker svg{height:18px}.input-custom-group .dropdown-selected-image.load-broker.medium svg #Path_33564{fill:#ffb74d}.input-custom-group .dropdown-selected-image.load-broker.low svg #Path_33564{fill:#e57373}.input-custom-group .dropdown-selected-image.semitruck svg path,.input-custom-group .dropdown-selected-image.semisleeper svg path,.input-custom-group .dropdown-selected-image.boxtruck svg path,.input-custom-group .dropdown-selected-image.reefertruck svg path,.input-custom-group .dropdown-selected-image.cargovan svg path,.input-custom-group .dropdown-selected-image.dumptruck svg path,.input-custom-group .dropdown-selected-image.cementtruck svg path,.input-custom-group .dropdown-selected-image.garbagetruckm .input-custom-group .dropdown-selected-image.towtruck svg path,.input-custom-group .dropdown-selected-image.carhauler svg path,.input-custom-group .dropdown-selected-image.spotter svg path,.input-custom-group .dropdown-selected-image.flatbed svg path,.input-custom-group .dropdown-selected-image.stepdeck svg path,.input-custom-group .dropdown-selected-image.lowboyrgn svg path,.input-custom-group .dropdown-selected-image.chassis svg path,.input-custom-group .dropdown-selected-image.conestoga svg path,.input-custom-group .dropdown-selected-image.sidekit svg path,.input-custom-group .dropdown-selected-image.container svg path,.input-custom-group .dropdown-selected-image.dryvan svg path,.input-custom-group .dropdown-selected-image.reefer svg path,.input-custom-group .dropdown-selected-image.enddump svg path,.input-custom-group .dropdown-selected-image.bottomdump svg path,.input-custom-group .dropdown-selected-image.hopper svg path,.input-custom-group .dropdown-selected-image.tanker svg path,.input-custom-group .dropdown-selected-image.pneumatictanker svg path,.input-custom-group .dropdown-selected-image.carhaulerstigner svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9856,.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9857,.input-custom-group .dropdown-selected-image.unset-color svg #Ellipse_9858,.input-custom-group .dropdown-selected-image.unset-color svg path{fill:#fff6!important}.input-custom-group .placeholder-icon-right-side{position:absolute;right:4px}.input-custom-group .placeholder-icon-right-side.green svg path{fill:#4db6a2}.input-custom-group .placeholder-icon-right-side.purple svg path{fill:#ba68c8}.input-custom-group .placeholder-icon-right-side.blue svg path{fill:#6f9ee0}.input-custom-group .placeholder-icon-right-side.orange svg path{fill:#f89b2e}.input-custom-group .placeholder-icon-right-side.red svg path{fill:#e66767}.input-custom-group .placeholder-icon-right-side:before{content:\"\";display:block;height:15px;width:1px;border-radius:3px;position:absolute;right:22px;top:55%;transform:translateY(-50%);background-color:#91919166}.input-custom-group .placeholder-icon-right-side.focus:before{background-color:#ccc6}.input-custom-group .placeholder-icon-right-side.valid-focus-out:before{background-color:#6f9ee066}.input-custom-group .placeholder-icon-right-side.valid-focus-in:before{background-color:#c5d8f3}.input-custom-group .placeholder-icon-right-side.invalid-focus-out:before{background-color:#e5737366}.input-custom-group .placeholder-icon-right-side.invalid-focus-in:before{background-color:#f5c7c7}.input-fixed-placehoder-label{color:#919191;position:absolute;right:0;font-size:14px;top:3px}.input-fixed-placehoder-input{padding-right:25px!important}.input-border-radius{border-radius:8px!important}.hide-input-value{text-indent:-9999px}.payroll-deduction-truck-svg{line-height:16px}.payroll-deduction-truck-svg svg{width:46px;height:16px}.payroll-deduction-truck{display:grid!important;grid-template-columns:305px 92px!important}\n"] }]
309
309
  }], ctorParameters: () => [{ type: i1.NgControl, decorators: [{
310
310
  type: Self
311
311
  }] }, { type: i0.ChangeDetectorRef }, { type: i2.InputStateService }, { type: i3.ThousandSeparatorPipe }], propDecorators: { input: [{
@@ -347,4 +347,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
347
347
  type: Output,
348
348
  args: ['dropDownKeyNavigation']
349
349
  }] } });
350
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtaW5wdXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQvY2EtaW5wdXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQvY2EtaW5wdXQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFFTCxzQkFBc0IsRUFDdEIsdUJBQXVCLEVBRXZCLFNBQVMsRUFFVCxZQUFZLEVBQ1osS0FBSyxFQUlMLE1BQU0sRUFDTixJQUFJLEVBRUosU0FBUyxFQUNULGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBRUwsV0FBVyxFQUVYLG1CQUFtQixHQUNwQixNQUFNLGdCQUFnQixDQUFDO0FBQ3hCLE9BQU8sRUFBRSxhQUFhLEVBQWMsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUNyRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQU14RCxRQUFRO0FBQ1IsT0FBTyxFQUNMLGNBQWMsRUFDZCx1QkFBdUIsRUFDdkIsY0FBYyxFQUNkLGNBQWMsRUFDZCxhQUFhLEVBQ2IseUJBQXlCLEVBQ3pCLGtCQUFrQixFQUNsQixhQUFhLEVBQ2IsMkJBQTJCLEVBQzNCLHFCQUFxQixFQUNyQiw2QkFBNkIsRUFDN0Isa0NBQWtDLEVBQ2xDLDZCQUE2QixFQUM3Qix1QkFBdUIsR0FDeEIsTUFBTSxTQUFTLENBQUM7QUFDakIsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ3BELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLG9DQUFvQyxDQUFDO0FBR3pFLGFBQWE7QUFDYixPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxrREFBa0QsQ0FBQztBQUMzRixPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxzREFBc0QsQ0FBQztBQUM3RixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSw0REFBNEQsQ0FBQztBQUN0RyxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSw0REFBNEQsQ0FBQztBQUN0RyxPQUFPLEVBQUUsK0JBQStCLEVBQUUsTUFBTSw0RUFBNEUsQ0FBQztBQUM3SCxPQUFPLEVBQUUsOEJBQThCLEVBQUUsTUFBTSwwRUFBMEUsQ0FBQztBQUMxSCxPQUFPLEVBQUUsZ0NBQWdDLEVBQUUsTUFBTSxvRUFBb0UsQ0FBQztBQUN0SCxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxnREFBZ0QsQ0FBQztBQUN6RixPQUFPLEVBQUUsK0JBQStCLEVBQUUsTUFBTSxvRUFBb0UsQ0FBQztBQUVySCxXQUFXO0FBQ1gsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sWUFBWSxDQUFDO0FBQy9DLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLHlFQUF5RSxDQUFDO0FBRXhILFVBQVU7QUFDVixPQUFPLEVBQW9CLGNBQWMsRUFBRSxNQUFNLFNBQVMsQ0FBQztBQUUzRCxVQUFVO0FBQ1YsT0FBTyxFQUFFLFNBQVMsRUFBRSxVQUFVLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUNuRSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sVUFBVSxDQUFDO0FBRXpDLGFBQWE7QUFDYixPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFFcEQsUUFBUTtBQUNSLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxlQUFlLEVBQUUsTUFBTSxTQUFTLENBQUM7QUFDN0QsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sNEJBQTRCLENBQUM7Ozs7Ozs7OztBQXFEdEUsTUFBTSxPQUFPLGdCQUFnQjtJQW1FM0IsWUFDaUIsWUFBdUIsRUFDOUIsS0FBd0IsRUFDekIsaUJBQW9DLEVBQ25DLHFCQUE0QztRQUhyQyxpQkFBWSxHQUFaLFlBQVksQ0FBVztRQUM5QixVQUFLLEdBQUwsS0FBSyxDQUFtQjtRQUN6QixzQkFBaUIsR0FBakIsaUJBQWlCLENBQW1CO1FBQ25DLDBCQUFxQixHQUFyQixxQkFBcUIsQ0FBdUI7UUEzRDVCLG1CQUFjLEdBQ3RDLElBQUksWUFBWSxFQUFXLENBQUM7UUFDVCxjQUFTLEdBQzVCLElBQUksWUFBWSxFQUFXLENBQUM7UUFDUixvQkFBZSxHQUNuQyxJQUFJLFlBQVksRUFBVyxDQUFDO1FBQ1osZ0JBQVcsR0FDM0IsSUFBSSxZQUFZLEVBQW9CLENBQUM7UUFDZixpQkFBWSxHQUNsQyxJQUFJLFlBQVksRUFBaUIsQ0FBQztRQUNuQixvQkFBZSxHQUM5QixJQUFJLFlBQVksRUFBVyxDQUFDO1FBRTlCLFdBQVc7UUFDaUIsMEJBQXFCLEdBQy9DLElBQUksWUFBWSxFQUFXLENBQUM7UUFDRywrQkFBMEIsR0FHdEQsSUFBSSxZQUFZLEVBR2pCLENBQUM7UUFFRSxtQkFBYyxHQUFZLEtBQUssQ0FBQztRQUV2QyxpQkFBaUI7UUFDVixzQkFBaUIsR0FBWSxLQUFLLENBQUM7UUFFMUMsYUFBYTtRQUNOLGdCQUFXLEdBQVksS0FBSyxDQUFDO1FBRXBDLFdBQVc7UUFDSixxQkFBZ0IsR0FBWSxLQUFLLENBQUM7UUFDbEMsaUJBQVksR0FBWSxLQUFLLENBQUM7UUFFckMsV0FBVztRQUNKLHNCQUFpQixHQUFZLEtBQUssQ0FBQztRQUUxQyxPQUFPO1FBQ0Esa0JBQWEsR0FBWSxLQUFLLENBQUM7UUFDL0Isc0JBQWlCLEdBQVMsSUFBSSxJQUFJLEVBQUUsQ0FBQztRQUNyQyxvQkFBZSxHQUFZLEtBQUssQ0FBQztRQUV4QyxVQUFVO1FBQ0YsYUFBUSxHQUFrQixJQUFJLE9BQU8sRUFBUSxDQUFDO1FBRS9DLG1CQUFjLEdBQUcsY0FBYyxDQUFDO1FBRWhDLGtDQUE2QixHQUFHLElBQUksQ0FBQztRQUVyQyxzQkFBaUIsR0FBRyxpQkFBaUIsQ0FBQztRQUN0QyxvQkFBZSxHQUFHLGVBQWUsQ0FBQztRQUNsQyw2QkFBd0IsR0FBRyx3QkFBd0IsQ0FBQztRQWtRcEQsa0JBQWEsR0FBRyxDQUFDLEtBQWEsRUFBVSxFQUFFLENBQUMsS0FBSyxDQUFDO1FBMVB0RCxJQUFJLENBQUMsWUFBWSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUM7SUFDekMsQ0FBQztJQUVELElBQUksZUFBZTtRQUNqQixPQUFPLElBQUksQ0FBQyxZQUFZLENBQUMsT0FBTyxDQUFDO0lBQ25DLENBQUM7SUFFRCxRQUFRO1FBQ04sSUFBSSxDQUFDLG1CQUFtQixFQUFFLENBQUM7UUFFM0IsSUFBSSxDQUFDLGdCQUFnQixFQUFFLENBQUM7UUFFeEIsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO0lBQ3pCLENBQUM7SUFFRCxXQUFXLENBQUMsT0FBc0I7UUFDaEMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUMvQixDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxtQkFBbUIsRUFBRSxDQUFDO0lBQy9DLENBQUM7SUFFTSxnQkFBZ0I7UUFDckIsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7UUFDMUQsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBRWxFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxrQkFBa0I7YUFDdEMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7YUFDOUIsU0FBUyxDQUNSLENBQUMsQ0FDQyxLQUFLLEVBQ0wsT0FBTyxFQUNQLGlCQUFpQixFQUNqQixXQUFXLEVBQ1gsaUJBQWlCLEVBQ2pCLGlCQUFpQixFQUNqQixhQUFhLEVBQ2IsWUFBWSxFQUNiLEVBQUUsRUFBRTtZQUNILElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDO1lBQzFCLElBQUksQ0FBQyxjQUFjLEdBQUcsT0FBTyxDQUFDO1lBQzlCLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxpQkFBaUIsQ0FBQztZQUMzQyxJQUFJLENBQUMsV0FBVyxHQUFHLFdBQVcsQ0FBQztZQUMvQixJQUFJLENBQUMsaUJBQWlCLEdBQUcsaUJBQWlCLENBQUM7WUFDM0MsSUFBSSxDQUFDLGlCQUFpQixHQUFHLGlCQUFpQixDQUFDO1lBQzNDLElBQUksQ0FBQyxhQUFhLEdBQUcsYUFBYSxDQUFDO1lBQ25DLElBQUksQ0FBQyxZQUFZLEdBQUcsWUFBWSxDQUFDO1FBQ25DLENBQUMsQ0FDRixDQUFDO0lBQ04sQ0FBQztJQUVNLGVBQWU7UUFDcEIsTUFBTSxXQUFXLEdBR1g7WUFDSjtnQkFDRSxPQUFPLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGFBQWE7Z0JBQzdDLE9BQU8sRUFBRSxJQUFJLENBQUMsWUFBWTthQUMzQjtZQUNEO2dCQUNFLE9BQU8sRUFBRSxJQUFJLENBQUMsaUJBQWlCLENBQUMsZ0JBQWdCO2dCQUNoRCxPQUFPLEVBQUUsSUFBSSxDQUFDLGVBQWU7YUFDOUI7WUFDRDtnQkFDRSxPQUFPLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGVBQWU7Z0JBQy9DLE9BQU8sRUFBRSxJQUFJLENBQUMsY0FBYzthQUM3QjtZQUNEO2dCQUNFLE9BQU8sRUFBRSxJQUFJLENBQUMsaUJBQWlCLENBQUMsVUFBVTtnQkFDMUMsT0FBTyxFQUFFLElBQUksQ0FBQyxTQUFTO2FBQ3hCO1lBQ0Q7Z0JBQ0UsT0FBTyxFQUFFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxZQUFZO2dCQUM1QyxPQUFPLEVBQUUsSUFBSSxDQUFDLFdBQVc7YUFDMUI7WUFDRDtnQkFDRSxPQUFPLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGlCQUFpQjtnQkFDakQsT0FBTyxFQUFFLElBQUksQ0FBQyxxQkFBcUI7YUFDcEM7WUFDRDtnQkFDRSxPQUFPLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHNCQUFzQjtnQkFDdEQsT0FBTyxFQUFFLElBQUksQ0FBQywwQkFBMEI7YUFDekM7U0FDRixDQUFDO1FBRUYsV0FBVyxDQUFDLE9BQU8sQ0FBQyxDQUFDLEVBQUUsT0FBTyxFQUFFLE9BQU8sRUFBRSxFQUFFLEVBQUUsQ0FDM0MsT0FBTzthQUNKLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO2FBQzlCLFNBQVMsQ0FBQyxDQUFDLEtBQVUsRUFBRSxFQUFFLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUNsRCxDQUFDO0lBQ0osQ0FBQztJQUVNLG1CQUFtQjtRQUN4QixNQUFNLGVBQWUsR0FBRyxhQUFhLENBQUM7WUFDcEMsSUFBSSxDQUFDLGVBQWUsRUFBRSxZQUFZO1lBQ2xDLElBQUksQ0FBQyxlQUFlLEVBQUUsYUFBYTtTQUNwQyxDQUFDLENBQUM7UUFFSCxlQUFlLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsR0FBRyxFQUFFO1lBQzVELElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxFQUFFLENBQUM7UUFDN0IsQ0FBQyxDQUFDLENBQUM7UUFFSCxJQUFJLENBQUMsaUJBQWlCLENBQUMsU0FBUzthQUM3QixJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQzthQUM5QixTQUFTLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRTtZQUNuQixJQUFJLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3ZCLENBQUMsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQUVNLGNBQWMsQ0FBQyxPQUFzQjtRQUMxQyxJQUFJLE9BQU8sQ0FBQyxhQUFhLENBQUMsRUFBRSxDQUFDO1lBQzNCLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxjQUFjLENBQ25DLE9BQU8sQ0FBQyxhQUFhLENBQUMsRUFBRSxZQUFZLENBQ3JDLENBQUM7WUFDRixJQUFJLENBQUMsaUJBQWlCLENBQUMsbUJBQW1CLEVBQUUsQ0FBQztRQUMvQyxDQUFDO1FBQ0QsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGlCQUFpQixDQUN0QyxPQUFPLENBQUMsZ0JBQWdCLENBQUMsRUFBRSxZQUFZLENBQ3hDLENBQUM7SUFDSixDQUFDO0lBRU0sVUFBVSxDQUFDLEdBQXFCO1FBQ3JDLElBQUksSUFBSSxDQUFDLFdBQVcsQ0FBQyxjQUFjLEVBQUUsQ0FBQztZQUNwQyxJQUFJLEdBQUcsSUFBSSxJQUFJLENBQUMsNkJBQTZCO2dCQUMzQyxJQUFJLENBQUMsS0FBSyxDQUFDLGFBQWEsQ0FBQyxLQUFLO29CQUM1QixJQUFJLENBQUMscUJBQXFCLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxDQUFDOztnQkFDekMsSUFBSSxDQUFDLEtBQUssQ0FBQyxhQUFhLENBQUMsS0FBSyxHQUFHLEdBQUcsQ0FBQztZQUUxQyxJQUFJLENBQUMsNkJBQTZCLEdBQUcsS0FBSyxDQUFDO1FBQzdDLENBQUM7UUFFRCxJQUFJLENBQUMsaUJBQWlCLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQ3pDLENBQUM7SUFFTSxnQkFBZ0IsQ0FBQyxFQUFPO1FBQzdCLElBQUksQ0FBQyxRQUFRLEdBQUcsRUFBRSxDQUFDO0lBQ3JCLENBQUM7SUFFTSxRQUFRLENBQUMsQ0FBTSxJQUFTLENBQUM7SUFFekIsaUJBQWlCLEtBQVUsQ0FBQztJQUU1QixNQUFNLENBQUMsS0FBa0I7UUFDOUIsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUVyQyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM1QixDQUFDO0lBRU0sT0FBTyxDQUFDLEtBQWtCO1FBQy9CLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBRWhDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDeEMsQ0FBQztJQUVNLFVBQVUsQ0FBQyxLQUFvQjtRQUNwQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzNDLENBQUM7SUFFTSxTQUFTLENBQUMsS0FBb0I7UUFDbkMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMxQyxDQUFDO0lBRU0sT0FBTyxDQUFDLEtBQW9CO1FBQ2pDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDeEMsQ0FBQztJQUVNLGFBQWEsQ0FBQyxLQUFZO1FBQy9CLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDOUMsQ0FBQztJQUVNLFVBQVUsQ0FBQyxLQUFZO1FBQzVCLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDM0MsQ0FBQztJQUVNLGdCQUFnQixDQUFDLEtBQVk7UUFDbEMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQ3ZCLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQztJQUNqRCxDQUFDO0lBRU0sVUFBVSxDQUFDLEtBSWpCO1FBQ0MsSUFBSSxDQUFDLGlCQUFpQixDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsS0FBSyxFQUFFLEtBQUssQ0FBQyxJQUFJLEVBQUUsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQzNFLENBQUM7SUFFTSxXQUFXLENBQUMsS0FBWTtRQUM3QixJQUFJLENBQUMsaUJBQWlCLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzVDLENBQUM7SUFFTSxxQkFBcUI7UUFDMUIsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHFCQUFxQixFQUFFLENBQUM7SUFDakQsQ0FBQztJQUVNLHNCQUFzQixDQUFDLEtBQVk7UUFDeEMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHNCQUFzQixDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ3ZELENBQUM7SUFFTSxzQkFBc0IsQ0FBQyxLQUFVO1FBQ3RDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxzQkFBc0IsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN2RCxDQUFDO0lBRUQsa0dBQWtHO0lBRTNGLGVBQWUsQ0FBQyxLQUFZO1FBQ2pDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxlQUFlLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDaEQsQ0FBQztJQUVNLFdBQVcsQ0FBQyxLQUFxQjtRQUN0QyxJQUFJLENBQUMsaUJBQWlCLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzVDLENBQUM7SUFFTSxZQUFZLENBQUMsS0FJbkI7UUFDQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzdDLENBQUM7SUFFTSxlQUFlLENBQUMsS0FHdEI7UUFDQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsZUFBZSxDQUFDLEtBQUssQ0FBQyxDQUFDLEVBQUUsS0FBSyxDQUFDLGdCQUFnQixDQUFDLENBQUM7SUFDMUUsQ0FBQztJQUVNLGNBQWM7UUFDbkIsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGNBQWMsRUFBRSxDQUFDO0lBQzFDLENBQUM7SUFFTSxlQUFlO1FBQ3BCLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxlQUFlLEVBQUUsQ0FBQztJQUMzQyxDQUFDO0lBRU0sWUFBWTtRQUNqQixJQUFJLElBQUksQ0FBQyxjQUFjO1lBQUUsSUFBSSxDQUFDLGNBQWMsQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUN2RCxDQUFDO0lBRU0seUJBQXlCO1FBQzlCLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyx5QkFBeUIsRUFBRSxDQUFDO0lBQ3JELENBQUM7SUFFTSx5QkFBeUI7UUFDOUIsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHlCQUF5QixFQUFFLENBQUM7SUFDckQsQ0FBQztJQUlELFdBQVc7UUFDVCxJQUFJLENBQUMsaUJBQWlCLENBQUMsU0FBUyxFQUFFLENBQUM7UUFDbkMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNyQixJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQzNCLENBQUM7K0dBelVVLGdCQUFnQjttR0FBaEIsZ0JBQWdCLDBlQUZoQixDQUFDLGlCQUFpQixFQUFFLDZCQUE2QixDQUFDLHlLQU1sRCxVQUFVLHFFQ3pJdkIscWlxQkEwcEJjO2dCRGhrQlYsU0FBUztnQkFDVCxZQUFZLGtiQUNaLFdBQVcsOG1CQUNYLG1CQUFtQiw4QkFDbkIsb0JBQW9CLGdPQUNwQixTQUFTLHNXQUNULGFBQWE7Z0JBRWIsT0FBTztnQkFDUCxjQUFjLDhDQUNkLHVCQUF1Qix1REFDdkIsY0FBYyw4Q0FDZCxjQUFjLDhDQUNkLGFBQWEsNkNBQ2IseUJBQXlCLHlEQUN6QixrQkFBa0Isa0RBQ2xCLGFBQWEsNkNBQ2IsMkJBQTJCLDJEQUMzQixxQkFBcUIscURBQ3JCLFNBQVMseUNBRVQsbUJBQW1CLG1EQUNuQixrQ0FBa0Msa0VBQ2xDLDZCQUE2Qiw2REFDN0IsdUJBQXVCO2dCQUV2QixhQUFhO2dCQUNiLHFCQUFxQixxTkFDckIsdUJBQXVCLHFPQUN2Qix3QkFBd0Isd05BQ3hCLCtCQUErQix1VEFDL0Isd0JBQXdCLDhKQUN4QixnQ0FBZ0MsMEtBQ2hDLDhCQUE4QiwwWEFDOUIsdUJBQXVCLGtNQUN2QiwrQkFBK0I7Z0JBRS9CLGFBQWE7Z0JBQ2Isb0JBQW9COzs0RkFLWCxnQkFBZ0I7a0JBbkQ1QixTQUFTOytCQUNFLGNBQWMsaUJBR1QsaUJBQWlCLENBQUMsSUFBSSxtQkFDcEIsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1A7d0JBQ1AsU0FBUzt3QkFDVCxZQUFZO3dCQUNaLFdBQVc7d0JBQ1gsbUJBQW1CO3dCQUNuQixvQkFBb0I7d0JBQ3BCLFNBQVM7d0JBQ1QsYUFBYTt3QkFFYixPQUFPO3dCQUNQLGNBQWM7d0JBQ2QsdUJBQXVCO3dCQUN2QixjQUFjO3dCQUNkLGNBQWM7d0JBQ2QsYUFBYTt3QkFDYix5QkFBeUI7d0JBQ3pCLGtCQUFrQjt3QkFDbEIsYUFBYTt3QkFDYiwyQkFBMkI7d0JBQzNCLHFCQUFxQjt3QkFDckIsU0FBUzt3QkFDVCw2QkFBNkI7d0JBQzdCLG1CQUFtQjt3QkFDbkIsa0NBQWtDO3dCQUNsQyw2QkFBNkI7d0JBQzdCLHVCQUF1Qjt3QkFFdkIsYUFBYTt3QkFDYixxQkFBcUI7d0JBQ3JCLHVCQUF1Qjt3QkFDdkIsd0JBQXdCO3dCQUN4QiwrQkFBK0I7d0JBQy9CLHdCQUF3Qjt3QkFDeEIsZ0NBQWdDO3dCQUNoQyw4QkFBOEI7d0JBQzlCLHVCQUF1Qjt3QkFDdkIsK0JBQStCO3dCQUUvQixhQUFhO3dCQUNiLG9CQUFvQjtxQkFDckIsV0FDUSxDQUFDLHNCQUFzQixDQUFDLGFBQ3RCLENBQUMsaUJBQWlCLEVBQUUsNkJBQTZCLENBQUM7OzBCQXNFMUQsSUFBSTs2SUFqRXNDLEtBQUs7c0JBQWpELFNBQVM7dUJBQUMsT0FBTyxFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRTtnQkFDYixjQUFjO3NCQUFwQyxTQUFTO3VCQUFDLFVBQVU7Z0JBRVosV0FBVztzQkFBbkIsS0FBSztnQkFFRyxjQUFjO3NCQUF0QixLQUFLO2dCQUNHLDBCQUEwQjtzQkFBbEMsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUVvQixjQUFjO3NCQUF2QyxNQUFNO3VCQUFDLGdCQUFnQjtnQkFFSCxTQUFTO3NCQUE3QixNQUFNO3VCQUFDLFdBQVc7Z0JBRUcsZUFBZTtzQkFBcEMsTUFBTTt1QkFBQyxZQUFZO2dCQUVGLFdBQVc7c0JBQTVCLE1BQU07dUJBQUMsUUFBUTtnQkFFUSxZQUFZO3NCQUFuQyxNQUFNO3VCQUFDLGNBQWM7Z0JBRUwsZUFBZTtzQkFBL0IsTUFBTTt1QkFBQyxPQUFPO2dCQUlhLHFCQUFxQjtzQkFBaEQsTUFBTTt1QkFBQyxrQkFBa0I7Z0JBRU8sMEJBQTBCO3NCQUExRCxNQUFNO3VCQUFDLHVCQUF1QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge1xuICBBZnRlclZpZXdJbml0LFxuICBDVVNUT01fRUxFTUVOVFNfU0NIRU1BLFxuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gIENvbXBvbmVudCxcbiAgRWxlbWVudFJlZixcbiAgRXZlbnRFbWl0dGVyLFxuICBJbnB1dCxcbiAgT25DaGFuZ2VzLFxuICBPbkRlc3Ryb3ksXG4gIE9uSW5pdCxcbiAgT3V0cHV0LFxuICBTZWxmLFxuICBTaW1wbGVDaGFuZ2VzLFxuICBWaWV3Q2hpbGQsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7XG4gIENvbnRyb2xWYWx1ZUFjY2Vzc29yLFxuICBGb3Jtc01vZHVsZSxcbiAgTmdDb250cm9sLFxuICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxufSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBjb21iaW5lTGF0ZXN0LCBPYnNlcnZhYmxlLCBTdWJqZWN0LCB0YWtlVW50aWwgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IEFuZ3VsYXJTdmdJY29uTW9kdWxlIH0gZnJvbSAnYW5ndWxhci1zdmctaWNvbic7XG5cbi8vIG1vZGVsc1xuaW1wb3J0IHsgSUNhSW5wdXQgfSBmcm9tICcuL2NvbmZpZyc7XG5pbXBvcnQgeyBMYWJlbENvbG9yLCBDb21tYW5kc0V2ZW50IH0gZnJvbSAnLi9tb2RlbHMnO1xuXG4vLyBwaXBlc1xuaW1wb3J0IHtcbiAgSW5wdXRFcnJvclBpcGUsXG4gIElucHV0Q29udGFpbmVyQ2xhc3NQaXBlLFxuICBJbnB1dENsYXNzUGlwZSxcbiAgTGFiZWxDbGFzc1BpcGUsXG4gIFNob3dDbGVhclBpcGUsXG4gIFNob3dJbnZhbGlkRGFuZ2VyTWFya1BpcGUsXG4gIFNob3dWYWxpZENoZWNrUGlwZSxcbiAgSW5wdXRUeXBlUGlwZSxcbiAgSW5wdXREcm9wZG93bkFycm93Q2xhc3NQaXBlLFxuICBTaG93RHJvcGRvd25BcnJvd1BpcGUsXG4gIElucHV0UGxhY2Vob2xkZXJJY29uQ2xhc3NQaXBlLFxuICBJbnB1dFBsYWNlaG9sZGVySWNvblJpZ2h0Q2xhc3NQaXBlLFxuICBJbnB1dFBsYWNlaG9sZGVyVGV4dENsYXNzUGlwZSxcbiAgU2hvd1BsYWNlaG9sZGVyVGV4dFBpcGUsXG59IGZyb20gJy4vcGlwZXMnO1xuaW1wb3J0IHsgQ2FTdmdQaXBlIH0gZnJvbSAnLi4vLi4vcGlwZXMvY2Etc3ZnLnBpcGUnO1xuaW1wb3J0IHsgTG9hZFN0YXR1c0NvbG9yUGlwZSB9IGZyb20gJy4uLy4uL3BpcGVzL2xvYWQtc3RhdHVzLWNvbG9yLnBpcGUnO1xuaW1wb3J0IHsgVGhvdXNhbmRTZXBhcmF0b3JQaXBlIH0gZnJvbSAnLi4vLi4vcGlwZXMvdGhvdXNhbmQtc2VwYXJhdG9yLnBpcGUnO1xuXG4vLyBjb21wb25lbnRzXG5pbXBvcnQgeyBDYUFwcFRvb2x0aXBWMkNvbXBvbmVudCB9IGZyb20gJy4uL2NhLWFwcC10b29sdGlwLXYyL2NhLWFwcC10b29sdGlwLXYyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDYUlucHV0Q2xlYXJDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY2EtaW5wdXQtY2xlYXIvY2EtaW5wdXQtY2xlYXIuY29tcG9uZW50JztcbmltcG9ydCB7IENhSW5wdXRDb21tYW5kc0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9jYS1pbnB1dC1jb21tYW5kcy9jYS1pbnB1dC1jb21tYW5kcy5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ2FJbnB1dFBhc3N3b3JkQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2NhLWlucHV0LXBhc3N3b3JkL2NhLWlucHV0LXBhc3N3b3JkLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDYUlucHV0UGxhY2Vob2xkZXJJY29uQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2NhLWlucHV0LXBsYWNlaG9sZGVyLWljb24vY2EtaW5wdXQtcGxhY2Vob2xkZXItaWNvbi5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ2FJbnB1dERhdGV0aW1lUGlja2VyQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2NhLWlucHV0LWRhdGV0aW1lLXBpY2tlci9jYS1pbnB1dC1kYXRldGltZS1waWNrZXIuY29tcG9uZW50JztcbmltcG9ydCB7IENhQ3VzdG9tRGF0ZXRpbWVQaWNrZXJzQ29tcG9uZW50IH0gZnJvbSAnLi4vY2EtY3VzdG9tLWRhdGV0aW1lLXBpY2tlcnMvY2EtY3VzdG9tLWRhdGV0aW1lLXBpY2tlcnMuY29tcG9uZW50JztcbmltcG9ydCB7IENhUHJvZmlsZUltYWdlQ29tcG9uZW50IH0gZnJvbSAnLi4vY2EtcHJvZmlsZS1pbWFnZS9jYS1wcm9maWxlLWltYWdlLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDYUxvYWRNb2RhbFByb2dyZXNzQmFyQ29tcG9uZW50IH0gZnJvbSAnLi4vY2EtbG9hZC1tb2RhbC1wcm9ncmVzcy1iYXIvY2EtbG9hZC1tb2RhbC1wcm9ncmVzcy1iYXIuY29tcG9uZW50JztcblxuLy8gc2VydmljZXNcbmltcG9ydCB7IElucHV0U3RhdGVTZXJ2aWNlIH0gZnJvbSAnLi9zZXJ2aWNlcyc7XG5pbXBvcnQgeyBDYWxlbmRhckRhdGVUaW1lUGlja2VyU2VydmljZSB9IGZyb20gJy4uL2NhLWN1c3RvbS1kYXRldGltZS1waWNrZXJzL3NlcnZpY2VzL2NhbGVuZGFyLWRhdGV0aW1lLXBpY2tlci5zZXJ2aWNlJztcblxuLy8gaGVscGVyc1xuaW1wb3J0IHsgSW5wdXRDaGFuZ2VWYWx1ZSwgSW5wdXRTdmdSb3V0ZXMgfSBmcm9tICcuL3V0aWxzJztcblxuLy8gbW9kdWxlc1xuaW1wb3J0IHsgTmdiTW9kdWxlLCBOZ2JQb3BvdmVyIH0gZnJvbSAnQG5nLWJvb3RzdHJhcC9uZy1ib290c3RyYXAnO1xuaW1wb3J0IHsgTmd4TWFza01vZHVsZSB9IGZyb20gJ25neC1tYXNrJztcblxuLy8gZGlyZWN0aXZlc1xuaW1wb3J0IHsgTWluTWF4VmFsdWVEaXJlY3RpdmUgfSBmcm9tICcuL2RpcmVjdGl2ZXMnO1xuXG4vLyBlbnVtc1xuaW1wb3J0IHsgSW5wdXRDb21tYW5kc1R5cGUsIElucHV0U3RyaW5nRW51bSB9IGZyb20gJy4vZW51bXMnO1xuaW1wb3J0IHsgRHJvcGRvd25UZW1wbGF0ZVR5cGVFbnVtIH0gZnJvbSAnLi4vY2EtaW5wdXQtZHJvcGRvd24vZW51bXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhcHAtY2EtaW5wdXQnLFxuICB0ZW1wbGF0ZVVybDogJy4vY2EtaW5wdXQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jYS1pbnB1dC5jb21wb25lbnQuc2NzcyddLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIC8vIE1vZHVsZVxuICAgIENvbW1vbk1vZHVsZSxcbiAgICBGb3Jtc01vZHVsZSxcbiAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgIEFuZ3VsYXJTdmdJY29uTW9kdWxlLFxuICAgIE5nYk1vZHVsZSxcbiAgICBOZ3hNYXNrTW9kdWxlLFxuXG4gICAgLy8gUGlwZVxuICAgIElucHV0RXJyb3JQaXBlLFxuICAgIElucHV0Q29udGFpbmVyQ2xhc3NQaXBlLFxuICAgIElucHV0Q2xhc3NQaXBlLFxuICAgIExhYmVsQ2xhc3NQaXBlLFxuICAgIFNob3dDbGVhclBpcGUsXG4gICAgU2hvd0ludmFsaWREYW5nZXJNYXJrUGlwZSxcbiAgICBTaG93VmFsaWRDaGVja1BpcGUsXG4gICAgSW5wdXRUeXBlUGlwZSxcbiAgICBJbnB1dERyb3Bkb3duQXJyb3dDbGFzc1BpcGUsXG4gICAgU2hvd0Ryb3Bkb3duQXJyb3dQaXBlLFxuICAgIENhU3ZnUGlwZSxcbiAgICBJbnB1dFBsYWNlaG9sZGVySWNvbkNsYXNzUGlwZSxcbiAgICBMb2FkU3RhdHVzQ29sb3JQaXBlLFxuICAgIElucHV0UGxhY2Vob2xkZXJJY29uUmlnaHRDbGFzc1BpcGUsXG4gICAgSW5wdXRQbGFjZWhvbGRlclRleHRDbGFzc1BpcGUsXG4gICAgU2hvd1BsYWNlaG9sZGVyVGV4dFBpcGUsXG5cbiAgICAvLyBDb21wb25lbnRzXG4gICAgQ2FJbnB1dENsZWFyQ29tcG9uZW50LFxuICAgIENhQXBwVG9vbHRpcFYyQ29tcG9uZW50LFxuICAgIENhSW5wdXRQYXNzd29yZENvbXBvbmVudCxcbiAgICBDYUlucHV0UGxhY2Vob2xkZXJJY29uQ29tcG9uZW50LFxuICAgIENhSW5wdXRDb21tYW5kc0NvbXBvbmVudCxcbiAgICBDYUN1c3RvbURhdGV0aW1lUGlja2Vyc0NvbXBvbmVudCxcbiAgICBDYUlucHV0RGF0ZXRpbWVQaWNrZXJDb21wb25lbnQsXG4gICAgQ2FQcm9maWxlSW1hZ2VDb21wb25lbnQsXG4gICAgQ2FMb2FkTW9kYWxQcm9ncmVzc0JhckNvbXBvbmVudCxcblxuICAgIC8vIERpcmVjdGl2ZXNcbiAgICBNaW5NYXhWYWx1ZURpcmVjdGl2ZSxcbiAgXSxcbiAgc2NoZW1hczogW0NVU1RPTV9FTEVNRU5UU19TQ0hFTUFdLFxuICBwcm92aWRlcnM6IFtJbnB1dFN0YXRlU2VydmljZSwgQ2FsZW5kYXJEYXRlVGltZVBpY2tlclNlcnZpY2VdLFxufSlcbmV4cG9ydCBjbGFzcyBDYUlucHV0Q29tcG9uZW50XG4gIGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3ksIE9uQ2hhbmdlcywgQWZ0ZXJWaWV3SW5pdCwgQ29udHJvbFZhbHVlQWNjZXNzb3JcbntcbiAgQFZpZXdDaGlsZCgnaW5wdXQnLCB7IHN0YXRpYzogdHJ1ZSB9KSBwdWJsaWMgaW5wdXQhOiBFbGVtZW50UmVmO1xuICBAVmlld0NoaWxkKE5nYlBvcG92ZXIpIG5nYk1haW5Qb3BvdmVyITogTmdiUG9wb3ZlcjtcblxuICBASW5wdXQoKSBpbnB1dENvbmZpZyE6IElDYUlucHV0O1xuXG4gIEBJbnB1dCgpIGluY29ycmVjdFZhbHVlITogYm9vbGVhbjtcbiAgQElucHV0KCkgc2VsZWN0ZWREcm9wZG93bkxhYmVsQ29sb3IhOiBMYWJlbENvbG9yIHwgbnVsbDtcbiAgQElucHV0KCkgdGVtcGxhdGUhOiBzdHJpbmc7XG5cbiAgQE91dHB1dCgnaW5jb3JyZWN0RXZlbnQnKSBpbmNvcnJlY3RJbnB1dDogRXZlbnRFbWl0dGVyPGJvb2xlYW4+ID1cbiAgICBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG4gIEBPdXRwdXQoJ2JsdXJJbnB1dCcpIGJsdXJJbnB1dDogRXZlbnRFbWl0dGVyPGJvb2xlYW4+ID1cbiAgICBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG4gIEBPdXRwdXQoJ2ZvY3VzSW5wdXQnKSBmb2N1c0lucHV0RXZlbnQ6IEV2ZW50RW1pdHRlcjxib29sZWFuPiA9XG4gICAgbmV3IEV2ZW50RW1pdHRlcjxib29sZWFuPigpO1xuICBAT3V0cHV0KCdjaGFuZ2UnKSBjaGFuZ2VJbnB1dDogRXZlbnRFbWl0dGVyPElucHV0Q2hhbmdlVmFsdWU+ID1cbiAgICBuZXcgRXZlbnRFbWl0dGVyPElucHV0Q2hhbmdlVmFsdWU+KCk7XG4gIEBPdXRwdXQoJ2NvbW1hbmRFdmVudCcpIGNvbW1hbmRFdmVudDogRXZlbnRFbWl0dGVyPENvbW1hbmRzRXZlbnQ+ID1cbiAgICBuZXcgRXZlbnRFbWl0dGVyPENvbW1hbmRzRXZlbnQ+KCk7XG4gIEBPdXRwdXQoJ2NsZWFyJykgY2xlYXJJbnB1dEV2ZW50OiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPVxuICAgIG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcblxuICAvLyBEcm9wZG93blxuICBAT3V0cHV0KCdzaG93SGlkZURyb3Bkb3duJykgc2hvd0hpZGVEcm9wZG93bkV2ZW50OiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPVxuICAgIG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcbiAgQE91dHB1dCgnZHJvcERvd25LZXlOYXZpZ2F0aW9uJykgZHJvcERvd25LZXlOYXZpZ2F0aW9uRXZlbnQ6IEV2ZW50RW1pdHRlcjx7XG4gICAga2V5Q29kZTogbnVtYmVyO1xuICAgIGRhdGE6IElDYUlucHV0IHwgbnVsbDtcbiAgfT4gPSBuZXcgRXZlbnRFbWl0dGVyPHtcbiAgICBrZXlDb2RlOiBudW1iZXI7XG4gICAgZGF0YTogSUNhSW5wdXQgfCBudWxsO1xuICB9PigpO1xuXG4gIHB1YmxpYyBpc1RvdWNoZWRJbnB1dDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIC8vIElucHV0IENvbW1hbmRzXG4gIHB1YmxpYyBpc1Zpc2libGVDb21tYW5kczogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIC8vIEVkaXQgSW5wdXRcbiAgcHVibGljIGlzRWRpdElucHV0OiBib29sZWFuID0gZmFsc2U7XG5cbiAgLy8gUGFzc3dvcmRcbiAgcHVibGljIGlzVG9nZ2xlUGFzc3dvcmQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgcHVibGljIGlzQ2Fwc0xvY2tPbjogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIC8vIERyb3Bkb3duXG4gIHB1YmxpYyBpc0Ryb3Bkb3duVG9nZ2xlcjogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIC8vIERhdGVcbiAgcHVibGljIHNob3dEYXRlSW5wdXQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgcHVibGljIGRhdGVUaW1lSW5wdXREYXRlOiBEYXRlID0gbmV3IERhdGUoKTtcbiAgcHVibGljIG5ld0lucHV0Q2hhbmdlZDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIC8vIERlc3Ryb3lcbiAgcHJpdmF0ZSBkZXN0cm95JDogU3ViamVjdDx2b2lkPiA9IG5ldyBTdWJqZWN0PHZvaWQ+KCk7XG5cbiAgcHVibGljIGlucHV0U3ZnUm91dGVzID0gSW5wdXRTdmdSb3V0ZXM7XG4gIHB1YmxpYyBpc0ZvY3VzSW5wdXQhOiBib29sZWFuO1xuICBwdWJsaWMgcHJpY2VTZXBlcmF0b3JXaXRoRmlsbGVkVmFsdWUgPSB0cnVlO1xuXG4gIHB1YmxpYyBpbnB1dENvbW1hbmRzVHlwZSA9IElucHV0Q29tbWFuZHNUeXBlO1xuICBwdWJsaWMgaW5wdXRTdHJpbmdFbnVtID0gSW5wdXRTdHJpbmdFbnVtO1xuICBwdWJsaWMgZHJvcGRvd25UZW1wbGF0ZVR5cGVFbnVtID0gRHJvcGRvd25UZW1wbGF0ZVR5cGVFbnVtO1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIEBTZWxmKCkgcHVibGljIHN1cGVyQ29udHJvbDogTmdDb250cm9sLFxuICAgIHByaXZhdGUgY2RSZWY6IENoYW5nZURldGVjdG9yUmVmLFxuICAgIHB1YmxpYyBpbnB1dFN0YXRlU2VydmljZTogSW5wdXRTdGF0ZVNlcnZpY2UsXG4gICAgcHJpdmF0ZSB0aG91c2FuZFNlcGFyYXRvclBpcGU6IFRob3VzYW5kU2VwYXJhdG9yUGlwZVxuICApIHtcbiAgICB0aGlzLnN1cGVyQ29udHJvbC52YWx1ZUFjY2Vzc29yID0gdGhpcztcbiAgfVxuXG4gIGdldCBnZXRTdXBlckNvbnRyb2woKSB7XG4gICAgcmV0dXJuIHRoaXMuc3VwZXJDb250cm9sLmNvbnRyb2w7XG4gIH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmluaXRDaGFuZ2VzTGlzdGVuZXIoKTtcblxuICAgIHRoaXMuaW5pdFN0YXRlU2VydmljZSgpO1xuXG4gICAgdGhpcy5vdXRwdXRMaXN0ZW5lcnMoKTtcbiAgfVxuXG4gIG5nT25DaGFuZ2VzKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpOiB2b2lkIHtcbiAgICB0aGlzLnNldFN0YXRlSW5wdXRzKGNoYW5nZXMpO1xuICB9XG5cbiAgbmdBZnRlclZpZXdJbml0KCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2UuYXV0b0ZvY3VzRmlyc3RJbnB1dCgpO1xuICB9XG5cbiAgcHVibGljIGluaXRTdGF0ZVNlcnZpY2UoKTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5zZXRTdXBlckNvbnRyb2wodGhpcy5zdXBlckNvbnRyb2wpO1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uuc2V0SW5wdXRFbGVtZW50UmVmKHRoaXMuaW5wdXQsIHRoaXMuY2RSZWYpO1xuXG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5jb21iaW5lZFZhcmlhYmxlcyRcbiAgICAgIC5waXBlKHRha2VVbnRpbCh0aGlzLmRlc3Ryb3kkKSlcbiAgICAgIC5zdWJzY3JpYmUoXG4gICAgICAgIChbXG4gICAgICAgICAgZm9jdXMsXG4gICAgICAgICAgdG91Y2hlZCxcbiAgICAgICAgICBpc1Zpc2libGVDb21tYW5kcyxcbiAgICAgICAgICBpc0VkaXRJbnB1dCxcbiAgICAgICAgICBpc0Ryb3Bkb3duVG9nZ2xlcixcbiAgICAgICAgICBkYXRlVGltZUlucHV0RGF0ZSxcbiAgICAgICAgICBzaG93RGF0ZUlucHV0LFxuICAgICAgICAgIGlzQ2Fwc0xvY2tPbixcbiAgICAgICAgXSkgPT4ge1xuICAgICAgICAgIHRoaXMuaXNGb2N1c0lucHV0ID0gZm9jdXM7XG4gICAgICAgICAgdGhpcy5pc1RvdWNoZWRJbnB1dCA9IHRvdWNoZWQ7XG4gICAgICAgICAgdGhpcy5pc1Zpc2libGVDb21tYW5kcyA9IGlzVmlzaWJsZUNvbW1hbmRzO1xuICAgICAgICAgIHRoaXMuaXNFZGl0SW5wdXQgPSBpc0VkaXRJbnB1dDtcbiAgICAgICAgICB0aGlzLmlzRHJvcGRvd25Ub2dnbGVyID0gaXNEcm9wZG93blRvZ2dsZXI7XG4gICAgICAgICAgdGhpcy5kYXRlVGltZUlucHV0RGF0ZSA9IGRhdGVUaW1lSW5wdXREYXRlO1xuICAgICAgICAgIHRoaXMuc2hvd0RhdGVJbnB1dCA9IHNob3dEYXRlSW5wdXQ7XG4gICAgICAgICAgdGhpcy5pc0NhcHNMb2NrT24gPSBpc0NhcHNMb2NrT247XG4gICAgICAgIH1cbiAgICAgICk7XG4gIH1cblxuICBwdWJsaWMgb3V0cHV0TGlzdGVuZXJzKCk6IHZvaWQge1xuICAgIGNvbnN0IG9ic2VydmFibGVzOiB7XG4gICAgICBzdHJlYW0kOiBPYnNlcnZhYmxlPGFueT47XG4gICAgICBlbWl0dGVyOiBFdmVudEVtaXR0ZXI8YW55PjtcbiAgICB9W10gPSBbXG4gICAgICB7XG4gICAgICAgIHN0cmVhbSQ6IHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2UuY29tbWFuZEV2ZW50JCxcbiAgICAgICAgZW1pdHRlcjogdGhpcy5jb21tYW5kRXZlbnQsXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBzdHJlYW0kOiB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLmNsZWFySW5wdXRFdmVudCQsXG4gICAgICAgIGVtaXR0ZXI6IHRoaXMuY2xlYXJJbnB1dEV2ZW50LFxuICAgICAgfSxcbiAgICAgIHtcbiAgICAgICAgc3RyZWFtJDogdGhpcy5pbnB1dFN0YXRlU2VydmljZS5pbmNvcnJlY3RJbnB1dCQsXG4gICAgICAgIGVtaXR0ZXI6IHRoaXMuaW5jb3JyZWN0SW5wdXQsXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBzdHJlYW0kOiB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLmJsdXJJbnB1dCQsXG4gICAgICAgIGVtaXR0ZXI6IHRoaXMuYmx1cklucHV0LFxuICAgICAgfSxcbiAgICAgIHtcbiAgICAgICAgc3RyZWFtJDogdGhpcy5pbnB1dFN0YXRlU2VydmljZS5jaGFuZ2VJbnB1dCQsXG4gICAgICAgIGVtaXR0ZXI6IHRoaXMuY2hhbmdlSW5wdXQsXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBzdHJlYW0kOiB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLnNob3dIaWRlRHJvcGRvd24kLFxuICAgICAgICBlbWl0dGVyOiB0aGlzLnNob3dIaWRlRHJvcGRvd25FdmVudCxcbiAgICAgIH0sXG4gICAgICB7XG4gICAgICAgIHN0cmVhbSQ6IHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2UuZHJvcERvd25LZXlOYXZpZ2F0aW9uJCxcbiAgICAgICAgZW1pdHRlcjogdGhpcy5kcm9wRG93bktleU5hdmlnYXRpb25FdmVudCxcbiAgICAgIH0sXG4gICAgXTtcblxuICAgIG9ic2VydmFibGVzLmZvckVhY2goKHsgc3RyZWFtJCwgZW1pdHRlciB9KSA9PlxuICAgICAgc3RyZWFtJFxuICAgICAgICAucGlwZSh0YWtlVW50aWwodGhpcy5kZXN0cm95JCkpXG4gICAgICAgIC5zdWJzY3JpYmUoKHZhbHVlOiBhbnkpID0+IGVtaXR0ZXIuZW1pdCh2YWx1ZSkpXG4gICAgKTtcbiAgfVxuXG4gIHB1YmxpYyBpbml0Q2hhbmdlc0xpc3RlbmVyKCk6IHZvaWQge1xuICAgIGNvbnN0IGNvbWJpbmVkQ2hhbmdlcyA9IGNvbWJpbmVMYXRlc3QoW1xuICAgICAgdGhpcy5nZXRTdXBlckNvbnRyb2w/LnZhbHVlQ2hhbmdlcyxcbiAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sPy5zdGF0dXNDaGFuZ2VzLFxuICAgIF0pO1xuXG4gICAgY29tYmluZWRDaGFuZ2VzLnBpcGUodGFrZVVudGlsKHRoaXMuZGVzdHJveSQpKS5zdWJzY3JpYmUoKCkgPT4ge1xuICAgICAgdGhpcy5jZFJlZi5kZXRlY3RDaGFuZ2VzKCk7XG4gICAgfSk7XG5cbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLm9uQ2hhbmdlJFxuICAgICAgLnBpcGUodGFrZVVudGlsKHRoaXMuZGVzdHJveSQpKVxuICAgICAgLnN1YnNjcmliZSgodmFsdWUpID0+IHtcbiAgICAgICAgdGhpcy5vbkNoYW5nZSh2YWx1ZSk7XG4gICAgICB9KTtcbiAgfVxuXG4gIHB1YmxpYyBzZXRTdGF0ZUlucHV0cyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XG4gICAgaWYgKGNoYW5nZXNbJ2lucHV0Q29uZmlnJ10pIHtcbiAgICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uuc2V0SW5wdXRDb25maWcoXG4gICAgICAgIGNoYW5nZXNbJ2lucHV0Q29uZmlnJ10/LmN1cnJlbnRWYWx1ZVxuICAgICAgKTtcbiAgICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25JbnB1dENvbmZpZ0NoYW5nZSgpO1xuICAgIH1cbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLnNldEluY29ycmVjdFZhbHVlKFxuICAgICAgY2hhbmdlc1snaW5jb3JyZWN0VmFsdWUnXT8uY3VycmVudFZhbHVlXG4gICAgKTtcbiAgfVxuXG4gIHB1YmxpYyB3cml0ZVZhbHVlKG9iajogSW5wdXRDaGFuZ2VWYWx1ZSk6IHZvaWQge1xuICAgIGlmICh0aGlzLmlucHV0Q29uZmlnLnByaWNlU2VwYXJhdG9yKSB7XG4gICAgICBpZiAob2JqICYmIHRoaXMucHJpY2VTZXBlcmF0b3JXaXRoRmlsbGVkVmFsdWUpXG4gICAgICAgIHRoaXMuaW5wdXQubmF0aXZlRWxlbWVudC52YWx1ZSA9XG4gICAgICAgICAgdGhpcy50aG91c2FuZFNlcGFyYXRvclBpcGUudHJhbnNmb3JtKG9iaik7XG4gICAgICBlbHNlIHRoaXMuaW5wdXQubmF0aXZlRWxlbWVudC52YWx1ZSA9IG9iajtcblxuICAgICAgdGhpcy5wcmljZVNlcGVyYXRvcldpdGhGaWxsZWRWYWx1ZSA9IGZhbHNlO1xuICAgIH1cblxuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uud3JpdGVWYWx1ZShvYmopO1xuICB9XG5cbiAgcHVibGljIHJlZ2lzdGVyT25DaGFuZ2UoZm46IGFueSk6IHZvaWQge1xuICAgIHRoaXMub25DaGFuZ2UgPSBmbjtcbiAgfVxuXG4gIHB1YmxpYyBvbkNoYW5nZShfOiBhbnkpOiB2b2lkIHt9XG5cbiAgcHVibGljIHJlZ2lzdGVyT25Ub3VjaGVkKCk6IHZvaWQge31cblxuICBwdWJsaWMgb25CbHVyKGV2ZW50PzogRm9jdXNFdmVudCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25CbHVyKGV2ZW50KTtcblxuICAgIHRoaXMuYmx1cklucHV0LmVtaXQodHJ1ZSk7XG4gIH1cblxuICBwdWJsaWMgb25Gb2N1cyhldmVudD86IEZvY3VzRXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmZvY3VzSW5wdXRFdmVudC5lbWl0KHRydWUpO1xuXG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5vbkZvY3VzKGV2ZW50KTtcbiAgfVxuXG4gIHB1YmxpYyBvbktleVByZXNzKGV2ZW50OiBLZXlib2FyZEV2ZW50KTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5vbktleXByZXNzKGV2ZW50KTtcbiAgfVxuXG4gIHB1YmxpYyBvbktleWRvd24oZXZlbnQ6IEtleWJvYXJkRXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLm9uS2V5ZG93bihldmVudCk7XG4gIH1cblxuICBwdWJsaWMgb25LZXl1cChldmVudDogS2V5Ym9hcmRFdmVudCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25LZXl1cChldmVudCk7XG4gIH1cblxuICBwdWJsaWMgdHJhbnNmb3JtVGV4dChldmVudDogRXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLnRyYW5zZm9ybVRleHQoZXZlbnQpO1xuICB9XG5cbiAgcHVibGljIGNsZWFySW5wdXQoZXZlbnQ6IEV2ZW50KTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5jbGVhcklucHV0KGV2ZW50KTtcbiAgfVxuXG4gIHB1YmxpYyBvblRvZ2dsZVBhc3N3b3JkKGV2ZW50OiBFdmVudCk6IHZvaWQge1xuICAgIGV2ZW50LnByZXZlbnREZWZhdWx0KCk7XG4gICAgdGhpcy5pc1RvZ2dsZVBhc3N3b3JkID0gIXRoaXMuaXNUb2dnbGVQYXNzd29yZDtcbiAgfVxuXG4gIHB1YmxpYyBvbkNvbW1hbmRzKGV2ZW50OiB7XG4gICAgZXZlbnQ6IEV2ZW50O1xuICAgIHR5cGU6IHN0cmluZztcbiAgICBhY3Rpb246IHN0cmluZztcbiAgfSk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25Db21tYW5kcyhldmVudC5ldmVudCwgZXZlbnQudHlwZSwgZXZlbnQuYWN0aW9uKTtcbiAgfVxuXG4gIHB1YmxpYyBvbkVkaXRJbnB1dChldmVudDogRXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLm9uRWRpdElucHV0KGV2ZW50KTtcbiAgfVxuXG4gIHB1YmxpYyB0b2dnbGVEcm9wZG93bk9wdGlvbnMoKTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS50b2dnbGVEcm9wZG93bk9wdGlvbnMoKTtcbiAgfVxuXG4gIHB1YmxpYyBvblBsYWNlaG9sZGVySWNvbkV2ZW50KGV2ZW50OiBFdmVudCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25QbGFjZWhvbGRlckljb25FdmVudChldmVudCk7XG4gIH1cblxuICBwdWJsaWMgc2V0SW5wdXRDdXJzb3JBdFRoZUVuZChpbnB1dDogYW55KTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5zZXRJbnB1dEN1cnNvckF0VGhlRW5kKGlucHV0KTtcbiAgfVxuXG4gIC8vLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0gRGF0ZSAmIFRpbWUgUGlja2VyIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG5cbiAgcHVibGljIHNlbGVjdGlvbkNoYW5nZShldmVudDogRXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLnNlbGVjdGlvbkNoYW5nZShldmVudCk7XG4gIH1cblxuICBwdWJsaWMgb25EYXRlUGFzdGUoZXZlbnQ6IENsaXBib2FyZEV2ZW50KTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5vbkRhdGVQYXN0ZShldmVudCk7XG4gIH1cblxuICBwdWJsaWMgc2V0U2VsZWN0aW9uKGV2ZW50OiB7XG4gICAgcHJldmVudERlZmF1bHQ6ICgpID0+IHZvaWQ7XG4gICAgc3RvcFByb3BhZ2F0aW9uOiAoKSA9PiB2b2lkO1xuICAgIHRhcmdldDogYW55O1xuICB9KTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5zZXRTZWxlY3Rpb24oZXZlbnQpO1xuICB9XG5cbiAgcHVibGljIGNoYW5nZVNlbGVjdGlvbihldmVudDoge1xuICAgIGU6IEtleWJvYXJkRXZlbnQ7XG4gICAgbm9QcmV2ZW50RGVmYXVsdDogYm9vbGVhbjtcbiAgfSk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2UuY2hhbmdlU2VsZWN0aW9uKGV2ZW50LmUsIGV2ZW50Lm5vUHJldmVudERlZmF1bHQpO1xuICB9XG5cbiAgcHVibGljIG9uUG9wb3ZlclNob3duKCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25Qb3BvdmVyU2hvd24oKTtcbiAgfVxuXG4gIHB1YmxpYyBvblBvcG92ZXJIaWRkZW4oKTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5vblBvcG92ZXJIaWRkZW4oKTtcbiAgfVxuXG4gIHB1YmxpYyBjbG9zZVBvcG92ZXIoKTogdm9pZCB7XG4gICAgaWYgKHRoaXMubmdiTWFpblBvcG92ZXIpIHRoaXMubmdiTWFpblBvcG92ZXIuY2xvc2UoKTtcbiAgfVxuXG4gIHB1YmxpYyBzZWxlY3RMYXN0T25lRm9yU2VsZWN0aW9uKCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uuc2VsZWN0TGFzdE9uZUZvclNlbGVjdGlvbigpO1xuICB9XG5cbiAgcHVibGljIHNlbGVjdExhc3RPbmVBZnRlck1vdXNlVXAoKTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5zZWxlY3RMYXN0T25lQWZ0ZXJNb3VzZVVwKCk7XG4gIH1cblxuICBwdWJsaWMgdHJhY2tJZGVudGl0eSA9IChpbmRleDogbnVtYmVyKTogbnVtYmVyID0+IGluZGV4O1xuXG4gIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25EZXN0b3J5KCk7XG4gICAgdGhpcy5kZXN0cm95JC5uZXh0KCk7XG4gICAgdGhpcy5kZXN0cm95JC5jb21wbGV0ZSgpO1xuICB9XG59XG4iLCI8ZGl2XG4gIGNsYXNzPVwiaW5wdXQtY3VzdG9tLWdyb3VwIHt7IGlucHV0Q29uZmlnLmN1c3RvbUNsYXNzIH19XCJcbiAgW25nQ2xhc3NdPVwiXG4gICAgZ2V0U3VwZXJDb250cm9sXG4gICAgICB8IGlucHV0Q29udGFpbmVyQ2xhc3NcbiAgICAgICAgOiBpc0ZvY3VzSW5wdXRcbiAgICAgICAgOiBpc1RvdWNoZWRJbnB1dFxuICAgICAgICA6IGlucHV0Q29uZmlnXG4gICAgICAgIDogZ2V0U3VwZXJDb250cm9sPy52YWx1ZVxuICBcIlxuPlxuICA8IS0tIElucHV0IENvbW1hbmRzIC0tPlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaW5wdXRDb25maWcuY29tbWFuZHM/LmFjdGl2ZSAmJiBpc1Zpc2libGVDb21tYW5kc1wiPlxuICAgIDxhcHAtY2EtaW5wdXQtY29tbWFuZHNcbiAgICAgIFtpbnB1dENvbmZpZ109XCJpbnB1dENvbmZpZ1wiXG4gICAgICBbaXNGb2N1c0lucHV0XT1cImlzRm9jdXNJbnB1dFwiXG4gICAgICBbaXNWaXNpYmxlQ29tbWFuZHNdPVwiaXNWaXNpYmxlQ29tbWFuZHNcIlxuICAgICAgKG9uQ29tbWFuZHNDbGljayk9XCJvbkNvbW1hbmRzKCRldmVudClcIlxuICAgID5cbiAgICA8L2FwcC1jYS1pbnB1dC1jb21tYW5kcz5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBEYXRlVGltZSBQaWNrZXIgLS0+XG4gIDxuZy1jb250YWluZXJcbiAgICAqbmdJZj1cIlxuICAgICAgKGlucHV0Q29uZmlnLm5hbWUgPT09ICdkYXRlcGlja2VyJyB8fFxuICAgICAgICBpbnB1dENvbmZpZy5uYW1lID09PSAndGltZXBpY2tlcicpICYmXG4gICAgICAhaW5wdXRDb25maWcuaXNEaXNhYmxlZFxuICAgIFwiXG4gID5cbiAgICA8YXBwLWNhLWlucHV0LWRhdGV0aW1lLXBpY2tlclxuICAgICAgW3Nob3dEYXRlSW5wdXRdPVwic2hvd0RhdGVJbnB1dFwiXG4gICAgICBbaW5wdXRDb25maWddPVwiaW5wdXRDb25maWdcIlxuICAgICAgW2dldFN1cGVyQ29udHJvbF09XCJnZXRTdXBlckNvbnRyb2xcIlxuICAgICAgW2lzRm9jdXNJbnB1dF09XCJpc0ZvY3VzSW5wdXRcIlxuICAgICAgW2lzVmlzaWJsZUNvbW1hbmRzXT1cImlzVmlzaWJsZUNvbW1hbmRzXCJcbiAgICAgIFtpc1RvdWNoZWRJbnB1dF09XCJpc1RvdWNoZWRJbnB1dFwiXG4gICAgICAoc2VsZWN0TGFzdE9uZUZvclNlbGVjdGlvbkVtaXR0ZXIpPVwic2VsZWN0TGFzdE9uZUZvclNlbGVjdGlvbigpXCJcbiAgICAgIChzZWxlY3RMYXN0T25lQWZ0ZXJNb3VzZVVwRW1pdHRlcik9XCJzZWxlY3RMYXN0T25lQWZ0ZXJNb3VzZVVwKClcIlxuICAgICAgKG9uRGF0ZVBhc3RlRW1pdHRlcik9XCJvbkRhdGVQYXN0ZSgkZXZlbnQpXCJcbiAgICAgIChvbkJsdXJFbWl0dGVyKT1cIm9uQmx1cigpXCJcbiAgICAgIChjaGFuZ2VTZWxlY3Rpb25FbW1pdGVyKT1cImNoYW5nZVNlbGVjdGlvbigkZXZlbnQpXCJcbiAgICAgIChvbkZvY3VzRW1pdHRlcik9XCJvbkZvY3VzKCRldmVudClcIlxuICAgICAgKHNldFNlbGVjdGlvbkVtbWl0ZXIpPVwic2V0U2VsZWN0aW9uKCRldmVudClcIlxuICAgID5cbiAgICA8L2FwcC1jYS1pbnB1dC1kYXRldGltZS1waWNrZXI+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDwhLS0gSW5wdXQgTGFiZWwgLS0+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCIhaW5wdXRDb25maWcubXVsdGlTZWxlY3REcm9wZG93bkFjdGl2ZVwiPlxuICAgIDxsYWJlbFxuICAgICAgW2Zvcl09XCJpbnB1dENvbmZpZy5uYW1lXCJcbiAgICAgIGNsYXNzPVwiaW5wdXQtbGFiZWwge3sgaW5wdXRDb25maWcuY3VzdG9tQ2xhc3MgfX0ge3tcbiAgICAgICAgaW5wdXRDb25maWcubXVsdGlwbGVMYWJlbD8uY3VzdG9tQ2xhc3NcbiAgICAgIH19XCJcbiAgICAgIFtuZ0NsYXNzXT1cIlxuICAgICAgICBnZXRTdXBlckNvbnRyb2w/LnZhbHVlIHwgbGFiZWxDbGFzczogaXNGb2N1c0lucHV0IDogaW5wdXRDb25maWdcbiAgICAgIFwiXG4gICAgPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImlucHV0Q29uZmlnLmxhYmVsXCI+XG4gICAgICAgIDxzcGFuPnt7IGlucHV0Q29uZmlnLmxhYmVsIH19IDwvc3Bhbj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImlucHV0Q29uZmlnLm11bHRpcGxlTGFiZWw/LmxhYmVscz8ubGVuZ3RoXCI+XG4gICAgICAgIDxkaXZcbiAgICAgICAgICBbY2xhc3NdPVwiaW5wdXRDb25maWcubXVsdGlwbGVMYWJlbD8uY3VzdG9tQ2xhc3MhXCJcbiAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICAnbXVsdGlwbGUtbGFiZWxzLXBvc2l0aW9uLW9uLWZvY3VzJzpcbiAgICAgICAgICAgICAgaXNGb2N1c0lucHV0IHx8XG4gICAgICAgICAgICAgIGlucHV0Q29uZmlnLm11bHRpcGxlSW5wdXRWYWx1ZXM/Lm9wdGlvbnM/Lmxlbmd0aCxcbiAgICAgICAgICAgIHJlcXVpcmVkOiBpbnB1dENvbmZpZy5pc1JlcXVpcmVkICYmICFpbnB1dENvbmZpZy5pc0Rpc2FibGVkXG4gICAgICAgICAgfVwiXG4gICAgICAgID5cbiAgICAgICAgICA8c3BhbiAqbmdGb3I9XCJsZXQgbGFiZWwgb2YgaW5wdXRDb25maWcubXVsdGlwbGVMYWJlbD8ubGFiZWxzXCI+XG4gICAgICAgICAgICB7eyBsYWJlbCB9fVxuICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgPC9kaXY+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8L2xhYmVsPlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8IS0tIElucHV0IENsZWFyIC0tPlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaW5wdXRDb25maWcgfCBzaG93Q2xlYXJcIj5cbiAgICA8YXBwLWNhLWlucHV0LWNsZWFyXG4gICAgICBbaW5wdXRDb25maWddPVwiaW5wdXRDb25maWdcIlxuICAgICAgW2dldFN1cGVyQ29udHJvbF09XCJnZXRTdXBlckNvbnRyb2xcIlxuICAgICAgW2lzRm9jdXNJbnB1dF09XCJpc0ZvY3VzSW5wdXRcIlxuICAgICAgW2luY29ycmVjdFZhbHVlXT1cImluY29ycmVjdFZhbHVlXCJcbiAgICAgIFtzZWxlY3RlZERyb3Bkb3duTGFiZWxDb2xvcl09XCJzZWxlY3RlZERyb3Bkb3duTGFiZWxDb2xvclwiXG4gICAgICBbdGVtcGxhdGVdPVwidGVtcGxhdGVcIlxuICAgICAgKGNsZWFySW5wdXRDbGljayk9XCJjbGVhcklucHV0KCRldmVudClcIlxuICAgID5cbiAgICA8L2FwcC1jYS1pbnB1dC1jbGVhcj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBJbnB1dCBDbGVhciBmb3IgZGlzcGF0Y2ggZHJvcGRvd24gLS0+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJ0ZW1wbGF0ZSA9PT0gJ3N2Z3RleHQtZGlzcGF0Y2gtdGVtcGxhdGUnXCI+XG4gICAgPGRpdlxuICAgICAgY2xhc3M9XCJpbnB1dC1jbGVhci1kaXNwYXRjaFwiXG4gICAgICBwb3NpdGlvbj1cInRvcFwiXG4gICAgICAoY2xpY2spPVwiY2xlYXJJbnB1dCgkZXZlbnQpXCJcbiAgICA+XG4gICAgICA8c3ZnLWljb25cbiAgICAgICAgW3NyY109XCJpbnB1dFN2Z1JvdXRlcy54Q2xlYXJDb21tb25TdmdcIlxuICAgICAgICBjbGFzcz1cImlucHV0LWNsZWFyLWRpc3BhdGNoLWljb25cIlxuICAgICAgPjwvc3ZnLWljb24+XG4gICAgPC9kaXY+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDwhLS0gSW5wdXQgUGVuIC0tPlxuICA8bmctY29udGFpbmVyXG4gICAgKm5nSWY9XCJcbiAgICAgIHNlbGVjdGVkRHJvcGRvd25MYWJlbENvbG9yICYmXG4gICAgICAhaXNFZGl0SW5wdXQgJiZcbiAgICAgICFpc0ZvY3VzSW5wdXQgJiZcbiAgICAgIGdldFN1cGVyQ29udHJvbD8udmFsdWVcbiAgICBcIlxuICA+XG4gICAgPGRpdlxuICAgICAgY2xhc3M9XCJpbnB1dC1wZW4tY29udGFpbmVyXCJcbiAgICAgIG5nYlRvb2x0aXBcbiAgICAgIFttYWluQ2FUb29sdGlwXT1cIidFZGl0J1wiXG4gICAgICBbdG9vbHRpcEJhY2tncm91bmRdPVwiJyMyRjJGMkYnXCJcbiAgICAgIHBvc2l0aW9uPVwidG9wXCJcbiAgICAgIChjbGljayk9XCJvbkVkaXRJbnB1dCgkZXZlbnQpXCJcbiAgICA+XG4gICAgICA8c3ZnLWljb24gW3NyY109XCJpbnB1dFN2Z1JvdXRlcy5pbnB1dFBlblN2Z1wiIGNsYXNzPVwiaW5wdXQtcGVuXCI+PC9zdmctaWNvbj5cbiAgICA8L2Rpdj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBJbnB1dCBJbnZhbGlkIERhbmdlciBNYXJrIC0tPlxuICA8bmctY29udGFpbmVyXG4gICAgKm5nSWY9XCJcbiAgICAgIGlucHV0Q29uZmlnXG4gICAgICAgIHwgc2hvd0ludmFsaWREYW5nZXJNYXJrXG4gICAgICAgICAgOiBnZXRTdXBlckNvbnRyb2xcbiAgICAgICAgICA6IGlzRm9jdXNJbnB1dFxuICAgICAgICAgIDogaXNUb3VjaGVkSW5wdXRcbiAgICAgICAgICA6IGdldFN1cGVyQ29udHJvbD8udmFsdWVcbiAgICBcIlxuICA+XG4gICAgPHN2Zy1pY29uXG4gICAgICBjbGFzcz1cImlucHV0LWludmFsaWQtZGFuZ2VyLW1hcmsgIHt7IGlucHV0Q29uZmlnLmN1c3RvbUNsYXNzIH19XCJcbiAgICAgIFtzcmNdPVwiaW5wdXRTdmdSb3V0ZXMuZGFuZ2VyU3ZnXCJcbiAgICA+XG4gICAgPC9zdmctaWNvbj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBJbnB1dCBWYWxpZCBDaGVjayAtLT5cbiAgPG5nLWNvbnRhaW5lclxuICAgICpuZ0lmPVwiXG4gICAgICBnZXRTdXBlckNvbnRyb2xcbiAgICAgICAgfCBzaG93VmFsaWRDaGVjazogaXNGb2N1c0lucHV0IDogaW5wdXRDb25maWcgOiBnZXRTdXBlckNvbnRyb2w/LnZhbHVlXG4gICAgXCJcbiAgPlxuICAgIDxzdmctaWNvblxuICAgICAgY2xhc3M9XCJpbnB1dC1yZXF1aXJlZC1jaGVjayB7eyBpbnB1dENvbmZpZy5jdXN0b21DbGFzcyB9fVwiXG4gICAgICBbc3JjXT1cImlucHV0U3ZnUm91dGVzLmNvbmZpcm1TdmdcIlxuICAgID48L3N2Zy1pY29uPlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8IS0tIElucHV0IFBhc3N3b3JkIENhcHMgTG9jayBBbmQgRXllIC0tPlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaW5wdXRDb25maWcudHlwZSA9PT0gJ3Bhc3N3b3JkJ1wiPlxuICAgIDxhcHAtY2EtaW5wdXQtcGFzc3dvcmRcbiAgICAgIFtpbnB1dENvbmZpZ109XCJpbnB1dENvbmZpZ1wiXG4gICAgICBbZ2V0U3VwZXJDb250cm9sXT1cImdldFN1cGVyQ29udHJvbFwiXG4gICAgICBbaXNGb2N1c0lucHV0XT1cImlzRm9jdXNJbnB1dFwiXG4gICAgICBbaXNUb3VjaGVkSW5wdXRdPVwiaXNUb3VjaGVkSW5wdXRcIlxuICAgICAgW2lzQ2Fwc0xvY2tPbl09XCJpc0NhcHNMb2NrT25cIlxuICAgICAgW2lzVG9nZ2xlUGFzc3dvcmRdPVwiaXNUb2dnbGVQYXNzd29yZFwiXG4gICAgICAob25Ub2dnbGVQYXNzd29yZENsaWNrKT1cIm9uVG9nZ2xlUGFzc3dvcmQoJGV2ZW50KVwiXG4gICAgPlxuICAgIDwvYXBwLWNhLWlucHV0LXBhc3N3b3JkPlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8IS0tIElucHV0IERyb3Bkb3duIEFycm93IC0tPlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaW5wdXRDb25maWcgfCBzaG93RHJvcGRvd25BcnJvd1wiPlxuICAgIDxzdmctaWNvblxuICAgICAgY2xhc3M9XCJpbnB1dC1kcm9wZG93bi1hcnJvdyB7eyBpbnB1dENvbmZpZy5jdXN0b21DbGFzcyB9fVwiXG4gICAgICBbbmdDbGFzc109XCJcbiAgICAgICAgZ2V0U3VwZXJDb250cm9sXG4gICAgICAgICAgfCBpbnB1dERyb3Bkb3duQXJyb3dDbGFzc1xuICAgICAgICAgICAgOiBpc0ZvY3VzSW5wdXRcbiAgICAgICAgICAgIDogaW5wdXRDb25maWdcbiAgICAgICAgICAgIDogaXNUb3VjaGVkSW5wdXRcbiAgICAgICAgICAgIDogZ2V0U3VwZXJDb250cm9sPy52YWx1ZVxuICAgICAgXCJcbiAgICAgIFtzcmNdPVwiaW5wdXRTdmdSb3V0ZXMuaW5wdXREcm9wZG93bkFycm93U3ZnXCJcbiAgICAgIChjbGljayk9XCJ0b2dnbGVEcm9wZG93bk9wdGlvbnMoKVwiXG4gICAgPjwvc3ZnLWljb24+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDwhLS0gSW5wdXQgUGxhY2Vob2xkZXIgSWNvbiAtLT5cbiAgPG5nLWNvbnRhaW5lciBcbiAgICAqbmdJZj1cIlxuICAgICAgaW5wdXRDb25maWcucGxhY2Vob2xkZXJJY29uIHx8XG4gICAgICBpbnB1dENvbmZpZy5uYW1lID09PSAnZGF0ZXBpY2tlcicgfHxcbiAgICAgIGlucHV0Q29uZmlnLm5hbWUgPT09ICd0aW1lcGlja2VyJ1xuICAgIFwiXG4gID5cbiAgICA8YXBwLWNhLWlucHV0LXBsYWNlaG9sZGVyLWljb25cbiAgICAgIFtpbnB1dENvbmZpZ109XCJpbnB1dENvbmZpZ1wiXG4gICAgICBbZ2V0U3VwZXJDb250cm9sXT1cImdldFN1cGVyQ29udHJvbFwiXG4gICAgICBbaXNGb2N1c0lucHV0XT1cImlzRm9jdXNJbnB1dFwiXG4gICAgICBbaXNUb3VjaGVkSW5wdXRdPVwiaXNUb3VjaGVkSW5wdXRcIlxuICAgICAgW3NlbGVjdGVkRHJvcGRvd25MYWJlbENvbG9yXT1cInNlbGVjdGVkRHJvcGRvd25MYWJlbENvbG9yXCJcbiAgICAgIFtpc0VkaXRJbnB1dF09XCJpc0VkaXRJbnB1dFwiXG4gICAgICBbZGF0ZVRpbWVQb3BvdmVyXT1cImRhdGVUaW1lUG9wb3ZlclwiXG4gICAgICAob25Qb3BvdmVyU2hvd25FbWl0dGVyKT1cIm9uUG9wb3ZlclNob3duKClcIlxuICAgICAgKG9uUG9wb3ZlckhpZGRlbkVtaXR0ZXIpPVwib25Qb3BvdmVySGlkZGVuKClcIlxuICAgICAgKG9uUGxhY2Vob2xkZXJJY29uRXZlbnRFbWl0dGVyKT1cIm9uUGxhY2Vob2xkZXJJY29uRXZlbnQoJGV2ZW50KVwiXG4gICAgPlxuICAgIDwvYXBwLWNhLWlucHV0LXBsYWNlaG9sZGVyLWljb24+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDwhLS0gSW5wdXQgUGxhY2Vob2xkZXIgVGV4dCAtLT5cbiAgPG5nLWNvbnRhaW5lclxuICAgICpuZ0lmPVwiXG4gICAgICBpbnB1dENvbmZpZyB8IHNob3dQbGFjZWhvbGRlclRleHQgOiBnZXRTdXBlckNvbnRyb2wgOiBcbiAgICAgIGlzVmlzaWJsZUNvbW1hbmRzIDogZ2V0U3VwZXJDb250cm9sPy52YWx1ZVxuICAgIFwiXG4gID5cbiAgICA8c3BhblxuICAgICAgY2xhc3M9XCJjYS1wbGFjZWhvbGRlci10ZXh0IHt7IGlucHV0Q29uZmlnLmN1c3RvbUNsYXNzIH19XCJcbiAgICAgIFtuZ0NsYXNzXT1cIiAgICAgIFxuICAgICAgaXNGb2N1c0lucHV0IHwgaW5wdXRQbGFjZWhvbGRlclRleHRDbGFzc1xuICAgICAgICA6IGlzVG91Y2hlZElucHV0IDogZ2V0U3VwZXJDb250cm9sIDogaW5wdXRDb25maWdcbiAgICAgICAgOiBpc1Zpc2libGVDb21tYW5kcyA6IGdldFN1cGVyQ29udHJvbD8udmFsdWVcbiAgICAgIFwiXG4gICAgICBbc3R5bGUubGVmdF09XCJcbiAgICAgICAgaW5wdXRDb25maWcucGxhY2Vob2xkZXJUZXh0Py50b0xvd2VyQ2FzZSgpID09PSBpbnB1dFN0cmluZ0VudW0uUEVSU09OUyB8fFxuICAgICAgICBpbnB1dENvbmZpZy5wbGFjZWhvbGRlclRleHQ/LnRvTG93ZXJDYXNlKCkgPT09IGlucHV0U3RyaW5nRW51bS5WRUhJQ0xFU1xuICAgICAgICAgID8gMzAgK1xuICAgICAgICAgICAgKGdldFN1cGVyQ29udHJvbD8udmFsdWU/LnRvU3RyaW5nKCk/Lmxlbmd0aCArIDEpICogOSArXG4gICAgICAgICAgICAncHgnXG4gICAgICAgICAgOiBpc0ZvY3VzSW5wdXQgJiZcbiAgICAgICAgICAgIGlucHV0Q29uZmlnLnBsYWNlaG9sZGVyVGV4dD8udG9Mb3dlckNhc2UoKSAhPT0gaW5wdXRDb21tYW5kc1R5cGUuTU9OVEhTXG4gICAgICAgICAgPyAnYXV0bydcbiAgICAgICAgICA6IChnZXRTdXBlckNvbnRyb2w/LnZhbHVlPy50b1N0cmluZygpPy5sZW5ndGggKyAxKSAqIDggKyAncHgnXG4gICAgICBcIlxuICAgICAgW3N0eWxlLnJpZ2h0XT1cIlxuICAgICAgICBpc0ZvY3VzSW5wdXQgJiZcbiAgICAgICAgaW5wdXRDb25maWcucGxhY2Vob2xkZXJUZXh0Py50b0xvd2VyQ2FzZSgpICE9PSBpbnB1dENvbW1hbmRzVHlwZS5NT05USFNcbiAgICAgICAgICA/ICcyOHB4J1xuICAgICAgICAgIDogJ2F1dG8nXG4gICAgICBcIlxuICAgICAgPlxuICAgICAgICB7eyBpbnB1dENvbmZpZy5wbGFjZWhvbGRlclRleHQgfX1cbiAgICA8L3NwYW4+XG4gIDwvbmctY29udGFpbmVyPlxuICBcbiAgPCEtLSBJbnB1dCBMYWJlbCBDb3VudGVyIC0tPlxuICA8bmctY29udGFpbmVyXG4gICAgKm5nSWY9XCJcbiAgICAgIHNlbGVjdGVkRHJvcGRvd25MYWJlbENvbG9yICYmXG4gICAgICBnZXRTdXBlckNvbnRyb2w/LnZhbHVlICYmXG4gICAgICAhaXNGb2N1c0lucHV0ICYmXG4gICAgICAhaW5wdXRDb25maWcuaXNEaXNhYmxlZCAmJlxuICAgICAgaW5wdXRDb25maWcuc2hvd0NvdW50XG4gICAgXCJcbiAgPlxuICAgIDxwXG4gICAgICBbc3R5bGUudG9wXT1cIic0cHgnXCJcbiAgICAgIFtzdHlsZS5sZWZ0XT1cIlxuICAgICAgICAoZ2V0U3VwZXJDb250cm9sPy52YWx1ZT8udG9TdHJpbmcoKT8ubGVuZ3RoICsgNi41KSAqIDggKyAncHgnXG4gICAgICBcIlxuICAgICAgY2xhc3M9XCJpbnB1dC1sYWJlbC1jb3VudGVyXCJcbiAgICA+XG4gICAgICB7eyBzZWxlY3RlZERyb3Bkb3duTGFiZWxDb2xvci5jb3VudCB9fVxuICAgIDwvcD5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBTcGVjaWFsIERyb3Bkb3duIFNlbGVjdGVkIFNWRyB3aXRoIG9yIFdpdGhvdXQgVGV4dCAtLT5cbiAgPG5nLWNvbnRhaW5lclxuICAgICpuZ0lmPVwiXG4gICAgICBpbnB1dENvbmZpZz8uZHJvcGRvd25JbWFnZUlucHV0Py5zdmcgJiZcbiAgICAgICFpbnB1dENvbmZpZz8uaGlkZUFsbEl0ZW1zSW5JbnB1dERyb3Bkb3duICYmXG4gICAgICAhKCFpbnB1dENvbmZpZy5kcm9wZG93bkltYWdlSW5wdXQ/LndpdGhUZXh0ICYmIGlzRm9jdXNJbnB1dCkgJiZcbiAgICAgICEoXG4gICAgICAgICAgWyd0cnVjaycsICd0cmFpbGVyJ10uaW5jbHVkZXMoXG4gICAgICAgICAgICAgIGlucHV0Q29uZmlnLmRyb3Bkb3duSW1hZ2VJbnB1dD8udGVtcGxhdGUhXG4gICAgICAgICAgKSAmJlxuICAgICAgICAgIGlzRm9jdXNJbnB1dCAmJlxuICAgICAgICAgIGlucHV0Q29uZmlnLmRyb3Bkb3duSW1hZ2VJbnB1dD8ucmVtb3ZlXG4gICAgICApICYmXG4gICAgICAhaW5wdXRDb25maWc/LmRyb3Bkb3duSW1hZ2VJbnB1dD8ubmFtZUluaXRpYWxzSW5zdGVhZFVybFxuICAgIFwiXG4gID5cbiAgICA8c3ZnLWljb25cbiAgICAgICAgW3NyY109XCJpbnB1dENvbmZpZy5kcm9wZG93bkltYWdlSW5wdXQ/LnVybCFcIlxuICAgICAgICBjbGFzcz1cImRyb3Bkb3duLXNlbGVjdGVkLWltYWdlIHt7XG4gICAgICAgICAgaW5wdXRDb25maWcuZHJvcGRvd25JbWFnZUlucHV0Py5jbGFzc1xuICAgICAgICB9fVwiXG4gICAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgICAndW5zZXQtY29sb3InOiBpc0ZvY3VzSW5wdXQgJiYgaW5wdXRDb25maWcuZHJvcGRvd25JbWFnZUlucHV0Py5jbGFzc1xuICAgICAgICB9XCJcbiAgICAgICAgW3N2Z1N0eWxlXT1cIntcbiAgICAgICAgICBmaWxsOlxuICAgICAgICAgICAgaW5wdXRDb25maWcuZHJvcGRvd25JbWFnZUlucHV0Py5jb2xvciAmJiAhaXNGb2N1c0lucHV0XG4gICAgICAgICAgICAgID8gaW5wdXRDb25maWcuZHJvcGRvd25JbWFnZUlucHV0Py5jb2xvclxuICAgICAgICAgICAgICA6ICcjZmZmZmZmJ1xuICAgICAgICB9XCJcbiAgICA+XG4gICAgPC9zdmctaWNvbj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBTcGVjaWFsIERyb3Bkb3duIFNlbGVjdGVkIEltYWdlIFdpdGggVGV4dCBXaXRoIEluaXRpYWxzIG5hbWUgLS0+XG4gIDxuZy1jb250YWluZXJcbiAgICAqbmdJZj1cIlxuICAgICAgaW5wdXRDb25maWc/LmRyb3Bkb3duSW1hZ2VJbnB1dD8uaW1hZ2UgJiZcbiAgICAgICFpbnB1dENvbmZpZz8uaGlkZUFsbEl0ZW1zSW5JbnB1dERyb3Bkb3duICYmXG4gICAgICBpbnB1dENvbmZpZz8uZHJvcGRvd25JbWFnZUlucHV0Py51cmwgJiZcbiAgICAgICFpbnB1dENvbmZpZz8uZHJvcGRvd25JbWFnZUlucHV0Py5uYW1lSW5pdGlhbHNJbnN0ZWFkVXJsXG4gICAgXCJcbiAgPlxuICAgIDxpbWdcbiAgICAgIGNsYXNzPVwiZHJvcGRvd24tc2VsZWN0ZWQtaW1hZ2UgbmFtZS1pbml0aWFscy1pbnN0ZWFkLXVybFwiXG4gICAgICBbc3JjXT1cImlucHV0Q29uZmlnLmRyb3Bkb3duSW1hZ2VJbnB1dD8udXJsXCJcbiAgICAgIFthbHRdPVwiJ0lucHV0IEltYWdlJ1wiXG4gICAgLz5cbiAgPC9uZy1jb250YWluZXI+XG4gIDxuZy1jb250YWluZXJcbiAgICAqbmdJZj1cIlxuICAgICAgaW5wdXRDb25maWc/LmRyb3Bkb3duSW1hZ2VJbnB1dD8ubmFtZUluaXRpYWxzSW5zdGVhZFVybCAmJlxuICAgICAgIWlucHV0Q29uZmlnPy5oaWRlQWxsSXRlbXNJbklucHV0RHJvcGRvd24gJiZcbiAgICAgICEoIWlucHV0Q29uZmlnLmRyb3Bkb3duSW1hZ2VJbnB1dD8ud2l0aFRleHQgJiYgaXNGb2N1c0lucHV0KVxuICAgIFwiXG4gID5cbiAgICA8ZGl2XG4gICAgICBjbGFzcz1cIm5vLXByb2ZpbGUtaW1hZ2UgZHJvcGRvd24tc2VsZWN0ZWQtaW1hZ2UgbmFtZS1pbml0aWFscy1pbnN0ZWFkLXVybFwiXG4gICAgPlxuICAgICAgPGFwcC1jYS1wcm9maWxlLWltYWdlXG4gICAgICAgICAgW2luZHhdPVwiMFwiXG4gICAgICAgICAgW3NpemVdPVwiJ3NtYWxsJ1wiXG4gICAgICAgICAgW3R5cGVdPVwiJ3VzZXInXCJcbiAgICAgICAgICBbbmFtZV09XCJpbnB1dENvbmZpZy5kcm9wZG93bkltYWdlSW5wdXQ/Lm5hbWVJbml0aWFsc0luc3RlYWRVcmwhXCJcbiAgICAgID5cbiAgICAgIDwvYXBwLWNhLXByb2ZpbGUtaW1hZ2U+XG4gICAgPC9kaXY+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDwhLS0gTXVsdGlwbGUgSW5wdXQgVmFsdWVzIC0tPlxuICA8bmctY29udGFpbmVyXG4gICAgKm5nSWY9XCJcbiAgICAgIGlucHV0Q29uZmlnPy5tdWx0aXBsZUlucHV0VmFsdWVzPy5vcHRpb25zPy5sZW5ndGggJiYgIWlzRm9jdXNJbnB1dFxuICAgIFwiXG4gID5cbiAgICA8ZGl2XG4gICAgICBjbGFzcz1cImlucHV0LWNvbnRyb2wge3tcbiAgICAgICAgaW5wdXRDb25maWcubXVsdGlwbGVJbnB1dFZhbHVlcz8uY3VzdG9tQ2xhc3NcbiAgICAgIH19XCJcbiAgICAgIChjbGljayk9XCJ0b2dnbGVEcm9wZG93bk9wdGlvbnMoKVwiXG4gICAgPlxuICAgICAgPHNwYW5cbiAgICAgICAgc3R5bGU9XCJkaXNwbGF5OiBmbGV4OyBnYXA6IDZweDsgYWxpZ24taXRlbXM6IGNlbnRlclwiXG4gICAgICAgICpuZ0Zvcj1cIlxuICAgICAgICAgIGxldCBpdGVtIG9mIGlucHV0Q29uZmlnLm11bHRpcGxlSW5wdXRWYWx1ZXM/Lm9wdGlvbnM7XG4gICAgICAgICAgbGV0IGluZHggPSBpbmRleDtcbiAgICAgICAgICB0cmFja0J5OiB0cmFja0lkZW50aXR5XG4gICAgICAgICAgXCJcbiAgICAgID5cbiAgICAgICAgICA8IS0tIEltYWdlIC8gU1ZHIC0tPlxuICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtPy5sb2dvTmFtZSAmJiBpdGVtPy5pc0ltZ1wiPlxuICAgICAgICAgICAgPHNwYW4+XG4gICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtPy5sb2dvTmFtZSAhPT0gJ25vLXVybCdcIj5cbiAgICAgICAgICAgICAgICA8aW1nXG4gICAgICAgICAgICAgICAgICBbbmdTdHlsZV09XCJ7XG4gICAgICAgICAgICAgICAgICAgIHdpZHRoOiAnMThweCcsXG4gICAgICAgICAgICAgICAgICAgICdhc3BlY3QtcmF0aW8nOiAxLFxuICAgICAgICAgICAgICAgICAgICAnYm9yZGVyLXJhZGlzJzogJzJweCdcbiAgICAgICAgICAgICAgICAgIH1cIlxuICAgICAgICAgICAgICAgICAgW3NyY109XCJpdGVtLmxvZ29OYW1lXCJcbiAgICAgICAgICAgICAgICAgIFthbHRdPVwiaXRlbS52YWx1ZVwiXG4gICAgICAgICAgICAgICAgLz5cbiAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtLmxvZ29OYW1lID09PSAnbm8tdXJsJ1wiPlxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJuby1wcm9maWxlLWltYWdlXCI+XG4gICAgICAgICAgICAgICAgICA8YXBwLWNhLXByb2ZpbGUtaW1hZ2VcbiAgICAgICAgICAgICAgICAgICAgW2luZHhdPVwiMFwiXG4gICAgICAgICAgICAgICAgICAgIFtzaXplXT1cIidzbWFsbCdcIlxuICAgICAgICAgICAgICAgICAgICBbbmFtZV09XCJpdGVtLnZhbHVlXCJcbiAgICAgICAgICAgICAgICAgID48L2FwcC1jYS1wcm9maWxlLWltYWdlPlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgXG4gICAgICAgICAgICAgIDwhLS0gT3duZXIgRmxhZyAtLT5cbiAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIml0ZW0/LmlzT3duZXJcIj5cbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwibG9hZC1kaXNwYXRjaGVzLXR0ZC1vd25lclwiPlxuICAgICAgICAgICAgICAgICAgPHN2Zy1pY29uXG4gICAgICAgICAgICAgICAgICAgIFtzcmNdPVwiaW5wdXRTdmdSb3V0ZXMub3duZXJCYWRnZUJsdWVTdmdcIlxuICAgICAgICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICBcbiAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXRlbT8ubG9nb05hbWUgJiYgaXRlbT8uaXNTdmdcIj5cbiAgICAgICAgICAgIDxzdmctaWNvblxuICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICAgICAgJ3BheXJvbGwtZGVkdWN0aW9uLXRydWNrLXN2Zyc6IHRlbXBsYXRlID09PSBkcm9wZG93blRlbXBsYXRlVHlwZUVudW0uUEFZUk9MTF9UUlVDS1NcbiAgICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICAgIGNsYXNzPVwie3sgaXRlbT8uc3ViRm9sZGVyIH19XCJcbiAgICAgICAgICAgICAgW3NyY109XCJpdGVtPy5sb2dvTmFtZSFcIlxuICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gIFxuICAgICAgICAgIDwhLS0gVGV4dCAtLT5cbiAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIWl0ZW0/LmlzUHJvZ3Jlc3NCYXJcIj5cbiAgICAgICAgICAgIDxzcGFuXG4gICAgICAgICAgICAgIGNsYXNzPVwibXVsdGlwbGUtaW5wdXQtdGV4dFwiXG4gICAgICAgICAgICAgIFtuZ1N0eWxlXT1cIntcbiAgICAgICAgICAgICAgICBjb2xvcjogJyMyRjJGMkYnXG4gICAgICAgICAgICAgIH1cIlxuICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICAgICAgY291bnRlcjogaXRlbT8uaXNDb3VudGVyLFxuICAgICAgICAgICAgICAgICdjb3VudGVyLW9uZSc6IGl0ZW0/LnZhbHVlID09PSAxXG4gICAgICAgICAgICAgIH1cIlxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgICB7eyBpdGVtLnZhbHVlIH19XG4gICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtPy5zZWNvbmRfdmFsdWVcIj5cbiAgICAgICAgICAgICAgICA8c3BhblxuICAgICAgICAgICAgICAgICAgW25nU3R5bGVdPVwieyBjb2xvcjogJyM5MTkxOTEnIH1cIlxuICAgICAgICAgICAgICAgICAgPnt7IGl0ZW0uc2Vjb25kX3ZhbHVlIH19XG4gICAgICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgXG4gICAgICAgICAgPCEtLSBMb2FkIEJyb2tlciBQcm9ncmVzc0JhciAtLT5cbiAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXRlbT8uaXNQcm9ncmVzc0JhclwiPlxuICAgICAgICAgICAgPGNhLWxvYWQtbW9kYWwtcHJvZ3Jlc3MtYmFyXG4gICAgICAgICAgICAgIFt0b3RhbEFtb3VudF09XCJpdGVtLnNlY29uZF92YWx1ZSFcIlxuICAgICAgICAgICAgICBbYXZhaWxhYmxlQ3JlZGl0XT1cIml0ZW0udmFsdWUgPyBpdGVtLnZhbHVlIDogMFwiXG4gICAgICAgICAgICA+PC9jYS1sb2FkLW1vZGFsLXByb2dyZXNzLWJhcj5cbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgIDwvc3Bhbj5cbiAgICA8L2Rpdj5cbiAgXG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDwhLS0gTXVsdGlwbGUgSW5wdXQgUGxhY2Vob2xkZXIgLS0+XG4gIDxuZy1jb250YWluZXJcbiAgICAqbmdJZj1cIlxuICAgICAgaW5wdXRDb25maWc/Lm11bHRpcGxlSW5wdXRWYWx1ZXM/Lm9wdGlvbnM/Lmxlbmd0aCAmJlxuICAgICAgaXNGb2N1c0lucHV0ICYmXG4gICAgICAhZ2V0U3VwZXJDb250cm9sPy52YWx1ZVxuICAgIFwiXG4gID5cbiAgICA8ZGl2XG4gICAgICBjbGFzcz1cImlucHV0LWNvbnRyb2wgbXVsdGlwbGUtaW5wdXQtcGxhY2Vob2xkZXIge3tcbiAgICAgICAgaW5wdXRDb25maWcubXVsdGlwbGVJbnB1dFZhbHVlcz8uY3VzdG9tQ2xhc3NcbiAgICAgIH19XCJcbiAgICAgIFtuZ0NsYXNzXT1cInsgXG4gICAgICAgIGZvY3VzOiBpc0ZvY3VzSW5wdXQsXG4gICAgICAgICdwYXlyb2xsLWRlZHVjdGlvbi10cnVjayc6IHRlbXBsYXRlID09PSBkcm9wZG93blRlbXBsYXRlVHlwZUVudW0uUEFZUk9MTF9UUlVDS1NcbiAgICAgIH1cIlxuICAgID5cbiAgICAgIDxzcGFuXG4gICAgICAgIHN0eWxlPVwiZGlzcGxheTogZmxleDsgZ2FwOiA2cHg7IGFsaWduLWl0ZW1zOiBjZW50ZXJcIlxuICAgICAgICAqbmdGb3I9XCJcbiAgICAgICAgICBsZXQgaXRlbSBvZiBpbnB1dENvbmZpZy5tdWx0aXBsZUlucHV0VmFsdWVzPy5vcHRpb25zO1xuICAgICAgICAgIGxldCBpbmR4ID0gaW5kZXg7XG4gICAgICAgICAgdHJhY2tCeTogdHJhY2tJZGVudGl0eVxuICAgICAgICBcIlxuICAgICAgPlxuICAgICAgICA8IS0tIEltYWdlIC8gU1ZHIC0tPlxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXRlbT8ubG9nb05hbWUgJiYgaXRlbT8uaXNJbWdcIj5cbiAgICAgICAgICA8c3BhblxuICAgICAgICAgICAgW25nQ2xhc3NdPVwieyAnZm9jdXNhYmxlLWltYWdlJzogaXNGb2N1c0lucHV0IH1cIlxuICAgICAgICAgID5cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtPy5sb2dvTmFtZSAhPT0gJ25vLXVybCdcIj5cbiAgICAgICAgICAgICAgPGltZ1xuICAgICAgICAgICAgICAgIFtuZ1N0eWxlXT1cIntcbiAgICAgICAgICAgICAgICAgIHdpZHRoOiAnMThweCcsXG4gICAgICAgICAgICAgICAgICAnYXNwZWN0LXJhdGlvJzogMSxcbiAgICAgICAgICAgICAgICAgICdib3JkZXItcmFkaXMnOiAnMnB4J1xuICAgICAgICAgICAgICAgIH1cIlxuICAgICAgICAgICAgICAgIFtzcmNdPVwiaXRlbS5sb2dvTmFtZVwiXG4gICAgICAgICAgICAgICAgW2FsdF09XCJpdGVtLnZhbHVlXCJcbiAgICAgICAgICAgICAgLz5cbiAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIml0ZW0ubG9nb05hbWUgPT09ICduby11cmwnXCI+XG4gICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJuby1wcm9maWxlLWltYWdlXCI+XG4gICAgICAgICAgICAgICAgPGFwcC1jYS1wcm9maWxlLWltYWdlXG4gICAgICAgICAgICAgICAgICAgIFtpbmR4XT1cIjBcIlxuICAgICAgICAgICAgICAgICAgICBbc2l6ZV09XCInc21hbGwnXCJcbiAgICAgICAgICAgICAgICAgICAgW25hbWVdPVwiaXRlbS52YWx1ZSFcIlxuICAgICAgICAgICAgICAgID48L2FwcC1jYS1wcm9maWxlLWltYWdlPlxuICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgIFxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXRlbT8ubG9nb05hbWUgJiYgaXRlbT8uaXNTdmdcIj5cbiAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgXG4gICAgICAgICAgICAgICdmb2N1c2FibGUtc3ZnJzogaXNGb2N1c0lucHV0LFxuICAgICAgICAgICAgICAncGF5cm9sbC1kZWR1Y3Rpb24tdHJ1Y2stc3ZnJzogdGVtcGxhdGUgPT09IGRyb3Bkb3duVGVtcGxhdGVUeXBlRW51bS5QQVlST0xMX1RSVUNLU1xuICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICBjbGFzcz1cInt7IGl0ZW0/LnN1YkZvbGRlciB9fSB7e1xuICAgICAgICAgICAgICBpdGVtPy5sb2dvVHlwZT8udHJpbSgpPy5yZXBsYWNlKCcgJywgJycpPy50b0xvd2VyQ2FzZSgpXG4gICAgICAgICAgICB9fVwiXG4gICAgICAgICAgICBbc3JjXT1cIml0ZW0/LmxvZ29OYW1lIVwiXG4gICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgIDwvbmctY29udGFpbmVyPlxuICBcbiAgICAgICAgPCEtLSBUZXh0IC0tPlxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIWl0ZW0/LmlzUHJvZ3Jlc3NCYXJcIj5cbiAgICAgICAgICA8c3BhblxuICAgICAgICAgICAgY2xhc3M9XCJtdWx0aXBsZS1pbnB1dC10ZXh0XCJcbiAgICAgICAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgICAgICAgJ2ZvY3VzYWJsZS10ZXh0JzogaXNGb2N1c0lucHV0LFxuICAgICAgICAgICAgICBjb3VudGVyOiBpdGVtPy5pc0NvdW50ZXIsXG4gICAgICAgICAgICAgICdjb3VudGVyLWZvY3VzJzogaXRlbT8uaXNDb3VudGVyICYmIGlzRm9jdXNJbnB1dCxcbiAgICAgICAgICAgICAgJ2NvdW50ZXItb25lJzogaXRlbT8udmFsdWUgPT09IDEsXG4gICAgICAgICAgICAgICdjYS1hZGQtZG90JzogdGVtcGxhdGUgPT09IGRyb3Bkb3duVGVtcGxhdGVUeXBlRW51bS5MT0FEX0RJU1BBVENIRVJcbiAgICAgICAgICAgIH1cIlxuICAgICAgICAgICAgW25nU3R5bGVdPVwie1xuICAgICAgICAgICAgICBjb2xvcjogJyM2RjlFRTAnXG4gICAgICAgICAgICB9XCJcbiAgICAgICAgICA+XG4gICAgICAgICAgICB7eyBpdGVtLnZhbHVlIH19XG4gICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXRlbT8uc2Vjb25kX3ZhbHVlXCI+XG4gICAgICAgICAgICAgIDxzcGFuPnt7IGl0ZW0uc2Vjb25kX3ZhbHVlIH19PC9zcGFuPlxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgPC9zcGFuPlxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgXG4gICAgICAgIDwhLS0gTG9hZCBCcm9rZXIgUHJvZ3Jlc3NCYXIgLS0+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtPy5pc1Byb2dyZXNzQmFyXCI+XG4gICAgICAgICAgPGNhLWxvYWQtbW9kYWwtcHJvZ3Jlc3MtYmFyXG4gICAgICAgICAgICBbdG90YWxBbW91bnRdPVwiaXRlbS5zZWNvbmRfdmFsdWUhXCJcbiAgICAgICAgICAgIFthdmFpbGFibGVDcmVkaXRdPVwiaXRlbS52YWx1ZSA/IGl0ZW0udmFsdWUgOiAwXCJcbiAgICAgICAgICAgIFtpbnB1dEZvY3VzXT1cImlzRm9jdXNJbnB1dFwiXG4gICAgICAgICAgPjwvY2EtbG9hZC1tb2RhbC1wcm9ncmVzcy1iYXI+XG4gICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPC9zcGFuPlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8aW5wdXRcbiAgICAjaW5wdXRcbiAgICBbdHlwZV09XCJpbnB1dENvbmZpZy50eXBlIHwgaW5wdXRUeXBlOiBpc1RvZ2dsZVBhc3N3b3JkXCJcbiAgICBbaWRdPVwiaW5wdXRDb25maWcuaWQgPyBpbnB1dENvbmZpZy5pZCA6IGlucHV0Q29uZmlnLm5hbWVcIlxuICAgIFtuYW1lXT1cImlucHV0Q29uZmlnLm5hbWVcIlxuICAgIFtkaXNhYmxlZF09XCJpbnB1dENvbmZpZy5pc0Rpc2FibGVkIVwiXG4gICAgW2F1dG9jb21wbGV0ZV09XCJpbnB1dENvbmZpZy5hdXRvY29tcGxldGUgPyBpbnB1dENvbmZpZy5hdXRvY29tcGxldGUgOiAnb2ZmJ1wiXG4gICAgW3BsYWNlaG9sZGVyXT1cIlxuICAgICAgKGlucHV0Q29uZmlnLnBsYWNlaG9sZGVySW5zdGVhZE9mTGFiZWwgJiZcbiAgICAgIGlucHV0Q29uZmlnLnBsYWNlaG9sZGVyICYmXG4gICAgICBpc0ZvY3VzSW5wdXRcbiAgICAgICAgPyBpbnB1dENvbmZpZy5wbGFjZWhvbGRlclxuICAgICAgICA6ICcnKSB8fFxuICAgICAgKGlucHV0Q29uZmlnLnBsYWNlaG9sZGVyICYmIGlzRm9jdXNJbnB1dCA/IGlucHV0Q29uZmlnLnBsYWNlaG9sZGVyIDogJycpXG4gICAgXCJcbiAgICBbbWluTGVuZ3RoXT1cImlucHV0Q29uZmlnLm1pbkxlbmd0aCA/IGlucHV0Q29uZmlnLm1pbkxlbmd0aCA6IDBcIlxuICAgIFttYXhMZW5ndGhdPVwiaW5wdXRDb25maWcubWF4TGVuZ3RoID8gaW5wdXRDb25maWcubWF4TGVuZ3RoIDogOTk5XCJcbiAgICBbbWFza109XCJpbnB1dENvbmZpZy5tYXNrXCJcbiAgICBbbWluXT1cImlucHV0Q29uZmlnLm1pbiA/IGlucHV0Q29uZmlnLm1pbiA6IDBcIlxuICAgIFttYXhdPVwiaW5wdXRDb25maWcubWF4XCJcbiAgICBbc3RlcF09XCJpbnB1dENvbmZpZy5zdGVwID8gaW5wdXRDb25maWcuc3RlcCA6IG51bGxcIlxuICAgIFtyZWFkT25seV09XCJpbnB1dENvbmZpZy5yZWFkT25seVwiXG4gICAgYXBwTWluTWF4VmFsdWVcbiAgICBbbWluVmFsdWVdPVwiaW5wdXRDb25maWcubWluIVwiXG4gICAgW21heFZhbHVlXT1cImlucHV0Q29uZmlnLm1heCFcIlxuICAgIGlucHV0Zm9ybWF0PVwiZGQtbW0teXlcIlxuICAgIGNsYXNzPVwiaW5wdXQtY29udHJvbFxuICB7eyBpbnB1dENvbmZpZy50ZXh0VHJhbnNmb3JtIH19XG4gIHt7IGlucHV0Q29uZmlnLnRleHRBbGlnbiB9fVxuICB7eyBpbnB1dENvbmZpZy5jdXN0b21DbGFzcyB9fVxuICBcIlxuICAgIFtuZ0NsYXNzXT1cIlxuICAgICAgZ2V0U3VwZXJDb250cm9sXG4gICAgICAgIHwgaW5wdXRDbGFzc1xuICAgICAgICAgIDogaXNGb2N1c0lucHV0XG4gICAgICAgICAgOiBpc1RvdWNoZWRJbnB1dFxuICAgICAgICAgIDogaW5wdXRDb25maWdcbiAgICAgICAgICA6IGlucHV0XG4gICAgICAgICAgOiBpc1Zpc2libGVDb21tYW5kc1xuICAgICAgICAgIDogZ2V0U3VwZXJDb250cm9sPy52YWx1ZVxuICAgICAgICAgIDogZ2V0U3VwZXJDb250cm9sPy5pbnZhbGlkXG4gICAgICAgICAgOiBnZXRTdXBlckNvbnRyb2w/LnRvdWNoZWRcbiAgICAgICAgICA6IGlzRHJvcGRvd25Ub2dnbGVyXG4gICAgICAgICAgOiBpc0VkaXRJbnB1dFxuICAgICAgICAgIDogdGVtcGxhdGVcbiAgICBcIlxuICAgIChrZXlwcmVzcyk9XCJvbktleVByZXNzKCRldmVudClcIlxuICAgIChrZXlkb3duKT1cIm9uS2V5ZG93bigkZXZlbnQpXCJcbiAgICAoa2V5dXApPVwib25LZXl1cCgkZXZlbnQpXCJcbiAgICAoYmx1cik9XCJvbkJsdXIoJGV2ZW50KVwiXG4gICAgKGZvY3VzKT1cIm9uRm9jdXMoJGV2ZW50KVwiXG4gICAgKHNlbGVjdCk9XCJzZWxlY3Rpb25DaGFuZ2UoJGV2ZW50KVwiXG4gICAgKGlucHV0KT1cIm9uQ2hhbmdlKCRhbnkoJGV2ZW50LnRhcmdldCkudmFsdWUpOyB0cmFuc2Zvcm1UZXh0KCRldmVudClcIlxuICAgIFsobmdNb2RlbCldPVwiaW5wdXQudmFsdWVcIlxuICAgIFtuZ1N0eWxlXT1cIlxuICAgICAgaW5wdXRDb25maWcuc3RhdHVzU3R5bGUgPyAoaW5wdXQudmFsdWUgfCBsb2FkU3RhdHVzQ29sb3IpIDogJydcbiAgICBcIlxuICAvPlxuXG4gIDwhLS0gUGxhY2Vob2xkZXIgSWNvbiBvbiBSaWdodCBTaWRlIC0tPlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaW5wdXRDb25maWcucGxhY2Vob2xkZXJJY29uUmlnaHRTaWRlXCI+XG4gICAgPHN2Zy1pY29uXG4gICAgICBjbGFzcz1cInBsYWNlaG9sZGVyLWljb24tcmlnaHQtc2lkZSB7e1xuICAgICAgICBpbnB1dENvbmZpZy5wbGFjZWhvbGRlckljb25Db2xvclxuICAgICAgfX1cIlxuICAgICAgW25nQ2xhc3NdPVwiXG4gICAgICAgIGlzRm9jdXNJbnB1dFxuICAgICAgICAgIHwgaW5wdXRQbGFjZWhvbGRlckljb25SaWdodENsYXNzXG4gICAgICAgICAgICA6IGdldFN1cGVyQ29udHJvbFxuICAgICAgICAgICAgOiBpbnB1dENvbmZpZ1xuICAgICAgICAgICAgOiBpc1RvdWNoZWRJbnB1dFxuICAgICAgICAgICAgOiBnZXRTdXBlckNvbnRyb2w/LnZhbHVlXG4gICAgICBcIlxuICAgICAgW3NyY109XCJcbiAgICAgICAgaW5wdXRDb25maWcucGxhY2Vob2xkZXJJY29uUmlnaHRTaWRlLnRvTG93ZXJDYXNlKClcbiAgICAgICAgICB8IGNhU3ZnIDogJ2NvbW1vbidcbiAgICAgIFwiXG4gICAgPjwvc3ZnLWljb24+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDwhLS0gSW5wdXQgRXJyb3IgTWVzc2FnZSAtLT5cbiAgPG5nLWNvbnRhaW5lclxuICAgICpuZ0lmPVwiXG4gICAgICAhKCFnZXRTdXBlckNvbnRyb2w/LnZhbHVlICYmIGlzRm9jdXNJbnB1dCkgJiZcbiAgICAgIChpc1RvdWNoZWRJbnB1dCB8fCBnZXRTdXBlckNvbnRyb2w/LnRvdWNoZWQgfHwgZ2V0U3VwZXJDb250cm9sPy52YWx1ZSkgJiZcbiAgICAgIGdldFN1cGVyQ29udHJvbD8uaW52YWxpZCAmJlxuICAgICAgIWlucHV0Q29uZmlnLmlzSW52YWxpZFNlYXJjaEluRHJvcGRvd24gJiZcbiAgICAgICFpbnB1dENvbmZpZy5pc0Rpc2FibGVkXG4gICAgXCJcbiAgPlxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCIhKGlucHV0Q29uZmlnLmhpZGVFcnJvck1lc3NhZ2UgfHwgaW5wdXRDb25maWcuZXJyb3JJbnNpZGVJbnB1dClcIj5cbiAgICAgIDxzcGFuIGNsYXNzPVwiaW5wdXQtZXJyb3Ige3sgaW5wdXRDb25maWcuY3VzdG9tQ2xhc3MgfX1cIj5cbiAgICAgICAge3sgZ2V0U3VwZXJDb250cm9sPy5lcnJvcnMgfCBpbnB1dEVycm9yOiBpbnB1dENvbmZpZy5uYW1lIH19XG4gICAgICA8L3NwYW4+XG4gICAgPC9uZy1jb250YWluZXI+XG5cbiAgICA8IS0tIEVycm9yIE1lc3NhZ2UgSW5zaWRlIElucHV0IC0tPlxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpbnB1dENvbmZpZy5lcnJvckluc2lkZUlucHV0XCI+XG4gICAgICA8c3BhbiBjbGFzcz1cImVycm9yLWluc2lkZS1pbnB1dCB7eyBpbnB1dENvbmZpZy5jdXN0b21DbGFzcyB9fVwiPlxuICAgICAgICB7eyBnZXRTdXBlckNvbnRyb2w/LmVycm9ycyB8IGlucHV0RXJyb3I6IGlucHV0Q29uZmlnLm5hbWUgfX1cbiAgICAgIDwvc3Bhbj5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImlucHV0Q29uZmlnLmZpeGVkUGxhY2hvbGRlciAmJiBpbnB1dC52YWx1ZVwiPlxuICAgIDxzcGFuIGNsYXNzPVwiaW5wdXQtZml4ZWQtcGxhY2Vob2Rlci1sYWJlbFwiPlxuICAgICAge3sgaW5wdXRDb25maWcuZml4ZWRQbGFjaG9sZGVyIH19XG4gICAgPC9zcGFuPlxuICA8L25nLWNvbnRhaW5lcj5cbjwvZGl2PlxuXG48IS0tIFBvcG92ZXIgZm9yIERhdGVUaW1lIFBpY2tlcnMgLS0+XG48bmctdGVtcGxhdGUgI2RhdGVUaW1lUG9wb3ZlciBsZXQtZGF0YT1cImRhdGFcIj5cbiAgPGRpdiBjbGFzcz1cImRhdGV0aW1lLWRyb3Bkb3duLWhvbGRlclwiPlxuICAgIDxhcHAtY2EtY3VzdG9tLWRhdGV0aW1lLXBpY2tlcnNcbiAgICAgIFtjYWxlbmRhclR5cGVdPVwiXG4gICAgICAgIGlucHV0Q29uZmlnLm5hbWUgPT09ICdkYXRlcGlja2VyJyB8fFxuICAgICAgICBpbnB1dENvbmZpZy5uYW1lID09PSAnZGF0ZXBpY2tlckJhbmtDYXJkJ1xuICAgICAgICAgID8gJ2RhdGUnXG4gICAgICAgICAgOiAndGltZSdcbiAgICAgIFwiXG4gICAgICBbaW5wdXRDb25maWddPVwiaW5wdXRDb25maWdcIlxuICAgICAgW3BsYWNlaG9sZGVyXT1cIidNTS9ERC9ZWSdcIlxuICAgICAgW2RhdGVUaW1lXT1cImRhdGVUaW1lSW5wdXREYXRlXCJcbiAgICAgIChjbG9zZVBvcG92ZXIpPVwiY2xvc2VQb3BvdmVyKClcIlxuICAgID48L2FwcC1jYS1jdXN0b20tZGF0ZXRpbWUtcGlja2Vycz5cbiAgPC9kaXY+XG48L25nLXRlbXBsYXRlPiJdfQ==
350
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtaW5wdXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQvY2EtaW5wdXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQvY2EtaW5wdXQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFFTCxzQkFBc0IsRUFDdEIsdUJBQXVCLEVBRXZCLFNBQVMsRUFFVCxZQUFZLEVBQ1osS0FBSyxFQUlMLE1BQU0sRUFDTixJQUFJLEVBRUosU0FBUyxFQUNULGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBRUwsV0FBVyxFQUVYLG1CQUFtQixHQUNwQixNQUFNLGdCQUFnQixDQUFDO0FBQ3hCLE9BQU8sRUFBRSxhQUFhLEVBQWMsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUNyRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQU14RCxRQUFRO0FBQ1IsT0FBTyxFQUNMLGNBQWMsRUFDZCx1QkFBdUIsRUFDdkIsY0FBYyxFQUNkLGNBQWMsRUFDZCxhQUFhLEVBQ2IseUJBQXlCLEVBQ3pCLGtCQUFrQixFQUNsQixhQUFhLEVBQ2IsMkJBQTJCLEVBQzNCLHFCQUFxQixFQUNyQiw2QkFBNkIsRUFDN0Isa0NBQWtDLEVBQ2xDLDZCQUE2QixFQUM3Qix1QkFBdUIsR0FDeEIsTUFBTSxTQUFTLENBQUM7QUFDakIsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ3BELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLG9DQUFvQyxDQUFDO0FBR3pFLGFBQWE7QUFDYixPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxrREFBa0QsQ0FBQztBQUMzRixPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxzREFBc0QsQ0FBQztBQUM3RixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSw0REFBNEQsQ0FBQztBQUN0RyxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSw0REFBNEQsQ0FBQztBQUN0RyxPQUFPLEVBQUUsK0JBQStCLEVBQUUsTUFBTSw0RUFBNEUsQ0FBQztBQUM3SCxPQUFPLEVBQUUsOEJBQThCLEVBQUUsTUFBTSwwRUFBMEUsQ0FBQztBQUMxSCxPQUFPLEVBQUUsZ0NBQWdDLEVBQUUsTUFBTSxvRUFBb0UsQ0FBQztBQUN0SCxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxnREFBZ0QsQ0FBQztBQUN6RixPQUFPLEVBQUUsK0JBQStCLEVBQUUsTUFBTSxvRUFBb0UsQ0FBQztBQUVySCxXQUFXO0FBQ1gsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sWUFBWSxDQUFDO0FBQy9DLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLHlFQUF5RSxDQUFDO0FBRXhILFVBQVU7QUFDVixPQUFPLEVBQW9CLGNBQWMsRUFBRSxNQUFNLFNBQVMsQ0FBQztBQUUzRCxVQUFVO0FBQ1YsT0FBTyxFQUFFLFNBQVMsRUFBRSxVQUFVLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUNuRSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sVUFBVSxDQUFDO0FBRXpDLGFBQWE7QUFDYixPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFFcEQsUUFBUTtBQUNSLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxlQUFlLEVBQUUsTUFBTSxTQUFTLENBQUM7QUFDN0QsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sNEJBQTRCLENBQUM7Ozs7Ozs7OztBQXFEdEUsTUFBTSxPQUFPLGdCQUFnQjtJQW1FM0IsWUFDaUIsWUFBdUIsRUFDOUIsS0FBd0IsRUFDekIsaUJBQW9DLEVBQ25DLHFCQUE0QztRQUhyQyxpQkFBWSxHQUFaLFlBQVksQ0FBVztRQUM5QixVQUFLLEdBQUwsS0FBSyxDQUFtQjtRQUN6QixzQkFBaUIsR0FBakIsaUJBQWlCLENBQW1CO1FBQ25DLDBCQUFxQixHQUFyQixxQkFBcUIsQ0FBdUI7UUEzRDVCLG1CQUFjLEdBQ3RDLElBQUksWUFBWSxFQUFXLENBQUM7UUFDVCxjQUFTLEdBQzVCLElBQUksWUFBWSxFQUFXLENBQUM7UUFDUixvQkFBZSxHQUNuQyxJQUFJLFlBQVksRUFBVyxDQUFDO1FBQ1osZ0JBQVcsR0FDM0IsSUFBSSxZQUFZLEVBQW9CLENBQUM7UUFDZixpQkFBWSxHQUNsQyxJQUFJLFlBQVksRUFBaUIsQ0FBQztRQUNuQixvQkFBZSxHQUM5QixJQUFJLFlBQVksRUFBVyxDQUFDO1FBRTlCLFdBQVc7UUFDaUIsMEJBQXFCLEdBQy9DLElBQUksWUFBWSxFQUFXLENBQUM7UUFDRywrQkFBMEIsR0FHdEQsSUFBSSxZQUFZLEVBR2pCLENBQUM7UUFFRSxtQkFBYyxHQUFZLEtBQUssQ0FBQztRQUV2QyxpQkFBaUI7UUFDVixzQkFBaUIsR0FBWSxLQUFLLENBQUM7UUFFMUMsYUFBYTtRQUNOLGdCQUFXLEdBQVksS0FBSyxDQUFDO1FBRXBDLFdBQVc7UUFDSixxQkFBZ0IsR0FBWSxLQUFLLENBQUM7UUFDbEMsaUJBQVksR0FBWSxLQUFLLENBQUM7UUFFckMsV0FBVztRQUNKLHNCQUFpQixHQUFZLEtBQUssQ0FBQztRQUUxQyxPQUFPO1FBQ0Esa0JBQWEsR0FBWSxLQUFLLENBQUM7UUFDL0Isc0JBQWlCLEdBQVMsSUFBSSxJQUFJLEVBQUUsQ0FBQztRQUNyQyxvQkFBZSxHQUFZLEtBQUssQ0FBQztRQUV4QyxVQUFVO1FBQ0YsYUFBUSxHQUFrQixJQUFJLE9BQU8sRUFBUSxDQUFDO1FBRS9DLG1CQUFjLEdBQUcsY0FBYyxDQUFDO1FBRWhDLGtDQUE2QixHQUFHLElBQUksQ0FBQztRQUVyQyxzQkFBaUIsR0FBRyxpQkFBaUIsQ0FBQztRQUN0QyxvQkFBZSxHQUFHLGVBQWUsQ0FBQztRQUNsQyw2QkFBd0IsR0FBRyx3QkFBd0IsQ0FBQztRQWtRcEQsa0JBQWEsR0FBRyxDQUFDLEtBQWEsRUFBVSxFQUFFLENBQUMsS0FBSyxDQUFDO1FBMVB0RCxJQUFJLENBQUMsWUFBWSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUM7SUFDekMsQ0FBQztJQUVELElBQUksZUFBZTtRQUNqQixPQUFPLElBQUksQ0FBQyxZQUFZLENBQUMsT0FBTyxDQUFDO0lBQ25DLENBQUM7SUFFRCxRQUFRO1FBQ04sSUFBSSxDQUFDLG1CQUFtQixFQUFFLENBQUM7UUFFM0IsSUFBSSxDQUFDLGdCQUFnQixFQUFFLENBQUM7UUFFeEIsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO0lBQ3pCLENBQUM7SUFFRCxXQUFXLENBQUMsT0FBc0I7UUFDaEMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUMvQixDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxtQkFBbUIsRUFBRSxDQUFDO0lBQy9DLENBQUM7SUFFTSxnQkFBZ0I7UUFDckIsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7UUFDMUQsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBRWxFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxrQkFBa0I7YUFDdEMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7YUFDOUIsU0FBUyxDQUNSLENBQUMsQ0FDQyxLQUFLLEVBQ0wsT0FBTyxFQUNQLGlCQUFpQixFQUNqQixXQUFXLEVBQ1gsaUJBQWlCLEVBQ2pCLGlCQUFpQixFQUNqQixhQUFhLEVBQ2IsWUFBWSxFQUNiLEVBQUUsRUFBRTtZQUNILElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDO1lBQzFCLElBQUksQ0FBQyxjQUFjLEdBQUcsT0FBTyxDQUFDO1lBQzlCLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxpQkFBaUIsQ0FBQztZQUMzQyxJQUFJLENBQUMsV0FBVyxHQUFHLFdBQVcsQ0FBQztZQUMvQixJQUFJLENBQUMsaUJBQWlCLEdBQUcsaUJBQWlCLENBQUM7WUFDM0MsSUFBSSxDQUFDLGlCQUFpQixHQUFHLGlCQUFpQixDQUFDO1lBQzNDLElBQUksQ0FBQyxhQUFhLEdBQUcsYUFBYSxDQUFDO1lBQ25DLElBQUksQ0FBQyxZQUFZLEdBQUcsWUFBWSxDQUFDO1FBQ25DLENBQUMsQ0FDRixDQUFDO0lBQ04sQ0FBQztJQUVNLGVBQWU7UUFDcEIsTUFBTSxXQUFXLEdBR1g7WUFDSjtnQkFDRSxPQUFPLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGFBQWE7Z0JBQzdDLE9BQU8sRUFBRSxJQUFJLENBQUMsWUFBWTthQUMzQjtZQUNEO2dCQUNFLE9BQU8sRUFBRSxJQUFJLENBQUMsaUJBQWlCLENBQUMsZ0JBQWdCO2dCQUNoRCxPQUFPLEVBQUUsSUFBSSxDQUFDLGVBQWU7YUFDOUI7WUFDRDtnQkFDRSxPQUFPLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGVBQWU7Z0JBQy9DLE9BQU8sRUFBRSxJQUFJLENBQUMsY0FBYzthQUM3QjtZQUNEO2dCQUNFLE9BQU8sRUFBRSxJQUFJLENBQUMsaUJBQWlCLENBQUMsVUFBVTtnQkFDMUMsT0FBTyxFQUFFLElBQUksQ0FBQyxTQUFTO2FBQ3hCO1lBQ0Q7Z0JBQ0UsT0FBTyxFQUFFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxZQUFZO2dCQUM1QyxPQUFPLEVBQUUsSUFBSSxDQUFDLFdBQVc7YUFDMUI7WUFDRDtnQkFDRSxPQUFPLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGlCQUFpQjtnQkFDakQsT0FBTyxFQUFFLElBQUksQ0FBQyxxQkFBcUI7YUFDcEM7WUFDRDtnQkFDRSxPQUFPLEVBQUUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHNCQUFzQjtnQkFDdEQsT0FBTyxFQUFFLElBQUksQ0FBQywwQkFBMEI7YUFDekM7U0FDRixDQUFDO1FBRUYsV0FBVyxDQUFDLE9BQU8sQ0FBQyxDQUFDLEVBQUUsT0FBTyxFQUFFLE9BQU8sRUFBRSxFQUFFLEVBQUUsQ0FDM0MsT0FBTzthQUNKLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO2FBQzlCLFNBQVMsQ0FBQyxDQUFDLEtBQVUsRUFBRSxFQUFFLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUNsRCxDQUFDO0lBQ0osQ0FBQztJQUVNLG1CQUFtQjtRQUN4QixNQUFNLGVBQWUsR0FBRyxhQUFhLENBQUM7WUFDcEMsSUFBSSxDQUFDLGVBQWUsRUFBRSxZQUFZO1lBQ2xDLElBQUksQ0FBQyxlQUFlLEVBQUUsYUFBYTtTQUNwQyxDQUFDLENBQUM7UUFFSCxlQUFlLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsR0FBRyxFQUFFO1lBQzVELElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxFQUFFLENBQUM7UUFDN0IsQ0FBQyxDQUFDLENBQUM7UUFFSCxJQUFJLENBQUMsaUJBQWlCLENBQUMsU0FBUzthQUM3QixJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQzthQUM5QixTQUFTLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRTtZQUNuQixJQUFJLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3ZCLENBQUMsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQUVNLGNBQWMsQ0FBQyxPQUFzQjtRQUMxQyxJQUFJLE9BQU8sQ0FBQyxhQUFhLENBQUMsRUFBRSxDQUFDO1lBQzNCLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxjQUFjLENBQ25DLE9BQU8sQ0FBQyxhQUFhLENBQUMsRUFBRSxZQUFZLENBQ3JDLENBQUM7WUFDRixJQUFJLENBQUMsaUJBQWlCLENBQUMsbUJBQW1CLEVBQUUsQ0FBQztRQUMvQyxDQUFDO1FBQ0QsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGlCQUFpQixDQUN0QyxPQUFPLENBQUMsZ0JBQWdCLENBQUMsRUFBRSxZQUFZLENBQ3hDLENBQUM7SUFDSixDQUFDO0lBRU0sVUFBVSxDQUFDLEdBQXFCO1FBQ3JDLElBQUksSUFBSSxDQUFDLFdBQVcsQ0FBQyxjQUFjLEVBQUUsQ0FBQztZQUNwQyxJQUFJLEdBQUcsSUFBSSxJQUFJLENBQUMsNkJBQTZCO2dCQUMzQyxJQUFJLENBQUMsS0FBSyxDQUFDLGFBQWEsQ0FBQyxLQUFLO29CQUM1QixJQUFJLENBQUMscUJBQXFCLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxDQUFDOztnQkFDekMsSUFBSSxDQUFDLEtBQUssQ0FBQyxhQUFhLENBQUMsS0FBSyxHQUFHLEdBQUcsQ0FBQztZQUUxQyxJQUFJLENBQUMsNkJBQTZCLEdBQUcsS0FBSyxDQUFDO1FBQzdDLENBQUM7UUFFRCxJQUFJLENBQUMsaUJBQWlCLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQ3pDLENBQUM7SUFFTSxnQkFBZ0IsQ0FBQyxFQUFPO1FBQzdCLElBQUksQ0FBQyxRQUFRLEdBQUcsRUFBRSxDQUFDO0lBQ3JCLENBQUM7SUFFTSxRQUFRLENBQUMsQ0FBTSxJQUFTLENBQUM7SUFFekIsaUJBQWlCLEtBQVUsQ0FBQztJQUU1QixNQUFNLENBQUMsS0FBa0I7UUFDOUIsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUVyQyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM1QixDQUFDO0lBRU0sT0FBTyxDQUFDLEtBQWtCO1FBQy9CLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBRWhDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDeEMsQ0FBQztJQUVNLFVBQVUsQ0FBQyxLQUFvQjtRQUNwQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzNDLENBQUM7SUFFTSxTQUFTLENBQUMsS0FBb0I7UUFDbkMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMxQyxDQUFDO0lBRU0sT0FBTyxDQUFDLEtBQW9CO1FBQ2pDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDeEMsQ0FBQztJQUVNLGFBQWEsQ0FBQyxLQUFZO1FBQy9CLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDOUMsQ0FBQztJQUVNLFVBQVUsQ0FBQyxLQUFZO1FBQzVCLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDM0MsQ0FBQztJQUVNLGdCQUFnQixDQUFDLEtBQVk7UUFDbEMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQ3ZCLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQztJQUNqRCxDQUFDO0lBRU0sVUFBVSxDQUFDLEtBSWpCO1FBQ0MsSUFBSSxDQUFDLGlCQUFpQixDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsS0FBSyxFQUFFLEtBQUssQ0FBQyxJQUFJLEVBQUUsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQzNFLENBQUM7SUFFTSxXQUFXLENBQUMsS0FBWTtRQUM3QixJQUFJLENBQUMsaUJBQWlCLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzVDLENBQUM7SUFFTSxxQkFBcUI7UUFDMUIsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHFCQUFxQixFQUFFLENBQUM7SUFDakQsQ0FBQztJQUVNLHNCQUFzQixDQUFDLEtBQVk7UUFDeEMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHNCQUFzQixDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ3ZELENBQUM7SUFFTSxzQkFBc0IsQ0FBQyxLQUFVO1FBQ3RDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxzQkFBc0IsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN2RCxDQUFDO0lBRUQsa0dBQWtHO0lBRTNGLGVBQWUsQ0FBQyxLQUFZO1FBQ2pDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxlQUFlLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDaEQsQ0FBQztJQUVNLFdBQVcsQ0FBQyxLQUFxQjtRQUN0QyxJQUFJLENBQUMsaUJBQWlCLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzVDLENBQUM7SUFFTSxZQUFZLENBQUMsS0FJbkI7UUFDQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzdDLENBQUM7SUFFTSxlQUFlLENBQUMsS0FHdEI7UUFDQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsZUFBZSxDQUFDLEtBQUssQ0FBQyxDQUFDLEVBQUUsS0FBSyxDQUFDLGdCQUFnQixDQUFDLENBQUM7SUFDMUUsQ0FBQztJQUVNLGNBQWM7UUFDbkIsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGNBQWMsRUFBRSxDQUFDO0lBQzFDLENBQUM7SUFFTSxlQUFlO1FBQ3BCLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxlQUFlLEVBQUUsQ0FBQztJQUMzQyxDQUFDO0lBRU0sWUFBWTtRQUNqQixJQUFJLElBQUksQ0FBQyxjQUFjO1lBQUUsSUFBSSxDQUFDLGNBQWMsQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUN2RCxDQUFDO0lBRU0seUJBQXlCO1FBQzlCLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyx5QkFBeUIsRUFBRSxDQUFDO0lBQ3JELENBQUM7SUFFTSx5QkFBeUI7UUFDOUIsSUFBSSxDQUFDLGlCQUFpQixDQUFDLHlCQUF5QixFQUFFLENBQUM7SUFDckQsQ0FBQztJQUlELFdBQVc7UUFDVCxJQUFJLENBQUMsaUJBQWlCLENBQUMsU0FBUyxFQUFFLENBQUM7UUFDbkMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNyQixJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQzNCLENBQUM7K0dBelVVLGdCQUFnQjttR0FBaEIsZ0JBQWdCLDBlQUZoQixDQUFDLGlCQUFpQixFQUFFLDZCQUE2QixDQUFDLHlLQU1sRCxVQUFVLHFFQ3pJdkIsdTNxQkFrcUJjO2dCRHhrQlYsU0FBUztnQkFDVCxZQUFZLGtiQUNaLFdBQVcsOG1CQUNYLG1CQUFtQiw4QkFDbkIsb0JBQW9CLGdPQUNwQixTQUFTLHNXQUNULGFBQWE7Z0JBRWIsT0FBTztnQkFDUCxjQUFjLDhDQUNkLHVCQUF1Qix1REFDdkIsY0FBYyw4Q0FDZCxjQUFjLDhDQUNkLGFBQWEsNkNBQ2IseUJBQXlCLHlEQUN6QixrQkFBa0Isa0RBQ2xCLGFBQWEsNkNBQ2IsMkJBQTJCLDJEQUMzQixxQkFBcUIscURBQ3JCLFNBQVMseUNBRVQsbUJBQW1CLG1EQUNuQixrQ0FBa0Msa0VBQ2xDLDZCQUE2Qiw2REFDN0IsdUJBQXVCO2dCQUV2QixhQUFhO2dCQUNiLHFCQUFxQixxTkFDckIsdUJBQXVCLHFPQUN2Qix3QkFBd0Isd05BQ3hCLCtCQUErQix1VEFDL0Isd0JBQXdCLDhKQUN4QixnQ0FBZ0MsMEtBQ2hDLDhCQUE4QiwwWEFDOUIsdUJBQXVCLGtNQUN2QiwrQkFBK0I7Z0JBRS9CLGFBQWE7Z0JBQ2Isb0JBQW9COzs0RkFLWCxnQkFBZ0I7a0JBbkQ1QixTQUFTOytCQUNFLGNBQWMsaUJBR1QsaUJBQWlCLENBQUMsSUFBSSxtQkFDcEIsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1A7d0JBQ1AsU0FBUzt3QkFDVCxZQUFZO3dCQUNaLFdBQVc7d0JBQ1gsbUJBQW1CO3dCQUNuQixvQkFBb0I7d0JBQ3BCLFNBQVM7d0JBQ1QsYUFBYTt3QkFFYixPQUFPO3dCQUNQLGNBQWM7d0JBQ2QsdUJBQXVCO3dCQUN2QixjQUFjO3dCQUNkLGNBQWM7d0JBQ2QsYUFBYTt3QkFDYix5QkFBeUI7d0JBQ3pCLGtCQUFrQjt3QkFDbEIsYUFBYTt3QkFDYiwyQkFBMkI7d0JBQzNCLHFCQUFxQjt3QkFDckIsU0FBUzt3QkFDVCw2QkFBNkI7d0JBQzdCLG1CQUFtQjt3QkFDbkIsa0NBQWtDO3dCQUNsQyw2QkFBNkI7d0JBQzdCLHVCQUF1Qjt3QkFFdkIsYUFBYTt3QkFDYixxQkFBcUI7d0JBQ3JCLHVCQUF1Qjt3QkFDdkIsd0JBQXdCO3dCQUN4QiwrQkFBK0I7d0JBQy9CLHdCQUF3Qjt3QkFDeEIsZ0NBQWdDO3dCQUNoQyw4QkFBOEI7d0JBQzlCLHVCQUF1Qjt3QkFDdkIsK0JBQStCO3dCQUUvQixhQUFhO3dCQUNiLG9CQUFvQjtxQkFDckIsV0FDUSxDQUFDLHNCQUFzQixDQUFDLGFBQ3RCLENBQUMsaUJBQWlCLEVBQUUsNkJBQTZCLENBQUM7OzBCQXNFMUQsSUFBSTs2SUFqRXNDLEtBQUs7c0JBQWpELFNBQVM7dUJBQUMsT0FBTyxFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRTtnQkFDYixjQUFjO3NCQUFwQyxTQUFTO3VCQUFDLFVBQVU7Z0JBRVosV0FBVztzQkFBbkIsS0FBSztnQkFFRyxjQUFjO3NCQUF0QixLQUFLO2dCQUNHLDBCQUEwQjtzQkFBbEMsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUVvQixjQUFjO3NCQUF2QyxNQUFNO3VCQUFDLGdCQUFnQjtnQkFFSCxTQUFTO3NCQUE3QixNQUFNO3VCQUFDLFdBQVc7Z0JBRUcsZUFBZTtzQkFBcEMsTUFBTTt1QkFBQyxZQUFZO2dCQUVGLFdBQVc7c0JBQTVCLE1BQU07dUJBQUMsUUFBUTtnQkFFUSxZQUFZO3NCQUFuQyxNQUFNO3VCQUFDLGNBQWM7Z0JBRUwsZUFBZTtzQkFBL0IsTUFBTTt1QkFBQyxPQUFPO2dCQUlhLHFCQUFxQjtzQkFBaEQsTUFBTTt1QkFBQyxrQkFBa0I7Z0JBRU8sMEJBQTBCO3NCQUExRCxNQUFNO3VCQUFDLHVCQUF1QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge1xuICBBZnRlclZpZXdJbml0LFxuICBDVVNUT01fRUxFTUVOVFNfU0NIRU1BLFxuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gIENvbXBvbmVudCxcbiAgRWxlbWVudFJlZixcbiAgRXZlbnRFbWl0dGVyLFxuICBJbnB1dCxcbiAgT25DaGFuZ2VzLFxuICBPbkRlc3Ryb3ksXG4gIE9uSW5pdCxcbiAgT3V0cHV0LFxuICBTZWxmLFxuICBTaW1wbGVDaGFuZ2VzLFxuICBWaWV3Q2hpbGQsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7XG4gIENvbnRyb2xWYWx1ZUFjY2Vzc29yLFxuICBGb3Jtc01vZHVsZSxcbiAgTmdDb250cm9sLFxuICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxufSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBjb21iaW5lTGF0ZXN0LCBPYnNlcnZhYmxlLCBTdWJqZWN0LCB0YWtlVW50aWwgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IEFuZ3VsYXJTdmdJY29uTW9kdWxlIH0gZnJvbSAnYW5ndWxhci1zdmctaWNvbic7XG5cbi8vIG1vZGVsc1xuaW1wb3J0IHsgSUNhSW5wdXQgfSBmcm9tICcuL2NvbmZpZyc7XG5pbXBvcnQgeyBMYWJlbENvbG9yLCBDb21tYW5kc0V2ZW50IH0gZnJvbSAnLi9tb2RlbHMnO1xuXG4vLyBwaXBlc1xuaW1wb3J0IHtcbiAgSW5wdXRFcnJvclBpcGUsXG4gIElucHV0Q29udGFpbmVyQ2xhc3NQaXBlLFxuICBJbnB1dENsYXNzUGlwZSxcbiAgTGFiZWxDbGFzc1BpcGUsXG4gIFNob3dDbGVhclBpcGUsXG4gIFNob3dJbnZhbGlkRGFuZ2VyTWFya1BpcGUsXG4gIFNob3dWYWxpZENoZWNrUGlwZSxcbiAgSW5wdXRUeXBlUGlwZSxcbiAgSW5wdXREcm9wZG93bkFycm93Q2xhc3NQaXBlLFxuICBTaG93RHJvcGRvd25BcnJvd1BpcGUsXG4gIElucHV0UGxhY2Vob2xkZXJJY29uQ2xhc3NQaXBlLFxuICBJbnB1dFBsYWNlaG9sZGVySWNvblJpZ2h0Q2xhc3NQaXBlLFxuICBJbnB1dFBsYWNlaG9sZGVyVGV4dENsYXNzUGlwZSxcbiAgU2hvd1BsYWNlaG9sZGVyVGV4dFBpcGUsXG59IGZyb20gJy4vcGlwZXMnO1xuaW1wb3J0IHsgQ2FTdmdQaXBlIH0gZnJvbSAnLi4vLi4vcGlwZXMvY2Etc3ZnLnBpcGUnO1xuaW1wb3J0IHsgTG9hZFN0YXR1c0NvbG9yUGlwZSB9IGZyb20gJy4uLy4uL3BpcGVzL2xvYWQtc3RhdHVzLWNvbG9yLnBpcGUnO1xuaW1wb3J0IHsgVGhvdXNhbmRTZXBhcmF0b3JQaXBlIH0gZnJvbSAnLi4vLi4vcGlwZXMvdGhvdXNhbmQtc2VwYXJhdG9yLnBpcGUnO1xuXG4vLyBjb21wb25lbnRzXG5pbXBvcnQgeyBDYUFwcFRvb2x0aXBWMkNvbXBvbmVudCB9IGZyb20gJy4uL2NhLWFwcC10b29sdGlwLXYyL2NhLWFwcC10b29sdGlwLXYyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDYUlucHV0Q2xlYXJDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY2EtaW5wdXQtY2xlYXIvY2EtaW5wdXQtY2xlYXIuY29tcG9uZW50JztcbmltcG9ydCB7IENhSW5wdXRDb21tYW5kc0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9jYS1pbnB1dC1jb21tYW5kcy9jYS1pbnB1dC1jb21tYW5kcy5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ2FJbnB1dFBhc3N3b3JkQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2NhLWlucHV0LXBhc3N3b3JkL2NhLWlucHV0LXBhc3N3b3JkLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDYUlucHV0UGxhY2Vob2xkZXJJY29uQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2NhLWlucHV0LXBsYWNlaG9sZGVyLWljb24vY2EtaW5wdXQtcGxhY2Vob2xkZXItaWNvbi5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ2FJbnB1dERhdGV0aW1lUGlja2VyQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL2NhLWlucHV0LWRhdGV0aW1lLXBpY2tlci9jYS1pbnB1dC1kYXRldGltZS1waWNrZXIuY29tcG9uZW50JztcbmltcG9ydCB7IENhQ3VzdG9tRGF0ZXRpbWVQaWNrZXJzQ29tcG9uZW50IH0gZnJvbSAnLi4vY2EtY3VzdG9tLWRhdGV0aW1lLXBpY2tlcnMvY2EtY3VzdG9tLWRhdGV0aW1lLXBpY2tlcnMuY29tcG9uZW50JztcbmltcG9ydCB7IENhUHJvZmlsZUltYWdlQ29tcG9uZW50IH0gZnJvbSAnLi4vY2EtcHJvZmlsZS1pbWFnZS9jYS1wcm9maWxlLWltYWdlLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDYUxvYWRNb2RhbFByb2dyZXNzQmFyQ29tcG9uZW50IH0gZnJvbSAnLi4vY2EtbG9hZC1tb2RhbC1wcm9ncmVzcy1iYXIvY2EtbG9hZC1tb2RhbC1wcm9ncmVzcy1iYXIuY29tcG9uZW50JztcblxuLy8gc2VydmljZXNcbmltcG9ydCB7IElucHV0U3RhdGVTZXJ2aWNlIH0gZnJvbSAnLi9zZXJ2aWNlcyc7XG5pbXBvcnQgeyBDYWxlbmRhckRhdGVUaW1lUGlja2VyU2VydmljZSB9IGZyb20gJy4uL2NhLWN1c3RvbS1kYXRldGltZS1waWNrZXJzL3NlcnZpY2VzL2NhbGVuZGFyLWRhdGV0aW1lLXBpY2tlci5zZXJ2aWNlJztcblxuLy8gaGVscGVyc1xuaW1wb3J0IHsgSW5wdXRDaGFuZ2VWYWx1ZSwgSW5wdXRTdmdSb3V0ZXMgfSBmcm9tICcuL3V0aWxzJztcblxuLy8gbW9kdWxlc1xuaW1wb3J0IHsgTmdiTW9kdWxlLCBOZ2JQb3BvdmVyIH0gZnJvbSAnQG5nLWJvb3RzdHJhcC9uZy1ib290c3RyYXAnO1xuaW1wb3J0IHsgTmd4TWFza01vZHVsZSB9IGZyb20gJ25neC1tYXNrJztcblxuLy8gZGlyZWN0aXZlc1xuaW1wb3J0IHsgTWluTWF4VmFsdWVEaXJlY3RpdmUgfSBmcm9tICcuL2RpcmVjdGl2ZXMnO1xuXG4vLyBlbnVtc1xuaW1wb3J0IHsgSW5wdXRDb21tYW5kc1R5cGUsIElucHV0U3RyaW5nRW51bSB9IGZyb20gJy4vZW51bXMnO1xuaW1wb3J0IHsgRHJvcGRvd25UZW1wbGF0ZVR5cGVFbnVtIH0gZnJvbSAnLi4vY2EtaW5wdXQtZHJvcGRvd24vZW51bXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhcHAtY2EtaW5wdXQnLFxuICB0ZW1wbGF0ZVVybDogJy4vY2EtaW5wdXQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jYS1pbnB1dC5jb21wb25lbnQuc2NzcyddLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIC8vIE1vZHVsZVxuICAgIENvbW1vbk1vZHVsZSxcbiAgICBGb3Jtc01vZHVsZSxcbiAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgIEFuZ3VsYXJTdmdJY29uTW9kdWxlLFxuICAgIE5nYk1vZHVsZSxcbiAgICBOZ3hNYXNrTW9kdWxlLFxuXG4gICAgLy8gUGlwZVxuICAgIElucHV0RXJyb3JQaXBlLFxuICAgIElucHV0Q29udGFpbmVyQ2xhc3NQaXBlLFxuICAgIElucHV0Q2xhc3NQaXBlLFxuICAgIExhYmVsQ2xhc3NQaXBlLFxuICAgIFNob3dDbGVhclBpcGUsXG4gICAgU2hvd0ludmFsaWREYW5nZXJNYXJrUGlwZSxcbiAgICBTaG93VmFsaWRDaGVja1BpcGUsXG4gICAgSW5wdXRUeXBlUGlwZSxcbiAgICBJbnB1dERyb3Bkb3duQXJyb3dDbGFzc1BpcGUsXG4gICAgU2hvd0Ryb3Bkb3duQXJyb3dQaXBlLFxuICAgIENhU3ZnUGlwZSxcbiAgICBJbnB1dFBsYWNlaG9sZGVySWNvbkNsYXNzUGlwZSxcbiAgICBMb2FkU3RhdHVzQ29sb3JQaXBlLFxuICAgIElucHV0UGxhY2Vob2xkZXJJY29uUmlnaHRDbGFzc1BpcGUsXG4gICAgSW5wdXRQbGFjZWhvbGRlclRleHRDbGFzc1BpcGUsXG4gICAgU2hvd1BsYWNlaG9sZGVyVGV4dFBpcGUsXG5cbiAgICAvLyBDb21wb25lbnRzXG4gICAgQ2FJbnB1dENsZWFyQ29tcG9uZW50LFxuICAgIENhQXBwVG9vbHRpcFYyQ29tcG9uZW50LFxuICAgIENhSW5wdXRQYXNzd29yZENvbXBvbmVudCxcbiAgICBDYUlucHV0UGxhY2Vob2xkZXJJY29uQ29tcG9uZW50LFxuICAgIENhSW5wdXRDb21tYW5kc0NvbXBvbmVudCxcbiAgICBDYUN1c3RvbURhdGV0aW1lUGlja2Vyc0NvbXBvbmVudCxcbiAgICBDYUlucHV0RGF0ZXRpbWVQaWNrZXJDb21wb25lbnQsXG4gICAgQ2FQcm9maWxlSW1hZ2VDb21wb25lbnQsXG4gICAgQ2FMb2FkTW9kYWxQcm9ncmVzc0JhckNvbXBvbmVudCxcblxuICAgIC8vIERpcmVjdGl2ZXNcbiAgICBNaW5NYXhWYWx1ZURpcmVjdGl2ZSxcbiAgXSxcbiAgc2NoZW1hczogW0NVU1RPTV9FTEVNRU5UU19TQ0hFTUFdLFxuICBwcm92aWRlcnM6IFtJbnB1dFN0YXRlU2VydmljZSwgQ2FsZW5kYXJEYXRlVGltZVBpY2tlclNlcnZpY2VdLFxufSlcbmV4cG9ydCBjbGFzcyBDYUlucHV0Q29tcG9uZW50XG4gIGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3ksIE9uQ2hhbmdlcywgQWZ0ZXJWaWV3SW5pdCwgQ29udHJvbFZhbHVlQWNjZXNzb3JcbntcbiAgQFZpZXdDaGlsZCgnaW5wdXQnLCB7IHN0YXRpYzogdHJ1ZSB9KSBwdWJsaWMgaW5wdXQhOiBFbGVtZW50UmVmO1xuICBAVmlld0NoaWxkKE5nYlBvcG92ZXIpIG5nYk1haW5Qb3BvdmVyITogTmdiUG9wb3ZlcjtcblxuICBASW5wdXQoKSBpbnB1dENvbmZpZyE6IElDYUlucHV0O1xuXG4gIEBJbnB1dCgpIGluY29ycmVjdFZhbHVlITogYm9vbGVhbjtcbiAgQElucHV0KCkgc2VsZWN0ZWREcm9wZG93bkxhYmVsQ29sb3IhOiBMYWJlbENvbG9yIHwgbnVsbDtcbiAgQElucHV0KCkgdGVtcGxhdGUhOiBzdHJpbmc7XG5cbiAgQE91dHB1dCgnaW5jb3JyZWN0RXZlbnQnKSBpbmNvcnJlY3RJbnB1dDogRXZlbnRFbWl0dGVyPGJvb2xlYW4+ID1cbiAgICBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG4gIEBPdXRwdXQoJ2JsdXJJbnB1dCcpIGJsdXJJbnB1dDogRXZlbnRFbWl0dGVyPGJvb2xlYW4+ID1cbiAgICBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG4gIEBPdXRwdXQoJ2ZvY3VzSW5wdXQnKSBmb2N1c0lucHV0RXZlbnQ6IEV2ZW50RW1pdHRlcjxib29sZWFuPiA9XG4gICAgbmV3IEV2ZW50RW1pdHRlcjxib29sZWFuPigpO1xuICBAT3V0cHV0KCdjaGFuZ2UnKSBjaGFuZ2VJbnB1dDogRXZlbnRFbWl0dGVyPElucHV0Q2hhbmdlVmFsdWU+ID1cbiAgICBuZXcgRXZlbnRFbWl0dGVyPElucHV0Q2hhbmdlVmFsdWU+KCk7XG4gIEBPdXRwdXQoJ2NvbW1hbmRFdmVudCcpIGNvbW1hbmRFdmVudDogRXZlbnRFbWl0dGVyPENvbW1hbmRzRXZlbnQ+ID1cbiAgICBuZXcgRXZlbnRFbWl0dGVyPENvbW1hbmRzRXZlbnQ+KCk7XG4gIEBPdXRwdXQoJ2NsZWFyJykgY2xlYXJJbnB1dEV2ZW50OiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPVxuICAgIG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcblxuICAvLyBEcm9wZG93blxuICBAT3V0cHV0KCdzaG93SGlkZURyb3Bkb3duJykgc2hvd0hpZGVEcm9wZG93bkV2ZW50OiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPVxuICAgIG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcbiAgQE91dHB1dCgnZHJvcERvd25LZXlOYXZpZ2F0aW9uJykgZHJvcERvd25LZXlOYXZpZ2F0aW9uRXZlbnQ6IEV2ZW50RW1pdHRlcjx7XG4gICAga2V5Q29kZTogbnVtYmVyO1xuICAgIGRhdGE6IElDYUlucHV0IHwgbnVsbDtcbiAgfT4gPSBuZXcgRXZlbnRFbWl0dGVyPHtcbiAgICBrZXlDb2RlOiBudW1iZXI7XG4gICAgZGF0YTogSUNhSW5wdXQgfCBudWxsO1xuICB9PigpO1xuXG4gIHB1YmxpYyBpc1RvdWNoZWRJbnB1dDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIC8vIElucHV0IENvbW1hbmRzXG4gIHB1YmxpYyBpc1Zpc2libGVDb21tYW5kczogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIC8vIEVkaXQgSW5wdXRcbiAgcHVibGljIGlzRWRpdElucHV0OiBib29sZWFuID0gZmFsc2U7XG5cbiAgLy8gUGFzc3dvcmRcbiAgcHVibGljIGlzVG9nZ2xlUGFzc3dvcmQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgcHVibGljIGlzQ2Fwc0xvY2tPbjogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIC8vIERyb3Bkb3duXG4gIHB1YmxpYyBpc0Ryb3Bkb3duVG9nZ2xlcjogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIC8vIERhdGVcbiAgcHVibGljIHNob3dEYXRlSW5wdXQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgcHVibGljIGRhdGVUaW1lSW5wdXREYXRlOiBEYXRlID0gbmV3IERhdGUoKTtcbiAgcHVibGljIG5ld0lucHV0Q2hhbmdlZDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIC8vIERlc3Ryb3lcbiAgcHJpdmF0ZSBkZXN0cm95JDogU3ViamVjdDx2b2lkPiA9IG5ldyBTdWJqZWN0PHZvaWQ+KCk7XG5cbiAgcHVibGljIGlucHV0U3ZnUm91dGVzID0gSW5wdXRTdmdSb3V0ZXM7XG4gIHB1YmxpYyBpc0ZvY3VzSW5wdXQhOiBib29sZWFuO1xuICBwdWJsaWMgcHJpY2VTZXBlcmF0b3JXaXRoRmlsbGVkVmFsdWUgPSB0cnVlO1xuXG4gIHB1YmxpYyBpbnB1dENvbW1hbmRzVHlwZSA9IElucHV0Q29tbWFuZHNUeXBlO1xuICBwdWJsaWMgaW5wdXRTdHJpbmdFbnVtID0gSW5wdXRTdHJpbmdFbnVtO1xuICBwdWJsaWMgZHJvcGRvd25UZW1wbGF0ZVR5cGVFbnVtID0gRHJvcGRvd25UZW1wbGF0ZVR5cGVFbnVtO1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIEBTZWxmKCkgcHVibGljIHN1cGVyQ29udHJvbDogTmdDb250cm9sLFxuICAgIHByaXZhdGUgY2RSZWY6IENoYW5nZURldGVjdG9yUmVmLFxuICAgIHB1YmxpYyBpbnB1dFN0YXRlU2VydmljZTogSW5wdXRTdGF0ZVNlcnZpY2UsXG4gICAgcHJpdmF0ZSB0aG91c2FuZFNlcGFyYXRvclBpcGU6IFRob3VzYW5kU2VwYXJhdG9yUGlwZVxuICApIHtcbiAgICB0aGlzLnN1cGVyQ29udHJvbC52YWx1ZUFjY2Vzc29yID0gdGhpcztcbiAgfVxuXG4gIGdldCBnZXRTdXBlckNvbnRyb2woKSB7XG4gICAgcmV0dXJuIHRoaXMuc3VwZXJDb250cm9sLmNvbnRyb2w7XG4gIH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmluaXRDaGFuZ2VzTGlzdGVuZXIoKTtcblxuICAgIHRoaXMuaW5pdFN0YXRlU2VydmljZSgpO1xuXG4gICAgdGhpcy5vdXRwdXRMaXN0ZW5lcnMoKTtcbiAgfVxuXG4gIG5nT25DaGFuZ2VzKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpOiB2b2lkIHtcbiAgICB0aGlzLnNldFN0YXRlSW5wdXRzKGNoYW5nZXMpO1xuICB9XG5cbiAgbmdBZnRlclZpZXdJbml0KCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2UuYXV0b0ZvY3VzRmlyc3RJbnB1dCgpO1xuICB9XG5cbiAgcHVibGljIGluaXRTdGF0ZVNlcnZpY2UoKTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5zZXRTdXBlckNvbnRyb2wodGhpcy5zdXBlckNvbnRyb2wpO1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uuc2V0SW5wdXRFbGVtZW50UmVmKHRoaXMuaW5wdXQsIHRoaXMuY2RSZWYpO1xuXG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5jb21iaW5lZFZhcmlhYmxlcyRcbiAgICAgIC5waXBlKHRha2VVbnRpbCh0aGlzLmRlc3Ryb3kkKSlcbiAgICAgIC5zdWJzY3JpYmUoXG4gICAgICAgIChbXG4gICAgICAgICAgZm9jdXMsXG4gICAgICAgICAgdG91Y2hlZCxcbiAgICAgICAgICBpc1Zpc2libGVDb21tYW5kcyxcbiAgICAgICAgICBpc0VkaXRJbnB1dCxcbiAgICAgICAgICBpc0Ryb3Bkb3duVG9nZ2xlcixcbiAgICAgICAgICBkYXRlVGltZUlucHV0RGF0ZSxcbiAgICAgICAgICBzaG93RGF0ZUlucHV0LFxuICAgICAgICAgIGlzQ2Fwc0xvY2tPbixcbiAgICAgICAgXSkgPT4ge1xuICAgICAgICAgIHRoaXMuaXNGb2N1c0lucHV0ID0gZm9jdXM7XG4gICAgICAgICAgdGhpcy5pc1RvdWNoZWRJbnB1dCA9IHRvdWNoZWQ7XG4gICAgICAgICAgdGhpcy5pc1Zpc2libGVDb21tYW5kcyA9IGlzVmlzaWJsZUNvbW1hbmRzO1xuICAgICAgICAgIHRoaXMuaXNFZGl0SW5wdXQgPSBpc0VkaXRJbnB1dDtcbiAgICAgICAgICB0aGlzLmlzRHJvcGRvd25Ub2dnbGVyID0gaXNEcm9wZG93blRvZ2dsZXI7XG4gICAgICAgICAgdGhpcy5kYXRlVGltZUlucHV0RGF0ZSA9IGRhdGVUaW1lSW5wdXREYXRlO1xuICAgICAgICAgIHRoaXMuc2hvd0RhdGVJbnB1dCA9IHNob3dEYXRlSW5wdXQ7XG4gICAgICAgICAgdGhpcy5pc0NhcHNMb2NrT24gPSBpc0NhcHNMb2NrT247XG4gICAgICAgIH1cbiAgICAgICk7XG4gIH1cblxuICBwdWJsaWMgb3V0cHV0TGlzdGVuZXJzKCk6IHZvaWQge1xuICAgIGNvbnN0IG9ic2VydmFibGVzOiB7XG4gICAgICBzdHJlYW0kOiBPYnNlcnZhYmxlPGFueT47XG4gICAgICBlbWl0dGVyOiBFdmVudEVtaXR0ZXI8YW55PjtcbiAgICB9W10gPSBbXG4gICAgICB7XG4gICAgICAgIHN0cmVhbSQ6IHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2UuY29tbWFuZEV2ZW50JCxcbiAgICAgICAgZW1pdHRlcjogdGhpcy5jb21tYW5kRXZlbnQsXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBzdHJlYW0kOiB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLmNsZWFySW5wdXRFdmVudCQsXG4gICAgICAgIGVtaXR0ZXI6IHRoaXMuY2xlYXJJbnB1dEV2ZW50LFxuICAgICAgfSxcbiAgICAgIHtcbiAgICAgICAgc3RyZWFtJDogdGhpcy5pbnB1dFN0YXRlU2VydmljZS5pbmNvcnJlY3RJbnB1dCQsXG4gICAgICAgIGVtaXR0ZXI6IHRoaXMuaW5jb3JyZWN0SW5wdXQsXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBzdHJlYW0kOiB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLmJsdXJJbnB1dCQsXG4gICAgICAgIGVtaXR0ZXI6IHRoaXMuYmx1cklucHV0LFxuICAgICAgfSxcbiAgICAgIHtcbiAgICAgICAgc3RyZWFtJDogdGhpcy5pbnB1dFN0YXRlU2VydmljZS5jaGFuZ2VJbnB1dCQsXG4gICAgICAgIGVtaXR0ZXI6IHRoaXMuY2hhbmdlSW5wdXQsXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBzdHJlYW0kOiB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLnNob3dIaWRlRHJvcGRvd24kLFxuICAgICAgICBlbWl0dGVyOiB0aGlzLnNob3dIaWRlRHJvcGRvd25FdmVudCxcbiAgICAgIH0sXG4gICAgICB7XG4gICAgICAgIHN0cmVhbSQ6IHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2UuZHJvcERvd25LZXlOYXZpZ2F0aW9uJCxcbiAgICAgICAgZW1pdHRlcjogdGhpcy5kcm9wRG93bktleU5hdmlnYXRpb25FdmVudCxcbiAgICAgIH0sXG4gICAgXTtcblxuICAgIG9ic2VydmFibGVzLmZvckVhY2goKHsgc3RyZWFtJCwgZW1pdHRlciB9KSA9PlxuICAgICAgc3RyZWFtJFxuICAgICAgICAucGlwZSh0YWtlVW50aWwodGhpcy5kZXN0cm95JCkpXG4gICAgICAgIC5zdWJzY3JpYmUoKHZhbHVlOiBhbnkpID0+IGVtaXR0ZXIuZW1pdCh2YWx1ZSkpXG4gICAgKTtcbiAgfVxuXG4gIHB1YmxpYyBpbml0Q2hhbmdlc0xpc3RlbmVyKCk6IHZvaWQge1xuICAgIGNvbnN0IGNvbWJpbmVkQ2hhbmdlcyA9IGNvbWJpbmVMYXRlc3QoW1xuICAgICAgdGhpcy5nZXRTdXBlckNvbnRyb2w/LnZhbHVlQ2hhbmdlcyxcbiAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sPy5zdGF0dXNDaGFuZ2VzLFxuICAgIF0pO1xuXG4gICAgY29tYmluZWRDaGFuZ2VzLnBpcGUodGFrZVVudGlsKHRoaXMuZGVzdHJveSQpKS5zdWJzY3JpYmUoKCkgPT4ge1xuICAgICAgdGhpcy5jZFJlZi5kZXRlY3RDaGFuZ2VzKCk7XG4gICAgfSk7XG5cbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLm9uQ2hhbmdlJFxuICAgICAgLnBpcGUodGFrZVVudGlsKHRoaXMuZGVzdHJveSQpKVxuICAgICAgLnN1YnNjcmliZSgodmFsdWUpID0+IHtcbiAgICAgICAgdGhpcy5vbkNoYW5nZSh2YWx1ZSk7XG4gICAgICB9KTtcbiAgfVxuXG4gIHB1YmxpYyBzZXRTdGF0ZUlucHV0cyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XG4gICAgaWYgKGNoYW5nZXNbJ2lucHV0Q29uZmlnJ10pIHtcbiAgICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uuc2V0SW5wdXRDb25maWcoXG4gICAgICAgIGNoYW5nZXNbJ2lucHV0Q29uZmlnJ10/LmN1cnJlbnRWYWx1ZVxuICAgICAgKTtcbiAgICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25JbnB1dENvbmZpZ0NoYW5nZSgpO1xuICAgIH1cbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLnNldEluY29ycmVjdFZhbHVlKFxuICAgICAgY2hhbmdlc1snaW5jb3JyZWN0VmFsdWUnXT8uY3VycmVudFZhbHVlXG4gICAgKTtcbiAgfVxuXG4gIHB1YmxpYyB3cml0ZVZhbHVlKG9iajogSW5wdXRDaGFuZ2VWYWx1ZSk6IHZvaWQge1xuICAgIGlmICh0aGlzLmlucHV0Q29uZmlnLnByaWNlU2VwYXJhdG9yKSB7XG4gICAgICBpZiAob2JqICYmIHRoaXMucHJpY2VTZXBlcmF0b3JXaXRoRmlsbGVkVmFsdWUpXG4gICAgICAgIHRoaXMuaW5wdXQubmF0aXZlRWxlbWVudC52YWx1ZSA9XG4gICAgICAgICAgdGhpcy50aG91c2FuZFNlcGFyYXRvclBpcGUudHJhbnNmb3JtKG9iaik7XG4gICAgICBlbHNlIHRoaXMuaW5wdXQubmF0aXZlRWxlbWVudC52YWx1ZSA9IG9iajtcblxuICAgICAgdGhpcy5wcmljZVNlcGVyYXRvcldpdGhGaWxsZWRWYWx1ZSA9IGZhbHNlO1xuICAgIH1cblxuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uud3JpdGVWYWx1ZShvYmopO1xuICB9XG5cbiAgcHVibGljIHJlZ2lzdGVyT25DaGFuZ2UoZm46IGFueSk6IHZvaWQge1xuICAgIHRoaXMub25DaGFuZ2UgPSBmbjtcbiAgfVxuXG4gIHB1YmxpYyBvbkNoYW5nZShfOiBhbnkpOiB2b2lkIHt9XG5cbiAgcHVibGljIHJlZ2lzdGVyT25Ub3VjaGVkKCk6IHZvaWQge31cblxuICBwdWJsaWMgb25CbHVyKGV2ZW50PzogRm9jdXNFdmVudCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25CbHVyKGV2ZW50KTtcblxuICAgIHRoaXMuYmx1cklucHV0LmVtaXQodHJ1ZSk7XG4gIH1cblxuICBwdWJsaWMgb25Gb2N1cyhldmVudD86IEZvY3VzRXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmZvY3VzSW5wdXRFdmVudC5lbWl0KHRydWUpO1xuXG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5vbkZvY3VzKGV2ZW50KTtcbiAgfVxuXG4gIHB1YmxpYyBvbktleVByZXNzKGV2ZW50OiBLZXlib2FyZEV2ZW50KTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5vbktleXByZXNzKGV2ZW50KTtcbiAgfVxuXG4gIHB1YmxpYyBvbktleWRvd24oZXZlbnQ6IEtleWJvYXJkRXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLm9uS2V5ZG93bihldmVudCk7XG4gIH1cblxuICBwdWJsaWMgb25LZXl1cChldmVudDogS2V5Ym9hcmRFdmVudCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25LZXl1cChldmVudCk7XG4gIH1cblxuICBwdWJsaWMgdHJhbnNmb3JtVGV4dChldmVudDogRXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLnRyYW5zZm9ybVRleHQoZXZlbnQpO1xuICB9XG5cbiAgcHVibGljIGNsZWFySW5wdXQoZXZlbnQ6IEV2ZW50KTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5jbGVhcklucHV0KGV2ZW50KTtcbiAgfVxuXG4gIHB1YmxpYyBvblRvZ2dsZVBhc3N3b3JkKGV2ZW50OiBFdmVudCk6IHZvaWQge1xuICAgIGV2ZW50LnByZXZlbnREZWZhdWx0KCk7XG4gICAgdGhpcy5pc1RvZ2dsZVBhc3N3b3JkID0gIXRoaXMuaXNUb2dnbGVQYXNzd29yZDtcbiAgfVxuXG4gIHB1YmxpYyBvbkNvbW1hbmRzKGV2ZW50OiB7XG4gICAgZXZlbnQ6IEV2ZW50O1xuICAgIHR5cGU6IHN0cmluZztcbiAgICBhY3Rpb246IHN0cmluZztcbiAgfSk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25Db21tYW5kcyhldmVudC5ldmVudCwgZXZlbnQudHlwZSwgZXZlbnQuYWN0aW9uKTtcbiAgfVxuXG4gIHB1YmxpYyBvbkVkaXRJbnB1dChldmVudDogRXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLm9uRWRpdElucHV0KGV2ZW50KTtcbiAgfVxuXG4gIHB1YmxpYyB0b2dnbGVEcm9wZG93bk9wdGlvbnMoKTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS50b2dnbGVEcm9wZG93bk9wdGlvbnMoKTtcbiAgfVxuXG4gIHB1YmxpYyBvblBsYWNlaG9sZGVySWNvbkV2ZW50KGV2ZW50OiBFdmVudCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25QbGFjZWhvbGRlckljb25FdmVudChldmVudCk7XG4gIH1cblxuICBwdWJsaWMgc2V0SW5wdXRDdXJzb3JBdFRoZUVuZChpbnB1dDogYW55KTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5zZXRJbnB1dEN1cnNvckF0VGhlRW5kKGlucHV0KTtcbiAgfVxuXG4gIC8vLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0gRGF0ZSAmIFRpbWUgUGlja2VyIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tXG5cbiAgcHVibGljIHNlbGVjdGlvbkNoYW5nZShldmVudDogRXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLnNlbGVjdGlvbkNoYW5nZShldmVudCk7XG4gIH1cblxuICBwdWJsaWMgb25EYXRlUGFzdGUoZXZlbnQ6IENsaXBib2FyZEV2ZW50KTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5vbkRhdGVQYXN0ZShldmVudCk7XG4gIH1cblxuICBwdWJsaWMgc2V0U2VsZWN0aW9uKGV2ZW50OiB7XG4gICAgcHJldmVudERlZmF1bHQ6ICgpID0+IHZvaWQ7XG4gICAgc3RvcFByb3BhZ2F0aW9uOiAoKSA9PiB2b2lkO1xuICAgIHRhcmdldDogYW55O1xuICB9KTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5zZXRTZWxlY3Rpb24oZXZlbnQpO1xuICB9XG5cbiAgcHVibGljIGNoYW5nZVNlbGVjdGlvbihldmVudDoge1xuICAgIGU6IEtleWJvYXJkRXZlbnQ7XG4gICAgbm9QcmV2ZW50RGVmYXVsdDogYm9vbGVhbjtcbiAgfSk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2UuY2hhbmdlU2VsZWN0aW9uKGV2ZW50LmUsIGV2ZW50Lm5vUHJldmVudERlZmF1bHQpO1xuICB9XG5cbiAgcHVibGljIG9uUG9wb3ZlclNob3duKCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25Qb3BvdmVyU2hvd24oKTtcbiAgfVxuXG4gIHB1YmxpYyBvblBvcG92ZXJIaWRkZW4oKTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5vblBvcG92ZXJIaWRkZW4oKTtcbiAgfVxuXG4gIHB1YmxpYyBjbG9zZVBvcG92ZXIoKTogdm9pZCB7XG4gICAgaWYgKHRoaXMubmdiTWFpblBvcG92ZXIpIHRoaXMubmdiTWFpblBvcG92ZXIuY2xvc2UoKTtcbiAgfVxuXG4gIHB1YmxpYyBzZWxlY3RMYXN0T25lRm9yU2VsZWN0aW9uKCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uuc2VsZWN0TGFzdE9uZUZvclNlbGVjdGlvbigpO1xuICB9XG5cbiAgcHVibGljIHNlbGVjdExhc3RPbmVBZnRlck1vdXNlVXAoKTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5zZWxlY3RMYXN0T25lQWZ0ZXJNb3VzZVVwKCk7XG4gIH1cblxuICBwdWJsaWMgdHJhY2tJZGVudGl0eSA9IChpbmRleDogbnVtYmVyKTogbnVtYmVyID0+IGluZGV4O1xuXG4gIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2Uub25EZXN0b3J5KCk7XG4gICAgdGhpcy5kZXN0cm95JC5uZXh0KCk7XG4gICAgdGhpcy5kZXN0cm95JC5jb21wbGV0ZSgpO1xuICB9XG59XG4iLCI8ZGl2XG4gIGNsYXNzPVwiaW5wdXQtY3VzdG9tLWdyb3VwIHt7IGlucHV0Q29uZmlnLmN1c3RvbUNsYXNzIH19XCJcbiAgW25nQ2xhc3NdPVwiXG4gICAgZ2V0U3VwZXJDb250cm9sXG4gICAgICB8IGlucHV0Q29udGFpbmVyQ2xhc3NcbiAgICAgICAgOiBpc0ZvY3VzSW5wdXRcbiAgICAgICAgOiBpc1RvdWNoZWRJbnB1dFxuICAgICAgICA6IGlucHV0Q29uZmlnXG4gICAgICAgIDogZ2V0U3VwZXJDb250cm9sPy52YWx1ZVxuICBcIlxuICBuZ2JUb29sdGlwXG4gIFttYWluQ2FUb29sdGlwXT1cImdldFN1cGVyQ29udHJvbD8uZXJyb3JzIHwgaW5wdXRFcnJvcjogaW5wdXRDb25maWcubmFtZVwiXG4gIFt0b29sdGlwQmFja2dyb3VuZF09XCInI0RGM0MzQydcIlxuICBbZGlzYWJsZVRvb2x0aXBdPVwiIWlucHV0Q29uZmlnLnJlcXVpcmVkTGFiZWwgfHwgISFzdXBlckNvbnRyb2wudmFsaWRcIlxuICBwb3NpdGlvbj1cImJvdHRvbVwiXG4gIHRyaWdnZXJzPVwiaG92ZXJcIlxuPlxuICA8IS0tIElucHV0IENvbW1hbmRzIC0tPlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaW5wdXRDb25maWcuY29tbWFuZHM/LmFjdGl2ZSAmJiBpc1Zpc2libGVDb21tYW5kc1wiPlxuICAgIDxhcHAtY2EtaW5wdXQtY29tbWFuZHNcbiAgICAgIFtpbnB1dENvbmZpZ109XCJpbnB1dENvbmZpZ1wiXG4gICAgICBbaXNGb2N1c0lucHV0XT1cImlzRm9jdXNJbnB1dFwiXG4gICAgICBbaXNWaXNpYmxlQ29tbWFuZHNdPVwiaXNWaXNpYmxlQ29tbWFuZHNcIlxuICAgICAgKG9uQ29tbWFuZHNDbGljayk9XCJvbkNvbW1hbmRzKCRldmVudClcIlxuICAgID5cbiAgICA8L2FwcC1jYS1pbnB1dC1jb21tYW5kcz5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBEYXRlVGltZSBQaWNrZXIgLS0+XG4gIDxuZy1jb250YWluZXJcbiAgICAqbmdJZj1cIlxuICAgICAgKGlucHV0Q29uZmlnLm5hbWUgPT09ICdkYXRlcGlja2VyJyB8fFxuICAgICAgICBpbnB1dENvbmZpZy5uYW1lID09PSAndGltZXBpY2tlcicpICYmXG4gICAgICAhaW5wdXRDb25maWcuaXNEaXNhYmxlZFxuICAgIFwiXG4gID5cbiAgICA8YXBwLWNhLWlucHV0LWRhdGV0aW1lLXBpY2tlclxuICAgICAgW3Nob3dEYXRlSW5wdXRdPVwic2hvd0RhdGVJbnB1dFwiXG4gICAgICBbaW5wdXRDb25maWddPVwiaW5wdXRDb25maWdcIlxuICAgICAgW2dldFN1cGVyQ29udHJvbF09XCJnZXRTdXBlckNvbnRyb2xcIlxuICAgICAgW2lzRm9jdXNJbnB1dF09XCJpc0ZvY3VzSW5wdXRcIlxuICAgICAgW2lzVmlzaWJsZUNvbW1hbmRzXT1cImlzVmlzaWJsZUNvbW1hbmRzXCJcbiAgICAgIFtpc1RvdWNoZWRJbnB1dF09XCJpc1RvdWNoZWRJbnB1dFwiXG4gICAgICAoc2VsZWN0TGFzdE9uZUZvclNlbGVjdGlvbkVtaXR0ZXIpPVwic2VsZWN0TGFzdE9uZUZvclNlbGVjdGlvbigpXCJcbiAgICAgIChzZWxlY3RMYXN0T25lQWZ0ZXJNb3VzZVVwRW1pdHRlcik9XCJzZWxlY3RMYXN0T25lQWZ0ZXJNb3VzZVVwKClcIlxuICAgICAgKG9uRGF0ZVBhc3RlRW1pdHRlcik9XCJvbkRhdGVQYXN0ZSgkZXZlbnQpXCJcbiAgICAgIChvbkJsdXJFbWl0dGVyKT1cIm9uQmx1cigpXCJcbiAgICAgIChjaGFuZ2VTZWxlY3Rpb25FbW1pdGVyKT1cImNoYW5nZVNlbGVjdGlvbigkZXZlbnQpXCJcbiAgICAgIChvbkZvY3VzRW1pdHRlcik9XCJvbkZvY3VzKCRldmVudClcIlxuICAgICAgKHNldFNlbGVjdGlvbkVtbWl0ZXIpPVwic2V0U2VsZWN0aW9uKCRldmVudClcIlxuICAgID5cbiAgICA8L2FwcC1jYS1pbnB1dC1kYXRldGltZS1waWNrZXI+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDwhLS0gSW5wdXQgTGFiZWwgLS0+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCIhaW5wdXRDb25maWcubXVsdGlTZWxlY3REcm9wZG93bkFjdGl2ZVwiPlxuICAgIDxsYWJlbFxuICAgICAgW2Zvcl09XCJpbnB1dENvbmZpZy5uYW1lXCJcbiAgICAgIGNsYXNzPVwiaW5wdXQtbGFiZWwge3sgaW5wdXRDb25maWcuY3VzdG9tQ2xhc3MgfX0ge3tcbiAgICAgICAgaW5wdXRDb25maWcubXVsdGlwbGVMYWJlbD8uY3VzdG9tQ2xhc3NcbiAgICAgIH19XCJcbiAgICAgIFtuZ0NsYXNzXT1cIlxuICAgICAgICBnZXRTdXBlckNvbnRyb2w/LnZhbHVlIHwgbGFiZWxDbGFzczogaXNGb2N1c0lucHV0IDogaW5wdXRDb25maWdcbiAgICAgICAgOiBpc1RvdWNoZWRJbnB1dCA6IGdldFN1cGVyQ29udHJvbD8uaW52YWxpZFxuICAgICAgICA6IGdldFN1cGVyQ29udHJvbD8udG91Y2hlZFxuICAgICAgXCJcbiAgICA+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaW5wdXRDb25maWcubGFiZWxcIj5cbiAgICAgICAgPHNwYW4+e3sgaW5wdXRDb25maWcubGFiZWwgfX0gPC9zcGFuPlxuICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaW5wdXRDb25maWcubXVsdGlwbGVMYWJlbD8ubGFiZWxzPy5sZW5ndGhcIj5cbiAgICAgICAgPGRpdlxuICAgICAgICAgIFtjbGFzc109XCJpbnB1dENvbmZpZy5tdWx0aXBsZUxhYmVsPy5jdXN0b21DbGFzcyFcIlxuICAgICAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgICAgICdtdWx0aXBsZS1sYWJlbHMtcG9zaXRpb24tb24tZm9jdXMnOlxuICAgICAgICAgICAgICBpc0ZvY3VzSW5wdXQgfHxcbiAgICAgICAgICAgICAgaW5wdXRDb25maWcubXVsdGlwbGVJbnB1dFZhbHVlcz8ub3B0aW9ucz8ubGVuZ3RoLFxuICAgICAgICAgICAgcmVxdWlyZWQ6IGlucHV0Q29uZmlnLmlzUmVxdWlyZWQgJiYgIWlucHV0Q29uZmlnLmlzRGlzYWJsZWRcbiAgICAgICAgICB9XCJcbiAgICAgICAgPlxuICAgICAgICAgIDxzcGFuICpuZ0Zvcj1cImxldCBsYWJlbCBvZiBpbnB1dENvbmZpZy5tdWx0aXBsZUxhYmVsPy5sYWJlbHNcIj5cbiAgICAgICAgICAgIHt7IGxhYmVsIH19XG4gICAgICAgICAgPC9zcGFuPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgIDwvbGFiZWw+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDwhLS0gSW5wdXQgQ2xlYXIgLS0+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJpbnB1dENvbmZpZyB8IHNob3dDbGVhclwiPlxuICAgIDxhcHAtY2EtaW5wdXQtY2xlYXJcbiAgICAgIFtpbnB1dENvbmZpZ109XCJpbnB1dENvbmZpZ1wiXG4gICAgICBbZ2V0U3VwZXJDb250cm9sXT1cImdldFN1cGVyQ29udHJvbFwiXG4gICAgICBbaXNGb2N1c0lucHV0XT1cImlzRm9jdXNJbnB1dFwiXG4gICAgICBbaW5jb3JyZWN0VmFsdWVdPVwiaW5jb3JyZWN0VmFsdWVcIlxuICAgICAgW3NlbGVjdGVkRHJvcGRvd25MYWJlbENvbG9yXT1cInNlbGVjdGVkRHJvcGRvd25MYWJlbENvbG9yXCJcbiAgICAgIFt0ZW1wbGF0ZV09XCJ0ZW1wbGF0ZVwiXG4gICAgICAoY2xlYXJJbnB1dENsaWNrKT1cImNsZWFySW5wdXQoJGV2ZW50KVwiXG4gICAgPlxuICAgIDwvYXBwLWNhLWlucHV0LWNsZWFyPlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8IS0tIElucHV0IENsZWFyIGZvciBkaXNwYXRjaCBkcm9wZG93biAtLT5cbiAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInRlbXBsYXRlID09PSAnc3ZndGV4dC1kaXNwYXRjaC10ZW1wbGF0ZSdcIj5cbiAgICA8ZGl2XG4gICAgICBjbGFzcz1cImlucHV0LWNsZWFyLWRpc3BhdGNoXCJcbiAgICAgIHBvc2l0aW9uPVwidG9wXCJcbiAgICAgIChjbGljayk9XCJjbGVhcklucHV0KCRldmVudClcIlxuICAgID5cbiAgICAgIDxzdmctaWNvblxuICAgICAgICBbc3JjXT1cImlucHV0U3ZnUm91dGVzLnhDbGVhckNvbW1vblN2Z1wiXG4gICAgICAgIGNsYXNzPVwiaW5wdXQtY2xlYXItZGlzcGF0Y2gtaWNvblwiXG4gICAgICA+PC9zdmctaWNvbj5cbiAgICA8L2Rpdj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBJbnB1dCBQZW4gLS0+XG4gIDxuZy1jb250YWluZXJcbiAgICAqbmdJZj1cIlxuICAgICAgc2VsZWN0ZWREcm9wZG93bkxhYmVsQ29sb3IgJiZcbiAgICAgICFpc0VkaXRJbnB1dCAmJlxuICAgICAgIWlzRm9jdXNJbnB1dCAmJlxuICAgICAgZ2V0U3VwZXJDb250cm9sPy52YWx1ZVxuICAgIFwiXG4gID5cbiAgICA8ZGl2XG4gICAgICBjbGFzcz1cImlucHV0LXBlbi1jb250YWluZXJcIlxuICAgICAgbmdiVG9vbHRpcFxuICAgICAgW21haW5DYVRvb2x0aXBdPVwiJ0VkaXQnXCJcbiAgICAgIFt0b29sdGlwQmFja2dyb3VuZF09XCInIzJGMkYyRidcIlxuICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgKGNsaWNrKT1cIm9uRWRpdElucHV0KCRldmVudClcIlxuICAgID5cbiAgICAgIDxzdmctaWNvbiBbc3JjXT1cImlucHV0U3ZnUm91dGVzLmlucHV0UGVuU3ZnXCIgY2xhc3M9XCJpbnB1dC1wZW5cIj48L3N2Zy1pY29uPlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8IS0tIElucHV0IEludmFsaWQgRGFuZ2VyIE1hcmsgLS0+XG4gIDxuZy1jb250YWluZXJcbiAgICAqbmdJZj1cIlxuICAgICAgaW5wdXRDb25maWdcbiAgICAgICAgfCBzaG93SW52YWxpZERhbmdlck1hcmtcbiAgICAgICAgICA6IGdldFN1cGVyQ29udHJvbFxuICAgICAgICAgIDogaXNGb2N1c0lucHV0XG4gICAgICAgICAgOiBpc1RvdWNoZWRJbnB1dFxuICAgICAgICAgIDogZ2V0U3VwZXJDb250cm9sPy52YWx1ZVxuICAgIFwiXG4gID5cbiAgICA8c3ZnLWljb25cbiAgICAgIGNsYXNzPVwiaW5wdXQtaW52YWxpZC1kYW5nZXItbWFyayAge3sgaW5wdXRDb25maWcuY3VzdG9tQ2xhc3MgfX1cIlxuICAgICAgW3NyY109XCJpbnB1dFN2Z1JvdXRlcy5kYW5nZXJTdmdcIlxuICAgID5cbiAgICA8L3N2Zy1pY29uPlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8IS0tIElucHV0IFZhbGlkIENoZWNrIC0tPlxuICA8bmctY29udGFpbmVyXG4gICAgKm5nSWY9XCJcbiAgICAgIGdldFN1cGVyQ29udHJvbFxuICAgICAgICB8IHNob3dWYWxpZENoZWNrOiBpc0ZvY3VzSW5wdXQgOiBpbnB1dENvbmZpZyA6IGdldFN1cGVyQ29udHJvbD8udmFsdWVcbiAgICBcIlxuICA+XG4gICAgPHN2Zy1pY29uXG4gICAgICBjbGFzcz1cImlucHV0LXJlcXVpcmVkLWNoZWNrIHt7IGlucHV0Q29uZmlnLmN1c3RvbUNsYXNzIH19XCJcbiAgICAgIFtzcmNdPVwiaW5wdXRTdmdSb3V0ZXMuY29uZmlybVN2Z1wiXG4gICAgPjwvc3ZnLWljb24+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDwhLS0gSW5wdXQgUGFzc3dvcmQgQ2FwcyBMb2NrIEFuZCBFeWUgLS0+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJpbnB1dENvbmZpZy50eXBlID09PSAncGFzc3dvcmQnXCI+XG4gICAgPGFwcC1jYS1pbnB1dC1wYXNzd29yZFxuICAgICAgW2lucHV0Q29uZmlnXT1cImlucHV0Q29uZmlnXCJcbiAgICAgIFtnZXRTdXBlckNvbnRyb2xdPVwiZ2V0U3VwZXJDb250cm9sXCJcbiAgICAgIFtpc0ZvY3VzSW5wdXRdPVwiaXNGb2N1c0lucHV0XCJcbiAgICAgIFtpc1RvdWNoZWRJbnB1dF09XCJpc1RvdWNoZWRJbnB1dFwiXG4gICAgICBbaXNDYXBzTG9ja09uXT1cImlzQ2Fwc0xvY2tPblwiXG4gICAgICBbaXNUb2dnbGVQYXNzd29yZF09XCJpc1RvZ2dsZVBhc3N3b3JkXCJcbiAgICAgIChvblRvZ2dsZVBhc3N3b3JkQ2xpY2spPVwib25Ub2dnbGVQYXNzd29yZCgkZXZlbnQpXCJcbiAgICA+XG4gICAgPC9hcHAtY2EtaW5wdXQtcGFzc3dvcmQ+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDwhLS0gSW5wdXQgRHJvcGRvd24gQXJyb3cgLS0+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJpbnB1dENvbmZpZyB8IHNob3dEcm9wZG93bkFycm93XCI+XG4gICAgPHN2Zy1pY29uXG4gICAgICBjbGFzcz1cImlucHV0LWRyb3Bkb3duLWFycm93IHt7IGlucHV0Q29uZmlnLmN1c3RvbUNsYXNzIH19XCJcbiAgICAgIFtuZ0NsYXNzXT1cIlxuICAgICAgICBnZXRTdXBlckNvbnRyb2xcbiAgICAgICAgICB8IGlucHV0RHJvcGRvd25BcnJvd0NsYXNzXG4gICAgICAgICAgICA6IGlzRm9jdXNJbnB1dFxuICAgICAgICAgICAgOiBpbnB1dENvbmZpZ1xuICAgICAgICAgICAgOiBpc1RvdWNoZWRJbnB1dFxuICAgICAgICAgICAgOiBnZXRTdXBlckNvbnRyb2w/LnZhbHVlXG4gICAgICBcIlxuICAgICAgW3NyY109XCJpbnB1dFN2Z1JvdXRlcy5pbnB1dERyb3Bkb3duQXJyb3dTdmdcIlxuICAgICAgKGNsaWNrKT1cInRvZ2dsZURyb3Bkb3duT3B0aW9ucygpXCJcbiAgICA+PC9zdmctaWNvbj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBJbnB1dCBQbGFjZWhvbGRlciBJY29uIC0tPlxuICA8bmctY29udGFpbmVyIFxuICAgICpuZ0lmPVwiXG4gICAgICBpbnB1dENvbmZpZy5wbGFjZWhvbGRlckljb24gfHxcbiAgICAgIGlucHV0Q29uZmlnLm5hbWUgPT09ICdkYXRlcGlja2VyJyB8fFxuICAgICAgaW5wdXRDb25maWcubmFtZSA9PT0gJ3RpbWVwaWNrZXInXG4gICAgXCJcbiAgPlxuICAgIDxhcHAtY2EtaW5wdXQtcGxhY2Vob2xkZXItaWNvblxuICAgICAgW2lucHV0Q29uZmlnXT1cImlucHV0Q29uZmlnXCJcbiAgICAgIFtnZXRTdXBlckNvbnRyb2xdPVwiZ2V0U3VwZXJDb250cm9sXCJcbiAgICAgIFtpc0ZvY3VzSW5wdXRdPVwiaXNGb2N1c0lucHV0XCJcbiAgICAgIFtpc1RvdWNoZWRJbnB1dF09XCJpc1RvdWNoZWRJbnB1dFwiXG4gICAgICBbc2VsZWN0ZWREcm9wZG93bkxhYmVsQ29sb3JdPVwic2VsZWN0ZWREcm9wZG93bkxhYmVsQ29sb3JcIlxuICAgICAgW2lzRWRpdElucHV0XT1cImlzRWRpdElucHV0XCJcbiAgICAgIFtkYXRlVGltZVBvcG92ZXJdPVwiZGF0ZVRpbWVQb3BvdmVyXCJcbiAgICAgIChvblBvcG92ZXJTaG93bkVtaXR0ZXIpPVwib25Qb3BvdmVyU2hvd24oKVwiXG4gICAgICAob25Qb3BvdmVySGlkZGVuRW1pdHRlcik9XCJvblBvcG92ZXJIaWRkZW4oKVwiXG4gICAgICAob25QbGFjZWhvbGRlckljb25FdmVudEVtaXR0ZXIpPVwib25QbGFjZWhvbGRlckljb25FdmVudCgkZXZlbnQpXCJcbiAgICA+XG4gICAgPC9hcHAtY2EtaW5wdXQtcGxhY2Vob2xkZXItaWNvbj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBJbnB1dCBQbGFjZWhvbGRlciBUZXh0IC0tPlxuICA8bmctY29udGFpbmVyXG4gICAgKm5nSWY9XCJcbiAgICAgIGlucHV0Q29uZmlnIHwgc2hvd1BsYWNlaG9sZGVyVGV4dCA6IGdldFN1cGVyQ29udHJvbCA6IFxuICAgICAgaXNWaXNpYmxlQ29tbWFuZHMgOiBnZXRTdXBlckNvbnRyb2w/LnZhbHVlXG4gICAgXCJcbiAgPlxuICAgIDxzcGFuXG4gICAgICBjbGFzcz1cImNhLXBsYWNlaG9sZGVyLXRleHQge3sgaW5wdXRDb25maWcuY3VzdG9tQ2xhc3MgfX1cIlxuICAgICAgW25nQ2xhc3NdPVwiICAgICAgXG4gICAgICBpc0ZvY3VzSW5wdXQgfCBpbnB1dFBsYWNlaG9sZGVyVGV4dENsYXNzXG4gICAgICAgIDogaXNUb3VjaGVkSW5wdXQgOiBnZXRTdXBlckNvbnRyb2wgOiBpbnB1dENvbmZpZ1xuICAgICAgICA6IGlzVmlzaWJsZUNvbW1hbmRzIDogZ2V0U3VwZXJDb250cm9sPy52YWx1ZVxuICAgICAgXCJcbiAgICAgIFtzdHlsZS5sZWZ0XT1cIlxuICAgICAgICBpbnB1dENvbmZpZy5wbGFjZWhvbGRlclRleHQ/LnRvTG93ZXJDYXNlKCkgPT09IGlucHV0U3RyaW5nRW51bS5QRVJTT05TIHx8XG4gICAgICAgIGlucHV0Q29uZmlnLnBsYWNlaG9sZGVyVGV4dD8udG9Mb3dlckNhc2UoKSA9PT0gaW5wdXRTdHJpbmdFbnVtLlZFSElDTEVTXG4gICAgICAgICAgPyAzMCArXG4gICAgICAgICAgICAoZ2V0U3VwZXJDb250cm9sPy52YWx1ZT8udG9TdHJpbmcoKT8ubGVuZ3RoICsgMSkgKiA5ICtcbiAgICAgICAgICAgICdweCdcbiAgICAgICAgICA6IGlzRm9jdXNJbnB1dCAmJlxuICAgICAgICAgICAgaW5wdXRDb25maWcucGxhY2Vob2xkZXJUZXh0Py50b0xvd2VyQ2FzZSgpICE9PSBpbnB1dENvbW1hbmRzVHlwZS5NT05USFNcbiAgICAgICAgICA/ICdhdXRvJ1xuICAgICAgICAgIDogKGdldFN1cGVyQ29udHJvbD8udmFsdWU/LnRvU3RyaW5nKCk/Lmxlbmd0aCArIDEpICogOCArICdweCdcbiAgICAgIFwiXG4gICAgICBbc3R5bGUucmlnaHRdPVwiXG4gICAgICAgIGlzRm9jdXNJbnB1dCAmJlxuICAgICAgICBpbnB1dENvbmZpZy5wbGFjZWhvbGRlclRleHQ/LnRvTG93ZXJDYXNlKCkgIT09IGlucHV0Q29tbWFuZHNUeXBlLk1PTlRIU1xuICAgICAgICAgID8gJzI4cHgnXG4gICAgICAgICAgOiAnYXV0bydcbiAgICAgIFwiXG4gICAgICA+XG4gICAgICAgIHt7IGlucHV0Q29uZmlnLnBsYWNlaG9sZGVyVGV4dCB9fVxuICAgIDwvc3Bhbj5cbiAgPC9uZy1jb250YWluZXI+XG4gIFxuICA8IS0tIElucHV0IExhYmVsIENvdW50ZXIgLS0+XG4gIDxuZy1jb250YWluZXJcbiAgICAqbmdJZj1cIlxuICAgICAgc2VsZWN0ZWREcm9wZG93bkxhYmVsQ29sb3IgJiZcbiAgICAgIGdldFN1cGVyQ29udHJvbD8udmFsdWUgJiZcbiAgICAgICFpc0ZvY3VzSW5wdXQgJiZcbiAgICAgICFpbnB1dENvbmZpZy5pc0Rpc2FibGVkICYmXG4gICAgICBpbnB1dENvbmZpZy5zaG93Q291bnRcbiAgICBcIlxuICA+XG4gICAgPHBcbiAgICAgIFtzdHlsZS50b3BdPVwiJzRweCdcIlxuICAgICAgW3N0eWxlLmxlZnRdPVwiXG4gICAgICAgIChnZXRTdXBlckNvbnRyb2w/LnZhbHVlPy50b1N0cmluZygpPy5sZW5ndGggKyA2LjUpICogOCArICdweCdcbiAgICAgIFwiXG4gICAgICBjbGFzcz1cImlucHV0LWxhYmVsLWNvdW50ZXJcIlxuICAgID5cbiAgICAgIHt7IHNlbGVjdGVkRHJvcGRvd25MYWJlbENvbG9yLmNvdW50IH19XG4gICAgPC9wPlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8IS0tIFNwZWNpYWwgRHJvcGRvd24gU2VsZWN0ZWQgU1ZHIHdpdGggb3IgV2l0aG91dCBUZXh0IC0tPlxuICA8bmctY29udGFpbmVyXG4gICAgKm5nSWY9XCJcbiAgICAgIGlucHV0Q29uZmlnPy5kcm9wZG93bkltYWdlSW5wdXQ/LnN2ZyAmJlxuICAgICAgIWlucHV0Q29uZmlnPy5oaWRlQWxsSXRlbXNJbklucHV0RHJvcGRvd24gJiZcbiAgICAgICEoIWlucHV0Q29uZmlnLmRyb3Bkb3duSW1hZ2VJbnB1dD8ud2l0aFRleHQgJiYgaXNGb2N1c0lucHV0KSAmJlxuICAgICAgIShcbiAgICAgICAgICBbJ3RydWNrJywgJ3RyYWlsZXInXS5pbmNsdWRlcyhcbiAgICAgICAgICAgICAgaW5wdXRDb25maWcuZHJvcGRvd25JbWFnZUlucHV0Py50ZW1wbGF0ZSFcbiAgICAgICAgICApICYmXG4gICAgICAgICAgaXNGb2N1c0lucHV0ICYmXG4gICAgICAgICAgaW5wdXRDb25maWcuZHJvcGRvd25JbWFnZUlucHV0Py5yZW1vdmVcbiAgICAgICkgJiZcbiAgICAgICFpbnB1dENvbmZpZz8uZHJvcGRvd25JbWFnZUlucHV0Py5uYW1lSW5pdGlhbHNJbnN0ZWFkVXJsXG4gICAgXCJcbiAgPlxuICAgIDxzdmctaWNvblxuICAgICAgICBbc3JjXT1cImlucHV0Q29uZmlnLmRyb3Bkb3duSW1hZ2VJbnB1dD8udXJsIVwiXG4gICAgICAgIGNsYXNzPVwiZHJvcGRvd24tc2VsZWN0ZWQtaW1hZ2Uge3tcbiAgICAgICAgICBpbnB1dENvbmZpZy5kcm9wZG93bkltYWdlSW5wdXQ/LmNsYXNzXG4gICAgICAgIH19XCJcbiAgICAgICAgW25nQ2xhc3NdPVwie1xuICAgICAgICAgICd1bnNldC1jb2xvcic6IGlzRm9jdXNJbnB1dCAmJiBpbnB1dENvbmZpZy5kcm9wZG93bkltYWdlSW5wdXQ/LmNsYXNzXG4gICAgICAgIH1cIlxuICAgICAgICBbc3ZnU3R5bGVdPVwie1xuICAgICAgICAgIGZpbGw6XG4gICAgICAgICAgICBpbnB1dENvbmZpZy5kcm9wZG93bkltYWdlSW5wdXQ/LmNvbG9yICYmICFpc0ZvY3VzSW5wdXRcbiAgICAgICAgICAgICAgPyBpbnB1dENvbmZpZy5kcm9wZG93bkltYWdlSW5wdXQ/LmNvbG9yXG4gICAgICAgICAgICAgIDogJyNmZmZmZmYnXG4gICAgICAgIH1cIlxuICAgID5cbiAgICA8L3N2Zy1pY29uPlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8IS0tIFNwZWNpYWwgRHJvcGRvd24gU2VsZWN0ZWQgSW1hZ2UgV2l0aCBUZXh0IFdpdGggSW5pdGlhbHMgbmFtZSAtLT5cbiAgPG5nLWNvbnRhaW5lclxuICAgICpuZ0lmPVwiXG4gICAgICBpbnB1dENvbmZpZz8uZHJvcGRvd25JbWFnZUlucHV0Py5pbWFnZSAmJlxuICAgICAgIWlucHV0Q29uZmlnPy5oaWRlQWxsSXRlbXNJbklucHV0RHJvcGRvd24gJiZcbiAgICAgIGlucHV0Q29uZmlnPy5kcm9wZG93bkltYWdlSW5wdXQ/LnVybCAmJlxuICAgICAgIWlucHV0Q29uZmlnPy5kcm9wZG93bkltYWdlSW5wdXQ/Lm5hbWVJbml0aWFsc0luc3RlYWRVcmxcbiAgICBcIlxuICA+XG4gICAgPGltZ1xuICAgICAgY2xhc3M9XCJkcm9wZG93bi1zZWxlY3RlZC1pbWFnZSBuYW1lLWluaXRpYWxzLWluc3RlYWQtdXJsXCJcbiAgICAgIFtzcmNdPVwiaW5wdXRDb25maWcuZHJvcGRvd25JbWFnZUlucHV0Py51cmxcIlxuICAgICAgW2FsdF09XCInSW5wdXQgSW1hZ2UnXCJcbiAgICAvPlxuICA8L25nLWNvbnRhaW5lcj5cbiAgPG5nLWNvbnRhaW5lclxuICAgICpuZ0lmPVwiXG4gICAgICBpbnB1dENvbmZpZz8uZHJvcGRvd25JbWFnZUlucHV0Py5uYW1lSW5pdGlhbHNJbnN0ZWFkVXJsICYmXG4gICAgICAhaW5wdXRDb25maWc/LmhpZGVBbGxJdGVtc0luSW5wdXREcm9wZG93biAmJlxuICAgICAgISghaW5wdXRDb25maWcuZHJvcGRvd25JbWFnZUlucHV0Py53aXRoVGV4dCAmJiBpc0ZvY3VzSW5wdXQpXG4gICAgXCJcbiAgPlxuICAgIDxkaXZcbiAgICAgIGNsYXNzPVwibm8tcHJvZmlsZS1pbWFnZSBkcm9wZG93bi1zZWxlY3RlZC1pbWFnZSBuYW1lLWluaXRpYWxzLWluc3RlYWQtdXJsXCJcbiAgICA+XG4gICAgICA8YXBwLWNhLXByb2ZpbGUtaW1hZ2VcbiAgICAgICAgICBbaW5keF09XCIwXCJcbiAgICAgICAgICBbc2l6ZV09XCInc21hbGwnXCJcbiAgICAgICAgICBbdHlwZV09XCIndXNlcidcIlxuICAgICAgICAgIFtuYW1lXT1cImlucHV0Q29uZmlnLmRyb3Bkb3duSW1hZ2VJbnB1dD8ubmFtZUluaXRpYWxzSW5zdGVhZFVybCFcIlxuICAgICAgPlxuICAgICAgPC9hcHAtY2EtcHJvZmlsZS1pbWFnZT5cbiAgICA8L2Rpdj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBNdWx0aXBsZSBJbnB1dCBWYWx1ZXMgLS0+XG4gIDxuZy1jb250YWluZXJcbiAgICAqbmdJZj1cIlxuICAgICAgaW5wdXRDb25maWc/Lm11bHRpcGxlSW5wdXRWYWx1ZXM/Lm9wdGlvbnM/Lmxlbmd0aCAmJiAhaXNGb2N1c0lucHV0XG4gICAgXCJcbiAgPlxuICAgIDxkaXZcbiAgICAgIGNsYXNzPVwiaW5wdXQtY29udHJvbCB7e1xuICAgICAgICBpbnB1dENvbmZpZy5tdWx0aXBsZUlucHV0VmFsdWVzPy5jdXN0b21DbGFzc1xuICAgICAgfX1cIlxuICAgICAgKGNsaWNrKT1cInRvZ2dsZURyb3Bkb3duT3B0aW9ucygpXCJcbiAgICA+XG4gICAgICA8c3BhblxuICAgICAgICBzdHlsZT1cImRpc3BsYXk6IGZsZXg7IGdhcDogNnB4OyBhbGlnbi1pdGVtczogY2VudGVyXCJcbiAgICAgICAgKm5nRm9yPVwiXG4gICAgICAgICAgbGV0IGl0ZW0gb2YgaW5wdXRDb25maWcubXVsdGlwbGVJbnB1dFZhbHVlcz8ub3B0aW9ucztcbiAgICAgICAgICBsZXQgaW5keCA9IGluZGV4O1xuICAgICAgICAgIHRyYWNrQnk6IHRyYWNrSWRlbnRpdHlcbiAgICAgICAgICBcIlxuICAgICAgPlxuICAgICAgICAgIDwhLS0gSW1hZ2UgLyBTVkcgLS0+XG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIml0ZW0/LmxvZ29OYW1lICYmIGl0ZW0/LmlzSW1nXCI+XG4gICAgICAgICAgICA8c3Bhbj5cbiAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIml0ZW0/LmxvZ29OYW1lICE9PSAnbm8tdXJsJ1wiPlxuICAgICAgICAgICAgICAgIDxpbWdcbiAgICAgICAgICAgICAgICAgIFtuZ1N0eWxlXT1cIntcbiAgICAgICAgICAgICAgICAgICAgd2lkdGg6ICcxOHB4JyxcbiAgICAgICAgICAgICAgICAgICAgJ2FzcGVjdC1yYXRpbyc6IDEsXG4gICAgICAgICAgICAgICAgICAgICdib3JkZXItcmFkaXMnOiAnMnB4J1xuICAgICAgICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICAgICAgICBbc3JjXT1cIml0ZW0ubG9nb05hbWVcIlxuICAgICAgICAgICAgICAgICAgW2FsdF09XCJpdGVtLnZhbHVlXCJcbiAgICAgICAgICAgICAgICAvPlxuICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIml0ZW0ubG9nb05hbWUgPT09ICduby11cmwnXCI+XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cIm5vLXByb2ZpbGUtaW1hZ2VcIj5cbiAgICAgICAgICAgICAgICAgIDxhcHAtY2EtcHJvZmlsZS1pbWFnZVxuICAgICAgICAgICAgICAgICAgICBbaW5keF09XCIwXCJcbiAgICAgICAgICAgICAgICAgICAgW3NpemVdPVwiJ3NtYWxsJ1wiXG4gICAgICAgICAgICAgICAgICAgIFtuYW1lXT1cIml0ZW0udmFsdWVcIlxuICAgICAgICAgICAgICAgICAgPjwvYXBwLWNhLXByb2ZpbGUtaW1hZ2U+XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICBcbiAgICAgICAgICAgICAgPCEtLSBPd25lciBGbGFnIC0tPlxuICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXRlbT8uaXNPd25lclwiPlxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJsb2FkLWRpc3BhdGNoZXMtdHRkLW93bmVyXCI+XG4gICAgICAgICAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgICAgICAgICAgW3NyY109XCJpbnB1dFN2Z1JvdXRlcy5vd25lckJhZGdlQmx1ZVN2Z1wiXG4gICAgICAgICAgICAgICAgICA+PC9zdmctaWNvbj5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gIFxuICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtPy5sb2dvTmFtZSAmJiBpdGVtPy5pc1N2Z1wiPlxuICAgICAgICAgICAgPHN2Zy1pY29uXG4gICAgICAgICAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgICAgICAgICAncGF5cm9sbC1kZWR1Y3Rpb24tdHJ1Y2stc3ZnJzogdGVtcGxhdGUgPT09IGRyb3Bkb3duVGVtcGxhdGVUeXBlRW51bS5QQVlST0xMX1RSVUNLU1xuICAgICAgICAgICAgICB9XCJcbiAgICAgICAgICAgICAgY2xhc3M9XCJ7eyBpdGVtPy5zdWJGb2xkZXIgfX1cIlxuICAgICAgICAgICAgICBbc3JjXT1cIml0ZW0/LmxvZ29OYW1lIVwiXG4gICAgICAgICAgICA+PC9zdmctaWNvbj5cbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgXG4gICAgICAgICAgPCEtLSBUZXh0IC0tPlxuICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCIhaXRlbT8uaXNQcm9ncmVzc0JhclwiPlxuICAgICAgICAgICAgPHNwYW5cbiAgICAgICAgICAgICAgY2xhc3M9XCJtdWx0aXBsZS1pbnB1dC10ZXh0XCJcbiAgICAgICAgICAgICAgW25nU3R5bGVdPVwie1xuICAgICAgICAgICAgICAgIGNvbG9yOiAnIzJGMkYyRidcbiAgICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgICAgICAgICBjb3VudGVyOiBpdGVtPy5pc0NvdW50ZXIsXG4gICAgICAgICAgICAgICAgJ2NvdW50ZXItb25lJzogaXRlbT8udmFsdWUgPT09IDFcbiAgICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgIHt7IGl0ZW0udmFsdWUgfX1cbiAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIml0ZW0/LnNlY29uZF92YWx1ZVwiPlxuICAgICAgICAgICAgICAgIDxzcGFuXG4gICAgICAgICAgICAgICAgICBbbmdTdHlsZV09XCJ7IGNvbG9yOiAnIzkxOTE5MScgfVwiXG4gICAgICAgICAgICAgICAgICA+e3sgaXRlbS5zZWNvbmRfdmFsdWUgfX1cbiAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICBcbiAgICAgICAgICA8IS0tIExvYWQgQnJva2VyIFByb2dyZXNzQmFyIC0tPlxuICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtPy5pc1Byb2dyZXNzQmFyXCI+XG4gICAgICAgICAgICA8Y2EtbG9hZC1tb2RhbC1wcm9ncmVzcy1iYXJcbiAgICAgICAgICAgICAgW3RvdGFsQW1vdW50XT1cIml0ZW0uc2Vjb25kX3ZhbHVlIVwiXG4gICAgICAgICAgICAgIFthdmFpbGFibGVDcmVkaXRdPVwiaXRlbS52YWx1ZSA/IGl0ZW0udmFsdWUgOiAwXCJcbiAgICAgICAgICAgID48L2NhLWxvYWQtbW9kYWwtcHJvZ3Jlc3MtYmFyPlxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPC9zcGFuPlxuICAgIDwvZGl2PlxuICBcbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBNdWx0aXBsZSBJbnB1dCBQbGFjZWhvbGRlciAtLT5cbiAgPG5nLWNvbnRhaW5lclxuICAgICpuZ0lmPVwiXG4gICAgICBpbnB1dENvbmZpZz8ubXVsdGlwbGVJbnB1dFZhbHVlcz8ub3B0aW9ucz8ubGVuZ3RoICYmXG4gICAgICBpc0ZvY3VzSW5wdXQgJiZcbiAgICAgICFnZXRTdXBlckNvbnRyb2w/LnZhbHVlXG4gICAgXCJcbiAgPlxuICAgIDxkaXZcbiAgICAgIGNsYXNzPVwiaW5wdXQtY29udHJvbCBtdWx0aXBsZS1pbnB1dC1wbGFjZWhvbGRlciB7e1xuICAgICAgICBpbnB1dENvbmZpZy5tdWx0aXBsZUlucHV0VmFsdWVzPy5jdXN0b21DbGFzc1xuICAgICAgfX1cIlxuICAgICAgW25nQ2xhc3NdPVwieyBcbiAgICAgICAgZm9jdXM6IGlzRm9jdXNJbnB1dCxcbiAgICAgICAgJ3BheXJvbGwtZGVkdWN0aW9uLXRydWNrJzogdGVtcGxhdGUgPT09IGRyb3Bkb3duVGVtcGxhdGVUeXBlRW51bS5QQVlST0xMX1RSVUNLU1xuICAgICAgfVwiXG4gICAgPlxuICAgICAgPHNwYW5cbiAgICAgICAgc3R5bGU9XCJkaXNwbGF5OiBmbGV4OyBnYXA6IDZweDsgYWxpZ24taXRlbXM6IGNlbnRlclwiXG4gICAgICAgICpuZ0Zvcj1cIlxuICAgICAgICAgIGxldCBpdGVtIG9mIGlucHV0Q29uZmlnLm11bHRpcGxlSW5wdXRWYWx1ZXM/Lm9wdGlvbnM7XG4gICAgICAgICAgbGV0IGluZHggPSBpbmRleDtcbiAgICAgICAgICB0cmFja0J5OiB0cmFja0lkZW50aXR5XG4gICAgICAgIFwiXG4gICAgICA+XG4gICAgICAgIDwhLS0gSW1hZ2UgLyBTVkcgLS0+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtPy5sb2dvTmFtZSAmJiBpdGVtPy5pc0ltZ1wiPlxuICAgICAgICAgIDxzcGFuXG4gICAgICAgICAgICBbbmdDbGFzc109XCJ7ICdmb2N1c2FibGUtaW1hZ2UnOiBpc0ZvY3VzSW5wdXQgfVwiXG4gICAgICAgICAgPlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIml0ZW0/LmxvZ29OYW1lICE9PSAnbm8tdXJsJ1wiPlxuICAgICAgICAgICAgICA8aW1nXG4gICAgICAgICAgICAgICAgW25nU3R5bGVdPVwie1xuICAgICAgICAgICAgICAgICAgd2lkdGg6ICcxOHB4JyxcbiAgICAgICAgICAgICAgICAgICdhc3BlY3QtcmF0aW8nOiAxLFxuICAgICAgICAgICAgICAgICAgJ2JvcmRlci1yYWRpcyc6ICcycHgnXG4gICAgICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICAgICAgW3NyY109XCJpdGVtLmxvZ29OYW1lXCJcbiAgICAgICAgICAgICAgICBbYWx0XT1cIml0ZW0udmFsdWVcIlxuICAgICAgICAgICAgICAvPlxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXRlbS5sb2dvTmFtZSA9PT0gJ25vLXVybCdcIj5cbiAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cIm5vLXByb2ZpbGUtaW1hZ2VcIj5cbiAgICAgICAgICAgICAgICA8YXBwLWNhLXByb2ZpbGUtaW1hZ2VcbiAgICAgICAgICAgICAgICAgICAgW2luZHhdPVwiMFwiXG4gICAgICAgICAgICAgICAgICAgIFtzaXplXT1cIidzbWFsbCdcIlxuICAgICAgICAgICAgICAgICAgICBbbmFtZV09XCJpdGVtLnZhbHVlIVwiXG4gICAgICAgICAgICAgICAgPjwvYXBwLWNhLXByb2ZpbGUtaW1hZ2U+XG4gICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgPC9zcGFuPlxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgXG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtPy5sb2dvTmFtZSAmJiBpdGVtPy5pc1N2Z1wiPlxuICAgICAgICAgIDxzdmctaWNvblxuICAgICAgICAgICAgW25nQ2xhc3NdPVwieyBcbiAgICAgICAgICAgICAgJ2ZvY3VzYWJsZS1zdmcnOiBpc0ZvY3VzSW5wdXQsXG4gICAgICAgICAgICAgICdwYXlyb2xsLWRlZHVjdGlvbi10cnVjay1zdmcnOiB0ZW1wbGF0ZSA9PT0gZHJvcGRvd25UZW1wbGF0ZVR5cGVFbnVtLlBBWVJPTExfVFJVQ0tTXG4gICAgICAgICAgICB9XCJcbiAgICAgICAgICAgIGNsYXNzPVwie3sgaXRlbT8uc3ViRm9sZGVyIH19IHt7XG4gICAgICAgICAgICAgIGl0ZW0/LmxvZ29UeXBlPy50cmltKCk/LnJlcGxhY2UoJyAnLCAnJyk/LnRvTG93ZXJDYXNlKClcbiAgICAgICAgICAgIH19XCJcbiAgICAgICAgICAgIFtzcmNdPVwiaXRlbT8ubG9nb05hbWUhXCJcbiAgICAgICAgICA+PC9zdmctaWNvbj5cbiAgICAgICAgPC9uZy1jb250YWluZXI+XG4gIFxuICAgICAgICA8IS0tIFRleHQgLS0+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCIhaXRlbT8uaXNQcm9ncmVzc0JhclwiPlxuICAgICAgICAgIDxzcGFuXG4gICAgICAgICAgICBjbGFzcz1cIm11bHRpcGxlLWlucHV0LXRleHRcIlxuICAgICAgICAgICAgW25nQ2xhc3NdPVwie1xuICAgICAgICAgICAgICAnZm9jdXNhYmxlLXRleHQnOiBpc0ZvY3VzSW5wdXQsXG4gICAgICAgICAgICAgIGNvdW50ZXI6IGl0ZW0/LmlzQ291bnRlcixcbiAgICAgICAgICAgICAgJ2NvdW50ZXItZm9jdXMnOiBpdGVtPy5pc0NvdW50ZXIgJiYgaXNGb2N1c0lucHV0LFxuICAgICAgICAgICAgICAnY291bnRlci1vbmUnOiBpdGVtPy52YWx1ZSA9PT0gMSxcbiAgICAgICAgICAgICAgJ2NhLWFkZC1kb3QnOiB0ZW1wbGF0ZSA9PT0gZHJvcGRvd25UZW1wbGF0ZVR5cGVFbnVtLkxPQURfRElTUEFUQ0hFUlxuICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICBbbmdTdHlsZV09XCJ7XG4gICAgICAgICAgICAgIGNvbG9yOiAnIzZGOUVFMCdcbiAgICAgICAgICAgIH1cIlxuICAgICAgICAgID5cbiAgICAgICAgICAgIHt7IGl0ZW0udmFsdWUgfX1cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtPy5zZWNvbmRfdmFsdWVcIj5cbiAgICAgICAgICAgICAgPHNwYW4+e3sgaXRlbS5zZWNvbmRfdmFsdWUgfX08L3NwYW4+XG4gICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICA8L3NwYW4+XG4gICAgICAgIDwvbmctY29udGFpbmVyPlxuICBcbiAgICAgICAgPCEtLSBMb2FkIEJyb2tlciBQcm9ncmVzc0JhciAtLT5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIml0ZW0/LmlzUHJvZ3Jlc3NCYXJcIj5cbiAgICAgICAgICA8Y2EtbG9hZC1tb2RhbC1wcm9ncmVzcy1iYXJcbiAgICAgICAgICAgIFt0b3RhbEFtb3VudF09XCJpdGVtLnNlY29uZF92YWx1ZSFcIlxuICAgICAgICAgICAgW2F2YWlsYWJsZUNyZWRpdF09XCJpdGVtLnZhbHVlID8gaXRlbS52YWx1ZSA6IDBcIlxuICAgICAgICAgICAgW2lucHV0Rm9jdXNdPVwiaXNGb2N1c0lucHV0XCJcbiAgICAgICAgICA+PC9jYS1sb2FkLW1vZGFsLXByb2dyZXNzLWJhcj5cbiAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICA8L3NwYW4+XG4gICAgPC9kaXY+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDxpbnB1dFxuICAgICNpbnB1dFxuICAgIFt0eXBlXT1cImlucHV0Q29uZmlnLnR5cGUgfCBpbnB1dFR5cGU6IGlzVG9nZ2xlUGFzc3dvcmRcIlxuICAgIFtpZF09XCJpbnB1dENvbmZpZy5pZCA/IGlucHV0Q29uZmlnLmlkIDogaW5wdXRDb25maWcubmFtZVwiXG4gICAgW25hbWVdPVwiaW5wdXRDb25maWcubmFtZVwiXG4gICAgW2Rpc2FibGVkXT1cImlucHV0Q29uZmlnLmlzRGlzYWJsZWQhXCJcbiAgICBbYXV0b2NvbXBsZXRlXT1cImlucHV0Q29uZmlnLmF1dG9jb21wbGV0ZSA/IGlucHV0Q29uZmlnLmF1dG9jb21wbGV0ZSA6ICdvZmYnXCJcbiAgICBbcGxhY2Vob2xkZXJdPVwiXG4gICAgICAoaW5wdXRDb25maWcucGxhY2Vob2xkZXJJbnN0ZWFkT2ZMYWJlbCAmJlxuICAgICAgaW5wdXRDb25maWcucGxhY2Vob2xkZXIgJiZcbiAgICAgIGlzRm9jdXNJbnB1dFxuICAgICAgICA/IGlucHV0Q29uZmlnLnBsYWNlaG9sZGVyXG4gICAgICAgIDogJycpIHx8XG4gICAgICAoaW5wdXRDb25maWcucGxhY2Vob2xkZXIgJiYgaXNGb2N1c0lucHV0ID8gaW5wdXRDb25maWcucGxhY2Vob2xkZXIgOiAnJylcbiAgICBcIlxuICAgIFttaW5MZW5ndGhdPVwiaW5wdXRDb25maWcubWluTGVuZ3RoID8gaW5wdXRDb25maWcubWluTGVuZ3RoIDogMFwiXG4gICAgW21heExlbmd0aF09XCJpbnB1dENvbmZpZy5tYXhMZW5ndGggPyBpbnB1dENvbmZpZy5tYXhMZW5ndGggOiA5OTlcIlxuICAgIFttYXNrXT1cImlucHV0Q29uZmlnLm1hc2tcIlxuICAgIFttaW5dPVwiaW5wdXRDb25maWcubWluID8gaW5wdXRDb25maWcubWluIDogMFwiXG4gICAgW21heF09XCJpbnB1dENvbmZpZy5tYXhcIlxuICAgIFtzdGVwXT1cImlucHV0Q29uZmlnLnN0ZXAgPyBpbnB1dENvbmZpZy5zdGVwIDogbnVsbFwiXG4gICAgW3JlYWRPbmx5XT1cImlucHV0Q29uZmlnLnJlYWRPbmx5XCJcbiAgICBhcHBNaW5NYXhWYWx1ZVxuICAgIFttaW5WYWx1ZV09XCJpbnB1dENvbmZpZy5taW4hXCJcbiAgICBbbWF4VmFsdWVdPVwiaW5wdXRDb25maWcubWF4IVwiXG4gICAgaW5wdXRmb3JtYXQ9XCJkZC1tbS15eVwiXG4gICAgY2xhc3M9XCJpbnB1dC1jb250cm9sXG4gIHt7IGlucHV0Q29uZmlnLnRleHRUcmFuc2Zvcm0gfX1cbiAge3sgaW5wdXRDb25maWcudGV4dEFsaWduIH19XG4gIHt7IGlucHV0Q29uZmlnLmN1c3RvbUNsYXNzIH19XG4gIFwiXG4gICAgW25nQ2xhc3NdPVwiXG4gICAgICBnZXRTdXBlckNvbnRyb2xcbiAgICAgICAgfCBpbnB1dENsYXNzXG4gICAgICAgICAgOiBpc0ZvY3VzSW5wdXRcbiAgICAgICAgICA6IGlzVG91Y2hlZElucHV0XG4gICAgICAgICAgOiBpbnB1dENvbmZpZ1xuICAgICAgICAgIDogaW5wdXRcbiAgICAgICAgICA6IGlzVmlzaWJsZUNvbW1hbmRzXG4gICAgICAgICAgOiBnZXRTdXBlckNvbnRyb2w/LnZhbHVlXG4gICAgICAgICAgOiBnZXRTdXBlckNvbnRyb2w/LmludmFsaWRcbiAgICAgICAgICA6IGdldFN1cGVyQ29udHJvbD8udG91Y2hlZFxuICAgICAgICAgIDogaXNEcm9wZG93blRvZ2dsZXJcbiAgICAgICAgICA6IGlzRWRpdElucHV0XG4gICAgICAgICAgOiB0ZW1wbGF0ZVxuICAgIFwiXG4gICAgKGtleXByZXNzKT1cIm9uS2V5UHJlc3MoJGV2ZW50KVwiXG4gICAgKGtleWRvd24pPVwib25LZXlkb3duKCRldmVudClcIlxuICAgIChrZXl1cCk9XCJvbktleXVwKCRldmVudClcIlxuICAgIChibHVyKT1cIm9uQmx1cigkZXZlbnQpXCJcbiAgICAoZm9jdXMpPVwib25Gb2N1cygkZXZlbnQpXCJcbiAgICAoc2VsZWN0KT1cInNlbGVjdGlvbkNoYW5nZSgkZXZlbnQpXCJcbiAgICAoaW5wdXQpPVwib25DaGFuZ2UoJGFueSgkZXZlbnQudGFyZ2V0KS52YWx1ZSk7IHRyYW5zZm9ybVRleHQoJGV2ZW50KVwiXG4gICAgWyhuZ01vZGVsKV09XCJpbnB1dC52YWx1ZVwiXG4gICAgW25nU3R5bGVdPVwiXG4gICAgICBpbnB1dENvbmZpZy5zdGF0dXNTdHlsZSA/IChpbnB1dC52YWx1ZSB8IGxvYWRTdGF0dXNDb2xvcikgOiAnJ1xuICAgIFwiXG4gIC8+XG5cbiAgPCEtLSBQbGFjZWhvbGRlciBJY29uIG9uIFJpZ2h0IFNpZGUgLS0+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJpbnB1dENvbmZpZy5wbGFjZWhvbGRlckljb25SaWdodFNpZGVcIj5cbiAgICA8c3ZnLWljb25cbiAgICAgIGNsYXNzPVwicGxhY2Vob2xkZXItaWNvbi1yaWdodC1zaWRlIHt7XG4gICAgICAgIGlucHV0Q29uZmlnLnBsYWNlaG9sZGVySWNvbkNvbG9yXG4gICAgICB9fVwiXG4gICAgICBbbmdDbGFzc109XCJcbiAgICAgICAgaXNGb2N1c0lucHV0XG4gICAgICAgICAgfCBpbnB1dFBsYWNlaG9sZGVySWNvblJpZ2h0Q2xhc3NcbiAgICAgICAgICAgIDogZ2V0U3VwZXJDb250cm9sXG4gICAgICAgICAgICA6IGlucHV0Q29uZmlnXG4gICAgICAgICAgICA6IGlzVG91Y2hlZElucHV0XG4gICAgICAgICAgICA6IGdldFN1cGVyQ29udHJvbD8udmFsdWVcbiAgICAgIFwiXG4gICAgICBbc3JjXT1cIlxuICAgICAgICBpbnB1dENvbmZpZy5wbGFjZWhvbGRlckljb25SaWdodFNpZGUudG9Mb3dlckNhc2UoKVxuICAgICAgICAgIHwgY2FTdmcgOiAnY29tbW9uJ1xuICAgICAgXCJcbiAgICA+PC9zdmctaWNvbj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBJbnB1dCBFcnJvciBNZXNzYWdlIC0tPlxuICA8bmctY29udGFpbmVyXG4gICAgKm5nSWY9XCJcbiAgICAgICEoIWdldFN1cGVyQ29udHJvbD8udmFsdWUgJiYgaXNGb2N1c0lucHV0KSAmJlxuICAgICAgKGlzVG91Y2hlZElucHV0IHx8IGdldFN1cGVyQ29udHJvbD8udG91Y2hlZCB8fCBnZXRTdXBlckNvbnRyb2w/LnZhbHVlKSAmJlxuICAgICAgZ2V0U3VwZXJDb250cm9sPy5pbnZhbGlkICYmXG4gICAgICAhaW5wdXRDb25maWcuaXNJbnZhbGlkU2VhcmNoSW5Ecm9wZG93biAmJlxuICAgICAgIWlucHV0Q29uZmlnLmlzRGlzYWJsZWRcbiAgICBcIlxuICA+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIiEoaW5wdXRDb25maWcuaGlkZUVycm9yTWVzc2FnZSB8fCBpbnB1dENvbmZpZy5lcnJvckluc2lkZUlucHV0KVwiPlxuICAgICAgPHNwYW4gY2xhc3M9XCJpbnB1dC1lcnJvciB7eyBpbnB1dENvbmZpZy5jdXN0b21DbGFzcyB9fVwiPlxuICAgICAgICB7eyBnZXRTdXBlckNvbnRyb2w/LmVycm9ycyB8IGlucHV0RXJyb3I6IGlucHV0Q29uZmlnLm5hbWUgfX1cbiAgICAgIDwvc3Bhbj5cbiAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgIDwhLS0gRXJyb3IgTWVzc2FnZSBJbnNpZGUgSW5wdXQgLS0+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImlucHV0Q29uZmlnLmVycm9ySW5zaWRlSW5wdXRcIj5cbiAgICAgIDxzcGFuIGNsYXNzPVwiZXJyb3ItaW5zaWRlLWlucHV0IHt7IGlucHV0Q29uZmlnLmN1c3RvbUNsYXNzIH19XCI+XG4gICAgICAgIHt7IGdldFN1cGVyQ29udHJvbD8uZXJyb3JzIHwgaW5wdXRFcnJvcjogaW5wdXRDb25maWcubmFtZSB9fVxuICAgICAgPC9zcGFuPlxuICAgIDwvbmctY29udGFpbmVyPlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaW5wdXRDb25maWcuZml4ZWRQbGFjaG9sZGVyICYmIGlucHV0LnZhbHVlXCI+XG4gICAgPHNwYW4gY2xhc3M9XCJpbnB1dC1maXhlZC1wbGFjZWhvZGVyLWxhYmVsXCI+XG4gICAgICB7eyBpbnB1dENvbmZpZy5maXhlZFBsYWNob2xkZXIgfX1cbiAgICA8L3NwYW4+XG4gIDwvbmctY29udGFpbmVyPlxuPC9kaXY+XG5cbjwhLS0gUG9wb3ZlciBmb3IgRGF0ZVRpbWUgUGlja2VycyAtLT5cbjxuZy10ZW1wbGF0ZSAjZGF0ZVRpbWVQb3BvdmVyIGxldC1kYXRhPVwiZGF0YVwiPlxuICA8ZGl2IGNsYXNzPVwiZGF0ZXRpbWUtZHJvcGRvd24taG9sZGVyXCI+XG4gICAgPGFwcC1jYS1jdXN0b20tZGF0ZXRpbWUtcGlja2Vyc1xuICAgICAgW2NhbGVuZGFyVHlwZV09XCJcbiAgICAgICAgaW5wdXRDb25maWcubmFtZSA9PT0gJ2RhdGVwaWNrZXInIHx8XG4gICAgICAgIGlucHV0Q29uZmlnLm5hbWUgPT09ICdkYXRlcGlja2VyQmFua0NhcmQnXG4gICAgICAgICAgPyAnZGF0ZSdcbiAgICAgICAgICA6ICd0aW1lJ1xuICAgICAgXCJcbiAgICAgIFtpbnB1dENvbmZpZ109XCJpbnB1dENvbmZpZ1wiXG4gICAgICBbcGxhY2Vob2xkZXJdPVwiJ01NL0REL1lZJ1wiXG4gICAgICBbZGF0ZVRpbWVdPVwiZGF0ZVRpbWVJbnB1dERhdGVcIlxuICAgICAgKGNsb3NlUG9wb3Zlcik9XCJjbG9zZVBvcG92ZXIoKVwiXG4gICAgPjwvYXBwLWNhLWN1c3RvbS1kYXRldGltZS1waWNrZXJzPlxuICA8L2Rpdj5cbjwvbmctdGVtcGxhdGU+Il19