ca-components 0.0.69 → 0.0.71
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/lib/animations/show.animation.mjs +2 -2
- package/esm2022/lib/ca-components.module.mjs +16 -6
- package/esm2022/lib/components/ca-activity-log-list/ca-activity-log-list.component.mjs +63 -0
- package/esm2022/lib/components/ca-activity-log-list/components/ca-activity-log-item/ca-activity-log-item.component.mjs +42 -0
- package/esm2022/lib/components/ca-activity-log-list/enums/activity-log-list-type.enums.mjs +18 -0
- package/esm2022/lib/components/ca-activity-log-list/models/activity-log-item.model.mjs +2 -0
- package/esm2022/lib/components/ca-activity-log-list/utils/pipes/action-log-name-transform.pipe.mjs +20 -0
- package/esm2022/lib/components/ca-activity-log-list/utils/svg-routes/activity-log-list.routes.mjs +5 -0
- package/esm2022/lib/components/ca-input/enums/input-string.enum.mjs +7 -1
- package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +218 -22
- package/esm2022/lib/components/ca-input/utils/constants/index.mjs +2 -0
- package/esm2022/lib/components/ca-input/utils/constants/input-constants.mjs +18 -0
- package/esm2022/lib/components/ca-logo-change/ca-logo-change.component.mjs +108 -0
- package/esm2022/lib/components/ca-logo-change/pipes/logo-slider.pipe.mjs +17 -0
- package/esm2022/lib/components/ca-logo-change/utils/constants/logo-change.constants.mjs +17 -0
- package/esm2022/lib/components/ca-main-table/ca-main-table.component.mjs +10 -4
- package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +3 -3
- package/esm2022/lib/components/ca-upload-files/ca-upload-files.component.mjs +334 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.mjs +311 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/config/dropzone-config.type.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/config/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/directives/template.directive.mjs +19 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-action.enum.mjs +8 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-type.enum.mjs +8 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/index.mjs +4 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/pages.enum.mjs +26 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/file.helper.mjs +23 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/drop-background-event.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-option-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-event.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/index.mjs +7 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/upload-file-templates.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-icons.constant.mjs +19 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-limit.constant.mjs +28 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/index.mjs +5 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/lottie-constant.mjs +9 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/supported-extension.constant.mjs +11 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/svg-routes/dropzone-svg.routes.mjs +4 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.mjs +351 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/enums/document-action.enum.mjs +10 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/enums/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/models/delete-action.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/models/file-action.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/models/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/byte-convert.pipe.mjs +22 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/file-name.pipe.mjs +22 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/index.mjs +5 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/ng-class.pipe.mjs +36 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/url-extension.pipe.mjs +21 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/services/document.service.mjs +19 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/services/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/upload-file.routes.mjs +10 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.mjs +159 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-action.enum.mjs +6 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-size.enum.mjs +10 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/carousel-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/files-by-size.constant.mjs +16 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/carousel-svg.routes.mjs +4 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/enums/file-size.enum.mjs +9 -0
- package/esm2022/lib/components/ca-upload-files/enums/file-types.enum.mjs +8 -0
- package/esm2022/lib/components/ca-upload-files/enums/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/models/document-review.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/models/file-option-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/models/index.mjs +5 -0
- package/esm2022/lib/components/ca-upload-files/models/review-file-config.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/models/slider.model.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/pipes/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/pipes/map-file.pipe.mjs +20 -0
- package/esm2022/lib/components/ca-upload-files/pipes/upload-class.pipe.mjs +43 -0
- package/esm2022/lib/components/ca-upload-files/services/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/services/upload-file.service.mjs +30 -0
- package/esm2022/lib/pipes/thousand-separator.pipe.mjs +6 -2
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/ca-components.mjs +2016 -37
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/ca-components.module.d.ts +3 -1
- package/lib/components/ca-activity-log-list/ca-activity-log-list.component.d.ts +21 -0
- package/lib/components/ca-activity-log-list/components/ca-activity-log-item/ca-activity-log-item.component.d.ts +13 -0
- package/lib/components/ca-activity-log-list/enums/activity-log-list-type.enums.d.ts +14 -0
- package/lib/components/ca-activity-log-list/models/activity-log-item.model.d.ts +31 -0
- package/lib/components/ca-activity-log-list/utils/pipes/action-log-name-transform.pipe.d.ts +7 -0
- package/lib/components/ca-activity-log-list/utils/svg-routes/activity-log-list.routes.d.ts +4 -0
- package/lib/components/ca-input/enums/input-string.enum.d.ts +7 -1
- package/lib/components/ca-input/services/ca-input-state.service.d.ts +19 -3
- package/lib/components/ca-input/utils/constants/index.d.ts +1 -0
- package/lib/components/ca-input/utils/constants/input-constants.d.ts +3 -0
- package/lib/components/ca-logo-change/ca-logo-change.component.d.ts +34 -0
- package/lib/components/ca-logo-change/pipes/logo-slider.pipe.d.ts +7 -0
- package/lib/components/ca-logo-change/utils/constants/logo-change.constants.d.ts +6 -0
- package/lib/components/ca-main-table/ca-main-table.component.d.ts +3 -1
- package/lib/components/ca-upload-files/ca-upload-files.component.d.ts +66 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.d.ts +53 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/config/dropzone-config.type.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/config/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/directives/template.directive.d.ts +9 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-action.enum.d.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-type.enum.d.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/index.d.ts +3 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/pages.enum.d.ts +24 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/file.helper.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/drop-background-event.model.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-config.model.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-option-config.model.d.ts +14 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-config.model.d.ts +19 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-event.model.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/index.d.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/upload-file-templates.model.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-icons.constant.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-limit.constant.d.ts +5 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/index.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/lottie-constant.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/supported-extension.constant.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/svg-routes/dropzone-svg.routes.d.ts +3 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.d.ts +84 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/enums/document-action.enum.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/enums/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/models/delete-action.model.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/models/file-action.model.d.ts +5 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/models/index.d.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/byte-convert.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/file-name.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/index.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/ng-class.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/url-extension.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/services/document.service.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/services/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/upload-file.routes.d.ts +9 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.d.ts +36 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-action.enum.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-size.enum.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/index.d.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/carousel-config.model.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/files-by-size.constant.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/index.d.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/carousel-svg.routes.d.ts +3 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/svg-routes/index.d.ts +1 -0
- package/lib/components/ca-upload-files/enums/file-size.enum.d.ts +7 -0
- package/lib/components/ca-upload-files/enums/file-types.enum.d.ts +6 -0
- package/lib/components/ca-upload-files/enums/index.d.ts +2 -0
- package/lib/components/ca-upload-files/models/document-review.model.d.ts +5 -0
- package/lib/components/ca-upload-files/models/file-option-config.model.d.ts +14 -0
- package/lib/components/ca-upload-files/models/index.d.ts +4 -0
- package/lib/components/ca-upload-files/models/review-file-config.model.d.ts +8 -0
- package/lib/components/ca-upload-files/models/slider.model.d.ts +4 -0
- package/lib/components/ca-upload-files/pipes/index.d.ts +2 -0
- package/lib/components/ca-upload-files/pipes/map-file.pipe.d.ts +9 -0
- package/lib/components/ca-upload-files/pipes/upload-class.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/services/index.d.ts +1 -0
- package/lib/components/ca-upload-files/services/upload-file.service.d.ts +18 -0
- package/lib/pipes/thousand-separator.pipe.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/src/assets/ca-components/svg/common/ic_forbidden.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_grid.svg +8 -0
- package/src/assets/ca-components/svg/common/ic_radial.svg +3 -0
- package/src/assets/ca-components/svg/common/ic_reset.svg +3 -0
- package/src/assets/ca-components/svg/input/ic_email.svg +6 -0
- package/src/assets/ca-components/svg/input/ic_phone.svg +6 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_arrow-right.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_arrow-up-rectangle.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_arrow-up-right.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_arrow-up.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_circle-grey-filled.svg +4 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_circle-grey.svg +4 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_circle-orange.svg +4 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_circle-red-filled.svg +4 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_document.svg +3 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_eye-icon-closed.svg +3 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_eye-icon.svg +3 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_no-document.svg +7 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_rectangle-orange.svg +11 -0
- package/src/assets/ca-components/svg/telematic-map-list/ic_repair_engine.svg +3 -0
|
@@ -0,0 +1,351 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output, ViewChild, ViewEncapsulation, } from '@angular/core';
|
|
2
|
+
import { FormControl, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
3
|
+
import { debounceTime, distinctUntilChanged, Subject } from 'rxjs';
|
|
4
|
+
import { PdfViewerModule } from 'ng2-pdf-viewer';
|
|
5
|
+
import { CommonModule } from '@angular/common';
|
|
6
|
+
import { AngularSvgIconModule } from 'angular-svg-icon';
|
|
7
|
+
import { NgbModule, NgbPopoverModule, NgbTooltip, } from '@ng-bootstrap/ng-bootstrap';
|
|
8
|
+
import { NgxMaskModule } from 'ngx-mask';
|
|
9
|
+
//Components
|
|
10
|
+
import { CaInputComponent } from '../../../ca-input/ca-input.component';
|
|
11
|
+
import { CaAppTooltipV2Component } from '../../../ca-app-tooltip-v2/ca-app-tooltip-v2.component';
|
|
12
|
+
import { CaSpinnerComponent } from '../../../ca-spinner/ca-spinner.component';
|
|
13
|
+
import { CaLogoChangeComponent } from '../../../ca-logo-change/ca-logo-change.component';
|
|
14
|
+
//Enums
|
|
15
|
+
import { DocumentAction } from './enums';
|
|
16
|
+
//Pipes
|
|
17
|
+
import { ByteConvertPipe, FileNamePipe, UrlExtensionPipe, NgClassPipe, } from './pipes';
|
|
18
|
+
//Routes
|
|
19
|
+
import { UploadFileRoutes } from './utils/svg-routes';
|
|
20
|
+
import * as i0 from "@angular/core";
|
|
21
|
+
import * as i1 from "@angular/common/http";
|
|
22
|
+
import * as i2 from "./pipes";
|
|
23
|
+
import * as i3 from "./services";
|
|
24
|
+
import * as i4 from "@angular/common";
|
|
25
|
+
import * as i5 from "@ng-bootstrap/ng-bootstrap";
|
|
26
|
+
import * as i6 from "@angular/forms";
|
|
27
|
+
import * as i7 from "angular-svg-icon";
|
|
28
|
+
import * as i8 from "ng2-pdf-viewer";
|
|
29
|
+
export class CaUploadFileComponent {
|
|
30
|
+
constructor(http, ref,
|
|
31
|
+
//Pipe
|
|
32
|
+
urlExt, fileNamePipe,
|
|
33
|
+
//Service
|
|
34
|
+
detailsDataService) {
|
|
35
|
+
this.http = http;
|
|
36
|
+
this.ref = ref;
|
|
37
|
+
this.urlExt = urlExt;
|
|
38
|
+
this.fileNamePipe = fileNamePipe;
|
|
39
|
+
this.detailsDataService = detailsDataService;
|
|
40
|
+
this.fileAction = new EventEmitter();
|
|
41
|
+
this.deleteAction = new EventEmitter();
|
|
42
|
+
this.documentReviewInputEvent = new EventEmitter();
|
|
43
|
+
this.landscapeCheck = new EventEmitter();
|
|
44
|
+
this.fileHover = new EventEmitter();
|
|
45
|
+
this.fileNewName = new FormControl();
|
|
46
|
+
this.documentReviewInputControl = new FormControl(null);
|
|
47
|
+
this.editFile = false;
|
|
48
|
+
this.isFileDelete = false;
|
|
49
|
+
this.documentReviewInputVisible = false;
|
|
50
|
+
this.isIncorrectMarkHover = false;
|
|
51
|
+
this.annotationHover = false;
|
|
52
|
+
this.documentLoading = true;
|
|
53
|
+
this.isArrowHovered = false;
|
|
54
|
+
this.fileExtension = '';
|
|
55
|
+
this.numberOfFilePages = '';
|
|
56
|
+
this.fileName = '';
|
|
57
|
+
this.icons = UploadFileRoutes.icons;
|
|
58
|
+
this.action = DocumentAction;
|
|
59
|
+
this.destroy$ = new Subject();
|
|
60
|
+
}
|
|
61
|
+
ngOnInit() {
|
|
62
|
+
this.getfileName();
|
|
63
|
+
this.initializeFileExtension();
|
|
64
|
+
this.onSpinner();
|
|
65
|
+
this.reviewInputControlChange();
|
|
66
|
+
this.setSavedTag();
|
|
67
|
+
}
|
|
68
|
+
ngAfterViewInit() {
|
|
69
|
+
this.setTags();
|
|
70
|
+
this.setCategoryTag();
|
|
71
|
+
}
|
|
72
|
+
initializeFileExtension() {
|
|
73
|
+
if (this.config.file && this.config.file.fileName) {
|
|
74
|
+
this.fileExtension = this.urlExt.transform(this.config.file.fileName);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
onSpinner() {
|
|
78
|
+
const isNotPdf = (this.config.file.extension ||
|
|
79
|
+
this.urlExt.transform(this.config.file.url)) !== 'pdf';
|
|
80
|
+
this.documentLoading = !isNotPdf;
|
|
81
|
+
}
|
|
82
|
+
getfileName() {
|
|
83
|
+
if (this.config.file.fileName)
|
|
84
|
+
this.fileName = this.fileNamePipe.transform(this.config.file.fileName);
|
|
85
|
+
}
|
|
86
|
+
onBlurInput(event) {
|
|
87
|
+
if (event) {
|
|
88
|
+
this.editFile = false;
|
|
89
|
+
if (this.fileNewName.value) {
|
|
90
|
+
this.config.file.fileName = this.fileName;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
//pdf
|
|
95
|
+
afterLoadComplete(pdf) {
|
|
96
|
+
this.documentLoading = false;
|
|
97
|
+
const numberPages = pdf._pdfInfo.numPages;
|
|
98
|
+
this.numberOfFilePages = `${numberPages} ${numberPages === 1 ? 'PAGE' : 'PAGES'}`;
|
|
99
|
+
if (!this.config.file.extension && this.config.file.fileName) {
|
|
100
|
+
this.fileExtension = this.urlExt.transform(this.config.file.fileName);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
pageRendered(event // leave any for now
|
|
104
|
+
) {
|
|
105
|
+
const pdf = event;
|
|
106
|
+
if (this.config.hasLandscapeOption &&
|
|
107
|
+
pdf.pageNumber === 1 &&
|
|
108
|
+
pdf.source.width > pdf.source.height) {
|
|
109
|
+
this.landscapeCheck.emit(true);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
onAction(action) {
|
|
113
|
+
this.detailsDataService.setDocumentName(this.fileName);
|
|
114
|
+
switch (action) {
|
|
115
|
+
case DocumentAction.TAG:
|
|
116
|
+
this.handleTagAction();
|
|
117
|
+
break;
|
|
118
|
+
case DocumentAction.DOWNLOAD:
|
|
119
|
+
this.handleDownloadAction();
|
|
120
|
+
break;
|
|
121
|
+
case DocumentAction.DELETE:
|
|
122
|
+
this.handleDeleteAction();
|
|
123
|
+
break;
|
|
124
|
+
case DocumentAction.CANCEL:
|
|
125
|
+
this.handleCancelAction();
|
|
126
|
+
break;
|
|
127
|
+
case DocumentAction.MARK_INCORRECT:
|
|
128
|
+
this.handleMarkIncorrectAction();
|
|
129
|
+
break;
|
|
130
|
+
case DocumentAction.MARK_CORRECT:
|
|
131
|
+
this.handleMarkCorrectAction();
|
|
132
|
+
break;
|
|
133
|
+
default:
|
|
134
|
+
break;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
handleTagAction() {
|
|
138
|
+
if (this.config.file.tags) {
|
|
139
|
+
this.selectTag(this.config.file.tags);
|
|
140
|
+
}
|
|
141
|
+
else {
|
|
142
|
+
this.selectTag('No Tag');
|
|
143
|
+
}
|
|
144
|
+
this.t2.open();
|
|
145
|
+
}
|
|
146
|
+
handleDownloadAction() {
|
|
147
|
+
this.downloadFile(this.config.file.url, this.fileName);
|
|
148
|
+
}
|
|
149
|
+
handleDeleteAction() {
|
|
150
|
+
this.isFileDelete = false;
|
|
151
|
+
this.deleteAction.emit({
|
|
152
|
+
id: this.config.id,
|
|
153
|
+
action: DocumentAction.DELETE,
|
|
154
|
+
});
|
|
155
|
+
}
|
|
156
|
+
handleCancelAction() {
|
|
157
|
+
this.isFileDelete = false;
|
|
158
|
+
}
|
|
159
|
+
handleMarkIncorrectAction() {
|
|
160
|
+
this.config.file.incorrect = true;
|
|
161
|
+
this.fileAction.emit({
|
|
162
|
+
file: this.config.file,
|
|
163
|
+
action: DocumentAction.MARK_INCORRECT,
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
handleMarkCorrectAction() {
|
|
167
|
+
this.config.file.incorrect = false;
|
|
168
|
+
this.fileAction.emit({
|
|
169
|
+
file: this.config.file,
|
|
170
|
+
action: DocumentAction.MARK_CORRECT,
|
|
171
|
+
});
|
|
172
|
+
this.documentReviewInputVisible = false;
|
|
173
|
+
}
|
|
174
|
+
downloadFile(url, filename) {
|
|
175
|
+
this.http.get(url, { responseType: 'blob' }).subscribe((blob) => {
|
|
176
|
+
const a = document.createElement('a');
|
|
177
|
+
const objectUrl = URL.createObjectURL(blob);
|
|
178
|
+
a.href = objectUrl;
|
|
179
|
+
a.download = filename;
|
|
180
|
+
a.click();
|
|
181
|
+
}, (error) => {
|
|
182
|
+
console.error('Error downloading file:', error);
|
|
183
|
+
});
|
|
184
|
+
}
|
|
185
|
+
onEditFile() {
|
|
186
|
+
if (this.config.customClassName !== 'driver-details-pdf' &&
|
|
187
|
+
this.config.customClassName !== 'landscape-details-view' &&
|
|
188
|
+
this.reviewFileConfig.reviewMode !== 'REVIEW_MODE' &&
|
|
189
|
+
!this.inputRef?.isFocusInput) {
|
|
190
|
+
this.editFile = true;
|
|
191
|
+
this.fileNewName.patchValue(this.fileName);
|
|
192
|
+
const timeout = setTimeout(() => {
|
|
193
|
+
const input = this.inputRef.input.nativeElement;
|
|
194
|
+
const selectionEnd = input.value.length;
|
|
195
|
+
if (input.setSelectionRange) {
|
|
196
|
+
input.setSelectionRange(selectionEnd, selectionEnd);
|
|
197
|
+
}
|
|
198
|
+
const focusTimeout = setTimeout(() => {
|
|
199
|
+
input.focus();
|
|
200
|
+
clearTimeout(focusTimeout);
|
|
201
|
+
}, 100);
|
|
202
|
+
clearTimeout(timeout);
|
|
203
|
+
}, 100);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
reviewInputControlChange() {
|
|
207
|
+
if (this.reviewFileConfig.isReview) {
|
|
208
|
+
this.documentReviewInputControl.valueChanges
|
|
209
|
+
.pipe(debounceTime(1500), distinctUntilChanged())
|
|
210
|
+
.subscribe((value) => {
|
|
211
|
+
this.documentReviewInputEvent.emit({
|
|
212
|
+
file: this.config.file,
|
|
213
|
+
message: value,
|
|
214
|
+
});
|
|
215
|
+
});
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
getAnnotationReviewEvent(event) {
|
|
219
|
+
this.documentReviewInputVisible = event.type === 'open';
|
|
220
|
+
}
|
|
221
|
+
setTags() {
|
|
222
|
+
if (this.config.hasTagsDropdown && this.config.tags?.length) {
|
|
223
|
+
this.config.tags.forEach((item) => {
|
|
224
|
+
item = {
|
|
225
|
+
...item,
|
|
226
|
+
checked: false,
|
|
227
|
+
};
|
|
228
|
+
this.config.tagsOptions?.push(item);
|
|
229
|
+
});
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
setCategoryTag() {
|
|
233
|
+
if (this.config.file.tags?.length) {
|
|
234
|
+
this.reviewFileConfig.categoryTag = this.config.file.tags[0];
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
setSavedTag() {
|
|
238
|
+
if (this.config.file.tags &&
|
|
239
|
+
this.config.file.tags.length &&
|
|
240
|
+
this.config.hasTagsDropdown) {
|
|
241
|
+
this.config.file.savedTag = this.config.file.tags[0];
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
selectTag(tag) {
|
|
245
|
+
this.config.tagsOptions?.forEach((item) => {
|
|
246
|
+
if (item.tagName == tag) {
|
|
247
|
+
item.checked = true;
|
|
248
|
+
setTimeout(() => {
|
|
249
|
+
this.config.file.tags = item.tagName;
|
|
250
|
+
this.config.file.tagGeneratedByUser = true;
|
|
251
|
+
this.config.file.tagId = [item.tagId];
|
|
252
|
+
this.config.file.tagChanged =
|
|
253
|
+
this.config.file.savedTag != item.tagName ? true : false;
|
|
254
|
+
const action = 'tag';
|
|
255
|
+
if (!this.t2.isOpen()) {
|
|
256
|
+
this.fileAction.emit({ file: this.config.file, action });
|
|
257
|
+
}
|
|
258
|
+
this.ref.detectChanges();
|
|
259
|
+
}, 200);
|
|
260
|
+
}
|
|
261
|
+
else {
|
|
262
|
+
item.checked = false;
|
|
263
|
+
}
|
|
264
|
+
});
|
|
265
|
+
this.ref.detectChanges();
|
|
266
|
+
}
|
|
267
|
+
removeTag() {
|
|
268
|
+
setTimeout(() => {
|
|
269
|
+
this.config.file.tags = [];
|
|
270
|
+
this.config.file.tagId = [];
|
|
271
|
+
const action = this.action.TAG;
|
|
272
|
+
this.config.file.tagChanged = this.config.file.savedTag ? true : false;
|
|
273
|
+
this.fileAction.emit({ file: this.config.file, action });
|
|
274
|
+
this.ref.detectChanges();
|
|
275
|
+
}, 200);
|
|
276
|
+
}
|
|
277
|
+
openDeletePopup(name) {
|
|
278
|
+
this.detailsDataService.setDocumentName(name);
|
|
279
|
+
this.isFileDelete = true;
|
|
280
|
+
}
|
|
281
|
+
hoverFile() {
|
|
282
|
+
this.fileHover.emit(this.config.file);
|
|
283
|
+
}
|
|
284
|
+
updateHover(mod) {
|
|
285
|
+
this.config.file.lastHovered = mod;
|
|
286
|
+
this.ref.detectChanges();
|
|
287
|
+
}
|
|
288
|
+
hoverArrow(mod) {
|
|
289
|
+
this.isArrowHovered = mod;
|
|
290
|
+
this.ref.detectChanges();
|
|
291
|
+
}
|
|
292
|
+
identity(index) {
|
|
293
|
+
return index;
|
|
294
|
+
}
|
|
295
|
+
ngOnDestroy() {
|
|
296
|
+
this.destroy$.next();
|
|
297
|
+
this.destroy$.complete();
|
|
298
|
+
}
|
|
299
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CaUploadFileComponent, deps: [{ token: i1.HttpClient }, { token: i0.ChangeDetectorRef }, { token: i2.UrlExtensionPipe }, { token: i2.FileNamePipe }, { token: i3.DocumentService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
300
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CaUploadFileComponent, isStandalone: true, selector: "app-ca-upload-file", inputs: { config: "config", reviewFileConfig: "reviewFileConfig" }, outputs: { fileAction: "fileAction", deleteAction: "deleteAction", documentReviewInputEvent: "documentReviewInputEvent", landscapeCheck: "landscapeCheck", fileHover: "fileHover" }, viewQueries: [{ propertyName: "t2", first: true, predicate: ["t2"], descendants: true }, { propertyName: "inputRef", first: true, predicate: CaInputComponent, descendants: true }], ngImport: i0, template: "<div\n class=\"ta-upload-file-container d-grid {{ config.customClassName }}\"\n [ngClass]=\"\n config\n | ngClassPipe: t2 : isArrowHovered : annotationHover : reviewFileConfig\n \"\n>\n <!-- File Header Actions (mouseenter)=\"hoverFile()\" -->\n\n <!-- Review Actions -->\n <ng-container *ngIf=\"reviewFileConfig.isReview\">\n <div\n class=\"ta-upload-file-header-review d-flex align-items-center justify-content-between\"\n >\n <ng-container *ngIf=\"reviewFileConfig.reviewMode === 'REVIEW_MODE'\">\n <div\n ngbTooltip\n mainTooltip=\"Download\"\n tooltipBackground=\"#6c6c6c\"\n position=\"top\"\n class=\"ta-upload-action-download-review d-flex align-items-center justify-content-center\"\n (click)=\"onAction(action.DOWNLOAD)\"\n >\n <svg-icon [src]=\"icons.download\"></svg-icon>\n </div>\n </ng-container>\n <ng-container *ngIf=\"reviewFileConfig.reviewMode === 'REVIEW_MODE'\">\n <div\n ngbTooltip\n mainTooltip=\"\n config.file?.incorrect && isIncorrectMarkHover\n ? 'Unmark'\n : 'Mark Incorrect'\n \"\n tooltipBackground=\"\n config.file?.incorrect && isIncorrectMarkHover ? '#6c6c6c' : '#EF5350'\n \"\n position=\"top\"\n class=\" {{\n config.file?.incorrect && isIncorrectMarkHover\n ? 'ta-upload-action-mark-correct'\n : 'ta-upload-action-mark-incorrect'\n }}\"\n [ngClass]=\"{ incorrect: config.file?.incorrect }\"\n (click)=\"\n onAction(\n config.file?.incorrect && isIncorrectMarkHover\n ? 'mark-correct'\n : 'mark-incorrect'\n )\n \"\n (mouseenter)=\"isIncorrectMarkHover = true\"\n (mouseleave)=\"isIncorrectMarkHover = false\"\n >\n <svg-icon\n [src]=\"\n config.file?.incorrect && isIncorrectMarkHover\n ? icons.confirm\n : icons.close\n \"\n ></svg-icon>\n </div>\n </ng-container>\n\n <!--COMMENT FOR NOW -->\n\n <!-- Review Message -->\n <!-- <ng-container>\n <div *ngIf=\"\n reviewMode === 'REVIEW_MODE' || reviewMode === 'FEEDBACK_MODE'\n \"\n class=\"review-feedback-container\"\n (mouseenter)=\"annotationHover = true\"\n (mouseleave)=\"annotationHover = false\"\n >\n <app-applicant-review-feedback\n [formControl]=\"documentReviewInputControl\"\n [displayAnnotationButton]=\"\n file?.incorrect && !documentReviewInputVisible\n \"\n [displayAnnotationTextArea]=\"\n file?.incorrect && documentReviewInputVisible\n \"\n [isFeedback]=\"reviewMode === 'FEEDBACK_MODE'\"\n [feedbackText]=\"feedbackText\"\n (annotationBtnClickEvent)=\"getAnnotationReviewEvent($event)\"\n ></app-applicant-review-feedback>\n </div> \n </ng-container> -->\n </div>\n </ng-container>\n\n <!-- No Review Actions -->\n <ng-container\n *ngIf=\"\n !isFileDelete &&\n (!reviewFileConfig.isReview ||\n (reviewFileConfig.isReview &&\n reviewFileConfig.reviewMode === 'FEEDBACK_MODE'))\n \"\n >\n <div class=\"ta-upload-file-header d-flex justify-content-between\">\n <!-- Left Side -->\n <ng-container *ngIf=\"config.customClassName === 'company-documents'\">\n <div class=\"rightside_bar\"></div>\n </ng-container>\n <ng-container *ngIf=\"config.customClassName !== 'company-documents'\">\n <div\n class=\"ta-upload-file-action-leftside d-flex justify-content-center align-items-center\"\n tabindex=\"0\"\n [ngClass]=\"{\n 'no-action-tag': !config.hasTagsDropdown,\n active: t2?.isOpen(),\n }\"\n #t2=\"ngbPopover\"\n [ngbPopover]=\"tagsPopover\"\n [popoverClass]=\"'tags_popover'\"\n [placement]=\"'right-top right-bottom'\"\n autoclose=\"outside\"\n [container]=\"'body'\"\n triggers=\"'manual'\"\n >\n <div\n ngbTooltip\n mainTooltip=\"Tag\"\n tooltipBackground=\"#2F2F2F\"\n position=\"top\"\n class=\"ta-upload-action-tag d-flex justify-content-center align-items-center\"\n (click)=\"onAction(action.TAG)\"\n >\n <svg-icon [src]=\"icons.tag\"></svg-icon>\n </div>\n </div>\n </ng-container>\n <!-- Right Side -->\n\n <ng-container *ngIf=\"!reviewFileConfig.isActionsHidden\">\n <div\n class=\"ta-upload-file-action-rightside d-flex justify-content-around align-items-center\"\n [ngClass]=\"{\n 'feedback-mode':\n reviewFileConfig.isReview &&\n reviewFileConfig.reviewMode === 'FEEDBACK_MODE',\n small:\n config.type === 'details' ||\n config.type === 'todo' ||\n reviewFileConfig.reviewMode == 'REVIEW_MODE',\n 'vertical-mode': config.customClassName == 'company-documents',\n }\"\n >\n <ng-container *ngIf=\"config.customClassName == 'company-documents'\">\n <div\n #t2=\"ngbPopover\"\n [ngbPopover]=\"tagsPopover\"\n [popoverClass]=\"'tags_popover_vertical'\"\n [placement]=\"'bottom-left'\"\n autoclose=\"outside\"\n [container]=\"'body'\"\n triggers=\"'manual'\"\n ngbTooltip\n mainTooltip=\"Tag\"\n tooltipBackground=\"#2F2F2F\"\n position=\"top\"\n class=\"ta-upload-action-tag d-flex justify-content-center align-items-center\"\n [ngClass]=\"{ active: t2?.isOpen() }\"\n (click)=\"onAction(action.TAG)\"\n >\n <svg-icon [src]=\"icons.tag\"></svg-icon>\n </div>\n </ng-container>\n <div\n ngbTooltip\n mainTooltip=\"Download\"\n tooltipBackground=\"#2F2F2F\"\n position=\"top\"\n class=\"ta-upload-action-download\"\n (click)=\"onAction(action.DOWNLOAD)\"\n >\n <svg-icon [src]=\"icons.download\"></svg-icon>\n </div>\n <ng-container\n *ngIf=\"\n config.type != 'details' &&\n config.type != 'todo' &&\n reviewFileConfig.reviewMode != 'REVIEW_MODE'\n \"\n >\n <ng-container *ngIf=\"config.file?.fileName\">\n <div\n ngbTooltip\n mainTooltip=\"Delete\"\n tooltipBackground=\"#EF5350\"\n position=\"top\"\n class=\"ta-upload-action-delete\"\n (click)=\"\n config.file.fileName\n ? openDeletePopup(config.file.fileName)\n : null\n \"\n >\n <svg-icon [src]=\"icons.trash\"></svg-icon>\n </div>\n </ng-container>\n </ng-container>\n </div>\n </ng-container>\n <ng-container\n *ngIf=\"\n reviewFileConfig.isReview &&\n reviewFileConfig.reviewMode === 'FEEDBACK_MODE'\n \"\n >\n <div\n ngbTooltip\n mainTooltip=\"Marked Incorrect\"\n tooltipBackground=\"#EF5350\"\n position=\"top\"\n class=\"ta-upload-action-feedback-incorrect-mark d-flex justify-content-center align-items-center\"\n (click)=\"onAction(action.MARK_INCORRECT)\"\n >\n <svg-icon [src]=\"icons.close\"></svg-icon>\n </div>\n </ng-container>\n </div>\n </ng-container>\n\n <!-- File Content -->\n <div class=\"ta-upload-file-content {{ config.customClassName }}\">\n <!-- Pdf Content -->\n <ng-container\n *ngIf=\"\n (config.file?.extension?.toLowerCase() === 'pdf' ||\n fileExtension === 'pdf') &&\n config.file?.url\n \"\n >\n <pdf-viewer\n [src]=\"config.file.url\"\n [(page)]=\"config.activePage\"\n style=\"display: block; height: 100%; width: 100%\"\n [rotation]=\"0\"\n [original-size]=\"false\"\n [show-all]=\"true\"\n [fit-to-page]=\"false\"\n [zoom]=\"1\"\n [zoom-scale]=\"'page-width'\"\n [stick-to-page]=\"false\"\n [render-text]=\"true\"\n [external-link-target]=\"'blank'\"\n [autoresize]=\"true\"\n [show-borders]=\"false\"\n (after-load-complete)=\"afterLoadComplete($event)\"\n (page-rendered)=\"pageRendered($event)\"\n ></pdf-viewer>\n </ng-container>\n\n <!-- Image Content -->\n <div\n class=\"image_main_holder d-flex justify-content-center align-items-center {{\n config.customClassName\n }}\"\n >\n <ng-container\n *ngIf=\"\n config.file?.extension?.toLowerCase() !== 'pdf' &&\n fileExtension !== 'pdf' &&\n config.file?.url\n \"\n >\n <img\n class=\"ta-upload-file-image\"\n [ngClass]=\"{\n details_image: config.type === 'details' || config.type === 'todo',\n }\"\n [src]=\"config.file.url\"\n [alt]=\"config.file?.fileName\"\n />\n </ng-container>\n <ng-container *ngIf=\"documentLoading\">\n <div class=\"spinner\">\n <app-ca-spinner\n [size]=\"'small'\"\n [color]=\"'blueDark'\"\n ></app-ca-spinner>\n </div>\n </ng-container>\n </div>\n\n <!-- Tag Content -->\n <ng-container\n *ngIf=\"\n (config.hasTagsDropdown ||\n config.customClassName === 'table-details' ||\n config.customClassName === 'driver-card-pdf') &&\n config.file?.tags &&\n config.file?.tags !== '' &&\n config.file?.tags !== 'No Tag'\n \"\n >\n <div\n class=\"ta-upload-file-tag\"\n [ngClass]=\"{\n default: !config.file?.tagGeneratedByUser,\n tagRemoving: config.file?.tags.length === 0,\n }\"\n >\n <span>{{\n config.file?.tags || reviewFileConfig.categoryTag || ''\n }}</span>\n </div>\n </ng-container>\n </div>\n\n <!-- File Delete Template -->\n <ng-container *ngIf=\"isFileDelete\">\n <div\n class=\"ta-upload-file-delete-template d-flex align-items-center flex-column {{\n config.customClassName\n }}\"\n >\n <div class=\"ta-upload-file-delete-text\">\n Are you sure you want to delete file?\n </div>\n <div\n class=\"ta-upload-file-btn d-flex align-items-center justify-content-center ta-upload-file-btn-delete\"\n (click)=\"onAction(action.DELETE)\"\n >\n DELETE\n </div>\n <div\n class=\"ta-upload-file-btn d-flex align-items-center justify-content-center ta-upload-file-btn-cancel\"\n (click)=\"onAction(action.CANCEL)\"\n >\n CANCEL\n </div>\n </div>\n </ng-container>\n\n <!-- File Footer Information -->\n <ng-container *ngIf=\"!reviewFileConfig.isFooterHidden\">\n <div\n class=\"ta-upload-file-footer\"\n [ngClass]=\"{ 'edit-mode': editFile }\"\n (click)=\"onEditFile()\"\n >\n <!-- No edit mode -->\n <ng-container *ngIf=\"!isFileDelete\">\n <div class=\"footer_info d-flex align-items-center\">\n <div\n class=\"ta-upload-file-ext ta-upload-file-ext-{{\n config.file?.extension ? (config.file?.extension | lowercase) : ''\n }}\"\n [ngClass]=\"{ 'no-tag': !config.file?.tags }\"\n >\n <div>\n {{ config.file?.extension | uppercase }}\n </div>\n </div>\n <div class=\"document_info_hold d-flex\">\n <ng-container *ngIf=\"numberOfFilePages\">\n <div class=\"pdf_page_size\">\n {{ numberOfFilePages }}\n </div>\n </ng-container>\n\n <div\n class=\"file_size\"\n [ngClass]=\"{\n has_pages: numberOfFilePages,\n }\"\n >\n {{ config.file?.size || 0 | byteConvert }}\n </div>\n </div>\n </div>\n </ng-container>\n <ng-container *ngIf=\"!editFile; else editMode\">\n <p\n class=\"ta-upload-file-name\"\n [ngClass]=\"{\n details_title: config.type === 'details',\n todo_title: config.type === 'todo',\n }\"\n >\n {{ fileName }}\n </p>\n </ng-container>\n\n <ng-template #editMode>\n <app-ca-input\n [formControl]=\"fileNewName\"\n [inputConfig]=\"{\n name: 'File Name',\n type: 'text',\n placeholder: 'Type File Name',\n blackInput: true,\n isDisabled: false,\n }\"\n (blurInput)=\"onBlurInput($event)\"\n ></app-ca-input>\n </ng-template>\n </div>\n </ng-container>\n</div>\n\n<ng-template #tagsPopover let-data=\"data\">\n <div class=\"tags_main_holder\">\n <ng-container *ngIf=\"config.file?.tags?.length\">\n <div class=\"remove_tag_holder\" (click)=\"removeTag()\">\n <div class=\"remove_tag\">Remove Tag</div>\n </div>\n </ng-container>\n <ng-container *ngIf=\"config.file?.tags?.length\">\n <div class=\"remove_tag_border_holder\">\n <div class=\"remove_tag_border\"></div>\n </div>\n </ng-container>\n <ng-container *ngIf=\"config.tagsOptions && config.tagsOptions.length\">\n <ng-container\n *ngFor=\"let tag of config.tagsOptions; trackBy: identity; index as i\"\n >\n <div\n class=\"tags_inner_holder d-flex align-items-center\"\n [ngClass]=\"{\n firstRow: i === 0,\n lastRow: i === config.tagsOptions.length - 1,\n }\"\n (click)=\"selectTag(tag?.tagName)\"\n >\n <div class=\"tag_options_holder d-flex align-items-center\">\n <div class=\"tag_name\" [ngClass]=\"{ checked: tag.checked }\">\n {{ tag.tagName }}\n </div>\n <div class=\"checked_icon\" [ngClass]=\"{ shown: tag.checked }\">\n <svg-icon [src]=\"icons.confirm\"></svg-icon>\n </div>\n </div>\n </div>\n </ng-container>\n </ng-container>\n </div>\n</ng-template>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;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}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.ca-input-dropdown .arrow{display:none!important}.ca-input-dropdown .popover-body{margin-top:-2px!important}.ca-input-dropdown .popover-body .dropdown-options-divider{content:\"\";height:1px;border-radius:1px;background-color:#424242;position:absolute;z-index:99999;top:0;left:0}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-1{width:-7px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-2{width:-6px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-3{width:-5px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-4{width:-4px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-5{width:-3px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-6{width:-2px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-7{width:-1px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-8{width:0px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-9{width:1px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-10{width:2px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-11{width:3px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-12{width:4px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-13{width:5px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-14{width:6px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-15{width:7px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-16{width:8px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-17{width:9px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-18{width:10px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-19{width:11px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-20{width:12px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-21{width:13px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-22{width:14px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-23{width:15px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-24{width:16px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-25{width:17px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-26{width:18px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-27{width:19px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-28{width:20px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-29{width:21px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-30{width:22px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-31{width:23px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-32{width:24px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-33{width:25px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-34{width:26px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-35{width:27px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-36{width:28px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-37{width:29px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-38{width:30px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-39{width:31px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-40{width:32px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-41{width:33px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-42{width:34px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-43{width:35px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-44{width:36px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-45{width:37px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-46{width:38px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-47{width:39px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-48{width:40px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-49{width:41px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-50{width:42px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-51{width:43px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-52{width:44px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-53{width:45px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-54{width:46px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-55{width:47px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-56{width:48px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-57{width:49px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-58{width:50px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-59{width:51px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-60{width:52px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-61{width:53px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-62{width:54px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-63{width:55px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-64{width:56px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-65{width:57px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-66{width:58px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-67{width:59px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-68{width:60px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-69{width:61px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-70{width:62px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-71{width:63px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-72{width:64px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-73{width:65px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-74{width:66px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-75{width:67px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-76{width:68px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-77{width:69px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-78{width:70px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-79{width:71px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-80{width:72px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-81{width:73px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-82{width:74px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-83{width:75px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-84{width:76px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-85{width:77px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-86{width:78px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-87{width:79px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-88{width:80px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-89{width:81px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-90{width:82px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-91{width:83px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-92{width:84px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-93{width:85px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-94{width:86px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-95{width:87px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-96{width:88px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-97{width:89px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-98{width:90px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-99{width:91px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-100{width:92px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-101{width:93px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-102{width:94px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-103{width:95px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-104{width:96px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-105{width:97px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-106{width:98px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-107{width:99px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-108{width:100px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-109{width:101px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-110{width:102px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-111{width:103px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-112{width:104px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-113{width:105px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-114{width:106px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-115{width:107px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-116{width:108px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-117{width:109px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-118{width:110px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-119{width:111px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-120{width:112px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-121{width:113px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-122{width:114px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-123{width:115px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-124{width:116px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-125{width:117px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-126{width:118px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-127{width:119px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-128{width:120px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-129{width:121px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-130{width:122px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-131{width:123px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-132{width:124px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-133{width:125px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-134{width:126px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-135{width:127px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-136{width:128px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-137{width:129px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-138{width:130px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-139{width:131px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-140{width:132px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-141{width:133px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-142{width:134px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-143{width:135px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-144{width:136px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-145{width:137px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-146{width:138px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-147{width:139px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-148{width:140px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-149{width:141px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-150{width:142px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-151{width:143px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-152{width:144px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-153{width:145px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-154{width:146px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-155{width:147px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-156{width:148px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-157{width:149px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-158{width:150px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-159{width:151px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-160{width:152px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-161{width:153px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-162{width:154px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-163{width:155px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-164{width:156px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-165{width:157px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-166{width:158px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-167{width:159px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-168{width:160px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-169{width:161px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-170{width:162px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-171{width:163px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-172{width:164px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-173{width:165px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-174{width:166px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-175{width:167px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-176{width:168px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-177{width:169px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-178{width:170px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-179{width:171px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-180{width:172px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-181{width:173px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-182{width:174px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-183{width:175px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-184{width:176px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-185{width:177px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-186{width:178px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-187{width:179px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-188{width:180px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-189{width:181px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-190{width:182px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-191{width:183px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-192{width:184px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-193{width:185px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-194{width:186px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-195{width:187px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-196{width:188px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-197{width:189px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-198{width:190px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-199{width:191px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-200{width:192px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-201{width:193px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-202{width:194px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-203{width:195px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-204{width:196px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-205{width:197px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-206{width:198px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-207{width:199px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-208{width:200px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-209{width:201px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-210{width:202px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-211{width:203px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-212{width:204px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-213{width:205px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-214{width:206px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-215{width:207px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-216{width:208px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-217{width:209px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-218{width:210px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-219{width:211px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-220{width:212px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-221{width:213px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-222{width:214px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-223{width:215px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-224{width:216px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-225{width:217px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-226{width:218px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-227{width:219px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-228{width:220px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-229{width:221px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-230{width:222px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-231{width:223px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-232{width:224px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-233{width:225px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-234{width:226px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-235{width:227px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-236{width:228px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-237{width:229px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-238{width:230px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-239{width:231px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-240{width:232px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-241{width:233px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-242{width:234px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-243{width:235px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-244{width:236px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-245{width:237px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-246{width:238px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-247{width:239px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-248{width:240px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-249{width:241px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-250{width:242px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-251{width:243px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-252{width:244px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-253{width:245px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-254{width:246px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-255{width:247px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-256{width:248px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-257{width:249px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-258{width:250px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-259{width:251px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-260{width:252px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-261{width:253px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-262{width:254px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-263{width:255px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-264{width:256px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-265{width:257px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-266{width:258px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-267{width:259px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-268{width:260px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-269{width:261px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-270{width:262px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-271{width:263px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-272{width:264px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-273{width:265px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-274{width:266px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-275{width:267px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-276{width:268px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-277{width:269px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-278{width:270px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-279{width:271px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-280{width:272px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-281{width:273px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-282{width:274px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-283{width:275px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-284{width:276px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-285{width:277px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-286{width:278px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-287{width:279px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-288{width:280px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-289{width:281px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-290{width:282px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-291{width:283px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-292{width:284px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-293{width:285px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-294{width:286px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-295{width:287px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-296{width:288px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-297{width:289px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-298{width:290px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-299{width:291px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-300{width:292px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-301{width:293px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-302{width:294px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-303{width:295px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-304{width:296px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-305{width:297px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-306{width:298px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-307{width:299px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-308{width:300px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-309{width:301px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-310{width:302px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-311{width:303px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-312{width:304px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-313{width:305px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-314{width:306px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-315{width:307px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-316{width:308px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-317{width:309px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-318{width:310px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-319{width:311px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-320{width:312px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-321{width:313px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-322{width:314px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-323{width:315px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-324{width:316px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-325{width:317px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-326{width:318px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-327{width:319px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-328{width:320px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-329{width:321px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-330{width:322px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-331{width:323px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-332{width:324px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-333{width:325px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-334{width:326px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-335{width:327px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-336{width:328px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-337{width:329px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-338{width:330px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-339{width:331px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-340{width:332px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-341{width:333px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-342{width:334px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-343{width:335px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-344{width:336px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-345{width:337px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-346{width:338px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-347{width:339px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-348{width:340px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-349{width:341px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-350{width:342px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-351{width:343px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-352{width:344px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-353{width:345px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-354{width:346px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-355{width:347px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-356{width:348px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-357{width:349px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-358{width:350px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-359{width:351px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-360{width:352px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-361{width:353px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-362{width:354px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-363{width:355px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-364{width:356px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-365{width:357px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-366{width:358px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-367{width:359px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-368{width:360px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-369{width:361px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-370{width:362px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-371{width:363px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-372{width:364px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-373{width:365px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-374{width:366px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-375{width:367px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-376{width:368px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-377{width:369px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-378{width:370px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-379{width:371px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-380{width:372px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-381{width:373px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-382{width:374px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-383{width:375px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-384{width:376px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-385{width:377px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-386{width:378px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-387{width:379px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-388{width:380px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-389{width:381px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-390{width:382px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-391{width:383px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-392{width:384px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-393{width:385px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-394{width:386px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-395{width:387px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-396{width:388px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-397{width:389px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-398{width:390px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-399{width:391px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-400{width:392px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-401{width:393px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-402{width:394px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-403{width:395px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-404{width:396px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-405{width:397px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-406{width:398px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-407{width:399px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-408{width:400px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-409{width:401px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-410{width:402px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-411{width:403px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-412{width:404px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-413{width:405px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-414{width:406px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-415{width:407px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-416{width:408px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-417{width:409px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-418{width:410px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-419{width:411px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-420{width:412px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-421{width:413px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-422{width:414px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-423{width:415px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-424{width:416px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-425{width:417px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-426{width:418px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-427{width:419px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-428{width:420px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-429{width:421px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-430{width:422px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-431{width:423px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-432{width:424px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-433{width:425px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-434{width:426px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-435{width:427px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-436{width:428px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-437{width:429px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-438{width:430px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-439{width:431px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-440{width:432px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-441{width:433px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-442{width:434px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-443{width:435px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-444{width:436px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-445{width:437px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-446{width:438px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-447{width:439px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-448{width:440px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-449{width:441px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-450{width:442px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-451{width:443px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-452{width:444px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-453{width:445px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-454{width:446px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-455{width:447px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-456{width:448px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-457{width:449px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-458{width:450px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-459{width:451px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-460{width:452px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-461{width:453px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-462{width:454px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-463{width:455px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-464{width:456px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-465{width:457px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-466{width:458px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-467{width:459px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-468{width:460px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-469{width:461px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-470{width:462px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-471{width:463px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-472{width:464px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-473{width:465px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-474{width:466px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-475{width:467px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-476{width:468px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-477{width:469px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-478{width:470px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-479{width:471px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-480{width:472px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-481{width:473px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-482{width:474px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-483{width:475px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-484{width:476px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-485{width:477px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-486{width:478px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-487{width:479px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-488{width:480px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-489{width:481px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-490{width:482px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-491{width:483px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-492{width:484px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-493{width:485px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-494{width:486px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-495{width:487px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-496{width:488px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-497{width:489px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-498{width:490px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-499{width:491px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-500{width:492px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-501{width:493px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-502{width:494px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-503{width:495px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-504{width:496px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-505{width:497px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-506{width:498px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-507{width:499px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-508{width:500px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-509{width:501px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-510{width:502px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-511{width:503px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-512{width:504px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-513{width:505px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-514{width:506px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-515{width:507px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-516{width:508px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-517{width:509px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-518{width:510px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-519{width:511px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-520{width:512px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-521{width:513px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-522{width:514px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-523{width:515px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-524{width:516px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-525{width:517px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-526{width:518px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-527{width:519px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-528{width:520px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-529{width:521px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-530{width:522px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-531{width:523px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-532{width:524px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-533{width:525px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-534{width:526px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-535{width:527px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-536{width:528px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-537{width:529px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-538{width:530px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-539{width:531px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-540{width:532px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-541{width:533px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-542{width:534px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-543{width:535px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-544{width:536px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-545{width:537px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-546{width:538px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-547{width:539px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-548{width:540px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-549{width:541px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-550{width:542px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-551{width:543px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-552{width:544px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-553{width:545px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-554{width:546px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-555{width:547px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-556{width:548px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-557{width:549px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-558{width:550px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-559{width:551px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-560{width:552px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-561{width:553px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-562{width:554px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-563{width:555px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-564{width:556px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-565{width:557px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-566{width:558px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-567{width:559px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-568{width:560px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-569{width:561px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-570{width:562px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-571{width:563px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-572{width:564px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-573{width:565px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-574{width:566px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-575{width:567px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-576{width:568px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-577{width:569px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-578{width:570px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-579{width:571px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-580{width:572px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-581{width:573px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-582{width:574px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-583{width:575px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-584{width:576px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-585{width:577px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-586{width:578px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-587{width:579px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-588{width:580px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-589{width:581px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-590{width:582px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-591{width:583px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-592{width:584px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-593{width:585px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-594{width:586px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-595{width:587px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-596{width:588px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-597{width:589px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-598{width:590px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-599{width:591px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-600{width:592px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-601{width:593px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-602{width:594px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-603{width:595px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-604{width:596px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-605{width:597px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-606{width:598px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-607{width:599px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-608{width:600px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-609{width:601px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-610{width:602px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-611{width:603px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-612{width:604px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-613{width:605px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-614{width:606px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-615{width:607px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-616{width:608px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-617{width:609px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-618{width:610px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-619{width:611px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-620{width:612px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-621{width:613px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-622{width:614px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-623{width:615px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-624{width:616px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-625{width:617px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-626{width:618px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-627{width:619px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-628{width:620px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-629{width:621px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-630{width:622px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-631{width:623px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-632{width:624px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-633{width:625px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-634{width:626px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-635{width:627px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-636{width:628px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-637{width:629px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-638{width:630px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-639{width:631px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-640{width:632px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-641{width:633px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-642{width:634px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-643{width:635px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-644{width:636px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-645{width:637px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-646{width:638px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-647{width:639px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-648{width:640px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-649{width:641px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-650{width:642px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-651{width:643px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-652{width:644px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-653{width:645px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-654{width:646px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-655{width:647px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-656{width:648px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-657{width:649px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-658{width:650px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-659{width:651px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-660{width:652px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-661{width:653px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-662{width:654px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-663{width:655px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-664{width:656px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-665{width:657px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-666{width:658px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-667{width:659px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-668{width:660px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-669{width:661px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-670{width:662px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-671{width:663px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-672{width:664px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-673{width:665px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-674{width:666px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-675{width:667px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-676{width:668px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-677{width:669px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-678{width:670px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-679{width:671px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-680{width:672px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-681{width:673px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-682{width:674px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-683{width:675px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-684{width:676px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-685{width:677px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-686{width:678px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-687{width:679px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-688{width:680px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-689{width:681px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-690{width:682px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-691{width:683px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-692{width:684px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-693{width:685px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-694{width:686px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-695{width:687px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-696{width:688px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-697{width:689px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-698{width:690px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-699{width:691px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-700{width:692px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-701{width:693px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-702{width:694px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-703{width:695px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-704{width:696px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-705{width:697px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-706{width:698px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-707{width:699px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-708{width:700px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-709{width:701px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-710{width:702px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-711{width:703px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-712{width:704px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-713{width:705px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-714{width:706px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-715{width:707px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-716{width:708px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-717{width:709px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-718{width:710px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-719{width:711px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-720{width:712px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-721{width:713px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-722{width:714px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-723{width:715px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-724{width:716px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-725{width:717px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-726{width:718px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-727{width:719px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-728{width:720px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-729{width:721px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-730{width:722px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-731{width:723px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-732{width:724px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-733{width:725px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-734{width:726px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-735{width:727px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-736{width:728px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-737{width:729px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-738{width:730px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-739{width:731px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-740{width:732px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-741{width:733px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-742{width:734px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-743{width:735px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-744{width:736px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-745{width:737px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-746{width:738px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-747{width:739px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-748{width:740px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-749{width:741px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-750{width:742px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-751{width:743px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-752{width:744px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-753{width:745px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-754{width:746px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-755{width:747px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-756{width:748px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-757{width:749px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-758{width:750px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-759{width:751px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-760{width:752px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-761{width:753px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-762{width:754px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-763{width:755px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-764{width:756px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-765{width:757px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-766{width:758px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-767{width:759px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-768{width:760px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-769{width:761px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-770{width:762px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-771{width:763px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-772{width:764px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-773{width:765px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-774{width:766px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-775{width:767px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-776{width:768px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-777{width:769px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-778{width:770px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-779{width:771px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-780{width:772px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-781{width:773px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-782{width:774px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-783{width:775px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-784{width:776px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-785{width:777px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-786{width:778px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-787{width:779px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-788{width:780px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-789{width:781px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-790{width:782px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-791{width:783px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-792{width:784px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-793{width:785px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-794{width:786px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-795{width:787px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-796{width:788px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-797{width:789px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-798{width:790px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-799{width:791px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-800{width:792px}.ca-input-dropdown .popover-body .dropdown-options-divider.dispatch_dropdown{top:-4px}.ca-input-dropdown .popover-body .dropdown-options{position:relative;top:0;left:0;z-index:1000;max-height:190px;width:100%;background-color:#2f2f2f;border-radius:3px;padding:4px;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important;padding-right:0}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options-fuel-franchise{padding:4px;max-height:300px}.ca-input-dropdown .popover-body .dropdown-options.no-result-container{padding:6px 10px!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option{padding:3px 4px;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#dadada;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#dadada;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#dadada;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#dadada;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result{line-height:14px;font-size:11px;font-weight:700;color:#919191;height:auto!important;-webkit-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new{padding:4.5px 6px 4.5px 4px;font-size:11px;font-weight:700;color:#92b1f5;position:relative;transition:background .2s ease-in-out,color .2s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new:hover{color:#dadada;background:#3b73ed66}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active:after,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;user-select:none;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;user-select:none;color:#ccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ca-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:max-content!important;padding:0!important;margin:0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;column-gap:29px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter{max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ca-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ca-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ca-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ca-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ca-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ca-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ca-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ca-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ca-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ca-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ca-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ca-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ca-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ca-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ca-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ca-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ca-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ca-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ca-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ca-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ca-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ca-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ca-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ca-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ca-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ca-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ca-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ca-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ca-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ca-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ca-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ca-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ca-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ca-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ca-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ca-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ca-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ca-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ca-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ca-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ca-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ca-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ca-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ca-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ca-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ca-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ca-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ca-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ca-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ca-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ca-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ca-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ca-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ca-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ca-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ca-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ca-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ca-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ca-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ca-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ca-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ca-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ca-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ca-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ca-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ca-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ca-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ca-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ca-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ca-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ca-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ca-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ca-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ca-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ca-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ca-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ca-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ca-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ca-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ca-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ca-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ca-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ca-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ca-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ca-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ca-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ca-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ca-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ca-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ca-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ca-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ca-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ca-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ca-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ca-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ca-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ca-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ca-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ca-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ca-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ca-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ca-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ca-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ca-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ca-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ca-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ca-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ca-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ca-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ca-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ca-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ca-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ca-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ca-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ca-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ca-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ca-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ca-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ca-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ca-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ca-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ca-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ca-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ca-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ca-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ca-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ca-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ca-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ca-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ca-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ca-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ca-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ca-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ca-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ca-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ca-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ca-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ca-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ca-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ca-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ca-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ca-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ca-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ca-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ca-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ca-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ca-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ca-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ca-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ca-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ca-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ca-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ca-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ca-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ca-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ca-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ca-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ca-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ca-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ca-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ca-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ca-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ca-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ca-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ca-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ca-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ca-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ca-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ca-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ca-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ca-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ca-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ca-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ca-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ca-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ca-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ca-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ca-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ca-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ca-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ca-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ca-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ca-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ca-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ca-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ca-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ca-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ca-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ca-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ca-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ca-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ca-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ca-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ca-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ca-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ca-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ca-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ca-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ca-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ca-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ca-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ca-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ca-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ca-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ca-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ca-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ca-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ca-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ca-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ca-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ca-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ca-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ca-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ca-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ca-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ca-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ca-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ca-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ca-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ca-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ca-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ca-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ca-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ca-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ca-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ca-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ca-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ca-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ca-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ca-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ca-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ca-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ca-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ca-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ca-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ca-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ca-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ca-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ca-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ca-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ca-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ca-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ca-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ca-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ca-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ca-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ca-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ca-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ca-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ca-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ca-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ca-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ca-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ca-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ca-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ca-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ca-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ca-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ca-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ca-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ca-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ca-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ca-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ca-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ca-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ca-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ca-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ca-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ca-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ca-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ca-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ca-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ca-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ca-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ca-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ca-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ca-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ca-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ca-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ca-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ca-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ca-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ca-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ca-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ca-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ca-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ca-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ca-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ca-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ca-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ca-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ca-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ca-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ca-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ca-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ca-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ca-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ca-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ca-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ca-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ca-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ca-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ca-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ca-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ca-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ca-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ca-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ca-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ca-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ca-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ca-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ca-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ca-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ca-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ca-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ca-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ca-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ca-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ca-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ca-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ca-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ca-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ca-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ca-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ca-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ca-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ca-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ca-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ca-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ca-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ca-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ca-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ca-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ca-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ca-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ca-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ca-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ca-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ca-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ca-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ca-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ca-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ca-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ca-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ca-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ca-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ca-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ca-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ca-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ca-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ca-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ca-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ca-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ca-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ca-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ca-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ca-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ca-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ca-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ca-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ca-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ca-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ca-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ca-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ca-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ca-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ca-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ca-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ca-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ca-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ca-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ca-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ca-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ca-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ca-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ca-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ca-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ca-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ca-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ca-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ca-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ca-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ca-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ca-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ca-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ca-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ca-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ca-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ca-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ca-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ca-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ca-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ca-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ca-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ca-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ca-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ca-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ca-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ca-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ca-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ca-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ca-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ca-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ca-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ca-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ca-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ca-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ca-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ca-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ca-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ca-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ca-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ca-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ca-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ca-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ca-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ca-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ca-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ca-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ca-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ca-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ca-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ca-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ca-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ca-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ca-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ca-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ca-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ca-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ca-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ca-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ca-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ca-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ca-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ca-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ca-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ca-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ca-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ca-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ca-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ca-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ca-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ca-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ca-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ca-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ca-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ca-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ca-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ca-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ca-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ca-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ca-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ca-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ca-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ca-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ca-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ca-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ca-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ca-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ca-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ca-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ca-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ca-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ca-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ca-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ca-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ca-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ca-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ca-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ca-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ca-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ca-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ca-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ca-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ca-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ca-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ca-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ca-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ca-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ca-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ca-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ca-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ca-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ca-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ca-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ca-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ca-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ca-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ca-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ca-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ca-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ca-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ca-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ca-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ca-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ca-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ca-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ca-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ca-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ca-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ca-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ca-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ca-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ca-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ca-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ca-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ca-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ca-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ca-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ca-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ca-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ca-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ca-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ca-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ca-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ca-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ca-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ca-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ca-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ca-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ca-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ca-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ca-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ca-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ca-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ca-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ca-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ca-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ca-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ca-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ca-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ca-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ca-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ca-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ca-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ca-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ca-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ca-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ca-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ca-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ca-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ca-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ca-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ca-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ca-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ca-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ca-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ca-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ca-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ca-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ca-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ca-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ca-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ca-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ca-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ca-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ca-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ca-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ca-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ca-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ca-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ca-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ca-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ca-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ca-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ca-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ca-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ca-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ca-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ca-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ca-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ca-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ca-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ca-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ca-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ca-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ca-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ca-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ca-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ca-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ca-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ca-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ca-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ca-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ca-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ca-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ca-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ca-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ca-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ca-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ca-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ca-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ca-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ca-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ca-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ca-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ca-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ca-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ca-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ca-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ca-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ca-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ca-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ca-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ca-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ca-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ca-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ca-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ca-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ca-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ca-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ca-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ca-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ca-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ca-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ca-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ca-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ca-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ca-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ca-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ca-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ca-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ca-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ca-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ca-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ca-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ca-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ca-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ca-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ca-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ca-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ca-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ca-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ca-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ca-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ca-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ca-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ca-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ca-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ca-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ca-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ca-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ca-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ca-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ca-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ca-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ca-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ca-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ca-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ca-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ca-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ca-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ca-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ca-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ca-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ca-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ca-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ca-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ca-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ca-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ca-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ca-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ca-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ca-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ca-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ca-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ca-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ca-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ca-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ca-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ca-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ca-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ca-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ca-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ca-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ca-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ca-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ca-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ca-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ca-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ca-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ca-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ca-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ca-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ca-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ca-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ca-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ca-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ca-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ca-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ca-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ca-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ca-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ca-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ca-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ca-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ca-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ca-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ca-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ca-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ca-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ca-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ca-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ca-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ca-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ca-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ca-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ca-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ca-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ca-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ca-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ca-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ca-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ca-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ca-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ca-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ca-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ca-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ca-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ca-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ca-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ca-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ca-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ca-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ca-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ca-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ca-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ca-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ca-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ca-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ca-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ca-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ca-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ca-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ca-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ca-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ca-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ca-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ca-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ca-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ca-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ca-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ca-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ca-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ca-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ca-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ca-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ca-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ca-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ca-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ca-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ca-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ca-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ca-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ca-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ca-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ca-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ca-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ca-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ca-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ca-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ca-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ca-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ca-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ca-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ca-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ca-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ca-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ca-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ca-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ca-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ca-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ca-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ca-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ca-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ca-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ca-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ca-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ca-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ca-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ca-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ca-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ca-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ca-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ca-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ca-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ca-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ca-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ca-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ca-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ca-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ca-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ca-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ca-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ca-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ca-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ca-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ca-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{font-weight:500;color:#6f9ee0!important}.ca-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-main-tooltip{pointer-events:none}.app-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.tooltip-arrow{display:none!important}p{margin-bottom:0!important}.desc::selection{color:#6c6c6c;background:#6c6c6c33}.details-container-items{display:grid;grid-template-columns:440px repeat(4,335px);column-gap:12px;row-gap:12px;padding-bottom:12px}.details-component{display:grid;grid-auto-flow:column;column-gap:12px;row-gap:12px}.details-component .truck-wrapper{background-color:#dadada;border-radius:3px;margin-bottom:8px;width:440px;height:226px}.details-component .truck-wrapper p{margin:0}.details-component .truck-wrapper .truck-card-top{display:flex;align-items:center;justify-content:space-between}.details-component .truck-wrapper .truck-card-top .truck-card-name{color:#6c6c6c;font-size:18px;font-weight:500;position:relative;top:1px}.details-component .truck-wrapper .truck-card-top .truck-card-name::selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .details-page-row-5{margin-top:8px}.details-component .truck-wrapper .details-page-row-7{height:236px;width:100%;margin:22px 0}.details-component .truck-wrapper .show-details{font-size:12px;font-weight:700;color:#778fbb;text-decoration:none;-webkit-user-select:none;user-select:none}.details-component .truck-wrapper .show-details:hover{transition:all .3s ease-in-out;cursor:pointer;text-decoration:underline;color:#5673aa}.details-component .details-cards{border-radius:3px;overflow:hidden;width:440px;background-color:#dadada;padding:1px 8px 0}.details-component .details-cards.trailer-details-card{padding:0 8px}.assign-to{position:relative;left:-3px;display:grid;grid-template-columns:204px 204px;column-gap:12px;padding:0}.assign-to .assign-to-vehicle svg{width:55px;height:20px;display:flex;align-items:center}.assign-to .assign-to-vehicle svg:hover path{fill:#6c6c6c!important}.assign-to .assign-to-vehicle svg path{fill:#aaa}.assign-to .first .assign-to-vehicle svg{display:flex;align-items:center}.assign-to .first:hover .open-modal-icon{display:block;position:relative;bottom:4px;height:18px;width:18px}.assign-to .first:hover .open-modal-icon svg{cursor:pointer}.assign-to .first:hover .open-modal-icon svg:hover path{fill:#6c6c6c}.assign-to .second .icon-text-wrapper-cmp{position:relative;top:1px}.assign-to .second .assign-to-vehicle svg{display:flex}.assign-to .second:hover .open-modal-icon2{display:block;height:18px;width:18px;position:relative;bottom:4px}.assign-to .second:hover .open-modal-icon2 svg{cursor:pointer}.assign-to .second:hover .open-modal-icon2 svg:hover path{fill:#6c6c6c}.assign-to .assign-to-item{background-color:#f7f7f7;border-radius:2px;display:flex;align-items:center}.assign-to .assign-to-item .icon-text-wrapper-cmp{display:flex;align-items:center;padding-left:6px;margin:7px 0}.assign-to .assign-to-item .semi-tooltip{width:40px;height:20px}.assign-to .assign-to-item .semi-tooltip.typeDetails{width:auto}.assign-to .assign-to-item svg{fill:#aaa;object-fit:fill;height:20px;width:55px}.assign-to .assign-to-item .open-modal-icon,.assign-to .assign-to-item .open-modal-icon2{display:none}.assign-to .assign-to-item .assign-to-vehicle{margin-right:6px;position:relative;bottom:0}.assign-to .assign-to-item .assign-to-vehicle.backImage{margin-right:0}.assign-to .assign-to-item .assign-to-value{font-size:14px;font-weight:500;color:#424242;line-height:18px;padding:4px 6px}.assign-to .assign-to-item .assign-to-value::selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value.inactive-assignTo-value{color:#aaa;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.assign-to .assign-to-item p{margin:0!important}.card-container .card-body-cdl{display:grid;padding:0 4px}.card-container .card-body-cdl .card-item-name{font-size:11px;color:#2f2f2f;font-weight:700;height:15px;margin-bottom:2px}.card-container .card-body-cdl .card-item-name::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap;height:18px}.card-container .card-body-cdl .card-item-value::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value:hover{color:#2f2f2f}.card-container .card-body-cdl .card-row-issued{display:grid;grid-template-columns:32px 32px 32px;column-gap:49px;margin-top:12px}.card-container .card-body-cdl .card-row-endor{display:grid;grid-template-columns:repeat(auto-fit,minmax(20%,1fr));gap:6px;margin-bottom:4px}.card-container .card-body-cdl .card-row-progress{margin-top:8px}.card-container .card-body-cdl .endorsement{margin-top:12px}.perfomance{display:flex!important;flex-direction:column}.perfomance .common-template-item-name{font-size:14px!important;font-weight:600!important}.perfomance .common-template-item-value{font-size:18px!important;font-weight:600!important}.card-pdf{padding:0 5px;margin-bottom:12px}.card-pdf.extended{margin-bottom:30px}.card-pdf.disabled{height:0!important;margin:0!important;padding:0!important}.status-container{padding-top:12px;display:flex;flex-direction:column;margin-bottom:-12px!important}.status-container .status-header{display:flex;justify-content:space-between;align-items:center}.status-container .status-header .status-item{height:18px}.status-container .status-header .status-item .p-status{font-size:14px;font-weight:700;color:#2f2f2f}.status-container .status-header .status-item .p-status::selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status .note-textarea{color:#6c6c6c!important;font-weight:500!important}.status-container .status-header .status-item .p-status .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::selection,.status-container .status-header .status-item .p-status .note-textarea div::selection,.status-container .status-header .status-item .p-status .note-textarea b::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-items .item-wrapper{display:grid;grid-template-columns:119px 137px 78px;grid-column-gap:45px;align-content:center;justify-content:center}.status-container .status-items .item-wrapper .svg-text{display:flex;align-items:center}.status-container .status-items .item-wrapper .svg-text .employment{margin-left:6px;position:relative;bottom:-2px}.status-container .status-items .item-wrapper .duration{text-align:right}.status-container .status-items .item-wrapper p{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap}.status-container .status-items .item-wrapper p::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::selection{color:#6c6c6c;background:#6c6c6c33}.charts-template{display:grid;grid-template-columns:215px 1fr;grid-row-gap:12px;row-gap:12px;margin-bottom:12px}.charts-template .charts-template-item{display:flex;flex-direction:column}.charts-template .charts-template-item .icon-name-item{display:flex;align-items:baseline;height:18px}.charts-template .charts-template-item .icon-name-item .charts-template-item-name{margin-right:4px}.charts-template .charts-template-item .charts-template-item-name{font-size:11px;color:#424242;font-weight:700;line-height:14px}.charts-template .charts-template-item .charts-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value{font-size:18px;font-weight:500;color:#424242;width:220px}.charts-template .charts-template-item .charts-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.second-progress{margin-bottom:16px}.truck-details-wrapper{padding:0 12px}.truck-details-wrapper .truck svg{width:132px;height:48px}.truck-details-wrapper .details-header-avatar{display:flex;align-items:center;height:48px;margin-top:14px}.truck-details-wrapper .details-header-avatar .model-name{flex-direction:column;margin-left:12px;margin-top:12px}.truck-details-wrapper .details-header-avatar .model-name p{font-size:18px;font-weight:500;color:#2f2f2f}.truck-details-wrapper .details-header-avatar .model-name p::selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name .svg-wrapper{height:14px;display:flex;align-items:flex-end;margin-bottom:2px}.truck-details-wrapper .details-header-avatar .model-name svg path{fill:#424242;object-fit:fill}.truck-details-wrapper .details-header-avatar .model-name svg rect{fill:#aaa}.truck-details-wrapper .details-header-data{margin-top:14px}.truck-details-wrapper .details-header-data .details-header-data-item{display:flex;height:18px;align-items:center}.truck-details-wrapper .details-header-data .details-header-data-item p{font-size:18px;color:#2f2f2f;font-weight:400}.truck-details-wrapper .details-header-data .details-header-data-item .header-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .details-header-data .second{margin-top:14px;margin-bottom:14px}.truck-details-wrapper .details-header-data .second p{font-size:14px!important;color:#2f2f2f;font-weight:400;position:relative;bottom:-1px}.truck-details-wrapper .details-header-data .second .date{margin-left:8px!important;position:relative}.truck-details-wrapper .color-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .vin-text{margin-left:6px!important;margin-right:37px;position:relative;bottom:-1px!important}.common-template{display:grid;grid-template-columns:202px 1fr;row-gap:12px}.common-template .common-item-wrapper{display:flex;align-items:center;height:40px}.common-template .common-template-item{display:flex;flex-direction:column}.common-template .common-template-item::selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item .icon-name-item{display:flex;align-items:center;height:18px}.common-template .common-template-item .icon-name-item .common-template-item-name{margin-left:6px}.common-template .common-template-item .common-template-item-name{font-size:11px;font-weight:600;color:#424242}.common-template .common-template-item .common-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value{font-size:14px;font-weight:500;color:#424242;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.common-template .common-template-item .common-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.divider{margin:0;height:2px;width:100%;border-radius:1px;background-color:#f3f3f3}.card_files_holder.active{min-height:448px}.note-cards .note-body{padding-left:0!important;padding-right:2px!important}.note-cards .note-body .note-textarea{color:#6c6c6c!important;font-weight:400!important;padding-bottom:12px!important}.note-cards .note-body .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::selection{color:#6c6c6c;background:#6c6c6c33}.no-data-driver-details{font-size:14px;font-weight:400;color:#919191}.no-data-driver-details::selection{color:#919191;background:#b7b7b733}.owner-items{display:flex;align-items:center;height:18px}.owner-items .card-icon{display:none;cursor:pointer;margin-left:6px}.owner-items .information-value{font-size:14px;font-weight:400;color:#6c6c6c;margin-left:6px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.owner-items .information-value::selection{color:#6c6c6c;background:#6c6c6c33}.owner-items:hover .card-icon{display:flex}.copied .vin-text,.copied .information-value{animation-duration:1.5s;animation-name:change}.copied .card-icon svg path{animation-duration:1.5s;animation-name:changeSVG}.copied .card-icon svg path:hover{animation-duration:1.5s;animation-name:changeSVG}.hide-show{font-size:14px;color:#6d82c7;font-weight:600;margin-left:6px;cursor:pointer}.hide-show::selection{color:#6d82c7;background:#536bc233}.hide-show:hover{color:#536bc2}.bind-height{max-height:-moz-fit-content!important;max-height:fit-content!important}.card-width{width:335px}.icons-details{margin-right:6px}.date-details-svg{margin-left:29px}.note-details-holder{padding-right:6px;padding-left:3px}.note-details-holder .note-container .note-header.active .note-label{color:#6c6c6c!important}.note-details-holder .note-container .note-header .note_upper_hold svg path{fill:#919191}.note-details-holder .note-container .note-header .note_upper_hold .rotate svg path{fill:#aaa}.boldSanVin{font-weight:800}@media (max-width: 1910px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,320px)}.card-width{width:320px}.repair-details-container,.repair-details-cmp{grid-template-columns:440px 712px 320px 260px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 145px!important}.repair-container{width:712px!important}.repaired-vehicle-container{width:320px!important}.likes-count-container{width:260px}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 50px 46px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 79px 52px 66px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 325px!important}.counter-text{padding:0 0 0 8px!important}.reason-span{display:none}app-shipper-details .load,app-broker-details .load{width:712px!important}app-shipper-details .contact,app-broker-details .contact{width:320px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:320px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:260px!important}app-shipper-details .review-container,app-broker-details .review-container{width:260px!important}}@media (max-width: 1870px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,300px)}.card-width{width:300px}}@media (max-width: 1850px){.repair-details-container,.repair-details-cmp{grid-template-columns:430px 702px 310px 250px!important}.repair-general-holder{width:430px}.repair-container{width:702px!important}.repaired-vehicle-container{width:310px!important}.likes-count-container{width:250px}.repair-component{height:max-content}.repair-component .repair-cards{width:430px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 37px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 40px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:430px!important}app-shipper-details .load,app-broker-details .load{width:702px!important}app-shipper-details .contact,app-broker-details .contact{width:310px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:310px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:250px!important}app-shipper-details .review-container,app-broker-details .review-container{width:250px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:407px!important}}@media (max-width: 1820px){.repair-details-container,.repair-details-cmp{grid-template-columns:420px 692px 300px 240px!important}.repair-general-holder{width:420px}.repair-container{width:692px!important}.repaired-vehicle-container{width:300px!important}.likes-count-container{width:240px}.repair-component .repair-cards{width:420px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 100px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 99px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 27px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 29px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:420px!important}app-shipper-details .load,app-broker-details .load{width:692px!important}app-shipper-details .contact,app-broker-details .contact{width:300px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:300px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:240px!important}app-shipper-details .review-container,app-broker-details .review-container{width:240px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:396px!important}}@media (max-width: 1780px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,280px)}.card-width{width:280px}.request-header-container{width:26px!important;height:26px!important}.request-header-container p{display:none}.request-header-container svg-icon{display:flex!important;transition:background .2s ease-in}.request-header-container svg-icon:hover{background:#e9effd!important}.request-header-container svg-icon:hover svg path{fill:#0b49d1}.repair-details-container{grid-template-columns:475px 760px 410px 0px!important}.repair-general-holder{width:475px}.repair-container{width:760px!important}.repaired-vehicle-container{width:410px!important;max-width:410px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:475px!important}.repair-component .repair-cards{width:475px!important}.repair-details-cmp{grid-template-columns:475px 760px 410px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:-moz-fit-content;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:410px!important;max-width:410px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:410px!important;max-width:410px!important}.purchase-template{display:grid;grid-template-columns:repeat(2,50%)!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:475px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:475px!important;max-width:475px!important}app-shipper-details .load,app-broker-details .load{width:760px!important}app-shipper-details .contact,app-broker-details .contact{width:410px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:410px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:410px!important}app-shipper-details .review-container,app-broker-details .review-container{width:410px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:450px!important}}@media (max-width: 1760px){.repair-details-container{grid-template-columns:455px 740px 390px 0px!important}.repair-general-holder{width:455px}.repair-container{width:740px!important}.repaired-vehicle-container{width:390px!important;max-width:390px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:455px!important}.repair-component .repair-cards{width:455px!important}.repair-details-cmp{grid-template-columns:455px 740px 390px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:-moz-fit-content;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:390px!important;max-width:390px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:390px!important;max-width:390px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:455px!important;max-width:455px!important}app-shipper-details .load,app-broker-details .load{width:740px!important}app-shipper-details .contact,app-broker-details .contact{width:390px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:390px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:390px!important}app-shipper-details .review-container,app-broker-details .review-container{width:390px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:430px!important}}@media (max-width: 1700px){.details-container-items{display:grid;grid-template-columns:420px repeat(4,270px)}.card-width{width:270px}.cards-item-wrapper-1,.details-component .details-cards{width:420px}.repair-details-container{grid-template-columns:400px 740px 390px 0px!important}.repair-general-holder{width:400px}.details-header-wrapper-reapirShop{max-width:400px!important}.repair-component .repair-cards{width:400px!important}.repair-details-cmp{grid-template-columns:400px 740px 390px 0px!important}.longText{display:none!important}.shortText{display:block!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 105px 92px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:400px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:377px!important}.details-container-items{display:grid;grid-template-columns:400px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:400px}.assign-to{grid-template-columns:185px 185px}}@media (max-width: 1640px){.repair-details-container{grid-template-columns:400px 720px 370px 0px!important}.repair-container{width:720px!important}.repaired-vehicle-container{width:370px!important;max-width:370px!important}.repair-details-cmp{grid-template-columns:400px 720px 370px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:370px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:370px!important;max-width:370px!important}app-shipper-details .load,app-broker-details .load{width:720px!important}app-shipper-details .contact,app-broker-details .contact{width:370px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:370px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:370px!important}app-shipper-details .review-container,app-broker-details .review-container{width:370px!important}}@media (max-width: 1610px){.details-container-items{display:grid;grid-template-columns:380px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:380px}.assign-to{grid-template-columns:175px 175px}.repair-details-container{grid-template-columns:380px 710px 350px 0px!important}.repair-container{width:710px!important}.repaired-vehicle-container{width:350px!important;max-width:350px!important}.repair-details-cmp{grid-template-columns:380px 710px 350px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:350px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:350px!important;max-width:350px!important}.repair-component .repair-cards{width:380px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 86px 92px!important}app-shipper-details-card .hours-template{grid-template-columns:150px 150px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:380px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:356px!important}}@media (max-width: 1590px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,260px)}.details-component .details-cards,.cards-item-wrapper-1{width:360px}.card-width{width:260px}.reason-span{display:none}.assign-to{grid-template-columns:162px 162px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 710px 350px 0px!important}.repair-component .repair-cards{width:360px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 91px 70px!important}app-shipper-details-card .hours-template{grid-template-columns:140px 140px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:336px!important}}@media (max-width: 1440px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,250px)}.card-width{width:250px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-container{width:700px!important}.repaired-vehicle-container{width:272!important;max-width:272px!important}.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{width:272px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:272px!important;max-width:272px!important}.repair-component .repair-cards{width:360px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:35px 40px 25px 35px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:45px 68px 27px 66px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:700px!important}app-shipper-details .contact,app-broker-details .contact{width:272px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:272px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:272px!important}app-shipper-details .review-container,app-broker-details .review-container{width:272px!important}}@media (max-width: 1500px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,237px)}.card-width{width:237px}}.datetime-dropdown-holder{position:relative;top:16px}.picker_input_holder{display:flex;min-width:146px;max-width:260px;border-radius:3px;background-color:#f9f9f9}.picker_input_holder input{width:100%;padding-left:6px;border:none;outline:none;background-color:transparent;caret-color:transparent;-webkit-appearance:none}.picker_input_holder input:focus{outline:none;border:none}.picker_input_holder input::placeholder{color:#919191!important}.picker_input_holder .toggle_picker{display:flex;justify-content:center;align-items:center;width:26px;height:26px;min-width:26px;background-color:#eee;border-radius:3px;cursor:pointer}.picker_input_holder .toggle_picker:after{display:none}.picker_input_holder .toggle_picker svg-icon{display:flex}.picker_input_holder .toggle_picker svg-icon svg{width:12px;height:10px}.picker_input_holder .toggle_picker svg-icon svg path{fill:#919191}.picker_input_holder:hover{opacity:1}.picker_input_holder.active{background-color:#6c6c6c;border-left:3px solid #6c6c6c}.picker_input_holder.active .toggle_picker{background-color:#919191}.picker_input_holder.active .toggle_picker svg-icon{display:flex}.picker_input_holder.active .toggle_picker svg-icon svg{transform:rotate(180deg)}.picker_input_holder.active .toggle_picker svg-icon svg path{fill:#dadada}.picker_input_holder.active input::placeholder{color:#dadada!important}.pickers_holder{position:absolute;top:3px!important;width:auto!important;padding:0;background-color:#dadada;box-shadow:0 0 4px #00000026;z-index:999;border-radius:3px;overflow:hidden}.pickers_holder .time_picker{width:167px}.pickers_holder .date_picker{display:flex}.pickers_holder .date_picker .month-years-size{position:relative;width:48px;background-color:#f9f9f9}.pickers_holder .date_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:24px;transform:translateY(-50%);background-color:#dadada}.pickers_holder .date_picker .month-years-size .month-year-item{display:flex;align-items:center;justify-content:center;height:24px;font-size:14px;color:#919191;font-weight:400;text-align:center;text-transform:uppercase}.pickers_holder .date_picker .month-years-size .month-year-item .left-year-show{color:#919191;font-size:14px;font-weight:700}.pickers_holder .date_picker .month-years-size .month-year-item:hover{color:#6c6c6c;cursor:pointer;background-color:#f1f1f1;border-radius:2px}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 2px 0}.pickers_holder .date_picker .full-calendars-list{flex:1;max-height:290px;min-width:264px;overflow:hidden}.pickers_holder .date_picker .full-calendars-list .full_list{height:100%}.pickers_holder .date_picker .full-calendars-list .full_list .selfScroll{width:100%;height:100%}.pickers_holder .time_picker .time_picker_head{height:36px;display:flex;padding:0 12px;align-items:center;justify-content:space-between}.pickers_holder .time_picker .time_picker_head .selected_time{font-size:14px;font-weight:800;color:#6c6c6c}.pickers_holder .time_picker .time_picker_head .sel_now{color:#536bc2;font-size:14px;font-weight:700}.pickers_holder .time_picker .time_picker_head .sel_now:hover{cursor:pointer;color:#5673aa}.pickers_holder .time_picker .time_picker_body .picker_body_head{height:22px;display:flex;align-items:center;background-color:#f7f7f7;margin:0 4px 2px;border-radius:2px}.pickers_holder .time_picker .time_picker_body .picker_body_head div{flex:0 0 33%;text-align:center;font-size:10px;font-weight:700;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body_head div.active{color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body{position:relative;height:155px;display:flex;justify-content:center}.pickers_holder .time_picker .time_picker_body .picker_body:after{content:\"\";position:absolute;width:100%;height:31px;top:-1px;left:0;pointer-events:none;background:linear-gradient(to bottom,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body:before{content:\"\";position:absolute;pointer-events:none;width:100%;height:31px;bottom:-1px;left:0;background:linear-gradient(to top,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line{position:absolute;width:calc(100% - 8px);height:22px;top:50%;left:4px;border-radius:2px;transform:translateY(-50%);background-color:#9191911a}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line span{position:absolute;left:30%;font-size:14px;font-weight:400;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers{position:relative;height:22px;flex:0 0 33.3%;height:100%;padding:67px 0;margin:0 7px;overflow:auto;text-align:center;-ms-overflow-style:none;scrollbar-width:none;z-index:10}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:first-child{flex:0 0 28px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(2){flex:0 0 36px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(3){flex:0 0 38px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers::-webkit-scrollbar{display:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{height:22px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#919191;font-weight:400;-webkit-user-select:none;user-select:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item:hover{color:#5673aa;cursor:pointer}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:hover{box-shadow:inset 0 0 4px #00000026}.pickers_holder .time_picker .picker_buttons{display:flex;padding:6px;justify-content:space-between}.pickers_holder .time_picker .picker_buttons .pick_button{display:flex;align-items:center;justify-content:center;height:32px;padding:0 12px;text-align:center;border-radius:2px;font-size:12px;font-weight:700;color:#919191b3}.pickers_holder .time_picker .picker_buttons .pick_button:hover{background-color:#f3f3f3;color:#919191;cursor:pointer}.pickers_holder .time_picker .picker_buttons .pick_button.set_button{width:57px;text-align:center;background-color:#6d82c7;color:#dadada}.pickers_holder .time_picker .picker_buttons .pick_button.set_button:hover{background-color:#536bc2}.pickers_holder.dark_picker{background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size{width:40px;background-color:#424242}.pickers_holder.dark_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:26px;transform:translateY(-50%);background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .month-year-item{height:22px;color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item .left-year-show{color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year{color:#dadada}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year .left-year-show{color:#dadada;font-weight:700}.pickers_holder.dark_picker .month-years-size .month-year-item:hover{color:#dadada;background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 4px 0}.pickers_holder.dark_picker .date_picker{margin:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list{min-width:184px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view{width:182px;padding-top:6px;background-color:#2f2f2f}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head{padding:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name{padding:0 4px;color:#dadada;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name .year_hold{margin-right:0;color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today{padding:0 4px;color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today:hover{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator{margin:12px 10px;color:#919191;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.current_year{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.full_calendar{margin-bottom:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px 4px;padding:0}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days .cal_day{width:22px;height:22px;margin:0;font-size:9px;color:#aaa;text-align:center}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;row-gap:12px;justify-content:unset;margin:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item{margin:0;height:22px;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item:hover:not(.current_month){background-color:#424242;color:#dadada;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item.current_month{color:#dadada;background-color:#3b73ed66;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list.current_year .month_list_item{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px;padding:0;height:auto}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day{width:22px;height:22px;margin:0;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#dadada;background-color:#3b73ed66;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#3b73ed66;color:#dadada;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.day_in_current_month{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.weekend_day_in_current_month{color:#ccc}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#424242;border-radius:2px;cursor:pointer;color:#dadada}.pickers_holder.dark_picker .time_picker{width:156px;margin:4px}.pickers_holder.dark_picker .time_picker .time_picker_head{height:18px;padding:0 4px;margin-bottom:4px}.pickers_holder.dark_picker .time_picker .time_picker_head .selected_time{color:#dadada;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_head .sel_now{color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;margin:0 0 4px;padding:2px;background:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head div{color:#aaa;font-size:9px;text-align:center;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body{height:176px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;padding:0 2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:before{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:after{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line{left:0;width:100%;background-color:#3b73ed33}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line{left:33.3%;width:1px;height:12px;margin-top:5px;background-color:#92b1f5;opacity:.4;border-radius:2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line.line_2{left:66.6%}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers{margin:0;padding:77px 0}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{color:#aaa;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item.active_item{color:#dadada}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons{display:grid;grid-template-columns:repeat(2,1fr);column-gap:4px;margin-top:6px;padding:4px 0 0;border-top:1px solid #424242}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button{height:18px;background-color:#424242;color:#dadada;font-size:11px;text-transform:uppercase;border-radius:1px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button.set_button{width:auto;background-color:#3b73ed}.calendar_view{width:260px;padding-top:12px;background-color:#dadada}.calendar_view .calendar_view_head{display:flex;justify-content:space-between;margin-bottom:12px;padding:0 12px}.calendar_view .calendar_view_head .month_name{font-size:12px;font-weight:700;color:#6c6c6c}.calendar_view .calendar_view_head .month_name .year_hold{margin-right:5px;text-transform:uppercase;color:#6c6c6c;cursor:pointer}.calendar_view .calendar_view_head .month_name .year_hold:hover{color:#919191}.calendar_view .calendar_view_head .today{font-size:12px;font-weight:700;color:#5673aab3;cursor:pointer}.calendar_view .calendar_view_head .today:hover{color:#3551b7}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport{height:230px;min-height:230px}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view .calendar_indicator{margin:12px;height:18px;font-size:12px;color:#6c6c6c66;font-weight:700}.calendar_view .calendars_list_view .calendar_month_days{padding:0 3px}.calendar_view .calendars_list_view .calendar_month_days.hideVisibility{visibility:hidden}.calendar_view .calendars_list_view .calendar_month_days .cal_day{width:24px;margin:0 6px;font-size:12px;font-weight:700;color:#b7b7b7}.calendar_view .calendars_list_view .calendar_days{height:140px;display:flex;flex-wrap:wrap;padding:0 3px}.calendar_view .calendars_list_view .calendar_days .calendar_day{display:flex;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;margin:0 6px;font-size:14px;font-weight:400;color:#6c6c6c}.calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#dadada;background-color:#919191;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#919191;color:#dadada;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#f7f7f7;border-radius:2px;cursor:pointer;color:#3c3c3c}.calendar_view .month_list{display:flex;flex-wrap:wrap;justify-content:space-around;height:140px}.calendar_view .month_list .month_list_item{flex:0 0 50px;height:24px;margin:0 10px;display:flex;align-items:center;justify-content:center;border-radius:3px;font-size:12px;color:#6c6c6c;font-weight:400}.calendar_view .month_list .month_list_item:hover:not(.current_month){background-color:#f7f7f7;color:#3c3c3c;border-radius:2px;cursor:pointer}.calendar_view .month_list .month_list_item.current_month{color:#3c3c3c;background-color:#f7f7f7;border-radius:2px;cursor:pointer}.dropdown{z-index:999!important}input[type=date]::-webkit-inner-spin-button,input[type=date]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}.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,.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container .ta-upload-file-footer .document_info_hold .file_size,.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-delete-text{font-weight:500!important}.ca-font-semi-bold,.ta-upload-file-container .ta-upload-file-content .ta-upload-file-number-of-pages{font-weight:600!important}.ca-font-bold,.tags_main_holder .tags_inner_holder .tag_options_holder .tag_name.checked,.tags_main_holder .remove_tag_holder .remove_tag,.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container .ta-upload-file-footer .document_info_hold,.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-btn,.ta-upload-file-container .ta-upload-file-content .ta-upload-file-tag{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext{font-weight:900!important}@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}}.ta-upload-file-container{width:148px;height:178px;border-radius:2px;grid-template-rows:160px 1fr;position:relative;transition:transform .3s ease-in-out;overflow:hidden}.ta-upload-file-container.modal{background-color:#f3f3f3}.ta-upload-file-container:hover,.ta-upload-file-container.keep_open{transition:transform .3s ease-in-out;background-color:#f3f3f3}.ta-upload-file-container:hover .ta-upload-file-header-review .ta-upload-action-download-review,.ta-upload-file-container:hover .ta-upload-file-header-review .ta-upload-file-action-leftside .ta-upload-action-mark-incorrect,.ta-upload-file-container:hover .ta-upload-file-header-review .ta-upload-action-mark-correct,.ta-upload-file-container.keep_open .ta-upload-file-header-review .ta-upload-action-download-review,.ta-upload-file-container.keep_open .ta-upload-file-header-review .ta-upload-file-action-leftside .ta-upload-action-mark-incorrect,.ta-upload-file-container.keep_open .ta-upload-file-header-review .ta-upload-action-mark-correct{opacity:1!important;pointer-events:all!important}.ta-upload-file-container.applicant_review{overflow:visible}.ta-upload-file-container.applicant_review .ta-upload-file-header-review .ta-upload-action-mark-incorrect{opacity:1!important;pointer-events:all!important}.ta-upload-file-container.annotation_hover .ta-upload-file-header-review .ta-upload-action-download-review{opacity:0!important;pointer-events:none!important}.ta-upload-file-container.applicant_feedback{overflow:visible}.ta-upload-file-container.applicant_feedback .ta-upload-file-header .ta-upload-file-action-rightside{opacity:0;pointer-events:none}.ta-upload-file-container.applicant_feedback .ta-upload-file-header .ta-upload-action-feedback-incorrect-mark,.ta-upload-file-container.applicant_feedback:hover .ta-upload-file-header .ta-upload-file-action-leftside,.ta-upload-file-container.applicant_feedback:hover .ta-upload-file-header .ta-upload-file-action-rightside{opacity:1!important;pointer-events:all!important}.ta-upload-file-container .ta-upload-file-header-review{position:absolute;top:4px;right:4px;width:140px;height:30px;z-index:10;-webkit-user-select:none;user-select:none}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-download-review,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-correct{width:30px;height:30px;line-height:15px;background-color:#6c6c6ce6;border-radius:1px;position:absolute;right:0;transition:transform .3s ease-in-out;cursor:pointer;opacity:0;pointer-events:none}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-download-review svg,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect svg,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-correct svg{height:18px;width:18px}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-download-review svg path,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect svg path,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-correct svg path{fill:#dadada}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-download-review:hover,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect:hover,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-correct:hover{background-color:#6c6c6c}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-download-review:hover svg path,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect:hover svg path,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-correct:hover svg path{fill:#fff}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect{right:4px}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect svg{height:24px;width:24px}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect svg rect{fill:transparent!important}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect.incorrect{background-color:#ef5350}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect.incorrect svg path{fill:#fff}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-correct{right:4px}.ta-upload-file-container .ta-upload-file-header-review .review-feedback-container{position:absolute;left:170px;top:8px}.ta-upload-file-container .ta-upload-file-header{position:absolute;top:4px;right:4px;width:100%;height:30px;z-index:10;-webkit-user-select:none;user-select:none}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside{opacity:0;width:30px;margin-left:8px;height:30px;border-radius:1px;background-color:#6c6c6ce6;text-align:center;padding:6px;cursor:pointer;transition:transform .1s ease-in-out}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside:focus{transition:transform .1s ease-in-out;opacity:1!important}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside .ta-upload-action-tag{width:100%;height:100%}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside .ta-upload-action-tag svg{display:flex;height:18px;width:18px}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside .ta-upload-action-tag svg path{fill:#dadada}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside .ta-upload-action-tag:hover{transition:transform .1s ease-in-out}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside .ta-upload-action-tag:hover svg path{fill:#fff}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside.active{transition:transform .1s ease-in-out;background-color:#424242}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside.active .ta-upload-action-tag svg path{fill:#fff}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside.no-action-tag{opacity:0;visibility:none;pointer-events:none!important}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside{padding:6px;gap:12px;width:60px;height:30px;text-align:center;border-radius:1px;background-color:#6c6c6ce6;cursor:pointer}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside.vertical-mode{display:block;width:30px;height:90px}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag{display:flex;align-items:center;justify-content:center;width:100%;height:30px;line-height:15px}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download svg,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete svg,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag svg{height:18px;width:18px}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download svg path,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete svg path,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag svg path{fill:#dadada}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download:hover,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete:hover,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag:hover{transition:transform .3s ease-in-out}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download:hover svg path,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete:hover svg path,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag:hover svg path{fill:#fff}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download.active,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete.active,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag.active{transition:transform .1s ease-in-out;background-color:#424242}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download.active svg path,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete.active svg path,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag.active svg path{fill:#fff}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download.no-action-tag,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete.no-action-tag,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag.no-action-tag{opacity:0;height:0;padding:0;pointer-events:none!important}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside.feedback-mode{position:relative;left:15px}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside.small{width:30px;height:30px}.ta-upload-file-container .ta-upload-file-header .ta-upload-action-feedback-incorrect-mark{width:30px;height:30px;border-radius:2px;background-color:#ef5350e6;cursor:pointer;transition:transform .3s ease-in-out;opacity:0;pointer-events:none}.ta-upload-file-container .ta-upload-file-header .ta-upload-action-feedback-incorrect-mark svg-icon{width:18px;height:24px}.ta-upload-file-container .ta-upload-file-header .ta-upload-action-feedback-incorrect-mark:hover{background-color:#ef5350}.ta-upload-file-container .ta-upload-file-content{overflow:hidden;width:140px;height:140px;margin:4px;position:relative}.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container{display:flex;align-items:center;justify-content:center;background-color:transparent!important;width:160px!important;height:160px!important;border-radius:1px!important;top:4px!important;-webkit-user-select:none!important;user-select:none!important;z-index:2}.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .canvasWrapper{box-shadow:0 0 4px #00000026}.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .textLayer span,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .textLayer input,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .textLayer textarea,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .annotationLayer section,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .annotationLayer section input,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .annotationLayer section textarea{background-image:none!important;pointer-events:none!important;-webkit-user-select:none!important;user-select:none!important;cursor:default!important}.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container canvas{width:160px!important;max-height:160px!important;margin:0!important;border-radius:1px!important}.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container canvas:not(:first-child){opacity:0;height:0!important}.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .pdfViewer{box-shadow:0 0 4px #00000026}.ta-upload-file-container .ta-upload-file-content .image_main_holder{height:148px}.ta-upload-file-container .ta-upload-file-content .image_main_holder .spinner{position:absolute}.ta-upload-file-container .ta-upload-file-content .image_main_holder .ta-upload-file-image{max-width:160px;max-height:157px;object-fit:fill;border-radius:1px;vertical-align:middle;-webkit-user-select:none!important;user-select:none!important;box-shadow:0 0 4px #00000026;z-index:2}.ta-upload-file-container .ta-upload-file-content .image_main_holder .ta-upload-file-image.details_image{left:49%;max-width:276px;max-height:276px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.company-details-pdf{width:378px;height:378px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.company-details-pdf .ta-upload-file-image{max-width:378px;max-height:378px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.todo-details{height:186px;width:186px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.table-details{margin-top:4px;width:192px;height:188px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.table-details .ta-upload-file-image{max-width:192px;max-height:188px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.driver-card-pdf{margin-top:4px;width:408px;height:408px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.driver-card-pdf .ta-upload-file-image{max-width:408px;max-height:408px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.driver-details-pdf{margin-top:4px;width:308px;height:306px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.driver-details-pdf .ta-upload-file-image{max-width:308px;max-height:306px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.company-documents{height:289px;width:294px;margin-top:4px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.company-documents .ta-upload-file-image{max-width:294px;max-height:294px}.ta-upload-file-container .ta-upload-file-content .ta-upload-file-number-of-pages{position:absolute;bottom:-4px;left:0;height:18px;text-align:center;padding:2px 6px;border-radius:2px;background-color:#6c6c6ce6;color:#fff;font-size:11px;line-height:15px;-webkit-user-select:none;user-select:none}.ta-upload-file-container .ta-upload-file-content .ta-upload-file-tag{max-width:100%;height:18px;border-radius:1px;background-color:#3b73ed66;color:#fff;font-size:11px;bottom:20px;position:absolute;left:0;padding:2px 4px;opacity:1;-webkit-user-select:none!important;user-select:none!important;z-index:10;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.ta-upload-file-container .ta-upload-file-content .ta-upload-file-tag.tagRemoving{opacity:0}.ta-upload-file-container .ta-upload-file-content .ta-upload-file-tag span{line-height:14px}.ta-upload-file-container .ta-upload-file-content .ta-upload-file-tag.no-tag{background-color:#919191!important}.ta-upload-file-container .ta-upload-file-content .ta-upload-file-tag:hover{transition:transform .3s ease-in-out;cursor:auto!important}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf,.ta-upload-file-container .ta-upload-file-content.landscape-details-view,.ta-upload-file-container .ta-upload-file-content.todo-details,.ta-upload-file-container .ta-upload-file-content.company-details-pdf,.ta-upload-file-container .ta-upload-file-content.modals,.ta-upload-file-container .ta-upload-file-content.table-details,.ta-upload-file-container .ta-upload-file-content.company-documents{position:relative}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.landscape-details-view ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.todo-details ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.company-details-pdf ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.modals ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.table-details ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.company-documents ::ng-deep .ng2-pdf-viewer-container{box-shadow:0 0 4px #00000026;overflow:hidden!important}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container{overflow:visible!important;background-color:transparent!important;border-radius:1px!important}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container canvas{margin:0!important;border-radius:1px!important;width:auto!important}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container canvas:not(:first-child){opacity:0;height:0!important}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf{width:312px;height:312px}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container{width:304px!important;height:304px!important}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container canvas{max-width:304px!important;max-height:304px!important;min-width:229px}.ta-upload-file-container .ta-upload-file-content.company-documents{width:302px;height:332px}.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container{width:294px!important;height:294px!important}.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container canvas{max-width:294px!important;max-height:294px!important;min-width:228px}.ta-upload-file-container .ta-upload-file-content.modals{width:140px;cursor:pointer;height:148px}.ta-upload-file-container .ta-upload-file-content.modals ::ng-deep .ng2-pdf-viewer-container{right:20px;width:100px;box-shadow:0 0 4px #00000026;overflow:hidden!important}.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container{box-shadow:0 0 4px #00000026;width:159px!important;height:156px!important}.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container canvas{box-shadow:0 0 4px #00000026;max-width:156px!important;max-height:156px!important;min-width:120px}.ta-upload-file-container .ta-upload-file-content.driver-card-pdf{width:416px;height:416px}.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container{width:408px!important;height:408px!important}.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container canvas{max-width:408px!important;max-height:408px!important;min-width:314px}.ta-upload-file-container .ta-upload-file-content.landscape-details-view{width:312px;max-height:200px;bottom:4px}.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container{overflow:hidden!important;width:304px!important;max-height:192px!important}.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container canvas{overflow:hidden!important;max-width:304px!important;max-height:192px!important;min-width:304px}.ta-upload-file-container .ta-upload-file-content.todo-details{height:186px;left:21px}.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container{overflow:hidden!important;width:186px!important;height:186px!important;border-radius:1px!important}.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container canvas{overflow:hidden!important;max-width:186px!important;max-height:186px!important;min-width:150px}.ta-upload-file-container .ta-upload-file-content.table-details{width:200px;height:200px}.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container{overflow:hidden!important;width:192px!important;height:192px!important;border-radius:1px!important}.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container canvas{overflow:hidden!important;max-width:192px!important;max-height:192px!important;min-width:150px}.ta-upload-file-container .ta-upload-file-content.company-details-pdf{width:378px;height:378px}.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container{overflow:hidden!important;width:370px!important;height:370px!important;border-radius:1px!important}.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container canvas{max-width:370px!important;max-height:370px!important;min-width:229px}.ta-upload-file-container .ta-upload-file-delete-template{position:absolute;gap:4px;border-radius:2px;top:0;left:0;padding:4px;z-index:20;width:100%;height:100%;background-color:#f3f3f3e6}.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-delete-text{font-size:14px;line-height:18px;color:#424242;width:116px;word-wrap:break-word;text-align:center;margin:18px 12px 20px}.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-delete-text::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-btn{width:140px;height:22px;border-radius:2px;background-color:#fff;color:#6c6c6c;font-size:11px;line-height:14px;text-align:center;cursor:pointer;padding:4px 0;-webkit-user-select:none;user-select:none}.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-btn-delete{color:#df3c3c}.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-btn-delete:hover{background-color:#df3c3c!important;color:#fff;transition:transform .3s ease-in-out}.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-btn-cancel:hover{background-color:#6c6c6c!important;color:#fff;transition:transform .3s ease-in-out}.ta-upload-file-container .ta-upload-file-delete-template.company-documents{background-color:#ffffffe6}.ta-upload-file-container .ta-upload-file-delete-template.company-documents .ta-upload-file-btn{background-color:#f3f3f3}.ta-upload-file-container .ta-upload-file-footer{position:relative;height:26px;width:180px;z-index:30}.ta-upload-file-container .ta-upload-file-footer p{margin:0}.ta-upload-file-container .ta-upload-file-footer.edit-mode{padding:0!important}.ta-upload-file-container .ta-upload-file-footer input{padding:4px!important}.ta-upload-file-container .ta-upload-file-footer .footer_info{position:absolute;left:4px;bottom:30px}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext{width:32px;height:18px;text-align:center;border-radius:1px;margin-right:4px;font-size:11px;color:#fff;line-height:18px;-webkit-user-select:none;user-select:none;text-transform:uppercase}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-png{background:#f89b2e66}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover{background-color:#fab15c}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf{background-color:#df3c3c66}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover{background-color:#e66767}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext:hover{transition:transform .3s ease-in-out;cursor:auto!important}.ta-upload-file-container .ta-upload-file-footer .document_info_hold{padding:2px 6px;background-color:#91919166!important;color:#fff;border-radius:1px;font-size:11px;line-height:14px;-webkit-user-select:none;user-select:none}.ta-upload-file-container .ta-upload-file-footer .document_info_hold .file_size.has_pages{margin-left:3px}.ta-upload-file-container .ta-upload-file-footer .ta-upload-file-name{flex:1;font-size:14px;color:#6c6c6c;max-width:161px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:100%;height:100%;padding:4px;line-height:18px}.ta-upload-file-container .ta-upload-file-footer .ta-upload-file-name::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.ta-upload-file-container .ta-upload-file-footer .ta-upload-file-name.details_title{max-width:100%}.ta-upload-file-container .ta-upload-file-footer .ta-upload-file-name.todo_title{max-width:192px}.ta-upload-file-container:hover,.ta-upload-file-container.keep_open{transition:transform .3s ease-in-out}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer,.ta-upload-file-container.todo-details .ta-upload-file-footer,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer,.ta-upload-file-container.modals .ta-upload-file-footer,.ta-upload-file-container.table-details .ta-upload-file-footer,.ta-upload-file-container.company-documents .ta-upload-file-footer{opacity:0;border-radius:2px;cursor:default;transition:.1s transform ease-in-out}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info{left:0!important}.ta-upload-file-container.driver-details-pdf .ta-upload-file-tag,.ta-upload-file-container.driver-card-pdf .ta-upload-file-tag,.ta-upload-file-container.landscape-details-view .ta-upload-file-tag,.ta-upload-file-container.todo-details .ta-upload-file-tag,.ta-upload-file-container.company-details-pdf .ta-upload-file-tag,.ta-upload-file-container.modals .ta-upload-file-tag,.ta-upload-file-container.table-details .ta-upload-file-tag,.ta-upload-file-container.company-documents .ta-upload-file-tag{opacity:0;transition:.1s transform ease-in-out}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer,.ta-upload-file-container.todo-details .ta-upload-file-footer,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer,.ta-upload-file-container.modals .ta-upload-file-footer,.ta-upload-file-container.table-details .ta-upload-file-footer,.ta-upload-file-container.company-documents .ta-upload-file-footer{opacity:0}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.todo-details .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.modals .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.table-details .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.company-documents .ta-upload-file-footer .ta-upload-file-name{background-color:#ffffffb3!important;transition:.1s transform ease-in-out}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.todo-details .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.modals .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.table-details .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.company-documents .ta-upload-file-footer .ta-upload-file-name:hover{transition:.1s transform ease-in-out;background-color:#ffffffe6!important}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-png{background-color:#ffb74d80}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover{background-color:#ffb74de6}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf{background-color:#ef535080}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover{background-color:#ef5350e6}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .document_info_hold{transition:.1s transform ease-in-out;padding:2px 6px;background-color:#91919166;color:#fff;border-radius:1px;font-size:11px;line-height:14px;-webkit-user-select:none;user-select:none}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages{margin-left:3px}.ta-upload-file-container.driver-details-pdf .ta-upload-file-tag,.ta-upload-file-container.driver-card-pdf .ta-upload-file-tag,.ta-upload-file-container.landscape-details-view .ta-upload-file-tag,.ta-upload-file-container.todo-details .ta-upload-file-tag,.ta-upload-file-container.company-details-pdf .ta-upload-file-tag,.ta-upload-file-container.modals .ta-upload-file-tag,.ta-upload-file-container.table-details .ta-upload-file-tag,.ta-upload-file-container.company-documents .ta-upload-file-tag{opacity:0;transition:.1s transform ease-in-out;background-color:#3b73ed66}.ta-upload-file-container.driver-details-pdf .ta-upload-file-tag:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-tag:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-tag:hover,.ta-upload-file-container.todo-details .ta-upload-file-tag:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-tag:hover,.ta-upload-file-container.modals .ta-upload-file-tag:hover,.ta-upload-file-container.table-details .ta-upload-file-tag:hover,.ta-upload-file-container.company-documents .ta-upload-file-tag:hover{transition:.1s transform ease-in-out;background-color:#6692f1}.ta-upload-file-container.driver-details-pdf .ta-upload-file-tag.default,.ta-upload-file-container.driver-card-pdf .ta-upload-file-tag.default,.ta-upload-file-container.landscape-details-view .ta-upload-file-tag.default,.ta-upload-file-container.todo-details .ta-upload-file-tag.default,.ta-upload-file-container.company-details-pdf .ta-upload-file-tag.default,.ta-upload-file-container.modals .ta-upload-file-tag.default,.ta-upload-file-container.table-details .ta-upload-file-tag.default,.ta-upload-file-container.company-documents .ta-upload-file-tag.default{background-color:#42424280}.ta-upload-file-container.driver-details-pdf .ta-upload-file-tag.default:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-tag.default:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-tag.default:hover,.ta-upload-file-container.todo-details .ta-upload-file-tag.default:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-tag.default:hover,.ta-upload-file-container.modals .ta-upload-file-tag.default:hover,.ta-upload-file-container.table-details .ta-upload-file-tag.default:hover,.ta-upload-file-container.company-documents .ta-upload-file-tag.default:hover{transition:.1s transform ease-in-out;background-color:#424242e6}.ta-upload-file-container.driver-details-pdf:hover .ta-upload-file-footer,.ta-upload-file-container.driver-card-pdf:hover .ta-upload-file-footer,.ta-upload-file-container.landscape-details-view:hover .ta-upload-file-footer,.ta-upload-file-container.todo-details:hover .ta-upload-file-footer,.ta-upload-file-container.company-details-pdf:hover .ta-upload-file-footer,.ta-upload-file-container.modals:hover .ta-upload-file-footer,.ta-upload-file-container.table-details:hover .ta-upload-file-footer,.ta-upload-file-container.company-documents:hover .ta-upload-file-footer{opacity:1;border-radius:1px}.ta-upload-file-container.driver-details-pdf:hover .ta-upload-file-tag,.ta-upload-file-container.driver-card-pdf:hover .ta-upload-file-tag,.ta-upload-file-container.landscape-details-view:hover .ta-upload-file-tag,.ta-upload-file-container.todo-details:hover .ta-upload-file-tag,.ta-upload-file-container.company-details-pdf:hover .ta-upload-file-tag,.ta-upload-file-container.modals:hover .ta-upload-file-tag,.ta-upload-file-container.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.company-documents:hover .ta-upload-file-tag{opacity:1}.ta-upload-file-container.driver-details-pdf.table-details .ta-upload-file-tag,.ta-upload-file-container.driver-card-pdf.table-details .ta-upload-file-tag,.ta-upload-file-container.landscape-details-view.table-details .ta-upload-file-tag,.ta-upload-file-container.todo-details.table-details .ta-upload-file-tag,.ta-upload-file-container.company-details-pdf.table-details .ta-upload-file-tag,.ta-upload-file-container.modals.table-details .ta-upload-file-tag,.ta-upload-file-container.table-details.table-details .ta-upload-file-tag,.ta-upload-file-container.company-documents.table-details .ta-upload-file-tag{opacity:1!important;bottom:8px!important}.ta-upload-file-container.driver-details-pdf.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.driver-card-pdf.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.landscape-details-view.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.todo-details.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.company-details-pdf.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.modals.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.table-details.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.company-documents.table-details:hover .ta-upload-file-tag{bottom:56px!important}.ta-upload-file-container.modals,.ta-upload-file-container.company-documents,.ta-upload-file-container.keep_open_modals,.ta-upload-file-container.todo-details{background-color:#eee!important}.ta-upload-file-container.modals .ta-upload-file-footer,.ta-upload-file-container.company-documents .ta-upload-file-footer,.ta-upload-file-container.keep_open_modals .ta-upload-file-footer,.ta-upload-file-container.todo-details .ta-upload-file-footer{opacity:1}.ta-upload-file-container.modals .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.company-documents .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.keep_open_modals .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.todo-details .ta-upload-file-footer .ta-upload-file-name{background-color:transparent!important;transition:.1s transform ease-in-out;cursor:pointer}.ta-upload-file-container.modals:hover,.ta-upload-file-container.company-documents:hover,.ta-upload-file-container.keep_open_modals:hover,.ta-upload-file-container.todo-details:hover{background-color:#dadadada!important}.ta-upload-file-container.modals:hover .ta-upload-file-ext-jpg,.ta-upload-file-container.modals:hover .ta-upload-file-ext-jpeg,.ta-upload-file-container.modals:hover .ta-upload-file-ext-png,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-jpg,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-jpeg,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-png,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-jpg,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-jpeg,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-png,.ta-upload-file-container.todo-details:hover .ta-upload-file-ext-jpg,.ta-upload-file-container.todo-details:hover .ta-upload-file-ext-jpeg,.ta-upload-file-container.todo-details:hover .ta-upload-file-ext-png{background-color:#fab15c!important}.ta-upload-file-container.modals:hover .document_info_hold,.ta-upload-file-container.company-documents:hover .document_info_hold,.ta-upload-file-container.keep_open_modals:hover .document_info_hold,.ta-upload-file-container.todo-details:hover .document_info_hold{background-color:#919191!important}.ta-upload-file-container.modals:hover .ta-upload-file-tag,.ta-upload-file-container.company-documents:hover .ta-upload-file-tag,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-tag,.ta-upload-file-container.todo-details:hover .ta-upload-file-tag{background-color:#6692f1!important}.ta-upload-file-container.modals:hover .ta-upload-file-ext-pdf,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-pdf,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-pdf,.ta-upload-file-container.todo-details:hover .ta-upload-file-ext-pdf{background-color:#e66767!important}.ta-upload-file-container.modals:hover .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.company-documents:hover .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.todo-details:hover .ta-upload-file-footer .ta-upload-file-name{transition:.1s transform ease-in-out;background-color:#eee!important}.ta-upload-file-container.modals:hover .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.company-documents:hover .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.todo-details:hover .ta-upload-file-footer .ta-upload-file-name:hover{background-color:#eee!important}.ta-upload-file-container.modals .ta-upload-file-tag,.ta-upload-file-container.company-documents .ta-upload-file-tag,.ta-upload-file-container.keep_open_modals .ta-upload-file-tag,.ta-upload-file-container.todo-details .ta-upload-file-tag{opacity:1}.ta-upload-file-container.keep_open_modals{background-color:#dadadada!important}.ta-upload-file-container.keep_open_modals .ta-upload-file-footer .ta-upload-file-name{transition:.1s transform ease-in-out;background-color:#eee!important}.ta-upload-file-container.keep_open_modals .ta-upload-file-footer .ta-upload-file-name:hover{background-color:#fff!important}.ta-upload-file-container.company-documents .ta-upload-file-footer{opacity:1}.ta-upload-file-container.company-documents .ta-upload-file-footer .ta-upload-file-name{background-color:#eee!important}.ta-upload-file-container.driver-details-pdf{width:312px;height:312px;grid-template-rows:312px}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer{bottom:37px;right:-4px;width:304px}.ta-upload-file-container.driver-details-pdf .ta-upload-file-tag{bottom:56px}.ta-upload-file-container.driver-details-pdf .ta-upload-file-delete-template{width:304px;height:304px}.ta-upload-file-container.company-documents{width:302px;height:332px;grid-template-rows:332px;background-color:#dadada!important}.ta-upload-file-container.company-documents:hover{background-color:#ccc!important}.ta-upload-file-container.company-documents .ta-upload-file-footer{bottom:37px;right:-4px;width:294px}.ta-upload-file-container.company-documents .ta-upload-file-footer .ta-upload-file-name{max-width:294px}.ta-upload-file-container.company-documents .ta-upload-file-tag{top:4px}.ta-upload-file-container.company-documents .ta-upload-file-delete-template{width:302px;height:332px}.ta-upload-file-container.modals{width:148px;height:100%}.ta-upload-file-container.modals .ta-upload-file-footer{right:-4px;bottom:4px;width:140px}.ta-upload-file-container.modals .ta-upload-file-tag{bottom:56px}.ta-upload-file-container.driver-card-pdf{width:416px;height:416px;grid-template-rows:416px}.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer{bottom:37px;right:-4px;width:408px}.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .ta-upload-file-name{max-width:408px}.ta-upload-file-container.driver-card-pdf .ta-upload-file-tag{bottom:56px}.ta-upload-file-container.driver-card-pdf .ta-upload-file-delete-template{width:420px;height:420px}.ta-upload-file-container.landscape-details-view{width:312px;max-height:200px;min-height:200px;grid-template-rows:200px;overflow:visible}.ta-upload-file-container.landscape-details-view .ta-upload-file-footer{bottom:37px;right:-4px;width:304px}.ta-upload-file-container.landscape-details-view .ta-upload-file-tag{opacity:0;bottom:31px}.ta-upload-file-container.landscape-details-view .ta-upload-file-delete-template{width:304px;min-height:192px}.ta-upload-file-container.todo-details{width:194px;height:194px;grid-template-rows:194px}.ta-upload-file-container.todo-details .ta-upload-file-footer{box-shadow:0 0 4px #00000026;bottom:32px;left:4px;width:186px}.ta-upload-file-container.todo-details .ta-upload-file-tag{bottom:56px}.ta-upload-file-container.todo-details .ta-upload-file-delete-template{width:192px;height:192px}.ta-upload-file-container.table-details{width:200px;height:200px;grid-template-rows:200px}.ta-upload-file-container.table-details .ta-upload-file-footer{bottom:37px;right:-4px;width:192px}.ta-upload-file-container.table-details .ta-upload-file-footer .ta-upload-file-name{max-width:192px}.ta-upload-file-container.table-details .ta-upload-file-tag{bottom:56px}.ta-upload-file-container.table-details .ta-upload-file-delete-template{width:192px;height:192px}.ta-upload-file-container.company-details-pdf{width:378px;height:378px;grid-template-rows:378px}.ta-upload-file-container.company-details-pdf .ta-upload-file-footer{bottom:37px;right:-4px;width:370px}.ta-upload-file-container.company-details-pdf .ta-upload-file-tag{bottom:56px}.ta-upload-file-container.company-details-pdf .ta-upload-file-delete-template{width:370px;height:370px}.ta-upload-file-container.keep_open .ta-upload-file-footer{opacity:1;border-radius:1px}.ta-upload-file-container.keep_open .ta-upload-file-tag{opacity:1}.tags_main_holder{z-index:100!important;width:196px;background-color:#2f2f2f;border-radius:3px;box-shadow:0 0 4px #00000026;cursor:pointer}.tags_main_holder .remove_tag_holder{padding:6px;border-radius:2px}.tags_main_holder .remove_tag_holder:hover{background-color:#1d1d1d}.tags_main_holder .remove_tag_holder .remove_tag{color:#e57373;font-size:11px;line-height:14px}.tags_main_holder .remove_tag_border_holder{width:100%;padding:0 4px;margin:4px 0}.tags_main_holder .remove_tag_border_holder .remove_tag_border{width:100%;height:1px;background-color:#aaa}.tags_main_holder .tags_inner_holder{z-index:100;height:26px;margin:2px 0;padding-left:4px;border-radius:2px}.tags_main_holder .tags_inner_holder.firstRow{margin-top:0}.tags_main_holder .tags_inner_holder.lastRow{margin-bottom:0}.tags_main_holder .tags_inner_holder .tag_options_holder{padding-right:6px;width:100%;height:100%}.tags_main_holder .tags_inner_holder .tag_options_holder .tag_name{flex:1;font-size:14px;line-height:18px;color:#fff}.tags_main_holder .tags_inner_holder .tag_options_holder .checked_icon{opacity:0;margin-left:4px}.tags_main_holder .tags_inner_holder .tag_options_holder .checked_icon.shown{opacity:1}.tags_main_holder .tags_inner_holder .tag_options_holder .checked_icon svg-icon svg{display:flex}.tags_main_holder .tags_inner_holder .tag_options_holder .checked_icon svg-icon svg path{fill:#6d82c7}.tags_main_holder .tags_inner_holder:hover{background-color:#1d1d1d}.tags_main_holder .tags_inner_holder:hover .tag_options_holder .checked_icon svg-icon svg path{fill:#536bc2}\n"], dependencies: [{ kind: "ngmodule", type:
|
|
301
|
+
// modules
|
|
302
|
+
CommonModule }, { kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i4.UpperCasePipe, name: "uppercase" }, { kind: "pipe", type: i4.LowerCasePipe, name: "lowercase" }, { kind: "directive", type: NgbTooltip, selector: "[ngbTooltip]", inputs: ["animation", "autoClose", "placement", "popperOptions", "triggers", "positionTarget", "container", "disableTooltip", "tooltipClass", "tooltipContext", "openDelay", "closeDelay", "ngbTooltip"], outputs: ["shown", "hidden"], exportAs: ["ngbTooltip"] }, { kind: "ngmodule", type: NgbModule }, { kind: "directive", type: i5.NgbPopover, selector: "[ngbPopover]", inputs: ["animation", "autoClose", "ngbPopover", "popoverTitle", "placement", "popperOptions", "triggers", "positionTarget", "container", "disablePopover", "popoverClass", "popoverContext", "openDelay", "closeDelay"], outputs: ["shown", "hidden"], exportAs: ["ngbPopover"] }, { kind: "ngmodule", type: NgbPopoverModule }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i6.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i6.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: AngularSvgIconModule }, { kind: "component", type: i7.SvgIconComponent, selector: "svg-icon", inputs: ["src", "name", "stretch", "applyClass", "applyCss", "svgClass", "class", "viewBox", "svgAriaLabel", "svgStyle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: NgxMaskModule }, { kind: "pipe", type:
|
|
303
|
+
// pipes
|
|
304
|
+
ByteConvertPipe, name: "byteConvert" }, { kind: "ngmodule", type: PdfViewerModule }, { kind: "component", type: i8.PdfViewerComponent, selector: "pdf-viewer", inputs: ["src", "c-maps-url", "page", "render-text", "render-text-mode", "original-size", "show-all", "stick-to-page", "zoom", "zoom-scale", "rotation", "external-link-target", "autoresize", "fit-to-page", "show-borders"], outputs: ["after-load-complete", "page-rendered", "pages-initialized", "text-layer-rendered", "error", "on-progress", "pageChange"] }, { kind: "pipe", type: NgClassPipe, name: "ngClassPipe" }, { kind: "component", type: CaSpinnerComponent, selector: "app-ca-spinner", inputs: ["size", "color", "isBarSpinner"] }, { kind: "component", type: CaInputComponent, selector: "app-ca-input", inputs: ["inputConfig", "incorrectValue", "selectedDropdownLabelColor", "template"], outputs: ["incorrectEvent", "blurInput", "focusInput", "change", "commandEvent", "clear", "showHideDropdown", "dropDownKeyNavigation"] }] }); }
|
|
305
|
+
}
|
|
306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CaUploadFileComponent, decorators: [{
|
|
307
|
+
type: Component,
|
|
308
|
+
args: [{ standalone: true, selector: 'app-ca-upload-file', imports: [
|
|
309
|
+
// modules
|
|
310
|
+
CommonModule,
|
|
311
|
+
NgbTooltip,
|
|
312
|
+
NgbModule,
|
|
313
|
+
NgbPopoverModule,
|
|
314
|
+
ReactiveFormsModule,
|
|
315
|
+
AngularSvgIconModule,
|
|
316
|
+
FormsModule,
|
|
317
|
+
NgxMaskModule,
|
|
318
|
+
// pipes
|
|
319
|
+
ByteConvertPipe,
|
|
320
|
+
UrlExtensionPipe,
|
|
321
|
+
PdfViewerModule,
|
|
322
|
+
FileNamePipe,
|
|
323
|
+
NgClassPipe,
|
|
324
|
+
// components
|
|
325
|
+
CaAppTooltipV2Component,
|
|
326
|
+
CaSpinnerComponent,
|
|
327
|
+
CaInputComponent,
|
|
328
|
+
CaLogoChangeComponent,
|
|
329
|
+
], encapsulation: ViewEncapsulation.Emulated, template: "<div\n class=\"ta-upload-file-container d-grid {{ config.customClassName }}\"\n [ngClass]=\"\n config\n | ngClassPipe: t2 : isArrowHovered : annotationHover : reviewFileConfig\n \"\n>\n <!-- File Header Actions (mouseenter)=\"hoverFile()\" -->\n\n <!-- Review Actions -->\n <ng-container *ngIf=\"reviewFileConfig.isReview\">\n <div\n class=\"ta-upload-file-header-review d-flex align-items-center justify-content-between\"\n >\n <ng-container *ngIf=\"reviewFileConfig.reviewMode === 'REVIEW_MODE'\">\n <div\n ngbTooltip\n mainTooltip=\"Download\"\n tooltipBackground=\"#6c6c6c\"\n position=\"top\"\n class=\"ta-upload-action-download-review d-flex align-items-center justify-content-center\"\n (click)=\"onAction(action.DOWNLOAD)\"\n >\n <svg-icon [src]=\"icons.download\"></svg-icon>\n </div>\n </ng-container>\n <ng-container *ngIf=\"reviewFileConfig.reviewMode === 'REVIEW_MODE'\">\n <div\n ngbTooltip\n mainTooltip=\"\n config.file?.incorrect && isIncorrectMarkHover\n ? 'Unmark'\n : 'Mark Incorrect'\n \"\n tooltipBackground=\"\n config.file?.incorrect && isIncorrectMarkHover ? '#6c6c6c' : '#EF5350'\n \"\n position=\"top\"\n class=\" {{\n config.file?.incorrect && isIncorrectMarkHover\n ? 'ta-upload-action-mark-correct'\n : 'ta-upload-action-mark-incorrect'\n }}\"\n [ngClass]=\"{ incorrect: config.file?.incorrect }\"\n (click)=\"\n onAction(\n config.file?.incorrect && isIncorrectMarkHover\n ? 'mark-correct'\n : 'mark-incorrect'\n )\n \"\n (mouseenter)=\"isIncorrectMarkHover = true\"\n (mouseleave)=\"isIncorrectMarkHover = false\"\n >\n <svg-icon\n [src]=\"\n config.file?.incorrect && isIncorrectMarkHover\n ? icons.confirm\n : icons.close\n \"\n ></svg-icon>\n </div>\n </ng-container>\n\n <!--COMMENT FOR NOW -->\n\n <!-- Review Message -->\n <!-- <ng-container>\n <div *ngIf=\"\n reviewMode === 'REVIEW_MODE' || reviewMode === 'FEEDBACK_MODE'\n \"\n class=\"review-feedback-container\"\n (mouseenter)=\"annotationHover = true\"\n (mouseleave)=\"annotationHover = false\"\n >\n <app-applicant-review-feedback\n [formControl]=\"documentReviewInputControl\"\n [displayAnnotationButton]=\"\n file?.incorrect && !documentReviewInputVisible\n \"\n [displayAnnotationTextArea]=\"\n file?.incorrect && documentReviewInputVisible\n \"\n [isFeedback]=\"reviewMode === 'FEEDBACK_MODE'\"\n [feedbackText]=\"feedbackText\"\n (annotationBtnClickEvent)=\"getAnnotationReviewEvent($event)\"\n ></app-applicant-review-feedback>\n </div> \n </ng-container> -->\n </div>\n </ng-container>\n\n <!-- No Review Actions -->\n <ng-container\n *ngIf=\"\n !isFileDelete &&\n (!reviewFileConfig.isReview ||\n (reviewFileConfig.isReview &&\n reviewFileConfig.reviewMode === 'FEEDBACK_MODE'))\n \"\n >\n <div class=\"ta-upload-file-header d-flex justify-content-between\">\n <!-- Left Side -->\n <ng-container *ngIf=\"config.customClassName === 'company-documents'\">\n <div class=\"rightside_bar\"></div>\n </ng-container>\n <ng-container *ngIf=\"config.customClassName !== 'company-documents'\">\n <div\n class=\"ta-upload-file-action-leftside d-flex justify-content-center align-items-center\"\n tabindex=\"0\"\n [ngClass]=\"{\n 'no-action-tag': !config.hasTagsDropdown,\n active: t2?.isOpen(),\n }\"\n #t2=\"ngbPopover\"\n [ngbPopover]=\"tagsPopover\"\n [popoverClass]=\"'tags_popover'\"\n [placement]=\"'right-top right-bottom'\"\n autoclose=\"outside\"\n [container]=\"'body'\"\n triggers=\"'manual'\"\n >\n <div\n ngbTooltip\n mainTooltip=\"Tag\"\n tooltipBackground=\"#2F2F2F\"\n position=\"top\"\n class=\"ta-upload-action-tag d-flex justify-content-center align-items-center\"\n (click)=\"onAction(action.TAG)\"\n >\n <svg-icon [src]=\"icons.tag\"></svg-icon>\n </div>\n </div>\n </ng-container>\n <!-- Right Side -->\n\n <ng-container *ngIf=\"!reviewFileConfig.isActionsHidden\">\n <div\n class=\"ta-upload-file-action-rightside d-flex justify-content-around align-items-center\"\n [ngClass]=\"{\n 'feedback-mode':\n reviewFileConfig.isReview &&\n reviewFileConfig.reviewMode === 'FEEDBACK_MODE',\n small:\n config.type === 'details' ||\n config.type === 'todo' ||\n reviewFileConfig.reviewMode == 'REVIEW_MODE',\n 'vertical-mode': config.customClassName == 'company-documents',\n }\"\n >\n <ng-container *ngIf=\"config.customClassName == 'company-documents'\">\n <div\n #t2=\"ngbPopover\"\n [ngbPopover]=\"tagsPopover\"\n [popoverClass]=\"'tags_popover_vertical'\"\n [placement]=\"'bottom-left'\"\n autoclose=\"outside\"\n [container]=\"'body'\"\n triggers=\"'manual'\"\n ngbTooltip\n mainTooltip=\"Tag\"\n tooltipBackground=\"#2F2F2F\"\n position=\"top\"\n class=\"ta-upload-action-tag d-flex justify-content-center align-items-center\"\n [ngClass]=\"{ active: t2?.isOpen() }\"\n (click)=\"onAction(action.TAG)\"\n >\n <svg-icon [src]=\"icons.tag\"></svg-icon>\n </div>\n </ng-container>\n <div\n ngbTooltip\n mainTooltip=\"Download\"\n tooltipBackground=\"#2F2F2F\"\n position=\"top\"\n class=\"ta-upload-action-download\"\n (click)=\"onAction(action.DOWNLOAD)\"\n >\n <svg-icon [src]=\"icons.download\"></svg-icon>\n </div>\n <ng-container\n *ngIf=\"\n config.type != 'details' &&\n config.type != 'todo' &&\n reviewFileConfig.reviewMode != 'REVIEW_MODE'\n \"\n >\n <ng-container *ngIf=\"config.file?.fileName\">\n <div\n ngbTooltip\n mainTooltip=\"Delete\"\n tooltipBackground=\"#EF5350\"\n position=\"top\"\n class=\"ta-upload-action-delete\"\n (click)=\"\n config.file.fileName\n ? openDeletePopup(config.file.fileName)\n : null\n \"\n >\n <svg-icon [src]=\"icons.trash\"></svg-icon>\n </div>\n </ng-container>\n </ng-container>\n </div>\n </ng-container>\n <ng-container\n *ngIf=\"\n reviewFileConfig.isReview &&\n reviewFileConfig.reviewMode === 'FEEDBACK_MODE'\n \"\n >\n <div\n ngbTooltip\n mainTooltip=\"Marked Incorrect\"\n tooltipBackground=\"#EF5350\"\n position=\"top\"\n class=\"ta-upload-action-feedback-incorrect-mark d-flex justify-content-center align-items-center\"\n (click)=\"onAction(action.MARK_INCORRECT)\"\n >\n <svg-icon [src]=\"icons.close\"></svg-icon>\n </div>\n </ng-container>\n </div>\n </ng-container>\n\n <!-- File Content -->\n <div class=\"ta-upload-file-content {{ config.customClassName }}\">\n <!-- Pdf Content -->\n <ng-container\n *ngIf=\"\n (config.file?.extension?.toLowerCase() === 'pdf' ||\n fileExtension === 'pdf') &&\n config.file?.url\n \"\n >\n <pdf-viewer\n [src]=\"config.file.url\"\n [(page)]=\"config.activePage\"\n style=\"display: block; height: 100%; width: 100%\"\n [rotation]=\"0\"\n [original-size]=\"false\"\n [show-all]=\"true\"\n [fit-to-page]=\"false\"\n [zoom]=\"1\"\n [zoom-scale]=\"'page-width'\"\n [stick-to-page]=\"false\"\n [render-text]=\"true\"\n [external-link-target]=\"'blank'\"\n [autoresize]=\"true\"\n [show-borders]=\"false\"\n (after-load-complete)=\"afterLoadComplete($event)\"\n (page-rendered)=\"pageRendered($event)\"\n ></pdf-viewer>\n </ng-container>\n\n <!-- Image Content -->\n <div\n class=\"image_main_holder d-flex justify-content-center align-items-center {{\n config.customClassName\n }}\"\n >\n <ng-container\n *ngIf=\"\n config.file?.extension?.toLowerCase() !== 'pdf' &&\n fileExtension !== 'pdf' &&\n config.file?.url\n \"\n >\n <img\n class=\"ta-upload-file-image\"\n [ngClass]=\"{\n details_image: config.type === 'details' || config.type === 'todo',\n }\"\n [src]=\"config.file.url\"\n [alt]=\"config.file?.fileName\"\n />\n </ng-container>\n <ng-container *ngIf=\"documentLoading\">\n <div class=\"spinner\">\n <app-ca-spinner\n [size]=\"'small'\"\n [color]=\"'blueDark'\"\n ></app-ca-spinner>\n </div>\n </ng-container>\n </div>\n\n <!-- Tag Content -->\n <ng-container\n *ngIf=\"\n (config.hasTagsDropdown ||\n config.customClassName === 'table-details' ||\n config.customClassName === 'driver-card-pdf') &&\n config.file?.tags &&\n config.file?.tags !== '' &&\n config.file?.tags !== 'No Tag'\n \"\n >\n <div\n class=\"ta-upload-file-tag\"\n [ngClass]=\"{\n default: !config.file?.tagGeneratedByUser,\n tagRemoving: config.file?.tags.length === 0,\n }\"\n >\n <span>{{\n config.file?.tags || reviewFileConfig.categoryTag || ''\n }}</span>\n </div>\n </ng-container>\n </div>\n\n <!-- File Delete Template -->\n <ng-container *ngIf=\"isFileDelete\">\n <div\n class=\"ta-upload-file-delete-template d-flex align-items-center flex-column {{\n config.customClassName\n }}\"\n >\n <div class=\"ta-upload-file-delete-text\">\n Are you sure you want to delete file?\n </div>\n <div\n class=\"ta-upload-file-btn d-flex align-items-center justify-content-center ta-upload-file-btn-delete\"\n (click)=\"onAction(action.DELETE)\"\n >\n DELETE\n </div>\n <div\n class=\"ta-upload-file-btn d-flex align-items-center justify-content-center ta-upload-file-btn-cancel\"\n (click)=\"onAction(action.CANCEL)\"\n >\n CANCEL\n </div>\n </div>\n </ng-container>\n\n <!-- File Footer Information -->\n <ng-container *ngIf=\"!reviewFileConfig.isFooterHidden\">\n <div\n class=\"ta-upload-file-footer\"\n [ngClass]=\"{ 'edit-mode': editFile }\"\n (click)=\"onEditFile()\"\n >\n <!-- No edit mode -->\n <ng-container *ngIf=\"!isFileDelete\">\n <div class=\"footer_info d-flex align-items-center\">\n <div\n class=\"ta-upload-file-ext ta-upload-file-ext-{{\n config.file?.extension ? (config.file?.extension | lowercase) : ''\n }}\"\n [ngClass]=\"{ 'no-tag': !config.file?.tags }\"\n >\n <div>\n {{ config.file?.extension | uppercase }}\n </div>\n </div>\n <div class=\"document_info_hold d-flex\">\n <ng-container *ngIf=\"numberOfFilePages\">\n <div class=\"pdf_page_size\">\n {{ numberOfFilePages }}\n </div>\n </ng-container>\n\n <div\n class=\"file_size\"\n [ngClass]=\"{\n has_pages: numberOfFilePages,\n }\"\n >\n {{ config.file?.size || 0 | byteConvert }}\n </div>\n </div>\n </div>\n </ng-container>\n <ng-container *ngIf=\"!editFile; else editMode\">\n <p\n class=\"ta-upload-file-name\"\n [ngClass]=\"{\n details_title: config.type === 'details',\n todo_title: config.type === 'todo',\n }\"\n >\n {{ fileName }}\n </p>\n </ng-container>\n\n <ng-template #editMode>\n <app-ca-input\n [formControl]=\"fileNewName\"\n [inputConfig]=\"{\n name: 'File Name',\n type: 'text',\n placeholder: 'Type File Name',\n blackInput: true,\n isDisabled: false,\n }\"\n (blurInput)=\"onBlurInput($event)\"\n ></app-ca-input>\n </ng-template>\n </div>\n </ng-container>\n</div>\n\n<ng-template #tagsPopover let-data=\"data\">\n <div class=\"tags_main_holder\">\n <ng-container *ngIf=\"config.file?.tags?.length\">\n <div class=\"remove_tag_holder\" (click)=\"removeTag()\">\n <div class=\"remove_tag\">Remove Tag</div>\n </div>\n </ng-container>\n <ng-container *ngIf=\"config.file?.tags?.length\">\n <div class=\"remove_tag_border_holder\">\n <div class=\"remove_tag_border\"></div>\n </div>\n </ng-container>\n <ng-container *ngIf=\"config.tagsOptions && config.tagsOptions.length\">\n <ng-container\n *ngFor=\"let tag of config.tagsOptions; trackBy: identity; index as i\"\n >\n <div\n class=\"tags_inner_holder d-flex align-items-center\"\n [ngClass]=\"{\n firstRow: i === 0,\n lastRow: i === config.tagsOptions.length - 1,\n }\"\n (click)=\"selectTag(tag?.tagName)\"\n >\n <div class=\"tag_options_holder d-flex align-items-center\">\n <div class=\"tag_name\" [ngClass]=\"{ checked: tag.checked }\">\n {{ tag.tagName }}\n </div>\n <div class=\"checked_icon\" [ngClass]=\"{ shown: tag.checked }\">\n <svg-icon [src]=\"icons.confirm\"></svg-icon>\n </div>\n </div>\n </div>\n </ng-container>\n </ng-container>\n </div>\n</ng-template>\n", styles: ["@import\"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap\";@import\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css\";.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;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}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.ca-input-dropdown .arrow{display:none!important}.ca-input-dropdown .popover-body{margin-top:-2px!important}.ca-input-dropdown .popover-body .dropdown-options-divider{content:\"\";height:1px;border-radius:1px;background-color:#424242;position:absolute;z-index:99999;top:0;left:0}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-1{width:-7px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-2{width:-6px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-3{width:-5px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-4{width:-4px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-5{width:-3px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-6{width:-2px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-7{width:-1px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-8{width:0px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-9{width:1px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-10{width:2px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-11{width:3px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-12{width:4px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-13{width:5px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-14{width:6px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-15{width:7px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-16{width:8px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-17{width:9px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-18{width:10px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-19{width:11px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-20{width:12px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-21{width:13px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-22{width:14px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-23{width:15px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-24{width:16px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-25{width:17px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-26{width:18px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-27{width:19px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-28{width:20px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-29{width:21px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-30{width:22px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-31{width:23px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-32{width:24px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-33{width:25px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-34{width:26px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-35{width:27px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-36{width:28px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-37{width:29px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-38{width:30px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-39{width:31px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-40{width:32px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-41{width:33px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-42{width:34px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-43{width:35px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-44{width:36px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-45{width:37px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-46{width:38px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-47{width:39px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-48{width:40px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-49{width:41px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-50{width:42px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-51{width:43px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-52{width:44px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-53{width:45px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-54{width:46px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-55{width:47px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-56{width:48px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-57{width:49px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-58{width:50px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-59{width:51px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-60{width:52px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-61{width:53px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-62{width:54px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-63{width:55px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-64{width:56px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-65{width:57px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-66{width:58px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-67{width:59px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-68{width:60px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-69{width:61px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-70{width:62px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-71{width:63px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-72{width:64px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-73{width:65px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-74{width:66px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-75{width:67px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-76{width:68px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-77{width:69px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-78{width:70px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-79{width:71px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-80{width:72px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-81{width:73px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-82{width:74px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-83{width:75px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-84{width:76px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-85{width:77px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-86{width:78px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-87{width:79px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-88{width:80px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-89{width:81px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-90{width:82px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-91{width:83px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-92{width:84px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-93{width:85px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-94{width:86px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-95{width:87px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-96{width:88px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-97{width:89px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-98{width:90px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-99{width:91px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-100{width:92px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-101{width:93px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-102{width:94px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-103{width:95px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-104{width:96px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-105{width:97px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-106{width:98px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-107{width:99px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-108{width:100px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-109{width:101px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-110{width:102px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-111{width:103px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-112{width:104px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-113{width:105px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-114{width:106px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-115{width:107px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-116{width:108px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-117{width:109px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-118{width:110px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-119{width:111px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-120{width:112px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-121{width:113px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-122{width:114px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-123{width:115px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-124{width:116px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-125{width:117px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-126{width:118px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-127{width:119px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-128{width:120px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-129{width:121px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-130{width:122px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-131{width:123px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-132{width:124px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-133{width:125px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-134{width:126px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-135{width:127px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-136{width:128px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-137{width:129px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-138{width:130px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-139{width:131px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-140{width:132px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-141{width:133px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-142{width:134px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-143{width:135px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-144{width:136px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-145{width:137px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-146{width:138px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-147{width:139px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-148{width:140px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-149{width:141px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-150{width:142px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-151{width:143px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-152{width:144px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-153{width:145px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-154{width:146px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-155{width:147px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-156{width:148px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-157{width:149px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-158{width:150px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-159{width:151px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-160{width:152px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-161{width:153px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-162{width:154px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-163{width:155px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-164{width:156px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-165{width:157px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-166{width:158px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-167{width:159px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-168{width:160px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-169{width:161px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-170{width:162px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-171{width:163px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-172{width:164px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-173{width:165px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-174{width:166px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-175{width:167px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-176{width:168px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-177{width:169px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-178{width:170px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-179{width:171px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-180{width:172px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-181{width:173px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-182{width:174px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-183{width:175px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-184{width:176px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-185{width:177px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-186{width:178px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-187{width:179px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-188{width:180px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-189{width:181px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-190{width:182px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-191{width:183px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-192{width:184px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-193{width:185px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-194{width:186px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-195{width:187px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-196{width:188px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-197{width:189px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-198{width:190px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-199{width:191px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-200{width:192px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-201{width:193px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-202{width:194px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-203{width:195px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-204{width:196px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-205{width:197px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-206{width:198px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-207{width:199px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-208{width:200px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-209{width:201px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-210{width:202px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-211{width:203px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-212{width:204px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-213{width:205px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-214{width:206px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-215{width:207px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-216{width:208px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-217{width:209px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-218{width:210px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-219{width:211px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-220{width:212px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-221{width:213px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-222{width:214px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-223{width:215px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-224{width:216px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-225{width:217px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-226{width:218px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-227{width:219px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-228{width:220px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-229{width:221px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-230{width:222px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-231{width:223px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-232{width:224px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-233{width:225px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-234{width:226px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-235{width:227px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-236{width:228px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-237{width:229px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-238{width:230px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-239{width:231px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-240{width:232px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-241{width:233px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-242{width:234px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-243{width:235px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-244{width:236px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-245{width:237px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-246{width:238px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-247{width:239px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-248{width:240px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-249{width:241px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-250{width:242px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-251{width:243px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-252{width:244px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-253{width:245px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-254{width:246px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-255{width:247px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-256{width:248px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-257{width:249px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-258{width:250px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-259{width:251px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-260{width:252px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-261{width:253px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-262{width:254px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-263{width:255px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-264{width:256px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-265{width:257px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-266{width:258px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-267{width:259px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-268{width:260px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-269{width:261px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-270{width:262px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-271{width:263px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-272{width:264px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-273{width:265px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-274{width:266px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-275{width:267px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-276{width:268px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-277{width:269px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-278{width:270px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-279{width:271px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-280{width:272px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-281{width:273px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-282{width:274px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-283{width:275px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-284{width:276px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-285{width:277px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-286{width:278px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-287{width:279px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-288{width:280px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-289{width:281px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-290{width:282px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-291{width:283px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-292{width:284px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-293{width:285px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-294{width:286px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-295{width:287px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-296{width:288px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-297{width:289px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-298{width:290px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-299{width:291px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-300{width:292px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-301{width:293px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-302{width:294px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-303{width:295px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-304{width:296px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-305{width:297px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-306{width:298px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-307{width:299px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-308{width:300px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-309{width:301px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-310{width:302px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-311{width:303px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-312{width:304px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-313{width:305px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-314{width:306px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-315{width:307px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-316{width:308px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-317{width:309px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-318{width:310px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-319{width:311px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-320{width:312px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-321{width:313px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-322{width:314px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-323{width:315px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-324{width:316px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-325{width:317px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-326{width:318px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-327{width:319px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-328{width:320px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-329{width:321px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-330{width:322px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-331{width:323px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-332{width:324px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-333{width:325px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-334{width:326px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-335{width:327px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-336{width:328px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-337{width:329px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-338{width:330px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-339{width:331px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-340{width:332px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-341{width:333px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-342{width:334px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-343{width:335px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-344{width:336px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-345{width:337px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-346{width:338px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-347{width:339px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-348{width:340px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-349{width:341px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-350{width:342px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-351{width:343px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-352{width:344px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-353{width:345px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-354{width:346px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-355{width:347px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-356{width:348px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-357{width:349px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-358{width:350px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-359{width:351px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-360{width:352px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-361{width:353px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-362{width:354px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-363{width:355px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-364{width:356px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-365{width:357px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-366{width:358px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-367{width:359px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-368{width:360px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-369{width:361px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-370{width:362px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-371{width:363px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-372{width:364px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-373{width:365px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-374{width:366px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-375{width:367px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-376{width:368px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-377{width:369px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-378{width:370px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-379{width:371px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-380{width:372px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-381{width:373px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-382{width:374px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-383{width:375px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-384{width:376px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-385{width:377px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-386{width:378px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-387{width:379px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-388{width:380px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-389{width:381px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-390{width:382px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-391{width:383px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-392{width:384px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-393{width:385px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-394{width:386px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-395{width:387px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-396{width:388px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-397{width:389px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-398{width:390px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-399{width:391px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-400{width:392px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-401{width:393px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-402{width:394px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-403{width:395px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-404{width:396px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-405{width:397px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-406{width:398px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-407{width:399px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-408{width:400px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-409{width:401px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-410{width:402px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-411{width:403px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-412{width:404px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-413{width:405px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-414{width:406px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-415{width:407px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-416{width:408px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-417{width:409px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-418{width:410px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-419{width:411px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-420{width:412px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-421{width:413px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-422{width:414px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-423{width:415px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-424{width:416px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-425{width:417px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-426{width:418px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-427{width:419px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-428{width:420px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-429{width:421px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-430{width:422px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-431{width:423px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-432{width:424px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-433{width:425px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-434{width:426px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-435{width:427px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-436{width:428px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-437{width:429px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-438{width:430px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-439{width:431px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-440{width:432px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-441{width:433px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-442{width:434px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-443{width:435px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-444{width:436px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-445{width:437px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-446{width:438px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-447{width:439px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-448{width:440px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-449{width:441px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-450{width:442px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-451{width:443px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-452{width:444px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-453{width:445px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-454{width:446px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-455{width:447px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-456{width:448px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-457{width:449px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-458{width:450px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-459{width:451px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-460{width:452px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-461{width:453px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-462{width:454px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-463{width:455px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-464{width:456px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-465{width:457px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-466{width:458px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-467{width:459px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-468{width:460px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-469{width:461px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-470{width:462px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-471{width:463px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-472{width:464px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-473{width:465px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-474{width:466px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-475{width:467px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-476{width:468px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-477{width:469px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-478{width:470px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-479{width:471px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-480{width:472px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-481{width:473px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-482{width:474px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-483{width:475px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-484{width:476px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-485{width:477px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-486{width:478px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-487{width:479px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-488{width:480px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-489{width:481px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-490{width:482px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-491{width:483px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-492{width:484px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-493{width:485px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-494{width:486px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-495{width:487px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-496{width:488px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-497{width:489px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-498{width:490px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-499{width:491px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-500{width:492px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-501{width:493px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-502{width:494px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-503{width:495px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-504{width:496px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-505{width:497px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-506{width:498px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-507{width:499px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-508{width:500px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-509{width:501px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-510{width:502px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-511{width:503px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-512{width:504px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-513{width:505px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-514{width:506px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-515{width:507px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-516{width:508px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-517{width:509px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-518{width:510px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-519{width:511px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-520{width:512px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-521{width:513px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-522{width:514px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-523{width:515px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-524{width:516px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-525{width:517px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-526{width:518px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-527{width:519px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-528{width:520px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-529{width:521px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-530{width:522px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-531{width:523px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-532{width:524px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-533{width:525px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-534{width:526px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-535{width:527px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-536{width:528px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-537{width:529px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-538{width:530px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-539{width:531px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-540{width:532px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-541{width:533px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-542{width:534px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-543{width:535px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-544{width:536px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-545{width:537px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-546{width:538px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-547{width:539px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-548{width:540px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-549{width:541px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-550{width:542px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-551{width:543px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-552{width:544px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-553{width:545px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-554{width:546px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-555{width:547px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-556{width:548px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-557{width:549px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-558{width:550px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-559{width:551px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-560{width:552px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-561{width:553px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-562{width:554px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-563{width:555px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-564{width:556px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-565{width:557px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-566{width:558px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-567{width:559px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-568{width:560px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-569{width:561px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-570{width:562px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-571{width:563px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-572{width:564px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-573{width:565px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-574{width:566px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-575{width:567px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-576{width:568px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-577{width:569px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-578{width:570px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-579{width:571px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-580{width:572px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-581{width:573px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-582{width:574px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-583{width:575px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-584{width:576px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-585{width:577px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-586{width:578px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-587{width:579px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-588{width:580px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-589{width:581px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-590{width:582px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-591{width:583px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-592{width:584px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-593{width:585px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-594{width:586px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-595{width:587px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-596{width:588px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-597{width:589px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-598{width:590px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-599{width:591px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-600{width:592px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-601{width:593px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-602{width:594px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-603{width:595px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-604{width:596px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-605{width:597px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-606{width:598px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-607{width:599px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-608{width:600px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-609{width:601px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-610{width:602px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-611{width:603px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-612{width:604px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-613{width:605px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-614{width:606px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-615{width:607px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-616{width:608px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-617{width:609px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-618{width:610px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-619{width:611px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-620{width:612px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-621{width:613px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-622{width:614px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-623{width:615px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-624{width:616px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-625{width:617px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-626{width:618px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-627{width:619px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-628{width:620px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-629{width:621px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-630{width:622px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-631{width:623px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-632{width:624px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-633{width:625px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-634{width:626px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-635{width:627px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-636{width:628px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-637{width:629px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-638{width:630px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-639{width:631px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-640{width:632px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-641{width:633px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-642{width:634px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-643{width:635px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-644{width:636px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-645{width:637px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-646{width:638px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-647{width:639px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-648{width:640px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-649{width:641px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-650{width:642px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-651{width:643px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-652{width:644px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-653{width:645px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-654{width:646px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-655{width:647px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-656{width:648px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-657{width:649px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-658{width:650px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-659{width:651px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-660{width:652px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-661{width:653px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-662{width:654px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-663{width:655px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-664{width:656px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-665{width:657px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-666{width:658px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-667{width:659px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-668{width:660px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-669{width:661px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-670{width:662px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-671{width:663px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-672{width:664px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-673{width:665px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-674{width:666px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-675{width:667px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-676{width:668px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-677{width:669px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-678{width:670px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-679{width:671px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-680{width:672px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-681{width:673px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-682{width:674px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-683{width:675px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-684{width:676px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-685{width:677px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-686{width:678px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-687{width:679px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-688{width:680px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-689{width:681px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-690{width:682px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-691{width:683px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-692{width:684px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-693{width:685px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-694{width:686px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-695{width:687px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-696{width:688px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-697{width:689px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-698{width:690px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-699{width:691px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-700{width:692px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-701{width:693px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-702{width:694px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-703{width:695px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-704{width:696px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-705{width:697px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-706{width:698px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-707{width:699px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-708{width:700px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-709{width:701px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-710{width:702px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-711{width:703px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-712{width:704px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-713{width:705px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-714{width:706px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-715{width:707px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-716{width:708px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-717{width:709px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-718{width:710px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-719{width:711px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-720{width:712px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-721{width:713px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-722{width:714px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-723{width:715px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-724{width:716px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-725{width:717px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-726{width:718px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-727{width:719px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-728{width:720px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-729{width:721px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-730{width:722px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-731{width:723px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-732{width:724px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-733{width:725px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-734{width:726px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-735{width:727px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-736{width:728px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-737{width:729px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-738{width:730px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-739{width:731px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-740{width:732px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-741{width:733px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-742{width:734px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-743{width:735px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-744{width:736px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-745{width:737px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-746{width:738px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-747{width:739px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-748{width:740px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-749{width:741px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-750{width:742px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-751{width:743px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-752{width:744px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-753{width:745px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-754{width:746px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-755{width:747px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-756{width:748px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-757{width:749px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-758{width:750px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-759{width:751px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-760{width:752px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-761{width:753px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-762{width:754px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-763{width:755px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-764{width:756px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-765{width:757px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-766{width:758px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-767{width:759px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-768{width:760px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-769{width:761px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-770{width:762px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-771{width:763px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-772{width:764px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-773{width:765px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-774{width:766px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-775{width:767px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-776{width:768px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-777{width:769px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-778{width:770px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-779{width:771px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-780{width:772px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-781{width:773px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-782{width:774px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-783{width:775px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-784{width:776px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-785{width:777px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-786{width:778px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-787{width:779px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-788{width:780px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-789{width:781px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-790{width:782px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-791{width:783px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-792{width:784px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-793{width:785px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-794{width:786px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-795{width:787px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-796{width:788px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-797{width:789px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-798{width:790px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-799{width:791px}.ca-input-dropdown .popover-body .dropdown-options-divider.w-col-800{width:792px}.ca-input-dropdown .popover-body .dropdown-options-divider.dispatch_dropdown{top:-4px}.ca-input-dropdown .popover-body .dropdown-options{position:relative;top:0;left:0;z-index:1000;max-height:190px;width:100%;background-color:#2f2f2f;border-radius:3px;padding:4px;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important;padding-right:0}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options-fuel-franchise{padding:4px;max-height:300px}.ca-input-dropdown .popover-body .dropdown-options.no-result-container{padding:6px 10px!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo{height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .svg-template-logo svg:not(:hover) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9856,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9857,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) #Ellipse_9858,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:not(:hover):not(.active):not(.dropdown-option-hovered) .load-dispatches-container svg:not(:hover):not(.load-dipstaches-owner-flag) path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option{padding:3px 4px;height:26px;font-size:14px;font-weight:400;border-radius:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text{font-size:11px;font-weight:400;color:#919191;line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option .additional-text.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-text-option:hover .additional-text.active{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option{display:grid;grid-template-columns:118px 470px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-double-column-option-text{color:#dadada;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option{display:grid;grid-template-columns:216px 138px 206px;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-add-new{display:flex;align-items:center;justify-content:flex-end;padding-left:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-triple-column-option-text{color:#dadada;font-size:14px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered{background:#424242;color:#dadada;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.dropdown-option-hovered .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover{background:#424242;color:#dadada;border-radius:2px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option:hover .svgtext-template-logo.truck-trailer-logo{display:inline-block!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.disabled{color:#6c6c6c;pointer-events:none;-webkit-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result{line-height:14px;font-size:11px;font-weight:700;color:#919191;height:auto!important;-webkit-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new{padding:4.5px 6px 4.5px 4px;font-size:11px;font-weight:700;color:#92b1f5;position:relative;transition:background .2s ease-in-out,color .2s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new:hover{color:#dadada;background:#3b73ed66}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .labels-template-text{color:#6f9ee0;font-weight:600!important;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon{margin-left:auto!important;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.add-new .plus-icon svg path{fill:#92b1f5}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .details-template-text,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.all-assigned .svgtext-template-text{color:#919191;font-size:11px;font-weight:700;line-height:14px;pointer-events:none;-webkit-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer{color:#6f9ee0;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer .highlight-text-45632:hover{color:#bed0f9!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-repair-truck-trailer:after{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .labels-template-counter,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-dark .labels-template-counter{background-color:#3b73ed!important;color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label{color:#fff;font-size:14px;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active .highlight-text-45632:hover,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active:after,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{display:inline-block;position:absolute;right:6px;top:28%;transform:translateY(-50%);width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.active-label:after{right:35px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.last-active:before{content:\"\";position:absolute;bottom:-1px;left:0;height:2px;width:100%;background-color:#aaa3;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous{display:flex;flex-direction:row-reverse;justify-content:flex-end}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous svg{margin-right:5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo{display:flex;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.no-svg{margin-right:0!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.hazardous-svg{line-height:14px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.state-logo svg path{fill:#cccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo{position:absolute;right:25px;text-align:right;display:none;margin-right:0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.truck-trailer-logo.container{right:13px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.radiator svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.turbo svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.alignment svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.accompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.aircompressor svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.fuelpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.waterpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.oilpump svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.brakechamber svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.battery svg path,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-logo.enginetuneup svg path{fill:#919191}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.truck-text{top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.flex-1{flex:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .svgtext-template-text.additional-text{font-size:11px;font-weight:400;line-height:14px;color:#919191;text-align:right}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template .colors{height:18px;width:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-logo{order:2;margin-right:0;position:relative;bottom:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.svg-text-template.hazardous-dropdown .svgtext-template-text{order:1;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side{display:flex;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-logo svg{width:18px;height:18px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-left-side .labels-template-vertical-divider{width:1px;height:15px;background-color:#aaa3;content:\"\";margin:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side{flex:1;display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text{margin-right:28px;font-size:14px;font-weight:400;line-height:18px;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.lable-text-wrap{text-overflow:ellipsis;overflow:hidden;width:80px;white-space:nowrap}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.add-new{font-size:11px;font-weight:700;color:#6f9ee0;transition:all .3s ease-in-out;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result{line-height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;height:12px;-webkit-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-text.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter{width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;text-align:center;font-size:11px;font-weight:500;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template .labels-template-right-side .labels-template-counter.dont-show-counter{display:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result{height:14px;font-size:11px;font-weight:700;padding:0!important;color:#919191;-webkit-user-select:none;user-select:none;pointer-events:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result:hover{background-color:transparent!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template.no-result div{padding-top:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-text.add-new{color:#bed0f9}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.labels-template:hover .labels-template-counter{background-color:#ccc3;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template{display:grid;grid-template-columns:auto 14px 1fr;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.load-details-template{grid-template-columns:30px 130px 1fr;grid-gap:4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.add-new{grid-template-columns:1fr 1fr;margin-right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template.dropdown-option{position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-text.active:hover{color:#bed0f9;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .details-template-logo{margin-left:6px;line-height:15px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container{position:absolute;right:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container p{font-size:11px;line-height:18px;color:#919191;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box{margin-left:4px;padding:0 6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .driver-details-template-container .right-box p{color:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.details-template .additional-text{font-size:11px;color:#919191;line-height:12px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter{display:flex;align-items:center;justify-content:space-between}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter.active:after{right:35px;top:3.5px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-text-counter:hover .option-counter{background-color:#ccc3}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise{display:flex;flex-direction:column;justify-content:center;height:auto;min-height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header{display:flex;align-items:center;justify-content:space-between;padding:0 2px;-webkit-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .option-counter{min-width:22px;height:16px;border-radius:20px;background-color:#ccc3;color:#aaa;font-size:11px;font-weight:500;text-align:center;padding:0 4.5px;-webkit-user-select:none;user-select:none}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow{width:18px;height:18px;line-height:15px;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg{transform:rotate(0);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow.rotate svg{transform:rotate(180deg);transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow:hover svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores{display:flex;flex-direction:column;justify-content:center;gap:4px;max-height:237px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store{height:26px;border-radius:2px;display:flex;align-items:center;justify-content:space-between;padding:3px 26px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-name{font-size:14px;font-weight:400;height:19px;-webkit-user-select:none;user-select:none;color:#fff}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store .fuel-franchise-store-address{font-size:11px;font-weight:500;line-height:14px;-webkit-user-select:none;user-select:none;color:#ccc}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .fuel-franchise-store-address{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store.active .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover{color:#fff;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-name,.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores .fuel-franchise-single-store:hover.active .fuel-franchise-store-address{color:#fff!important;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar{width:3px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise .fuel-franchise-stores.scroll .fuel-franchise-single-store{padding:3px 22px 4px 4px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores{background-color:#aaaaaa1a}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores .fuel-franchise-main-header{color:#fff;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores:hover{background-color:#aaaaaa1a;color:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover{background-color:#2f2f2f;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header{color:#fff;background-color:#1d1d1d;font-weight:700;position:relative}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .helper-hover-container{content:\"\";width:105%;height:26px;background-color:#1d1d1d;position:absolute;top:0;left:0;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option-fuel-franchise.active-stores-header-hover:hover .fuel-franchise-header .fuel-franchise-header-right-side .header-arrow svg path{fill:#dadada}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option .svg-template-logo{height:18px;aspect-ratio:1}.ca-input-dropdown .popover-body .dropdown-options .dropdown-option.routing_dropdown{font-size:11px;height:22px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-status .dropdown-option{font-weight:700;text-transform:uppercase}.ca-input-dropdown .popover-body .dropdown-options .load-dispatcher-template{display:flex;align-items:center;gap:6px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template{display:grid;grid-template-columns:repeat(3,155px) 97px;align-items:center}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container{display:flex;align-items:center;gap:6px;position:relative}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .owner-avatar{position:absolute;left:13px;bottom:-3px;width:10px;height:10px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatch-trailer{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:116px;max-width:-moz-fit-content;max-width:fit-content;line-height:18px;font-size:14px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg{line-height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dispatches-svg svg{width:46px;height:16px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag{position:absolute;top:44%;right:0;transform:translateY(-50%)}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container .load-dipstaches-owner-flag svg path{fill:#6f9ee0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatches-container.trailerContainer{width:max-content!important;padding:0!important;margin:0!important}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate{width:130px;text-align:right;font-size:11px;font-weight:400;color:#919191;padding-bottom:1px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.active{color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template .load-dispatch-driver-rate.driver-owner{text-align:left;width:80px}.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver-rate,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-driver,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-truck,.ca-input-dropdown .popover-body .dropdown-options .load-dispatches-ttd-template.active .load-dispatch-trailer{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template{display:grid;align-items:center;grid-template-columns:276px 92px;column-gap:29px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template.hide-loads{grid-template-columns:333px 92px!important}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-status.dnu-status svg path{fill:#aaa}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-status-text .load-broker-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status{height:14px;display:flex;align-items:center;justify-content:flex-end;grid-gap:4px;gap:4px;text-align:center}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-price{color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-progress-status .progress-bar-line{width:24px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter{max-width:max-content;height:18px;border-radius:30px;text-align:center;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options .load-broker-template .load-broker-load-counter.hasOneValue{max-width:19px!important}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template{display:grid;grid-template-columns:405px 166px;align-items:center;padding-right:25px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text{display:flex;align-items:center;gap:6px;line-height:18px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-status{position:relative;line-height:17px}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-status-text .load-shipper-text.disabled{color:#6c6c6c}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2),.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(3){text-align:right}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2){color:#919191;font-size:11px;font-weight:400}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template div:nth-child(2).active{color:#6f9ee0;font-weight:700}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter{max-width:max-content;height:18px;border-radius:30px;text-align:right;font-size:11px;font-weight:400;color:#919191;background-color:#91919133;padding:1px 6px;justify-self:flex-end}.ca-input-dropdown .popover-body .dropdown-options .load-shipper-template .load-shipper-load-counter.active{color:#6f9ee0;background-color:#6f9ee033}.ca-input-dropdown .popover-body .dropdown-options.w-col-1{width:1px}.ca-input-dropdown .popover-body .dropdown-options.w-col-2{width:2px}.ca-input-dropdown .popover-body .dropdown-options.w-col-3{width:3px}.ca-input-dropdown .popover-body .dropdown-options.w-col-4{width:4px}.ca-input-dropdown .popover-body .dropdown-options.w-col-5{width:5px}.ca-input-dropdown .popover-body .dropdown-options.w-col-6{width:6px}.ca-input-dropdown .popover-body .dropdown-options.w-col-7{width:7px}.ca-input-dropdown .popover-body .dropdown-options.w-col-8{width:8px}.ca-input-dropdown .popover-body .dropdown-options.w-col-9{width:9px}.ca-input-dropdown .popover-body .dropdown-options.w-col-10{width:10px}.ca-input-dropdown .popover-body .dropdown-options.w-col-11{width:11px}.ca-input-dropdown .popover-body .dropdown-options.w-col-12{width:12px}.ca-input-dropdown .popover-body .dropdown-options.w-col-13{width:13px}.ca-input-dropdown .popover-body .dropdown-options.w-col-14{width:14px}.ca-input-dropdown .popover-body .dropdown-options.w-col-15{width:15px}.ca-input-dropdown .popover-body .dropdown-options.w-col-16{width:16px}.ca-input-dropdown .popover-body .dropdown-options.w-col-17{width:17px}.ca-input-dropdown .popover-body .dropdown-options.w-col-18{width:18px}.ca-input-dropdown .popover-body .dropdown-options.w-col-19{width:19px}.ca-input-dropdown .popover-body .dropdown-options.w-col-20{width:20px}.ca-input-dropdown .popover-body .dropdown-options.w-col-21{width:21px}.ca-input-dropdown .popover-body .dropdown-options.w-col-22{width:22px}.ca-input-dropdown .popover-body .dropdown-options.w-col-23{width:23px}.ca-input-dropdown .popover-body .dropdown-options.w-col-24{width:24px}.ca-input-dropdown .popover-body .dropdown-options.w-col-25{width:25px}.ca-input-dropdown .popover-body .dropdown-options.w-col-26{width:26px}.ca-input-dropdown .popover-body .dropdown-options.w-col-27{width:27px}.ca-input-dropdown .popover-body .dropdown-options.w-col-28{width:28px}.ca-input-dropdown .popover-body .dropdown-options.w-col-29{width:29px}.ca-input-dropdown .popover-body .dropdown-options.w-col-30{width:30px}.ca-input-dropdown .popover-body .dropdown-options.w-col-31{width:31px}.ca-input-dropdown .popover-body .dropdown-options.w-col-32{width:32px}.ca-input-dropdown .popover-body .dropdown-options.w-col-33{width:33px}.ca-input-dropdown .popover-body .dropdown-options.w-col-34{width:34px}.ca-input-dropdown .popover-body .dropdown-options.w-col-35{width:35px}.ca-input-dropdown .popover-body .dropdown-options.w-col-36{width:36px}.ca-input-dropdown .popover-body .dropdown-options.w-col-37{width:37px}.ca-input-dropdown .popover-body .dropdown-options.w-col-38{width:38px}.ca-input-dropdown .popover-body .dropdown-options.w-col-39{width:39px}.ca-input-dropdown .popover-body .dropdown-options.w-col-40{width:40px}.ca-input-dropdown .popover-body .dropdown-options.w-col-41{width:41px}.ca-input-dropdown .popover-body .dropdown-options.w-col-42{width:42px}.ca-input-dropdown .popover-body .dropdown-options.w-col-43{width:43px}.ca-input-dropdown .popover-body .dropdown-options.w-col-44{width:44px}.ca-input-dropdown .popover-body .dropdown-options.w-col-45{width:45px}.ca-input-dropdown .popover-body .dropdown-options.w-col-46{width:46px}.ca-input-dropdown .popover-body .dropdown-options.w-col-47{width:47px}.ca-input-dropdown .popover-body .dropdown-options.w-col-48{width:48px}.ca-input-dropdown .popover-body .dropdown-options.w-col-49{width:49px}.ca-input-dropdown .popover-body .dropdown-options.w-col-50{width:50px}.ca-input-dropdown .popover-body .dropdown-options.w-col-51{width:51px}.ca-input-dropdown .popover-body .dropdown-options.w-col-52{width:52px}.ca-input-dropdown .popover-body .dropdown-options.w-col-53{width:53px}.ca-input-dropdown .popover-body .dropdown-options.w-col-54{width:54px}.ca-input-dropdown .popover-body .dropdown-options.w-col-55{width:55px}.ca-input-dropdown .popover-body .dropdown-options.w-col-56{width:56px}.ca-input-dropdown .popover-body .dropdown-options.w-col-57{width:57px}.ca-input-dropdown .popover-body .dropdown-options.w-col-58{width:58px}.ca-input-dropdown .popover-body .dropdown-options.w-col-59{width:59px}.ca-input-dropdown .popover-body .dropdown-options.w-col-60{width:60px}.ca-input-dropdown .popover-body .dropdown-options.w-col-61{width:61px}.ca-input-dropdown .popover-body .dropdown-options.w-col-62{width:62px}.ca-input-dropdown .popover-body .dropdown-options.w-col-63{width:63px}.ca-input-dropdown .popover-body .dropdown-options.w-col-64{width:64px}.ca-input-dropdown .popover-body .dropdown-options.w-col-65{width:65px}.ca-input-dropdown .popover-body .dropdown-options.w-col-66{width:66px}.ca-input-dropdown .popover-body .dropdown-options.w-col-67{width:67px}.ca-input-dropdown .popover-body .dropdown-options.w-col-68{width:68px}.ca-input-dropdown .popover-body .dropdown-options.w-col-69{width:69px}.ca-input-dropdown .popover-body .dropdown-options.w-col-70{width:70px}.ca-input-dropdown .popover-body .dropdown-options.w-col-71{width:71px}.ca-input-dropdown .popover-body .dropdown-options.w-col-72{width:72px}.ca-input-dropdown .popover-body .dropdown-options.w-col-73{width:73px}.ca-input-dropdown .popover-body .dropdown-options.w-col-74{width:74px}.ca-input-dropdown .popover-body .dropdown-options.w-col-75{width:75px}.ca-input-dropdown .popover-body .dropdown-options.w-col-76{width:76px}.ca-input-dropdown .popover-body .dropdown-options.w-col-77{width:77px}.ca-input-dropdown .popover-body .dropdown-options.w-col-78{width:78px}.ca-input-dropdown .popover-body .dropdown-options.w-col-79{width:79px}.ca-input-dropdown .popover-body .dropdown-options.w-col-80{width:80px}.ca-input-dropdown .popover-body .dropdown-options.w-col-81{width:81px}.ca-input-dropdown .popover-body .dropdown-options.w-col-82{width:82px}.ca-input-dropdown .popover-body .dropdown-options.w-col-83{width:83px}.ca-input-dropdown .popover-body .dropdown-options.w-col-84{width:84px}.ca-input-dropdown .popover-body .dropdown-options.w-col-85{width:85px}.ca-input-dropdown .popover-body .dropdown-options.w-col-86{width:86px}.ca-input-dropdown .popover-body .dropdown-options.w-col-87{width:87px}.ca-input-dropdown .popover-body .dropdown-options.w-col-88{width:88px}.ca-input-dropdown .popover-body .dropdown-options.w-col-89{width:89px}.ca-input-dropdown .popover-body .dropdown-options.w-col-90{width:90px}.ca-input-dropdown .popover-body .dropdown-options.w-col-91{width:91px}.ca-input-dropdown .popover-body .dropdown-options.w-col-92{width:92px}.ca-input-dropdown .popover-body .dropdown-options.w-col-93{width:93px}.ca-input-dropdown .popover-body .dropdown-options.w-col-94{width:94px}.ca-input-dropdown .popover-body .dropdown-options.w-col-95{width:95px}.ca-input-dropdown .popover-body .dropdown-options.w-col-96{width:96px}.ca-input-dropdown .popover-body .dropdown-options.w-col-97{width:97px}.ca-input-dropdown .popover-body .dropdown-options.w-col-98{width:98px}.ca-input-dropdown .popover-body .dropdown-options.w-col-99{width:99px}.ca-input-dropdown .popover-body .dropdown-options.w-col-100{width:100px}.ca-input-dropdown .popover-body .dropdown-options.w-col-101{width:101px}.ca-input-dropdown .popover-body .dropdown-options.w-col-102{width:102px}.ca-input-dropdown .popover-body .dropdown-options.w-col-103{width:103px}.ca-input-dropdown .popover-body .dropdown-options.w-col-104{width:104px}.ca-input-dropdown .popover-body .dropdown-options.w-col-105{width:105px}.ca-input-dropdown .popover-body .dropdown-options.w-col-106{width:106px}.ca-input-dropdown .popover-body .dropdown-options.w-col-107{width:107px}.ca-input-dropdown .popover-body .dropdown-options.w-col-108{width:108px}.ca-input-dropdown .popover-body .dropdown-options.w-col-109{width:109px}.ca-input-dropdown .popover-body .dropdown-options.w-col-110{width:110px}.ca-input-dropdown .popover-body .dropdown-options.w-col-111{width:111px}.ca-input-dropdown .popover-body .dropdown-options.w-col-112{width:112px}.ca-input-dropdown .popover-body .dropdown-options.w-col-113{width:113px}.ca-input-dropdown .popover-body .dropdown-options.w-col-114{width:114px}.ca-input-dropdown .popover-body .dropdown-options.w-col-115{width:115px}.ca-input-dropdown .popover-body .dropdown-options.w-col-116{width:116px}.ca-input-dropdown .popover-body .dropdown-options.w-col-117{width:117px}.ca-input-dropdown .popover-body .dropdown-options.w-col-118{width:118px}.ca-input-dropdown .popover-body .dropdown-options.w-col-119{width:119px}.ca-input-dropdown .popover-body .dropdown-options.w-col-120{width:120px}.ca-input-dropdown .popover-body .dropdown-options.w-col-121{width:121px}.ca-input-dropdown .popover-body .dropdown-options.w-col-122{width:122px}.ca-input-dropdown .popover-body .dropdown-options.w-col-123{width:123px}.ca-input-dropdown .popover-body .dropdown-options.w-col-124{width:124px}.ca-input-dropdown .popover-body .dropdown-options.w-col-125{width:125px}.ca-input-dropdown .popover-body .dropdown-options.w-col-126{width:126px}.ca-input-dropdown .popover-body .dropdown-options.w-col-127{width:127px}.ca-input-dropdown .popover-body .dropdown-options.w-col-128{width:128px}.ca-input-dropdown .popover-body .dropdown-options.w-col-129{width:129px}.ca-input-dropdown .popover-body .dropdown-options.w-col-130{width:130px}.ca-input-dropdown .popover-body .dropdown-options.w-col-131{width:131px}.ca-input-dropdown .popover-body .dropdown-options.w-col-132{width:132px}.ca-input-dropdown .popover-body .dropdown-options.w-col-133{width:133px}.ca-input-dropdown .popover-body .dropdown-options.w-col-134{width:134px}.ca-input-dropdown .popover-body .dropdown-options.w-col-135{width:135px}.ca-input-dropdown .popover-body .dropdown-options.w-col-136{width:136px}.ca-input-dropdown .popover-body .dropdown-options.w-col-137{width:137px}.ca-input-dropdown .popover-body .dropdown-options.w-col-138{width:138px}.ca-input-dropdown .popover-body .dropdown-options.w-col-139{width:139px}.ca-input-dropdown .popover-body .dropdown-options.w-col-140{width:140px}.ca-input-dropdown .popover-body .dropdown-options.w-col-141{width:141px}.ca-input-dropdown .popover-body .dropdown-options.w-col-142{width:142px}.ca-input-dropdown .popover-body .dropdown-options.w-col-143{width:143px}.ca-input-dropdown .popover-body .dropdown-options.w-col-144{width:144px}.ca-input-dropdown .popover-body .dropdown-options.w-col-145{width:145px}.ca-input-dropdown .popover-body .dropdown-options.w-col-146{width:146px}.ca-input-dropdown .popover-body .dropdown-options.w-col-147{width:147px}.ca-input-dropdown .popover-body .dropdown-options.w-col-148{width:148px}.ca-input-dropdown .popover-body .dropdown-options.w-col-149{width:149px}.ca-input-dropdown .popover-body .dropdown-options.w-col-150{width:150px}.ca-input-dropdown .popover-body .dropdown-options.w-col-151{width:151px}.ca-input-dropdown .popover-body .dropdown-options.w-col-152{width:152px}.ca-input-dropdown .popover-body .dropdown-options.w-col-153{width:153px}.ca-input-dropdown .popover-body .dropdown-options.w-col-154{width:154px}.ca-input-dropdown .popover-body .dropdown-options.w-col-155{width:155px}.ca-input-dropdown .popover-body .dropdown-options.w-col-156{width:156px}.ca-input-dropdown .popover-body .dropdown-options.w-col-157{width:157px}.ca-input-dropdown .popover-body .dropdown-options.w-col-158{width:158px}.ca-input-dropdown .popover-body .dropdown-options.w-col-159{width:159px}.ca-input-dropdown .popover-body .dropdown-options.w-col-160{width:160px}.ca-input-dropdown .popover-body .dropdown-options.w-col-161{width:161px}.ca-input-dropdown .popover-body .dropdown-options.w-col-162{width:162px}.ca-input-dropdown .popover-body .dropdown-options.w-col-163{width:163px}.ca-input-dropdown .popover-body .dropdown-options.w-col-164{width:164px}.ca-input-dropdown .popover-body .dropdown-options.w-col-165{width:165px}.ca-input-dropdown .popover-body .dropdown-options.w-col-166{width:166px}.ca-input-dropdown .popover-body .dropdown-options.w-col-167{width:167px}.ca-input-dropdown .popover-body .dropdown-options.w-col-168{width:168px}.ca-input-dropdown .popover-body .dropdown-options.w-col-169{width:169px}.ca-input-dropdown .popover-body .dropdown-options.w-col-170{width:170px}.ca-input-dropdown .popover-body .dropdown-options.w-col-171{width:171px}.ca-input-dropdown .popover-body .dropdown-options.w-col-172{width:172px}.ca-input-dropdown .popover-body .dropdown-options.w-col-173{width:173px}.ca-input-dropdown .popover-body .dropdown-options.w-col-174{width:174px}.ca-input-dropdown .popover-body .dropdown-options.w-col-175{width:175px}.ca-input-dropdown .popover-body .dropdown-options.w-col-176{width:176px}.ca-input-dropdown .popover-body .dropdown-options.w-col-177{width:177px}.ca-input-dropdown .popover-body .dropdown-options.w-col-178{width:178px}.ca-input-dropdown .popover-body .dropdown-options.w-col-179{width:179px}.ca-input-dropdown .popover-body .dropdown-options.w-col-180{width:180px}.ca-input-dropdown .popover-body .dropdown-options.w-col-181{width:181px}.ca-input-dropdown .popover-body .dropdown-options.w-col-182{width:182px}.ca-input-dropdown .popover-body .dropdown-options.w-col-183{width:183px}.ca-input-dropdown .popover-body .dropdown-options.w-col-184{width:184px}.ca-input-dropdown .popover-body .dropdown-options.w-col-185{width:185px}.ca-input-dropdown .popover-body .dropdown-options.w-col-186{width:186px}.ca-input-dropdown .popover-body .dropdown-options.w-col-187{width:187px}.ca-input-dropdown .popover-body .dropdown-options.w-col-188{width:188px}.ca-input-dropdown .popover-body .dropdown-options.w-col-189{width:189px}.ca-input-dropdown .popover-body .dropdown-options.w-col-190{width:190px}.ca-input-dropdown .popover-body .dropdown-options.w-col-191{width:191px}.ca-input-dropdown .popover-body .dropdown-options.w-col-192{width:192px}.ca-input-dropdown .popover-body .dropdown-options.w-col-193{width:193px}.ca-input-dropdown .popover-body .dropdown-options.w-col-194{width:194px}.ca-input-dropdown .popover-body .dropdown-options.w-col-195{width:195px}.ca-input-dropdown .popover-body .dropdown-options.w-col-196{width:196px}.ca-input-dropdown .popover-body .dropdown-options.w-col-197{width:197px}.ca-input-dropdown .popover-body .dropdown-options.w-col-198{width:198px}.ca-input-dropdown .popover-body .dropdown-options.w-col-199{width:199px}.ca-input-dropdown .popover-body .dropdown-options.w-col-200{width:200px}.ca-input-dropdown .popover-body .dropdown-options.w-col-201{width:201px}.ca-input-dropdown .popover-body .dropdown-options.w-col-202{width:202px}.ca-input-dropdown .popover-body .dropdown-options.w-col-203{width:203px}.ca-input-dropdown .popover-body .dropdown-options.w-col-204{width:204px}.ca-input-dropdown .popover-body .dropdown-options.w-col-205{width:205px}.ca-input-dropdown .popover-body .dropdown-options.w-col-206{width:206px}.ca-input-dropdown .popover-body .dropdown-options.w-col-207{width:207px}.ca-input-dropdown .popover-body .dropdown-options.w-col-208{width:208px}.ca-input-dropdown .popover-body .dropdown-options.w-col-209{width:209px}.ca-input-dropdown .popover-body .dropdown-options.w-col-210{width:210px}.ca-input-dropdown .popover-body .dropdown-options.w-col-211{width:211px}.ca-input-dropdown .popover-body .dropdown-options.w-col-212{width:212px}.ca-input-dropdown .popover-body .dropdown-options.w-col-213{width:213px}.ca-input-dropdown .popover-body .dropdown-options.w-col-214{width:214px}.ca-input-dropdown .popover-body .dropdown-options.w-col-215{width:215px}.ca-input-dropdown .popover-body .dropdown-options.w-col-216{width:216px}.ca-input-dropdown .popover-body .dropdown-options.w-col-217{width:217px}.ca-input-dropdown .popover-body .dropdown-options.w-col-218{width:218px}.ca-input-dropdown .popover-body .dropdown-options.w-col-219{width:219px}.ca-input-dropdown .popover-body .dropdown-options.w-col-220{width:220px}.ca-input-dropdown .popover-body .dropdown-options.w-col-221{width:221px}.ca-input-dropdown .popover-body .dropdown-options.w-col-222{width:222px}.ca-input-dropdown .popover-body .dropdown-options.w-col-223{width:223px}.ca-input-dropdown .popover-body .dropdown-options.w-col-224{width:224px}.ca-input-dropdown .popover-body .dropdown-options.w-col-225{width:225px}.ca-input-dropdown .popover-body .dropdown-options.w-col-226{width:226px}.ca-input-dropdown .popover-body .dropdown-options.w-col-227{width:227px}.ca-input-dropdown .popover-body .dropdown-options.w-col-228{width:228px}.ca-input-dropdown .popover-body .dropdown-options.w-col-229{width:229px}.ca-input-dropdown .popover-body .dropdown-options.w-col-230{width:230px}.ca-input-dropdown .popover-body .dropdown-options.w-col-231{width:231px}.ca-input-dropdown .popover-body .dropdown-options.w-col-232{width:232px}.ca-input-dropdown .popover-body .dropdown-options.w-col-233{width:233px}.ca-input-dropdown .popover-body .dropdown-options.w-col-234{width:234px}.ca-input-dropdown .popover-body .dropdown-options.w-col-235{width:235px}.ca-input-dropdown .popover-body .dropdown-options.w-col-236{width:236px}.ca-input-dropdown .popover-body .dropdown-options.w-col-237{width:237px}.ca-input-dropdown .popover-body .dropdown-options.w-col-238{width:238px}.ca-input-dropdown .popover-body .dropdown-options.w-col-239{width:239px}.ca-input-dropdown .popover-body .dropdown-options.w-col-240{width:240px}.ca-input-dropdown .popover-body .dropdown-options.w-col-241{width:241px}.ca-input-dropdown .popover-body .dropdown-options.w-col-242{width:242px}.ca-input-dropdown .popover-body .dropdown-options.w-col-243{width:243px}.ca-input-dropdown .popover-body .dropdown-options.w-col-244{width:244px}.ca-input-dropdown .popover-body .dropdown-options.w-col-245{width:245px}.ca-input-dropdown .popover-body .dropdown-options.w-col-246{width:246px}.ca-input-dropdown .popover-body .dropdown-options.w-col-247{width:247px}.ca-input-dropdown .popover-body .dropdown-options.w-col-248{width:248px}.ca-input-dropdown .popover-body .dropdown-options.w-col-249{width:249px}.ca-input-dropdown .popover-body .dropdown-options.w-col-250{width:250px}.ca-input-dropdown .popover-body .dropdown-options.w-col-251{width:251px}.ca-input-dropdown .popover-body .dropdown-options.w-col-252{width:252px}.ca-input-dropdown .popover-body .dropdown-options.w-col-253{width:253px}.ca-input-dropdown .popover-body .dropdown-options.w-col-254{width:254px}.ca-input-dropdown .popover-body .dropdown-options.w-col-255{width:255px}.ca-input-dropdown .popover-body .dropdown-options.w-col-256{width:256px}.ca-input-dropdown .popover-body .dropdown-options.w-col-257{width:257px}.ca-input-dropdown .popover-body .dropdown-options.w-col-258{width:258px}.ca-input-dropdown .popover-body .dropdown-options.w-col-259{width:259px}.ca-input-dropdown .popover-body .dropdown-options.w-col-260{width:260px}.ca-input-dropdown .popover-body .dropdown-options.w-col-261{width:261px}.ca-input-dropdown .popover-body .dropdown-options.w-col-262{width:262px}.ca-input-dropdown .popover-body .dropdown-options.w-col-263{width:263px}.ca-input-dropdown .popover-body .dropdown-options.w-col-264{width:264px}.ca-input-dropdown .popover-body .dropdown-options.w-col-265{width:265px}.ca-input-dropdown .popover-body .dropdown-options.w-col-266{width:266px}.ca-input-dropdown .popover-body .dropdown-options.w-col-267{width:267px}.ca-input-dropdown .popover-body .dropdown-options.w-col-268{width:268px}.ca-input-dropdown .popover-body .dropdown-options.w-col-269{width:269px}.ca-input-dropdown .popover-body .dropdown-options.w-col-270{width:270px}.ca-input-dropdown .popover-body .dropdown-options.w-col-271{width:271px}.ca-input-dropdown .popover-body .dropdown-options.w-col-272{width:272px}.ca-input-dropdown .popover-body .dropdown-options.w-col-273{width:273px}.ca-input-dropdown .popover-body .dropdown-options.w-col-274{width:274px}.ca-input-dropdown .popover-body .dropdown-options.w-col-275{width:275px}.ca-input-dropdown .popover-body .dropdown-options.w-col-276{width:276px}.ca-input-dropdown .popover-body .dropdown-options.w-col-277{width:277px}.ca-input-dropdown .popover-body .dropdown-options.w-col-278{width:278px}.ca-input-dropdown .popover-body .dropdown-options.w-col-279{width:279px}.ca-input-dropdown .popover-body .dropdown-options.w-col-280{width:280px}.ca-input-dropdown .popover-body .dropdown-options.w-col-281{width:281px}.ca-input-dropdown .popover-body .dropdown-options.w-col-282{width:282px}.ca-input-dropdown .popover-body .dropdown-options.w-col-283{width:283px}.ca-input-dropdown .popover-body .dropdown-options.w-col-284{width:284px}.ca-input-dropdown .popover-body .dropdown-options.w-col-285{width:285px}.ca-input-dropdown .popover-body .dropdown-options.w-col-286{width:286px}.ca-input-dropdown .popover-body .dropdown-options.w-col-287{width:287px}.ca-input-dropdown .popover-body .dropdown-options.w-col-288{width:288px}.ca-input-dropdown .popover-body .dropdown-options.w-col-289{width:289px}.ca-input-dropdown .popover-body .dropdown-options.w-col-290{width:290px}.ca-input-dropdown .popover-body .dropdown-options.w-col-291{width:291px}.ca-input-dropdown .popover-body .dropdown-options.w-col-292{width:292px}.ca-input-dropdown .popover-body .dropdown-options.w-col-293{width:293px}.ca-input-dropdown .popover-body .dropdown-options.w-col-294{width:294px}.ca-input-dropdown .popover-body .dropdown-options.w-col-295{width:295px}.ca-input-dropdown .popover-body .dropdown-options.w-col-296{width:296px}.ca-input-dropdown .popover-body .dropdown-options.w-col-297{width:297px}.ca-input-dropdown .popover-body .dropdown-options.w-col-298{width:298px}.ca-input-dropdown .popover-body .dropdown-options.w-col-299{width:299px}.ca-input-dropdown .popover-body .dropdown-options.w-col-300{width:300px}.ca-input-dropdown .popover-body .dropdown-options.w-col-301{width:301px}.ca-input-dropdown .popover-body .dropdown-options.w-col-302{width:302px}.ca-input-dropdown .popover-body .dropdown-options.w-col-303{width:303px}.ca-input-dropdown .popover-body .dropdown-options.w-col-304{width:304px}.ca-input-dropdown .popover-body .dropdown-options.w-col-305{width:305px}.ca-input-dropdown .popover-body .dropdown-options.w-col-306{width:306px}.ca-input-dropdown .popover-body .dropdown-options.w-col-307{width:307px}.ca-input-dropdown .popover-body .dropdown-options.w-col-308{width:308px}.ca-input-dropdown .popover-body .dropdown-options.w-col-309{width:309px}.ca-input-dropdown .popover-body .dropdown-options.w-col-310{width:310px}.ca-input-dropdown .popover-body .dropdown-options.w-col-311{width:311px}.ca-input-dropdown .popover-body .dropdown-options.w-col-312{width:312px}.ca-input-dropdown .popover-body .dropdown-options.w-col-313{width:313px}.ca-input-dropdown .popover-body .dropdown-options.w-col-314{width:314px}.ca-input-dropdown .popover-body .dropdown-options.w-col-315{width:315px}.ca-input-dropdown .popover-body .dropdown-options.w-col-316{width:316px}.ca-input-dropdown .popover-body .dropdown-options.w-col-317{width:317px}.ca-input-dropdown .popover-body .dropdown-options.w-col-318{width:318px}.ca-input-dropdown .popover-body .dropdown-options.w-col-319{width:319px}.ca-input-dropdown .popover-body .dropdown-options.w-col-320{width:320px}.ca-input-dropdown .popover-body .dropdown-options.w-col-321{width:321px}.ca-input-dropdown .popover-body .dropdown-options.w-col-322{width:322px}.ca-input-dropdown .popover-body .dropdown-options.w-col-323{width:323px}.ca-input-dropdown .popover-body .dropdown-options.w-col-324{width:324px}.ca-input-dropdown .popover-body .dropdown-options.w-col-325{width:325px}.ca-input-dropdown .popover-body .dropdown-options.w-col-326{width:326px}.ca-input-dropdown .popover-body .dropdown-options.w-col-327{width:327px}.ca-input-dropdown .popover-body .dropdown-options.w-col-328{width:328px}.ca-input-dropdown .popover-body .dropdown-options.w-col-329{width:329px}.ca-input-dropdown .popover-body .dropdown-options.w-col-330{width:330px}.ca-input-dropdown .popover-body .dropdown-options.w-col-331{width:331px}.ca-input-dropdown .popover-body .dropdown-options.w-col-332{width:332px}.ca-input-dropdown .popover-body .dropdown-options.w-col-333{width:333px}.ca-input-dropdown .popover-body .dropdown-options.w-col-334{width:334px}.ca-input-dropdown .popover-body .dropdown-options.w-col-335{width:335px}.ca-input-dropdown .popover-body .dropdown-options.w-col-336{width:336px}.ca-input-dropdown .popover-body .dropdown-options.w-col-337{width:337px}.ca-input-dropdown .popover-body .dropdown-options.w-col-338{width:338px}.ca-input-dropdown .popover-body .dropdown-options.w-col-339{width:339px}.ca-input-dropdown .popover-body .dropdown-options.w-col-340{width:340px}.ca-input-dropdown .popover-body .dropdown-options.w-col-341{width:341px}.ca-input-dropdown .popover-body .dropdown-options.w-col-342{width:342px}.ca-input-dropdown .popover-body .dropdown-options.w-col-343{width:343px}.ca-input-dropdown .popover-body .dropdown-options.w-col-344{width:344px}.ca-input-dropdown .popover-body .dropdown-options.w-col-345{width:345px}.ca-input-dropdown .popover-body .dropdown-options.w-col-346{width:346px}.ca-input-dropdown .popover-body .dropdown-options.w-col-347{width:347px}.ca-input-dropdown .popover-body .dropdown-options.w-col-348{width:348px}.ca-input-dropdown .popover-body .dropdown-options.w-col-349{width:349px}.ca-input-dropdown .popover-body .dropdown-options.w-col-350{width:350px}.ca-input-dropdown .popover-body .dropdown-options.w-col-351{width:351px}.ca-input-dropdown .popover-body .dropdown-options.w-col-352{width:352px}.ca-input-dropdown .popover-body .dropdown-options.w-col-353{width:353px}.ca-input-dropdown .popover-body .dropdown-options.w-col-354{width:354px}.ca-input-dropdown .popover-body .dropdown-options.w-col-355{width:355px}.ca-input-dropdown .popover-body .dropdown-options.w-col-356{width:356px}.ca-input-dropdown .popover-body .dropdown-options.w-col-357{width:357px}.ca-input-dropdown .popover-body .dropdown-options.w-col-358{width:358px}.ca-input-dropdown .popover-body .dropdown-options.w-col-359{width:359px}.ca-input-dropdown .popover-body .dropdown-options.w-col-360{width:360px}.ca-input-dropdown .popover-body .dropdown-options.w-col-361{width:361px}.ca-input-dropdown .popover-body .dropdown-options.w-col-362{width:362px}.ca-input-dropdown .popover-body .dropdown-options.w-col-363{width:363px}.ca-input-dropdown .popover-body .dropdown-options.w-col-364{width:364px}.ca-input-dropdown .popover-body .dropdown-options.w-col-365{width:365px}.ca-input-dropdown .popover-body .dropdown-options.w-col-366{width:366px}.ca-input-dropdown .popover-body .dropdown-options.w-col-367{width:367px}.ca-input-dropdown .popover-body .dropdown-options.w-col-368{width:368px}.ca-input-dropdown .popover-body .dropdown-options.w-col-369{width:369px}.ca-input-dropdown .popover-body .dropdown-options.w-col-370{width:370px}.ca-input-dropdown .popover-body .dropdown-options.w-col-371{width:371px}.ca-input-dropdown .popover-body .dropdown-options.w-col-372{width:372px}.ca-input-dropdown .popover-body .dropdown-options.w-col-373{width:373px}.ca-input-dropdown .popover-body .dropdown-options.w-col-374{width:374px}.ca-input-dropdown .popover-body .dropdown-options.w-col-375{width:375px}.ca-input-dropdown .popover-body .dropdown-options.w-col-376{width:376px}.ca-input-dropdown .popover-body .dropdown-options.w-col-377{width:377px}.ca-input-dropdown .popover-body .dropdown-options.w-col-378{width:378px}.ca-input-dropdown .popover-body .dropdown-options.w-col-379{width:379px}.ca-input-dropdown .popover-body .dropdown-options.w-col-380{width:380px}.ca-input-dropdown .popover-body .dropdown-options.w-col-381{width:381px}.ca-input-dropdown .popover-body .dropdown-options.w-col-382{width:382px}.ca-input-dropdown .popover-body .dropdown-options.w-col-383{width:383px}.ca-input-dropdown .popover-body .dropdown-options.w-col-384{width:384px}.ca-input-dropdown .popover-body .dropdown-options.w-col-385{width:385px}.ca-input-dropdown .popover-body .dropdown-options.w-col-386{width:386px}.ca-input-dropdown .popover-body .dropdown-options.w-col-387{width:387px}.ca-input-dropdown .popover-body .dropdown-options.w-col-388{width:388px}.ca-input-dropdown .popover-body .dropdown-options.w-col-389{width:389px}.ca-input-dropdown .popover-body .dropdown-options.w-col-390{width:390px}.ca-input-dropdown .popover-body .dropdown-options.w-col-391{width:391px}.ca-input-dropdown .popover-body .dropdown-options.w-col-392{width:392px}.ca-input-dropdown .popover-body .dropdown-options.w-col-393{width:393px}.ca-input-dropdown .popover-body .dropdown-options.w-col-394{width:394px}.ca-input-dropdown .popover-body .dropdown-options.w-col-395{width:395px}.ca-input-dropdown .popover-body .dropdown-options.w-col-396{width:396px}.ca-input-dropdown .popover-body .dropdown-options.w-col-397{width:397px}.ca-input-dropdown .popover-body .dropdown-options.w-col-398{width:398px}.ca-input-dropdown .popover-body .dropdown-options.w-col-399{width:399px}.ca-input-dropdown .popover-body .dropdown-options.w-col-400{width:400px}.ca-input-dropdown .popover-body .dropdown-options.w-col-401{width:401px}.ca-input-dropdown .popover-body .dropdown-options.w-col-402{width:402px}.ca-input-dropdown .popover-body .dropdown-options.w-col-403{width:403px}.ca-input-dropdown .popover-body .dropdown-options.w-col-404{width:404px}.ca-input-dropdown .popover-body .dropdown-options.w-col-405{width:405px}.ca-input-dropdown .popover-body .dropdown-options.w-col-406{width:406px}.ca-input-dropdown .popover-body .dropdown-options.w-col-407{width:407px}.ca-input-dropdown .popover-body .dropdown-options.w-col-408{width:408px}.ca-input-dropdown .popover-body .dropdown-options.w-col-409{width:409px}.ca-input-dropdown .popover-body .dropdown-options.w-col-410{width:410px}.ca-input-dropdown .popover-body .dropdown-options.w-col-411{width:411px}.ca-input-dropdown .popover-body .dropdown-options.w-col-412{width:412px}.ca-input-dropdown .popover-body .dropdown-options.w-col-413{width:413px}.ca-input-dropdown .popover-body .dropdown-options.w-col-414{width:414px}.ca-input-dropdown .popover-body .dropdown-options.w-col-415{width:415px}.ca-input-dropdown .popover-body .dropdown-options.w-col-416{width:416px}.ca-input-dropdown .popover-body .dropdown-options.w-col-417{width:417px}.ca-input-dropdown .popover-body .dropdown-options.w-col-418{width:418px}.ca-input-dropdown .popover-body .dropdown-options.w-col-419{width:419px}.ca-input-dropdown .popover-body .dropdown-options.w-col-420{width:420px}.ca-input-dropdown .popover-body .dropdown-options.w-col-421{width:421px}.ca-input-dropdown .popover-body .dropdown-options.w-col-422{width:422px}.ca-input-dropdown .popover-body .dropdown-options.w-col-423{width:423px}.ca-input-dropdown .popover-body .dropdown-options.w-col-424{width:424px}.ca-input-dropdown .popover-body .dropdown-options.w-col-425{width:425px}.ca-input-dropdown .popover-body .dropdown-options.w-col-426{width:426px}.ca-input-dropdown .popover-body .dropdown-options.w-col-427{width:427px}.ca-input-dropdown .popover-body .dropdown-options.w-col-428{width:428px}.ca-input-dropdown .popover-body .dropdown-options.w-col-429{width:429px}.ca-input-dropdown .popover-body .dropdown-options.w-col-430{width:430px}.ca-input-dropdown .popover-body .dropdown-options.w-col-431{width:431px}.ca-input-dropdown .popover-body .dropdown-options.w-col-432{width:432px}.ca-input-dropdown .popover-body .dropdown-options.w-col-433{width:433px}.ca-input-dropdown .popover-body .dropdown-options.w-col-434{width:434px}.ca-input-dropdown .popover-body .dropdown-options.w-col-435{width:435px}.ca-input-dropdown .popover-body .dropdown-options.w-col-436{width:436px}.ca-input-dropdown .popover-body .dropdown-options.w-col-437{width:437px}.ca-input-dropdown .popover-body .dropdown-options.w-col-438{width:438px}.ca-input-dropdown .popover-body .dropdown-options.w-col-439{width:439px}.ca-input-dropdown .popover-body .dropdown-options.w-col-440{width:440px}.ca-input-dropdown .popover-body .dropdown-options.w-col-441{width:441px}.ca-input-dropdown .popover-body .dropdown-options.w-col-442{width:442px}.ca-input-dropdown .popover-body .dropdown-options.w-col-443{width:443px}.ca-input-dropdown .popover-body .dropdown-options.w-col-444{width:444px}.ca-input-dropdown .popover-body .dropdown-options.w-col-445{width:445px}.ca-input-dropdown .popover-body .dropdown-options.w-col-446{width:446px}.ca-input-dropdown .popover-body .dropdown-options.w-col-447{width:447px}.ca-input-dropdown .popover-body .dropdown-options.w-col-448{width:448px}.ca-input-dropdown .popover-body .dropdown-options.w-col-449{width:449px}.ca-input-dropdown .popover-body .dropdown-options.w-col-450{width:450px}.ca-input-dropdown .popover-body .dropdown-options.w-col-451{width:451px}.ca-input-dropdown .popover-body .dropdown-options.w-col-452{width:452px}.ca-input-dropdown .popover-body .dropdown-options.w-col-453{width:453px}.ca-input-dropdown .popover-body .dropdown-options.w-col-454{width:454px}.ca-input-dropdown .popover-body .dropdown-options.w-col-455{width:455px}.ca-input-dropdown .popover-body .dropdown-options.w-col-456{width:456px}.ca-input-dropdown .popover-body .dropdown-options.w-col-457{width:457px}.ca-input-dropdown .popover-body .dropdown-options.w-col-458{width:458px}.ca-input-dropdown .popover-body .dropdown-options.w-col-459{width:459px}.ca-input-dropdown .popover-body .dropdown-options.w-col-460{width:460px}.ca-input-dropdown .popover-body .dropdown-options.w-col-461{width:461px}.ca-input-dropdown .popover-body .dropdown-options.w-col-462{width:462px}.ca-input-dropdown .popover-body .dropdown-options.w-col-463{width:463px}.ca-input-dropdown .popover-body .dropdown-options.w-col-464{width:464px}.ca-input-dropdown .popover-body .dropdown-options.w-col-465{width:465px}.ca-input-dropdown .popover-body .dropdown-options.w-col-466{width:466px}.ca-input-dropdown .popover-body .dropdown-options.w-col-467{width:467px}.ca-input-dropdown .popover-body .dropdown-options.w-col-468{width:468px}.ca-input-dropdown .popover-body .dropdown-options.w-col-469{width:469px}.ca-input-dropdown .popover-body .dropdown-options.w-col-470{width:470px}.ca-input-dropdown .popover-body .dropdown-options.w-col-471{width:471px}.ca-input-dropdown .popover-body .dropdown-options.w-col-472{width:472px}.ca-input-dropdown .popover-body .dropdown-options.w-col-473{width:473px}.ca-input-dropdown .popover-body .dropdown-options.w-col-474{width:474px}.ca-input-dropdown .popover-body .dropdown-options.w-col-475{width:475px}.ca-input-dropdown .popover-body .dropdown-options.w-col-476{width:476px}.ca-input-dropdown .popover-body .dropdown-options.w-col-477{width:477px}.ca-input-dropdown .popover-body .dropdown-options.w-col-478{width:478px}.ca-input-dropdown .popover-body .dropdown-options.w-col-479{width:479px}.ca-input-dropdown .popover-body .dropdown-options.w-col-480{width:480px}.ca-input-dropdown .popover-body .dropdown-options.w-col-481{width:481px}.ca-input-dropdown .popover-body .dropdown-options.w-col-482{width:482px}.ca-input-dropdown .popover-body .dropdown-options.w-col-483{width:483px}.ca-input-dropdown .popover-body .dropdown-options.w-col-484{width:484px}.ca-input-dropdown .popover-body .dropdown-options.w-col-485{width:485px}.ca-input-dropdown .popover-body .dropdown-options.w-col-486{width:486px}.ca-input-dropdown .popover-body .dropdown-options.w-col-487{width:487px}.ca-input-dropdown .popover-body .dropdown-options.w-col-488{width:488px}.ca-input-dropdown .popover-body .dropdown-options.w-col-489{width:489px}.ca-input-dropdown .popover-body .dropdown-options.w-col-490{width:490px}.ca-input-dropdown .popover-body .dropdown-options.w-col-491{width:491px}.ca-input-dropdown .popover-body .dropdown-options.w-col-492{width:492px}.ca-input-dropdown .popover-body .dropdown-options.w-col-493{width:493px}.ca-input-dropdown .popover-body .dropdown-options.w-col-494{width:494px}.ca-input-dropdown .popover-body .dropdown-options.w-col-495{width:495px}.ca-input-dropdown .popover-body .dropdown-options.w-col-496{width:496px}.ca-input-dropdown .popover-body .dropdown-options.w-col-497{width:497px}.ca-input-dropdown .popover-body .dropdown-options.w-col-498{width:498px}.ca-input-dropdown .popover-body .dropdown-options.w-col-499{width:499px}.ca-input-dropdown .popover-body .dropdown-options.w-col-500{width:500px}.ca-input-dropdown .popover-body .dropdown-options.w-col-501{width:501px}.ca-input-dropdown .popover-body .dropdown-options.w-col-502{width:502px}.ca-input-dropdown .popover-body .dropdown-options.w-col-503{width:503px}.ca-input-dropdown .popover-body .dropdown-options.w-col-504{width:504px}.ca-input-dropdown .popover-body .dropdown-options.w-col-505{width:505px}.ca-input-dropdown .popover-body .dropdown-options.w-col-506{width:506px}.ca-input-dropdown .popover-body .dropdown-options.w-col-507{width:507px}.ca-input-dropdown .popover-body .dropdown-options.w-col-508{width:508px}.ca-input-dropdown .popover-body .dropdown-options.w-col-509{width:509px}.ca-input-dropdown .popover-body .dropdown-options.w-col-510{width:510px}.ca-input-dropdown .popover-body .dropdown-options.w-col-511{width:511px}.ca-input-dropdown .popover-body .dropdown-options.w-col-512{width:512px}.ca-input-dropdown .popover-body .dropdown-options.w-col-513{width:513px}.ca-input-dropdown .popover-body .dropdown-options.w-col-514{width:514px}.ca-input-dropdown .popover-body .dropdown-options.w-col-515{width:515px}.ca-input-dropdown .popover-body .dropdown-options.w-col-516{width:516px}.ca-input-dropdown .popover-body .dropdown-options.w-col-517{width:517px}.ca-input-dropdown .popover-body .dropdown-options.w-col-518{width:518px}.ca-input-dropdown .popover-body .dropdown-options.w-col-519{width:519px}.ca-input-dropdown .popover-body .dropdown-options.w-col-520{width:520px}.ca-input-dropdown .popover-body .dropdown-options.w-col-521{width:521px}.ca-input-dropdown .popover-body .dropdown-options.w-col-522{width:522px}.ca-input-dropdown .popover-body .dropdown-options.w-col-523{width:523px}.ca-input-dropdown .popover-body .dropdown-options.w-col-524{width:524px}.ca-input-dropdown .popover-body .dropdown-options.w-col-525{width:525px}.ca-input-dropdown .popover-body .dropdown-options.w-col-526{width:526px}.ca-input-dropdown .popover-body .dropdown-options.w-col-527{width:527px}.ca-input-dropdown .popover-body .dropdown-options.w-col-528{width:528px}.ca-input-dropdown .popover-body .dropdown-options.w-col-529{width:529px}.ca-input-dropdown .popover-body .dropdown-options.w-col-530{width:530px}.ca-input-dropdown .popover-body .dropdown-options.w-col-531{width:531px}.ca-input-dropdown .popover-body .dropdown-options.w-col-532{width:532px}.ca-input-dropdown .popover-body .dropdown-options.w-col-533{width:533px}.ca-input-dropdown .popover-body .dropdown-options.w-col-534{width:534px}.ca-input-dropdown .popover-body .dropdown-options.w-col-535{width:535px}.ca-input-dropdown .popover-body .dropdown-options.w-col-536{width:536px}.ca-input-dropdown .popover-body .dropdown-options.w-col-537{width:537px}.ca-input-dropdown .popover-body .dropdown-options.w-col-538{width:538px}.ca-input-dropdown .popover-body .dropdown-options.w-col-539{width:539px}.ca-input-dropdown .popover-body .dropdown-options.w-col-540{width:540px}.ca-input-dropdown .popover-body .dropdown-options.w-col-541{width:541px}.ca-input-dropdown .popover-body .dropdown-options.w-col-542{width:542px}.ca-input-dropdown .popover-body .dropdown-options.w-col-543{width:543px}.ca-input-dropdown .popover-body .dropdown-options.w-col-544{width:544px}.ca-input-dropdown .popover-body .dropdown-options.w-col-545{width:545px}.ca-input-dropdown .popover-body .dropdown-options.w-col-546{width:546px}.ca-input-dropdown .popover-body .dropdown-options.w-col-547{width:547px}.ca-input-dropdown .popover-body .dropdown-options.w-col-548{width:548px}.ca-input-dropdown .popover-body .dropdown-options.w-col-549{width:549px}.ca-input-dropdown .popover-body .dropdown-options.w-col-550{width:550px}.ca-input-dropdown .popover-body .dropdown-options.w-col-551{width:551px}.ca-input-dropdown .popover-body .dropdown-options.w-col-552{width:552px}.ca-input-dropdown .popover-body .dropdown-options.w-col-553{width:553px}.ca-input-dropdown .popover-body .dropdown-options.w-col-554{width:554px}.ca-input-dropdown .popover-body .dropdown-options.w-col-555{width:555px}.ca-input-dropdown .popover-body .dropdown-options.w-col-556{width:556px}.ca-input-dropdown .popover-body .dropdown-options.w-col-557{width:557px}.ca-input-dropdown .popover-body .dropdown-options.w-col-558{width:558px}.ca-input-dropdown .popover-body .dropdown-options.w-col-559{width:559px}.ca-input-dropdown .popover-body .dropdown-options.w-col-560{width:560px}.ca-input-dropdown .popover-body .dropdown-options.w-col-561{width:561px}.ca-input-dropdown .popover-body .dropdown-options.w-col-562{width:562px}.ca-input-dropdown .popover-body .dropdown-options.w-col-563{width:563px}.ca-input-dropdown .popover-body .dropdown-options.w-col-564{width:564px}.ca-input-dropdown .popover-body .dropdown-options.w-col-565{width:565px}.ca-input-dropdown .popover-body .dropdown-options.w-col-566{width:566px}.ca-input-dropdown .popover-body .dropdown-options.w-col-567{width:567px}.ca-input-dropdown .popover-body .dropdown-options.w-col-568{width:568px}.ca-input-dropdown .popover-body .dropdown-options.w-col-569{width:569px}.ca-input-dropdown .popover-body .dropdown-options.w-col-570{width:570px}.ca-input-dropdown .popover-body .dropdown-options.w-col-571{width:571px}.ca-input-dropdown .popover-body .dropdown-options.w-col-572{width:572px}.ca-input-dropdown .popover-body .dropdown-options.w-col-573{width:573px}.ca-input-dropdown .popover-body .dropdown-options.w-col-574{width:574px}.ca-input-dropdown .popover-body .dropdown-options.w-col-575{width:575px}.ca-input-dropdown .popover-body .dropdown-options.w-col-576{width:576px}.ca-input-dropdown .popover-body .dropdown-options.w-col-577{width:577px}.ca-input-dropdown .popover-body .dropdown-options.w-col-578{width:578px}.ca-input-dropdown .popover-body .dropdown-options.w-col-579{width:579px}.ca-input-dropdown .popover-body .dropdown-options.w-col-580{width:580px}.ca-input-dropdown .popover-body .dropdown-options.w-col-581{width:581px}.ca-input-dropdown .popover-body .dropdown-options.w-col-582{width:582px}.ca-input-dropdown .popover-body .dropdown-options.w-col-583{width:583px}.ca-input-dropdown .popover-body .dropdown-options.w-col-584{width:584px}.ca-input-dropdown .popover-body .dropdown-options.w-col-585{width:585px}.ca-input-dropdown .popover-body .dropdown-options.w-col-586{width:586px}.ca-input-dropdown .popover-body .dropdown-options.w-col-587{width:587px}.ca-input-dropdown .popover-body .dropdown-options.w-col-588{width:588px}.ca-input-dropdown .popover-body .dropdown-options.w-col-589{width:589px}.ca-input-dropdown .popover-body .dropdown-options.w-col-590{width:590px}.ca-input-dropdown .popover-body .dropdown-options.w-col-591{width:591px}.ca-input-dropdown .popover-body .dropdown-options.w-col-592{width:592px}.ca-input-dropdown .popover-body .dropdown-options.w-col-593{width:593px}.ca-input-dropdown .popover-body .dropdown-options.w-col-594{width:594px}.ca-input-dropdown .popover-body .dropdown-options.w-col-595{width:595px}.ca-input-dropdown .popover-body .dropdown-options.w-col-596{width:596px}.ca-input-dropdown .popover-body .dropdown-options.w-col-597{width:597px}.ca-input-dropdown .popover-body .dropdown-options.w-col-598{width:598px}.ca-input-dropdown .popover-body .dropdown-options.w-col-599{width:599px}.ca-input-dropdown .popover-body .dropdown-options.w-col-600{width:600px}.ca-input-dropdown .popover-body .dropdown-options.w-col-601{width:601px}.ca-input-dropdown .popover-body .dropdown-options.w-col-602{width:602px}.ca-input-dropdown .popover-body .dropdown-options.w-col-603{width:603px}.ca-input-dropdown .popover-body .dropdown-options.w-col-604{width:604px}.ca-input-dropdown .popover-body .dropdown-options.w-col-605{width:605px}.ca-input-dropdown .popover-body .dropdown-options.w-col-606{width:606px}.ca-input-dropdown .popover-body .dropdown-options.w-col-607{width:607px}.ca-input-dropdown .popover-body .dropdown-options.w-col-608{width:608px}.ca-input-dropdown .popover-body .dropdown-options.w-col-609{width:609px}.ca-input-dropdown .popover-body .dropdown-options.w-col-610{width:610px}.ca-input-dropdown .popover-body .dropdown-options.w-col-611{width:611px}.ca-input-dropdown .popover-body .dropdown-options.w-col-612{width:612px}.ca-input-dropdown .popover-body .dropdown-options.w-col-613{width:613px}.ca-input-dropdown .popover-body .dropdown-options.w-col-614{width:614px}.ca-input-dropdown .popover-body .dropdown-options.w-col-615{width:615px}.ca-input-dropdown .popover-body .dropdown-options.w-col-616{width:616px}.ca-input-dropdown .popover-body .dropdown-options.w-col-617{width:617px}.ca-input-dropdown .popover-body .dropdown-options.w-col-618{width:618px}.ca-input-dropdown .popover-body .dropdown-options.w-col-619{width:619px}.ca-input-dropdown .popover-body .dropdown-options.w-col-620{width:620px}.ca-input-dropdown .popover-body .dropdown-options.w-col-621{width:621px}.ca-input-dropdown .popover-body .dropdown-options.w-col-622{width:622px}.ca-input-dropdown .popover-body .dropdown-options.w-col-623{width:623px}.ca-input-dropdown .popover-body .dropdown-options.w-col-624{width:624px}.ca-input-dropdown .popover-body .dropdown-options.w-col-625{width:625px}.ca-input-dropdown .popover-body .dropdown-options.w-col-626{width:626px}.ca-input-dropdown .popover-body .dropdown-options.w-col-627{width:627px}.ca-input-dropdown .popover-body .dropdown-options.w-col-628{width:628px}.ca-input-dropdown .popover-body .dropdown-options.w-col-629{width:629px}.ca-input-dropdown .popover-body .dropdown-options.w-col-630{width:630px}.ca-input-dropdown .popover-body .dropdown-options.w-col-631{width:631px}.ca-input-dropdown .popover-body .dropdown-options.w-col-632{width:632px}.ca-input-dropdown .popover-body .dropdown-options.w-col-633{width:633px}.ca-input-dropdown .popover-body .dropdown-options.w-col-634{width:634px}.ca-input-dropdown .popover-body .dropdown-options.w-col-635{width:635px}.ca-input-dropdown .popover-body .dropdown-options.w-col-636{width:636px}.ca-input-dropdown .popover-body .dropdown-options.w-col-637{width:637px}.ca-input-dropdown .popover-body .dropdown-options.w-col-638{width:638px}.ca-input-dropdown .popover-body .dropdown-options.w-col-639{width:639px}.ca-input-dropdown .popover-body .dropdown-options.w-col-640{width:640px}.ca-input-dropdown .popover-body .dropdown-options.w-col-641{width:641px}.ca-input-dropdown .popover-body .dropdown-options.w-col-642{width:642px}.ca-input-dropdown .popover-body .dropdown-options.w-col-643{width:643px}.ca-input-dropdown .popover-body .dropdown-options.w-col-644{width:644px}.ca-input-dropdown .popover-body .dropdown-options.w-col-645{width:645px}.ca-input-dropdown .popover-body .dropdown-options.w-col-646{width:646px}.ca-input-dropdown .popover-body .dropdown-options.w-col-647{width:647px}.ca-input-dropdown .popover-body .dropdown-options.w-col-648{width:648px}.ca-input-dropdown .popover-body .dropdown-options.w-col-649{width:649px}.ca-input-dropdown .popover-body .dropdown-options.w-col-650{width:650px}.ca-input-dropdown .popover-body .dropdown-options.w-col-651{width:651px}.ca-input-dropdown .popover-body .dropdown-options.w-col-652{width:652px}.ca-input-dropdown .popover-body .dropdown-options.w-col-653{width:653px}.ca-input-dropdown .popover-body .dropdown-options.w-col-654{width:654px}.ca-input-dropdown .popover-body .dropdown-options.w-col-655{width:655px}.ca-input-dropdown .popover-body .dropdown-options.w-col-656{width:656px}.ca-input-dropdown .popover-body .dropdown-options.w-col-657{width:657px}.ca-input-dropdown .popover-body .dropdown-options.w-col-658{width:658px}.ca-input-dropdown .popover-body .dropdown-options.w-col-659{width:659px}.ca-input-dropdown .popover-body .dropdown-options.w-col-660{width:660px}.ca-input-dropdown .popover-body .dropdown-options.w-col-661{width:661px}.ca-input-dropdown .popover-body .dropdown-options.w-col-662{width:662px}.ca-input-dropdown .popover-body .dropdown-options.w-col-663{width:663px}.ca-input-dropdown .popover-body .dropdown-options.w-col-664{width:664px}.ca-input-dropdown .popover-body .dropdown-options.w-col-665{width:665px}.ca-input-dropdown .popover-body .dropdown-options.w-col-666{width:666px}.ca-input-dropdown .popover-body .dropdown-options.w-col-667{width:667px}.ca-input-dropdown .popover-body .dropdown-options.w-col-668{width:668px}.ca-input-dropdown .popover-body .dropdown-options.w-col-669{width:669px}.ca-input-dropdown .popover-body .dropdown-options.w-col-670{width:670px}.ca-input-dropdown .popover-body .dropdown-options.w-col-671{width:671px}.ca-input-dropdown .popover-body .dropdown-options.w-col-672{width:672px}.ca-input-dropdown .popover-body .dropdown-options.w-col-673{width:673px}.ca-input-dropdown .popover-body .dropdown-options.w-col-674{width:674px}.ca-input-dropdown .popover-body .dropdown-options.w-col-675{width:675px}.ca-input-dropdown .popover-body .dropdown-options.w-col-676{width:676px}.ca-input-dropdown .popover-body .dropdown-options.w-col-677{width:677px}.ca-input-dropdown .popover-body .dropdown-options.w-col-678{width:678px}.ca-input-dropdown .popover-body .dropdown-options.w-col-679{width:679px}.ca-input-dropdown .popover-body .dropdown-options.w-col-680{width:680px}.ca-input-dropdown .popover-body .dropdown-options.w-col-681{width:681px}.ca-input-dropdown .popover-body .dropdown-options.w-col-682{width:682px}.ca-input-dropdown .popover-body .dropdown-options.w-col-683{width:683px}.ca-input-dropdown .popover-body .dropdown-options.w-col-684{width:684px}.ca-input-dropdown .popover-body .dropdown-options.w-col-685{width:685px}.ca-input-dropdown .popover-body .dropdown-options.w-col-686{width:686px}.ca-input-dropdown .popover-body .dropdown-options.w-col-687{width:687px}.ca-input-dropdown .popover-body .dropdown-options.w-col-688{width:688px}.ca-input-dropdown .popover-body .dropdown-options.w-col-689{width:689px}.ca-input-dropdown .popover-body .dropdown-options.w-col-690{width:690px}.ca-input-dropdown .popover-body .dropdown-options.w-col-691{width:691px}.ca-input-dropdown .popover-body .dropdown-options.w-col-692{width:692px}.ca-input-dropdown .popover-body .dropdown-options.w-col-693{width:693px}.ca-input-dropdown .popover-body .dropdown-options.w-col-694{width:694px}.ca-input-dropdown .popover-body .dropdown-options.w-col-695{width:695px}.ca-input-dropdown .popover-body .dropdown-options.w-col-696{width:696px}.ca-input-dropdown .popover-body .dropdown-options.w-col-697{width:697px}.ca-input-dropdown .popover-body .dropdown-options.w-col-698{width:698px}.ca-input-dropdown .popover-body .dropdown-options.w-col-699{width:699px}.ca-input-dropdown .popover-body .dropdown-options.w-col-700{width:700px}.ca-input-dropdown .popover-body .dropdown-options.w-col-701{width:701px}.ca-input-dropdown .popover-body .dropdown-options.w-col-702{width:702px}.ca-input-dropdown .popover-body .dropdown-options.w-col-703{width:703px}.ca-input-dropdown .popover-body .dropdown-options.w-col-704{width:704px}.ca-input-dropdown .popover-body .dropdown-options.w-col-705{width:705px}.ca-input-dropdown .popover-body .dropdown-options.w-col-706{width:706px}.ca-input-dropdown .popover-body .dropdown-options.w-col-707{width:707px}.ca-input-dropdown .popover-body .dropdown-options.w-col-708{width:708px}.ca-input-dropdown .popover-body .dropdown-options.w-col-709{width:709px}.ca-input-dropdown .popover-body .dropdown-options.w-col-710{width:710px}.ca-input-dropdown .popover-body .dropdown-options.w-col-711{width:711px}.ca-input-dropdown .popover-body .dropdown-options.w-col-712{width:712px}.ca-input-dropdown .popover-body .dropdown-options.w-col-713{width:713px}.ca-input-dropdown .popover-body .dropdown-options.w-col-714{width:714px}.ca-input-dropdown .popover-body .dropdown-options.w-col-715{width:715px}.ca-input-dropdown .popover-body .dropdown-options.w-col-716{width:716px}.ca-input-dropdown .popover-body .dropdown-options.w-col-717{width:717px}.ca-input-dropdown .popover-body .dropdown-options.w-col-718{width:718px}.ca-input-dropdown .popover-body .dropdown-options.w-col-719{width:719px}.ca-input-dropdown .popover-body .dropdown-options.w-col-720{width:720px}.ca-input-dropdown .popover-body .dropdown-options.w-col-721{width:721px}.ca-input-dropdown .popover-body .dropdown-options.w-col-722{width:722px}.ca-input-dropdown .popover-body .dropdown-options.w-col-723{width:723px}.ca-input-dropdown .popover-body .dropdown-options.w-col-724{width:724px}.ca-input-dropdown .popover-body .dropdown-options.w-col-725{width:725px}.ca-input-dropdown .popover-body .dropdown-options.w-col-726{width:726px}.ca-input-dropdown .popover-body .dropdown-options.w-col-727{width:727px}.ca-input-dropdown .popover-body .dropdown-options.w-col-728{width:728px}.ca-input-dropdown .popover-body .dropdown-options.w-col-729{width:729px}.ca-input-dropdown .popover-body .dropdown-options.w-col-730{width:730px}.ca-input-dropdown .popover-body .dropdown-options.w-col-731{width:731px}.ca-input-dropdown .popover-body .dropdown-options.w-col-732{width:732px}.ca-input-dropdown .popover-body .dropdown-options.w-col-733{width:733px}.ca-input-dropdown .popover-body .dropdown-options.w-col-734{width:734px}.ca-input-dropdown .popover-body .dropdown-options.w-col-735{width:735px}.ca-input-dropdown .popover-body .dropdown-options.w-col-736{width:736px}.ca-input-dropdown .popover-body .dropdown-options.w-col-737{width:737px}.ca-input-dropdown .popover-body .dropdown-options.w-col-738{width:738px}.ca-input-dropdown .popover-body .dropdown-options.w-col-739{width:739px}.ca-input-dropdown .popover-body .dropdown-options.w-col-740{width:740px}.ca-input-dropdown .popover-body .dropdown-options.w-col-741{width:741px}.ca-input-dropdown .popover-body .dropdown-options.w-col-742{width:742px}.ca-input-dropdown .popover-body .dropdown-options.w-col-743{width:743px}.ca-input-dropdown .popover-body .dropdown-options.w-col-744{width:744px}.ca-input-dropdown .popover-body .dropdown-options.w-col-745{width:745px}.ca-input-dropdown .popover-body .dropdown-options.w-col-746{width:746px}.ca-input-dropdown .popover-body .dropdown-options.w-col-747{width:747px}.ca-input-dropdown .popover-body .dropdown-options.w-col-748{width:748px}.ca-input-dropdown .popover-body .dropdown-options.w-col-749{width:749px}.ca-input-dropdown .popover-body .dropdown-options.w-col-750{width:750px}.ca-input-dropdown .popover-body .dropdown-options.w-col-751{width:751px}.ca-input-dropdown .popover-body .dropdown-options.w-col-752{width:752px}.ca-input-dropdown .popover-body .dropdown-options.w-col-753{width:753px}.ca-input-dropdown .popover-body .dropdown-options.w-col-754{width:754px}.ca-input-dropdown .popover-body .dropdown-options.w-col-755{width:755px}.ca-input-dropdown .popover-body .dropdown-options.w-col-756{width:756px}.ca-input-dropdown .popover-body .dropdown-options.w-col-757{width:757px}.ca-input-dropdown .popover-body .dropdown-options.w-col-758{width:758px}.ca-input-dropdown .popover-body .dropdown-options.w-col-759{width:759px}.ca-input-dropdown .popover-body .dropdown-options.w-col-760{width:760px}.ca-input-dropdown .popover-body .dropdown-options.w-col-761{width:761px}.ca-input-dropdown .popover-body .dropdown-options.w-col-762{width:762px}.ca-input-dropdown .popover-body .dropdown-options.w-col-763{width:763px}.ca-input-dropdown .popover-body .dropdown-options.w-col-764{width:764px}.ca-input-dropdown .popover-body .dropdown-options.w-col-765{width:765px}.ca-input-dropdown .popover-body .dropdown-options.w-col-766{width:766px}.ca-input-dropdown .popover-body .dropdown-options.w-col-767{width:767px}.ca-input-dropdown .popover-body .dropdown-options.w-col-768{width:768px}.ca-input-dropdown .popover-body .dropdown-options.w-col-769{width:769px}.ca-input-dropdown .popover-body .dropdown-options.w-col-770{width:770px}.ca-input-dropdown .popover-body .dropdown-options.w-col-771{width:771px}.ca-input-dropdown .popover-body .dropdown-options.w-col-772{width:772px}.ca-input-dropdown .popover-body .dropdown-options.w-col-773{width:773px}.ca-input-dropdown .popover-body .dropdown-options.w-col-774{width:774px}.ca-input-dropdown .popover-body .dropdown-options.w-col-775{width:775px}.ca-input-dropdown .popover-body .dropdown-options.w-col-776{width:776px}.ca-input-dropdown .popover-body .dropdown-options.w-col-777{width:777px}.ca-input-dropdown .popover-body .dropdown-options.w-col-778{width:778px}.ca-input-dropdown .popover-body .dropdown-options.w-col-779{width:779px}.ca-input-dropdown .popover-body .dropdown-options.w-col-780{width:780px}.ca-input-dropdown .popover-body .dropdown-options.w-col-781{width:781px}.ca-input-dropdown .popover-body .dropdown-options.w-col-782{width:782px}.ca-input-dropdown .popover-body .dropdown-options.w-col-783{width:783px}.ca-input-dropdown .popover-body .dropdown-options.w-col-784{width:784px}.ca-input-dropdown .popover-body .dropdown-options.w-col-785{width:785px}.ca-input-dropdown .popover-body .dropdown-options.w-col-786{width:786px}.ca-input-dropdown .popover-body .dropdown-options.w-col-787{width:787px}.ca-input-dropdown .popover-body .dropdown-options.w-col-788{width:788px}.ca-input-dropdown .popover-body .dropdown-options.w-col-789{width:789px}.ca-input-dropdown .popover-body .dropdown-options.w-col-790{width:790px}.ca-input-dropdown .popover-body .dropdown-options.w-col-791{width:791px}.ca-input-dropdown .popover-body .dropdown-options.w-col-792{width:792px}.ca-input-dropdown .popover-body .dropdown-options.w-col-793{width:793px}.ca-input-dropdown .popover-body .dropdown-options.w-col-794{width:794px}.ca-input-dropdown .popover-body .dropdown-options.w-col-795{width:795px}.ca-input-dropdown .popover-body .dropdown-options.w-col-796{width:796px}.ca-input-dropdown .popover-body .dropdown-options.w-col-797{width:797px}.ca-input-dropdown .popover-body .dropdown-options.w-col-798{width:798px}.ca-input-dropdown .popover-body .dropdown-options.w-col-799{width:799px}.ca-input-dropdown .popover-body .dropdown-options.w-col-800{width:800px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups{max-height:194px;overflow-y:scroll}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups{display:flex;flex-direction:column;position:relative}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:after{content:\"\";display:inline-block;position:absolute;bottom:-3px;height:1px;width:100%;background-color:#aaa3}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child{margin-top:4px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups:last-child:after{display:none!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header{font-size:11px;color:#ccc;font-weight:700;text-transform:uppercase;line-height:14px;padding:8px 6px 0;margin-bottom:8px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-group-header::selection{background-color:#ccc3!important;color:#ccc6!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options{display:flex;align-items:center;padding:4px 6px;height:26px;border-radius:2px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover{background-color:#1d1d1d;cursor:pointer;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#ccc;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632{font-weight:700;transition:all .3s ease-in-out}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .dropdown-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:11px;width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups{display:flex;flex-direction:column;position:relative;padding-bottom:0;margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups p{margin:0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header{margin:0 0 4px;padding:8px 0 0 4px;color:#ccc;font-size:11px;text-transform:capitalize}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new{font-size:11px;line-height:14px;font-weight:700;color:#6f9ee0;padding:4px;margin:0;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-group-header.add-new:hover{border-radius:2px;color:#bed0f9;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options{display:grid;grid-template-columns:141px 135px;grid-column-gap:10px;column-gap:10px;align-items:center;padding:3px 4px;cursor:pointer}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover{border-radius:2px;background-color:#1d1d1d}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options:hover .dropdown-subgroup-text{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text{font-size:14px;font-weight:400;color:#fff;display:block;width:100%}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text .highlight-text-45632:hover{color:#fff!important}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active{font-weight:700}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-text.active:after{position:absolute;right:-26px;width:14px;height:10px}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text{color:#919191;font-size:11px;font-weight:400;position:relative;text-align:right}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text.active{font-weight:400;color:#6f9ee0}.ca-input-dropdown .popover-body .dropdown-options.dropdown-options-groups .load-broker-contact-groups .dropdown-subgroup-options .dropdown-subgroup-additional-text .highlight-text-45632{font-weight:500;color:#6f9ee0!important}.ca-input-dropdown .popover-body .dropdown-options.merge-dropdown-body-with-input{border-radius:0 0 2px 2px!important;left:-4px!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template{top:-4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .plus-icon{margin-right:4px}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.blue circle{fill:#92b1f5!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.yellow circle{fill:#fbc88b!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.red circle{fill:#ed9292!important}.ca-input-dropdown .popover-body .dropdown-options.svgtext-dispatch-template .icon.green circle{fill:#86c9c3!important}.ta-dropdown-popover{z-index:999999}.ta-dropdown-popover .arrow{display:none!important}.ta-dropdown-popover .popover-body{z-index:99999999}.ta-dropdown-popover .popover-body .options{position:relative;top:3px;z-index:1000;max-height:198px;width:100%;background-color:#2f2f2f;border-radius:2px;padding:2px;overflow:hidden}.ta-dropdown-popover .popover-body .options.scroll{transition:all .3s ease-in-out;overflow-y:scroll!important;scrollbar-width:none!important}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar{width:3px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-thumb{background-color:transparent;border:6px solid #aaaaaa;border-radius:1px}.ta-dropdown-popover .popover-body .options.scroll::-webkit-scrollbar-track{padding:0;position:relative;right:0;top:0;background:transparent}.ta-dropdown-popover .popover-body .options .option{position:relative;padding:3px;height:26px;font-size:14px;line-height:18px;font-weight:400;border-radius:2px;white-space:nowrap;text-overflow:ellipsis;color:#fff;display:flex;gap:4px}.ta-dropdown-popover .popover-body .options .option::-moz-selection{color:#fff;background-color:#fff3}.ta-dropdown-popover .popover-body .options .option:nth-last-child(1){margin-bottom:0}.ta-dropdown-popover .popover-body .options .option:hover{background-color:#1d1d1d;border-radius:2px;cursor:pointer}.ta-dropdown-popover .popover-body .options .option.add-option{color:#6f9ee0;font-weight:600}.ta-dropdown-popover .popover-body .options .option.add-option:after{content:\"\";height:2px;width:100%;background-color:#aaa3;border-radius:1px;position:absolute;bottom:0;left:0}.selected-item-container{height:52px;padding:6px;background:#e9effd;position:relative;border-radius:2px;transition:background .3s ease-in-out}.selected-item-container:hover{background:#bed0f9}.selected-item-container:hover .selected-item-additional .selected-item-info svg-icon svg path{fill:#3b73ed}.selected-item-container:hover .clear-selected-item{display:flex;align-items:center}.selected-item-container .selected-item-label{position:absolute;top:-16px;font-size:11px;font-weight:600;color:#424242;-webkit-user-select:none;user-select:none}.selected-item-container .selected-item-label span{color:#df3c3c}.selected-item-container .selected-item-name{font-size:14px;line-height:18px;color:#424242}.selected-item-container .selected-item-name::selection{color:#424242;background:#42424233}.selected-item-container .selected-item-name .selected-item-star{position:relative;bottom:2px}.selected-item-container .selected-item-name .selected-item-star svg{margin-left:6px}.selected-item-container .selected-item-name .selected-item-star svg path{fill:#6692f1}.selected-item-container .selected-item-additional{gap:22px}.selected-item-container .selected-item-additional .selected-item-info svg-icon{width:14px}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg{width:100%;height:100%}.selected-item-container .selected-item-additional .selected-item-info svg-icon svg path{fill:#6692f1;transition:fill .3s ease-in-out}.selected-item-container .selected-item-additional .selected-item-info .hide-svg-on-copy{display:none}.selected-item-container .clear-selected-item{position:absolute;right:4px;top:0;display:none;gap:6px}.selected-item-container .clear-selected-item .clear-x{cursor:pointer;transition:transform .3s ease-in-out}.selected-item-container .clear-selected-item .clear-x:hover{transform:scale(1.2)}.selected-item-container .clear-selected-item .clear-x svg path{fill:#bed0f9}.selected-item-container .clear-selected-item .clear-x svg rect{fill:#6692f1}.selected-item-container .clear-selected-item .clear-x:hover svg rect{fill:#0b49d1}.selected-item-container.non-editable{background-color:#f7f7f7}.selected-item-container.non-editable .selected-item-label,.selected-item-container.non-editable .selected-item-name{color:#919191}.selected-item-container.non-editable .selected-item-additional .selected-item-info svg-icon svg path{fill:#ccc}.selected-item-container.non-editable .selected-item-additional .selected-item-info p{color:#919191}.dropdown-trailer-hover:hover .ic_truck_semi-truck svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_truck_semi-wSleeper svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_truck_box-truck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_truck_cargo-van svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_truck_tow-truck svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_truck_car-hauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_truck_spotter svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_reefer svg path{fill:#6692f1}.dropdown-trailer-hover:hover .ic_trailer_dryvan svg path{fill:#8785e8}.dropdown-trailer-hover:hover .ic_trailer_side-kit svg path{fill:#ff906d}.dropdown-trailer-hover:hover .ic_trailer_conestoga svg path{fill:#daad4f}.dropdown-trailer-hover:hover .ic_trailer_dumper svg path{fill:#b370f0}.dropdown-trailer-hover:hover .ic_trailer_container svg path{fill:#fab15c}.dropdown-trailer-hover:hover .ic_trailer_tanker svg path{fill:#77bf56}.dropdown-trailer-hover:hover .ic_trailer_carhauler svg path{fill:#e668a0}.dropdown-trailer-hover:hover .ic_trailer_flatbed svg path{fill:#ed9292}.dropdown-trailer-hover:hover .ic_trailer_low-boy svg path{fill:#df3c3c}.dropdown-trailer-hover:hover .ic_trailer_chassis svg path{fill:#a08266}.dropdown-trailer-hover:hover .ic_trailer_step-deck svg path{fill:#e66767}.dropdown-trailer-hover:hover .ic_trailer_tanker_pneumatic svg path{fill:#56b4ac}.dropdown-trailer-hover:hover .ic_carhauler_stinger svg path{fill:#df3d85}.hide-after-arrow .dropdown-option.active:after{display:none!important}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-main-tooltip{pointer-events:none}.app-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.tooltip-arrow{display:none!important}p{margin-bottom:0!important}.desc::selection{color:#6c6c6c;background:#6c6c6c33}.details-container-items{display:grid;grid-template-columns:440px repeat(4,335px);column-gap:12px;row-gap:12px;padding-bottom:12px}.details-component{display:grid;grid-auto-flow:column;column-gap:12px;row-gap:12px}.details-component .truck-wrapper{background-color:#dadada;border-radius:3px;margin-bottom:8px;width:440px;height:226px}.details-component .truck-wrapper p{margin:0}.details-component .truck-wrapper .truck-card-top{display:flex;align-items:center;justify-content:space-between}.details-component .truck-wrapper .truck-card-top .truck-card-name{color:#6c6c6c;font-size:18px;font-weight:500;position:relative;top:1px}.details-component .truck-wrapper .truck-card-top .truck-card-name::selection{color:#6c6c6c;background:#b7b7b733}.details-component .truck-wrapper .details-page-row-5{margin-top:8px}.details-component .truck-wrapper .details-page-row-7{height:236px;width:100%;margin:22px 0}.details-component .truck-wrapper .show-details{font-size:12px;font-weight:700;color:#778fbb;text-decoration:none;-webkit-user-select:none;user-select:none}.details-component .truck-wrapper .show-details:hover{transition:all .3s ease-in-out;cursor:pointer;text-decoration:underline;color:#5673aa}.details-component .details-cards{border-radius:3px;overflow:hidden;width:440px;background-color:#dadada;padding:1px 8px 0}.details-component .details-cards.trailer-details-card{padding:0 8px}.assign-to{position:relative;left:-3px;display:grid;grid-template-columns:204px 204px;column-gap:12px;padding:0}.assign-to .assign-to-vehicle svg{width:55px;height:20px;display:flex;align-items:center}.assign-to .assign-to-vehicle svg:hover path{fill:#6c6c6c!important}.assign-to .assign-to-vehicle svg path{fill:#aaa}.assign-to .first .assign-to-vehicle svg{display:flex;align-items:center}.assign-to .first:hover .open-modal-icon{display:block;position:relative;bottom:4px;height:18px;width:18px}.assign-to .first:hover .open-modal-icon svg{cursor:pointer}.assign-to .first:hover .open-modal-icon svg:hover path{fill:#6c6c6c}.assign-to .second .icon-text-wrapper-cmp{position:relative;top:1px}.assign-to .second .assign-to-vehicle svg{display:flex}.assign-to .second:hover .open-modal-icon2{display:block;height:18px;width:18px;position:relative;bottom:4px}.assign-to .second:hover .open-modal-icon2 svg{cursor:pointer}.assign-to .second:hover .open-modal-icon2 svg:hover path{fill:#6c6c6c}.assign-to .assign-to-item{background-color:#f7f7f7;border-radius:2px;display:flex;align-items:center}.assign-to .assign-to-item .icon-text-wrapper-cmp{display:flex;align-items:center;padding-left:6px;margin:7px 0}.assign-to .assign-to-item .semi-tooltip{width:40px;height:20px}.assign-to .assign-to-item .semi-tooltip.typeDetails{width:auto}.assign-to .assign-to-item svg{fill:#aaa;object-fit:fill;height:20px;width:55px}.assign-to .assign-to-item .open-modal-icon,.assign-to .assign-to-item .open-modal-icon2{display:none}.assign-to .assign-to-item .assign-to-vehicle{margin-right:6px;position:relative;bottom:0}.assign-to .assign-to-item .assign-to-vehicle.backImage{margin-right:0}.assign-to .assign-to-item .assign-to-value{font-size:14px;font-weight:500;color:#424242;line-height:18px;padding:4px 6px}.assign-to .assign-to-item .assign-to-value::selection{color:#424242;background:#42424233}.assign-to .assign-to-item .assign-to-value.inactive-assignTo-value{color:#aaa;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.assign-to .assign-to-item p{margin:0!important}.card-container .card-body-cdl{display:grid;padding:0 4px}.card-container .card-body-cdl .card-item-name{font-size:11px;color:#2f2f2f;font-weight:700;height:15px;margin-bottom:2px}.card-container .card-body-cdl .card-item-name::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap;height:18px}.card-container .card-body-cdl .card-item-value::selection{color:#6c6c6c;background:#6c6c6c33}.card-container .card-body-cdl .card-item-value:hover{color:#2f2f2f}.card-container .card-body-cdl .card-row-issued{display:grid;grid-template-columns:32px 32px 32px;column-gap:49px;margin-top:12px}.card-container .card-body-cdl .card-row-endor{display:grid;grid-template-columns:repeat(auto-fit,minmax(20%,1fr));gap:6px;margin-bottom:4px}.card-container .card-body-cdl .card-row-progress{margin-top:8px}.card-container .card-body-cdl .endorsement{margin-top:12px}.perfomance{display:flex!important;flex-direction:column}.perfomance .common-template-item-name{font-size:14px!important;font-weight:600!important}.perfomance .common-template-item-value{font-size:18px!important;font-weight:600!important}.card-pdf{padding:0 5px;margin-bottom:12px}.card-pdf.extended{margin-bottom:30px}.card-pdf.disabled{height:0!important;margin:0!important;padding:0!important}.status-container{padding-top:12px;display:flex;flex-direction:column;margin-bottom:-12px!important}.status-container .status-header{display:flex;justify-content:space-between;align-items:center}.status-container .status-header .status-item{height:18px}.status-container .status-header .status-item .p-status{font-size:14px;font-weight:700;color:#2f2f2f}.status-container .status-header .status-item .p-status::selection{color:#2f2f2f;background:#91919133}.status-container .status-header .status-item .p-status .note-textarea{color:#6c6c6c!important;font-weight:500!important}.status-container .status-header .status-item .p-status .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea span::selection,.status-container .status-header .status-item .p-status .note-textarea div::selection,.status-container .status-header .status-item .p-status .note-textarea b::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#dadada\"]::selection{color:#dadada!important;background:#dadada33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\" $ta-blue-13\"]::selection{color:#6692f1!important;background:#6692f133!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#56b4ac\"]::selection{color:#56b4ac!important;background:#56b4ac33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#e66767\"]::selection{color:#e66767!important;background:#e6676733!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#fab15c\"]::selection{color:#fab15c!important;background:#fab15c33!important}.status-container .status-header .status-item .p-status .note-textarea font[color=\"#b370f0\"]::selection{color:#b370f0!important;background:#b370f033!important}.status-container .status-items .item-wrapper{display:grid;grid-template-columns:119px 137px 78px;grid-column-gap:45px;align-content:center;justify-content:center}.status-container .status-items .item-wrapper .svg-text{display:flex;align-items:center}.status-container .status-items .item-wrapper .svg-text .employment{margin-left:6px;position:relative;bottom:-2px}.status-container .status-items .item-wrapper .duration{text-align:right}.status-container .status-items .item-wrapper p{font-size:14px;font-weight:400;color:#2f2f2f;white-space:nowrap}.status-container .status-items .item-wrapper p::selection{color:#6c6c6c;background:#6c6c6c33}.status-container .status-items .item-wrapper p span::selection{color:#6c6c6c;background:#6c6c6c33}.charts-template{display:grid;grid-template-columns:215px 1fr;grid-row-gap:12px;row-gap:12px;margin-bottom:12px}.charts-template .charts-template-item{display:flex;flex-direction:column}.charts-template .charts-template-item .icon-name-item{display:flex;align-items:baseline;height:18px}.charts-template .charts-template-item .icon-name-item .charts-template-item-name{margin-right:4px}.charts-template .charts-template-item .charts-template-item-name{font-size:11px;color:#424242;font-weight:700;line-height:14px}.charts-template .charts-template-item .charts-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value{font-size:18px;font-weight:500;color:#424242;width:220px}.charts-template .charts-template-item .charts-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.charts-template .charts-template-item .charts-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.second-progress{margin-bottom:16px}.truck-details-wrapper{padding:0 12px}.truck-details-wrapper .truck svg{width:132px;height:48px}.truck-details-wrapper .details-header-avatar{display:flex;align-items:center;height:48px;margin-top:14px}.truck-details-wrapper .details-header-avatar .model-name{flex-direction:column;margin-left:12px;margin-top:12px}.truck-details-wrapper .details-header-avatar .model-name p{font-size:18px;font-weight:500;color:#2f2f2f}.truck-details-wrapper .details-header-avatar .model-name p::selection{color:#6c6c6c;background:#6c6c6c33}.truck-details-wrapper .details-header-avatar .model-name .svg-wrapper{height:14px;display:flex;align-items:flex-end;margin-bottom:2px}.truck-details-wrapper .details-header-avatar .model-name svg path{fill:#424242;object-fit:fill}.truck-details-wrapper .details-header-avatar .model-name svg rect{fill:#aaa}.truck-details-wrapper .details-header-data{margin-top:14px}.truck-details-wrapper .details-header-data .details-header-data-item{display:flex;height:18px;align-items:center}.truck-details-wrapper .details-header-data .details-header-data-item p{font-size:18px;color:#2f2f2f;font-weight:400}.truck-details-wrapper .details-header-data .details-header-data-item .header-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .details-header-data .second{margin-top:14px;margin-bottom:14px}.truck-details-wrapper .details-header-data .second p{font-size:14px!important;color:#2f2f2f;font-weight:400;position:relative;bottom:-1px}.truck-details-wrapper .details-header-data .second .date{margin-left:8px!important;position:relative}.truck-details-wrapper .color-text{font-family:Montserrat;font-size:14px;font-weight:400;line-height:18px;text-align:left}.truck-details-wrapper .vin-text{margin-left:6px!important;margin-right:37px;position:relative;bottom:-1px!important}.common-template{display:grid;grid-template-columns:202px 1fr;row-gap:12px}.common-template .common-item-wrapper{display:flex;align-items:center;height:40px}.common-template .common-template-item{display:flex;flex-direction:column}.common-template .common-template-item::selection{color:#6c6c6c;background:#6c6c6c33}.common-template .common-template-item .icon-name-item{display:flex;align-items:center;height:18px}.common-template .common-template-item .icon-name-item .common-template-item-name{margin-left:6px}.common-template .common-template-item .common-template-item-name{font-size:11px;font-weight:600;color:#424242}.common-template .common-template-item .common-template-item-name::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value{font-size:14px;font-weight:500;color:#424242;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.common-template .common-template-item .common-template-item-value::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value p::selection{color:#6c6c6c;background:#b7b7b733}.common-template .common-template-item .common-template-item-value .hidden-svg-eye{margin-left:6px;position:relative;bottom:1px}.divider{margin:0;height:2px;width:100%;border-radius:1px;background-color:#f3f3f3}.card_files_holder.active{min-height:448px}.note-cards .note-body{padding-left:0!important;padding-right:2px!important}.note-cards .note-body .note-textarea{color:#6c6c6c!important;font-weight:400!important;padding-bottom:12px!important}.note-cards .note-body .note-textarea::selection{color:#6c6c6c;background:#6c6c6c33}.vin-text::selection{color:#6c6c6c;background:#6c6c6c33}.no-data-driver-details{font-size:14px;font-weight:400;color:#919191}.no-data-driver-details::selection{color:#919191;background:#b7b7b733}.owner-items{display:flex;align-items:center;height:18px}.owner-items .card-icon{display:none;cursor:pointer;margin-left:6px}.owner-items .information-value{font-size:14px;font-weight:400;color:#6c6c6c;margin-left:6px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.owner-items .information-value::selection{color:#6c6c6c;background:#6c6c6c33}.owner-items:hover .card-icon{display:flex}.copied .vin-text,.copied .information-value{animation-duration:1.5s;animation-name:change}.copied .card-icon svg path{animation-duration:1.5s;animation-name:changeSVG}.copied .card-icon svg path:hover{animation-duration:1.5s;animation-name:changeSVG}.hide-show{font-size:14px;color:#6d82c7;font-weight:600;margin-left:6px;cursor:pointer}.hide-show::selection{color:#6d82c7;background:#536bc233}.hide-show:hover{color:#536bc2}.bind-height{max-height:-moz-fit-content!important;max-height:fit-content!important}.card-width{width:335px}.icons-details{margin-right:6px}.date-details-svg{margin-left:29px}.note-details-holder{padding-right:6px;padding-left:3px}.note-details-holder .note-container .note-header.active .note-label{color:#6c6c6c!important}.note-details-holder .note-container .note-header .note_upper_hold svg path{fill:#919191}.note-details-holder .note-container .note-header .note_upper_hold .rotate svg path{fill:#aaa}.boldSanVin{font-weight:800}@media (max-width: 1910px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,320px)}.card-width{width:320px}.repair-details-container,.repair-details-cmp{grid-template-columns:440px 712px 320px 260px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 145px!important}.repair-container{width:712px!important}.repaired-vehicle-container{width:320px!important}.likes-count-container{width:260px}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 50px 46px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 79px 52px 66px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 325px!important}.counter-text{padding:0 0 0 8px!important}.reason-span{display:none}app-shipper-details .load,app-broker-details .load{width:712px!important}app-shipper-details .contact,app-broker-details .contact{width:320px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:320px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:260px!important}app-shipper-details .review-container,app-broker-details .review-container{width:260px!important}}@media (max-width: 1870px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,300px)}.card-width{width:300px}}@media (max-width: 1850px){.repair-details-container,.repair-details-cmp{grid-template-columns:430px 702px 310px 250px!important}.repair-general-holder{width:430px}.repair-container{width:702px!important}.repaired-vehicle-container{width:310px!important}.likes-count-container{width:250px}.repair-component{height:max-content}.repair-component .repair-cards{width:430px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 110px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 109px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 37px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 40px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:430px!important}app-shipper-details .load,app-broker-details .load{width:702px!important}app-shipper-details .contact,app-broker-details .contact{width:310px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:310px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:250px!important}app-shipper-details .review-container,app-broker-details .review-container{width:250px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:407px!important}}@media (max-width: 1820px){.repair-details-container,.repair-details-cmp{grid-template-columns:420px 692px 300px 240px!important}.repair-general-holder{width:420px}.repair-container{width:692px!important}.repaired-vehicle-container{width:300px!important}.likes-count-container{width:240px}.repair-component .repair-cards{width:420px!important}app-repair-shop-details-item .finish-order-cont .repair-items .items-header.repair-item-column.responsiveHolderRepair{grid-template-columns:85px 35px 100px 95px 315px!important}.responsiveHolderRepair{grid-template-columns:125px 99px 95px 179px 137px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:50px 88px 27px 66px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:37px 55px 29px 46px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:420px!important}app-shipper-details .load,app-broker-details .load{width:692px!important}app-shipper-details .contact,app-broker-details .contact{width:300px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:300px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:240px!important}app-shipper-details .review-container,app-broker-details .review-container{width:240px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:396px!important}}@media (max-width: 1780px){.details-container-items{display:grid;grid-template-columns:440px repeat(4,280px)}.card-width{width:280px}.request-header-container{width:26px!important;height:26px!important}.request-header-container p{display:none}.request-header-container svg-icon{display:flex!important;transition:background .2s ease-in}.request-header-container svg-icon:hover{background:#e9effd!important}.request-header-container svg-icon:hover svg path{fill:#0b49d1}.repair-details-container{grid-template-columns:475px 760px 410px 0px!important}.repair-general-holder{width:475px}.repair-container{width:760px!important}.repaired-vehicle-container{width:410px!important;max-width:410px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:475px!important}.repair-component .repair-cards{width:475px!important}.repair-details-cmp{grid-template-columns:475px 760px 410px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:-moz-fit-content;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:410px!important;max-width:410px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:410px!important;max-width:410px!important}.purchase-template{display:grid;grid-template-columns:repeat(2,50%)!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:475px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:475px!important;max-width:475px!important}app-shipper-details .load,app-broker-details .load{width:760px!important}app-shipper-details .contact,app-broker-details .contact{width:410px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:410px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:410px!important}app-shipper-details .review-container,app-broker-details .review-container{width:410px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:450px!important}}@media (max-width: 1760px){.repair-details-container{grid-template-columns:455px 740px 390px 0px!important}.repair-general-holder{width:455px}.repair-container{width:740px!important}.repaired-vehicle-container{width:390px!important;max-width:390px!important}.likes-count-container{width:0px}.details-header-wrapper-reapirShop{max-width:455px!important}.repair-component .repair-cards{width:455px!important}.repair-details-cmp{grid-template-columns:455px 740px 390px 0px!important}.repair-details-cmp .repair-component{column-gap:0px;height:40px}.repair-details-cmp .repair-component.vehicleHolder{grid-row:1!important;grid-column:3!important;height:-moz-fit-content;height:fit-content}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:410px!important}.repair-details-cmp .review-container{width:390px!important;max-width:390px!important}.repair-details-cmp .likes-count-container{display:flex;justify-content:center;width:390px!important;max-width:390px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:455px!important;max-width:455px!important}app-shipper-details .load,app-broker-details .load{width:740px!important}app-shipper-details .contact,app-broker-details .contact{width:390px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:390px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:390px!important}app-shipper-details .review-container,app-broker-details .review-container{width:390px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:430px!important}}@media (max-width: 1700px){.details-container-items{display:grid;grid-template-columns:420px repeat(4,270px)}.card-width{width:270px}.cards-item-wrapper-1,.details-component .details-cards{width:420px}.repair-details-container{grid-template-columns:400px 740px 390px 0px!important}.repair-general-holder{width:400px}.details-header-wrapper-reapirShop{max-width:400px!important}.repair-component .repair-cards{width:400px!important}.repair-details-cmp{grid-template-columns:400px 740px 390px 0px!important}.longText{display:none!important}.shortText{display:block!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 105px 92px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:400px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:377px!important}.details-container-items{display:grid;grid-template-columns:400px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:400px}.assign-to{grid-template-columns:185px 185px}}@media (max-width: 1640px){.repair-details-container{grid-template-columns:400px 720px 370px 0px!important}.repair-container{width:720px!important}.repaired-vehicle-container{width:370px!important;max-width:370px!important}.repair-details-cmp{grid-template-columns:400px 720px 370px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:370px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:370px!important;max-width:370px!important}app-shipper-details .load,app-broker-details .load{width:720px!important}app-shipper-details .contact,app-broker-details .contact{width:370px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:370px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:370px!important}app-shipper-details .review-container,app-broker-details .review-container{width:370px!important}}@media (max-width: 1610px){.details-container-items{display:grid;grid-template-columns:380px repeat(4,270px)}.details-component .details-cards,.cards-item-wrapper-1{width:380px}.assign-to{grid-template-columns:175px 175px}.repair-details-container{grid-template-columns:380px 710px 350px 0px!important}.repair-container{width:710px!important}.repaired-vehicle-container{width:350px!important;max-width:350px!important}.repair-details-cmp{grid-template-columns:380px 710px 350px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{grid-row:2!important;grid-column:3!important;width:350px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:350px!important;max-width:350px!important}.repair-component .repair-cards{width:380px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 86px 92px!important}app-shipper-details-card .hours-template{grid-template-columns:150px 150px!important}app-shipper-details .toolbar-general-cmp,app-broker-details .toolbar-general-cmp{max-width:455px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:380px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:356px!important}}@media (max-width: 1590px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,260px)}.details-component .details-cards,.cards-item-wrapper-1{width:360px}.card-width{width:260px}.reason-span{display:none}.assign-to{grid-template-columns:162px 162px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 710px 350px 0px!important}.repair-component .repair-cards{width:360px!important}.owner-history-container .status-container .item-wrapper{grid-template-columns:85px 91px 70px!important}app-shipper-details-card .hours-template{grid-template-columns:140px 140px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:710px!important}app-shipper-details .contact,app-broker-details .contact{width:350px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:350px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:350px!important}app-shipper-details .review-container,app-broker-details .review-container{width:350px!important}app-shipper-details .credit-perctange,app-broker-details .credit-perctange{width:336px!important}}@media (max-width: 1440px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,250px)}.card-width{width:250px}.repair-details-container,.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-container{width:700px!important}.repaired-vehicle-container{width:272!important;max-width:272px!important}.repair-details-cmp{grid-template-columns:360px 700px 272px 0px!important}.repair-details-cmp .repair-component.reviewShopHolder{width:272px!important}.repair-details-cmp .review-container,.repair-details-cmp .likes-count-container{width:272px!important;max-width:272px!important}.repair-component .repair-cards{width:360px!important}.repaired-vehicle-container .repair-vehicle-header{grid-template-columns:35px 40px 25px 35px!important}.repair-items-vehicle .items-vehicle{grid-template-columns:45px 68px 27px 66px!important}app-shipper-details .details-header-wrapper,app-broker-details .details-header-wrapper{width:360px!important}app-shipper-details .load,app-broker-details .load{width:700px!important}app-shipper-details .contact,app-broker-details .contact{width:272px!important}app-shipper-details .contact .contact-wrapper,app-broker-details .contact .contact-wrapper{width:272px!important}app-shipper-details .likes-count-container,app-broker-details .likes-count-container{width:272px!important}app-shipper-details .review-container,app-broker-details .review-container{width:272px!important}}@media (max-width: 1500px){.details-container-items{display:grid;grid-template-columns:360px repeat(4,237px)}.card-width{width:237px}}.datetime-dropdown-holder{position:relative;top:16px}.picker_input_holder{display:flex;min-width:146px;max-width:260px;border-radius:3px;background-color:#f9f9f9}.picker_input_holder input{width:100%;padding-left:6px;border:none;outline:none;background-color:transparent;caret-color:transparent;-webkit-appearance:none}.picker_input_holder input:focus{outline:none;border:none}.picker_input_holder input::placeholder{color:#919191!important}.picker_input_holder .toggle_picker{display:flex;justify-content:center;align-items:center;width:26px;height:26px;min-width:26px;background-color:#eee;border-radius:3px;cursor:pointer}.picker_input_holder .toggle_picker:after{display:none}.picker_input_holder .toggle_picker svg-icon{display:flex}.picker_input_holder .toggle_picker svg-icon svg{width:12px;height:10px}.picker_input_holder .toggle_picker svg-icon svg path{fill:#919191}.picker_input_holder:hover{opacity:1}.picker_input_holder.active{background-color:#6c6c6c;border-left:3px solid #6c6c6c}.picker_input_holder.active .toggle_picker{background-color:#919191}.picker_input_holder.active .toggle_picker svg-icon{display:flex}.picker_input_holder.active .toggle_picker svg-icon svg{transform:rotate(180deg)}.picker_input_holder.active .toggle_picker svg-icon svg path{fill:#dadada}.picker_input_holder.active input::placeholder{color:#dadada!important}.pickers_holder{position:absolute;top:3px!important;width:auto!important;padding:0;background-color:#dadada;box-shadow:0 0 4px #00000026;z-index:999;border-radius:3px;overflow:hidden}.pickers_holder .time_picker{width:167px}.pickers_holder .date_picker{display:flex}.pickers_holder .date_picker .month-years-size{position:relative;width:48px;background-color:#f9f9f9}.pickers_holder .date_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:24px;transform:translateY(-50%);background-color:#dadada}.pickers_holder .date_picker .month-years-size .month-year-item{display:flex;align-items:center;justify-content:center;height:24px;font-size:14px;color:#919191;font-weight:400;text-align:center;text-transform:uppercase}.pickers_holder .date_picker .month-years-size .month-year-item .left-year-show{color:#919191;font-size:14px;font-weight:700}.pickers_holder .date_picker .month-years-size .month-year-item:hover{color:#6c6c6c;cursor:pointer;background-color:#f1f1f1;border-radius:2px}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.pickers_holder .date_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 2px 0}.pickers_holder .date_picker .full-calendars-list{flex:1;max-height:290px;min-width:264px;overflow:hidden}.pickers_holder .date_picker .full-calendars-list .full_list{height:100%}.pickers_holder .date_picker .full-calendars-list .full_list .selfScroll{width:100%;height:100%}.pickers_holder .time_picker .time_picker_head{height:36px;display:flex;padding:0 12px;align-items:center;justify-content:space-between}.pickers_holder .time_picker .time_picker_head .selected_time{font-size:14px;font-weight:800;color:#6c6c6c}.pickers_holder .time_picker .time_picker_head .sel_now{color:#536bc2;font-size:14px;font-weight:700}.pickers_holder .time_picker .time_picker_head .sel_now:hover{cursor:pointer;color:#5673aa}.pickers_holder .time_picker .time_picker_body .picker_body_head{height:22px;display:flex;align-items:center;background-color:#f7f7f7;margin:0 4px 2px;border-radius:2px}.pickers_holder .time_picker .time_picker_body .picker_body_head div{flex:0 0 33%;text-align:center;font-size:10px;font-weight:700;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body_head div.active{color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body{position:relative;height:155px;display:flex;justify-content:center}.pickers_holder .time_picker .time_picker_body .picker_body:after{content:\"\";position:absolute;width:100%;height:31px;top:-1px;left:0;pointer-events:none;background:linear-gradient(to bottom,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body:before{content:\"\";position:absolute;pointer-events:none;width:100%;height:31px;bottom:-1px;left:0;background:linear-gradient(to top,#fff,#fff0);z-index:11}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line{position:absolute;width:calc(100% - 8px);height:22px;top:50%;left:4px;border-radius:2px;transform:translateY(-50%);background-color:#9191911a}.pickers_holder .time_picker .time_picker_body .picker_body .picker_line span{position:absolute;left:30%;font-size:14px;font-weight:400;color:#919191}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers{position:relative;height:22px;flex:0 0 33.3%;height:100%;padding:67px 0;margin:0 7px;overflow:auto;text-align:center;-ms-overflow-style:none;scrollbar-width:none;z-index:10}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:first-child{flex:0 0 28px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(2){flex:0 0 36px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:nth-child(3){flex:0 0 38px}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers::-webkit-scrollbar{display:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{height:22px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#919191;font-weight:400;-webkit-user-select:none;user-select:none}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item:hover{color:#5673aa;cursor:pointer}.pickers_holder .time_picker .time_picker_body .picker_body .scroll_pickers:hover{box-shadow:inset 0 0 4px #00000026}.pickers_holder .time_picker .picker_buttons{display:flex;padding:6px;justify-content:space-between}.pickers_holder .time_picker .picker_buttons .pick_button{display:flex;align-items:center;justify-content:center;height:32px;padding:0 12px;text-align:center;border-radius:2px;font-size:12px;font-weight:700;color:#919191b3}.pickers_holder .time_picker .picker_buttons .pick_button:hover{background-color:#f3f3f3;color:#919191;cursor:pointer}.pickers_holder .time_picker .picker_buttons .pick_button.set_button{width:57px;text-align:center;background-color:#6d82c7;color:#dadada}.pickers_holder .time_picker .picker_buttons .pick_button.set_button:hover{background-color:#536bc2}.pickers_holder.dark_picker{background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size{width:40px;background-color:#424242}.pickers_holder.dark_picker .month-years-size .calendar_border{position:absolute;top:50%;width:100%;height:26px;transform:translateY(-50%);background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .month-year-item{height:22px;color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item .left-year-show{color:#ccc;font-size:11px}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year{color:#dadada}.pickers_holder.dark_picker .month-years-size .month-year-item.current_month_year .left-year-show{color:#dadada;font-weight:700}.pickers_holder.dark_picker .month-years-size .month-year-item:hover{color:#dadada;background-color:#2f2f2f}.pickers_holder.dark_picker .month-years-size .cdk-virtual-scroll-content-wrapper{padding:133px 4px 0}.pickers_holder.dark_picker .date_picker{margin:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list{min-width:184px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view{width:182px;padding-top:6px;background-color:#2f2f2f}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head{padding:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name{padding:0 4px;color:#dadada;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .month_name .year_hold{margin-right:0;color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today{padding:0 4px;color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendar_view_head .today:hover{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator{margin:12px 10px;color:#919191;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.current_year{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_indicator.full_calendar{margin-bottom:4px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px 4px;padding:0}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_month_days .cal_day{width:22px;height:22px;margin:0;font-size:9px;color:#aaa;text-align:center}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;row-gap:12px;justify-content:unset;margin:0 6px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item{margin:0;height:22px;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item:hover:not(.current_month){background-color:#424242;color:#dadada;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list .month_list_item.current_month{color:#dadada;background-color:#3b73ed66;border-radius:2px;cursor:pointer}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .month_list.current_year .month_list_item{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin:0 6px;padding:0;height:auto}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day{width:22px;height:22px;margin:0;color:#919191;font-size:11px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#dadada;background-color:#3b73ed66;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#3b73ed66;color:#dadada;border-radius:2px}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.day_in_current_month{color:#dadada}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day.weekend_day_in_current_month{color:#ccc}.pickers_holder.dark_picker .date_picker .full-calendars-list .calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#424242;border-radius:2px;cursor:pointer;color:#dadada}.pickers_holder.dark_picker .time_picker{width:156px;margin:4px}.pickers_holder.dark_picker .time_picker .time_picker_head{height:18px;padding:0 4px;margin-bottom:4px}.pickers_holder.dark_picker .time_picker .time_picker_head .selected_time{color:#dadada;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_head .sel_now{color:#92b1f5;font-size:11px;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head{display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;margin:0 0 4px;padding:2px;background:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body_head div{color:#aaa;font-size:9px;text-align:center;text-transform:uppercase}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body{height:176px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:4px;padding:0 2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:before{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body:after{display:none}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line{left:0;width:100%;background-color:#3b73ed33}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line{left:33.3%;width:1px;height:12px;margin-top:5px;background-color:#92b1f5;opacity:.4;border-radius:2px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .picker_line .border_line.line_2{left:66.6%}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers{margin:0;padding:77px 0}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item{color:#aaa;font-size:11px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_body .scroll_pickers .scroll_item.active_item{color:#dadada}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons{display:grid;grid-template-columns:repeat(2,1fr);column-gap:4px;margin-top:6px;padding:4px 0 0;border-top:1px solid #424242}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button{height:18px;background-color:#424242;color:#dadada;font-size:11px;text-transform:uppercase;border-radius:1px}.pickers_holder.dark_picker .time_picker .time_picker_body .picker_buttons .pick_button.set_button{width:auto;background-color:#3b73ed}.calendar_view{width:260px;padding-top:12px;background-color:#dadada}.calendar_view .calendar_view_head{display:flex;justify-content:space-between;margin-bottom:12px;padding:0 12px}.calendar_view .calendar_view_head .month_name{font-size:12px;font-weight:700;color:#6c6c6c}.calendar_view .calendar_view_head .month_name .year_hold{margin-right:5px;text-transform:uppercase;color:#6c6c6c;cursor:pointer}.calendar_view .calendar_view_head .month_name .year_hold:hover{color:#919191}.calendar_view .calendar_view_head .today{font-size:12px;font-weight:700;color:#5673aab3;cursor:pointer}.calendar_view .calendar_view_head .today:hover{color:#3551b7}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport{height:230px;min-height:230px}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport ::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view cdk-virtual-scroll-viewport::-webkit-scrollbar{display:none}.calendar_view .calendars_list_view .calendar_indicator{margin:12px;height:18px;font-size:12px;color:#6c6c6c66;font-weight:700}.calendar_view .calendars_list_view .calendar_month_days{padding:0 3px}.calendar_view .calendars_list_view .calendar_month_days.hideVisibility{visibility:hidden}.calendar_view .calendars_list_view .calendar_month_days .cal_day{width:24px;margin:0 6px;font-size:12px;font-weight:700;color:#b7b7b7}.calendar_view .calendars_list_view .calendar_days{height:140px;display:flex;flex-wrap:wrap;padding:0 3px}.calendar_view .calendars_list_view .calendar_days .calendar_day{display:flex;align-items:center;justify-content:center;flex:0 0 24px;width:24px;height:24px;margin:0 6px;font-size:14px;font-weight:400;color:#6c6c6c}.calendar_view .calendars_list_view .calendar_days .calendar_day.current_day{color:#dadada;background-color:#919191;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day.selected_day{background-color:#919191;color:#dadada;border-radius:2px}.calendar_view .calendars_list_view .calendar_days .calendar_day:not(.empty_day):not(.selected_day):hover{background-color:#f7f7f7;border-radius:2px;cursor:pointer;color:#3c3c3c}.calendar_view .month_list{display:flex;flex-wrap:wrap;justify-content:space-around;height:140px}.calendar_view .month_list .month_list_item{flex:0 0 50px;height:24px;margin:0 10px;display:flex;align-items:center;justify-content:center;border-radius:3px;font-size:12px;color:#6c6c6c;font-weight:400}.calendar_view .month_list .month_list_item:hover:not(.current_month){background-color:#f7f7f7;color:#3c3c3c;border-radius:2px;cursor:pointer}.calendar_view .month_list .month_list_item.current_month{color:#3c3c3c;background-color:#f7f7f7;border-radius:2px;cursor:pointer}.dropdown{z-index:999!important}input[type=date]::-webkit-inner-spin-button,input[type=date]::-webkit-calendar-picker-indicator{display:none;-webkit-appearance:none}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}.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,.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .document_info_hold .file_size,.ta-upload-file-container .ta-upload-file-footer .document_info_hold .file_size,.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-delete-text{font-weight:500!important}.ca-font-semi-bold,.ta-upload-file-container .ta-upload-file-content .ta-upload-file-number-of-pages{font-weight:600!important}.ca-font-bold,.tags_main_holder .tags_inner_holder .tag_options_holder .tag_name.checked,.tags_main_holder .remove_tag_holder .remove_tag,.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container .ta-upload-file-footer .document_info_hold,.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-btn,.ta-upload-file-container .ta-upload-file-content .ta-upload-file-tag{font-weight:700!important}.ca-font-extra-bold{font-weight:800!important}.ca-font-black,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext{font-weight:900!important}@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}}.ta-upload-file-container{width:148px;height:178px;border-radius:2px;grid-template-rows:160px 1fr;position:relative;transition:transform .3s ease-in-out;overflow:hidden}.ta-upload-file-container.modal{background-color:#f3f3f3}.ta-upload-file-container:hover,.ta-upload-file-container.keep_open{transition:transform .3s ease-in-out;background-color:#f3f3f3}.ta-upload-file-container:hover .ta-upload-file-header-review .ta-upload-action-download-review,.ta-upload-file-container:hover .ta-upload-file-header-review .ta-upload-file-action-leftside .ta-upload-action-mark-incorrect,.ta-upload-file-container:hover .ta-upload-file-header-review .ta-upload-action-mark-correct,.ta-upload-file-container.keep_open .ta-upload-file-header-review .ta-upload-action-download-review,.ta-upload-file-container.keep_open .ta-upload-file-header-review .ta-upload-file-action-leftside .ta-upload-action-mark-incorrect,.ta-upload-file-container.keep_open .ta-upload-file-header-review .ta-upload-action-mark-correct{opacity:1!important;pointer-events:all!important}.ta-upload-file-container.applicant_review{overflow:visible}.ta-upload-file-container.applicant_review .ta-upload-file-header-review .ta-upload-action-mark-incorrect{opacity:1!important;pointer-events:all!important}.ta-upload-file-container.annotation_hover .ta-upload-file-header-review .ta-upload-action-download-review{opacity:0!important;pointer-events:none!important}.ta-upload-file-container.applicant_feedback{overflow:visible}.ta-upload-file-container.applicant_feedback .ta-upload-file-header .ta-upload-file-action-rightside{opacity:0;pointer-events:none}.ta-upload-file-container.applicant_feedback .ta-upload-file-header .ta-upload-action-feedback-incorrect-mark,.ta-upload-file-container.applicant_feedback:hover .ta-upload-file-header .ta-upload-file-action-leftside,.ta-upload-file-container.applicant_feedback:hover .ta-upload-file-header .ta-upload-file-action-rightside{opacity:1!important;pointer-events:all!important}.ta-upload-file-container .ta-upload-file-header-review{position:absolute;top:4px;right:4px;width:140px;height:30px;z-index:10;-webkit-user-select:none;user-select:none}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-download-review,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-correct{width:30px;height:30px;line-height:15px;background-color:#6c6c6ce6;border-radius:1px;position:absolute;right:0;transition:transform .3s ease-in-out;cursor:pointer;opacity:0;pointer-events:none}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-download-review svg,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect svg,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-correct svg{height:18px;width:18px}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-download-review svg path,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect svg path,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-correct svg path{fill:#dadada}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-download-review:hover,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect:hover,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-correct:hover{background-color:#6c6c6c}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-download-review:hover svg path,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect:hover svg path,.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-correct:hover svg path{fill:#fff}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect{right:4px}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect svg{height:24px;width:24px}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect svg rect{fill:transparent!important}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect.incorrect{background-color:#ef5350}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-incorrect.incorrect svg path{fill:#fff}.ta-upload-file-container .ta-upload-file-header-review .ta-upload-action-mark-correct{right:4px}.ta-upload-file-container .ta-upload-file-header-review .review-feedback-container{position:absolute;left:170px;top:8px}.ta-upload-file-container .ta-upload-file-header{position:absolute;top:4px;right:4px;width:100%;height:30px;z-index:10;-webkit-user-select:none;user-select:none}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside{opacity:0;width:30px;margin-left:8px;height:30px;border-radius:1px;background-color:#6c6c6ce6;text-align:center;padding:6px;cursor:pointer;transition:transform .1s ease-in-out}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside:focus{transition:transform .1s ease-in-out;opacity:1!important}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside .ta-upload-action-tag{width:100%;height:100%}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside .ta-upload-action-tag svg{display:flex;height:18px;width:18px}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside .ta-upload-action-tag svg path{fill:#dadada}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside .ta-upload-action-tag:hover{transition:transform .1s ease-in-out}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside .ta-upload-action-tag:hover svg path{fill:#fff}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside.active{transition:transform .1s ease-in-out;background-color:#424242}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside.active .ta-upload-action-tag svg path{fill:#fff}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-leftside.no-action-tag{opacity:0;visibility:none;pointer-events:none!important}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside{padding:6px;gap:12px;width:60px;height:30px;text-align:center;border-radius:1px;background-color:#6c6c6ce6;cursor:pointer}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside.vertical-mode{display:block;width:30px;height:90px}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag{display:flex;align-items:center;justify-content:center;width:100%;height:30px;line-height:15px}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download svg,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete svg,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag svg{height:18px;width:18px}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download svg path,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete svg path,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag svg path{fill:#dadada}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download:hover,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete:hover,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag:hover{transition:transform .3s ease-in-out}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download:hover svg path,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete:hover svg path,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag:hover svg path{fill:#fff}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download.active,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete.active,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag.active{transition:transform .1s ease-in-out;background-color:#424242}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download.active svg path,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete.active svg path,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag.active svg path{fill:#fff}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-download.no-action-tag,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-delete.no-action-tag,.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside .ta-upload-action-tag.no-action-tag{opacity:0;height:0;padding:0;pointer-events:none!important}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside.feedback-mode{position:relative;left:15px}.ta-upload-file-container .ta-upload-file-header .ta-upload-file-action-rightside.small{width:30px;height:30px}.ta-upload-file-container .ta-upload-file-header .ta-upload-action-feedback-incorrect-mark{width:30px;height:30px;border-radius:2px;background-color:#ef5350e6;cursor:pointer;transition:transform .3s ease-in-out;opacity:0;pointer-events:none}.ta-upload-file-container .ta-upload-file-header .ta-upload-action-feedback-incorrect-mark svg-icon{width:18px;height:24px}.ta-upload-file-container .ta-upload-file-header .ta-upload-action-feedback-incorrect-mark:hover{background-color:#ef5350}.ta-upload-file-container .ta-upload-file-content{overflow:hidden;width:140px;height:140px;margin:4px;position:relative}.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container{display:flex;align-items:center;justify-content:center;background-color:transparent!important;width:160px!important;height:160px!important;border-radius:1px!important;top:4px!important;-webkit-user-select:none!important;user-select:none!important;z-index:2}.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .canvasWrapper{box-shadow:0 0 4px #00000026}.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .textLayer span,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .textLayer input,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .textLayer textarea,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .annotationLayer section,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .annotationLayer section input,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .annotationLayer section textarea{background-image:none!important;pointer-events:none!important;-webkit-user-select:none!important;user-select:none!important;cursor:default!important}.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container canvas{width:160px!important;max-height:160px!important;margin:0!important;border-radius:1px!important}.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container canvas:not(:first-child){opacity:0;height:0!important}.ta-upload-file-container .ta-upload-file-content .ng2-pdf-viewer-container .pdfViewer{box-shadow:0 0 4px #00000026}.ta-upload-file-container .ta-upload-file-content .image_main_holder{height:148px}.ta-upload-file-container .ta-upload-file-content .image_main_holder .spinner{position:absolute}.ta-upload-file-container .ta-upload-file-content .image_main_holder .ta-upload-file-image{max-width:160px;max-height:157px;object-fit:fill;border-radius:1px;vertical-align:middle;-webkit-user-select:none!important;user-select:none!important;box-shadow:0 0 4px #00000026;z-index:2}.ta-upload-file-container .ta-upload-file-content .image_main_holder .ta-upload-file-image.details_image{left:49%;max-width:276px;max-height:276px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.company-details-pdf{width:378px;height:378px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.company-details-pdf .ta-upload-file-image{max-width:378px;max-height:378px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.todo-details{height:186px;width:186px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.table-details{margin-top:4px;width:192px;height:188px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.table-details .ta-upload-file-image{max-width:192px;max-height:188px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.driver-card-pdf{margin-top:4px;width:408px;height:408px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.driver-card-pdf .ta-upload-file-image{max-width:408px;max-height:408px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.driver-details-pdf{margin-top:4px;width:308px;height:306px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.driver-details-pdf .ta-upload-file-image{max-width:308px;max-height:306px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.company-documents{height:289px;width:294px;margin-top:4px}.ta-upload-file-container .ta-upload-file-content .image_main_holder.company-documents .ta-upload-file-image{max-width:294px;max-height:294px}.ta-upload-file-container .ta-upload-file-content .ta-upload-file-number-of-pages{position:absolute;bottom:-4px;left:0;height:18px;text-align:center;padding:2px 6px;border-radius:2px;background-color:#6c6c6ce6;color:#fff;font-size:11px;line-height:15px;-webkit-user-select:none;user-select:none}.ta-upload-file-container .ta-upload-file-content .ta-upload-file-tag{max-width:100%;height:18px;border-radius:1px;background-color:#3b73ed66;color:#fff;font-size:11px;bottom:20px;position:absolute;left:0;padding:2px 4px;opacity:1;-webkit-user-select:none!important;user-select:none!important;z-index:10;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.ta-upload-file-container .ta-upload-file-content .ta-upload-file-tag.tagRemoving{opacity:0}.ta-upload-file-container .ta-upload-file-content .ta-upload-file-tag span{line-height:14px}.ta-upload-file-container .ta-upload-file-content .ta-upload-file-tag.no-tag{background-color:#919191!important}.ta-upload-file-container .ta-upload-file-content .ta-upload-file-tag:hover{transition:transform .3s ease-in-out;cursor:auto!important}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf,.ta-upload-file-container .ta-upload-file-content.landscape-details-view,.ta-upload-file-container .ta-upload-file-content.todo-details,.ta-upload-file-container .ta-upload-file-content.company-details-pdf,.ta-upload-file-container .ta-upload-file-content.modals,.ta-upload-file-container .ta-upload-file-content.table-details,.ta-upload-file-container .ta-upload-file-content.company-documents{position:relative}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.landscape-details-view ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.todo-details ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.company-details-pdf ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.modals ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.table-details ::ng-deep .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.company-documents ::ng-deep .ng2-pdf-viewer-container{box-shadow:0 0 4px #00000026;overflow:hidden!important}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container{overflow:visible!important;background-color:transparent!important;border-radius:1px!important}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container canvas,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container canvas{margin:0!important;border-radius:1px!important;width:auto!important}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container canvas:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .canvasWrapper:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .pdfViewer:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .pdfViewer .page:not(:first-child),.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container canvas:not(:first-child){opacity:0;height:0!important}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf{width:312px;height:312px}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container{width:304px!important;height:304px!important}.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.driver-details-pdf .ng2-pdf-viewer-container canvas{max-width:304px!important;max-height:304px!important;min-width:229px}.ta-upload-file-container .ta-upload-file-content.company-documents{width:302px;height:332px}.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container{width:294px!important;height:294px!important}.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.company-documents .ng2-pdf-viewer-container canvas{max-width:294px!important;max-height:294px!important;min-width:228px}.ta-upload-file-container .ta-upload-file-content.modals{width:140px;cursor:pointer;height:148px}.ta-upload-file-container .ta-upload-file-content.modals ::ng-deep .ng2-pdf-viewer-container{right:20px;width:100px;box-shadow:0 0 4px #00000026;overflow:hidden!important}.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container{box-shadow:0 0 4px #00000026;width:159px!important;height:156px!important}.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.modals .ng2-pdf-viewer-container canvas{box-shadow:0 0 4px #00000026;max-width:156px!important;max-height:156px!important;min-width:120px}.ta-upload-file-container .ta-upload-file-content.driver-card-pdf{width:416px;height:416px}.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container{width:408px!important;height:408px!important}.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.driver-card-pdf .ng2-pdf-viewer-container canvas{max-width:408px!important;max-height:408px!important;min-width:314px}.ta-upload-file-container .ta-upload-file-content.landscape-details-view{width:312px;max-height:200px;bottom:4px}.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container{overflow:hidden!important;width:304px!important;max-height:192px!important}.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.landscape-details-view .ng2-pdf-viewer-container canvas{overflow:hidden!important;max-width:304px!important;max-height:192px!important;min-width:304px}.ta-upload-file-container .ta-upload-file-content.todo-details{height:186px;left:21px}.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container{overflow:hidden!important;width:186px!important;height:186px!important;border-radius:1px!important}.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.todo-details .ng2-pdf-viewer-container canvas{overflow:hidden!important;max-width:186px!important;max-height:186px!important;min-width:150px}.ta-upload-file-container .ta-upload-file-content.table-details{width:200px;height:200px}.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container{overflow:hidden!important;width:192px!important;height:192px!important;border-radius:1px!important}.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.table-details .ng2-pdf-viewer-container canvas{overflow:hidden!important;max-width:192px!important;max-height:192px!important;min-width:150px}.ta-upload-file-container .ta-upload-file-content.company-details-pdf{width:378px;height:378px}.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container{overflow:hidden!important;width:370px!important;height:370px!important;border-radius:1px!important}.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .canvasWrapper,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .pdfViewer,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container .pdfViewer .page,.ta-upload-file-container .ta-upload-file-content.company-details-pdf .ng2-pdf-viewer-container canvas{max-width:370px!important;max-height:370px!important;min-width:229px}.ta-upload-file-container .ta-upload-file-delete-template{position:absolute;gap:4px;border-radius:2px;top:0;left:0;padding:4px;z-index:20;width:100%;height:100%;background-color:#f3f3f3e6}.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-delete-text{font-size:14px;line-height:18px;color:#424242;width:116px;word-wrap:break-word;text-align:center;margin:18px 12px 20px}.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-delete-text::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-btn{width:140px;height:22px;border-radius:2px;background-color:#fff;color:#6c6c6c;font-size:11px;line-height:14px;text-align:center;cursor:pointer;padding:4px 0;-webkit-user-select:none;user-select:none}.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-btn-delete{color:#df3c3c}.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-btn-delete:hover{background-color:#df3c3c!important;color:#fff;transition:transform .3s ease-in-out}.ta-upload-file-container .ta-upload-file-delete-template .ta-upload-file-btn-cancel:hover{background-color:#6c6c6c!important;color:#fff;transition:transform .3s ease-in-out}.ta-upload-file-container .ta-upload-file-delete-template.company-documents{background-color:#ffffffe6}.ta-upload-file-container .ta-upload-file-delete-template.company-documents .ta-upload-file-btn{background-color:#f3f3f3}.ta-upload-file-container .ta-upload-file-footer{position:relative;height:26px;width:180px;z-index:30}.ta-upload-file-container .ta-upload-file-footer p{margin:0}.ta-upload-file-container .ta-upload-file-footer.edit-mode{padding:0!important}.ta-upload-file-container .ta-upload-file-footer input{padding:4px!important}.ta-upload-file-container .ta-upload-file-footer .footer_info{position:absolute;left:4px;bottom:30px}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext{width:32px;height:18px;text-align:center;border-radius:1px;margin-right:4px;font-size:11px;color:#fff;line-height:18px;-webkit-user-select:none;user-select:none;text-transform:uppercase}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-png{background:#f89b2e66}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover{background-color:#fab15c}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf{background-color:#df3c3c66}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover{background-color:#e66767}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext:hover{transition:transform .3s ease-in-out;cursor:auto!important}.ta-upload-file-container .ta-upload-file-footer .document_info_hold{padding:2px 6px;background-color:#91919166!important;color:#fff;border-radius:1px;font-size:11px;line-height:14px;-webkit-user-select:none;user-select:none}.ta-upload-file-container .ta-upload-file-footer .document_info_hold .file_size.has_pages{margin-left:3px}.ta-upload-file-container .ta-upload-file-footer .ta-upload-file-name{flex:1;font-size:14px;color:#6c6c6c;max-width:161px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:100%;height:100%;padding:4px;line-height:18px}.ta-upload-file-container .ta-upload-file-footer .ta-upload-file-name::selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.ta-upload-file-container .ta-upload-file-footer .ta-upload-file-name.details_title{max-width:100%}.ta-upload-file-container .ta-upload-file-footer .ta-upload-file-name.todo_title{max-width:192px}.ta-upload-file-container:hover,.ta-upload-file-container.keep_open{transition:transform .3s ease-in-out}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer,.ta-upload-file-container.todo-details .ta-upload-file-footer,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer,.ta-upload-file-container.modals .ta-upload-file-footer,.ta-upload-file-container.table-details .ta-upload-file-footer,.ta-upload-file-container.company-documents .ta-upload-file-footer{opacity:0;border-radius:2px;cursor:default;transition:.1s transform ease-in-out}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info{left:0!important}.ta-upload-file-container.driver-details-pdf .ta-upload-file-tag,.ta-upload-file-container.driver-card-pdf .ta-upload-file-tag,.ta-upload-file-container.landscape-details-view .ta-upload-file-tag,.ta-upload-file-container.todo-details .ta-upload-file-tag,.ta-upload-file-container.company-details-pdf .ta-upload-file-tag,.ta-upload-file-container.modals .ta-upload-file-tag,.ta-upload-file-container.table-details .ta-upload-file-tag,.ta-upload-file-container.company-documents .ta-upload-file-tag{opacity:0;transition:.1s transform ease-in-out}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer,.ta-upload-file-container.todo-details .ta-upload-file-footer,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer,.ta-upload-file-container.modals .ta-upload-file-footer,.ta-upload-file-container.table-details .ta-upload-file-footer,.ta-upload-file-container.company-documents .ta-upload-file-footer{opacity:0}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.todo-details .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.modals .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.table-details .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.company-documents .ta-upload-file-footer .ta-upload-file-name{background-color:#ffffffb3!important;transition:.1s transform ease-in-out}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.todo-details .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.modals .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.table-details .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.company-documents .ta-upload-file-footer .ta-upload-file-name:hover{transition:.1s transform ease-in-out;background-color:#ffffffe6!important}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-png,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-png{background-color:#ffb74d80}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpg:hover,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-jpeg:hover,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-png:hover{background-color:#ffb74de6}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf{background-color:#ef535080}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .ta-upload-file-ext-pdf:hover{background-color:#ef5350e6}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .document_info_hold,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .document_info_hold{transition:.1s transform ease-in-out;padding:2px 6px;background-color:#91919166;color:#fff;border-radius:1px;font-size:11px;line-height:14px;-webkit-user-select:none;user-select:none}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.landscape-details-view .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.todo-details .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.company-details-pdf .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.modals .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.table-details .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages,.ta-upload-file-container.company-documents .ta-upload-file-footer .footer_info .document_info_hold .file_size.has_pages{margin-left:3px}.ta-upload-file-container.driver-details-pdf .ta-upload-file-tag,.ta-upload-file-container.driver-card-pdf .ta-upload-file-tag,.ta-upload-file-container.landscape-details-view .ta-upload-file-tag,.ta-upload-file-container.todo-details .ta-upload-file-tag,.ta-upload-file-container.company-details-pdf .ta-upload-file-tag,.ta-upload-file-container.modals .ta-upload-file-tag,.ta-upload-file-container.table-details .ta-upload-file-tag,.ta-upload-file-container.company-documents .ta-upload-file-tag{opacity:0;transition:.1s transform ease-in-out;background-color:#3b73ed66}.ta-upload-file-container.driver-details-pdf .ta-upload-file-tag:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-tag:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-tag:hover,.ta-upload-file-container.todo-details .ta-upload-file-tag:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-tag:hover,.ta-upload-file-container.modals .ta-upload-file-tag:hover,.ta-upload-file-container.table-details .ta-upload-file-tag:hover,.ta-upload-file-container.company-documents .ta-upload-file-tag:hover{transition:.1s transform ease-in-out;background-color:#6692f1}.ta-upload-file-container.driver-details-pdf .ta-upload-file-tag.default,.ta-upload-file-container.driver-card-pdf .ta-upload-file-tag.default,.ta-upload-file-container.landscape-details-view .ta-upload-file-tag.default,.ta-upload-file-container.todo-details .ta-upload-file-tag.default,.ta-upload-file-container.company-details-pdf .ta-upload-file-tag.default,.ta-upload-file-container.modals .ta-upload-file-tag.default,.ta-upload-file-container.table-details .ta-upload-file-tag.default,.ta-upload-file-container.company-documents .ta-upload-file-tag.default{background-color:#42424280}.ta-upload-file-container.driver-details-pdf .ta-upload-file-tag.default:hover,.ta-upload-file-container.driver-card-pdf .ta-upload-file-tag.default:hover,.ta-upload-file-container.landscape-details-view .ta-upload-file-tag.default:hover,.ta-upload-file-container.todo-details .ta-upload-file-tag.default:hover,.ta-upload-file-container.company-details-pdf .ta-upload-file-tag.default:hover,.ta-upload-file-container.modals .ta-upload-file-tag.default:hover,.ta-upload-file-container.table-details .ta-upload-file-tag.default:hover,.ta-upload-file-container.company-documents .ta-upload-file-tag.default:hover{transition:.1s transform ease-in-out;background-color:#424242e6}.ta-upload-file-container.driver-details-pdf:hover .ta-upload-file-footer,.ta-upload-file-container.driver-card-pdf:hover .ta-upload-file-footer,.ta-upload-file-container.landscape-details-view:hover .ta-upload-file-footer,.ta-upload-file-container.todo-details:hover .ta-upload-file-footer,.ta-upload-file-container.company-details-pdf:hover .ta-upload-file-footer,.ta-upload-file-container.modals:hover .ta-upload-file-footer,.ta-upload-file-container.table-details:hover .ta-upload-file-footer,.ta-upload-file-container.company-documents:hover .ta-upload-file-footer{opacity:1;border-radius:1px}.ta-upload-file-container.driver-details-pdf:hover .ta-upload-file-tag,.ta-upload-file-container.driver-card-pdf:hover .ta-upload-file-tag,.ta-upload-file-container.landscape-details-view:hover .ta-upload-file-tag,.ta-upload-file-container.todo-details:hover .ta-upload-file-tag,.ta-upload-file-container.company-details-pdf:hover .ta-upload-file-tag,.ta-upload-file-container.modals:hover .ta-upload-file-tag,.ta-upload-file-container.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.company-documents:hover .ta-upload-file-tag{opacity:1}.ta-upload-file-container.driver-details-pdf.table-details .ta-upload-file-tag,.ta-upload-file-container.driver-card-pdf.table-details .ta-upload-file-tag,.ta-upload-file-container.landscape-details-view.table-details .ta-upload-file-tag,.ta-upload-file-container.todo-details.table-details .ta-upload-file-tag,.ta-upload-file-container.company-details-pdf.table-details .ta-upload-file-tag,.ta-upload-file-container.modals.table-details .ta-upload-file-tag,.ta-upload-file-container.table-details.table-details .ta-upload-file-tag,.ta-upload-file-container.company-documents.table-details .ta-upload-file-tag{opacity:1!important;bottom:8px!important}.ta-upload-file-container.driver-details-pdf.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.driver-card-pdf.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.landscape-details-view.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.todo-details.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.company-details-pdf.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.modals.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.table-details.table-details:hover .ta-upload-file-tag,.ta-upload-file-container.company-documents.table-details:hover .ta-upload-file-tag{bottom:56px!important}.ta-upload-file-container.modals,.ta-upload-file-container.company-documents,.ta-upload-file-container.keep_open_modals,.ta-upload-file-container.todo-details{background-color:#eee!important}.ta-upload-file-container.modals .ta-upload-file-footer,.ta-upload-file-container.company-documents .ta-upload-file-footer,.ta-upload-file-container.keep_open_modals .ta-upload-file-footer,.ta-upload-file-container.todo-details .ta-upload-file-footer{opacity:1}.ta-upload-file-container.modals .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.company-documents .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.keep_open_modals .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.todo-details .ta-upload-file-footer .ta-upload-file-name{background-color:transparent!important;transition:.1s transform ease-in-out;cursor:pointer}.ta-upload-file-container.modals:hover,.ta-upload-file-container.company-documents:hover,.ta-upload-file-container.keep_open_modals:hover,.ta-upload-file-container.todo-details:hover{background-color:#dadadada!important}.ta-upload-file-container.modals:hover .ta-upload-file-ext-jpg,.ta-upload-file-container.modals:hover .ta-upload-file-ext-jpeg,.ta-upload-file-container.modals:hover .ta-upload-file-ext-png,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-jpg,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-jpeg,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-png,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-jpg,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-jpeg,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-png,.ta-upload-file-container.todo-details:hover .ta-upload-file-ext-jpg,.ta-upload-file-container.todo-details:hover .ta-upload-file-ext-jpeg,.ta-upload-file-container.todo-details:hover .ta-upload-file-ext-png{background-color:#fab15c!important}.ta-upload-file-container.modals:hover .document_info_hold,.ta-upload-file-container.company-documents:hover .document_info_hold,.ta-upload-file-container.keep_open_modals:hover .document_info_hold,.ta-upload-file-container.todo-details:hover .document_info_hold{background-color:#919191!important}.ta-upload-file-container.modals:hover .ta-upload-file-tag,.ta-upload-file-container.company-documents:hover .ta-upload-file-tag,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-tag,.ta-upload-file-container.todo-details:hover .ta-upload-file-tag{background-color:#6692f1!important}.ta-upload-file-container.modals:hover .ta-upload-file-ext-pdf,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-pdf,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-pdf,.ta-upload-file-container.todo-details:hover .ta-upload-file-ext-pdf{background-color:#e66767!important}.ta-upload-file-container.modals:hover .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.company-documents:hover .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-footer .ta-upload-file-name,.ta-upload-file-container.todo-details:hover .ta-upload-file-footer .ta-upload-file-name{transition:.1s transform ease-in-out;background-color:#eee!important}.ta-upload-file-container.modals:hover .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.company-documents:hover .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-footer .ta-upload-file-name:hover,.ta-upload-file-container.todo-details:hover .ta-upload-file-footer .ta-upload-file-name:hover{background-color:#eee!important}.ta-upload-file-container.modals .ta-upload-file-tag,.ta-upload-file-container.company-documents .ta-upload-file-tag,.ta-upload-file-container.keep_open_modals .ta-upload-file-tag,.ta-upload-file-container.todo-details .ta-upload-file-tag{opacity:1}.ta-upload-file-container.keep_open_modals{background-color:#dadadada!important}.ta-upload-file-container.keep_open_modals .ta-upload-file-footer .ta-upload-file-name{transition:.1s transform ease-in-out;background-color:#eee!important}.ta-upload-file-container.keep_open_modals .ta-upload-file-footer .ta-upload-file-name:hover{background-color:#fff!important}.ta-upload-file-container.company-documents .ta-upload-file-footer{opacity:1}.ta-upload-file-container.company-documents .ta-upload-file-footer .ta-upload-file-name{background-color:#eee!important}.ta-upload-file-container.driver-details-pdf{width:312px;height:312px;grid-template-rows:312px}.ta-upload-file-container.driver-details-pdf .ta-upload-file-footer{bottom:37px;right:-4px;width:304px}.ta-upload-file-container.driver-details-pdf .ta-upload-file-tag{bottom:56px}.ta-upload-file-container.driver-details-pdf .ta-upload-file-delete-template{width:304px;height:304px}.ta-upload-file-container.company-documents{width:302px;height:332px;grid-template-rows:332px;background-color:#dadada!important}.ta-upload-file-container.company-documents:hover{background-color:#ccc!important}.ta-upload-file-container.company-documents .ta-upload-file-footer{bottom:37px;right:-4px;width:294px}.ta-upload-file-container.company-documents .ta-upload-file-footer .ta-upload-file-name{max-width:294px}.ta-upload-file-container.company-documents .ta-upload-file-tag{top:4px}.ta-upload-file-container.company-documents .ta-upload-file-delete-template{width:302px;height:332px}.ta-upload-file-container.modals{width:148px;height:100%}.ta-upload-file-container.modals .ta-upload-file-footer{right:-4px;bottom:4px;width:140px}.ta-upload-file-container.modals .ta-upload-file-tag{bottom:56px}.ta-upload-file-container.driver-card-pdf{width:416px;height:416px;grid-template-rows:416px}.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer{bottom:37px;right:-4px;width:408px}.ta-upload-file-container.driver-card-pdf .ta-upload-file-footer .ta-upload-file-name{max-width:408px}.ta-upload-file-container.driver-card-pdf .ta-upload-file-tag{bottom:56px}.ta-upload-file-container.driver-card-pdf .ta-upload-file-delete-template{width:420px;height:420px}.ta-upload-file-container.landscape-details-view{width:312px;max-height:200px;min-height:200px;grid-template-rows:200px;overflow:visible}.ta-upload-file-container.landscape-details-view .ta-upload-file-footer{bottom:37px;right:-4px;width:304px}.ta-upload-file-container.landscape-details-view .ta-upload-file-tag{opacity:0;bottom:31px}.ta-upload-file-container.landscape-details-view .ta-upload-file-delete-template{width:304px;min-height:192px}.ta-upload-file-container.todo-details{width:194px;height:194px;grid-template-rows:194px}.ta-upload-file-container.todo-details .ta-upload-file-footer{box-shadow:0 0 4px #00000026;bottom:32px;left:4px;width:186px}.ta-upload-file-container.todo-details .ta-upload-file-tag{bottom:56px}.ta-upload-file-container.todo-details .ta-upload-file-delete-template{width:192px;height:192px}.ta-upload-file-container.table-details{width:200px;height:200px;grid-template-rows:200px}.ta-upload-file-container.table-details .ta-upload-file-footer{bottom:37px;right:-4px;width:192px}.ta-upload-file-container.table-details .ta-upload-file-footer .ta-upload-file-name{max-width:192px}.ta-upload-file-container.table-details .ta-upload-file-tag{bottom:56px}.ta-upload-file-container.table-details .ta-upload-file-delete-template{width:192px;height:192px}.ta-upload-file-container.company-details-pdf{width:378px;height:378px;grid-template-rows:378px}.ta-upload-file-container.company-details-pdf .ta-upload-file-footer{bottom:37px;right:-4px;width:370px}.ta-upload-file-container.company-details-pdf .ta-upload-file-tag{bottom:56px}.ta-upload-file-container.company-details-pdf .ta-upload-file-delete-template{width:370px;height:370px}.ta-upload-file-container.keep_open .ta-upload-file-footer{opacity:1;border-radius:1px}.ta-upload-file-container.keep_open .ta-upload-file-tag{opacity:1}.tags_main_holder{z-index:100!important;width:196px;background-color:#2f2f2f;border-radius:3px;box-shadow:0 0 4px #00000026;cursor:pointer}.tags_main_holder .remove_tag_holder{padding:6px;border-radius:2px}.tags_main_holder .remove_tag_holder:hover{background-color:#1d1d1d}.tags_main_holder .remove_tag_holder .remove_tag{color:#e57373;font-size:11px;line-height:14px}.tags_main_holder .remove_tag_border_holder{width:100%;padding:0 4px;margin:4px 0}.tags_main_holder .remove_tag_border_holder .remove_tag_border{width:100%;height:1px;background-color:#aaa}.tags_main_holder .tags_inner_holder{z-index:100;height:26px;margin:2px 0;padding-left:4px;border-radius:2px}.tags_main_holder .tags_inner_holder.firstRow{margin-top:0}.tags_main_holder .tags_inner_holder.lastRow{margin-bottom:0}.tags_main_holder .tags_inner_holder .tag_options_holder{padding-right:6px;width:100%;height:100%}.tags_main_holder .tags_inner_holder .tag_options_holder .tag_name{flex:1;font-size:14px;line-height:18px;color:#fff}.tags_main_holder .tags_inner_holder .tag_options_holder .checked_icon{opacity:0;margin-left:4px}.tags_main_holder .tags_inner_holder .tag_options_holder .checked_icon.shown{opacity:1}.tags_main_holder .tags_inner_holder .tag_options_holder .checked_icon svg-icon svg{display:flex}.tags_main_holder .tags_inner_holder .tag_options_holder .checked_icon svg-icon svg path{fill:#6d82c7}.tags_main_holder .tags_inner_holder:hover{background-color:#1d1d1d}.tags_main_holder .tags_inner_holder:hover .tag_options_holder .checked_icon svg-icon svg path{fill:#536bc2}\n"] }]
|
|
330
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: i0.ChangeDetectorRef }, { type: i2.UrlExtensionPipe }, { type: i2.FileNamePipe }, { type: i3.DocumentService }]; }, propDecorators: { t2: [{
|
|
331
|
+
type: ViewChild,
|
|
332
|
+
args: ['t2']
|
|
333
|
+
}], inputRef: [{
|
|
334
|
+
type: ViewChild,
|
|
335
|
+
args: [CaInputComponent]
|
|
336
|
+
}], config: [{
|
|
337
|
+
type: Input
|
|
338
|
+
}], reviewFileConfig: [{
|
|
339
|
+
type: Input
|
|
340
|
+
}], fileAction: [{
|
|
341
|
+
type: Output
|
|
342
|
+
}], deleteAction: [{
|
|
343
|
+
type: Output
|
|
344
|
+
}], documentReviewInputEvent: [{
|
|
345
|
+
type: Output
|
|
346
|
+
}], landscapeCheck: [{
|
|
347
|
+
type: Output
|
|
348
|
+
}], fileHover: [{
|
|
349
|
+
type: Output
|
|
350
|
+
}] } });
|
|
351
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtdXBsb2FkLWZpbGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGVzL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGUvY2EtdXBsb2FkLWZpbGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGVzL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGUvY2EtdXBsb2FkLWZpbGUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUdMLFNBQVMsRUFDVCxZQUFZLEVBQ1osS0FBSyxFQUVMLE1BQU0sRUFDTixTQUFTLEVBQ1QsaUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDL0UsT0FBTyxFQUFFLFlBQVksRUFBRSxvQkFBb0IsRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFFbkUsT0FBTyxFQUFvQixlQUFlLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNuRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDeEQsT0FBTyxFQUNMLFNBQVMsRUFFVCxnQkFBZ0IsRUFDaEIsVUFBVSxHQUNYLE1BQU0sNEJBQTRCLENBQUM7QUFDcEMsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUV6QyxZQUFZO0FBQ1osT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDeEUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sd0RBQXdELENBQUM7QUFDakcsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sMENBQTBDLENBQUM7QUFDOUUsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sa0RBQWtELENBQUM7QUFVekYsT0FBTztBQUNQLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxTQUFTLENBQUM7QUFFekMsT0FBTztBQUNQLE9BQU8sRUFDTCxlQUFlLEVBQ2YsWUFBWSxFQUNaLGdCQUFnQixFQUNoQixXQUFXLEdBQ1osTUFBTSxTQUFTLENBQUM7QUFLakIsUUFBUTtBQUNSLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLG9CQUFvQixDQUFDOzs7Ozs7Ozs7O0FBK0J0RCxNQUFNLE9BQU8scUJBQXFCO0lBK0JoQyxZQUNVLElBQWdCLEVBQ2hCLEdBQXNCO0lBRTlCLE1BQU07SUFDRSxNQUF3QixFQUN4QixZQUEwQjtJQUVsQyxTQUFTO0lBQ0Qsa0JBQW1DO1FBUm5DLFNBQUksR0FBSixJQUFJLENBQVk7UUFDaEIsUUFBRyxHQUFILEdBQUcsQ0FBbUI7UUFHdEIsV0FBTSxHQUFOLE1BQU0sQ0FBa0I7UUFDeEIsaUJBQVksR0FBWixZQUFZLENBQWM7UUFHMUIsdUJBQWtCLEdBQWxCLGtCQUFrQixDQUFpQjtRQWpDbkMsZUFBVSxHQUFHLElBQUksWUFBWSxFQUFtQixDQUFDO1FBQ2pELGlCQUFZLEdBQUcsSUFBSSxZQUFZLEVBQWdCLENBQUM7UUFDaEQsNkJBQXdCLEdBQ2hDLElBQUksWUFBWSxFQUE0QixDQUFDO1FBQ3JDLG1CQUFjLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUNwQyxjQUFTLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQztRQUVsQyxnQkFBVyxHQUFnQixJQUFJLFdBQVcsRUFBRSxDQUFDO1FBQzdDLCtCQUEwQixHQUFnQixJQUFJLFdBQVcsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUNoRSxhQUFRLEdBQVksS0FBSyxDQUFDO1FBQzFCLGlCQUFZLEdBQVksS0FBSyxDQUFDO1FBQzlCLCtCQUEwQixHQUFZLEtBQUssQ0FBQztRQUM1Qyx5QkFBb0IsR0FBWSxLQUFLLENBQUM7UUFDdEMsb0JBQWUsR0FBWSxLQUFLLENBQUM7UUFDakMsb0JBQWUsR0FBWSxJQUFJLENBQUM7UUFDaEMsbUJBQWMsR0FBWSxLQUFLLENBQUM7UUFDaEMsa0JBQWEsR0FBVyxFQUFFLENBQUM7UUFDM0Isc0JBQWlCLEdBQVcsRUFBRSxDQUFDO1FBQy9CLGFBQVEsR0FBVyxFQUFFLENBQUM7UUFDdEIsVUFBSyxHQUFHLGdCQUFnQixDQUFDLEtBQUssQ0FBQztRQUUvQixXQUFNLEdBQUcsY0FBYyxDQUFDO1FBQ3ZCLGFBQVEsR0FBRyxJQUFJLE9BQU8sRUFBUSxDQUFDO0lBWXBDLENBQUM7SUFDSixRQUFRO1FBQ04sSUFBSSxDQUFDLFdBQVcsRUFBRSxDQUFDO1FBRW5CLElBQUksQ0FBQyx1QkFBdUIsRUFBRSxDQUFDO1FBRS9CLElBQUksQ0FBQyxTQUFTLEVBQUUsQ0FBQztRQUVqQixJQUFJLENBQUMsd0JBQXdCLEVBQUUsQ0FBQztRQUVoQyxJQUFJLENBQUMsV0FBVyxFQUFFLENBQUM7SUFDckIsQ0FBQztJQUVELGVBQWU7UUFDYixJQUFJLENBQUMsT0FBTyxFQUFFLENBQUM7UUFDZixJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDeEIsQ0FBQztJQUVPLHVCQUF1QjtRQUM3QixJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRTtZQUNqRCxJQUFJLENBQUMsYUFBYSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1NBQ3ZFO0lBQ0gsQ0FBQztJQUVNLFNBQVM7UUFDZCxNQUFNLFFBQVEsR0FDWixDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFNBQVM7WUFDekIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsS0FBSyxLQUFLLENBQUM7UUFDM0QsSUFBSSxDQUFDLGVBQWUsR0FBRyxDQUFDLFFBQVEsQ0FBQztJQUNuQyxDQUFDO0lBRU0sV0FBVztRQUNoQixJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFFBQVE7WUFDM0IsSUFBSSxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUMzRSxDQUFDO0lBRU0sV0FBVyxDQUFDLEtBQWM7UUFDL0IsSUFBSSxLQUFLLEVBQUU7WUFDVCxJQUFJLENBQUMsUUFBUSxHQUFHLEtBQUssQ0FBQztZQUN0QixJQUFJLElBQUksQ0FBQyxXQUFXLENBQUMsS0FBSyxFQUFFO2dCQUMxQixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQzthQUMzQztTQUNGO0lBQ0gsQ0FBQztJQUVELEtBQUs7SUFDRSxpQkFBaUIsQ0FBQyxHQUFxQjtRQUM1QyxJQUFJLENBQUMsZUFBZSxHQUFHLEtBQUssQ0FBQztRQUM3QixNQUFNLFdBQVcsR0FBRyxHQUFHLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQztRQUUxQyxJQUFJLENBQUMsaUJBQWlCLEdBQUcsR0FBRyxXQUFXLElBQ3JDLFdBQVcsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsT0FDL0IsRUFBRSxDQUFDO1FBRUgsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFNBQVMsSUFBSSxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDNUQsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQztTQUN2RTtJQUNILENBQUM7SUFFTSxZQUFZLENBQ2pCLEtBQVUsQ0FBQyxvQkFBb0I7O1FBRS9CLE1BQU0sR0FBRyxHQUdMLEtBQUssQ0FBQztRQUVWLElBQ0UsSUFBSSxDQUFDLE1BQU0sQ0FBQyxrQkFBa0I7WUFDOUIsR0FBRyxDQUFDLFVBQVUsS0FBSyxDQUFDO1lBQ3BCLEdBQUcsQ0FBQyxNQUFNLENBQUMsS0FBSyxHQUFHLEdBQUcsQ0FBQyxNQUFNLENBQUMsTUFBTSxFQUNwQztZQUNBLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1NBQ2hDO0lBQ0gsQ0FBQztJQUNNLFFBQVEsQ0FBQyxNQUFjO1FBQzVCLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQ3ZELFFBQVEsTUFBTSxFQUFFO1lBQ2QsS0FBSyxjQUFjLENBQUMsR0FBRztnQkFDckIsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO2dCQUN2QixNQUFNO1lBQ1IsS0FBSyxjQUFjLENBQUMsUUFBUTtnQkFDMUIsSUFBSSxDQUFDLG9CQUFvQixFQUFFLENBQUM7Z0JBQzVCLE1BQU07WUFDUixLQUFLLGNBQWMsQ0FBQyxNQUFNO2dCQUN4QixJQUFJLENBQUMsa0JBQWtCLEVBQUUsQ0FBQztnQkFDMUIsTUFBTTtZQUNSLEtBQUssY0FBYyxDQUFDLE1BQU07Z0JBQ3hCLElBQUksQ0FBQyxrQkFBa0IsRUFBRSxDQUFDO2dCQUMxQixNQUFNO1lBQ1IsS0FBSyxjQUFjLENBQUMsY0FBYztnQkFDaEMsSUFBSSxDQUFDLHlCQUF5QixFQUFFLENBQUM7Z0JBQ2pDLE1BQU07WUFDUixLQUFLLGNBQWMsQ0FBQyxZQUFZO2dCQUM5QixJQUFJLENBQUMsdUJBQXVCLEVBQUUsQ0FBQztnQkFDL0IsTUFBTTtZQUNSO2dCQUNFLE1BQU07U0FDVDtJQUNILENBQUM7SUFFTyxlQUFlO1FBQ3JCLElBQUksSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFO1lBQ3pCLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7U0FDdkM7YUFBTTtZQUNMLElBQUksQ0FBQyxTQUFTLENBQUMsUUFBUSxDQUFDLENBQUM7U0FDMUI7UUFDRCxJQUFJLENBQUMsRUFBRSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ2pCLENBQUM7SUFFTyxvQkFBb0I7UUFDMUIsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQ3pELENBQUM7SUFFTyxrQkFBa0I7UUFDeEIsSUFBSSxDQUFDLFlBQVksR0FBRyxLQUFLLENBQUM7UUFDMUIsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUM7WUFDckIsRUFBRSxFQUFFLElBQUksQ0FBQyxNQUFNLENBQUMsRUFBRTtZQUNsQixNQUFNLEVBQUUsY0FBYyxDQUFDLE1BQU07U0FDOUIsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVPLGtCQUFrQjtRQUN4QixJQUFJLENBQUMsWUFBWSxHQUFHLEtBQUssQ0FBQztJQUM1QixDQUFDO0lBRU8seUJBQXlCO1FBQy9CLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUM7UUFDbEMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUM7WUFDbkIsSUFBSSxFQUFFLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSTtZQUN0QixNQUFNLEVBQUUsY0FBYyxDQUFDLGNBQWM7U0FDdEMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVPLHVCQUF1QjtRQUM3QixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxTQUFTLEdBQUcsS0FBSyxDQUFDO1FBQ25DLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDO1lBQ25CLElBQUksRUFBRSxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUk7WUFDdEIsTUFBTSxFQUFFLGNBQWMsQ0FBQyxZQUFZO1NBQ3BDLENBQUMsQ0FBQztRQUNILElBQUksQ0FBQywwQkFBMEIsR0FBRyxLQUFLLENBQUM7SUFDMUMsQ0FBQztJQUVNLFlBQVksQ0FBQyxHQUFXLEVBQUUsUUFBZ0I7UUFDL0MsSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsR0FBRyxFQUFFLEVBQUUsWUFBWSxFQUFFLE1BQU0sRUFBRSxDQUFDLENBQUMsU0FBUyxDQUNwRCxDQUFDLElBQVUsRUFBRSxFQUFFO1lBQ2IsTUFBTSxDQUFDLEdBQUcsUUFBUSxDQUFDLGFBQWEsQ0FBQyxHQUFHLENBQUMsQ0FBQztZQUN0QyxNQUFNLFNBQVMsR0FBRyxHQUFHLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxDQUFDO1lBQzVDLENBQUMsQ0FBQyxJQUFJLEdBQUcsU0FBUyxDQUFDO1lBQ25CLENBQUMsQ0FBQyxRQUFRLEdBQUcsUUFBUSxDQUFDO1lBQ3RCLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQztRQUNaLENBQUMsRUFDRCxDQUFDLEtBQUssRUFBRSxFQUFFO1lBQ1IsT0FBTyxDQUFDLEtBQUssQ0FBQyx5QkFBeUIsRUFBRSxLQUFLLENBQUMsQ0FBQztRQUNsRCxDQUFDLENBQ0YsQ0FBQztJQUNKLENBQUM7SUFFTSxVQUFVO1FBQ2YsSUFDRSxJQUFJLENBQUMsTUFBTSxDQUFDLGVBQWUsS0FBSyxvQkFBb0I7WUFDcEQsSUFBSSxDQUFDLE1BQU0sQ0FBQyxlQUFlLEtBQUssd0JBQXdCO1lBQ3hELElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxVQUFVLEtBQUssYUFBYTtZQUNsRCxDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUUsWUFBWSxFQUM1QjtZQUNBLElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDO1lBQ3JCLElBQUksQ0FBQyxXQUFXLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQztZQUMzQyxNQUFNLE9BQU8sR0FBRyxVQUFVLENBQUMsR0FBRyxFQUFFO2dCQUM5QixNQUFNLEtBQUssR0FBRyxJQUFJLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxhQUFhLENBQUM7Z0JBQ2hELE1BQU0sWUFBWSxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDO2dCQUN4QyxJQUFJLEtBQUssQ0FBQyxpQkFBaUIsRUFBRTtvQkFDM0IsS0FBSyxDQUFDLGlCQUFpQixDQUFDLFlBQVksRUFBRSxZQUFZLENBQUMsQ0FBQztpQkFDckQ7Z0JBQ0QsTUFBTSxZQUFZLEdBQUcsVUFBVSxDQUFDLEdBQUcsRUFBRTtvQkFDbkMsS0FBSyxDQUFDLEtBQUssRUFBRSxDQUFDO29CQUNkLFlBQVksQ0FBQyxZQUFZLENBQUMsQ0FBQztnQkFDN0IsQ0FBQyxFQUFFLEdBQUcsQ0FBQyxDQUFDO2dCQUNSLFlBQVksQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUN4QixDQUFDLEVBQUUsR0FBRyxDQUFDLENBQUM7U0FDVDtJQUNILENBQUM7SUFFTyx3QkFBd0I7UUFDOUIsSUFBSSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsUUFBUSxFQUFFO1lBQ2xDLElBQUksQ0FBQywwQkFBMEIsQ0FBQyxZQUFZO2lCQUN6QyxJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxFQUFFLG9CQUFvQixFQUFFLENBQUM7aUJBQ2hELFNBQVMsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFO2dCQUNuQixJQUFJLENBQUMsd0JBQXdCLENBQUMsSUFBSSxDQUFDO29CQUNqQyxJQUFJLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJO29CQUN0QixPQUFPLEVBQUUsS0FBSztpQkFDZixDQUFDLENBQUM7WUFDTCxDQUFDLENBQUMsQ0FBQztTQUNOO0lBQ0gsQ0FBQztJQUVNLHdCQUF3QixDQUFDLEtBQXVCO1FBQ3JELElBQUksQ0FBQywwQkFBMEIsR0FBRyxLQUFLLENBQUMsSUFBSSxLQUFLLE1BQU0sQ0FBQztJQUMxRCxDQUFDO0lBRU0sT0FBTztRQUNaLElBQUksSUFBSSxDQUFDLE1BQU0sQ0FBQyxlQUFlLElBQUksSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEVBQUUsTUFBTSxFQUFFO1lBQzNELElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFO2dCQUNoQyxJQUFJLEdBQUc7b0JBQ0wsR0FBRyxJQUFJO29CQUNQLE9BQU8sRUFBRSxLQUFLO2lCQUNmLENBQUM7Z0JBRUYsSUFBSSxDQUFDLE1BQU0sQ0FBQyxXQUFXLEVBQUUsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1lBQ3RDLENBQUMsQ0FBQyxDQUFDO1NBQ0o7SUFDSCxDQUFDO0lBRU0sY0FBYztRQUNuQixJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksRUFBRSxNQUFNLEVBQUU7WUFDakMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7U0FDOUQ7SUFDSCxDQUFDO0lBRU0sV0FBVztRQUNoQixJQUNFLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUk7WUFDckIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU07WUFDNUIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxlQUFlLEVBQzNCO1lBQ0EsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQztTQUN0RDtJQUNILENBQUM7SUFFTSxTQUFTLENBQUMsR0FBVztRQUMxQixJQUFJLENBQUMsTUFBTSxDQUFDLFdBQVcsRUFBRSxPQUFPLENBQUMsQ0FBQyxJQUFJLEVBQUUsRUFBRTtZQUN4QyxJQUFJLElBQUksQ0FBQyxPQUFPLElBQUksR0FBRyxFQUFFO2dCQUN2QixJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQztnQkFFcEIsVUFBVSxDQUFDLEdBQUcsRUFBRTtvQkFDZCxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLE9BQU8sQ0FBQztvQkFDckMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsa0JBQWtCLEdBQUcsSUFBSSxDQUFDO29CQUMzQyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLEdBQUcsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7b0JBQ3RDLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFVBQVU7d0JBQ3pCLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFFBQVEsSUFBSSxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQztvQkFDM0QsTUFBTSxNQUFNLEdBQUcsS0FBSyxDQUFDO29CQUNyQixJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxNQUFNLEVBQUUsRUFBRTt3QkFDckIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsRUFBRSxJQUFJLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEVBQUUsTUFBTSxFQUFFLENBQUMsQ0FBQztxQkFDMUQ7b0JBQ0QsSUFBSSxDQUFDLEdBQUcsQ0FBQyxhQUFhLEVBQUUsQ0FBQztnQkFDM0IsQ0FBQyxFQUFFLEdBQUcsQ0FBQyxDQUFDO2FBQ1Q7aUJBQU07Z0JBQ0wsSUFBSSxDQUFDLE9BQU8sR0FBRyxLQUFLLENBQUM7YUFDdEI7UUFDSCxDQUFDLENBQUMsQ0FBQztRQUNILElBQUksQ0FBQyxHQUFHLENBQUMsYUFBYSxFQUFFLENBQUM7SUFDM0IsQ0FBQztJQUVNLFNBQVM7UUFDZCxVQUFVLENBQUMsR0FBRyxFQUFFO1lBQ2QsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxHQUFHLEVBQUUsQ0FBQztZQUMzQixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLEdBQUcsRUFBRSxDQUFDO1lBQzVCLE1BQU0sTUFBTSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDO1lBQy9CLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDO1lBQ3ZFLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLEVBQUUsSUFBSSxFQUFFLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLE1BQU0sRUFBRSxDQUFDLENBQUM7WUFDekQsSUFBSSxDQUFDLEdBQUcsQ0FBQyxhQUFhLEVBQUUsQ0FBQztRQUMzQixDQUFDLEVBQUUsR0FBRyxDQUFDLENBQUM7SUFDVixDQUFDO0lBRU0sZUFBZSxDQUFDLElBQVk7UUFDakMsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUM5QyxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQztJQUMzQixDQUFDO0lBRU0sU0FBUztRQUNkLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDeEMsQ0FBQztJQUVNLFdBQVcsQ0FBQyxHQUFZO1FBQzdCLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFdBQVcsR0FBRyxHQUFHLENBQUM7UUFDbkMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUMzQixDQUFDO0lBRU0sVUFBVSxDQUFDLEdBQVk7UUFDNUIsSUFBSSxDQUFDLGNBQWMsR0FBRyxHQUFHLENBQUM7UUFDMUIsSUFBSSxDQUFDLEdBQUcsQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUMzQixDQUFDO0lBRU0sUUFBUSxDQUFDLEtBQWE7UUFDM0IsT0FBTyxLQUFLLENBQUM7SUFDZixDQUFDO0lBRUQsV0FBVztRQUNULElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLENBQUM7UUFDckIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLEVBQUUsQ0FBQztJQUMzQixDQUFDOytHQTFVVSxxQkFBcUI7bUdBQXJCLHFCQUFxQiw0YkFFckIsZ0JBQWdCLGdEQ3hGN0IsOGtkQTBiQTtnQkQzWEksVUFBVTtnQkFDVixZQUFZLHdkQUNaLFVBQVUsMFRBQ1YsU0FBUyxzWEFDVCxnQkFBZ0IsOEJBQ2hCLG1CQUFtQix5VEFDbkIsb0JBQW9CLGdPQUNwQixXQUFXLDhCQUNYLGFBQWE7Z0JBQ2IsUUFBUTtnQkFDUixlQUFlLG1EQUVmLGVBQWUsMGNBRWYsV0FBVyxvREFHWCxrQkFBa0Isc0dBQ2xCLGdCQUFnQjs7NEZBS1AscUJBQXFCO2tCQTdCakMsU0FBUztpQ0FDSSxJQUFJLFlBQ04sb0JBQW9CLFdBR3JCO3dCQUNQLFVBQVU7d0JBQ1YsWUFBWTt3QkFDWixVQUFVO3dCQUNWLFNBQVM7d0JBQ1QsZ0JBQWdCO3dCQUNoQixtQkFBbUI7d0JBQ25CLG9CQUFvQjt3QkFDcEIsV0FBVzt3QkFDWCxhQUFhO3dCQUNiLFFBQVE7d0JBQ1IsZUFBZTt3QkFDZixnQkFBZ0I7d0JBQ2hCLGVBQWU7d0JBQ2YsWUFBWTt3QkFDWixXQUFXO3dCQUNYLGFBQWE7d0JBQ2IsdUJBQXVCO3dCQUN2QixrQkFBa0I7d0JBQ2xCLGdCQUFnQjt3QkFDaEIscUJBQXFCO3FCQUN0QixpQkFDYyxpQkFBaUIsQ0FBQyxRQUFRO3lOQUd4QixFQUFFO3NCQUFsQixTQUFTO3VCQUFDLElBQUk7Z0JBQ2MsUUFBUTtzQkFBcEMsU0FBUzt1QkFBQyxnQkFBZ0I7Z0JBRWxCLE1BQU07c0JBQWQsS0FBSztnQkFDRyxnQkFBZ0I7c0JBQXhCLEtBQUs7Z0JBRUksVUFBVTtzQkFBbkIsTUFBTTtnQkFDRyxZQUFZO3NCQUFyQixNQUFNO2dCQUNHLHdCQUF3QjtzQkFBakMsTUFBTTtnQkFFRyxjQUFjO3NCQUF2QixNQUFNO2dCQUNHLFNBQVM7c0JBQWxCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBBZnRlclZpZXdJbml0LFxuICBDaGFuZ2VEZXRlY3RvclJlZixcbiAgQ29tcG9uZW50LFxuICBFdmVudEVtaXR0ZXIsXG4gIElucHV0LFxuICBPbkluaXQsXG4gIE91dHB1dCxcbiAgVmlld0NoaWxkLFxuICBWaWV3RW5jYXBzdWxhdGlvbixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEZvcm1Db250cm9sLCBGb3Jtc01vZHVsZSwgUmVhY3RpdmVGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IGRlYm91bmNlVGltZSwgZGlzdGluY3RVbnRpbENoYW5nZWQsIFN1YmplY3QgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IEh0dHBDbGllbnQgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5pbXBvcnQgeyBQREZEb2N1bWVudFByb3h5LCBQZGZWaWV3ZXJNb2R1bGUgfSBmcm9tICduZzItcGRmLXZpZXdlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQW5ndWxhclN2Z0ljb25Nb2R1bGUgfSBmcm9tICdhbmd1bGFyLXN2Zy1pY29uJztcbmltcG9ydCB7XG4gIE5nYk1vZHVsZSxcbiAgTmdiUG9wb3ZlcixcbiAgTmdiUG9wb3Zlck1vZHVsZSxcbiAgTmdiVG9vbHRpcCxcbn0gZnJvbSAnQG5nLWJvb3RzdHJhcC9uZy1ib290c3RyYXAnO1xuaW1wb3J0IHsgTmd4TWFza01vZHVsZSB9IGZyb20gJ25neC1tYXNrJztcblxuLy9Db21wb25lbnRzXG5pbXBvcnQgeyBDYUlucHV0Q29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vY2EtaW5wdXQvY2EtaW5wdXQuY29tcG9uZW50JztcbmltcG9ydCB7IENhQXBwVG9vbHRpcFYyQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vY2EtYXBwLXRvb2x0aXAtdjIvY2EtYXBwLXRvb2x0aXAtdjIuY29tcG9uZW50JztcbmltcG9ydCB7IENhU3Bpbm5lckNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uL2NhLXNwaW5uZXIvY2Etc3Bpbm5lci5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ2FMb2dvQ2hhbmdlQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vY2EtbG9nby1jaGFuZ2UvY2EtbG9nby1jaGFuZ2UuY29tcG9uZW50JztcblxuLy9Nb2RlbHNcbmltcG9ydCB7XG4gIERvY3VtZW50UmV2aWV3SW5wdXRFdmVudCxcbiAgRmlsZU9wdGlvbkNvbmZpZyxcbiAgUmV2aWV3RmlsZUNvbmZpZyxcbn0gZnJvbSAnLi4vLi4vbW9kZWxzJztcbmltcG9ydCB7IERlbGV0ZUFjdGlvbiwgRmlsZUFjdGlvbkV2ZW50IH0gZnJvbSAnLi9tb2RlbHMnO1xuXG4vL0VudW1zXG5pbXBvcnQgeyBEb2N1bWVudEFjdGlvbiB9IGZyb20gJy4vZW51bXMnO1xuXG4vL1BpcGVzXG5pbXBvcnQge1xuICBCeXRlQ29udmVydFBpcGUsXG4gIEZpbGVOYW1lUGlwZSxcbiAgVXJsRXh0ZW5zaW9uUGlwZSxcbiAgTmdDbGFzc1BpcGUsXG59IGZyb20gJy4vcGlwZXMnO1xuXG4vL1NlcnZpY2VzXG5pbXBvcnQgeyBEb2N1bWVudFNlcnZpY2UgfSBmcm9tICcuL3NlcnZpY2VzJztcblxuLy9Sb3V0ZXNcbmltcG9ydCB7IFVwbG9hZEZpbGVSb3V0ZXMgfSBmcm9tICcuL3V0aWxzL3N2Zy1yb3V0ZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgc2VsZWN0b3I6ICdhcHAtY2EtdXBsb2FkLWZpbGUnLFxuICB0ZW1wbGF0ZVVybDogJy4vY2EtdXBsb2FkLWZpbGUuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jYS11cGxvYWQtZmlsZS5jb21wb25lbnQuc2NzcyddLFxuICBpbXBvcnRzOiBbXG4gICAgLy8gbW9kdWxlc1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBOZ2JUb29sdGlwLFxuICAgIE5nYk1vZHVsZSxcbiAgICBOZ2JQb3BvdmVyTW9kdWxlLFxuICAgIFJlYWN0aXZlRm9ybXNNb2R1bGUsXG4gICAgQW5ndWxhclN2Z0ljb25Nb2R1bGUsXG4gICAgRm9ybXNNb2R1bGUsXG4gICAgTmd4TWFza01vZHVsZSxcbiAgICAvLyBwaXBlc1xuICAgIEJ5dGVDb252ZXJ0UGlwZSxcbiAgICBVcmxFeHRlbnNpb25QaXBlLFxuICAgIFBkZlZpZXdlck1vZHVsZSxcbiAgICBGaWxlTmFtZVBpcGUsXG4gICAgTmdDbGFzc1BpcGUsXG4gICAgLy8gY29tcG9uZW50c1xuICAgIENhQXBwVG9vbHRpcFYyQ29tcG9uZW50LFxuICAgIENhU3Bpbm5lckNvbXBvbmVudCxcbiAgICBDYUlucHV0Q29tcG9uZW50LFxuICAgIENhTG9nb0NoYW5nZUNvbXBvbmVudCxcbiAgXSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uRW11bGF0ZWQsXG59KVxuZXhwb3J0IGNsYXNzIENhVXBsb2FkRmlsZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgQWZ0ZXJWaWV3SW5pdCB7XG4gIEBWaWV3Q2hpbGQoJ3QyJykgdDIhOiBOZ2JQb3BvdmVyO1xuICBAVmlld0NoaWxkKENhSW5wdXRDb21wb25lbnQpIGlucHV0UmVmITogQ2FJbnB1dENvbXBvbmVudDtcblxuICBASW5wdXQoKSBjb25maWchOiBGaWxlT3B0aW9uQ29uZmlnO1xuICBASW5wdXQoKSByZXZpZXdGaWxlQ29uZmlnITogUmV2aWV3RmlsZUNvbmZpZztcblxuICBAT3V0cHV0KCkgZmlsZUFjdGlvbiA9IG5ldyBFdmVudEVtaXR0ZXI8RmlsZUFjdGlvbkV2ZW50PigpO1xuICBAT3V0cHV0KCkgZGVsZXRlQWN0aW9uID0gbmV3IEV2ZW50RW1pdHRlcjxEZWxldGVBY3Rpb24+KCk7XG4gIEBPdXRwdXQoKSBkb2N1bWVudFJldmlld0lucHV0RXZlbnQgPVxuICAgIG5ldyBFdmVudEVtaXR0ZXI8RG9jdW1lbnRSZXZpZXdJbnB1dEV2ZW50PigpO1xuICBAT3V0cHV0KCkgbGFuZHNjYXBlQ2hlY2sgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG4gIEBPdXRwdXQoKSBmaWxlSG92ZXIgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG5cbiAgcHVibGljIGZpbGVOZXdOYW1lOiBGb3JtQ29udHJvbCA9IG5ldyBGb3JtQ29udHJvbCgpO1xuICBwdWJsaWMgZG9jdW1lbnRSZXZpZXdJbnB1dENvbnRyb2w6IEZvcm1Db250cm9sID0gbmV3IEZvcm1Db250cm9sKG51bGwpO1xuICBwdWJsaWMgZWRpdEZpbGU6IGJvb2xlYW4gPSBmYWxzZTtcbiAgcHVibGljIGlzRmlsZURlbGV0ZTogYm9vbGVhbiA9IGZhbHNlO1xuICBwdWJsaWMgZG9jdW1lbnRSZXZpZXdJbnB1dFZpc2libGU6IGJvb2xlYW4gPSBmYWxzZTtcbiAgcHVibGljIGlzSW5jb3JyZWN0TWFya0hvdmVyOiBib29sZWFuID0gZmFsc2U7XG4gIHB1YmxpYyBhbm5vdGF0aW9uSG92ZXI6IGJvb2xlYW4gPSBmYWxzZTtcbiAgcHVibGljIGRvY3VtZW50TG9hZGluZzogYm9vbGVhbiA9IHRydWU7XG4gIHB1YmxpYyBpc0Fycm93SG92ZXJlZDogYm9vbGVhbiA9IGZhbHNlO1xuICBwdWJsaWMgZmlsZUV4dGVuc2lvbjogc3RyaW5nID0gJyc7XG4gIHB1YmxpYyBudW1iZXJPZkZpbGVQYWdlczogc3RyaW5nID0gJyc7XG4gIHB1YmxpYyBmaWxlTmFtZTogc3RyaW5nID0gJyc7XG4gIHB1YmxpYyBpY29ucyA9IFVwbG9hZEZpbGVSb3V0ZXMuaWNvbnM7XG5cbiAgcHVibGljIGFjdGlvbiA9IERvY3VtZW50QWN0aW9uO1xuICBwcml2YXRlIGRlc3Ryb3kkID0gbmV3IFN1YmplY3Q8dm9pZD4oKTtcblxuICBjb25zdHJ1Y3RvcihcbiAgICBwcml2YXRlIGh0dHA6IEh0dHBDbGllbnQsXG4gICAgcHJpdmF0ZSByZWY6IENoYW5nZURldGVjdG9yUmVmLFxuXG4gICAgLy9QaXBlXG4gICAgcHJpdmF0ZSB1cmxFeHQ6IFVybEV4dGVuc2lvblBpcGUsXG4gICAgcHJpdmF0ZSBmaWxlTmFtZVBpcGU6IEZpbGVOYW1lUGlwZSxcblxuICAgIC8vU2VydmljZVxuICAgIHByaXZhdGUgZGV0YWlsc0RhdGFTZXJ2aWNlOiBEb2N1bWVudFNlcnZpY2VcbiAgKSB7fVxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmdldGZpbGVOYW1lKCk7XG5cbiAgICB0aGlzLmluaXRpYWxpemVGaWxlRXh0ZW5zaW9uKCk7XG5cbiAgICB0aGlzLm9uU3Bpbm5lcigpO1xuXG4gICAgdGhpcy5yZXZpZXdJbnB1dENvbnRyb2xDaGFuZ2UoKTtcblxuICAgIHRoaXMuc2V0U2F2ZWRUYWcoKTtcbiAgfVxuXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLnNldFRhZ3MoKTtcbiAgICB0aGlzLnNldENhdGVnb3J5VGFnKCk7XG4gIH1cblxuICBwcml2YXRlIGluaXRpYWxpemVGaWxlRXh0ZW5zaW9uKCk6IHZvaWQge1xuICAgIGlmICh0aGlzLmNvbmZpZy5maWxlICYmIHRoaXMuY29uZmlnLmZpbGUuZmlsZU5hbWUpIHtcbiAgICAgIHRoaXMuZmlsZUV4dGVuc2lvbiA9IHRoaXMudXJsRXh0LnRyYW5zZm9ybSh0aGlzLmNvbmZpZy5maWxlLmZpbGVOYW1lKTtcbiAgICB9XG4gIH1cblxuICBwdWJsaWMgb25TcGlubmVyKCk6IHZvaWQge1xuICAgIGNvbnN0IGlzTm90UGRmID1cbiAgICAgICh0aGlzLmNvbmZpZy5maWxlLmV4dGVuc2lvbiB8fFxuICAgICAgICB0aGlzLnVybEV4dC50cmFuc2Zvcm0odGhpcy5jb25maWcuZmlsZS51cmwpKSAhPT0gJ3BkZic7XG4gICAgdGhpcy5kb2N1bWVudExvYWRpbmcgPSAhaXNOb3RQZGY7XG4gIH1cblxuICBwdWJsaWMgZ2V0ZmlsZU5hbWUoKTogdm9pZCB7XG4gICAgaWYgKHRoaXMuY29uZmlnLmZpbGUuZmlsZU5hbWUpXG4gICAgICB0aGlzLmZpbGVOYW1lID0gdGhpcy5maWxlTmFtZVBpcGUudHJhbnNmb3JtKHRoaXMuY29uZmlnLmZpbGUuZmlsZU5hbWUpO1xuICB9XG5cbiAgcHVibGljIG9uQmx1cklucHV0KGV2ZW50OiBib29sZWFuKTogdm9pZCB7XG4gICAgaWYgKGV2ZW50KSB7XG4gICAgICB0aGlzLmVkaXRGaWxlID0gZmFsc2U7XG4gICAgICBpZiAodGhpcy5maWxlTmV3TmFtZS52YWx1ZSkge1xuICAgICAgICB0aGlzLmNvbmZpZy5maWxlLmZpbGVOYW1lID0gdGhpcy5maWxlTmFtZTtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICAvL3BkZlxuICBwdWJsaWMgYWZ0ZXJMb2FkQ29tcGxldGUocGRmOiBQREZEb2N1bWVudFByb3h5KTogdm9pZCB7XG4gICAgdGhpcy5kb2N1bWVudExvYWRpbmcgPSBmYWxzZTtcbiAgICBjb25zdCBudW1iZXJQYWdlcyA9IHBkZi5fcGRmSW5mby5udW1QYWdlcztcblxuICAgIHRoaXMubnVtYmVyT2ZGaWxlUGFnZXMgPSBgJHtudW1iZXJQYWdlc30gJHtcbiAgICAgIG51bWJlclBhZ2VzID09PSAxID8gJ1BBR0UnIDogJ1BBR0VTJ1xuICAgIH1gO1xuXG4gICAgaWYgKCF0aGlzLmNvbmZpZy5maWxlLmV4dGVuc2lvbiAmJiB0aGlzLmNvbmZpZy5maWxlLmZpbGVOYW1lKSB7XG4gICAgICB0aGlzLmZpbGVFeHRlbnNpb24gPSB0aGlzLnVybEV4dC50cmFuc2Zvcm0odGhpcy5jb25maWcuZmlsZS5maWxlTmFtZSk7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIHBhZ2VSZW5kZXJlZChcbiAgICBldmVudDogYW55IC8vIGxlYXZlIGFueSBmb3Igbm93XG4gICk6IHZvaWQge1xuICAgIGNvbnN0IHBkZjoge1xuICAgICAgcGFnZU51bWJlcjogbnVtYmVyO1xuICAgICAgc291cmNlOiB7IHdpZHRoOiBudW1iZXI7IGhlaWdodDogbnVtYmVyIH07XG4gICAgfSA9IGV2ZW50O1xuXG4gICAgaWYgKFxuICAgICAgdGhpcy5jb25maWcuaGFzTGFuZHNjYXBlT3B0aW9uICYmXG4gICAgICBwZGYucGFnZU51bWJlciA9PT0gMSAmJlxuICAgICAgcGRmLnNvdXJjZS53aWR0aCA+IHBkZi5zb3VyY2UuaGVpZ2h0XG4gICAgKSB7XG4gICAgICB0aGlzLmxhbmRzY2FwZUNoZWNrLmVtaXQodHJ1ZSk7XG4gICAgfVxuICB9XG4gIHB1YmxpYyBvbkFjdGlvbihhY3Rpb246IHN0cmluZyk6IHZvaWQge1xuICAgIHRoaXMuZGV0YWlsc0RhdGFTZXJ2aWNlLnNldERvY3VtZW50TmFtZSh0aGlzLmZpbGVOYW1lKTtcbiAgICBzd2l0Y2ggKGFjdGlvbikge1xuICAgICAgY2FzZSBEb2N1bWVudEFjdGlvbi5UQUc6XG4gICAgICAgIHRoaXMuaGFuZGxlVGFnQWN0aW9uKCk7XG4gICAgICAgIGJyZWFrO1xuICAgICAgY2FzZSBEb2N1bWVudEFjdGlvbi5ET1dOTE9BRDpcbiAgICAgICAgdGhpcy5oYW5kbGVEb3dubG9hZEFjdGlvbigpO1xuICAgICAgICBicmVhaztcbiAgICAgIGNhc2UgRG9jdW1lbnRBY3Rpb24uREVMRVRFOlxuICAgICAgICB0aGlzLmhhbmRsZURlbGV0ZUFjdGlvbigpO1xuICAgICAgICBicmVhaztcbiAgICAgIGNhc2UgRG9jdW1lbnRBY3Rpb24uQ0FOQ0VMOlxuICAgICAgICB0aGlzLmhhbmRsZUNhbmNlbEFjdGlvbigpO1xuICAgICAgICBicmVhaztcbiAgICAgIGNhc2UgRG9jdW1lbnRBY3Rpb24uTUFSS19JTkNPUlJFQ1Q6XG4gICAgICAgIHRoaXMuaGFuZGxlTWFya0luY29ycmVjdEFjdGlvbigpO1xuICAgICAgICBicmVhaztcbiAgICAgIGNhc2UgRG9jdW1lbnRBY3Rpb24uTUFSS19DT1JSRUNUOlxuICAgICAgICB0aGlzLmhhbmRsZU1hcmtDb3JyZWN0QWN0aW9uKCk7XG4gICAgICAgIGJyZWFrO1xuICAgICAgZGVmYXVsdDpcbiAgICAgICAgYnJlYWs7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBoYW5kbGVUYWdBY3Rpb24oKTogdm9pZCB7XG4gICAgaWYgKHRoaXMuY29uZmlnLmZpbGUudGFncykge1xuICAgICAgdGhpcy5zZWxlY3RUYWcodGhpcy5jb25maWcuZmlsZS50YWdzKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5zZWxlY3RUYWcoJ05vIFRhZycpO1xuICAgIH1cbiAgICB0aGlzLnQyLm9wZW4oKTtcbiAgfVxuXG4gIHByaXZhdGUgaGFuZGxlRG93bmxvYWRBY3Rpb24oKTogdm9pZCB7XG4gICAgdGhpcy5kb3dubG9hZEZpbGUodGhpcy5jb25maWcuZmlsZS51cmwsIHRoaXMuZmlsZU5hbWUpO1xuICB9XG5cbiAgcHJpdmF0ZSBoYW5kbGVEZWxldGVBY3Rpb24oKTogdm9pZCB7XG4gICAgdGhpcy5pc0ZpbGVEZWxldGUgPSBmYWxzZTtcbiAgICB0aGlzLmRlbGV0ZUFjdGlvbi5lbWl0KHtcbiAgICAgIGlkOiB0aGlzLmNvbmZpZy5pZCxcbiAgICAgIGFjdGlvbjogRG9jdW1lbnRBY3Rpb24uREVMRVRFLFxuICAgIH0pO1xuICB9XG5cbiAgcHJpdmF0ZSBoYW5kbGVDYW5jZWxBY3Rpb24oKTogdm9pZCB7XG4gICAgdGhpcy5pc0ZpbGVEZWxldGUgPSBmYWxzZTtcbiAgfVxuXG4gIHByaXZhdGUgaGFuZGxlTWFya0luY29ycmVjdEFjdGlvbigpOiB2b2lkIHtcbiAgICB0aGlzLmNvbmZpZy5maWxlLmluY29ycmVjdCA9IHRydWU7XG4gICAgdGhpcy5maWxlQWN0aW9uLmVtaXQoe1xuICAgICAgZmlsZTogdGhpcy5jb25maWcuZmlsZSxcbiAgICAgIGFjdGlvbjogRG9jdW1lbnRBY3Rpb24uTUFSS19JTkNPUlJFQ1QsXG4gICAgfSk7XG4gIH1cblxuICBwcml2YXRlIGhhbmRsZU1hcmtDb3JyZWN0QWN0aW9uKCk6IHZvaWQge1xuICAgIHRoaXMuY29uZmlnLmZpbGUuaW5jb3JyZWN0ID0gZmFsc2U7XG4gICAgdGhpcy5maWxlQWN0aW9uLmVtaXQoe1xuICAgICAgZmlsZTogdGhpcy5jb25maWcuZmlsZSxcbiAgICAgIGFjdGlvbjogRG9jdW1lbnRBY3Rpb24uTUFSS19DT1JSRUNULFxuICAgIH0pO1xuICAgIHRoaXMuZG9jdW1lbnRSZXZpZXdJbnB1dFZpc2libGUgPSBmYWxzZTtcbiAgfVxuXG4gIHB1YmxpYyBkb3dubG9hZEZpbGUodXJsOiBzdHJpbmcsIGZpbGVuYW1lOiBzdHJpbmcpOiB2b2lkIHtcbiAgICB0aGlzLmh0dHAuZ2V0KHVybCwgeyByZXNwb25zZVR5cGU6ICdibG9iJyB9KS5zdWJzY3JpYmUoXG4gICAgICAoYmxvYjogQmxvYikgPT4ge1xuICAgICAgICBjb25zdCBhID0gZG9jdW1lbnQuY3JlYXRlRWxlbWVudCgnYScpO1xuICAgICAgICBjb25zdCBvYmplY3RVcmwgPSBVUkwuY3JlYXRlT2JqZWN0VVJMKGJsb2IpO1xuICAgICAgICBhLmhyZWYgPSBvYmplY3RVcmw7XG4gICAgICAgIGEuZG93bmxvYWQgPSBmaWxlbmFtZTtcbiAgICAgICAgYS5jbGljaygpO1xuICAgICAgfSxcbiAgICAgIChlcnJvcikgPT4ge1xuICAgICAgICBjb25zb2xlLmVycm9yKCdFcnJvciBkb3dubG9hZGluZyBmaWxlOicsIGVycm9yKTtcbiAgICAgIH1cbiAgICApO1xuICB9XG5cbiAgcHVibGljIG9uRWRpdEZpbGUoKTogdm9pZCB7XG4gICAgaWYgKFxuICAgICAgdGhpcy5jb25maWcuY3VzdG9tQ2xhc3NOYW1lICE9PSAnZHJpdmVyLWRldGFpbHMtcGRmJyAmJlxuICAgICAgdGhpcy5jb25maWcuY3VzdG9tQ2xhc3NOYW1lICE9PSAnbGFuZHNjYXBlLWRldGFpbHMtdmlldycgJiZcbiAgICAgIHRoaXMucmV2aWV3RmlsZUNvbmZpZy5yZXZpZXdNb2RlICE9PSAnUkVWSUVXX01PREUnICYmXG4gICAgICAhdGhpcy5pbnB1dFJlZj8uaXNGb2N1c0lucHV0XG4gICAgKSB7XG4gICAgICB0aGlzLmVkaXRGaWxlID0gdHJ1ZTtcbiAgICAgIHRoaXMuZmlsZU5ld05hbWUucGF0Y2hWYWx1ZSh0aGlzLmZpbGVOYW1lKTtcbiAgICAgIGNvbnN0IHRpbWVvdXQgPSBzZXRUaW1lb3V0KCgpID0+IHtcbiAgICAgICAgY29uc3QgaW5wdXQgPSB0aGlzLmlucHV0UmVmLmlucHV0Lm5hdGl2ZUVsZW1lbnQ7XG4gICAgICAgIGNvbnN0IHNlbGVjdGlvbkVuZCA9IGlucHV0LnZhbHVlLmxlbmd0aDtcbiAgICAgICAgaWYgKGlucHV0LnNldFNlbGVjdGlvblJhbmdlKSB7XG4gICAgICAgICAgaW5wdXQuc2V0U2VsZWN0aW9uUmFuZ2Uoc2VsZWN0aW9uRW5kLCBzZWxlY3Rpb25FbmQpO1xuICAgICAgICB9XG4gICAgICAgIGNvbnN0IGZvY3VzVGltZW91dCA9IHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICAgIGlucHV0LmZvY3VzKCk7XG4gICAgICAgICAgY2xlYXJUaW1lb3V0KGZvY3VzVGltZW91dCk7XG4gICAgICAgIH0sIDEwMCk7XG4gICAgICAgIGNsZWFyVGltZW91dCh0aW1lb3V0KTtcbiAgICAgIH0sIDEwMCk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSByZXZpZXdJbnB1dENvbnRyb2xDaGFuZ2UoKTogdm9pZCB7XG4gICAgaWYgKHRoaXMucmV2aWV3RmlsZUNvbmZpZy5pc1Jldmlldykge1xuICAgICAgdGhpcy5kb2N1bWVudFJldmlld0lucHV0Q29udHJvbC52YWx1ZUNoYW5nZXNcbiAgICAgICAgLnBpcGUoZGVib3VuY2VUaW1lKDE1MDApLCBkaXN0aW5jdFVudGlsQ2hhbmdlZCgpKVxuICAgICAgICAuc3Vic2NyaWJlKCh2YWx1ZSkgPT4ge1xuICAgICAgICAgIHRoaXMuZG9jdW1lbnRSZXZpZXdJbnB1dEV2ZW50LmVtaXQoe1xuICAgICAgICAgICAgZmlsZTogdGhpcy5jb25maWcuZmlsZSxcbiAgICAgICAgICAgIG1lc3NhZ2U6IHZhbHVlLFxuICAgICAgICAgIH0pO1xuICAgICAgICB9KTtcbiAgICB9XG4gIH1cblxuICBwdWJsaWMgZ2V0QW5ub3RhdGlvblJldmlld0V2ZW50KGV2ZW50OiB7IHR5cGU6IHN0cmluZyB9KTogdm9pZCB7XG4gICAgdGhpcy5kb2N1bWVudFJldmlld0lucHV0VmlzaWJsZSA9IGV2ZW50LnR5cGUgPT09ICdvcGVuJztcbiAgfVxuXG4gIHB1YmxpYyBzZXRUYWdzKCk6IHZvaWQge1xuICAgIGlmICh0aGlzLmNvbmZpZy5oYXNUYWdzRHJvcGRvd24gJiYgdGhpcy5jb25maWcudGFncz8ubGVuZ3RoKSB7XG4gICAgICB0aGlzLmNvbmZpZy50YWdzLmZvckVhY2goKGl0ZW0pID0+IHtcbiAgICAgICAgaXRlbSA9IHtcbiAgICAgICAgICAuLi5pdGVtLFxuICAgICAgICAgIGNoZWNrZWQ6IGZhbHNlLFxuICAgICAgICB9O1xuXG4gICAgICAgIHRoaXMuY29uZmlnLnRhZ3NPcHRpb25zPy5wdXNoKGl0ZW0pO1xuICAgICAgfSk7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIHNldENhdGVnb3J5VGFnKCk6IHZvaWQge1xuICAgIGlmICh0aGlzLmNvbmZpZy5maWxlLnRhZ3M/Lmxlbmd0aCkge1xuICAgICAgdGhpcy5yZXZpZXdGaWxlQ29uZmlnLmNhdGVnb3J5VGFnID0gdGhpcy5jb25maWcuZmlsZS50YWdzWzBdO1xuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBzZXRTYXZlZFRhZygpOiB2b2lkIHtcbiAgICBpZiAoXG4gICAgICB0aGlzLmNvbmZpZy5maWxlLnRhZ3MgJiZcbiAgICAgIHRoaXMuY29uZmlnLmZpbGUudGFncy5sZW5ndGggJiZcbiAgICAgIHRoaXMuY29uZmlnLmhhc1RhZ3NEcm9wZG93blxuICAgICkge1xuICAgICAgdGhpcy5jb25maWcuZmlsZS5zYXZlZFRhZyA9IHRoaXMuY29uZmlnLmZpbGUudGFnc1swXTtcbiAgICB9XG4gIH1cblxuICBwdWJsaWMgc2VsZWN0VGFnKHRhZzogc3RyaW5nKSB7XG4gICAgdGhpcy5jb25maWcudGFnc09wdGlvbnM/LmZvckVhY2goKGl0ZW0pID0+IHtcbiAgICAgIGlmIChpdGVtLnRhZ05hbWUgPT0gdGFnKSB7XG4gICAgICAgIGl0ZW0uY2hlY2tlZCA9IHRydWU7XG5cbiAgICAgICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgdGhpcy5jb25maWcuZmlsZS50YWdzID0gaXRlbS50YWdOYW1lO1xuICAgICAgICAgIHRoaXMuY29uZmlnLmZpbGUudGFnR2VuZXJhdGVkQnlVc2VyID0gdHJ1ZTtcbiAgICAgICAgICB0aGlzLmNvbmZpZy5maWxlLnRhZ0lkID0gW2l0ZW0udGFnSWRdO1xuICAgICAgICAgIHRoaXMuY29uZmlnLmZpbGUudGFnQ2hhbmdlZCA9XG4gICAgICAgICAgICB0aGlzLmNvbmZpZy5maWxlLnNhdmVkVGFnICE9IGl0ZW0udGFnTmFtZSA/IHRydWUgOiBmYWxzZTtcbiAgICAgICAgICBjb25zdCBhY3Rpb24gPSAndGFnJztcbiAgICAgICAgICBpZiAoIXRoaXMudDIuaXNPcGVuKCkpIHtcbiAgICAgICAgICAgIHRoaXMuZmlsZUFjdGlvbi5lbWl0KHsgZmlsZTogdGhpcy5jb25maWcuZmlsZSwgYWN0aW9uIH0pO1xuICAgICAgICAgIH1cbiAgICAgICAgICB0aGlzLnJlZi5kZXRlY3RDaGFuZ2VzKCk7XG4gICAgICAgIH0sIDIwMCk7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBpdGVtLmNoZWNrZWQgPSBmYWxzZTtcbiAgICAgIH1cbiAgICB9KTtcbiAgICB0aGlzLnJlZi5kZXRlY3RDaGFuZ2VzKCk7XG4gIH1cblxuICBwdWJsaWMgcmVtb3ZlVGFnKCk6IHZvaWQge1xuICAgIHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgdGhpcy5jb25maWcuZmlsZS50YWdzID0gW107XG4gICAgICB0aGlzLmNvbmZpZy5maWxlLnRhZ0lkID0gW107XG4gICAgICBjb25zdCBhY3Rpb24gPSB0aGlzLmFjdGlvbi5UQUc7XG4gICAgICB0aGlzLmNvbmZpZy5maWxlLnRhZ0NoYW5nZWQgPSB0aGlzLmNvbmZpZy5maWxlLnNhdmVkVGFnID8gdHJ1ZSA6IGZhbHNlO1xuICAgICAgdGhpcy5maWxlQWN0aW9uLmVtaXQoeyBmaWxlOiB0aGlzLmNvbmZpZy5maWxlLCBhY3Rpb24gfSk7XG4gICAgICB0aGlzLnJlZi5kZXRlY3RDaGFuZ2VzKCk7XG4gICAgfSwgMjAwKTtcbiAgfVxuXG4gIHB1YmxpYyBvcGVuRGVsZXRlUG9wdXAobmFtZTogc3RyaW5nKTogdm9pZCB7XG4gICAgdGhpcy5kZXRhaWxzRGF0YVNlcnZpY2Uuc2V0RG9jdW1lbnROYW1lKG5hbWUpO1xuICAgIHRoaXMuaXNGaWxlRGVsZXRlID0gdHJ1ZTtcbiAgfVxuXG4gIHB1YmxpYyBob3ZlckZpbGUoKTogdm9pZCB7XG4gICAgdGhpcy5maWxlSG92ZXIuZW1pdCh0aGlzLmNvbmZpZy5maWxlKTtcbiAgfVxuXG4gIHB1YmxpYyB1cGRhdGVIb3Zlcihtb2Q6IGJvb2xlYW4pOiB2b2lkIHtcbiAgICB0aGlzLmNvbmZpZy5maWxlLmxhc3RIb3ZlcmVkID0gbW9kO1xuICAgIHRoaXMucmVmLmRldGVjdENoYW5nZXMoKTtcbiAgfVxuXG4gIHB1YmxpYyBob3ZlckFycm93KG1vZDogYm9vbGVhbik6IHZvaWQge1xuICAgIHRoaXMuaXNBcnJvd0hvdmVyZWQgPSBtb2Q7XG4gICAgdGhpcy5yZWYuZGV0ZWN0Q2hhbmdlcygpO1xuICB9XG5cbiAgcHVibGljIGlkZW50aXR5KGluZGV4OiBudW1iZXIpOiBudW1iZXIge1xuICAgIHJldHVybiBpbmRleDtcbiAgfVxuXG4gIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuZGVzdHJveSQubmV4dCgpO1xuICAgIHRoaXMuZGVzdHJveSQuY29tcGxldGUoKTtcbiAgfVxufVxuIiwiPGRpdlxuICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWNvbnRhaW5lciBkLWdyaWQge3sgY29uZmlnLmN1c3RvbUNsYXNzTmFtZSB9fVwiXG4gIFtuZ0NsYXNzXT1cIlxuICAgIGNvbmZpZ1xuICAgICAgfCBuZ0NsYXNzUGlwZTogdDIgOiBpc0Fycm93SG92ZXJlZCA6IGFubm90YXRpb25Ib3ZlciA6IHJldmlld0ZpbGVDb25maWdcbiAgXCJcbj5cbiAgPCEtLSBGaWxlIEhlYWRlciBBY3Rpb25zIChtb3VzZWVudGVyKT1cImhvdmVyRmlsZSgpXCIgLS0+XG5cbiAgPCEtLSBSZXZpZXcgQWN0aW9ucyAtLT5cbiAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInJldmlld0ZpbGVDb25maWcuaXNSZXZpZXdcIj5cbiAgICA8ZGl2XG4gICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWhlYWRlci1yZXZpZXcgZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtYmV0d2VlblwiXG4gICAgPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInJldmlld0ZpbGVDb25maWcucmV2aWV3TW9kZSA9PT0gJ1JFVklFV19NT0RFJ1wiPlxuICAgICAgICA8ZGl2XG4gICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgIG1haW5Ub29sdGlwPVwiRG93bmxvYWRcIlxuICAgICAgICAgIHRvb2x0aXBCYWNrZ3JvdW5kPVwiIzZjNmM2Y1wiXG4gICAgICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgICAgIGNsYXNzPVwidGEtdXBsb2FkLWFjdGlvbi1kb3dubG9hZC1yZXZpZXcgZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyXCJcbiAgICAgICAgICAoY2xpY2spPVwib25BY3Rpb24oYWN0aW9uLkRPV05MT0FEKVwiXG4gICAgICAgID5cbiAgICAgICAgICA8c3ZnLWljb24gW3NyY109XCJpY29ucy5kb3dubG9hZFwiPjwvc3ZnLWljb24+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwicmV2aWV3RmlsZUNvbmZpZy5yZXZpZXdNb2RlID09PSAnUkVWSUVXX01PREUnXCI+XG4gICAgICAgIDxkaXZcbiAgICAgICAgICBuZ2JUb29sdGlwXG4gICAgICAgICAgbWFpblRvb2x0aXA9XCJcbiAgICAgICAgICAgIGNvbmZpZy5maWxlPy5pbmNvcnJlY3QgJiYgaXNJbmNvcnJlY3RNYXJrSG92ZXJcbiAgICAgICAgICAgICAgPyAnVW5tYXJrJ1xuICAgICAgICAgICAgICA6ICdNYXJrIEluY29ycmVjdCdcbiAgICAgICAgICBcIlxuICAgICAgICAgIHRvb2x0aXBCYWNrZ3JvdW5kPVwiXG4gICAgICAgICAgY29uZmlnLmZpbGU/LmluY29ycmVjdCAmJiBpc0luY29ycmVjdE1hcmtIb3ZlciA/ICcjNmM2YzZjJyA6ICcjRUY1MzUwJ1xuICAgICAgICAgIFwiXG4gICAgICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgICAgIGNsYXNzPVwiIHt7XG4gICAgICAgICAgICBjb25maWcuZmlsZT8uaW5jb3JyZWN0ICYmIGlzSW5jb3JyZWN0TWFya0hvdmVyXG4gICAgICAgICAgICAgID8gJ3RhLXVwbG9hZC1hY3Rpb24tbWFyay1jb3JyZWN0J1xuICAgICAgICAgICAgICA6ICd0YS11cGxvYWQtYWN0aW9uLW1hcmstaW5jb3JyZWN0J1xuICAgICAgICAgIH19XCJcbiAgICAgICAgICBbbmdDbGFzc109XCJ7IGluY29ycmVjdDogY29uZmlnLmZpbGU/LmluY29ycmVjdCB9XCJcbiAgICAgICAgICAoY2xpY2spPVwiXG4gICAgICAgICAgICBvbkFjdGlvbihcbiAgICAgICAgICAgICAgY29uZmlnLmZpbGU/LmluY29ycmVjdCAmJiBpc0luY29ycmVjdE1hcmtIb3ZlclxuICAgICAgICAgICAgICAgID8gJ21hcmstY29ycmVjdCdcbiAgICAgICAgICAgICAgICA6ICdtYXJrLWluY29ycmVjdCdcbiAgICAgICAgICAgIClcbiAgICAgICAgICBcIlxuICAgICAgICAgIChtb3VzZWVudGVyKT1cImlzSW5jb3JyZWN0TWFya0hvdmVyID0gdHJ1ZVwiXG4gICAgICAgICAgKG1vdXNlbGVhdmUpPVwiaXNJbmNvcnJlY3RNYXJrSG92ZXIgPSBmYWxzZVwiXG4gICAgICAgID5cbiAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgIFtzcmNdPVwiXG4gICAgICAgICAgICAgIGNvbmZpZy5maWxlPy5pbmNvcnJlY3QgJiYgaXNJbmNvcnJlY3RNYXJrSG92ZXJcbiAgICAgICAgICAgICAgICA/IGljb25zLmNvbmZpcm1cbiAgICAgICAgICAgICAgICA6IGljb25zLmNsb3NlXG4gICAgICAgICAgICBcIlxuICAgICAgICAgID48L3N2Zy1pY29uPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuXG4gICAgICA8IS0tQ09NTUVOVCBGT1IgTk9XIC0tPlxuXG4gICAgICA8IS0tIFJldmlldyBNZXNzYWdlIC0tPlxuICAgICAgPCEtLSA8bmctY29udGFpbmVyPlxuICAgICAgIDxkaXYgKm5nSWY9XCJcbiAgICAgICAgICAgICAgICByZXZpZXdNb2RlID09PSAnUkVWSUVXX01PREUnIHx8IHJldmlld01vZGUgPT09ICdGRUVEQkFDS19NT0RFJ1xuICAgICAgICAgICAgXCJcbiAgICAgICAgICAgIGNsYXNzPVwicmV2aWV3LWZlZWRiYWNrLWNvbnRhaW5lclwiXG4gICAgICAgICAgICAobW91c2VlbnRlcik9XCJhbm5vdGF0aW9uSG92ZXIgPSB0cnVlXCJcbiAgICAgICAgICAgIChtb3VzZWxlYXZlKT1cImFubm90YXRpb25Ib3ZlciA9IGZhbHNlXCJcbiAgICAgICAgPlxuICAgICAgICAgICAgPGFwcC1hcHBsaWNhbnQtcmV2aWV3LWZlZWRiYWNrXG4gICAgICAgICAgICAgICAgW2Zvcm1Db250cm9sXT1cImRvY3VtZW50UmV2aWV3SW5wdXRDb250cm9sXCJcbiAgICAgICAgICAgICAgICBbZGlzcGxheUFubm90YXRpb25CdXR0b25dPVwiXG4gICAgICAgICAgICAgICAgICAgIGZpbGU/LmluY29ycmVjdCAmJiAhZG9jdW1lbnRSZXZpZXdJbnB1dFZpc2libGVcbiAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICAgIFtkaXNwbGF5QW5ub3RhdGlvblRleHRBcmVhXT1cIlxuICAgICAgICAgICAgICAgICAgICBmaWxlPy5pbmNvcnJlY3QgJiYgZG9jdW1lbnRSZXZpZXdJbnB1dFZpc2libGVcbiAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICAgIFtpc0ZlZWRiYWNrXT1cInJldmlld01vZGUgPT09ICdGRUVEQkFDS19NT0RFJ1wiXG4gICAgICAgICAgICAgICAgW2ZlZWRiYWNrVGV4dF09XCJmZWVkYmFja1RleHRcIlxuICAgICAgICAgICAgICAgIChhbm5vdGF0aW9uQnRuQ2xpY2tFdmVudCk9XCJnZXRBbm5vdGF0aW9uUmV2aWV3RXZlbnQoJGV2ZW50KVwiXG4gICAgICAgICAgICA+PC9hcHAtYXBwbGljYW50LXJldmlldy1mZWVkYmFjaz5cbiAgICAgICAgPC9kaXY+IFxuICAgICAgPC9uZy1jb250YWluZXI+IC0tPlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8IS0tIE5vIFJldmlldyBBY3Rpb25zIC0tPlxuICA8bmctY29udGFpbmVyXG4gICAgKm5nSWY9XCJcbiAgICAgICFpc0ZpbGVEZWxldGUgJiZcbiAgICAgICghcmV2aWV3RmlsZUNvbmZpZy5pc1JldmlldyB8fFxuICAgICAgICAocmV2aWV3RmlsZUNvbmZpZy5pc1JldmlldyAmJlxuICAgICAgICAgIHJldmlld0ZpbGVDb25maWcucmV2aWV3TW9kZSA9PT0gJ0ZFRURCQUNLX01PREUnKSlcbiAgICBcIlxuICA+XG4gICAgPGRpdiBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWhlYWRlciBkLWZsZXgganVzdGlmeS1jb250ZW50LWJldHdlZW5cIj5cbiAgICAgIDwhLS0gTGVmdCBTaWRlIC0tPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImNvbmZpZy5jdXN0b21DbGFzc05hbWUgPT09ICdjb21wYW55LWRvY3VtZW50cydcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cInJpZ2h0c2lkZV9iYXJcIj48L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImNvbmZpZy5jdXN0b21DbGFzc05hbWUgIT09ICdjb21wYW55LWRvY3VtZW50cydcIj5cbiAgICAgICAgPGRpdlxuICAgICAgICAgIGNsYXNzPVwidGEtdXBsb2FkLWZpbGUtYWN0aW9uLWxlZnRzaWRlIGQtZmxleCBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyIGFsaWduLWl0ZW1zLWNlbnRlclwiXG4gICAgICAgICAgdGFiaW5kZXg9XCIwXCJcbiAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICAnbm8tYWN0aW9uLXRhZyc6ICFjb25maWcuaGFzVGFnc0Ryb3Bkb3duLFxuICAgICAgICAgICAgYWN0aXZlOiB0Mj8uaXNPcGVuKCksXG4gICAgICAgICAgfVwiXG4gICAgICAgICAgI3QyPVwibmdiUG9wb3ZlclwiXG4gICAgICAgICAgW25nYlBvcG92ZXJdPVwidGFnc1BvcG92ZXJcIlxuICAgICAgICAgIFtwb3BvdmVyQ2xhc3NdPVwiJ3RhZ3NfcG9wb3ZlcidcIlxuICAgICAgICAgIFtwbGFjZW1lbnRdPVwiJ3JpZ2h0LXRvcCByaWdodC1ib3R0b20nXCJcbiAgICAgICAgICBhdXRvY2xvc2U9XCJvdXRzaWRlXCJcbiAgICAgICAgICBbY29udGFpbmVyXT1cIidib2R5J1wiXG4gICAgICAgICAgdHJpZ2dlcnM9XCInbWFudWFsJ1wiXG4gICAgICAgID5cbiAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICBuZ2JUb29sdGlwXG4gICAgICAgICAgICBtYWluVG9vbHRpcD1cIlRhZ1wiXG4gICAgICAgICAgICB0b29sdGlwQmFja2dyb3VuZD1cIiMyRjJGMkZcIlxuICAgICAgICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgICAgICAgY2xhc3M9XCJ0YS11cGxvYWQtYWN0aW9uLXRhZyBkLWZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBhbGlnbi1pdGVtcy1jZW50ZXJcIlxuICAgICAgICAgICAgKGNsaWNrKT1cIm9uQWN0aW9uKGFjdGlvbi5UQUcpXCJcbiAgICAgICAgICA+XG4gICAgICAgICAgICA8c3ZnLWljb24gW3NyY109XCJpY29ucy50YWdcIj48L3N2Zy1pY29uPlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPCEtLSBSaWdodCBTaWRlIC0tPlxuXG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIXJldmlld0ZpbGVDb25maWcuaXNBY3Rpb25zSGlkZGVuXCI+XG4gICAgICAgIDxkaXZcbiAgICAgICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWFjdGlvbi1yaWdodHNpZGUgZC1mbGV4IGp1c3RpZnktY29udGVudC1hcm91bmQgYWxpZ24taXRlbXMtY2VudGVyXCJcbiAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICAnZmVlZGJhY2stbW9kZSc6XG4gICAgICAgICAgICAgIHJldmlld0ZpbGVDb25maWcuaXNSZXZpZXcgJiZcbiAgICAgICAgICAgICAgcmV2aWV3RmlsZUNvbmZpZy5yZXZpZXdNb2RlID09PSAnRkVFREJBQ0tfTU9ERScsXG4gICAgICAgICAgICBzbWFsbDpcbiAgICAgICAgICAgICAgY29uZmlnLnR5cGUgPT09ICdkZXRhaWxzJyB8fFxuICAgICAgICAgICAgICBjb25maWcudHlwZSA9PT0gJ3RvZG8nIHx8XG4gICAgICAgICAgICAgIHJldmlld0ZpbGVDb25maWcucmV2aWV3TW9kZSA9PSAnUkVWSUVXX01PREUnLFxuICAgICAgICAgICAgJ3ZlcnRpY2FsLW1vZGUnOiBjb25maWcuY3VzdG9tQ2xhc3NOYW1lID09ICdjb21wYW55LWRvY3VtZW50cycsXG4gICAgICAgICAgfVwiXG4gICAgICAgID5cbiAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiY29uZmlnLmN1c3RvbUNsYXNzTmFtZSA9PSAnY29tcGFueS1kb2N1bWVudHMnXCI+XG4gICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICN0Mj1cIm5nYlBvcG92ZXJcIlxuICAgICAgICAgICAgICBbbmdiUG9wb3Zlcl09XCJ0YWdzUG9wb3ZlclwiXG4gICAgICAgICAgICAgIFtwb3BvdmVyQ2xhc3NdPVwiJ3RhZ3NfcG9wb3Zlcl92ZXJ0aWNhbCdcIlxuICAgICAgICAgICAgICBbcGxhY2VtZW50XT1cIidib3R0b20tbGVmdCdcIlxuICAgICAgICAgICAgICBhdXRvY2xvc2U9XCJvdXRzaWRlXCJcbiAgICAgICAgICAgICAgW2NvbnRhaW5lcl09XCInYm9keSdcIlxuICAgICAgICAgICAgICB0cmlnZ2Vycz1cIidtYW51YWwnXCJcbiAgICAgICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgICAgICBtYWluVG9vbHRpcD1cIlRhZ1wiXG4gICAgICAgICAgICAgIHRvb2x0aXBCYWNrZ3JvdW5kPVwiIzJGMkYyRlwiXG4gICAgICAgICAgICAgIHBvc2l0aW9uPVwidG9wXCJcbiAgICAgICAgICAgICAgY2xhc3M9XCJ0YS11cGxvYWQtYWN0aW9uLXRhZyBkLWZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBhbGlnbi1pdGVtcy1jZW50ZXJcIlxuICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7IGFjdGl2ZTogdDI/LmlzT3BlbigpIH1cIlxuICAgICAgICAgICAgICAoY2xpY2spPVwib25BY3Rpb24oYWN0aW9uLlRBRylcIlxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgICA8c3ZnLWljb24gW3NyY109XCJpY29ucy50YWdcIj48L3N2Zy1pY29uPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgPGRpdlxuICAgICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgICAgbWFpblRvb2x0aXA9XCJEb3dubG9hZFwiXG4gICAgICAgICAgICB0b29sdGlwQmFja2dyb3VuZD1cIiMyRjJGMkZcIlxuICAgICAgICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgICAgICAgY2xhc3M9XCJ0YS11cGxvYWQtYWN0aW9uLWRvd25sb2FkXCJcbiAgICAgICAgICAgIChjbGljayk9XCJvbkFjdGlvbihhY3Rpb24uRE9XTkxPQUQpXCJcbiAgICAgICAgICA+XG4gICAgICAgICAgICA8c3ZnLWljb24gW3NyY109XCJpY29ucy5kb3dubG9hZFwiPjwvc3ZnLWljb24+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPG5nLWNvbnRhaW5lclxuICAgICAgICAgICAgKm5nSWY9XCJcbiAgICAgICAgICAgICAgY29uZmlnLnR5cGUgIT0gJ2RldGFpbHMnICYmXG4gICAgICAgICAgICAgIGNvbmZpZy50eXBlICE9ICd0b2RvJyAmJlxuICAgICAgICAgICAgICByZXZpZXdGaWxlQ29uZmlnLnJldmlld01vZGUgIT0gJ1JFVklFV19NT0RFJ1xuICAgICAgICAgICAgXCJcbiAgICAgICAgICA+XG4gICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiY29uZmlnLmZpbGU/LmZpbGVOYW1lXCI+XG4gICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICBuZ2JUb29sdGlwXG4gICAgICAgICAgICAgICAgbWFpblRvb2x0aXA9XCJEZWxldGVcIlxuICAgICAgICAgICAgICAgIHRvb2x0aXBCYWNrZ3JvdW5kPVwiI0VGNTM1MFwiXG4gICAgICAgICAgICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgICAgICAgICAgIGNsYXNzPVwidGEtdXBsb2FkLWFjdGlvbi1kZWxldGVcIlxuICAgICAgICAgICAgICAgIChjbGljayk9XCJcbiAgICAgICAgICAgICAgICAgIGNvbmZpZy5maWxlLmZpbGVOYW1lXG4gICAgICAgICAgICAgICAgICAgID8gb3BlbkRlbGV0ZVBvcHVwKGNvbmZpZy5maWxlLmZpbGVOYW1lKVxuICAgICAgICAgICAgICAgICAgICA6IG51bGxcbiAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgPHN2Zy1pY29uIFtzcmNdPVwiaWNvbnMudHJhc2hcIj48L3N2Zy1pY29uPlxuICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPG5nLWNvbnRhaW5lclxuICAgICAgICAqbmdJZj1cIlxuICAgICAgICAgIHJldmlld0ZpbGVDb25maWcuaXNSZXZpZXcgJiZcbiAgICAgICAgICByZXZpZXdGaWxlQ29uZmlnLnJldmlld01vZGUgPT09ICdGRUVEQkFDS19NT0RFJ1xuICAgICAgICBcIlxuICAgICAgPlxuICAgICAgICA8ZGl2XG4gICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgIG1haW5Ub29sdGlwPVwiTWFya2VkIEluY29ycmVjdFwiXG4gICAgICAgICAgdG9vbHRpcEJhY2tncm91bmQ9XCIjRUY1MzUwXCJcbiAgICAgICAgICBwb3NpdGlvbj1cInRvcFwiXG4gICAgICAgICAgY2xhc3M9XCJ0YS11cGxvYWQtYWN0aW9uLWZlZWRiYWNrLWluY29ycmVjdC1tYXJrIGQtZmxleCBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyIGFsaWduLWl0ZW1zLWNlbnRlclwiXG4gICAgICAgICAgKGNsaWNrKT1cIm9uQWN0aW9uKGFjdGlvbi5NQVJLX0lOQ09SUkVDVClcIlxuICAgICAgICA+XG4gICAgICAgICAgPHN2Zy1pY29uIFtzcmNdPVwiaWNvbnMuY2xvc2VcIj48L3N2Zy1pY29uPlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8IS0tIEZpbGUgQ29udGVudCAtLT5cbiAgPGRpdiBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWNvbnRlbnQgIHt7IGNvbmZpZy5jdXN0b21DbGFzc05hbWUgfX1cIj5cbiAgICA8IS0tIFBkZiBDb250ZW50IC0tPlxuICAgIDxuZy1jb250YWluZXJcbiAgICAgICpuZ0lmPVwiXG4gICAgICAgIChjb25maWcuZmlsZT8uZXh0ZW5zaW9uPy50b0xvd2VyQ2FzZSgpID09PSAncGRmJyB8fFxuICAgICAgICAgIGZpbGVFeHRlbnNpb24gPT09ICdwZGYnKSAmJlxuICAgICAgICBjb25maWcuZmlsZT8udXJsXG4gICAgICBcIlxuICAgID5cbiAgICAgIDxwZGYtdmlld2VyXG4gICAgICAgIFtzcmNdPVwiY29uZmlnLmZpbGUudXJsXCJcbiAgICAgICAgWyhwYWdlKV09XCJjb25maWcuYWN0aXZlUGFnZVwiXG4gICAgICAgIHN0eWxlPVwiZGlzcGxheTogYmxvY2s7IGhlaWdodDogMTAwJTsgd2lkdGg6IDEwMCVcIlxuICAgICAgICBbcm90YXRpb25dPVwiMFwiXG4gICAgICAgIFtvcmlnaW5hbC1zaXplXT1cImZhbHNlXCJcbiAgICAgICAgW3Nob3ctYWxsXT1cInRydWVcIlxuICAgICAgICBbZml0LXRvLXBhZ2VdPVwiZmFsc2VcIlxuICAgICAgICBbem9vbV09XCIxXCJcbiAgICAgICAgW3pvb20tc2NhbGVdPVwiJ3BhZ2Utd2lkdGgnXCJcbiAgICAgICAgW3N0aWNrLXRvLXBhZ2VdPVwiZmFsc2VcIlxuICAgICAgICBbcmVuZGVyLXRleHRdPVwidHJ1ZVwiXG4gICAgICAgIFtleHRlcm5hbC1saW5rLXRhcmdldF09XCInYmxhbmsnXCJcbiAgICAgICAgW2F1dG9yZXNpemVdPVwidHJ1ZVwiXG4gICAgICAgIFtzaG93LWJvcmRlcnNdPVwiZmFsc2VcIlxuICAgICAgICAoYWZ0ZXItbG9hZC1jb21wbGV0ZSk9XCJhZnRlckxvYWRDb21wbGV0ZSgkZXZlbnQpXCJcbiAgICAgICAgKHBhZ2UtcmVuZGVyZWQpPVwicGFnZVJlbmRlcmVkKCRldmVudClcIlxuICAgICAgPjwvcGRmLXZpZXdlcj5cbiAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgIDwhLS0gSW1hZ2UgQ29udGVudCAtLT5cbiAgICA8ZGl2XG4gICAgICBjbGFzcz1cImltYWdlX21haW5faG9sZGVyIGQtZmxleCBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyIGFsaWduLWl0ZW1zLWNlbnRlciB7e1xuICAgICAgICBjb25maWcuY3VzdG9tQ2xhc3NOYW1lXG4gICAgICB9fVwiXG4gICAgPlxuICAgICAgPG5nLWNvbnRhaW5lclxuICAgICAgICAqbmdJZj1cIlxuICAgICAgICAgIGNvbmZpZy5maWxlPy5leHRlbnNpb24/LnRvTG93ZXJDYXNlKCkgIT09ICdwZGYnICYmXG4gICAgICAgICAgZmlsZUV4dGVuc2lvbiAhPT0gJ3BkZicgJiZcbiAgICAgICAgICBjb25maWcuZmlsZT8udXJsXG4gICAgICAgIFwiXG4gICAgICA+XG4gICAgICAgIDxpbWdcbiAgICAgICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWltYWdlXCJcbiAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICBkZXRhaWxzX2ltYWdlOiBjb25maWcudHlwZSA9PT0gJ2RldGFpbHMnIHx8IGNvbmZpZy50eXBlID09PSAndG9kbycsXG4gICAgICAgICAgfVwiXG4gICAgICAgICAgW3NyY109XCJjb25maWcuZmlsZS51cmxcIlxuICAgICAgICAgIFthbHRdPVwiY29uZmlnLmZpbGU/LmZpbGVOYW1lXCJcbiAgICAgICAgLz5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImRvY3VtZW50TG9hZGluZ1wiPlxuICAgICAgICA8ZGl2IGNsYXNzPVwic3Bpbm5lclwiPlxuICAgICAgICAgIDxhcHAtY2Etc3Bpbm5lclxuICAgICAgICAgICAgW3NpemVdPVwiJ3NtYWxsJ1wiXG4gICAgICAgICAgICBbY29sb3JdPVwiJ2JsdWVEYXJrJ1wiXG4gICAgICAgICAgPjwvYXBwLWNhLXNwaW5uZXI+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgPC9kaXY+XG5cbiAgICA8IS0tIFRhZyBDb250ZW50IC0tPlxuICAgIDxuZy1jb250YWluZXJcbiAgICAgICpuZ0lmPVwiXG4gICAgICAgIChjb25maWcuaGFzVGFnc0Ryb3Bkb3duIHx8XG4gICAgICAgICAgY29uZmlnLmN1c3RvbUNsYXNzTmFtZSA9PT0gJ3RhYmxlLWRldGFpbHMnIHx8XG4gICAgICAgICAgY29uZmlnLmN1c3RvbUNsYXNzTmFtZSA9PT0gJ2RyaXZlci1jYXJkLXBkZicpICYmXG4gICAgICAgIGNvbmZpZy5maWxlPy50YWdzICYmXG4gICAgICAgIGNvbmZpZy5maWxlPy50YWdzICE9PSAnJyAmJlxuICAgICAgICBjb25maWcuZmlsZT8udGFncyAhPT0gJ05vIFRhZydcbiAgICAgIFwiXG4gICAgPlxuICAgICAgPGRpdlxuICAgICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLXRhZ1wiXG4gICAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgICBkZWZhdWx0OiAhY29uZmlnLmZpbGU/LnRhZ0dlbmVyYXRlZEJ5VXNlcixcbiAgICAgICAgICB0YWdSZW1vdmluZzogY29uZmlnLmZpbGU/LnRhZ3MubGVuZ3RoID09PSAwLFxuICAgICAgICB9XCJcbiAgICAgID5cbiAgICAgICAgPHNwYW4+e3tcbiAgICAgICAgICBjb25maWcuZmlsZT8udGFncyB8fCByZXZpZXdGaWxlQ29uZmlnLmNhdGVnb3J5VGFnIHx8ICcnXG4gICAgICAgIH19PC9zcGFuPlxuICAgICAgPC9kaXY+XG4gICAgPC9uZy1jb250YWluZXI+XG4gIDwvZGl2PlxuXG4gIDwhLS0gRmlsZSBEZWxldGUgVGVtcGxhdGUgLS0+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc0ZpbGVEZWxldGVcIj5cbiAgICA8ZGl2XG4gICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWRlbGV0ZS10ZW1wbGF0ZSBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyIGZsZXgtY29sdW1uIHt7XG4gICAgICAgIGNvbmZpZy5jdXN0b21DbGFzc05hbWVcbiAgICAgIH19XCJcbiAgICA+XG4gICAgICA8ZGl2IGNsYXNzPVwidGEtdXBsb2FkLWZpbGUtZGVsZXRlLXRleHRcIj5cbiAgICAgICAgQXJlIHlvdSBzdXJlIHlvdSB3YW50IHRvIGRlbGV0ZSBmaWxlP1xuICAgICAgPC9kaXY+XG4gICAgICA8ZGl2XG4gICAgICAgIGNsYXNzPVwidGEtdXBsb2FkLWZpbGUtYnRuIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIganVzdGlmeS1jb250ZW50LWNlbnRlciB0YS11cGxvYWQtZmlsZS1idG4tZGVsZXRlXCJcbiAgICAgICAgKGNsaWNrKT1cIm9uQWN0aW9uKGFjdGlvbi5ERUxFVEUpXCJcbiAgICAgID5cbiAgICAgICAgREVMRVRFXG4gICAgICA8L2Rpdj5cbiAgICAgIDxkaXZcbiAgICAgICAgY2xhc3M9XCJ0YS11cGxvYWQtZmlsZS1idG4gZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyIHRhLXVwbG9hZC1maWxlLWJ0bi1jYW5jZWxcIlxuICAgICAgICAoY2xpY2spPVwib25BY3Rpb24oYWN0aW9uLkNBTkNFTClcIlxuICAgICAgPlxuICAgICAgICBDQU5DRUxcbiAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cblxuICA8IS0tIEZpbGUgRm9vdGVyIEluZm9ybWF0aW9uIC0tPlxuICA8bmctY29udGFpbmVyICpuZ0lmPVwiIXJldmlld0ZpbGVDb25maWcuaXNGb290ZXJIaWRkZW5cIj5cbiAgICA8ZGl2XG4gICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWZvb3RlclwiXG4gICAgICBbbmdDbGFzc109XCJ7ICdlZGl0LW1vZGUnOiBlZGl0RmlsZSB9XCJcbiAgICAgIChjbGljayk9XCJvbkVkaXRGaWxlKClcIlxuICAgID5cbiAgICAgIDwhLS0gTm8gZWRpdCBtb2RlIC0tPlxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIiFpc0ZpbGVEZWxldGVcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImZvb3Rlcl9pbmZvIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXJcIj5cbiAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWV4dCB0YS11cGxvYWQtZmlsZS1leHQte3tcbiAgICAgICAgICAgICAgY29uZmlnLmZpbGU/LmV4dGVuc2lvbiA/IChjb25maWcuZmlsZT8uZXh0ZW5zaW9uIHwgbG93ZXJjYXNlKSA6ICcnXG4gICAgICAgICAgICB9fVwiXG4gICAgICAgICAgICBbbmdDbGFzc109XCJ7ICduby10YWcnOiAhY29uZmlnLmZpbGU/LnRhZ3MgfVwiXG4gICAgICAgICAgPlxuICAgICAgICAgICAgPGRpdj5cbiAgICAgICAgICAgICAge3sgY29uZmlnLmZpbGU/LmV4dGVuc2lvbiB8IHVwcGVyY2FzZSB9fVxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cImRvY3VtZW50X2luZm9faG9sZCBkLWZsZXhcIj5cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJudW1iZXJPZkZpbGVQYWdlc1wiPlxuICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwicGRmX3BhZ2Vfc2l6ZVwiPlxuICAgICAgICAgICAgICAgIHt7IG51bWJlck9mRmlsZVBhZ2VzIH19XG4gICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgY2xhc3M9XCJmaWxlX3NpemVcIlxuICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICAgICAgaGFzX3BhZ2VzOiBudW1iZXJPZkZpbGVQYWdlcyxcbiAgICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgIHt7IGNvbmZpZy5maWxlPy5zaXplIHx8IDAgfCBieXRlQ29udmVydCB9fVxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIWVkaXRGaWxlOyBlbHNlIGVkaXRNb2RlXCI+XG4gICAgICAgIDxwXG4gICAgICAgICAgY2xhc3M9XCJ0YS11cGxvYWQtZmlsZS1uYW1lXCJcbiAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICBkZXRhaWxzX3RpdGxlOiBjb25maWcudHlwZSA9PT0gJ2RldGFpbHMnLFxuICAgICAgICAgICAgdG9kb190aXRsZTogY29uZmlnLnR5cGUgPT09ICd0b2RvJyxcbiAgICAgICAgICB9XCJcbiAgICAgICAgPlxuICAgICAgICAgIHt7IGZpbGVOYW1lIH19XG4gICAgICAgIDwvcD5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuXG4gICAgICA8bmctdGVtcGxhdGUgI2VkaXRNb2RlPlxuICAgICAgICA8YXBwLWNhLWlucHV0XG4gICAgICAgICAgW2Zvcm1Db250cm9sXT1cImZpbGVOZXdOYW1lXCJcbiAgICAgICAgICBbaW5wdXRDb25maWddPVwie1xuICAgICAgICAgICAgbmFtZTogJ0ZpbGUgTmFtZScsXG4gICAgICAgICAgICB0eXBlOiAndGV4dCcsXG4gICAgICAgICAgICBwbGFjZWhvbGRlcjogJ1R5cGUgRmlsZSBOYW1lJyxcbiAgICAgICAgICAgIGJsYWNrSW5wdXQ6IHRydWUsXG4gICAgICAgICAgICBpc0Rpc2FibGVkOiBmYWxzZSxcbiAgICAgICAgICB9XCJcbiAgICAgICAgICAoYmx1cklucHV0KT1cIm9uQmx1cklucHV0KCRldmVudClcIlxuICAgICAgICA+PC9hcHAtY2EtaW5wdXQ+XG4gICAgICA8L25nLXRlbXBsYXRlPlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cbjwvZGl2PlxuXG48bmctdGVtcGxhdGUgI3RhZ3NQb3BvdmVyIGxldC1kYXRhPVwiZGF0YVwiPlxuICA8ZGl2IGNsYXNzPVwidGFnc19tYWluX2hvbGRlclwiPlxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJjb25maWcuZmlsZT8udGFncz8ubGVuZ3RoXCI+XG4gICAgICA8ZGl2IGNsYXNzPVwicmVtb3ZlX3RhZ19ob2xkZXJcIiAoY2xpY2spPVwicmVtb3ZlVGFnKClcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cInJlbW92ZV90YWdcIj5SZW1vdmUgVGFnPC9kaXY+XG4gICAgICA8L2Rpdj5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiY29uZmlnLmZpbGU/LnRhZ3M/Lmxlbmd0aFwiPlxuICAgICAgPGRpdiBjbGFzcz1cInJlbW92ZV90YWdfYm9yZGVyX2hvbGRlclwiPlxuICAgICAgICA8ZGl2IGNsYXNzPVwicmVtb3ZlX3RhZ19ib3JkZXJcIj48L2Rpdj5cbiAgICAgIDwvZGl2PlxuICAgIDwvbmctY29udGFpbmVyPlxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJjb25maWcudGFnc09wdGlvbnMgJiYgY29uZmlnLnRhZ3NPcHRpb25zLmxlbmd0aFwiPlxuICAgICAgPG5nLWNvbnRhaW5lclxuICAgICAgICAqbmdGb3I9XCJsZXQgdGFnIG9mIGNvbmZpZy50YWdzT3B0aW9uczsgdHJhY2tCeTogaWRlbnRpdHk7IGluZGV4IGFzIGlcIlxuICAgICAgPlxuICAgICAgICA8ZGl2XG4gICAgICAgICAgY2xhc3M9XCJ0YWdzX2lubmVyX2hvbGRlciBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyXCJcbiAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICBmaXJzdFJvdzogaSA9PT0gMCxcbiAgICAgICAgICAgIGxhc3RSb3c6IGkgPT09IGNvbmZpZy50YWdzT3B0aW9ucy5sZW5ndGggLSAxLFxuICAgICAgICAgIH1cIlxuICAgICAgICAgIChjbGljayk9XCJzZWxlY3RUYWcodGFnPy50YWdOYW1lKVwiXG4gICAgICAgID5cbiAgICAgICAgICA8ZGl2IGNsYXNzPVwidGFnX29wdGlvbnNfaG9sZGVyIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXJcIj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0YWdfbmFtZVwiIFtuZ0NsYXNzXT1cInsgY2hlY2tlZDogdGFnLmNoZWNrZWQgfVwiPlxuICAgICAgICAgICAgICB7eyB0YWcudGFnTmFtZSB9fVxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY2hlY2tlZF9pY29uXCIgW25nQ2xhc3NdPVwieyBzaG93bjogdGFnLmNoZWNrZWQgfVwiPlxuICAgICAgICAgICAgICA8c3ZnLWljb24gW3NyY109XCJpY29ucy5jb25maXJtXCI+PC9zdmctaWNvbj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cbiAgICAgIDwvbmctY29udGFpbmVyPlxuICAgIDwvbmctY29udGFpbmVyPlxuICA8L2Rpdj5cbjwvbmctdGVtcGxhdGU+XG4iXX0=
|