ca-components 0.0.2 → 0.0.3
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.
- package/esm2022/assets/json/ca-table.json +59 -0
- package/esm2022/assets/json/ta-detail-dropdown.json +80 -0
- package/esm2022/lib/animation/in-out.animation.mjs +73 -0
- package/esm2022/lib/animations/accordion-animation.mjs +25 -0
- package/esm2022/lib/animations/animation.mjs +30 -0
- package/esm2022/lib/animations/close-form.animation.mjs +18 -0
- package/esm2022/lib/animations/expand-search-button.animation.mjs +17 -0
- package/esm2022/lib/animations/show.animation.mjs +20 -0
- package/esm2022/lib/animations/tabs-modal.animation.mjs +78 -0
- package/esm2022/lib/ca-components.module.mjs +117 -8
- package/esm2022/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.mjs +53 -0
- package/esm2022/lib/components/ca-details-dropdown/ca-details-dropdown.component.mjs +116 -0
- package/esm2022/lib/components/ca-details-dropdown/models/detail-dropdown.model.mjs +2 -0
- package/esm2022/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.mjs +4 -0
- package/esm2022/lib/components/ca-dropdown/ca-dropdown.component.mjs +37 -0
- package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +165 -0
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +541 -0
- package/esm2022/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.mjs +75 -0
- package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +191 -0
- package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +131 -0
- package/esm2022/lib/components/ca-filters/utils/constants/status-filter.constants.mjs +19 -0
- package/esm2022/lib/components/ca-filters/utils/constants/time-filter.constants.mjs +45 -0
- package/esm2022/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.mjs +7 -0
- package/esm2022/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.mjs +4 -0
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +179 -0
- package/esm2022/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.mjs +55 -0
- package/esm2022/lib/components/ca-input/components/ca-input-password/ca-input-password.component.mjs +63 -0
- package/esm2022/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +52 -0
- package/esm2022/lib/components/ca-input/config/ca-input.config.mjs +2 -0
- package/esm2022/lib/components/ca-input/models/label-color.model.mjs +2 -0
- package/esm2022/lib/components/ca-input/pipes/input-class.pipe.mjs +89 -0
- package/esm2022/lib/components/ca-input/pipes/input-clear-class.pipe.mjs +76 -0
- package/esm2022/lib/components/ca-input/pipes/input-container-class.pipe.mjs +57 -0
- package/esm2022/lib/components/ca-input/pipes/input-error.pipe.mjs +85 -0
- package/esm2022/lib/components/ca-input/pipes/input-password-eye-class.pipe.mjs +37 -0
- package/esm2022/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.mjs +57 -0
- package/esm2022/lib/components/ca-input/pipes/input-type.pipe.mjs +25 -0
- package/esm2022/lib/components/ca-input/pipes/label-class.pipe.mjs +32 -0
- package/esm2022/lib/components/ca-input/pipes/show-clear.pipe.mjs +22 -0
- package/esm2022/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.mjs +27 -0
- package/esm2022/lib/components/ca-input/pipes/show-valid-check.pipe.mjs +27 -0
- package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +92 -0
- package/esm2022/lib/components/ca-input/utils/input-svg-routes.mjs +9 -0
- package/esm2022/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.mjs +43 -0
- package/esm2022/lib/components/ca-map/ca-map.component.mjs +329 -0
- package/esm2022/lib/components/ca-map/enums/google-map.enum.mjs +6 -0
- package/esm2022/lib/components/ca-map/enums/toolbar-filter-string.enum.mjs +40 -0
- package/esm2022/lib/components/ca-map/models/map.model.mjs +2 -0
- package/esm2022/lib/components/ca-map/utils/helpers/map.helper.mjs +87 -0
- package/esm2022/lib/components/ca-map/utils/map-svg-routes/map-svg-routes.mjs +5 -0
- package/esm2022/lib/components/ca-map-dropdown/ca-map-dropdown.component.mjs +57 -0
- package/esm2022/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.mjs +19 -0
- package/esm2022/lib/components/ca-note/ca-note.component.mjs +238 -0
- package/esm2022/lib/components/ca-note/utils/helper/copy-paste.helper.mjs +8 -0
- package/esm2022/lib/components/ca-note/utils/svg-routes/note-svg-routes.mjs +6 -0
- package/esm2022/lib/components/ca-note-container/ca-note-container.component.mjs +153 -0
- package/esm2022/lib/components/ca-note-container/enums/note-default-string.enum.mjs +11 -0
- package/esm2022/lib/components/ca-note-container/enums/note-selected-color.enum.mjs +6 -0
- package/esm2022/lib/components/ca-note-container/models/note-colors.model.mjs +2 -0
- package/esm2022/lib/components/ca-note-container/utils/constants/note-config.constant.mjs +61 -0
- package/esm2022/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.mjs +9 -0
- package/esm2022/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.mjs +53 -0
- package/esm2022/lib/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes.mjs +5 -0
- package/esm2022/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.mjs +26 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +44 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +93 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.mjs +103 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +81 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/adress-model.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/animation-model.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/broker-short-response.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/enum-value.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/load-short-response.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/shipper-short-response.mjs +2 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/models/status-types.enum.mjs +7 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.mjs +8 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.mjs +25 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.mjs +21 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/options-icon.routes.mjs +5 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.mjs +16 -0
- package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.mjs +5 -0
- package/esm2022/lib/components/ca-profile-image/ca-profile-image.component.mjs +5 -5
- package/esm2022/lib/components/ca-progress-bar/ca-progress-bar.component.mjs +209 -0
- package/esm2022/lib/components/ca-progress-bar/models/gps-progress.model.mjs +2 -0
- package/esm2022/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.mjs +8 -0
- package/esm2022/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.mjs +4 -0
- package/esm2022/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.mjs +91 -0
- package/esm2022/lib/components/ca-search-multiple-states/utils/config/input-config.mjs +9 -0
- package/esm2022/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.mjs +7 -0
- package/esm2022/lib/components/ca-spinner/ca-spinner.component.mjs +40 -0
- package/esm2022/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.mjs +97 -0
- package/esm2022/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.mjs +2 -0
- package/esm2022/lib/constants/map.constant.mjs +436 -0
- package/esm2022/lib/directives/placeholder-directive.mjs +59 -0
- package/esm2022/lib/enums/load-filter-string.enum.mjs +23 -0
- package/esm2022/lib/enums/load-status.enum.mjs +58 -0
- package/esm2022/lib/models/array-status.model.mjs +2 -0
- package/esm2022/lib/models/card-models/card-table-data.model.mjs +2 -0
- package/esm2022/lib/models/color-response.mjs +2 -0
- package/esm2022/lib/models/dropdown.model.mjs +2 -0
- package/esm2022/lib/models/filter-output-params.model.mjs +2 -0
- package/esm2022/lib/models/filter-output.model.mjs +2 -0
- package/esm2022/lib/models/note-active-options.model.mjs +2 -0
- package/esm2022/lib/models/payroll-list-summary.model.mjs +2 -0
- package/esm2022/lib/models/table-models/table-body-color-label.model.mjs +2 -0
- package/esm2022/lib/models/time-filter.model.mjs +2 -0
- package/esm2022/lib/models/trailer-minimal-response.mjs +2 -0
- package/esm2022/lib/models/trailer-type-response.mjs +2 -0
- package/esm2022/lib/models/truck-minimal-response.mjs +2 -0
- package/esm2022/lib/models/truck-type-response.mjs +2 -0
- package/esm2022/lib/pipes/dropdown-load-status-color.pipe.mjs +164 -0
- package/esm2022/lib/pipes/format-currency.pipe.mjs +22 -0
- package/esm2022/lib/pipes/safe-html.pipe.mjs +18 -0
- package/esm2022/lib/pipes/ta-svg.pipe.mjs +30 -0
- package/esm2022/lib/pipes/thousand-separator.pipe.mjs +19 -0
- package/esm2022/lib/pipes/thousand-to-short-format-pipe.mjs +19 -0
- package/esm2022/lib/services/truckassist-table.service.mjs +20 -0
- package/esm2022/lib/utils/helpers/methods-calculations.helper.mjs +153 -0
- package/esm2022/public-api.mjs +21 -3
- package/fesm2022/ca-components.mjs +1866 -9
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/animation/in-out.animation.d.ts +1 -0
- package/lib/animations/accordion-animation.d.ts +1 -0
- package/lib/animations/animation.d.ts +4 -0
- package/lib/animations/close-form.animation.d.ts +1 -0
- package/lib/animations/expand-search-button.animation.d.ts +1 -0
- package/lib/animations/show.animation.d.ts +1 -0
- package/lib/animations/tabs-modal.animation.d.ts +1 -0
- package/lib/ca-components.module.d.ts +18 -1
- package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.d.ts +19 -0
- package/lib/components/ca-details-dropdown/ca-details-dropdown.component.d.ts +35 -0
- package/lib/components/ca-details-dropdown/models/detail-dropdown.model.d.ts +19 -0
- package/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.d.ts +3 -0
- package/lib/components/ca-dropdown/ca-dropdown.component.d.ts +14 -0
- package/lib/components/ca-filters/ca-filter.component.d.ts +46 -0
- package/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.d.ts +78 -0
- package/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.d.ts +11 -0
- package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.d.ts +62 -0
- package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.d.ts +33 -0
- package/lib/components/ca-filters/utils/constants/status-filter.constants.d.ts +9 -0
- package/lib/components/ca-filters/utils/constants/time-filter.constants.d.ts +8 -0
- package/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.d.ts +6 -0
- package/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.d.ts +3 -0
- package/lib/components/ca-input/ca-input.component.d.ts +46 -0
- package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.d.ts +19 -0
- package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.d.ts +20 -0
- package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +16 -0
- package/lib/components/ca-input/config/ca-input.config.d.ts +136 -0
- package/lib/components/ca-input/models/label-color.model.d.ts +11 -0
- package/lib/components/ca-input/pipes/input-class.pipe.d.ts +13 -0
- package/lib/components/ca-input/pipes/input-clear-class.pipe.d.ts +11 -0
- package/lib/components/ca-input/pipes/input-container-class.pipe.d.ts +11 -0
- package/lib/components/ca-input/pipes/input-error.pipe.d.ts +7 -0
- package/lib/components/ca-input/pipes/input-password-eye-class.pipe.d.ts +11 -0
- package/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.d.ts +12 -0
- package/lib/components/ca-input/pipes/input-type.pipe.d.ts +7 -0
- package/lib/components/ca-input/pipes/label-class.pipe.d.ts +10 -0
- package/lib/components/ca-input/pipes/show-clear.pipe.d.ts +8 -0
- package/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.d.ts +9 -0
- package/lib/components/ca-input/pipes/show-valid-check.pipe.d.ts +9 -0
- package/lib/components/ca-input/services/ca-input-state.service.d.ts +24 -0
- package/lib/components/ca-input/utils/input-svg-routes.d.ts +8 -0
- package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.d.ts +21 -0
- package/lib/components/ca-map/ca-map.component.d.ts +56 -0
- package/lib/components/ca-map/enums/google-map.enum.d.ts +4 -0
- package/lib/components/ca-map/enums/toolbar-filter-string.enum.d.ts +33 -0
- package/lib/components/ca-map/models/map.model.d.ts +74 -0
- package/lib/components/ca-map/utils/helpers/map.helper.d.ts +9 -0
- package/lib/components/ca-map/utils/map-svg-routes/map-svg-routes.d.ts +4 -0
- package/lib/components/ca-map-dropdown/ca-map-dropdown.component.d.ts +43 -0
- package/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.d.ts +18 -0
- package/lib/components/ca-note/ca-note.component.d.ts +56 -0
- package/lib/components/ca-note/utils/helper/copy-paste.helper.d.ts +3 -0
- package/lib/components/ca-note/utils/svg-routes/note-svg-routes.d.ts +5 -0
- package/lib/components/ca-note-container/ca-note-container.component.d.ts +38 -0
- package/lib/components/ca-note-container/enums/note-default-string.enum.d.ts +9 -0
- package/lib/components/ca-note-container/enums/note-selected-color.enum.d.ts +4 -0
- package/lib/components/ca-note-container/models/note-colors.model.d.ts +4 -0
- package/lib/components/ca-note-container/utils/constants/note-config.constant.d.ts +7 -0
- package/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.d.ts +8 -0
- package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.d.ts +20 -0
- package/lib/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes.d.ts +4 -0
- package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.d.ts +20 -0
- package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.d.ts +19 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.d.ts +30 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.d.ts +30 -0
- package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +23 -0
- package/lib/components/ca-pickup-delivery-block/models/adress-model.d.ts +12 -0
- package/lib/components/ca-pickup-delivery-block/models/animation-model.d.ts +7 -0
- package/lib/components/ca-pickup-delivery-block/models/broker-short-response.d.ts +13 -0
- package/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.d.ts +6 -0
- package/lib/components/ca-pickup-delivery-block/models/enum-value.d.ts +4 -0
- package/lib/components/ca-pickup-delivery-block/models/load-short-response.d.ts +18 -0
- package/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.d.ts +9 -0
- package/lib/components/ca-pickup-delivery-block/models/shipper-short-response.d.ts +8 -0
- package/lib/components/ca-pickup-delivery-block/models/status-types.enum.d.ts +5 -0
- package/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.d.ts +4 -0
- package/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.d.ts +14 -0
- package/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.d.ts +9 -0
- package/lib/components/ca-pickup-delivery-block/utils/svg-routes/options-icon.routes.d.ts +4 -0
- package/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.d.ts +15 -0
- package/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.d.ts +4 -0
- package/lib/components/ca-profile-image/ca-profile-image.component.d.ts +1 -1
- package/lib/components/ca-progress-bar/ca-progress-bar.component.d.ts +115 -0
- package/lib/components/ca-progress-bar/models/gps-progress.model.d.ts +8 -0
- package/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.d.ts +7 -0
- package/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.d.ts +3 -0
- package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.d.ts +24 -0
- package/lib/components/ca-search-multiple-states/utils/config/input-config.d.ts +2 -0
- package/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.d.ts +6 -0
- package/lib/components/ca-spinner/ca-spinner.component.d.ts +15 -0
- package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.d.ts +23 -0
- package/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.d.ts +5 -0
- package/lib/constants/map.constant.d.ts +39 -0
- package/lib/directives/placeholder-directive.d.ts +15 -0
- package/lib/enums/load-filter-string.enum.d.ts +16 -0
- package/lib/enums/load-status.enum.d.ts +56 -0
- package/lib/models/array-status.model.d.ts +24 -0
- package/lib/models/card-models/card-table-data.model.d.ts +837 -0
- package/lib/models/color-response.d.ts +6 -0
- package/lib/models/dropdown.model.d.ts +4 -0
- package/lib/models/filter-output-params.model.d.ts +5 -0
- package/lib/models/filter-output.model.d.ts +6 -0
- package/lib/models/note-active-options.model.d.ts +6 -0
- package/lib/models/payroll-list-summary.model.d.ts +12 -0
- package/lib/models/table-models/table-body-color-label.model.d.ts +11 -0
- package/lib/models/time-filter.model.d.ts +7 -0
- package/lib/models/trailer-minimal-response.d.ts +11 -0
- package/lib/models/trailer-type-response.d.ts +7 -0
- package/lib/models/truck-minimal-response.d.ts +13 -0
- package/lib/models/truck-type-response.d.ts +6 -0
- package/lib/pipes/dropdown-load-status-color.pipe.d.ts +10 -0
- package/lib/pipes/format-currency.pipe.d.ts +7 -0
- package/lib/pipes/safe-html.pipe.d.ts +10 -0
- package/lib/pipes/ta-svg.pipe.d.ts +7 -0
- package/lib/pipes/thousand-separator.pipe.d.ts +7 -0
- package/lib/pipes/thousand-to-short-format-pipe.d.ts +7 -0
- package/lib/services/truckassist-table.service.d.ts +7 -0
- package/lib/utils/helpers/methods-calculations.helper.d.ts +15 -0
- package/package.json +1 -1
- package/public-api.d.ts +20 -2
- package/src/assets/global_style/styles.scss +45 -0
- package/src/assets/json/ca-dropdown.json +12 -0
- package/src/assets/json/ca-payroll-list-summary.json +71 -0
- package/src/assets/json/ca-table.json +59 -0
- package/src/assets/json/ta-detail-dropdown.json +80 -0
- package/src/assets/json/truck-trailer-progress-bar.json +1453 -0
- package/src/assets/json/usa-states.json +54 -0
- package/src/assets/kml/timezones.kml +1608 -0
- package/src/assets/kml/toll-roads/California.kml +55 -0
- package/src/assets/kml/toll-roads/Texas.kml +5079 -0
- package/src/assets/kml/toll-roads/florida.kml +2092 -0
- package/src/assets/lottie/ta-lottie-spinner/18px/black.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/18px/blueDark.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/18px/blueLight.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/18px/gray.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/18px/white.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/32px/black.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/32px/blueLight.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/32px/dark.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/32px/gray.json +1 -0
- package/src/assets/lottie/ta-lottie-spinner/32px/white.json +1 -0
- package/src/assets/scss/font-family.scss +2 -0
- package/src/assets/scss/font-weight.scss +36 -0
- package/src/assets/scss/popover.scss +112 -0
- package/src/assets/svg/common/calendar/arrow-left.svg +3 -0
- package/src/assets/svg/common/ic_confirm.svg +3 -0
- package/src/assets/svg/common/ic_search.svg +3 -0
- package/src/assets/svg/common/payroll-down-arrow.svg +3 -0
- package/src/assets/svg/common/payroll-up-arrow.svg +3 -0
- package/src/assets/svg/common/sortArrow_filter.svg +3 -0
- package/src/assets/svg/input/ic_confirm.svg +3 -0
- package/src/assets/svg/input/ic_danger.svg +3 -0
- package/src/assets/svg/input/ic_eye-hidden.svg +6 -0
- package/src/assets/svg/input/ic_eye-visible.svg +6 -0
- package/src/assets/svg/input/ic_password.svg +6 -0
- package/src/assets/svg/input/ic_remove_input.svg +7 -0
- package/src/assets/svg/input/ic_x.svg +4 -0
- package/src/assets/svg/map/18px_tooltip.svg +3 -0
- package/src/assets/svg/map/accident_calender.svg +3 -0
- package/src/assets/svg/map/accident_hazmat.svg +3 -0
- package/src/assets/svg/map/accident_injury.svg +3 -0
- package/src/assets/svg/map/accident_towing.svg +3 -0
- package/src/assets/svg/map/accident_vechile.svg +3 -0
- package/src/assets/svg/map/address.svg +3 -0
- package/src/assets/svg/map/arrow_corner_top.svg +3 -0
- package/src/assets/svg/map/calender_last_used.svg +3 -0
- package/src/assets/svg/map/check.svg +3 -0
- package/src/assets/svg/map/cluster_marker_4.svg +32 -0
- package/src/assets/svg/map/cluster_marker_6.svg +32 -0
- package/src/assets/svg/map/details_options.svg +10 -0
- package/src/assets/svg/map/details_options_2.svg +3 -0
- package/src/assets/svg/map/dislike.svg +3 -0
- package/src/assets/svg/map/email.svg +3 -0
- package/src/assets/svg/map/extended_stop_ignition.svg +11 -0
- package/src/assets/svg/map/gps-location.svg +4 -0
- package/src/assets/svg/map/gps_extended_status.svg +4 -0
- package/src/assets/svg/map/gps_full.svg +7 -0
- package/src/assets/svg/map/gps_parking_status.svg +4 -0
- package/src/assets/svg/map/gps_short_status.svg +4 -0
- package/src/assets/svg/map/gps_trailer_extended.svg +11 -0
- package/src/assets/svg/map/gps_trailer_moving.svg +16 -0
- package/src/assets/svg/map/gps_trailer_parking.svg +11 -0
- package/src/assets/svg/map/gps_trailer_short_stop.svg +11 -0
- package/src/assets/svg/map/ic_marker_office.svg +18 -0
- package/src/assets/svg/map/ic_pulse_circle.svg +1 -0
- package/src/assets/svg/map/like.svg +3 -0
- package/src/assets/svg/map/marker.svg +27 -0
- package/src/assets/svg/map/marker_2.svg +27 -0
- package/src/assets/svg/map/marker_3.svg +27 -0
- package/src/assets/svg/map/marker_4.svg +27 -0
- package/src/assets/svg/map/marker_5.svg +27 -0
- package/src/assets/svg/map/marker_cluster.svg +32 -0
- package/src/assets/svg/map/marker_cluster_2.svg +32 -0
- package/src/assets/svg/map/marker_dot.svg +18 -0
- package/src/assets/svg/map/marker_dot_2.svg +18 -0
- package/src/assets/svg/map/mask_group.svg +546 -0
- package/src/assets/svg/map/no_gps_status.svg +8 -0
- package/src/assets/svg/map/oss.svg +3 -0
- package/src/assets/svg/map/parking_ignition.svg +11 -0
- package/src/assets/svg/map/parking_trailer_ignition.svg +11 -0
- package/src/assets/svg/map/phone.svg +3 -0
- package/src/assets/svg/map/progress-marker-checked.svg +20 -0
- package/src/assets/svg/map/progress-marker-pickup-checked.svg +20 -0
- package/src/assets/svg/map/progress-marker-pickup.svg +20 -0
- package/src/assets/svg/map/progress_marker-pin-dark.svg +20 -0
- package/src/assets/svg/map/progress_marker.svg +20 -0
- package/src/assets/svg/map/progress_marker_reached.svg +20 -0
- package/src/assets/svg/map/review.svg +3 -0
- package/src/assets/svg/map/routing_marker.svg +19 -0
- package/src/assets/svg/map/short_stop_ignition.svg +11 -0
- package/src/assets/svg/map/short_stop_trailer_ignition.svg +16 -0
- package/src/assets/svg/map/telematic_marker.svg +19 -0
- package/src/assets/svg/map/telematic_marker_1.svg +19 -0
- package/src/assets/svg/map/telematic_marker_2.svg +18 -0
- package/src/assets/svg/map/unitView_marker.svg +20 -0
- package/src/assets/svg/note/Itallic.svg +3 -0
- package/src/assets/svg/note/Note.svg +3 -0
- package/src/assets/svg/note/Underline.svg +3 -0
- package/src/assets/svg/note/arrow.svg +3 -0
- package/src/assets/svg/note/bold.svg +3 -0
- package/src/assets/svg/note/color-picker-inverse.svg +10 -0
- package/src/assets/svg/note/note-empty-dark.svg +3 -0
- package/src/assets/svg/note/note-empty.svg +3 -0
- package/src/assets/svg/note/note-filled.svg +3 -0
- package/src/assets/svg/note/tick.svg +3 -0
- package/src/assets/svg/pickup-delivery/Miles.svg +3 -0
- package/src/assets/svg/pickup-delivery/Options.svg +3 -0
- package/src/assets/svg/pickup-delivery/arrowLeft.svg +10 -0
- package/src/assets/svg/pickup-delivery/arrowLeftHover.svg +10 -0
- package/src/assets/svg/pickup-delivery/arrowRight.svg +3 -0
- package/src/assets/svg/pickup-delivery/detailsOptions.svg +3 -0
- package/src/assets/svg/pickup-delivery/leftArrow.svg +3 -0
- package/src/assets/svg/pickup-delivery/mailIcon.svg +3 -0
- package/src/assets/svg/pickup-delivery/mapOptionsDark.svg +11 -0
- package/src/assets/svg/pickup-delivery/optionsVertical.svg +10 -0
- package/src/assets/svg/pickup-delivery/phoneIcon.svg +3 -0
- package/src/assets/svg/pickup-delivery/userIcon.svg +3 -0
- package/src/assets/svg/pickup-delivery/vector.svg +3 -0
- package/src/assets/svg/popup/Delete.svg +4 -0
- package/src/assets/svg/popup/Information.svg +3 -0
- package/src/assets/svg/popup/Minus.svg +3 -0
- package/src/assets/svg/popup/Print.svg +3 -0
- package/src/assets/svg/popup/Share.svg +3 -0
- package/src/assets/svg/popup/close-business-icon.svg +6 -0
- package/src/assets/svg/popup/delete-hover-new.svg +9 -0
- package/src/assets/svg/popup/edit-hover.svg +10 -0
- package/src/assets/svg/popup/ic_broker-user.svg +1 -0
- package/src/assets/svg/popup/ic_info.svg +6 -0
- package/src/assets/svg/popup/ic_print.svg +1 -0
- package/src/assets/svg/popup/resize-arrow.svg +1 -0
- package/src/assets/svg/popup/review-pen.svg +6 -0
- package/src/assets/svg/popup/share-icon.svg +6 -0
- package/src/assets/svg/popup/trash.svg +4 -0
- package/src/assets/svg/search-multiple-states/add.svg +4 -0
- package/src/assets/svg/search-multiple-states/clear-search.svg +4 -0
- package/src/assets/svg/search-multiple-states/focused-search-button.svg +3 -0
- package/src/assets/svg/search-multiple-states/search-button.svg +3 -0
- package/src/assets/svg/truckassist-table/x.svg +1 -0
- package/src/assets/theme/main.scss +193 -0
- package/src/assets/theme/variables.scss +361 -0
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import { CommonModule } from "@angular/common";
|
|
2
|
+
import { CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, Component, EventEmitter, Input, Output, Self, ViewChild, ViewEncapsulation, } from "@angular/core";
|
|
3
|
+
import { FormsModule, ReactiveFormsModule, } from "@angular/forms";
|
|
4
|
+
import { combineLatest, Subject, takeUntil } from "rxjs";
|
|
5
|
+
import { AngularSvgIconModule } from "angular-svg-icon";
|
|
6
|
+
// pipes
|
|
7
|
+
import { InputErrorPipe } from "@shared/components/ca-input/pipes/input-error.pipe";
|
|
8
|
+
import { InputContainerClassPipe } from "@shared/components/ca-input/pipes/input-container-class.pipe";
|
|
9
|
+
import { InputClassPipe } from "@shared/components/ca-input/pipes/input-class.pipe";
|
|
10
|
+
import { LabelClassPipe } from "@shared/components/ca-input/pipes/label-class.pipe";
|
|
11
|
+
import { ShowClearPipe } from "@shared/components/ca-input/pipes/show-clear.pipe";
|
|
12
|
+
import { ShowInvalidDangerMarkPipe } from "@shared/components/ca-input/pipes/show-invalid-danger-mark.pipe";
|
|
13
|
+
import { ShowValidCheckPipe } from "@shared/components/ca-input/pipes/show-valid-check.pipe";
|
|
14
|
+
import { TaSvgPipe } from "@shared/pipes/ta-svg.pipe";
|
|
15
|
+
import { InputTypePipe } from "@shared/components/ca-input/pipes/input-type.pipe";
|
|
16
|
+
// components
|
|
17
|
+
import { CaInputClearComponent } from "@shared/components/ca-input/components/ca-input-clear/ca-input-clear.component";
|
|
18
|
+
import { CaAppTooltipV2Component } from "@shared/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component";
|
|
19
|
+
import { CaInputPasswordComponent } from "@shared/components/ca-input/components/ca-input-password/ca-input-password.component";
|
|
20
|
+
import { CaInputPlaceholderIconComponent } from "@shared/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component";
|
|
21
|
+
// services
|
|
22
|
+
import { InputStateService } from "@shared/components/ca-input/services/ca-input-state.service";
|
|
23
|
+
// helpers
|
|
24
|
+
import { InputSvgRoutes } from "@shared/components/ca-input/utils/input-svg-routes";
|
|
25
|
+
// modules
|
|
26
|
+
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
|
|
27
|
+
import * as i0 from "@angular/core";
|
|
28
|
+
import * as i1 from "@angular/forms";
|
|
29
|
+
import * as i2 from "@shared/components/ca-input/services/ca-input-state.service";
|
|
30
|
+
import * as i3 from "@angular/common";
|
|
31
|
+
import * as i4 from "angular-svg-icon";
|
|
32
|
+
export class CaInputComponent {
|
|
33
|
+
constructor(superControl, cdRef, inputStateService) {
|
|
34
|
+
this.superControl = superControl;
|
|
35
|
+
this.cdRef = cdRef;
|
|
36
|
+
this.inputStateService = inputStateService;
|
|
37
|
+
this.blurInput = new EventEmitter();
|
|
38
|
+
this.isFocusInputEvent = new EventEmitter();
|
|
39
|
+
this.changeInput = new EventEmitter();
|
|
40
|
+
this.isFocusInput = false;
|
|
41
|
+
this.isTouchedInput = false;
|
|
42
|
+
// Input Commands
|
|
43
|
+
this.isVisibleCommands = false;
|
|
44
|
+
// Password
|
|
45
|
+
this.isTogglePassword = false;
|
|
46
|
+
this.isCapsLockOn = false;
|
|
47
|
+
// Destroy
|
|
48
|
+
this.destroy$ = new Subject();
|
|
49
|
+
this.superControl.valueAccessor = this;
|
|
50
|
+
}
|
|
51
|
+
get getSuperControl() {
|
|
52
|
+
return this.superControl.control;
|
|
53
|
+
}
|
|
54
|
+
ngOnInit() {
|
|
55
|
+
this.initChangesListener();
|
|
56
|
+
this.initStateService();
|
|
57
|
+
}
|
|
58
|
+
ngOnChanges(changes) {
|
|
59
|
+
this.setStateInputs(changes);
|
|
60
|
+
}
|
|
61
|
+
initStateService() {
|
|
62
|
+
this.inputStateService.setSuperControl(this.superControl);
|
|
63
|
+
this.inputStateService.setInputElementRef(this.input);
|
|
64
|
+
combineLatest([
|
|
65
|
+
this.inputStateService.isFocusInput$,
|
|
66
|
+
this.inputStateService.isTouchedInput$,
|
|
67
|
+
])
|
|
68
|
+
.pipe(takeUntil(this.destroy$))
|
|
69
|
+
.subscribe(([focus, touched]) => {
|
|
70
|
+
this.isFocusInput = focus;
|
|
71
|
+
this.isTouchedInput = touched;
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
initChangesListener() {
|
|
75
|
+
const combinedChanges = combineLatest([
|
|
76
|
+
this.getSuperControl?.valueChanges,
|
|
77
|
+
this.getSuperControl?.statusChanges,
|
|
78
|
+
]);
|
|
79
|
+
combinedChanges.pipe(takeUntil(this.destroy$)).subscribe(() => {
|
|
80
|
+
this.cdRef.detectChanges();
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
setStateInputs(changes) {
|
|
84
|
+
this.inputStateService.setInputConfig(changes["inputConfig"].currentValue);
|
|
85
|
+
}
|
|
86
|
+
writeValue(obj) {
|
|
87
|
+
this.changeInput.emit(obj);
|
|
88
|
+
this.input.nativeElement.value = obj;
|
|
89
|
+
}
|
|
90
|
+
registerOnChange(fn) {
|
|
91
|
+
this.onChange = fn;
|
|
92
|
+
}
|
|
93
|
+
onChange(_) { }
|
|
94
|
+
registerOnTouched() { }
|
|
95
|
+
onBlur(event) {
|
|
96
|
+
this.inputStateService.setisFocusInput(false);
|
|
97
|
+
this.blurInput.emit(true);
|
|
98
|
+
this.inputStateService.setisTouchedInput(true);
|
|
99
|
+
}
|
|
100
|
+
onFocus(event) {
|
|
101
|
+
this.isFocusInputEvent.emit(true);
|
|
102
|
+
this.inputStateService.setisFocusInput(true);
|
|
103
|
+
}
|
|
104
|
+
onKeydown(event) {
|
|
105
|
+
this.isCapsLockOn = event?.getModifierState?.("CapsLock");
|
|
106
|
+
}
|
|
107
|
+
transformText(event) {
|
|
108
|
+
this.inputStateService.transformText(event);
|
|
109
|
+
}
|
|
110
|
+
clearInput(event) {
|
|
111
|
+
this.inputStateService.clearInput(event);
|
|
112
|
+
}
|
|
113
|
+
onTogglePassword(event) {
|
|
114
|
+
event.preventDefault();
|
|
115
|
+
this.isTogglePassword = !this.isTogglePassword;
|
|
116
|
+
}
|
|
117
|
+
getSvgPath(propertyName) {
|
|
118
|
+
return InputSvgRoutes[propertyName];
|
|
119
|
+
}
|
|
120
|
+
ngOnDestroy() {
|
|
121
|
+
this.destroy$.next();
|
|
122
|
+
this.destroy$.complete();
|
|
123
|
+
}
|
|
124
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CaInputComponent, deps: [{ token: i1.NgControl, self: true }, { token: i0.ChangeDetectorRef }, { token: i2.InputStateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
125
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CaInputComponent, isStandalone: true, selector: "app-ca-input", inputs: { inputConfig: "inputConfig", incorrectValue: "incorrectValue", selectedDropdownLabelColor: "selectedDropdownLabelColor" }, outputs: { blurInput: "blurInput", isFocusInputEvent: "isFocusInput", changeInput: "change" }, providers: [InputStateService], viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: 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\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 [min]=\"inputConfig.min ? inputConfig.min : 0\"\n [max]=\"inputConfig.max\"\n [step]=\"inputConfig.step ? inputConfig.step : null\"\n [readOnly]=\"inputConfig.readOnly\"\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 \"\n (blur)=\"onBlur($event)\"\n (focus)=\"onFocus($event)\"\n (keydown)=\"onKeydown($event)\"\n (input)=\"onChange($event.target); transformText($event)\"\n [(ngModel)]=\"input.value\"\n />\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 </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 (clearInputClick)=\"clearInput($event)\"\n >\n </app-ca-input-clear>\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]=\"getSvgPath('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]=\"getSvgPath('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 Placeholder Icon -->\n <ng-container *ngIf=\"inputConfig.placeholderIcon\">\n <app-ca-input-placeholder-icon\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n >\n </app-ca-input-placeholder-icon>\n </ng-container>\n\n <!-- Input Error Message -->\n <ng-container\n *ngIf=\"\n !inputConfig.hideErrorMessage &&\n !(!getSuperControl?.value && isFocusInput) &&\n (isTouchedInput || getSuperControl?.touched || getSuperControl?.value) &&\n getSuperControl?.invalid &&\n !inputConfig.isInvalidSearchInDropdown &&\n !inputConfig.isDisabled\n \"\n >\n <span class=\"input-error {{ inputConfig.customClass }}\">\n {{ getSuperControl?.errors | inputError: inputConfig.name }}\n </span>\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", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"/node_modules/bootstrap/dist/css/bootstrap.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}.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;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}@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}*{margin:0;font-family:Roboto,Helvetica Neue,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:#2f2f2f}.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:#2f2f2f}.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:#424242}.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{background-color:#2f2f2f}.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{background-color:#2f2f2f}.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 .input-clear:hover~.input-control{background-color:#2f2f2f}.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 .input-clear:before:hover,.input-custom-group.custom-filled-hover:hover .input-clear:after:hover~.input-control{background-color:#2f2f2f}.input-custom-group.input-remove-trash-can:hover .input-clear{display:inline-block}.input-custom-group.input-remove-trash-can:hover .input-clear:hover~.input-control{background-color:#2f2f2f}.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{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{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{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-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 .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 .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 .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{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{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{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{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{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{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{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{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{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{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{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{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{background-color:#f7f7f7}.input-custom-group .input-label{position:absolute;top:4px;left:6px;font-size:14px;line-height:18px;-webkit-user-select:none;user-select:none;pointer-events:none;transition:.3s ease-in-out}.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;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:#2f2f2f;color:#2f2f2f;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.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:#2f2f2f}.input-custom-group .input-control:focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .input-control:focus::placeholder{color:#fff6}.input-custom-group .input-control:focus::selection{background-color:#fff3;color:#fff}.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::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::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::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::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::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;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled{background-color:#f7f7f7;color:#2f2f2f;-webkit-user-select:none;user-select:none;pointer-events:none}.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::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::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::placeholder{color:#fff6}.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::placeholder{opacity:0;color:transparent}.input-custom-group .input-control.multiple-input-placeholder{pointer-events:none;-webkit-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;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.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: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;column-gap:20px;-webkit-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;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.load-shipper-contact{grid-template-columns:283px 38px}.input-custom-group .input-control.load-shipper{grid-template-columns:394px 180px;column-gap:2px;padding-right:25px;-webkit-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: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::placeholder{color:#fff}.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{background-color:#2f2f2f!important}.input-custom-group input[type=number]::-webkit-inner-spin-button,.input-custom-group input[type=number]::-webkit-outer-spin-button{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{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 .input-required-check{position:absolute;right:6px;width:14px;height:10px;display:inline-block;-webkit-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:#2f2f2f}.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:#2f2f2f!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:#2f2f2f!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:#2f2f2f!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 .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:1px;z-index:10;cursor:pointer;transition:.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:#aaa}.input-custom-group .input-clear-dispatch:hover{background-color:#1d1d1d}.input-custom-group .input-clear-dispatch:hover svg-icon svg path{fill:#2f2f2f}.input-custom-group .input-icon{position:absolute;left:6px;top:47%;transform:translateY(-50%);z-index:10;-webkit-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;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::selection{background-color:#ef535033;color:#ef5350}.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%;opacity:0;padding:0 6px 0 27px;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.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:#dadada!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 .placeholder-text{position:absolute;-webkit-user-select:none;user-select:none;pointer-events:none;top:47%;transform:translateY(-50%)}.input-custom-group .placeholder-text svg text{fill:#919191}.input-custom-group .placeholder-text.inactive-filled svg text{fill:#aaa}.input-custom-group .placeholder-text.focus svg text{fill:#919191}.input-custom-group .placeholder-text.valid-focus-in svg text{fill:#c5d8f3}.input-custom-group .placeholder-text.valid-focus-out svg text{fill:#919191}.input-custom-group .placeholder-text.invalid-focus-in svg text{fill:#f5c7c7}.input-custom-group .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;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 .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;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;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{fill:#919191!important}.input-custom-group .dropdown-selected-image.semisleeper svg #Ellipse_9856,.input-custom-group .dropdown-selected-image.semisleeper svg #Ellipse_9857,.input-custom-group .dropdown-selected-image.semisleeper svg #Ellipse_9858,.input-custom-group .dropdown-selected-image.semisleeper svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.boxtruck svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.cargovan svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.towtruck svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.spotter svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.bus svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.reefer svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.dryvan svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.sidekit svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.conestoga svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.dumper svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.container{padding:0!important}.input-custom-group .dropdown-selected-image.container svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.tanker svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.pneumatictanker svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.carhauler svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.carhaulerstinger svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.flatbed svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.low-boy-rgn svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.chassis svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.stepdeck 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}.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}\n"], dependencies: [{ kind: "ngmodule", type:
|
|
126
|
+
// Module
|
|
127
|
+
CommonModule }, { kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { 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: i4.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "ngmodule", type: NgbModule }, { kind: "pipe", type:
|
|
128
|
+
// Pipe
|
|
129
|
+
InputErrorPipe, name: "inputError" }, { kind: "pipe", type: InputContainerClassPipe, name: "inputContainerClass" }, { kind: "pipe", type: InputClassPipe, name: "inputClass" }, { kind: "pipe", type: LabelClassPipe, name: "labelClass" }, { kind: "pipe", type: ShowClearPipe, name: "showClear" }, { kind: "pipe", type: ShowInvalidDangerMarkPipe, name: "showInvalidDangerMark" }, { kind: "pipe", type: ShowValidCheckPipe, name: "showValidCheck" }, { kind: "pipe", type: InputTypePipe, name: "inputType" }, { kind: "component", type:
|
|
130
|
+
// Components
|
|
131
|
+
CaInputClearComponent, selector: "app-ca-input-clear", inputs: ["inputConfig", "getSuperControl", "isFocusInput", "incorrectValue", "selectedDropdownLabelColor"], outputs: ["clearInputClick"] }, { kind: "component", type: CaInputPasswordComponent, selector: "app-ca-input-password", inputs: ["inputConfig", "getSuperControl", "isFocusInput", "isTouchedInput", "isCapsLockOn", "isTogglePassword"], outputs: ["onTogglePasswordClick"] }, { kind: "component", type: CaInputPlaceholderIconComponent, selector: "app-ca-input-placeholder-icon", inputs: ["inputConfig", "getSuperControl", "isFocusInput", "isTouchedInput", "selectedDropdownLabelColor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
132
|
+
}
|
|
133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CaInputComponent, decorators: [{
|
|
134
|
+
type: Component,
|
|
135
|
+
args: [{ selector: "app-ca-input", encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
136
|
+
// Module
|
|
137
|
+
CommonModule,
|
|
138
|
+
FormsModule,
|
|
139
|
+
ReactiveFormsModule,
|
|
140
|
+
AngularSvgIconModule,
|
|
141
|
+
NgbModule,
|
|
142
|
+
// Pipe
|
|
143
|
+
InputErrorPipe,
|
|
144
|
+
InputContainerClassPipe,
|
|
145
|
+
InputClassPipe,
|
|
146
|
+
LabelClassPipe,
|
|
147
|
+
ShowClearPipe,
|
|
148
|
+
ShowInvalidDangerMarkPipe,
|
|
149
|
+
ShowValidCheckPipe,
|
|
150
|
+
InputTypePipe,
|
|
151
|
+
TaSvgPipe,
|
|
152
|
+
// Components
|
|
153
|
+
CaInputClearComponent,
|
|
154
|
+
CaAppTooltipV2Component,
|
|
155
|
+
CaInputPasswordComponent,
|
|
156
|
+
CaInputPlaceholderIconComponent,
|
|
157
|
+
], schemas: [CUSTOM_ELEMENTS_SCHEMA], providers: [InputStateService], 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\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 [min]=\"inputConfig.min ? inputConfig.min : 0\"\n [max]=\"inputConfig.max\"\n [step]=\"inputConfig.step ? inputConfig.step : null\"\n [readOnly]=\"inputConfig.readOnly\"\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 \"\n (blur)=\"onBlur($event)\"\n (focus)=\"onFocus($event)\"\n (keydown)=\"onKeydown($event)\"\n (input)=\"onChange($event.target); transformText($event)\"\n [(ngModel)]=\"input.value\"\n />\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 </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 (clearInputClick)=\"clearInput($event)\"\n >\n </app-ca-input-clear>\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]=\"getSvgPath('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]=\"getSvgPath('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 Placeholder Icon -->\n <ng-container *ngIf=\"inputConfig.placeholderIcon\">\n <app-ca-input-placeholder-icon\n [inputConfig]=\"inputConfig\"\n [getSuperControl]=\"getSuperControl\"\n [isFocusInput]=\"isFocusInput\"\n [isTouchedInput]=\"isTouchedInput\"\n [selectedDropdownLabelColor]=\"selectedDropdownLabelColor\"\n >\n </app-ca-input-placeholder-icon>\n </ng-container>\n\n <!-- Input Error Message -->\n <ng-container\n *ngIf=\"\n !inputConfig.hideErrorMessage &&\n !(!getSuperControl?.value && isFocusInput) &&\n (isTouchedInput || getSuperControl?.touched || getSuperControl?.value) &&\n getSuperControl?.invalid &&\n !inputConfig.isInvalidSearchInDropdown &&\n !inputConfig.isDisabled\n \"\n >\n <span class=\"input-error {{ inputConfig.customClass }}\">\n {{ getSuperControl?.errors | inputError: inputConfig.name }}\n </span>\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", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"/node_modules/bootstrap/dist/css/bootstrap.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}.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;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}@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}*{margin:0;font-family:Roboto,Helvetica Neue,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:#2f2f2f}.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:#2f2f2f}.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:#424242}.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{background-color:#2f2f2f}.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{background-color:#2f2f2f}.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 .input-clear:hover~.input-control{background-color:#2f2f2f}.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 .input-clear:before:hover,.input-custom-group.custom-filled-hover:hover .input-clear:after:hover~.input-control{background-color:#2f2f2f}.input-custom-group.input-remove-trash-can:hover .input-clear{display:inline-block}.input-custom-group.input-remove-trash-can:hover .input-clear:hover~.input-control{background-color:#2f2f2f}.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{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{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{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-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 .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 .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 .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{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{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{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{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{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{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{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{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{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{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{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{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{background-color:#f7f7f7}.input-custom-group .input-label{position:absolute;top:4px;left:6px;font-size:14px;line-height:18px;-webkit-user-select:none;user-select:none;pointer-events:none;transition:.3s ease-in-out}.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;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:#2f2f2f;color:#2f2f2f;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.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:#2f2f2f}.input-custom-group .input-control:focus{background-color:#1d1d1d;color:#fff;transition:.2s ease-in-out}.input-custom-group .input-control:focus::placeholder{color:#fff6}.input-custom-group .input-control:focus::selection{background-color:#fff3;color:#fff}.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::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::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::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::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::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;user-select:none;pointer-events:none}.input-custom-group .input-control.inactive-filled{background-color:#f7f7f7;color:#2f2f2f;-webkit-user-select:none;user-select:none;pointer-events:none}.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::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::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::placeholder{color:#fff6}.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::placeholder{opacity:0;color:transparent}.input-custom-group .input-control.multiple-input-placeholder{pointer-events:none;-webkit-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;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.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: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;column-gap:20px;-webkit-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;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.load-shipper-contact{grid-template-columns:283px 38px}.input-custom-group .input-control.load-shipper{grid-template-columns:394px 180px;column-gap:2px;padding-right:25px;-webkit-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: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::placeholder{color:#fff}.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{background-color:#2f2f2f!important}.input-custom-group input[type=number]::-webkit-inner-spin-button,.input-custom-group input[type=number]::-webkit-outer-spin-button{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{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 .input-required-check{position:absolute;right:6px;width:14px;height:10px;display:inline-block;-webkit-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:#2f2f2f}.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:#2f2f2f!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:#2f2f2f!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:#2f2f2f!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 .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:1px;z-index:10;cursor:pointer;transition:.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:#aaa}.input-custom-group .input-clear-dispatch:hover{background-color:#1d1d1d}.input-custom-group .input-clear-dispatch:hover svg-icon svg path{fill:#2f2f2f}.input-custom-group .input-icon{position:absolute;left:6px;top:47%;transform:translateY(-50%);z-index:10;-webkit-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;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::selection{background-color:#ef535033;color:#ef5350}.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%;opacity:0;padding:0 6px 0 27px;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.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:#dadada!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 .placeholder-text{position:absolute;-webkit-user-select:none;user-select:none;pointer-events:none;top:47%;transform:translateY(-50%)}.input-custom-group .placeholder-text svg text{fill:#919191}.input-custom-group .placeholder-text.inactive-filled svg text{fill:#aaa}.input-custom-group .placeholder-text.focus svg text{fill:#919191}.input-custom-group .placeholder-text.valid-focus-in svg text{fill:#c5d8f3}.input-custom-group .placeholder-text.valid-focus-out svg text{fill:#919191}.input-custom-group .placeholder-text.invalid-focus-in svg text{fill:#f5c7c7}.input-custom-group .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;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 .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;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;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{fill:#919191!important}.input-custom-group .dropdown-selected-image.semisleeper svg #Ellipse_9856,.input-custom-group .dropdown-selected-image.semisleeper svg #Ellipse_9857,.input-custom-group .dropdown-selected-image.semisleeper svg #Ellipse_9858,.input-custom-group .dropdown-selected-image.semisleeper svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.boxtruck svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.cargovan svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.towtruck svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.spotter svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.bus svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.reefer svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.dryvan svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.sidekit svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.conestoga svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.dumper svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.container{padding:0!important}.input-custom-group .dropdown-selected-image.container svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.tanker svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.pneumatictanker svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.carhauler svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.carhaulerstinger svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.flatbed svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.low-boy-rgn svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.chassis svg path{fill:#919191!important}.input-custom-group .dropdown-selected-image.stepdeck 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}.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}\n"] }]
|
|
158
|
+
}], ctorParameters: function () { return [{ type: i1.NgControl, decorators: [{
|
|
159
|
+
type: Self
|
|
160
|
+
}] }, { type: i0.ChangeDetectorRef }, { type: i2.InputStateService }]; }, propDecorators: { input: [{
|
|
161
|
+
type: ViewChild,
|
|
162
|
+
args: ["input", { static: true }]
|
|
163
|
+
}], inputConfig: [{
|
|
164
|
+
type: Input
|
|
165
|
+
}], incorrectValue: [{
|
|
166
|
+
type: Input
|
|
167
|
+
}], selectedDropdownLabelColor: [{
|
|
168
|
+
type: Input
|
|
169
|
+
}], blurInput: [{
|
|
170
|
+
type: Output,
|
|
171
|
+
args: ["blurInput"]
|
|
172
|
+
}], isFocusInputEvent: [{
|
|
173
|
+
type: Output,
|
|
174
|
+
args: ["isFocusInput"]
|
|
175
|
+
}], changeInput: [{
|
|
176
|
+
type: Output,
|
|
177
|
+
args: ["change"]
|
|
178
|
+
}] } });
|
|
179
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtaW5wdXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQvY2EtaW5wdXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtaW5wdXQvY2EtaW5wdXQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFDTCxzQkFBc0IsRUFDdEIsdUJBQXVCLEVBRXZCLFNBQVMsRUFFVCxZQUFZLEVBQ1osS0FBSyxFQUlMLE1BQU0sRUFDTixJQUFJLEVBRUosU0FBUyxFQUNULGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBRUwsV0FBVyxFQUVYLG1CQUFtQixHQUNwQixNQUFNLGdCQUFnQixDQUFDO0FBQ3hCLE9BQU8sRUFBRSxhQUFhLEVBQUUsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUN6RCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQU14RCxRQUFRO0FBQ1IsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG9EQUFvRCxDQUFDO0FBQ3BGLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLDhEQUE4RCxDQUFDO0FBQ3ZHLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxvREFBb0QsQ0FBQztBQUNwRixPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sb0RBQW9ELENBQUM7QUFDcEYsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLG1EQUFtRCxDQUFDO0FBQ2xGLE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLGlFQUFpRSxDQUFDO0FBQzVHLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHlEQUF5RCxDQUFDO0FBQzdGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUN0RCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sbURBQW1ELENBQUM7QUFFbEYsYUFBYTtBQUNiLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLGdGQUFnRixDQUFDO0FBQ3ZILE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLGtFQUFrRSxDQUFDO0FBQzNHLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLHNGQUFzRixDQUFDO0FBQ2hJLE9BQU8sRUFBRSwrQkFBK0IsRUFBRSxNQUFNLHNHQUFzRyxDQUFDO0FBRXZKLFdBQVc7QUFDWCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSw2REFBNkQsQ0FBQztBQUVoRyxVQUFVO0FBQ1YsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG9EQUFvRCxDQUFDO0FBRXBGLFVBQVU7QUFDVixPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7Ozs7OztBQXFDdkQsTUFBTSxPQUFPLGdCQUFnQjtJQTZCM0IsWUFDaUIsWUFBdUIsRUFDOUIsS0FBd0IsRUFDeEIsaUJBQW9DO1FBRjdCLGlCQUFZLEdBQVosWUFBWSxDQUFXO1FBQzlCLFVBQUssR0FBTCxLQUFLLENBQW1CO1FBQ3hCLHNCQUFpQixHQUFqQixpQkFBaUIsQ0FBbUI7UUF0QnpCLGNBQVMsR0FDNUIsSUFBSSxZQUFZLEVBQVcsQ0FBQztRQUNOLHNCQUFpQixHQUN2QyxJQUFJLFlBQVksRUFBVyxDQUFDO1FBQ1osZ0JBQVcsR0FBc0IsSUFBSSxZQUFZLEVBQU8sQ0FBQztRQUVwRSxpQkFBWSxHQUFZLEtBQUssQ0FBQztRQUM5QixtQkFBYyxHQUFZLEtBQUssQ0FBQztRQUV2QyxpQkFBaUI7UUFDVixzQkFBaUIsR0FBWSxLQUFLLENBQUM7UUFFMUMsV0FBVztRQUNKLHFCQUFnQixHQUFZLEtBQUssQ0FBQztRQUNsQyxpQkFBWSxHQUFZLEtBQUssQ0FBQztRQUVyQyxVQUFVO1FBQ0YsYUFBUSxHQUFrQixJQUFJLE9BQU8sRUFBUSxDQUFDO1FBT3BELElBQUksQ0FBQyxZQUFZLENBQUMsYUFBYSxHQUFHLElBQUksQ0FBQztJQUN6QyxDQUFDO0lBRUQsSUFBSSxlQUFlO1FBQ2pCLE9BQU8sSUFBSSxDQUFDLFlBQVksQ0FBQyxPQUFPLENBQUM7SUFDbkMsQ0FBQztJQUVELFFBQVE7UUFDTixJQUFJLENBQUMsbUJBQW1CLEVBQUUsQ0FBQztRQUUzQixJQUFJLENBQUMsZ0JBQWdCLEVBQUUsQ0FBQztJQUMxQixDQUFDO0lBRUQsV0FBVyxDQUFDLE9BQXNCO1FBQ2hDLElBQUksQ0FBQyxjQUFjLENBQUMsT0FBTyxDQUFDLENBQUM7SUFDL0IsQ0FBQztJQUVNLGdCQUFnQjtRQUNyQixJQUFJLENBQUMsaUJBQWlCLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQztRQUMxRCxJQUFJLENBQUMsaUJBQWlCLENBQUMsa0JBQWtCLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBRXRELGFBQWEsQ0FBQztZQUNaLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxhQUFhO1lBQ3BDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxlQUFlO1NBQ3ZDLENBQUM7YUFDQyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQzthQUM5QixTQUFTLENBQUMsQ0FBQyxDQUFDLEtBQUssRUFBRSxPQUFPLENBQUMsRUFBRSxFQUFFO1lBQzlCLElBQUksQ0FBQyxZQUFZLEdBQUcsS0FBSyxDQUFDO1lBQzFCLElBQUksQ0FBQyxjQUFjLEdBQUcsT0FBTyxDQUFDO1FBQ2hDLENBQUMsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQUVNLG1CQUFtQjtRQUN4QixNQUFNLGVBQWUsR0FBRyxhQUFhLENBQUM7WUFDcEMsSUFBSSxDQUFDLGVBQWUsRUFBRSxZQUFZO1lBQ2xDLElBQUksQ0FBQyxlQUFlLEVBQUUsYUFBYTtTQUNwQyxDQUFDLENBQUM7UUFFSCxlQUFlLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsR0FBRyxFQUFFO1lBQzVELElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxFQUFFLENBQUM7UUFDN0IsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRU0sY0FBYyxDQUFDLE9BQXNCO1FBQzFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxjQUFjLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxDQUFDLFlBQVksQ0FBQyxDQUFDO0lBQzdFLENBQUM7SUFFTSxVQUFVLENBQUMsR0FBUTtRQUN4QixJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztRQUMzQixJQUFJLENBQUMsS0FBSyxDQUFDLGFBQWEsQ0FBQyxLQUFLLEdBQUcsR0FBRyxDQUFDO0lBQ3ZDLENBQUM7SUFFTSxnQkFBZ0IsQ0FBQyxFQUFPO1FBQzdCLElBQUksQ0FBQyxRQUFRLEdBQUcsRUFBRSxDQUFDO0lBQ3JCLENBQUM7SUFFTSxRQUFRLENBQUMsQ0FBTSxJQUFTLENBQUM7SUFFekIsaUJBQWlCLEtBQVUsQ0FBQztJQUU1QixNQUFNLENBQUMsS0FBa0I7UUFDOUIsSUFBSSxDQUFDLGlCQUFpQixDQUFDLGVBQWUsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUU5QyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUMxQixJQUFJLENBQUMsaUJBQWlCLENBQUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDakQsQ0FBQztJQUVNLE9BQU8sQ0FBQyxLQUFrQjtRQUMvQixJQUFJLENBQUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBRWxDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDL0MsQ0FBQztJQUVNLFNBQVMsQ0FBQyxLQUFvQjtRQUNuQyxJQUFJLENBQUMsWUFBWSxHQUFHLEtBQUssRUFBRSxnQkFBZ0IsRUFBRSxDQUFDLFVBQVUsQ0FBQyxDQUFDO0lBQzVELENBQUM7SUFFTSxhQUFhLENBQUMsS0FBWTtRQUMvQixJQUFJLENBQUMsaUJBQWlCLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzlDLENBQUM7SUFFTSxVQUFVLENBQUMsS0FBWTtRQUM1QixJQUFJLENBQUMsaUJBQWlCLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQzNDLENBQUM7SUFFTSxnQkFBZ0IsQ0FBQyxLQUFZO1FBQ2xDLEtBQUssQ0FBQyxjQUFjLEVBQUUsQ0FBQztRQUN2QixJQUFJLENBQUMsZ0JBQWdCLEdBQUcsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUM7SUFDakQsQ0FBQztJQUVNLFVBQVUsQ0FBQyxZQUF5QztRQUN6RCxPQUFPLGNBQWMsQ0FBQyxZQUFZLENBQVcsQ0FBQztJQUNoRCxDQUFDO0lBRUQsV0FBVztRQUNULElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLENBQUM7UUFDckIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLEVBQUUsQ0FBQztJQUMzQixDQUFDOytHQW5JVSxnQkFBZ0I7bUdBQWhCLGdCQUFnQiw4UkFGaEIsQ0FBQyxpQkFBaUIsQ0FBQyw2SkMxRmhDLHdoS0FvS0E7Z0JEbkdJLFNBQVM7Z0JBQ1QsWUFBWSxnT0FDWixXQUFXLDhtQkFDWCxtQkFBbUIsOEJBQ25CLG9CQUFvQixnT0FDcEIsU0FBUztnQkFFVCxPQUFPO2dCQUNQLGNBQWMsOENBQ2QsdUJBQXVCLHVEQUN2QixjQUFjLDhDQUNkLGNBQWMsOENBQ2QsYUFBYSw2Q0FDYix5QkFBeUIseURBQ3pCLGtCQUFrQixrREFDbEIsYUFBYTtnQkFHYixhQUFhO2dCQUNiLHFCQUFxQix5TUFFckIsd0JBQXdCLHdOQUN4QiwrQkFBK0I7OzRGQUt0QixnQkFBZ0I7a0JBbkM1QixTQUFTOytCQUNFLGNBQWMsaUJBR1QsaUJBQWlCLENBQUMsSUFBSSxtQkFDcEIsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1A7d0JBQ1AsU0FBUzt3QkFDVCxZQUFZO3dCQUNaLFdBQVc7d0JBQ1gsbUJBQW1CO3dCQUNuQixvQkFBb0I7d0JBQ3BCLFNBQVM7d0JBRVQsT0FBTzt3QkFDUCxjQUFjO3dCQUNkLHVCQUF1Qjt3QkFDdkIsY0FBYzt3QkFDZCxjQUFjO3dCQUNkLGFBQWE7d0JBQ2IseUJBQXlCO3dCQUN6QixrQkFBa0I7d0JBQ2xCLGFBQWE7d0JBQ2IsU0FBUzt3QkFFVCxhQUFhO3dCQUNiLHFCQUFxQjt3QkFDckIsdUJBQXVCO3dCQUN2Qix3QkFBd0I7d0JBQ3hCLCtCQUErQjtxQkFDaEMsV0FDUSxDQUFDLHNCQUFzQixDQUFDLGFBQ3RCLENBQUMsaUJBQWlCLENBQUM7OzBCQWdDM0IsSUFBSTs0R0EzQnNDLEtBQUs7c0JBQWpELFNBQVM7dUJBQUMsT0FBTyxFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRTtnQkFFM0IsV0FBVztzQkFBbkIsS0FBSztnQkFFRyxjQUFjO3NCQUF0QixLQUFLO2dCQUNHLDBCQUEwQjtzQkFBbEMsS0FBSztnQkFFZSxTQUFTO3NCQUE3QixNQUFNO3VCQUFDLFdBQVc7Z0JBRUssaUJBQWlCO3NCQUF4QyxNQUFNO3VCQUFDLGNBQWM7Z0JBRUosV0FBVztzQkFBNUIsTUFBTTt1QkFBQyxRQUFRIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSBcIkBhbmd1bGFyL2NvbW1vblwiO1xuaW1wb3J0IHtcbiAgQ1VTVE9NX0VMRU1FTlRTX1NDSEVNQSxcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENoYW5nZURldGVjdG9yUmVmLFxuICBDb21wb25lbnQsXG4gIEVsZW1lbnRSZWYsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE9uQ2hhbmdlcyxcbiAgT25EZXN0cm95LFxuICBPbkluaXQsXG4gIE91dHB1dCxcbiAgU2VsZixcbiAgU2ltcGxlQ2hhbmdlcyxcbiAgVmlld0NoaWxkLFxuICBWaWV3RW5jYXBzdWxhdGlvbixcbn0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcbmltcG9ydCB7XG4gIENvbnRyb2xWYWx1ZUFjY2Vzc29yLFxuICBGb3Jtc01vZHVsZSxcbiAgTmdDb250cm9sLFxuICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxufSBmcm9tIFwiQGFuZ3VsYXIvZm9ybXNcIjtcbmltcG9ydCB7IGNvbWJpbmVMYXRlc3QsIFN1YmplY3QsIHRha2VVbnRpbCB9IGZyb20gXCJyeGpzXCI7XG5pbXBvcnQgeyBBbmd1bGFyU3ZnSWNvbk1vZHVsZSB9IGZyb20gXCJhbmd1bGFyLXN2Zy1pY29uXCI7XG5cbi8vIG1vZGVsc1xuaW1wb3J0IHsgSUNhSW5wdXQgfSBmcm9tIFwiQHNoYXJlZC9jb21wb25lbnRzL2NhLWlucHV0L2NvbmZpZy9jYS1pbnB1dC5jb25maWdcIjtcbmltcG9ydCB7IExhYmVsQ29sb3IgfSBmcm9tIFwiQHNoYXJlZC9jb21wb25lbnRzL2NhLWlucHV0L21vZGVscy9sYWJlbC1jb2xvci5tb2RlbFwiO1xuXG4vLyBwaXBlc1xuaW1wb3J0IHsgSW5wdXRFcnJvclBpcGUgfSBmcm9tIFwiQHNoYXJlZC9jb21wb25lbnRzL2NhLWlucHV0L3BpcGVzL2lucHV0LWVycm9yLnBpcGVcIjtcbmltcG9ydCB7IElucHV0Q29udGFpbmVyQ2xhc3NQaXBlIH0gZnJvbSBcIkBzaGFyZWQvY29tcG9uZW50cy9jYS1pbnB1dC9waXBlcy9pbnB1dC1jb250YWluZXItY2xhc3MucGlwZVwiO1xuaW1wb3J0IHsgSW5wdXRDbGFzc1BpcGUgfSBmcm9tIFwiQHNoYXJlZC9jb21wb25lbnRzL2NhLWlucHV0L3BpcGVzL2lucHV0LWNsYXNzLnBpcGVcIjtcbmltcG9ydCB7IExhYmVsQ2xhc3NQaXBlIH0gZnJvbSBcIkBzaGFyZWQvY29tcG9uZW50cy9jYS1pbnB1dC9waXBlcy9sYWJlbC1jbGFzcy5waXBlXCI7XG5pbXBvcnQgeyBTaG93Q2xlYXJQaXBlIH0gZnJvbSBcIkBzaGFyZWQvY29tcG9uZW50cy9jYS1pbnB1dC9waXBlcy9zaG93LWNsZWFyLnBpcGVcIjtcbmltcG9ydCB7IFNob3dJbnZhbGlkRGFuZ2VyTWFya1BpcGUgfSBmcm9tIFwiQHNoYXJlZC9jb21wb25lbnRzL2NhLWlucHV0L3BpcGVzL3Nob3ctaW52YWxpZC1kYW5nZXItbWFyay5waXBlXCI7XG5pbXBvcnQgeyBTaG93VmFsaWRDaGVja1BpcGUgfSBmcm9tIFwiQHNoYXJlZC9jb21wb25lbnRzL2NhLWlucHV0L3BpcGVzL3Nob3ctdmFsaWQtY2hlY2sucGlwZVwiO1xuaW1wb3J0IHsgVGFTdmdQaXBlIH0gZnJvbSBcIkBzaGFyZWQvcGlwZXMvdGEtc3ZnLnBpcGVcIjtcbmltcG9ydCB7IElucHV0VHlwZVBpcGUgfSBmcm9tIFwiQHNoYXJlZC9jb21wb25lbnRzL2NhLWlucHV0L3BpcGVzL2lucHV0LXR5cGUucGlwZVwiO1xuXG4vLyBjb21wb25lbnRzXG5pbXBvcnQgeyBDYUlucHV0Q2xlYXJDb21wb25lbnQgfSBmcm9tIFwiQHNoYXJlZC9jb21wb25lbnRzL2NhLWlucHV0L2NvbXBvbmVudHMvY2EtaW5wdXQtY2xlYXIvY2EtaW5wdXQtY2xlYXIuY29tcG9uZW50XCI7XG5pbXBvcnQgeyBDYUFwcFRvb2x0aXBWMkNvbXBvbmVudCB9IGZyb20gXCJAc2hhcmVkL2NvbXBvbmVudHMvY2EtYXBwLXRvb2x0aXAtdjIvY2EtYXBwLXRvb2x0aXAtdjIuY29tcG9uZW50XCI7XG5pbXBvcnQgeyBDYUlucHV0UGFzc3dvcmRDb21wb25lbnQgfSBmcm9tIFwiQHNoYXJlZC9jb21wb25lbnRzL2NhLWlucHV0L2NvbXBvbmVudHMvY2EtaW5wdXQtcGFzc3dvcmQvY2EtaW5wdXQtcGFzc3dvcmQuY29tcG9uZW50XCI7XG5pbXBvcnQgeyBDYUlucHV0UGxhY2Vob2xkZXJJY29uQ29tcG9uZW50IH0gZnJvbSBcIkBzaGFyZWQvY29tcG9uZW50cy9jYS1pbnB1dC9jb21wb25lbnRzL2NhLWlucHV0LXBsYWNlaG9sZGVyLWljb24vY2EtaW5wdXQtcGxhY2Vob2xkZXItaWNvbi5jb21wb25lbnRcIjtcblxuLy8gc2VydmljZXNcbmltcG9ydCB7IElucHV0U3RhdGVTZXJ2aWNlIH0gZnJvbSBcIkBzaGFyZWQvY29tcG9uZW50cy9jYS1pbnB1dC9zZXJ2aWNlcy9jYS1pbnB1dC1zdGF0ZS5zZXJ2aWNlXCI7XG5cbi8vIGhlbHBlcnNcbmltcG9ydCB7IElucHV0U3ZnUm91dGVzIH0gZnJvbSBcIkBzaGFyZWQvY29tcG9uZW50cy9jYS1pbnB1dC91dGlscy9pbnB1dC1zdmctcm91dGVzXCI7XG5cbi8vIG1vZHVsZXNcbmltcG9ydCB7IE5nYk1vZHVsZSB9IGZyb20gXCJAbmctYm9vdHN0cmFwL25nLWJvb3RzdHJhcFwiO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6IFwiYXBwLWNhLWlucHV0XCIsXG4gIHRlbXBsYXRlVXJsOiBcIi4vY2EtaW5wdXQuY29tcG9uZW50Lmh0bWxcIixcbiAgc3R5bGVVcmxzOiBbXCIuL2NhLWlucHV0LmNvbXBvbmVudC5zY3NzXCJdLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIC8vIE1vZHVsZVxuICAgIENvbW1vbk1vZHVsZSxcbiAgICBGb3Jtc01vZHVsZSxcbiAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgIEFuZ3VsYXJTdmdJY29uTW9kdWxlLFxuICAgIE5nYk1vZHVsZSxcblxuICAgIC8vIFBpcGVcbiAgICBJbnB1dEVycm9yUGlwZSxcbiAgICBJbnB1dENvbnRhaW5lckNsYXNzUGlwZSxcbiAgICBJbnB1dENsYXNzUGlwZSxcbiAgICBMYWJlbENsYXNzUGlwZSxcbiAgICBTaG93Q2xlYXJQaXBlLFxuICAgIFNob3dJbnZhbGlkRGFuZ2VyTWFya1BpcGUsXG4gICAgU2hvd1ZhbGlkQ2hlY2tQaXBlLFxuICAgIElucHV0VHlwZVBpcGUsXG4gICAgVGFTdmdQaXBlLFxuXG4gICAgLy8gQ29tcG9uZW50c1xuICAgIENhSW5wdXRDbGVhckNvbXBvbmVudCxcbiAgICBDYUFwcFRvb2x0aXBWMkNvbXBvbmVudCxcbiAgICBDYUlucHV0UGFzc3dvcmRDb21wb25lbnQsXG4gICAgQ2FJbnB1dFBsYWNlaG9sZGVySWNvbkNvbXBvbmVudCxcbiAgXSxcbiAgc2NoZW1hczogW0NVU1RPTV9FTEVNRU5UU19TQ0hFTUFdLFxuICBwcm92aWRlcnM6IFtJbnB1dFN0YXRlU2VydmljZV0sXG59KVxuZXhwb3J0IGNsYXNzIENhSW5wdXRDb21wb25lbnRcbiAgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSwgT25DaGFuZ2VzLCBDb250cm9sVmFsdWVBY2Nlc3Nvclxue1xuICBAVmlld0NoaWxkKFwiaW5wdXRcIiwgeyBzdGF0aWM6IHRydWUgfSkgcHVibGljIGlucHV0ITogRWxlbWVudFJlZjtcblxuICBASW5wdXQoKSBpbnB1dENvbmZpZyE6IElDYUlucHV0O1xuXG4gIEBJbnB1dCgpIGluY29ycmVjdFZhbHVlITogYm9vbGVhbjtcbiAgQElucHV0KCkgc2VsZWN0ZWREcm9wZG93bkxhYmVsQ29sb3IhOiBMYWJlbENvbG9yO1xuXG4gIEBPdXRwdXQoXCJibHVySW5wdXRcIikgYmx1cklucHV0OiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPVxuICAgIG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcbiAgQE91dHB1dChcImlzRm9jdXNJbnB1dFwiKSBpc0ZvY3VzSW5wdXRFdmVudDogRXZlbnRFbWl0dGVyPGJvb2xlYW4+ID1cbiAgICBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG4gIEBPdXRwdXQoXCJjaGFuZ2VcIikgY2hhbmdlSW5wdXQ6IEV2ZW50RW1pdHRlcjxhbnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XG5cbiAgcHVibGljIGlzRm9jdXNJbnB1dDogYm9vbGVhbiA9IGZhbHNlO1xuICBwdWJsaWMgaXNUb3VjaGVkSW5wdXQ6IGJvb2xlYW4gPSBmYWxzZTtcblxuICAvLyBJbnB1dCBDb21tYW5kc1xuICBwdWJsaWMgaXNWaXNpYmxlQ29tbWFuZHM6IGJvb2xlYW4gPSBmYWxzZTtcblxuICAvLyBQYXNzd29yZFxuICBwdWJsaWMgaXNUb2dnbGVQYXNzd29yZDogYm9vbGVhbiA9IGZhbHNlO1xuICBwdWJsaWMgaXNDYXBzTG9ja09uOiBib29sZWFuID0gZmFsc2U7XG5cbiAgLy8gRGVzdHJveVxuICBwcml2YXRlIGRlc3Ryb3kkOiBTdWJqZWN0PHZvaWQ+ID0gbmV3IFN1YmplY3Q8dm9pZD4oKTtcblxuICBjb25zdHJ1Y3RvcihcbiAgICBAU2VsZigpIHB1YmxpYyBzdXBlckNvbnRyb2w6IE5nQ29udHJvbCxcbiAgICBwcml2YXRlIGNkUmVmOiBDaGFuZ2VEZXRlY3RvclJlZixcbiAgICBwcml2YXRlIGlucHV0U3RhdGVTZXJ2aWNlOiBJbnB1dFN0YXRlU2VydmljZVxuICApIHtcbiAgICB0aGlzLnN1cGVyQ29udHJvbC52YWx1ZUFjY2Vzc29yID0gdGhpcztcbiAgfVxuXG4gIGdldCBnZXRTdXBlckNvbnRyb2woKSB7XG4gICAgcmV0dXJuIHRoaXMuc3VwZXJDb250cm9sLmNvbnRyb2w7XG4gIH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmluaXRDaGFuZ2VzTGlzdGVuZXIoKTtcblxuICAgIHRoaXMuaW5pdFN0YXRlU2VydmljZSgpO1xuICB9XG5cbiAgbmdPbkNoYW5nZXMoY2hhbmdlczogU2ltcGxlQ2hhbmdlcyk6IHZvaWQge1xuICAgIHRoaXMuc2V0U3RhdGVJbnB1dHMoY2hhbmdlcyk7XG4gIH1cblxuICBwdWJsaWMgaW5pdFN0YXRlU2VydmljZSgpOiB2b2lkIHtcbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLnNldFN1cGVyQ29udHJvbCh0aGlzLnN1cGVyQ29udHJvbCk7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5zZXRJbnB1dEVsZW1lbnRSZWYodGhpcy5pbnB1dCk7XG5cbiAgICBjb21iaW5lTGF0ZXN0KFtcbiAgICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2UuaXNGb2N1c0lucHV0JCxcbiAgICAgIHRoaXMuaW5wdXRTdGF0ZVNlcnZpY2UuaXNUb3VjaGVkSW5wdXQkLFxuICAgIF0pXG4gICAgICAucGlwZSh0YWtlVW50aWwodGhpcy5kZXN0cm95JCkpXG4gICAgICAuc3Vic2NyaWJlKChbZm9jdXMsIHRvdWNoZWRdKSA9PiB7XG4gICAgICAgIHRoaXMuaXNGb2N1c0lucHV0ID0gZm9jdXM7XG4gICAgICAgIHRoaXMuaXNUb3VjaGVkSW5wdXQgPSB0b3VjaGVkO1xuICAgICAgfSk7XG4gIH1cblxuICBwdWJsaWMgaW5pdENoYW5nZXNMaXN0ZW5lcigpOiB2b2lkIHtcbiAgICBjb25zdCBjb21iaW5lZENoYW5nZXMgPSBjb21iaW5lTGF0ZXN0KFtcbiAgICAgIHRoaXMuZ2V0U3VwZXJDb250cm9sPy52YWx1ZUNoYW5nZXMsXG4gICAgICB0aGlzLmdldFN1cGVyQ29udHJvbD8uc3RhdHVzQ2hhbmdlcyxcbiAgICBdKTtcblxuICAgIGNvbWJpbmVkQ2hhbmdlcy5waXBlKHRha2VVbnRpbCh0aGlzLmRlc3Ryb3kkKSkuc3Vic2NyaWJlKCgpID0+IHtcbiAgICAgIHRoaXMuY2RSZWYuZGV0ZWN0Q2hhbmdlcygpO1xuICAgIH0pO1xuICB9XG5cbiAgcHVibGljIHNldFN0YXRlSW5wdXRzKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpOiB2b2lkIHtcbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLnNldElucHV0Q29uZmlnKGNoYW5nZXNbXCJpbnB1dENvbmZpZ1wiXS5jdXJyZW50VmFsdWUpO1xuICB9XG5cbiAgcHVibGljIHdyaXRlVmFsdWUob2JqOiBhbnkpOiB2b2lkIHtcbiAgICB0aGlzLmNoYW5nZUlucHV0LmVtaXQob2JqKTtcbiAgICB0aGlzLmlucHV0Lm5hdGl2ZUVsZW1lbnQudmFsdWUgPSBvYmo7XG4gIH1cblxuICBwdWJsaWMgcmVnaXN0ZXJPbkNoYW5nZShmbjogYW55KTogdm9pZCB7XG4gICAgdGhpcy5vbkNoYW5nZSA9IGZuO1xuICB9XG5cbiAgcHVibGljIG9uQ2hhbmdlKF86IGFueSk6IHZvaWQge31cblxuICBwdWJsaWMgcmVnaXN0ZXJPblRvdWNoZWQoKTogdm9pZCB7fVxuXG4gIHB1YmxpYyBvbkJsdXIoZXZlbnQ/OiBGb2N1c0V2ZW50KTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5zZXRpc0ZvY3VzSW5wdXQoZmFsc2UpO1xuXG4gICAgdGhpcy5ibHVySW5wdXQuZW1pdCh0cnVlKTtcbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLnNldGlzVG91Y2hlZElucHV0KHRydWUpO1xuICB9XG5cbiAgcHVibGljIG9uRm9jdXMoZXZlbnQ/OiBGb2N1c0V2ZW50KTogdm9pZCB7XG4gICAgdGhpcy5pc0ZvY3VzSW5wdXRFdmVudC5lbWl0KHRydWUpO1xuXG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5zZXRpc0ZvY3VzSW5wdXQodHJ1ZSk7XG4gIH1cblxuICBwdWJsaWMgb25LZXlkb3duKGV2ZW50OiBLZXlib2FyZEV2ZW50KTogdm9pZCB7XG4gICAgdGhpcy5pc0NhcHNMb2NrT24gPSBldmVudD8uZ2V0TW9kaWZpZXJTdGF0ZT8uKFwiQ2Fwc0xvY2tcIik7XG4gIH1cblxuICBwdWJsaWMgdHJhbnNmb3JtVGV4dChldmVudDogRXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmlucHV0U3RhdGVTZXJ2aWNlLnRyYW5zZm9ybVRleHQoZXZlbnQpO1xuICB9XG5cbiAgcHVibGljIGNsZWFySW5wdXQoZXZlbnQ6IEV2ZW50KTogdm9pZCB7XG4gICAgdGhpcy5pbnB1dFN0YXRlU2VydmljZS5jbGVhcklucHV0KGV2ZW50KTtcbiAgfVxuXG4gIHB1YmxpYyBvblRvZ2dsZVBhc3N3b3JkKGV2ZW50OiBFdmVudCk6IHZvaWQge1xuICAgIGV2ZW50LnByZXZlbnREZWZhdWx0KCk7XG4gICAgdGhpcy5pc1RvZ2dsZVBhc3N3b3JkID0gIXRoaXMuaXNUb2dnbGVQYXNzd29yZDtcbiAgfVxuXG4gIHB1YmxpYyBnZXRTdmdQYXRoKHByb3BlcnR5TmFtZToga2V5b2YgdHlwZW9mIElucHV0U3ZnUm91dGVzKTogc3RyaW5nIHtcbiAgICByZXR1cm4gSW5wdXRTdmdSb3V0ZXNbcHJvcGVydHlOYW1lXSBhcyBzdHJpbmc7XG4gIH1cblxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLmRlc3Ryb3kkLm5leHQoKTtcbiAgICB0aGlzLmRlc3Ryb3kkLmNvbXBsZXRlKCk7XG4gIH1cbn1cbiIsIjxkaXZcbiAgY2xhc3M9XCJpbnB1dC1jdXN0b20tZ3JvdXAge3sgaW5wdXRDb25maWcuY3VzdG9tQ2xhc3MgfX1cIlxuICBbbmdDbGFzc109XCJcbiAgICBnZXRTdXBlckNvbnRyb2xcbiAgICAgIHwgaW5wdXRDb250YWluZXJDbGFzc1xuICAgICAgICA6IGlzRm9jdXNJbnB1dFxuICAgICAgICA6IGlzVG91Y2hlZElucHV0XG4gICAgICAgIDogaW5wdXRDb25maWdcbiAgICAgICAgOiBnZXRTdXBlckNvbnRyb2w/LnZhbHVlXG4gIFwiXG4+XG4gIDxpbnB1dFxuICAgICNpbnB1dFxuICAgIFt0eXBlXT1cImlucHV0Q29uZmlnLnR5cGUgfCBpbnB1dFR5cGU6IGlzVG9nZ2xlUGFzc3dvcmRcIlxuICAgIFtpZF09XCJpbnB1dENvbmZpZy5pZCA/IGlucHV0Q29uZmlnLmlkIDogaW5wdXRDb25maWcubmFtZVwiXG4gICAgW25hbWVdPVwiaW5wdXRDb25maWcubmFtZVwiXG4gICAgW2Rpc2FibGVkXT1cImlucHV0Q29uZmlnLmlzRGlzYWJsZWRcIlxuICAgIFthdXRvY29tcGxldGVdPVwiaW5wdXRDb25maWcuYXV0b2NvbXBsZXRlID8gaW5wdXRDb25maWcuYXV0b2NvbXBsZXRlIDogJ29mZidcIlxuICAgIFtwbGFjZWhvbGRlcl09XCJcbiAgICAgIChpbnB1dENvbmZpZy5wbGFjZWhvbGRlckluc3RlYWRPZkxhYmVsICYmXG4gICAgICBpbnB1dENvbmZpZy5wbGFjZWhvbGRlciAmJlxuICAgICAgaXNGb2N1c0lucHV0XG4gICAgICAgID8gaW5wdXRDb25maWcucGxhY2Vob2xkZXJcbiAgICAgICAgOiAnJykgfHxcbiAgICAgIChpbnB1dENvbmZpZy5wbGFjZWhvbGRlciAmJiBpc0ZvY3VzSW5wdXQgPyBpbnB1dENvbmZpZy5wbGFjZWhvbGRlciA6ICcnKVxuICAgIFwiXG4gICAgW21pbkxlbmd0aF09XCJpbnB1dENvbmZpZy5taW5MZW5ndGggPyBpbnB1dENvbmZpZy5taW5MZW5ndGggOiAwXCJcbiAgICBbbWF4TGVuZ3RoXT1cImlucHV0Q29uZmlnLm1heExlbmd0aCA/IGlucHV0Q29uZmlnLm1heExlbmd0aCA6IDk5OVwiXG4gICAgW21pbl09XCJpbnB1dENvbmZpZy5taW4gPyBpbnB1dENvbmZpZy5taW4gOiAwXCJcbiAgICBbbWF4XT1cImlucHV0Q29uZmlnLm1heFwiXG4gICAgW3N0ZXBdPVwiaW5wdXRDb25maWcuc3RlcCA/IGlucHV0Q29uZmlnLnN0ZXAgOiBudWxsXCJcbiAgICBbcmVhZE9ubHldPVwiaW5wdXRDb25maWcucmVhZE9ubHlcIlxuICAgIGlucHV0Zm9ybWF0PVwiZGQtbW0teXlcIlxuICAgIGNsYXNzPVwiaW5wdXQtY29udHJvbFxuICB7eyBpbnB1dENvbmZpZy50ZXh0VHJhbnNmb3JtIH19XG4gIHt7IGlucHV0Q29uZmlnLnRleHRBbGlnbiB9fVxuICB7eyBpbnB1dENvbmZpZy5jdXN0b21DbGFzcyB9fVxuICBcIlxuICAgIFtuZ0NsYXNzXT1cIlxuICAgICAgZ2V0U3VwZXJDb250cm9sXG4gICAgICAgIHwgaW5wdXRDbGFzc1xuICAgICAgICAgIDogaXNGb2N1c0lucHV0XG4gICAgICAgICAgOiBpc1RvdWNoZWRJbnB1dFxuICAgICAgICAgIDogaW5wdXRDb25maWdcbiAgICAgICAgICA6IGlucHV0XG4gICAgICAgICAgOiBpc1Zpc2libGVDb21tYW5kc1xuICAgICAgICAgIDogZ2V0U3VwZXJDb250cm9sPy52YWx1ZVxuICAgIFwiXG4gICAgKGJsdXIpPVwib25CbHVyKCRldmVudClcIlxuICAgIChmb2N1cyk9XCJvbkZvY3VzKCRldmVudClcIlxuICAgIChrZXlkb3duKT1cIm9uS2V5ZG93bigkZXZlbnQpXCJcbiAgICAoaW5wdXQpPVwib25DaGFuZ2UoJGV2ZW50LnRhcmdldCk7IHRyYW5zZm9ybVRleHQoJGV2ZW50KVwiXG4gICAgWyhuZ01vZGVsKV09XCJpbnB1dC52YWx1ZVwiXG4gIC8+XG5cbiAgPCEtLSBJbnB1dCBMYWJlbCAtLT5cbiAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIiFpbnB1dENvbmZpZy5tdWx0aVNlbGVjdERyb3Bkb3duQWN0aXZlXCI+XG4gICAgPGxhYmVsXG4gICAgICBbZm9yXT1cImlucHV0Q29uZmlnLm5hbWVcIlxuICAgICAgY2xhc3M9XCJpbnB1dC1sYWJlbCB7eyBpbnB1dENvbmZpZy5jdXN0b21DbGFzcyB9fSB7e1xuICAgICAgICBpbnB1dENvbmZpZy5tdWx0aXBsZUxhYmVsPy5jdXN0b21DbGFzc1xuICAgICAgfX1cIlxuICAgICAgW25nQ2xhc3NdPVwiXG4gICAgICAgIGdldFN1cGVyQ29udHJvbD8udmFsdWUgfCBsYWJlbENsYXNzOiBpc0ZvY3VzSW5wdXQgOiBpbnB1dENvbmZpZ1xuICAgICAgXCJcbiAgICA+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaW5wdXRDb25maWcubGFiZWxcIj5cbiAgICAgICAgPHNwYW4+e3sgaW5wdXRDb25maWcubGFiZWwgfX0gPC9zcGFuPlxuICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgPC9sYWJlbD5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBJbnB1dCBDbGVhciAtLT5cbiAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImlucHV0Q29uZmlnIHwgc2hvd0NsZWFyXCI+XG4gICAgPGFwcC1jYS1pbnB1dC1jbGVhclxuICAgICAgW2lucHV0Q29uZmlnXT1cImlucHV0Q29uZmlnXCJcbiAgICAgIFtnZXRTdXBlckNvbnRyb2xdPVwiZ2V0U3VwZXJDb250cm9sXCJcbiAgICAgIFtpc0ZvY3VzSW5wdXRdPVwiaXNGb2N1c0lucHV0XCJcbiAgICAgIFtpbmNvcnJlY3RWYWx1ZV09XCJpbmNvcnJlY3RWYWx1ZVwiXG4gICAgICBbc2VsZWN0ZWREcm9wZG93bkxhYmVsQ29sb3JdPVwic2VsZWN0ZWREcm9wZG93bkxhYmVsQ29sb3JcIlxuICAgICAgKGNsZWFySW5wdXRDbGljayk9XCJjbGVhcklucHV0KCRldmVudClcIlxuICAgID5cbiAgICA8L2FwcC1jYS1pbnB1dC1jbGVhcj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBJbnB1dCBJbnZhbGlkIERhbmdlciBNYXJrIC0tPlxuICA8bmctY29udGFpbmVyXG4gICAgKm5nSWY9XCJcbiAgICAgIGlucHV0Q29uZmlnXG4gICAgICAgIHwgc2hvd0ludmFsaWREYW5nZXJNYXJrXG4gICAgICAgICAgOiBnZXRTdXBlckNvbnRyb2xcbiAgICAgICAgICA6IGlzRm9jdXNJbnB1dFxuICAgICAgICAgIDogaXNUb3VjaGVkSW5wdXRcbiAgICAgICAgICA6IGdldFN1cGVyQ29udHJvbD8udmFsdWVcbiAgICBcIlxuICA+XG4gICAgPHN2Zy1pY29uXG4gICAgICBjbGFzcz1cImlucHV0LWludmFsaWQtZGFuZ2VyLW1hcmsgIHt7IGlucHV0Q29uZmlnLmN1c3RvbUNsYXNzIH19XCJcbiAgICAgIFtzcmNdPVwiZ2V0U3ZnUGF0aCgnZGFuZ2VyU3ZnJylcIlxuICAgID5cbiAgICA8L3N2Zy1pY29uPlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8IS0tIElucHV0IFZhbGlkIENoZWNrIC0tPlxuICA8bmctY29udGFpbmVyXG4gICAgKm5nSWY9XCJcbiAgICAgIGdldFN1cGVyQ29udHJvbFxuICAgICAgICB8IHNob3dWYWxpZENoZWNrOiBpc0ZvY3VzSW5wdXQgOiBpbnB1dENvbmZpZyA6IGdldFN1cGVyQ29udHJvbD8udmFsdWVcbiAgICBcIlxuICA+XG4gICAgPHN2Zy1pY29uXG4gICAgICBjbGFzcz1cImlucHV0LXJlcXVpcmVkLWNoZWNrIHt7IGlucHV0Q29uZmlnLmN1c3RvbUNsYXNzIH19XCJcbiAgICAgIFtzcmNdPVwiZ2V0U3ZnUGF0aCgnY29uZmlybVN2ZycpXCJcbiAgICA+PC9zdmctaWNvbj5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBJbnB1dCBQYXNzd29yZCBDYXBzIExvY2sgQW5kIEV5ZSAtLT5cbiAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImlucHV0Q29uZmlnLnR5cGUgPT09ICdwYXNzd29yZCdcIj5cbiAgICA8YXBwLWNhLWlucHV0LXBhc3N3b3JkXG4gICAgICBbaW5wdXRDb25maWddPVwiaW5wdXRDb25maWdcIlxuICAgICAgW2dldFN1cGVyQ29udHJvbF09XCJnZXRTdXBlckNvbnRyb2xcIlxuICAgICAgW2lzRm9jdXNJbnB1dF09XCJpc0ZvY3VzSW5wdXRcIlxuICAgICAgW2lzVG91Y2hlZElucHV0XT1cImlzVG91Y2hlZElucHV0XCJcbiAgICAgIFtpc0NhcHNMb2NrT25dPVwiaXNDYXBzTG9ja09uXCJcbiAgICAgIFtpc1RvZ2dsZVBhc3N3b3JkXT1cImlzVG9nZ2xlUGFzc3dvcmRcIlxuICAgICAgKG9uVG9nZ2xlUGFzc3dvcmRDbGljayk9XCJvblRvZ2dsZVBhc3N3b3JkKCRldmVudClcIlxuICAgID5cbiAgICA8L2FwcC1jYS1pbnB1dC1wYXNzd29yZD5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPCEtLSBJbnB1dCBQbGFjZWhvbGRlciBJY29uIC0tPlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiaW5wdXRDb25maWcucGxhY2Vob2xkZXJJY29uXCI+XG4gICAgPGFwcC1jYS1pbnB1dC1wbGFjZWhvbGRlci1pY29uXG4gICAgICBbaW5wdXRDb25maWddPVwiaW5wdXRDb25maWdcIlxuICAgICAgW2dldFN1cGVyQ29udHJvbF09XCJnZXRTdXBlckNvbnRyb2xcIlxuICAgICAgW2lzRm9jdXNJbnB1dF09XCJpc0ZvY3VzSW5wdXRcIlxuICAgICAgW2lzVG91Y2hlZElucHV0XT1cImlzVG91Y2hlZElucHV0XCJcbiAgICAgIFtzZWxlY3RlZERyb3Bkb3duTGFiZWxDb2xvcl09XCJzZWxlY3RlZERyb3Bkb3duTGFiZWxDb2xvclwiXG4gICAgPlxuICAgIDwvYXBwLWNhLWlucHV0LXBsYWNlaG9sZGVyLWljb24+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDwhLS0gSW5wdXQgRXJyb3IgTWVzc2FnZSAtLT5cbiAgPG5nLWNvbnRhaW5lclxuICAgICpuZ0lmPVwiXG4gICAgICAhaW5wdXRDb25maWcuaGlkZUVycm9yTWVzc2FnZSAmJlxuICAgICAgISghZ2V0U3VwZXJDb250cm9sPy52YWx1ZSAmJiBpc0ZvY3VzSW5wdXQpICYmXG4gICAgICAoaXNUb3VjaGVkSW5wdXQgfHwgZ2V0U3VwZXJDb250cm9sPy50b3VjaGVkIHx8IGdldFN1cGVyQ29udHJvbD8udmFsdWUpICYmXG4gICAgICBnZXRTdXBlckNvbnRyb2w/LmludmFsaWQgJiZcbiAgICAgICFpbnB1dENvbmZpZy5pc0ludmFsaWRTZWFyY2hJbkRyb3Bkb3duICYmXG4gICAgICAhaW5wdXRDb25maWcuaXNEaXNhYmxlZFxuICAgIFwiXG4gID5cbiAgICA8c3BhbiBjbGFzcz1cImlucHV0LWVycm9yIHt7IGlucHV0Q29uZmlnLmN1c3RvbUNsYXNzIH19XCI+XG4gICAgICB7eyBnZXRTdXBlckNvbnRyb2w/LmVycm9ycyB8IGlucHV0RXJyb3I6IGlucHV0Q29uZmlnLm5hbWUgfX1cbiAgICA8L3NwYW4+XG4gIDwvbmctY29udGFpbmVyPlxuXG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJpbnB1dENvbmZpZy5maXhlZFBsYWNob2xkZXIgJiYgaW5wdXQudmFsdWVcIj5cbiAgICA8c3BhbiBjbGFzcz1cImlucHV0LWZpeGVkLXBsYWNlaG9kZXItbGFiZWxcIj5cbiAgICAgIHt7IGlucHV0Q29uZmlnLmZpeGVkUGxhY2hvbGRlciB9fVxuICAgIDwvc3Bhbj5cbiAgPC9uZy1jb250YWluZXI+XG48L2Rpdj5cbiJdfQ==
|