ca-components 1.3.2 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/ca-input/ca-input.component.mjs +3 -3
- package/esm2022/lib/components/ca-input/config/ca-input.config.mjs +1 -1
- package/esm2022/lib/components/ca-input/pipes/input-error.pipe.mjs +7 -1
- package/esm2022/lib/components/ca-input/pipes/label-class.pipe.mjs +5 -3
- package/esm2022/lib/components/ca-input-address-dropdown/ca-input-address-dropdown.component.mjs +2 -2
- package/esm2022/lib/components/ca-input-dropdown/ca-input-dropdown.component.mjs +14 -5
- package/esm2022/lib/components/ca-logo-change/ca-logo-change.component.mjs +1 -1
- package/esm2022/lib/components/ca-todo/components/ca-todo-card.component.mjs +1 -1
- package/esm2022/lib/components/ca-todo/models/todo-config.model.mjs +1 -1
- package/esm2022/lib/components/ca-upload-files/ca-upload-files.component.mjs +66 -53
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.mjs +68 -51
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-dropzone-action.enum.mjs +8 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-dropzone-type.enum.mjs +8 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-upload-page.enum.mjs +28 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/index.mjs +5 -4
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/template-type.enum.mjs +9 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/file.helper.mjs +8 -9
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/drop-background-event.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/dropzone-config.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/dropzone-option-config.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/dropzone-settings.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/file-config.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/file-event.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/index.mjs +7 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-icons.constants.mjs +19 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-limit.constants.mjs +41 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/index.mjs +5 -5
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/lottie-animation.constants.mjs +9 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/mime-type.constants.mjs +29 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.mjs +167 -132
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/enums/document-action.enum.mjs +10 -10
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/enums/index.mjs +1 -1
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/interfaces/delete-action.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/interfaces/file-action-event.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/interfaces/index.mjs +3 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/index.mjs +2 -1
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/mime-type-to-extension.pipe.mjs +19 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/pipes/ng-class.pipe.mjs +4 -3
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/utils/config/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/utils/config/upload-file-input.config.mjs +10 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/utils/svg-routes/upload-file.routes.mjs +2 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.mjs +15 -15
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-action.enum.mjs +6 -6
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/file-carousel-size.enum.mjs +10 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/index.mjs +2 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/interfaces/files-carousel.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/interfaces/index.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/files-by-size.constant.mjs +9 -9
- package/esm2022/lib/components/ca-upload-files/enums/file-action.enum.mjs +7 -0
- package/esm2022/lib/components/ca-upload-files/enums/file-size.enum.mjs +9 -9
- package/esm2022/lib/components/ca-upload-files/enums/file-type.enum.mjs +8 -0
- package/esm2022/lib/components/ca-upload-files/enums/index.mjs +4 -2
- package/esm2022/lib/components/ca-upload-files/enums/review-state.enum.mjs +6 -0
- package/esm2022/lib/components/ca-upload-files/interfaces/document-review-input-event.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/interfaces/file-option-config.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/interfaces/index.mjs +6 -0
- package/esm2022/lib/components/ca-upload-files/interfaces/review-file-config.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/interfaces/slider.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/interfaces/upload-files-config.interface.mjs +2 -0
- package/esm2022/lib/components/ca-upload-files/pipes/index.mjs +1 -1
- package/esm2022/lib/components/ca-upload-files/pipes/map-file.pipe.mjs +3 -3
- package/esm2022/lib/components/ca-upload-files/pipes/upload-class.pipe.mjs +1 -1
- package/esm2022/lib/components/ca-upload-files/services/upload-file.service.mjs +1 -1
- package/esm2022/public-api.mjs +4 -2
- package/fesm2022/ca-components.mjs +642 -489
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-input/config/ca-input.config.d.ts +1 -0
- package/lib/components/ca-input-dropdown/ca-input-dropdown.component.d.ts +3 -1
- package/lib/components/ca-logo-change/ca-logo-change.component.d.ts +2 -2
- package/lib/components/ca-todo/components/ca-todo-card.component.d.ts +5 -5
- package/lib/components/ca-todo/models/todo-config.model.d.ts +1 -1
- package/lib/components/ca-upload-files/ca-upload-files.component.d.ts +12 -12
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.d.ts +10 -11
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/{file-action.enum.d.ts → file-dropzone-action.enum.d.ts} +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/{file-type.enum.d.ts → file-dropzone-type.enum.d.ts} +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/{pages.enum.d.ts → file-upload-page.enum.d.ts} +4 -2
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/index.d.ts +4 -3
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/template-type.enum.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/file.helper.d.ts +4 -4
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/{models/drop-background-event.model.d.ts → interfaces/drop-background-event.interface.d.ts} +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/dropzone-config.interface.d.ts +10 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/{models/dropzone-option-config.model.d.ts → interfaces/dropzone-option-config.interface.d.ts} +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/{models/dropzone-config.model.d.ts → interfaces/dropzone-settings.interface.d.ts} +3 -3
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/{models/file-config.model.d.ts → interfaces/file-config.interface.d.ts} +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/file-event.interface.d.ts +8 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/interfaces/index.d.ts +6 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-icons.constants.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/{file-limit.constant.d.ts → file-limit.constants.d.ts} +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/index.d.ts +4 -4
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/{lottie-constant.d.ts → lottie-animation.constants.d.ts} +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/mime-type.constants.d.ts +5 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/ca-upload-file.component.d.ts +33 -27
- package/lib/components/ca-upload-files/components/ca-upload-file/enums/document-action.enum.d.ts +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-file/{models/delete-action.model.d.ts → interfaces/delete-action.interface.d.ts} +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-file/interfaces/file-action-event.interface.d.ts +5 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/interfaces/index.d.ts +2 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/pipes/mime-type-to-extension.pipe.d.ts +7 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/config/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-file/utils/config/upload-file-input.config.d.ts +4 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/ca-upload-files-carousel.component.d.ts +6 -6
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-action.enum.d.ts +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/{carousel-size.enum.d.ts → file-carousel-size.enum.d.ts} +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/index.d.ts +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/{models/carousel-config.model.d.ts → interfaces/files-carousel.interface.d.ts} +1 -1
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/interfaces/index.d.ts +1 -0
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/utils/constants/files-by-size.constant.d.ts +1 -1
- package/lib/components/ca-upload-files/enums/file-action.enum.d.ts +5 -0
- package/lib/components/ca-upload-files/enums/file-size.enum.d.ts +1 -1
- package/lib/components/ca-upload-files/enums/{file-types.enum.d.ts → file-type.enum.d.ts} +1 -1
- package/lib/components/ca-upload-files/enums/index.d.ts +3 -1
- package/lib/components/ca-upload-files/enums/review-state.enum.d.ts +4 -0
- package/lib/components/ca-upload-files/interfaces/document-review-input-event.interface.d.ts +5 -0
- package/lib/components/ca-upload-files/{models/file-option-config.model.d.ts → interfaces/file-option-config.interface.d.ts} +3 -3
- package/lib/components/ca-upload-files/interfaces/index.d.ts +5 -0
- package/lib/components/ca-upload-files/{models/review-file-config.model.d.ts → interfaces/review-file-config.interface.d.ts} +3 -2
- package/lib/components/ca-upload-files/{models/slider.model.d.ts → interfaces/slider.interface.d.ts} +1 -1
- package/lib/components/ca-upload-files/interfaces/upload-files-config.interface.d.ts +26 -0
- package/lib/components/ca-upload-files/pipes/map-file.pipe.d.ts +3 -3
- package/lib/components/ca-upload-files/services/upload-file.service.d.ts +3 -3
- package/package.json +1 -1
- package/public-api.d.ts +3 -1
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/config/dropzone-config.type.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/config/index.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-action.enum.mjs +0 -8
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/file-type.enum.mjs +0 -8
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/enums/pages.enum.mjs +0 -26
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/drop-background-event.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-config.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/dropzone-option-config.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-config.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-event.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/index.mjs +0 -7
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/upload-file-templates.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-icons.constant.mjs +0 -19
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-limit.constant.mjs +0 -28
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/lottie-constant.mjs +0 -9
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/supported-extension.constant.mjs +0 -11
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/index.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/models/delete-action.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/models/file-action.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-file/models/index.mjs +0 -3
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/enums/carousel-size.enum.mjs +0 -10
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/carousel-config.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/index.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/enums/file-types.enum.mjs +0 -8
- package/esm2022/lib/components/ca-upload-files/models/document-review.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/models/file-option-config.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/models/index.mjs +0 -6
- package/esm2022/lib/components/ca-upload-files/models/review-file-config.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/models/slider.model.mjs +0 -2
- package/esm2022/lib/components/ca-upload-files/models/upload-files-config.model.mjs +0 -2
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/config/dropzone-config.type.d.ts +0 -8
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/config/index.d.ts +0 -1
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-event.model.d.ts +0 -8
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/index.d.ts +0 -6
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/upload-file-templates.model.d.ts +0 -1
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/file-icons.constant.d.ts +0 -7
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/constants/supported-extension.constant.d.ts +0 -4
- package/lib/components/ca-upload-files/components/ca-upload-dropzone/utils/index.d.ts +0 -1
- package/lib/components/ca-upload-files/components/ca-upload-file/models/file-action.model.d.ts +0 -5
- package/lib/components/ca-upload-files/components/ca-upload-file/models/index.d.ts +0 -2
- package/lib/components/ca-upload-files/components/ca-upload-files-carousel/models/index.d.ts +0 -1
- package/lib/components/ca-upload-files/models/document-review.model.d.ts +0 -5
- package/lib/components/ca-upload-files/models/index.d.ts +0 -5
- package/lib/components/ca-upload-files/models/upload-files-config.model.d.ts +0 -27
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Component, EventEmitter, Input, Output, ViewChild, ViewEncapsulation, } from '@angular/core';
|
|
2
2
|
import { FormControl, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
3
|
-
import {
|
|
3
|
+
import { Subject, takeUntil } from 'rxjs';
|
|
4
4
|
import { PdfViewerModule } from 'ng2-pdf-viewer';
|
|
5
5
|
import { CommonModule } from '@angular/common';
|
|
6
6
|
import { AngularSvgIconModule } from 'angular-svg-icon';
|
|
@@ -9,11 +9,17 @@ import { NgxMaskModule } from 'ngx-mask';
|
|
|
9
9
|
//Components
|
|
10
10
|
import { CaInputComponent } from '../../../ca-input/ca-input.component';
|
|
11
11
|
import { CaSpinnerComponent } from '../../../ca-spinner/ca-spinner.component';
|
|
12
|
+
//Constants
|
|
13
|
+
import { FileMimeTypeConstants } from '../ca-upload-dropzone/utils/constants';
|
|
12
14
|
//Enums
|
|
13
|
-
import {
|
|
15
|
+
import { eDocumentAction } from './enums';
|
|
16
|
+
import { eDropZoneFileType } from '../ca-upload-dropzone/enums';
|
|
17
|
+
import { eReviewState } from '../../enums';
|
|
14
18
|
//Pipes
|
|
15
|
-
import { ByteConvertPipe, NgClassPipe, } from './pipes';
|
|
19
|
+
import { ByteConvertPipe, NgClassPipe, MimeTypeToExtensionPipe, } from './pipes';
|
|
16
20
|
//Routes
|
|
21
|
+
import { UplodFileInputConfig } from './utils/config';
|
|
22
|
+
//Config
|
|
17
23
|
import { UploadFileRoutes } from './utils/svg-routes';
|
|
18
24
|
import * as i0 from "@angular/core";
|
|
19
25
|
import * as i1 from "@angular/common/http";
|
|
@@ -25,13 +31,14 @@ import * as i6 from "@angular/forms";
|
|
|
25
31
|
import * as i7 from "angular-svg-icon";
|
|
26
32
|
import * as i8 from "ng2-pdf-viewer";
|
|
27
33
|
export class CaUploadFileComponent {
|
|
28
|
-
constructor(http, ref,
|
|
34
|
+
constructor(http, ref, renderer,
|
|
29
35
|
//Pipe
|
|
30
36
|
urlExt, fileNamePipe,
|
|
31
37
|
//Service
|
|
32
38
|
detailsDataService) {
|
|
33
39
|
this.http = http;
|
|
34
40
|
this.ref = ref;
|
|
41
|
+
this.renderer = renderer;
|
|
35
42
|
this.urlExt = urlExt;
|
|
36
43
|
this.fileNamePipe = fileNamePipe;
|
|
37
44
|
this.detailsDataService = detailsDataService;
|
|
@@ -49,38 +56,34 @@ export class CaUploadFileComponent {
|
|
|
49
56
|
this.annotationHover = false;
|
|
50
57
|
this.documentLoading = true;
|
|
51
58
|
this.isArrowHovered = false;
|
|
52
|
-
this.fileExtension = '';
|
|
53
59
|
this.numberOfFilePages = '';
|
|
54
60
|
this.fileName = '';
|
|
55
61
|
this.icons = UploadFileRoutes.icons;
|
|
56
|
-
this.
|
|
62
|
+
this.isImageFile = false;
|
|
63
|
+
this.isVideoFile = false;
|
|
64
|
+
this.reviewState = eReviewState;
|
|
65
|
+
this.fileInputConfig = UplodFileInputConfig.UPLOAD_INPUT_CONFIG;
|
|
66
|
+
this.documentAction = eDocumentAction;
|
|
67
|
+
this.videoThumbnail = null;
|
|
57
68
|
this.destroy$ = new Subject();
|
|
58
69
|
}
|
|
59
70
|
ngOnInit() {
|
|
60
71
|
this.getfileName();
|
|
61
|
-
this.initializeFileExtension();
|
|
62
72
|
this.onSpinner();
|
|
63
73
|
this.reviewInputControlChange();
|
|
64
74
|
this.setSavedTag();
|
|
75
|
+
//TODO Bogdan
|
|
76
|
+
const mimeType = this.config.file?.realFile?.type || '';
|
|
77
|
+
this.isImageFile =
|
|
78
|
+
FileMimeTypeConstants.SUPORTED_MIME_TYPE_MAP[eDropZoneFileType.IMAGE].includes(mimeType);
|
|
79
|
+
this.isVideoFile =
|
|
80
|
+
FileMimeTypeConstants.SUPORTED_MIME_TYPE_MAP[eDropZoneFileType.MEDIA].includes(mimeType);
|
|
81
|
+
if (this.isVideoFile)
|
|
82
|
+
this.generateVideoThumbnail(this.config.file.url);
|
|
65
83
|
}
|
|
66
84
|
ngAfterViewInit() {
|
|
67
|
-
this.setTags();
|
|
68
85
|
this.setCategoryTag();
|
|
69
86
|
}
|
|
70
|
-
initializeFileExtension() {
|
|
71
|
-
if (this.config.file && this.config.file.fileName) {
|
|
72
|
-
this.fileExtension = this.urlExt.transform(this.config.file.fileName);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
onSpinner() {
|
|
76
|
-
const isNotPdf = (this.config.file.extension ||
|
|
77
|
-
this.urlExt.transform(this.config.file.url)) !== 'pdf';
|
|
78
|
-
this.documentLoading = !isNotPdf;
|
|
79
|
-
}
|
|
80
|
-
getfileName() {
|
|
81
|
-
if (this.config.file.fileName)
|
|
82
|
-
this.fileName = this.fileNamePipe.transform(this.config.file.fileName);
|
|
83
|
-
}
|
|
84
87
|
onBlurInput(event) {
|
|
85
88
|
if (event) {
|
|
86
89
|
this.editFile = false;
|
|
@@ -93,10 +96,7 @@ export class CaUploadFileComponent {
|
|
|
93
96
|
afterLoadComplete(pdf) {
|
|
94
97
|
this.documentLoading = false;
|
|
95
98
|
const numberPages = pdf._pdfInfo.numPages;
|
|
96
|
-
this.numberOfFilePages = `${numberPages}
|
|
97
|
-
if (!this.config.file.extension && this.config.file.fileName) {
|
|
98
|
-
this.fileExtension = this.urlExt.transform(this.config.file.fileName);
|
|
99
|
-
}
|
|
99
|
+
this.numberOfFilePages = `${numberPages} p.`;
|
|
100
100
|
}
|
|
101
101
|
pageRendered(event // leave any for now
|
|
102
102
|
) {
|
|
@@ -110,80 +110,32 @@ export class CaUploadFileComponent {
|
|
|
110
110
|
onAction(action) {
|
|
111
111
|
this.detailsDataService.setDocumentName(this.fileName);
|
|
112
112
|
switch (action) {
|
|
113
|
-
case
|
|
113
|
+
case eDocumentAction.TAG:
|
|
114
114
|
this.handleTagAction();
|
|
115
115
|
break;
|
|
116
|
-
case
|
|
116
|
+
case eDocumentAction.DOWNLOAD:
|
|
117
117
|
this.handleDownloadAction();
|
|
118
118
|
break;
|
|
119
|
-
case
|
|
119
|
+
case eDocumentAction.DELETE:
|
|
120
120
|
this.handleDeleteAction();
|
|
121
121
|
break;
|
|
122
|
-
case
|
|
122
|
+
case eDocumentAction.CANCEL:
|
|
123
123
|
this.handleCancelAction();
|
|
124
124
|
break;
|
|
125
|
-
case
|
|
125
|
+
case eDocumentAction.MARK_INCORRECT:
|
|
126
126
|
this.handleMarkIncorrectAction();
|
|
127
127
|
break;
|
|
128
|
-
case
|
|
128
|
+
case eDocumentAction.MARK_CORRECT:
|
|
129
129
|
this.handleMarkCorrectAction();
|
|
130
130
|
break;
|
|
131
131
|
default:
|
|
132
132
|
break;
|
|
133
133
|
}
|
|
134
134
|
}
|
|
135
|
-
handleTagAction() {
|
|
136
|
-
if (this.config.file.tags) {
|
|
137
|
-
this.selectTag(this.config.file.tags);
|
|
138
|
-
}
|
|
139
|
-
else {
|
|
140
|
-
this.selectTag('No Tag');
|
|
141
|
-
}
|
|
142
|
-
this.t2.open();
|
|
143
|
-
}
|
|
144
|
-
handleDownloadAction() {
|
|
145
|
-
this.downloadFile(this.config.file.url, this.fileName);
|
|
146
|
-
}
|
|
147
|
-
handleDeleteAction() {
|
|
148
|
-
this.isFileDelete = false;
|
|
149
|
-
this.fileAction.emit({
|
|
150
|
-
file: this.config.file,
|
|
151
|
-
action: DocumentAction.DELETE,
|
|
152
|
-
});
|
|
153
|
-
}
|
|
154
|
-
handleCancelAction() {
|
|
155
|
-
this.isFileDelete = false;
|
|
156
|
-
}
|
|
157
|
-
handleMarkIncorrectAction() {
|
|
158
|
-
this.config.file.incorrect = true;
|
|
159
|
-
this.fileAction.emit({
|
|
160
|
-
file: this.config.file,
|
|
161
|
-
action: DocumentAction.MARK_INCORRECT,
|
|
162
|
-
});
|
|
163
|
-
}
|
|
164
|
-
handleMarkCorrectAction() {
|
|
165
|
-
this.config.file.incorrect = false;
|
|
166
|
-
this.fileAction.emit({
|
|
167
|
-
file: this.config.file,
|
|
168
|
-
action: DocumentAction.MARK_CORRECT,
|
|
169
|
-
});
|
|
170
|
-
this.documentReviewInputVisible = false;
|
|
171
|
-
}
|
|
172
|
-
downloadFile(url, filename) {
|
|
173
|
-
this.http.get(url, { responseType: 'blob' }).subscribe((blob) => {
|
|
174
|
-
const a = document.createElement('a');
|
|
175
|
-
const objectUrl = URL.createObjectURL(blob);
|
|
176
|
-
a.href = objectUrl;
|
|
177
|
-
a.download = filename;
|
|
178
|
-
a.click();
|
|
179
|
-
}, (error) => {
|
|
180
|
-
console.error('Error downloading file:', error);
|
|
181
|
-
});
|
|
182
|
-
}
|
|
183
135
|
onEditFile() {
|
|
184
136
|
if (this.config.customClassName !== 'driver-details-pdf' &&
|
|
185
137
|
this.config.customClassName !== 'landscape-details-view' &&
|
|
186
|
-
this.reviewFileConfig.reviewMode !==
|
|
138
|
+
this.reviewFileConfig.reviewMode !== this.reviewState.REVIEW_MODE &&
|
|
187
139
|
!this.inputRef?.isFocusInput) {
|
|
188
140
|
this.editFile = true;
|
|
189
141
|
this.fileNewName.patchValue(this.fileName);
|
|
@@ -201,44 +153,9 @@ export class CaUploadFileComponent {
|
|
|
201
153
|
}, 100);
|
|
202
154
|
}
|
|
203
155
|
}
|
|
204
|
-
reviewInputControlChange() {
|
|
205
|
-
if (this.reviewFileConfig.isReview) {
|
|
206
|
-
this.documentReviewInputControl.valueChanges
|
|
207
|
-
.pipe(debounceTime(1500), distinctUntilChanged())
|
|
208
|
-
.subscribe((value) => {
|
|
209
|
-
this.documentReviewInputEvent.emit({
|
|
210
|
-
file: this.config.file,
|
|
211
|
-
message: value,
|
|
212
|
-
});
|
|
213
|
-
});
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
156
|
getAnnotationReviewEvent(event) {
|
|
217
157
|
this.documentReviewInputVisible = event.type === 'open';
|
|
218
158
|
}
|
|
219
|
-
setTags() {
|
|
220
|
-
if (this.config.hasTagsDropdown && this.config.tags?.length) {
|
|
221
|
-
this.config.tags.forEach((item) => {
|
|
222
|
-
item = {
|
|
223
|
-
...item,
|
|
224
|
-
checked: false,
|
|
225
|
-
};
|
|
226
|
-
this.config.tagsOptions?.push(item);
|
|
227
|
-
});
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
setCategoryTag() {
|
|
231
|
-
if (this.config.file.tags?.length) {
|
|
232
|
-
this.reviewFileConfig.categoryTag = this.config.file.tags[0];
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
setSavedTag() {
|
|
236
|
-
if (this.config.file.tags &&
|
|
237
|
-
this.config.file.tags.length &&
|
|
238
|
-
this.config.hasTagsDropdown) {
|
|
239
|
-
this.config.file.savedTag = this.config.file.tags[0];
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
159
|
selectTag(tag) {
|
|
243
160
|
this.config.tagsOptions?.forEach((item) => {
|
|
244
161
|
if (item.tagName == tag) {
|
|
@@ -251,12 +168,12 @@ export class CaUploadFileComponent {
|
|
|
251
168
|
this.config.file.savedTag != item.tagName
|
|
252
169
|
? true
|
|
253
170
|
: false;
|
|
254
|
-
const
|
|
171
|
+
const fileActionPayload = {
|
|
172
|
+
file: this.config.file,
|
|
173
|
+
action: this.documentAction.TAG,
|
|
174
|
+
};
|
|
255
175
|
if (!this.t2.isOpen()) {
|
|
256
|
-
this.fileAction.emit(
|
|
257
|
-
file: this.config.file,
|
|
258
|
-
action,
|
|
259
|
-
});
|
|
176
|
+
this.fileAction.emit(fileActionPayload);
|
|
260
177
|
}
|
|
261
178
|
this.ref.detectChanges();
|
|
262
179
|
}, 200);
|
|
@@ -271,11 +188,14 @@ export class CaUploadFileComponent {
|
|
|
271
188
|
setTimeout(() => {
|
|
272
189
|
this.config.file.tags = [];
|
|
273
190
|
this.config.file.tagId = [];
|
|
274
|
-
const action = this.action.TAG;
|
|
275
191
|
this.config.file.tagChanged = this.config.file.savedTag
|
|
276
192
|
? true
|
|
277
193
|
: false;
|
|
278
|
-
|
|
194
|
+
const fileActionPayload = {
|
|
195
|
+
file: this.config.file,
|
|
196
|
+
action: this.documentAction.TAG,
|
|
197
|
+
};
|
|
198
|
+
this.fileAction.emit(fileActionPayload);
|
|
279
199
|
this.ref.detectChanges();
|
|
280
200
|
}, 200);
|
|
281
201
|
}
|
|
@@ -294,19 +214,133 @@ export class CaUploadFileComponent {
|
|
|
294
214
|
this.isArrowHovered = mod;
|
|
295
215
|
this.ref.detectChanges();
|
|
296
216
|
}
|
|
297
|
-
|
|
298
|
-
|
|
217
|
+
onMouseEnter() {
|
|
218
|
+
this.isIncorrectMarkHover = true;
|
|
219
|
+
}
|
|
220
|
+
onMouseLeave() {
|
|
221
|
+
this.isIncorrectMarkHover = false;
|
|
222
|
+
}
|
|
223
|
+
//TODO: Bogdan - this functionality for creating video thumbnails should be done on the backend; for the frontend, I am waiting for the design show i could show a placeholder.
|
|
224
|
+
generateVideoThumbnail(videoUrl) {
|
|
225
|
+
this.documentLoading = true;
|
|
226
|
+
const video = this.renderer.createElement('video');
|
|
227
|
+
this.renderer.setAttribute(video, 'src', videoUrl);
|
|
228
|
+
this.renderer.setAttribute(video, 'crossOrigin', 'anonymous');
|
|
229
|
+
this.renderer.setAttribute(video, 'muted', 'true');
|
|
230
|
+
this.renderer.setAttribute(video, 'playsInline', 'true');
|
|
231
|
+
this.renderer.listen(video, 'loadeddata', () => {
|
|
232
|
+
video.currentTime = 0.5;
|
|
233
|
+
});
|
|
234
|
+
this.renderer.listen(video, 'seeked', () => {
|
|
235
|
+
const canvas = this.renderer.createElement('canvas');
|
|
236
|
+
const ctx = canvas.getContext('2d');
|
|
237
|
+
if (!ctx)
|
|
238
|
+
return;
|
|
239
|
+
canvas.width = video.videoWidth;
|
|
240
|
+
canvas.height = video.videoHeight;
|
|
241
|
+
ctx.drawImage(video, 0, 0, canvas.width, canvas.height);
|
|
242
|
+
canvas.toBlob((blob) => {
|
|
243
|
+
if (blob) {
|
|
244
|
+
this.videoThumbnail = URL.createObjectURL(blob);
|
|
245
|
+
this.documentLoading = false;
|
|
246
|
+
this.ref.detectChanges();
|
|
247
|
+
}
|
|
248
|
+
}, 'image/png');
|
|
249
|
+
});
|
|
250
|
+
video.load();
|
|
251
|
+
}
|
|
252
|
+
getfileName() {
|
|
253
|
+
if (this.config.file.fileName)
|
|
254
|
+
this.fileName = this.fileNamePipe.transform(this.config.file.fileName);
|
|
255
|
+
}
|
|
256
|
+
onSpinner() {
|
|
257
|
+
const isNotPdf = (this.config.file.extension ||
|
|
258
|
+
this.urlExt.transform(this.config.file.url)) !== 'pdf';
|
|
259
|
+
this.documentLoading = !isNotPdf;
|
|
260
|
+
}
|
|
261
|
+
reviewInputControlChange() {
|
|
262
|
+
if (this.reviewFileConfig.isReview) {
|
|
263
|
+
this.documentReviewInputControl.valueChanges
|
|
264
|
+
.pipe(takeUntil(this.destroy$))
|
|
265
|
+
.subscribe((value) => {
|
|
266
|
+
this.documentReviewInputEvent.emit({
|
|
267
|
+
file: this.config.file,
|
|
268
|
+
message: value,
|
|
269
|
+
});
|
|
270
|
+
});
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
setSavedTag() {
|
|
274
|
+
if (this.config.file.tags &&
|
|
275
|
+
this.config.file.tags.length &&
|
|
276
|
+
this.config.hasTagsDropdown) {
|
|
277
|
+
this.config.file.savedTag = this.config.file.tags[0];
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
handleTagAction() {
|
|
281
|
+
this.selectTag(this.config.file.tags || 'No Tag');
|
|
282
|
+
this.t2.open();
|
|
283
|
+
}
|
|
284
|
+
handleDownloadAction() {
|
|
285
|
+
this.downloadFile(this.config.file.url, this.fileName);
|
|
286
|
+
}
|
|
287
|
+
handleDeleteAction() {
|
|
288
|
+
this.isFileDelete = false;
|
|
289
|
+
const deleteActionPayload = {
|
|
290
|
+
file: this.config.file,
|
|
291
|
+
action: this.documentAction.DELETE,
|
|
292
|
+
};
|
|
293
|
+
this.fileAction.emit(deleteActionPayload);
|
|
294
|
+
}
|
|
295
|
+
handleCancelAction() {
|
|
296
|
+
this.isFileDelete = false;
|
|
297
|
+
}
|
|
298
|
+
handleMarkIncorrectAction() {
|
|
299
|
+
this.config.file.incorrect = true;
|
|
300
|
+
const markIncorrectActionPayload = {
|
|
301
|
+
file: this.config.file,
|
|
302
|
+
action: this.documentAction.MARK_INCORRECT,
|
|
303
|
+
};
|
|
304
|
+
this.fileAction.emit(markIncorrectActionPayload);
|
|
305
|
+
}
|
|
306
|
+
handleMarkCorrectAction() {
|
|
307
|
+
this.config.file.incorrect = false;
|
|
308
|
+
const markCorrectActionPayload = {
|
|
309
|
+
file: this.config.file,
|
|
310
|
+
action: this.documentAction.MARK_CORRECT,
|
|
311
|
+
};
|
|
312
|
+
this.fileAction.emit(markCorrectActionPayload);
|
|
313
|
+
this.documentReviewInputVisible = false;
|
|
314
|
+
}
|
|
315
|
+
downloadFile(url, filename) {
|
|
316
|
+
this.http.get(url, { responseType: 'blob' }).subscribe((blob) => {
|
|
317
|
+
const a = this.renderer.createElement('a');
|
|
318
|
+
const objectUrl = URL.createObjectURL(blob);
|
|
319
|
+
this.renderer.setAttribute(a, 'href', objectUrl);
|
|
320
|
+
this.renderer.setAttribute(a, 'download', filename);
|
|
321
|
+
this.renderer.appendChild(document.body, a);
|
|
322
|
+
a.click();
|
|
323
|
+
this.renderer.removeChild(document.body, a);
|
|
324
|
+
URL.revokeObjectURL(objectUrl);
|
|
325
|
+
}, (error) => {
|
|
326
|
+
console.error('Error downloading file:', error);
|
|
327
|
+
});
|
|
328
|
+
}
|
|
329
|
+
setCategoryTag() {
|
|
330
|
+
if (this.config.file.tags?.length) {
|
|
331
|
+
this.reviewFileConfig.categoryTag = this.config.file.tags[0];
|
|
332
|
+
}
|
|
299
333
|
}
|
|
300
334
|
ngOnDestroy() {
|
|
301
335
|
this.destroy$.next();
|
|
302
336
|
this.destroy$.complete();
|
|
303
337
|
}
|
|
304
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaUploadFileComponent, deps: [{ token: i1.HttpClient }, { token: i0.ChangeDetectorRef }, { token: i2.UrlExtensionPipe }, { token: i2.FileNamePipe }, { token: i3.DocumentService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
305
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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\";.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}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background:#86c9c333!important;color:#86c9c3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background:#ed929233!important;color:#ed9292!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white-2::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}@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}}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-fill-grey svg path{fill:#919191!important}.svg-fill-red-10 svg path{fill:#e66767!important}.svg-fill-green svg path{fill:#56b4ac!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.cursor-pointer{cursor:pointer}.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;-moz-user-select:none;-ms-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;-moz-user-select:none;-ms-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;-moz-user-select:none!important;-ms-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;-moz-user-select:none!important;-ms-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;-moz-user-select:none;-ms-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::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.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;-moz-user-select:none;-ms-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::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.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{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{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{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{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{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{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{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{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{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{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{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:
|
|
338
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CaUploadFileComponent, deps: [{ token: i1.HttpClient }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i2.UrlExtensionPipe }, { token: i2.FileNamePipe }, { token: i3.DocumentService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
339
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", 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\n : t2\n : isArrowHovered\n : annotationHover\n : reviewFileConfig\n \"\n>\n <!-- Review Actions -->\n @if (reviewFileConfig.isReview) {\n <div\n class=\"ta-upload-file-header-review d-flex align-items-center justify-content-between\"\n >\n @if (reviewFileConfig.reviewMode === reviewState.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(documentAction.DOWNLOAD)\"\n >\n <svg-icon [src]=\"icons.download\"></svg-icon>\n </div>\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 [ngClass]=\"{\n 'ta-upload-action-mark-correct':\n config.file?.incorrect && isIncorrectMarkHover,\n 'ta-upload-action-mark-incorrect': !(\n config.file?.incorrect && isIncorrectMarkHover\n ),\n incorrect: config.file?.incorrect,\n }\"\n (click)=\"\n onAction(\n config.file?.incorrect && isIncorrectMarkHover\n ? 'mark-correct'\n : 'mark-incorrect'\n )\n \"\n (mouseenter)=\"onMouseEnter()\"\n (mouseleave)=\"onMouseLeave()\"\n >\n <svg-icon\n [src]=\"\n config.file?.incorrect && isIncorrectMarkHover\n ? icons.confirm\n : icons.close\n \"\n ></svg-icon>\n </div>\n }\n </div>\n }\n\n <!-- No Review Actions -->\n @if (\n !isFileDelete &&\n (!reviewFileConfig.isReview ||\n (reviewFileConfig.isReview &&\n reviewFileConfig.reviewMode === reviewState.FEEDBACK_MODE))\n ) {\n <div class=\"ta-upload-file-header d-flex justify-content-between\">\n <!-- Left Side -->\n @if (config.customClassName === 'company-documents') {\n <div class=\"rightside_bar\"></div>\n } @else {\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(documentAction.TAG)\"\n >\n <svg-icon [src]=\"icons.tag\"></svg-icon>\n </div>\n </div>\n }\n <!-- Right Side -->\n @if (!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 ===\n reviewState.FEEDBACK_MODE,\n small:\n config.type === 'details' ||\n config.type === 'todo' ||\n reviewFileConfig.reviewMode ==\n reviewState.REVIEW_MODE,\n 'vertical-mode':\n config.customClassName == 'company-documents',\n }\"\n >\n @if (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(documentAction.TAG)\"\n >\n <svg-icon [src]=\"icons.tag\"></svg-icon>\n </div>\n }\n <div\n ngbTooltip\n mainTooltip=\"Download\"\n tooltipBackground=\"#2F2F2F\"\n position=\"top\"\n class=\"ta-upload-action-download\"\n (click)=\"onAction(documentAction.DOWNLOAD)\"\n >\n <svg-icon [src]=\"icons.download\"></svg-icon>\n </div>\n @if (\n config.type != 'details' &&\n config.type != 'todo' &&\n reviewFileConfig.reviewMode !=\n reviewState.REVIEW_MODE &&\n config.file?.fileName\n ) {\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 \"\n >\n <svg-icon [src]=\"icons.trash\"></svg-icon>\n </div>\n }\n </div>\n }\n @if (\n reviewFileConfig.isReview &&\n reviewFileConfig.reviewMode === reviewState.FEEDBACK_MODE\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(documentAction.MARK_INCORRECT)\"\n >\n <svg-icon [src]=\"icons.close\"></svg-icon>\n </div>\n }\n </div>\n }\n\n <!-- File Content -->\n <div class=\"ta-upload-file-content {{ config.customClassName }}\">\n <!-- Pdf Content -->\n @if (\n config.file?.extension?.toLowerCase() === 'pdf' && config.file?.url\n ) {\n <pdf-viewer\n [src]=\"config.file.url\"\n [(page)]=\"config.activePage\"\n class=\"pdf_viewer\"\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 }\n\n <!-- Media Content -->\n <div\n class=\"d-flex justify-content-center align-items-center image_main_holder {{\n config.customClassName\n }}\"\n >\n <!-- Image Content -->\n @if (isImageFile && config.file?.url) {\n <img\n class=\"ta-upload-file-image\"\n [ngClass]=\"{\n details_image:\n config.type === 'details' || config.type === 'todo',\n }\"\n [src]=\"config.file.url\"\n [alt]=\"config.file?.fileName\"\n />\n }\n <!-- Video Tumbnail -->\n @else if (isVideoFile && !documentLoading) {\n <img\n class=\"ta-upload-file-image\"\n [src]=\"videoThumbnail\"\n [alt]=\"config.file?.fileName\"\n />\n } @else {\n <div class=\"spinner\">\n <app-ca-spinner\n [size]=\"'small'\"\n [color]=\"'blueDark'\"\n ></app-ca-spinner>\n </div>\n }\n </div>\n\n <!-- Tag Content -->\n @if (\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 <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 }\n </div>\n\n <!-- File Delete Template -->\n @if (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(documentAction.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(documentAction.CANCEL)\"\n >\n CANCEL\n </div>\n </div>\n }\n\n <!-- File Footer Information -->\n @if (!reviewFileConfig.isFooterHidden) {\n <div\n class=\"ta-upload-file-footer\"\n [ngClass]=\"{ 'edit-mode': editFile }\"\n (click)=\"onEditFile()\"\n >\n <!-- No edit mode -->\n @if (!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\n ? (config.file?.realFile.type\n | mimeTypeToExtension\n | lowercase)\n : ''\n }}\"\n [ngClass]=\"{ 'no-tag': !config.file?.tags }\"\n >\n <div>\n {{\n config.file?.realFile.type\n | mimeTypeToExtension\n | uppercase\n }}\n </div>\n </div>\n <div class=\"document_info_hold d-flex\">\n @if (numberOfFilePages) {\n <div class=\"pdf_page_size\">\n {{ numberOfFilePages }}\n </div>\n }\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 }\n @if (!editFile) {\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 } @else {\n <ng-container *ngTemplateOutlet=\"editMode\"></ng-container>\n }\n\n <ng-template #editMode>\n <app-ca-input\n [formControl]=\"fileNewName\"\n [inputConfig]=\"fileInputConfig\"\n (blurInput)=\"onBlurInput($event)\"\n ></app-ca-input>\n </ng-template>\n </div>\n }\n</div>\n\n<ng-template #tagsPopover let-data=\"data\">\n <div class=\"tags_main_holder\">\n @if (config.file?.tags?.length) {\n <div class=\"remove_tag_holder\" (click)=\"removeTag()\">\n <div class=\"remove_tag\">Remove Tag</div>\n </div>\n <div class=\"remove_tag_border_holder\">\n <div class=\"remove_tag_border\"></div>\n </div>\n }\n @for (\n tag of config?.tagsOptions;\n let i = $index,\n first = $first,\n last = $last;\n track i\n ) {\n <div\n class=\"tags_inner_holder d-flex align-items-center\"\n [ngClass]=\"{\n firstRow: first,\n lastRow: last,\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\n class=\"checked_icon\"\n [ngClass]=\"{ shown: tag.checked }\"\n >\n <svg-icon [src]=\"icons.confirm\"></svg-icon>\n </div>\n </div>\n </div>\n }\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\";.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}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background:#86c9c333!important;color:#86c9c3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background:#ed929233!important;color:#ed9292!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white-2::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}@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}}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-fill-grey svg path{fill:#919191!important}.svg-fill-red-10 svg path{fill:#e66767!important}.svg-fill-green svg path{fill:#56b4ac!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.cursor-pointer{cursor:pointer}::ng-deep .pdf_viewer{display:block;height:100%;width:100%}.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;-moz-user-select:none;-ms-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;-moz-user-select:none;-ms-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;-moz-user-select:none!important;-ms-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;-moz-user-select:none!important;-ms-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;-moz-user-select:none;-ms-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::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.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;-moz-user-select:none;-ms-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-mp4,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-mov,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-avi{background:#9e47ec66}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-mp4:hover,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-mov:hover,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-avi:hover{background-color:#b370f0}.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::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.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{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{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{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{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{background-color:#fab15c!important}.ta-upload-file-container.modals:hover .ta-upload-file-ext-avi,.ta-upload-file-container.modals:hover .ta-upload-file-ext-mp4,.ta-upload-file-container.modals:hover .ta-upload-file-ext-mov,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-avi,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-mp4,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-mov,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-avi,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-mp4,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-mov{background-color:#b370f0!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{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{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{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{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{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{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:
|
|
306
340
|
// modules
|
|
307
|
-
CommonModule }, { kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.
|
|
341
|
+
CommonModule }, { kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { 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:
|
|
308
342
|
// pipes
|
|
309
|
-
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:
|
|
343
|
+
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: "pipe", type: MimeTypeToExtensionPipe, name: "mimeTypeToExtension" }, { kind: "component", type:
|
|
310
344
|
//components
|
|
311
345
|
CaSpinnerComponent, selector: "app-ca-spinner", inputs: ["size", "color", "isBarSpinner"] }, { kind: "component", type: CaInputComponent, selector: "app-ca-input", inputs: ["inputConfig", "dateTimePopover", "incorrectValue", "selectedDropdownLabelColor", "template"], outputs: ["handleToggleDropdownOptions", "incorrectEvent", "blurInput", "focusInput", "change", "commandEvent", "clear", "showHideDropdown", "dropDownKeyNavigation"] }] }); }
|
|
312
346
|
}
|
|
@@ -326,11 +360,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
326
360
|
ByteConvertPipe,
|
|
327
361
|
PdfViewerModule,
|
|
328
362
|
NgClassPipe,
|
|
363
|
+
MimeTypeToExtensionPipe,
|
|
329
364
|
//components
|
|
330
365
|
CaSpinnerComponent,
|
|
331
366
|
CaInputComponent,
|
|
332
|
-
], 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\";.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}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background:#86c9c333!important;color:#86c9c3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background:#ed929233!important;color:#ed9292!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white-2::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}@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}}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-fill-grey svg path{fill:#919191!important}.svg-fill-red-10 svg path{fill:#e66767!important}.svg-fill-green svg path{fill:#56b4ac!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.cursor-pointer{cursor:pointer}.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;-moz-user-select:none;-ms-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;-moz-user-select:none;-ms-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;-moz-user-select:none!important;-ms-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;-moz-user-select:none!important;-ms-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;-moz-user-select:none;-ms-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::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.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;-moz-user-select:none;-ms-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::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.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{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{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{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{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{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{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{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{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{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{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{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"] }]
|
|
333
|
-
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: i0.ChangeDetectorRef }, { type: i2.UrlExtensionPipe }, { type: i2.FileNamePipe }, { type: i3.DocumentService }], propDecorators: { t2: [{
|
|
367
|
+
], encapsulation: ViewEncapsulation.Emulated, template: "<div\n class=\"ta-upload-file-container d-grid {{ config.customClassName }}\"\n [ngClass]=\"\n config\n | ngClassPipe\n : t2\n : isArrowHovered\n : annotationHover\n : reviewFileConfig\n \"\n>\n <!-- Review Actions -->\n @if (reviewFileConfig.isReview) {\n <div\n class=\"ta-upload-file-header-review d-flex align-items-center justify-content-between\"\n >\n @if (reviewFileConfig.reviewMode === reviewState.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(documentAction.DOWNLOAD)\"\n >\n <svg-icon [src]=\"icons.download\"></svg-icon>\n </div>\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 [ngClass]=\"{\n 'ta-upload-action-mark-correct':\n config.file?.incorrect && isIncorrectMarkHover,\n 'ta-upload-action-mark-incorrect': !(\n config.file?.incorrect && isIncorrectMarkHover\n ),\n incorrect: config.file?.incorrect,\n }\"\n (click)=\"\n onAction(\n config.file?.incorrect && isIncorrectMarkHover\n ? 'mark-correct'\n : 'mark-incorrect'\n )\n \"\n (mouseenter)=\"onMouseEnter()\"\n (mouseleave)=\"onMouseLeave()\"\n >\n <svg-icon\n [src]=\"\n config.file?.incorrect && isIncorrectMarkHover\n ? icons.confirm\n : icons.close\n \"\n ></svg-icon>\n </div>\n }\n </div>\n }\n\n <!-- No Review Actions -->\n @if (\n !isFileDelete &&\n (!reviewFileConfig.isReview ||\n (reviewFileConfig.isReview &&\n reviewFileConfig.reviewMode === reviewState.FEEDBACK_MODE))\n ) {\n <div class=\"ta-upload-file-header d-flex justify-content-between\">\n <!-- Left Side -->\n @if (config.customClassName === 'company-documents') {\n <div class=\"rightside_bar\"></div>\n } @else {\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(documentAction.TAG)\"\n >\n <svg-icon [src]=\"icons.tag\"></svg-icon>\n </div>\n </div>\n }\n <!-- Right Side -->\n @if (!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 ===\n reviewState.FEEDBACK_MODE,\n small:\n config.type === 'details' ||\n config.type === 'todo' ||\n reviewFileConfig.reviewMode ==\n reviewState.REVIEW_MODE,\n 'vertical-mode':\n config.customClassName == 'company-documents',\n }\"\n >\n @if (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(documentAction.TAG)\"\n >\n <svg-icon [src]=\"icons.tag\"></svg-icon>\n </div>\n }\n <div\n ngbTooltip\n mainTooltip=\"Download\"\n tooltipBackground=\"#2F2F2F\"\n position=\"top\"\n class=\"ta-upload-action-download\"\n (click)=\"onAction(documentAction.DOWNLOAD)\"\n >\n <svg-icon [src]=\"icons.download\"></svg-icon>\n </div>\n @if (\n config.type != 'details' &&\n config.type != 'todo' &&\n reviewFileConfig.reviewMode !=\n reviewState.REVIEW_MODE &&\n config.file?.fileName\n ) {\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 \"\n >\n <svg-icon [src]=\"icons.trash\"></svg-icon>\n </div>\n }\n </div>\n }\n @if (\n reviewFileConfig.isReview &&\n reviewFileConfig.reviewMode === reviewState.FEEDBACK_MODE\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(documentAction.MARK_INCORRECT)\"\n >\n <svg-icon [src]=\"icons.close\"></svg-icon>\n </div>\n }\n </div>\n }\n\n <!-- File Content -->\n <div class=\"ta-upload-file-content {{ config.customClassName }}\">\n <!-- Pdf Content -->\n @if (\n config.file?.extension?.toLowerCase() === 'pdf' && config.file?.url\n ) {\n <pdf-viewer\n [src]=\"config.file.url\"\n [(page)]=\"config.activePage\"\n class=\"pdf_viewer\"\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 }\n\n <!-- Media Content -->\n <div\n class=\"d-flex justify-content-center align-items-center image_main_holder {{\n config.customClassName\n }}\"\n >\n <!-- Image Content -->\n @if (isImageFile && config.file?.url) {\n <img\n class=\"ta-upload-file-image\"\n [ngClass]=\"{\n details_image:\n config.type === 'details' || config.type === 'todo',\n }\"\n [src]=\"config.file.url\"\n [alt]=\"config.file?.fileName\"\n />\n }\n <!-- Video Tumbnail -->\n @else if (isVideoFile && !documentLoading) {\n <img\n class=\"ta-upload-file-image\"\n [src]=\"videoThumbnail\"\n [alt]=\"config.file?.fileName\"\n />\n } @else {\n <div class=\"spinner\">\n <app-ca-spinner\n [size]=\"'small'\"\n [color]=\"'blueDark'\"\n ></app-ca-spinner>\n </div>\n }\n </div>\n\n <!-- Tag Content -->\n @if (\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 <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 }\n </div>\n\n <!-- File Delete Template -->\n @if (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(documentAction.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(documentAction.CANCEL)\"\n >\n CANCEL\n </div>\n </div>\n }\n\n <!-- File Footer Information -->\n @if (!reviewFileConfig.isFooterHidden) {\n <div\n class=\"ta-upload-file-footer\"\n [ngClass]=\"{ 'edit-mode': editFile }\"\n (click)=\"onEditFile()\"\n >\n <!-- No edit mode -->\n @if (!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\n ? (config.file?.realFile.type\n | mimeTypeToExtension\n | lowercase)\n : ''\n }}\"\n [ngClass]=\"{ 'no-tag': !config.file?.tags }\"\n >\n <div>\n {{\n config.file?.realFile.type\n | mimeTypeToExtension\n | uppercase\n }}\n </div>\n </div>\n <div class=\"document_info_hold d-flex\">\n @if (numberOfFilePages) {\n <div class=\"pdf_page_size\">\n {{ numberOfFilePages }}\n </div>\n }\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 }\n @if (!editFile) {\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 } @else {\n <ng-container *ngTemplateOutlet=\"editMode\"></ng-container>\n }\n\n <ng-template #editMode>\n <app-ca-input\n [formControl]=\"fileNewName\"\n [inputConfig]=\"fileInputConfig\"\n (blurInput)=\"onBlurInput($event)\"\n ></app-ca-input>\n </ng-template>\n </div>\n }\n</div>\n\n<ng-template #tagsPopover let-data=\"data\">\n <div class=\"tags_main_holder\">\n @if (config.file?.tags?.length) {\n <div class=\"remove_tag_holder\" (click)=\"removeTag()\">\n <div class=\"remove_tag\">Remove Tag</div>\n </div>\n <div class=\"remove_tag_border_holder\">\n <div class=\"remove_tag_border\"></div>\n </div>\n }\n @for (\n tag of config?.tagsOptions;\n let i = $index,\n first = $first,\n last = $last;\n track i\n ) {\n <div\n class=\"tags_inner_holder d-flex align-items-center\"\n [ngClass]=\"{\n firstRow: first,\n lastRow: last,\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\n class=\"checked_icon\"\n [ngClass]=\"{ shown: tag.checked }\"\n >\n <svg-icon [src]=\"icons.confirm\"></svg-icon>\n </div>\n </div>\n </div>\n }\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\";.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}.pickup-delivery-popover{top:-38px!important;max-width:340px!important}.pickup-delivery-popover.bs-popover-top{top:auto!important;bottom:-38px!important}.pickup-delivery-popover.bs-popover-top .load-component .assigned-load-holder{order:3;margin-top:4px;margin-bottom:0!important}.pickup-delivery-popover.bs-popover-top .load-component .statusBar{order:2;margin-top:4px}.pickup-delivery-popover.bs-popover-top .load-component .animation-three-tabs{order:1}.gps_dropdown_popover{top:-38px;max-width:494px}.gps_dropdown_popover .popover-body{padding:0}.table-progress-popover{background-color:unset!important;margin-left:-10px}.table-progress-popover .progress-dropdown{margin-top:-6px;width:260px;height:200px;background:#2f2f2f;border-radius:3px;padding:8px;box-shadow:0 0 4px #00000026;overflow:hidden;-webkit-animation:progressAnimation .25s ease-in-out;animation:progressAnimation .25s ease-in-out}.table-progress-popover .progress-dropdown .progress-header .progress-title{font-size:18px;font-weight:600;color:#dadada}.table-progress-popover .progress-dropdown .progress-header .progress-title span{font-weight:400}.table-progress-popover .progress-dropdown .progress-header .progress-total{font-size:14px;line-height:17px;color:#dadada}.table-progress-popover .progress-dropdown .table-progress-bar-container{width:100%;height:8px;margin-top:6px;border-radius:2px;overflow:hidden}.table-progress-popover .progress-dropdown .table-progress-bar-container .table-progress-bar{height:100%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-dual-info-container .progress-info-container{width:50%}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container{margin-top:10px}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-title{margin-bottom:2px;font-size:11px;font-weight:700;line-height:14px;color:#ffffffb2}.table-progress-popover .progress-dropdown .progress-dropdown-body .progress-info-container .progress-info-text{font-size:14px;line-height:18px;color:#dadada}.table-progress-popover .progress-dropdown.credit-dropdown{height:100px}@-webkit-keyframes progressAnimation{0%{height:0px}to{height:220px}}@keyframes progressAnimation{0%{height:0px}to{height:220px}}ngb-popover-window{padding:unset!important;border:unset!important}ngb-popover-window .popover-arrow{display:none!important}ngb-popover-window .popover-body{padding:unset!important}.dispatch-note .popover-body{position:relative;top:-4px;left:-4px}.tooltip{font-size:12px;position:relative}.tooltip.show{opacity:.83}.tooltip.fade:after,.tooltip.fade:before{transform:translateY(-10px);transition:all .15s ease-in-out}.tooltip.fade:hover:after,.tooltip.fade:hover:before{opacity:1;transform:translate(0)}.tooltip-inner{padding:4px 10px;white-space:nowrap;max-width:none;border-radius:3px}.tooltip-inner:empty{padding:0}.placeholder-delete .tooltip-inner{background-color:#f66}.placeholder-delete .arrow:before{border-top-color:#f66}.custom-popup-owners-for-flag .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(126%) translate(-50%)!important;width:130px;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-for-flag .arrow{bottom:-18%;transform:rotate(180deg);left:calc(50% + 2.7rem)}.custom-popup-owners-for-flag .tooltip{opacity:.93!important;width:0}.custom-popup-owners{z-index:999}.custom-popup-owners .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners .tooltip{transform:translateY(-61px)!important}.custom-popup-owners-year{z-index:999}.custom-popup-owners-year .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(132%);z-index:999;box-shadow:0 0 3px #0003}.custom-popup-owners-year .arrow{bottom:-20%;transform:rotate(180deg)}.custom-popup-owners-year .tooltip{transform:translate(70px,-61px)!important}.custom-popup-owners-info .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-100%) translate(-10%);width:200px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;margin-top:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info .tooltip{opacity:.93;width:0}.custom-popup-owners-info .arrow{display:none}.custom-popup-owners-info #phone-inside{position:relative;right:26px;bottom:0}.custom-popup-owners-info-at .tooltip-inner{color:#3b3b3b;background-color:#fff;transform:translateY(-108%) translate(-7%);width:270px;height:36px;display:flex;justify-content:center;align-items:center;border-radius:3px;box-shadow:0 0 3px #0003}.custom-popup-owners-info-at .tooltip{opacity:1;width:0}.custom-popup-owners-info-at .arrow{display:none}.custom-popup-owners-for-tag .tooltip-inner{color:#3b3b3b;background-color:#fff;width:100px;border-radius:3px;box-shadow:0 0 3px #0003!important}.custom-popup-owners-for-tag .tooltip{top:5px!important}.custom-popup-owners-for-tag .arrow{bottom:-24%}.align-items-flex-start{justify-content:center;align-items:center}.align-items-flex-end{display:flex;justify-content:center;flex-direction:column;align-self:flex-end;align-items:flex-start}.label-add{align-self:flex-start}.fadeInLoad{animation:fadeInLoad .25s}@keyframes fadeInLoad{0%{opacity:0}to{opacity:1}}.fadeIn{opacity:1;-webkit-transition:.25s;-moz-transition:.25s;-o-transition:.25s;transition:.25s}.thisText:hover .fadeIn{opacity:0}.fadeInLoad{animation-name:example;animation-duration:.25s}@keyframes example{0%{transform:scale(.5)}to{transform:scale(1)}}.tooltip.tooltip-table-icons{left:12px!important;opacity:1}.tooltip.tooltip-table-icons .arrow{display:none!important}.tooltip.tooltip-table-icons .tooltip-inner{border-radius:0 50px 50px;background:#28529f}.tooltip.show{opacity:1;animation:fadeIn ease .5s!important;-webkit-animation:fadeIn ease .5s!important;-moz-animation:fadeIn ease .5s!important;-o-animation:fadeIn ease .5s!important;-ms-animation:fadeIn ease .5s!important}.ta-tooltip{position:absolute;font-size:12px;text-align:center;color:#fff;line-height:22px;z-index:999999!important;opacity:0;white-space:nowrap;transform:scale(.7)}.ta-tooltip.ta-tooltip-show{opacity:.85;transform:scale(1);padding:0 12px}.ta-tooltip.ta-tooltip-bottom-right,.ta-tooltip.ta-tooltip-bottom-right-corner{transform-origin:top left;border-radius:0 15px 15px}.ta-tooltip.ta-tooltip-bottom-left{transform-origin:top right;border-radius:15px 0 15px 15px}@keyframes scaleItem{0%{transform:scale(.4)}to{transform:scale(1)}}.app-ca-main-tooltip{pointer-events:none}.app-ca-main-tooltip .tooltip-inner{padding:0;background-color:transparent;pointer-events:none}.app-ca-main-tooltip .tooltip-inner .tooltip-holder{display:flex;font-size:11px;font-weight:700;border-radius:2px;padding:2px 8px;animation:scaleItem .3s;white-space:normal}.app-ca-main-tooltip .tooltip-inner .tooltip-holder:empty{padding:0}.tooltip-arrow{display:none!important}.trucks.semitruck svg path,.trucks.semisleeper svg path,.trucks.flatbed svg path,.trucks.stepdeck svg path,.trucks.lowboyrgn svg path,.trucks.chassis svg path,.trucks.conestoga svg path,.trucks.sidekit svg path,.trucks.container svg path,.trailers.semitruck svg path,.trailers.semisleeper svg path,.trailers.flatbed svg path,.trailers.stepdeck svg path,.trailers.lowboyrgn svg path,.trailers.chassis svg path,.trailers.conestoga svg path,.trailers.sidekit svg path,.trailers.container svg path{fill:#92b1f5}.trucks.boxtruck svg path,.trucks.reefertruck svg path,.trucks.cargovan svg path,.trucks.dryvan svg path,.trucks.reefer svg path,.trailers.boxtruck svg path,.trailers.reefertruck svg path,.trailers.cargovan svg path,.trailers.dryvan svg path,.trailers.reefer svg path{fill:#fbc88b}.trucks.dumptruck svg path,.trucks.cementtruck svg path,.trucks.garbagetruck svg path,.trucks.enddump svg path,.trucks.bottomdump svg path,.trucks.hopper svg path,.trucks.tanker svg path,.trucks.pneumatictanker svg path,.trailers.dumptruck svg path,.trailers.cementtruck svg path,.trailers.garbagetruck svg path,.trailers.enddump svg path,.trailers.bottomdump svg path,.trailers.hopper svg path,.trailers.tanker svg path,.trailers.pneumatictanker svg path{fill:#ed9292}.trucks.towtruck svg path,.trucks.carhauler svg path,.trucks.spotter svg path,.trucks.carhaulerstigner svg path,.trailers.towtruck svg path,.trailers.carhauler svg path,.trailers.spotter svg path,.trailers.carhaulerstigner svg path{fill:#86c9c3}.trucks .svgtext-template-text,.trailers .svgtext-template-text{color:#fff;transition:color .3s ease-in-out}.colors .black svg #droplet{fill:#6c6c6c}.colors .brown svg #droplet{fill:#a1887f}.colors .darkgreen svg #droplet{fill:#4db6a2}.colors .lightgreen svg #droplet{fill:#81c784}.colors .darkblue svg #droplet{fill:#546fd2}.colors .lightblue svg #droplet{fill:#64b5f6}.colors .gray svg #droplet{fill:#aaa}.colors .purple svg #droplet{fill:#ba68c8}.colors .gold svg #droplet{fill:#bcad79}.colors .silver svg #droplet{fill:#dadada}.colors .red svg #droplet{fill:#f96b69}.colors .pink svg #droplet{fill:#f26ec2}.colors .white svg #droplet{fill:#f1f1f1}.colors .orange svg #droplet{fill:#ff8a65}.colors .yellow svg #droplet{fill:#ffd54f}.colors:hover{transition:all .3s ease-in-out}.colors:hover .black svg #droplet{fill:#3c3c3c}.colors:hover .brown svg #droplet{fill:#8d6e63}.colors:hover .darkgreen svg #droplet{fill:#26a690}.colors:hover .lightgreen svg #droplet{fill:#66bb6a}.colors:hover .darkblue svg #droplet{fill:#304fc1}.colors:hover .lightblue svg #droplet{fill:#42a5f5}.colors:hover .gray svg #droplet{fill:#919191}.colors:hover .purple svg #droplet{fill:#ab47bc}.colors:hover .gold svg #droplet{fill:#aa9c6e}.colors:hover .silver svg #droplet{fill:#b7b7b7}.colors:hover .red svg #droplet{fill:#ef5350}.colors:hover .pink svg #droplet{fill:#fa4daa}.colors:hover .white svg #droplet{fill:#fff}.colors:hover .orange svg #droplet{fill:#ff7043}.colors:hover .yellow svg #droplet{fill:#ffca28}.text-color-black{color:#424242!important}.text-color-black::-moz-selection{background:#42424233!important;color:#424242!important}.text-color-black::selection{background:#42424233!important;color:#424242!important}.text-color-black-2{color:#2f2f2f!important}.text-color-black-2::-moz-selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-black-2::selection{background:#2f2f2f33!important;color:#2f2f2f!important}.text-color-muted{color:#919191!important}.text-color-muted::-moz-selection{background:#91919133!important;color:#919191!important}.text-color-muted::selection{background:#91919133!important;color:#919191!important}.text-color-green{color:#56b4ac!important}.text-color-green::-moz-selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green::selection{background:#56b4ac33!important;color:#56b4ac!important}.text-color-green-4{color:#86c9c3!important}.text-color-green-4::-moz-selection{background:#86c9c333!important;color:#86c9c3!important}.text-color-green-4::selection{background:#86c9c333!important;color:#86c9c3!important}.text-color-blue-13{color:#6692f1!important}.text-color-blue-13::-moz-selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-13::selection{background:#66921833!important;color:#6692f1!important}.text-color-blue-18{color:#3b73ed!important}.text-color-blue-18::-moz-selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-18::selection{background:#3b73ed33!important;color:#3b73ed!important}.text-color-blue-19{color:#92b1f5!important}.text-color-blue-19::-moz-selection{background:#92b1f533!important;color:#92b1f5!important}.text-color-blue-19::selection{background:#92b1f533!important;color:#92b1f5!important}.text-color-red-10{color:#e66767!important}.text-color-red-10::-moz-selection{background:#e6676733!important;color:#e66767!important}.text-color-red-10::selection{background:#e6676733!important;color:#e66767!important}.text-color-red-13{color:#ed9292!important}.text-color-red-13::-moz-selection{background:#ed929233!important;color:#ed9292!important}.text-color-red-13::selection{background:#ed929233!important;color:#ed9292!important}.text-color-light-grey{color:#e5e5e5!important}.text-color-light-grey::-moz-selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey::selection{background:#e5e5e533!important;color:#e5e5e5!important}.text-color-light-grey-2{color:#aaa!important}.text-color-light-grey-2::-moz-selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-2::selection{background:#aaa3!important;color:#aaa!important}.text-color-light-grey-6{color:#ccc!important}.text-color-light-grey-6::-moz-selection{color:#ccc!important;background:#aaa3!important}.text-color-light-grey-6::selection{color:#ccc!important;background:#aaa3!important}.text-color-white{color:#dadada!important}.text-color-white::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white::selection{color:#dadada!important;background:#fff3!important}.text-color-white-2{color:#fff!important}.text-color-white-2::-moz-selection{color:#dadada!important;background:#fff3!important}.text-color-white-2::selection{color:#dadada!important;background:#fff3!important}.text-color-white-4{color:#ffffffb2!important}.text-color-white-4::-moz-selection{color:#ffffffb2!important;background:#fff3!important}.text-color-white-4::selection{color:#ffffffb2!important;background:#fff3!important}.text-color-dark-grey{color:#6c6c6c!important}.text-color-dark-grey::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-dark-grey::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2{color:#6c6c6c!important}.text-color-bw6-2::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw6-2::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9{color:#dadada!important}.text-color-bw-9::-moz-selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-bw-9::selection{color:#6c6c6c!important;background:#6c6c6c33!important}.text-color-grey{color:#919191!important}.text-color-grey::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey::selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::-moz-selection,.text-color-grey .marker-bold-text::-moz-selection{color:#919191!important;background:#91919133!important}.text-color-grey .address-text::selection,.text-color-grey .marker-bold-text::selection{color:#919191!important;background:#91919133!important}.text-size-11{font-size:11px!important;line-height:14px!important}.text-size-14{font-size:14px!important;line-height:18px!important}.text-size-16{font-size:16px!important;line-height:19px!important}.text-size-18{font-size:18px!important;line-height:22px!important}.text-size-26{font-size:26px!important;line-height:32px!important}.text-size-28{font-size:28px!important;line-height:34px!important}@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}}.svg-fill-black svg path{fill:#424242!important}.svg-fill-muted svg path{fill:#919191!important}.svg-fill-bw-9 svg path{fill:#dadada!important}.svg-fill-light-grey-2 svg path{fill:#aaa!important}.svg-fill-light-grey-6 svg path{fill:#ccc!important}.svg-fill-blue-13 svg path{fill:#6692f1!important}.svg-fill-blue-19 svg path{fill:#92b1f5!important}.svg-fill-blue-26 svg path{fill:#4dc5eb!important}.svg-fill-grey svg path{fill:#919191!important}.svg-fill-red-10 svg path{fill:#e66767!important}.svg-fill-green svg path{fill:#56b4ac!important}.svg-hover-muted svg path{transition:all .3s ease-in-out}.svg-hover-muted:hover svg path{fill:#919191!important}.svg-hover-black svg path{transition:all .3s ease-in-out}.svg-hover-black:hover svg path{fill:#424242!important}.svg-hover-blue-15 svg path{transition:all .3s ease-in-out}.svg-hover-blue-15:hover svg path{fill:#0b49d1!important}.svg-hover-bw6-2 svg path{transition:all .3s ease-in-out}.svg-hover-bw6-2:hover svg path{fill:#6c6c6c!important}.svg-hover-trash-red svg path{transition:all .3s ease-in-out}.svg-hover-trash-red:hover svg path{fill:#ff5050!important}.svg-hover-red-14 svg path{transition:all .3s ease-in-out}.svg-hover-red-14:hover svg path{fill:#c20c0c!important}.svg-size-12 svg{width:12px;height:12px}.svg-size-14 svg{width:14px;height:14px}.svg-size-16 svg{width:16px;height:16px}.svg-size-18 svg{width:18px;height:18px}.svg-size-22 svg{width:22px;height:22px}.svg-size-44-16 svg{width:44px;height:16px}*{margin:0;font-family:Montserrat,sans-serif}html{scroll-behavior:auto!important}.gm-style-iw-chr,.gm-style-iw-tc{display:none}.gm-style .gm-style-iw-c{border-radius:0}.gm-style-iw{overflow-y:auto!important;overflow-x:hidden!important}.gm-style-iw>div{overflow:visible!important}.infoWindow{overflow:hidden!important}.gm-style-iw-d,.gm-style-iw.gm-style-iw-c{max-height:350px!important}::ng-deep .popover{--bs-popover-border-width: 0;--bs-popover-body-padding-y: 0;--bs-popover-body-padding-x: 0}::ng-deep .popover .popover-arrow{display:none}.cursor-pointer{cursor:pointer}::ng-deep .pdf_viewer{display:block;height:100%;width:100%}.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;-moz-user-select:none;-ms-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;-moz-user-select:none;-ms-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;-moz-user-select:none!important;-ms-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;-moz-user-select:none!important;-ms-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;-moz-user-select:none;-ms-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::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.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;-moz-user-select:none;-ms-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-mp4,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-mov,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-avi{background:#9e47ec66}.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-mp4:hover,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-mov:hover,.ta-upload-file-container .ta-upload-file-footer .footer_info .ta-upload-file-ext-avi:hover{background-color:#b370f0}.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::-moz-selection{background-color:#6c6c6c33!important;color:#6c6c6c!important}.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{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{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{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{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{background-color:#fab15c!important}.ta-upload-file-container.modals:hover .ta-upload-file-ext-avi,.ta-upload-file-container.modals:hover .ta-upload-file-ext-mp4,.ta-upload-file-container.modals:hover .ta-upload-file-ext-mov,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-avi,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-mp4,.ta-upload-file-container.company-documents:hover .ta-upload-file-ext-mov,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-avi,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-mp4,.ta-upload-file-container.keep_open_modals:hover .ta-upload-file-ext-mov{background-color:#b370f0!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{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{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{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{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{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{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"] }]
|
|
368
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }, { type: i2.UrlExtensionPipe }, { type: i2.FileNamePipe }, { type: i3.DocumentService }], propDecorators: { t2: [{
|
|
334
369
|
type: ViewChild,
|
|
335
370
|
args: ['t2']
|
|
336
371
|
}], inputRef: [{
|
|
@@ -351,4 +386,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
351
386
|
}], fileHover: [{
|
|
352
387
|
type: Output
|
|
353
388
|
}] } });
|
|
354
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtdXBsb2FkLWZpbGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGVzL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGUvY2EtdXBsb2FkLWZpbGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGVzL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGUvY2EtdXBsb2FkLWZpbGUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUdILFNBQVMsRUFDVCxZQUFZLEVBQ1osS0FBSyxFQUVMLE1BQU0sRUFDTixTQUFTLEVBQ1QsaUJBQWlCLEdBQ3BCLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDL0UsT0FBTyxFQUFFLFlBQVksRUFBRSxvQkFBb0IsRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFFbkUsT0FBTyxFQUFvQixlQUFlLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNuRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDeEQsT0FBTyxFQUNILFNBQVMsRUFFVCxnQkFBZ0IsRUFDaEIsVUFBVSxHQUNiLE1BQU0sNEJBQTRCLENBQUM7QUFDcEMsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUV6QyxZQUFZO0FBQ1osT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDeEUs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cnQge1xuICAgIEFmdGVyVmlld0luaXQsXG4gICAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gICAgQ29tcG9uZW50LFxuICAgIEV2ZW50RW1pdHRlcixcbiAgICBJbnB1dCxcbiAgICBPbkluaXQsXG4gICAgT3V0cHV0LFxuICAgIFZpZXdDaGlsZCxcbiAgICBWaWV3RW5jYXBzdWxhdGlvbixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEZvcm1Db250cm9sLCBGb3Jtc01vZHVsZSwgUmVhY3RpdmVGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IGRlYm91bmNlVGltZSwgZGlzdGluY3RVbnRpbENoYW5nZWQsIFN1YmplY3QgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IEh0dHBDbGllbnQgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5pbXBvcnQgeyBQREZEb2N1bWVudFByb3h5LCBQZGZWaWV3ZXJNb2R1bGUgfSBmcm9tICduZzItcGRmLXZpZXdlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQW5ndWxhclN2Z0ljb25Nb2R1bGUgfSBmcm9tICdhbmd1bGFyLXN2Zy1pY29uJztcbmltcG9ydCB7XG4gICAgTmdiTW9kdWxlLFxuICAgIE5nYlBvcG92ZXIsXG4gICAgTmdiUG9wb3Zlck1vZHVsZSxcbiAgICBOZ2JUb29sdGlwLFxufSBmcm9tICdAbmctYm9vdHN0cmFwL25nLWJvb3RzdHJhcCc7XG5pbXBvcnQgeyBOZ3hNYXNrTW9kdWxlIH0gZnJvbSAnbmd4LW1hc2snO1xuXG4vL0NvbXBvbmVudHNcbmltcG9ydCB7IENhSW5wdXRDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi9jYS1pbnB1dC9jYS1pbnB1dC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ2FTcGlubmVyQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vY2Etc3Bpbm5lci9jYS1zcGlubmVyLmNvbXBvbmVudCc7XG5cbi8vTW9kZWxzXG5pbXBvcnQge1xuICAgIERvY3VtZW50UmV2aWV3SW5wdXRFdmVudCxcbiAgICBGaWxlT3B0aW9uQ29uZmlnLFxuICAgIFJldmlld0ZpbGVDb25maWcsXG59IGZyb20gJy4uLy4uL21vZGVscyc7XG5pbXBvcnQgeyBEZWxldGVBY3Rpb24sIEZpbGVBY3Rpb25FdmVudCB9IGZyb20gJy4vbW9kZWxzJztcblxuLy9FbnVtc1xuaW1wb3J0IHsgRG9jdW1lbnRBY3Rpb24gfSBmcm9tICcuL2VudW1zJztcblxuLy9QaXBlc1xuaW1wb3J0IHtcbiAgICBCeXRlQ29udmVydFBpcGUsXG4gICAgRmlsZU5hbWVQaXBlLFxuICAgIFVybEV4dGVuc2lvblBpcGUsXG4gICAgTmdDbGFzc1BpcGUsXG59IGZyb20gJy4vcGlwZXMnO1xuXG4vL1NlcnZpY2VzXG5pbXBvcnQgeyBEb2N1bWVudFNlcnZpY2UgfSBmcm9tICcuL3NlcnZpY2VzJztcblxuLy9Sb3V0ZXNcbmltcG9ydCB7IFVwbG9hZEZpbGVSb3V0ZXMgfSBmcm9tICcuL3V0aWxzL3N2Zy1yb3V0ZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIHNlbGVjdG9yOiAnYXBwLWNhLXVwbG9hZC1maWxlJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vY2EtdXBsb2FkLWZpbGUuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2NhLXVwbG9hZC1maWxlLmNvbXBvbmVudC5zY3NzJ10sXG4gICAgaW1wb3J0czogW1xuICAgICAgICAvLyBtb2R1bGVzXG4gICAgICAgIENvbW1vbk1vZHVsZSxcbiAgICAgICAgTmdiVG9vbHRpcCxcbiAgICAgICAgTmdiTW9kdWxlLFxuICAgICAgICBOZ2JQb3BvdmVyTW9kdWxlLFxuICAgICAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgICAgICBBbmd1bGFyU3ZnSWNvbk1vZHVsZSxcbiAgICAgICAgRm9ybXNNb2R1bGUsXG4gICAgICAgIE5neE1hc2tNb2R1bGUsXG4gICAgICAgIC8vIHBpcGVzXG4gICAgICAgIEJ5dGVDb252ZXJ0UGlwZSxcbiAgICAgICAgUGRmVmlld2VyTW9kdWxlLFxuICAgICAgICBOZ0NsYXNzUGlwZSxcbiAgICAgICAgLy9jb21wb25lbnRzXG4gICAgICAgIENhU3Bpbm5lckNvbXBvbmVudCxcbiAgICAgICAgQ2FJbnB1dENvbXBvbmVudCxcbiAgICBdLFxuICAgIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLkVtdWxhdGVkLFxufSlcbmV4cG9ydCBjbGFzcyBDYVVwbG9hZEZpbGVDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIEFmdGVyVmlld0luaXQge1xuICAgIEBWaWV3Q2hpbGQoJ3QyJykgdDIhOiBOZ2JQb3BvdmVyO1xuICAgIEBWaWV3Q2hpbGQoQ2FJbnB1dENvbXBvbmVudCkgaW5wdXRSZWYhOiBDYUlucHV0Q29tcG9uZW50O1xuXG4gICAgQElucHV0KCkgY29uZmlnITogRmlsZU9wdGlvbkNvbmZpZztcbiAgICBASW5wdXQoKSByZXZpZXdGaWxlQ29uZmlnITogUmV2aWV3RmlsZUNvbmZpZztcblxuICAgIEBPdXRwdXQoKSBmaWxlQWN0aW9uID0gbmV3IEV2ZW50RW1pdHRlcjxGaWxlQWN0aW9uRXZlbnQ+KCk7XG4gICAgQE91dHB1dCgpIGRlbGV0ZUFjdGlvbiA9IG5ldyBFdmVudEVtaXR0ZXI8RGVsZXRlQWN0aW9uPigpO1xuICAgIEBPdXRwdXQoKSBkb2N1bWVudFJldmlld0lucHV0RXZlbnQgPVxuICAgICAgICBuZXcgRXZlbnRFbWl0dGVyPERvY3VtZW50UmV2aWV3SW5wdXRFdmVudD4oKTtcbiAgICBAT3V0cHV0KCkgbGFuZHNjYXBlQ2hlY2sgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG4gICAgQE91dHB1dCgpIGZpbGVIb3ZlciA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcblxuICAgIHB1YmxpYyBmaWxlTmV3TmFtZTogRm9ybUNvbnRyb2wgPSBuZXcgRm9ybUNvbnRyb2woKTtcbiAgICBwdWJsaWMgZG9jdW1lbnRSZXZpZXdJbnB1dENvbnRyb2w6IEZvcm1Db250cm9sID0gbmV3IEZvcm1Db250cm9sKG51bGwpO1xuICAgIHB1YmxpYyBlZGl0RmlsZTogYm9vbGVhbiA9IGZhbHNlO1xuICAgIHB1YmxpYyBpc0ZpbGVEZWxldGU6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBwdWJsaWMgZG9jdW1lbnRSZXZpZXdJbnB1dFZpc2libGU6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBwdWJsaWMgaXNJbmNvcnJlY3RNYXJrSG92ZXI6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBwdWJsaWMgYW5ub3RhdGlvbkhvdmVyOiBib29sZWFuID0gZmFsc2U7XG4gICAgcHVibGljIGRvY3VtZW50TG9hZGluZzogYm9vbGVhbiA9IHRydWU7XG4gICAgcHVibGljIGlzQXJyb3dIb3ZlcmVkOiBib29sZWFuID0gZmFsc2U7XG4gICAgcHVibGljIGZpbGVFeHRlbnNpb246IHN0cmluZyA9ICcnO1xuICAgIHB1YmxpYyBudW1iZXJPZkZpbGVQYWdlczogc3RyaW5nID0gJyc7XG4gICAgcHVibGljIGZpbGVOYW1lOiBzdHJpbmcgPSAnJztcbiAgICBwdWJsaWMgaWNvbnMgPSBVcGxvYWRGaWxlUm91dGVzLmljb25zO1xuXG4gICAgcHVibGljIGFjdGlvbiA9IERvY3VtZW50QWN0aW9uO1xuICAgIHByaXZhdGUgZGVzdHJveSQgPSBuZXcgU3ViamVjdDx2b2lkPigpO1xuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIHByaXZhdGUgaHR0cDogSHR0cENsaWVudCxcbiAgICAgICAgcHJpdmF0ZSByZWY6IENoYW5nZURldGVjdG9yUmVmLFxuXG4gICAgICAgIC8vUGlwZVxuICAgICAgICBwcml2YXRlIHVybEV4dDogVXJsRXh0ZW5zaW9uUGlwZSxcbiAgICAgICAgcHJpdmF0ZSBmaWxlTmFtZVBpcGU6IEZpbGVOYW1lUGlwZSxcblxuICAgICAgICAvL1NlcnZpY2VcbiAgICAgICAgcHJpdmF0ZSBkZXRhaWxzRGF0YVNlcnZpY2U6IERvY3VtZW50U2VydmljZVxuICAgICkge31cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5nZXRmaWxlTmFtZSgpO1xuXG4gICAgICAgIHRoaXMuaW5pdGlhbGl6ZUZpbGVFeHRlbnNpb24oKTtcblxuICAgICAgICB0aGlzLm9uU3Bpbm5lcigpO1xuXG4gICAgICAgIHRoaXMucmV2aWV3SW5wdXRDb250cm9sQ2hhbmdlKCk7XG5cbiAgICAgICAgdGhpcy5zZXRTYXZlZFRhZygpO1xuICAgIH1cblxuICAgIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5zZXRUYWdzKCk7XG4gICAgICAgIHRoaXMuc2V0Q2F0ZWdvcnlUYWcoKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGluaXRpYWxpemVGaWxlRXh0ZW5zaW9uKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5jb25maWcuZmlsZSAmJiB0aGlzLmNvbmZpZy5maWxlLmZpbGVOYW1lKSB7XG4gICAgICAgICAgICB0aGlzLmZpbGVFeHRlbnNpb24gPSB0aGlzLnVybEV4dC50cmFuc2Zvcm0oXG4gICAgICAgICAgICAgICAgdGhpcy5jb25maWcuZmlsZS5maWxlTmFtZVxuICAgICAgICAgICAgKTtcbiAgICAgICAgfVxuICAgIH1cblxuICAgIHB1YmxpYyBvblNwaW5uZXIoKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IGlzTm90UGRmID1cbiAgICAgICAgICAgICh0aGlzLmNvbmZpZy5maWxlLmV4dGVuc2lvbiB8fFxuICAgICAgICAgICAgICAgIHRoaXMudXJsRXh0LnRyYW5zZm9ybSh0aGlzLmNvbmZpZy5maWxlLnVybCkpICE9PSAncGRmJztcbiAgICAgICAgdGhpcy5kb2N1bWVudExvYWRpbmcgPSAhaXNOb3RQZGY7XG4gICAgfVxuXG4gICAgcHVibGljIGdldGZpbGVOYW1lKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5jb25maWcuZmlsZS5maWxlTmFtZSlcbiAgICAgICAgICAgIHRoaXMuZmlsZU5hbWUgPSB0aGlzLmZpbGVOYW1lUGlwZS50cmFuc2Zvcm0oXG4gICAgICAgICAgICAgICAgdGhpcy5jb25maWcuZmlsZS5maWxlTmFtZVxuICAgICAgICAgICAgKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgb25CbHVySW5wdXQoZXZlbnQ6IGJvb2xlYW4pOiB2b2lkIHtcbiAgICAgICAgaWYgKGV2ZW50KSB7XG4gICAgICAgICAgICB0aGlzLmVkaXRGaWxlID0gZmFsc2U7XG4gICAgICAgICAgICBpZiAodGhpcy5maWxlTmV3TmFtZS52YWx1ZSkge1xuICAgICAgICAgICAgICAgIHRoaXMuY29uZmlnLmZpbGUuZmlsZU5hbWUgPSB0aGlzLmZpbGVOYW1lO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgfVxuXG4gICAgLy9wZGZcbiAgICBwdWJsaWMgYWZ0ZXJMb2FkQ29tcGxldGUocGRmOiBQREZEb2N1bWVudFByb3h5KTogdm9pZCB7XG4gICAgICAgIHRoaXMuZG9jdW1lbnRMb2FkaW5nID0gZmFsc2U7XG4gICAgICAgIGNvbnN0IG51bWJlclBhZ2VzID0gcGRmLl9wZGZJbmZvLm51bVBhZ2VzO1xuXG4gICAgICAgIHRoaXMubnVtYmVyT2ZGaWxlUGFnZXMgPSBgJHtudW1iZXJQYWdlc30gJHtcbiAgICAgICAgICAgIG51bWJlclBhZ2VzID09PSAxID8gJ1BBR0UnIDogJ1BBR0VTJ1xuICAgICAgICB9YDtcblxuICAgICAgICBpZiAoIXRoaXMuY29uZmlnLmZpbGUuZXh0ZW5zaW9uICYmIHRoaXMuY29uZmlnLmZpbGUuZmlsZU5hbWUpIHtcbiAgICAgICAgICAgIHRoaXMuZmlsZUV4dGVuc2lvbiA9IHRoaXMudXJsRXh0LnRyYW5zZm9ybShcbiAgICAgICAgICAgICAgICB0aGlzLmNvbmZpZy5maWxlLmZpbGVOYW1lXG4gICAgICAgICAgICApO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHVibGljIHBhZ2VSZW5kZXJlZChcbiAgICAgICAgZXZlbnQ6IGFueSAvLyBsZWF2ZSBhbnkgZm9yIG5vd1xuICAgICk6IHZvaWQge1xuICAgICAgICBjb25zdCBwZGY6IHtcbiAgICAgICAgICAgIHBhZ2VOdW1iZXI6IG51bWJlcjtcbiAgICAgICAgICAgIHNvdXJjZTogeyB3aWR0aDogbnVtYmVyOyBoZWlnaHQ6IG51bWJlciB9O1xuICAgICAgICB9ID0gZXZlbnQ7XG5cbiAgICAgICAgaWYgKFxuICAgICAgICAgICAgdGhpcy5jb25maWcuaGFzTGFuZHNjYXBlT3B0aW9uICYmXG4gICAgICAgICAgICBwZGYucGFnZU51bWJlciA9PT0gMSAmJlxuICAgICAgICAgICAgcGRmLnNvdXJjZS53aWR0aCA+IHBkZi5zb3VyY2UuaGVpZ2h0XG4gICAgICAgICkge1xuICAgICAgICAgICAgdGhpcy5sYW5kc2NhcGVDaGVjay5lbWl0KHRydWUpO1xuICAgICAgICB9XG4gICAgfVxuICAgIHB1YmxpYyBvbkFjdGlvbihhY3Rpb246IHN0cmluZyk6IHZvaWQge1xuICAgICAgICB0aGlzLmRldGFpbHNEYXRhU2VydmljZS5zZXREb2N1bWVudE5hbWUodGhpcy5maWxlTmFtZSk7XG4gICAgICAgIHN3aXRjaCAoYWN0aW9uKSB7XG4gICAgICAgICAgICBjYXNlIERvY3VtZW50QWN0aW9uLlRBRzpcbiAgICAgICAgICAgICAgICB0aGlzLmhhbmRsZVRhZ0FjdGlvbigpO1xuICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgY2FzZSBEb2N1bWVudEFjdGlvbi5ET1dOTE9BRDpcbiAgICAgICAgICAgICAgICB0aGlzLmhhbmRsZURvd25sb2FkQWN0aW9uKCk7XG4gICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICBjYXNlIERvY3VtZW50QWN0aW9uLkRFTEVURTpcbiAgICAgICAgICAgICAgICB0aGlzLmhhbmRsZURlbGV0ZUFjdGlvbigpO1xuICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgY2FzZSBEb2N1bWVudEFjdGlvbi5DQU5DRUw6XG4gICAgICAgICAgICAgICAgdGhpcy5oYW5kbGVDYW5jZWxBY3Rpb24oKTtcbiAgICAgICAgICAgICAgICBicmVhaztcbiAgICAgICAgICAgIGNhc2UgRG9jdW1lbnRBY3Rpb24uTUFSS19JTkNPUlJFQ1Q6XG4gICAgICAgICAgICAgICAgdGhpcy5oYW5kbGVNYXJrSW5jb3JyZWN0QWN0aW9uKCk7XG4gICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICBjYXNlIERvY3VtZW50QWN0aW9uLk1BUktfQ09SUkVDVDpcbiAgICAgICAgICAgICAgICB0aGlzLmhhbmRsZU1hcmtDb3JyZWN0QWN0aW9uKCk7XG4gICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICBkZWZhdWx0OlxuICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBoYW5kbGVUYWdBY3Rpb24oKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLmNvbmZpZy5maWxlLnRhZ3MpIHtcbiAgICAgICAgICAgIHRoaXMuc2VsZWN0VGFnKHRoaXMuY29uZmlnLmZpbGUudGFncyk7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICB0aGlzLnNlbGVjdFRhZygnTm8gVGFnJyk7XG4gICAgICAgIH1cbiAgICAgICAgdGhpcy50Mi5vcGVuKCk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBoYW5kbGVEb3dubG9hZEFjdGlvbigpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5kb3dubG9hZEZpbGUodGhpcy5jb25maWcuZmlsZS51cmwsIHRoaXMuZmlsZU5hbWUpO1xuICAgIH1cblxuICAgIHByaXZhdGUgaGFuZGxlRGVsZXRlQWN0aW9uKCk6IHZvaWQge1xuICAgICAgICB0aGlzLmlzRmlsZURlbGV0ZSA9IGZhbHNlO1xuXG4gICAgICAgIHRoaXMuZmlsZUFjdGlvbi5lbWl0KHtcbiAgICAgICAgICAgIGZpbGU6IHRoaXMuY29uZmlnLmZpbGUsXG4gICAgICAgICAgICBhY3Rpb246IERvY3VtZW50QWN0aW9uLkRFTEVURSxcbiAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBoYW5kbGVDYW5jZWxBY3Rpb24oKTogdm9pZCB7XG4gICAgICAgIHRoaXMuaXNGaWxlRGVsZXRlID0gZmFsc2U7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBoYW5kbGVNYXJrSW5jb3JyZWN0QWN0aW9uKCk6IHZvaWQge1xuICAgICAgICB0aGlzLmNvbmZpZy5maWxlLmluY29ycmVjdCA9IHRydWU7XG4gICAgICAgIHRoaXMuZmlsZUFjdGlvbi5lbWl0KHtcbiAgICAgICAgICAgIGZpbGU6IHRoaXMuY29uZmlnLmZpbGUsXG4gICAgICAgICAgICBhY3Rpb246IERvY3VtZW50QWN0aW9uLk1BUktfSU5DT1JSRUNULFxuICAgICAgICB9KTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGhhbmRsZU1hcmtDb3JyZWN0QWN0aW9uKCk6IHZvaWQge1xuICAgICAgICB0aGlzLmNvbmZpZy5maWxlLmluY29ycmVjdCA9IGZhbHNlO1xuICAgICAgICB0aGlzLmZpbGVBY3Rpb24uZW1pdCh7XG4gICAgICAgICAgICBmaWxlOiB0aGlzLmNvbmZpZy5maWxlLFxuICAgICAgICAgICAgYWN0aW9uOiBEb2N1bWVudEFjdGlvbi5NQVJLX0NPUlJFQ1QsXG4gICAgICAgIH0pO1xuICAgICAgICB0aGlzLmRvY3VtZW50UmV2aWV3SW5wdXRWaXNpYmxlID0gZmFsc2U7XG4gICAgfVxuXG4gICAgcHVibGljIGRvd25sb2FkRmlsZSh1cmw6IHN0cmluZywgZmlsZW5hbWU6IHN0cmluZyk6IHZvaWQge1xuICAgICAgICB0aGlzLmh0dHAuZ2V0KHVybCwgeyByZXNwb25zZVR5cGU6ICdibG9iJyB9KS5zdWJzY3JpYmUoXG4gICAgICAgICAgICAoYmxvYjogQmxvYikgPT4ge1xuICAgICAgICAgICAgICAgIGNvbnN0IGEgPSBkb2N1bWVudC5jcmVhdGVFbGVtZW50KCdhJyk7XG4gICAgICAgICAgICAgICAgY29uc3Qgb2JqZWN0VXJsID0gVVJMLmNyZWF0ZU9iamVjdFVSTChibG9iKTtcbiAgICAgICAgICAgICAgICBhLmhyZWYgPSBvYmplY3RVcmw7XG4gICAgICAgICAgICAgICAgYS5kb3dubG9hZCA9IGZpbGVuYW1lO1xuICAgICAgICAgICAgICAgIGEuY2xpY2soKTtcbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAoZXJyb3IpID0+IHtcbiAgICAgICAgICAgICAgICBjb25zb2xlLmVycm9yKCdFcnJvciBkb3dubG9hZGluZyBmaWxlOicsIGVycm9yKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgb25FZGl0RmlsZSgpOiB2b2lkIHtcbiAgICAgICAgaWYgKFxuICAgICAgICAgICAgdGhpcy5jb25maWcuY3VzdG9tQ2xhc3NOYW1lICE9PSAnZHJpdmVyLWRldGFpbHMtcGRmJyAmJlxuICAgICAgICAgICAgdGhpcy5jb25maWcuY3VzdG9tQ2xhc3NOYW1lICE9PSAnbGFuZHNjYXBlLWRldGFpbHMtdmlldycgJiZcbiAgICAgICAgICAgIHRoaXMucmV2aWV3RmlsZUNvbmZpZy5yZXZpZXdNb2RlICE9PSAnUkVWSUVXX01PREUnICYmXG4gICAgICAgICAgICAhdGhpcy5pbnB1dFJlZj8uaXNGb2N1c0lucHV0XG4gICAgICAgICkge1xuICAgICAgICAgICAgdGhpcy5lZGl0RmlsZSA9IHRydWU7XG4gICAgICAgICAgICB0aGlzLmZpbGVOZXdOYW1lLnBhdGNoVmFsdWUodGhpcy5maWxlTmFtZSk7XG4gICAgICAgICAgICBjb25zdCB0aW1lb3V0ID0gc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICAgICAgY29uc3QgaW5wdXQgPSB0aGlzLmlucHV0UmVmLmlucHV0Lm5hdGl2ZUVsZW1lbnQ7XG4gICAgICAgICAgICAgICAgY29uc3Qgc2VsZWN0aW9uRW5kID0gaW5wdXQudmFsdWUubGVuZ3RoO1xuICAgICAgICAgICAgICAgIGlmIChpbnB1dC5zZXRTZWxlY3Rpb25SYW5nZSkge1xuICAgICAgICAgICAgICAgICAgICBpbnB1dC5zZXRTZWxlY3Rpb25SYW5nZShzZWxlY3Rpb25FbmQsIHNlbGVjdGlvbkVuZCk7XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIGNvbnN0IGZvY3VzVGltZW91dCA9IHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICAgICAgICAgICAgICBpbnB1dC5mb2N1cygpO1xuICAgICAgICAgICAgICAgICAgICBjbGVhclRpbWVvdXQoZm9jdXNUaW1lb3V0KTtcbiAgICAgICAgICAgICAgICB9LCAxMDApO1xuICAgICAgICAgICAgICAgIGNsZWFyVGltZW91dCh0aW1lb3V0KTtcbiAgICAgICAgICAgIH0sIDEwMCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwcml2YXRlIHJldmlld0lucHV0Q29udHJvbENoYW5nZSgpOiB2b2lkIHtcbiAgICAgICAgaWYgKHRoaXMucmV2aWV3RmlsZUNvbmZpZy5pc1Jldmlldykge1xuICAgICAgICAgICAgdGhpcy5kb2N1bWVudFJldmlld0lucHV0Q29udHJvbC52YWx1ZUNoYW5nZXNcbiAgICAgICAgICAgICAgICAucGlwZShkZWJvdW5jZVRpbWUoMTUwMCksIGRpc3RpbmN0VW50aWxDaGFuZ2VkKCkpXG4gICAgICAgICAgICAgICAgLnN1YnNjcmliZSgodmFsdWUpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5kb2N1bWVudFJldmlld0lucHV0RXZlbnQuZW1pdCh7XG4gICAgICAgICAgICAgICAgICAgICAgICBmaWxlOiB0aGlzLmNvbmZpZy5maWxlLFxuICAgICAgICAgICAgICAgICAgICAgICAgbWVzc2FnZTogdmFsdWUsXG4gICAgICAgICAgICAgICAgICAgIH0pO1xuICAgICAgICAgICAgICAgIH0pO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHVibGljIGdldEFubm90YXRpb25SZXZpZXdFdmVudChldmVudDogeyB0eXBlOiBzdHJpbmcgfSk6IHZvaWQge1xuICAgICAgICB0aGlzLmRvY3VtZW50UmV2aWV3SW5wdXRWaXNpYmxlID0gZXZlbnQudHlwZSA9PT0gJ29wZW4nO1xuICAgIH1cblxuICAgIHB1YmxpYyBzZXRUYWdzKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5jb25maWcuaGFzVGFnc0Ryb3Bkb3duICYmIHRoaXMuY29uZmlnLnRhZ3M/Lmxlbmd0aCkge1xuICAgICAgICAgICAgdGhpcy5jb25maWcudGFncy5mb3JFYWNoKChpdGVtKSA9PiB7XG4gICAgICAgICAgICAgICAgaXRlbSA9IHtcbiAgICAgICAgICAgICAgICAgICAgLi4uaXRlbSxcbiAgICAgICAgICAgICAgICAgICAgY2hlY2tlZDogZmFsc2UsXG4gICAgICAgICAgICAgICAgfTtcblxuICAgICAgICAgICAgICAgIHRoaXMuY29uZmlnLnRhZ3NPcHRpb25zPy5wdXNoKGl0ZW0pO1xuICAgICAgICAgICAgfSk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwdWJsaWMgc2V0Q2F0ZWdvcnlUYWcoKTogdm9pZCB7XG4gICAgICAgIGlmICh0aGlzLmNvbmZpZy5maWxlLnRhZ3M/Lmxlbmd0aCkge1xuICAgICAgICAgICAgdGhpcy5yZXZpZXdGaWxlQ29uZmlnLmNhdGVnb3J5VGFnID0gdGhpcy5jb25maWcuZmlsZS50YWdzWzBdO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHVibGljIHNldFNhdmVkVGFnKCk6IHZvaWQge1xuICAgICAgICBpZiAoXG4gICAgICAgICAgICB0aGlzLmNvbmZpZy5maWxlLnRhZ3MgJiZcbiAgICAgICAgICAgIHRoaXMuY29uZmlnLmZpbGUudGFncy5sZW5ndGggJiZcbiAgICAgICAgICAgIHRoaXMuY29uZmlnLmhhc1RhZ3NEcm9wZG93blxuICAgICAgICApIHtcbiAgICAgICAgICAgIHRoaXMuY29uZmlnLmZpbGUuc2F2ZWRUYWcgPSB0aGlzLmNvbmZpZy5maWxlLnRhZ3NbMF07XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwdWJsaWMgc2VsZWN0VGFnKHRhZzogc3RyaW5nKSB7XG4gICAgICAgIHRoaXMuY29uZmlnLnRhZ3NPcHRpb25zPy5mb3JFYWNoKChpdGVtKSA9PiB7XG4gICAgICAgICAgICBpZiAoaXRlbS50YWdOYW1lID09IHRhZykge1xuICAgICAgICAgICAgICAgIGl0ZW0uY2hlY2tlZCA9IHRydWU7XG5cbiAgICAgICAgICAgICAgICBzZXRUaW1lb3V0KCgpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5jb25maWcuZmlsZS50YWdzID0gaXRlbS50YWdOYW1lO1xuICAgICAgICAgICAgICAgICAgICB0aGlzLmNvbmZpZy5maWxlLnRhZ0dlbmVyYXRlZEJ5VXNlciA9IHRydWU7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuY29uZmlnLmZpbGUudGFnSWQgPSBbaXRlbS50YWdJZF07XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuY29uZmlnLmZpbGUudGFnQ2hhbmdlZCA9XG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLmNvbmZpZy5maWxlLnNhdmVkVGFnICE9IGl0ZW0udGFnTmFtZVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgID8gdHJ1ZVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDogZmFsc2U7XG4gICAgICAgICAgICAgICAgICAgIGNvbnN0IGFjdGlvbiA9ICd0YWcnO1xuICAgICAgICAgICAgICAgICAgICBpZiAoIXRoaXMudDIuaXNPcGVuKCkpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuZmlsZUFjdGlvbi5lbWl0KHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBmaWxlOiB0aGlzLmNvbmZpZy5maWxlLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGFjdGlvbixcbiAgICAgICAgICAgICAgICAgICAgICAgIH0pO1xuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgIHRoaXMucmVmLmRldGVjdENoYW5nZXMoKTtcbiAgICAgICAgICAgICAgICB9LCAyMDApO1xuICAgICAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgICAgICBpdGVtLmNoZWNrZWQgPSBmYWxzZTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfSk7XG4gICAgICAgIHRoaXMucmVmLmRldGVjdENoYW5nZXMoKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgcmVtb3ZlVGFnKCk6IHZvaWQge1xuICAgICAgICBzZXRUaW1lb3V0KCgpID0+IHtcbiAgICAgICAgICAgIHRoaXMuY29uZmlnLmZpbGUudGFncyA9IFtdO1xuICAgICAgICAgICAgdGhpcy5jb25maWcuZmlsZS50YWdJZCA9IFtdO1xuICAgICAgICAgICAgY29uc3QgYWN0aW9uID0gdGhpcy5hY3Rpb24uVEFHO1xuICAgICAgICAgICAgdGhpcy5jb25maWcuZmlsZS50YWdDaGFuZ2VkID0gdGhpcy5jb25maWcuZmlsZS5zYXZlZFRhZ1xuICAgICAgICAgICAgICAgID8gdHJ1ZVxuICAgICAgICAgICAgICAgIDogZmFsc2U7XG4gICAgICAgICAgICB0aGlzLmZpbGVBY3Rpb24uZW1pdCh7IGZpbGU6IHRoaXMuY29uZmlnLmZpbGUsIGFjdGlvbiB9KTtcbiAgICAgICAgICAgIHRoaXMucmVmLmRldGVjdENoYW5nZXMoKTtcbiAgICAgICAgfSwgMjAwKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgb3BlbkRlbGV0ZVBvcHVwKG5hbWU6IHN0cmluZyk6IHZvaWQge1xuICAgICAgICB0aGlzLmRldGFpbHNEYXRhU2VydmljZS5zZXREb2N1bWVudE5hbWUobmFtZSk7XG4gICAgICAgIHRoaXMuaXNGaWxlRGVsZXRlID0gdHJ1ZTtcbiAgICB9XG5cbiAgICBwdWJsaWMgaG92ZXJGaWxlKCk6IHZvaWQge1xuICAgICAgICB0aGlzLmZpbGVIb3Zlci5lbWl0KHRoaXMuY29uZmlnLmZpbGUpO1xuICAgIH1cblxuICAgIHB1YmxpYyB1cGRhdGVIb3Zlcihtb2Q6IGJvb2xlYW4pOiB2b2lkIHtcbiAgICAgICAgdGhpcy5jb25maWcuZmlsZS5sYXN0SG92ZXJlZCA9IG1vZDtcbiAgICAgICAgdGhpcy5yZWYuZGV0ZWN0Q2hhbmdlcygpO1xuICAgIH1cblxuICAgIHB1YmxpYyBob3ZlckFycm93KG1vZDogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICB0aGlzLmlzQXJyb3dIb3ZlcmVkID0gbW9kO1xuICAgICAgICB0aGlzLnJlZi5kZXRlY3RDaGFuZ2VzKCk7XG4gICAgfVxuXG4gICAgcHVibGljIGlkZW50aXR5KGluZGV4OiBudW1iZXIpOiBudW1iZXIge1xuICAgICAgICByZXR1cm4gaW5kZXg7XG4gICAgfVxuXG4gICAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XG4gICAgICAgIHRoaXMuZGVzdHJveSQubmV4dCgpO1xuICAgICAgICB0aGlzLmRlc3Ryb3kkLmNvbXBsZXRlKCk7XG4gICAgfVxufVxuIiwiPGRpdlxuICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWNvbnRhaW5lciBkLWdyaWQge3sgY29uZmlnLmN1c3RvbUNsYXNzTmFtZSB9fVwiXG4gIFtuZ0NsYXNzXT1cIlxuICAgIGNvbmZpZ1xuICAgICAgfCBuZ0NsYXNzUGlwZTogdDIgOiBpc0Fycm93SG92ZXJlZCA6IGFubm90YXRpb25Ib3ZlciA6IHJldmlld0ZpbGVDb25maWdcbiAgXCJcbj5cbiAgPCEtLSBGaWxlIEhlYWRlciBBY3Rpb25zIChtb3VzZWVudGVyKT1cImhvdmVyRmlsZSgpXCIgLS0+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=
|
|
389
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtdXBsb2FkLWZpbGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGVzL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGUvY2EtdXBsb2FkLWZpbGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGVzL2NvbXBvbmVudHMvY2EtdXBsb2FkLWZpbGUvY2EtdXBsb2FkLWZpbGUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUdILFNBQVMsRUFDVCxZQUFZLEVBQ1osS0FBSyxFQUVMLE1BQU0sRUFFTixTQUFTLEVBQ1QsaUJBQWlCLEdBQ3BCLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDL0UsT0FBTyxFQUFzQyxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBRTlFLE9BQU8sRUFBb0IsZUFBZSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDbkUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ3hELE9BQU8sRUFDSCxTQUFTLEVBRVQsZ0JBQWdCLEVBQ2hCLFVBQVUsR0FDYixNQUFNLDRCQUE0QixDQUFDO0FBQ3BDLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxVQUFVLENBQUM7QUFFekMsWUFBWTtBQUNaLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHNDQUFzQyxDQUFDO0FBQ3hFLE9BQU8sRUFBRSxr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LHlUQUNuQixvQkFBb0IsZ09BQ3BCLFdBQVcsOEJBQ1gsYUFBYTtnQkFDYixRQUFRO2dCQUNSLGVBQWUsbURBQ2YsZUFBZSwwY0FDZixXQUFXLCtDQUNYLHVCQUF1QjtnQkFDdkIsWUFBWTtnQkFDWixrQkFBa0Isc0dBQ2xCLGdCQUFnQjs7NEZBSVgscUJBQXFCO2tCQTFCakMsU0FBUztpQ0FDTSxJQUFJLFlBQ04sb0JBQW9CLFdBR3JCO3dCQUNMLFVBQVU7d0JBQ1YsWUFBWTt3QkFDWixVQUFVO3dCQUNWLFNBQVM7d0JBQ1QsZ0JBQWdCO3dCQUNoQixtQkFBbUI7d0JBQ25CLG9CQUFvQjt3QkFDcEIsV0FBVzt3QkFDWCxhQUFhO3dCQUNiLFFBQVE7d0JBQ1IsZUFBZTt3QkFDZixlQUFlO3dCQUNmLFdBQVc7d0JBQ1gsdUJBQXVCO3dCQUN2QixZQUFZO3dCQUNaLGtCQUFrQjt3QkFDbEIsZ0JBQWdCO3FCQUNuQixpQkFDYyxpQkFBaUIsQ0FBQyxRQUFROytOQUd4QixFQUFFO3NCQUFsQixTQUFTO3VCQUFDLElBQUk7Z0JBQ2MsUUFBUTtzQkFBcEMsU0FBUzt1QkFBQyxnQkFBZ0I7Z0JBRWxCLE1BQU07c0JBQWQsS0FBSztnQkFDRyxnQkFBZ0I7c0JBQXhCLEtBQUs7Z0JBRUksVUFBVTtzQkFBbkIsTUFBTTtnQkFDRyxZQUFZO3NCQUFyQixNQUFNO2dCQUNHLHdCQUF3QjtzQkFBakMsTUFBTTtnQkFFRyxjQUFjO3NCQUF2QixNQUFNO2dCQUNHLFNBQVM7c0JBQWxCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIEFmdGVyVmlld0luaXQsXG4gICAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gICAgQ29tcG9uZW50LFxuICAgIEV2ZW50RW1pdHRlcixcbiAgICBJbnB1dCxcbiAgICBPbkluaXQsXG4gICAgT3V0cHV0LFxuICAgIFJlbmRlcmVyMixcbiAgICBWaWV3Q2hpbGQsXG4gICAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBGb3JtQ29udHJvbCwgRm9ybXNNb2R1bGUsIFJlYWN0aXZlRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBkZWJvdW5jZVRpbWUsIGRpc3RpbmN0VW50aWxDaGFuZ2VkLCBTdWJqZWN0LCB0YWtlVW50aWwgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IEh0dHBDbGllbnQgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5pbXBvcnQgeyBQREZEb2N1bWVudFByb3h5LCBQZGZWaWV3ZXJNb2R1bGUgfSBmcm9tICduZzItcGRmLXZpZXdlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQW5ndWxhclN2Z0ljb25Nb2R1bGUgfSBmcm9tICdhbmd1bGFyLXN2Zy1pY29uJztcbmltcG9ydCB7XG4gICAgTmdiTW9kdWxlLFxuICAgIE5nYlBvcG92ZXIsXG4gICAgTmdiUG9wb3Zlck1vZHVsZSxcbiAgICBOZ2JUb29sdGlwLFxufSBmcm9tICdAbmctYm9vdHN0cmFwL25nLWJvb3RzdHJhcCc7XG5pbXBvcnQgeyBOZ3hNYXNrTW9kdWxlIH0gZnJvbSAnbmd4LW1hc2snO1xuXG4vL0NvbXBvbmVudHNcbmltcG9ydCB7IENhSW5wdXRDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi9jYS1pbnB1dC9jYS1pbnB1dC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ2FTcGlubmVyQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vY2Etc3Bpbm5lci9jYS1zcGlubmVyLmNvbXBvbmVudCc7XG5cbi8vSW50ZXJmYWNlc1xuaW1wb3J0IHtcbiAgICBJRG9jdW1lbnRSZXZpZXdJbnB1dEV2ZW50LFxuICAgIElGaWxlT3B0aW9uQ29uZmlnLFxuICAgIElSZXZpZXdGaWxlQ29uZmlnLFxufSBmcm9tICcuLi8uLi9pbnRlcmZhY2VzJztcbmltcG9ydCB7IElEZWxldGVBY3Rpb24sIElGaWxlQWN0aW9uRXZlbnQgfSBmcm9tICcuL2ludGVyZmFjZXMnO1xuXG4vL0NvbnN0YW50c1xuaW1wb3J0IHsgRmlsZU1pbWVUeXBlQ29uc3RhbnRzIH0gZnJvbSAnLi4vY2EtdXBsb2FkLWRyb3B6b25lL3V0aWxzL2NvbnN0YW50cyc7XG5cbi8vRW51bXNcbmltcG9ydCB7IGVEb2N1bWVudEFjdGlvbiB9IGZyb20gJy4vZW51bXMnO1xuaW1wb3J0IHsgZURyb3Bab25lRmlsZVR5cGUgfSBmcm9tICcuLi9jYS11cGxvYWQtZHJvcHpvbmUvZW51bXMnO1xuaW1wb3J0IHsgZVJldmlld1N0YXRlIH0gZnJvbSAnLi4vLi4vZW51bXMnO1xuXG4vL1BpcGVzXG5pbXBvcnQge1xuICAgIEJ5dGVDb252ZXJ0UGlwZSxcbiAgICBGaWxlTmFtZVBpcGUsXG4gICAgVXJsRXh0ZW5zaW9uUGlwZSxcbiAgICBOZ0NsYXNzUGlwZSxcbiAgICBNaW1lVHlwZVRvRXh0ZW5zaW9uUGlwZSxcbn0gZnJvbSAnLi9waXBlcyc7XG5cbi8vU2VydmljZXNcbmltcG9ydCB7IERvY3VtZW50U2VydmljZSB9IGZyb20gJy4vc2VydmljZXMnO1xuXG4vL1JvdXRlc1xuaW1wb3J0IHsgVXBsb2RGaWxlSW5wdXRDb25maWcgfSBmcm9tICcuL3V0aWxzL2NvbmZpZyc7XG5cbi8vQ29uZmlnXG5pbXBvcnQgeyBVcGxvYWRGaWxlUm91dGVzIH0gZnJvbSAnLi91dGlscy9zdmctcm91dGVzJztcblxuQENvbXBvbmVudCh7XG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBzZWxlY3RvcjogJ2FwcC1jYS11cGxvYWQtZmlsZScsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2NhLXVwbG9hZC1maWxlLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9jYS11cGxvYWQtZmlsZS5jb21wb25lbnQuc2NzcyddLFxuICAgIGltcG9ydHM6IFtcbiAgICAgICAgLy8gbW9kdWxlc1xuICAgICAgICBDb21tb25Nb2R1bGUsXG4gICAgICAgIE5nYlRvb2x0aXAsXG4gICAgICAgIE5nYk1vZHVsZSxcbiAgICAgICAgTmdiUG9wb3Zlck1vZHVsZSxcbiAgICAgICAgUmVhY3RpdmVGb3Jtc01vZHVsZSxcbiAgICAgICAgQW5ndWxhclN2Z0ljb25Nb2R1bGUsXG4gICAgICAgIEZvcm1zTW9kdWxlLFxuICAgICAgICBOZ3hNYXNrTW9kdWxlLFxuICAgICAgICAvLyBwaXBlc1xuICAgICAgICBCeXRlQ29udmVydFBpcGUsXG4gICAgICAgIFBkZlZpZXdlck1vZHVsZSxcbiAgICAgICAgTmdDbGFzc1BpcGUsXG4gICAgICAgIE1pbWVUeXBlVG9FeHRlbnNpb25QaXBlLFxuICAgICAgICAvL2NvbXBvbmVudHNcbiAgICAgICAgQ2FTcGlubmVyQ29tcG9uZW50LFxuICAgICAgICBDYUlucHV0Q29tcG9uZW50LFxuICAgIF0sXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uRW11bGF0ZWQsXG59KVxuZXhwb3J0IGNsYXNzIENhVXBsb2FkRmlsZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgQWZ0ZXJWaWV3SW5pdCB7XG4gICAgQFZpZXdDaGlsZCgndDInKSB0MiE6IE5nYlBvcG92ZXI7XG4gICAgQFZpZXdDaGlsZChDYUlucHV0Q29tcG9uZW50KSBpbnB1dFJlZiE6IENhSW5wdXRDb21wb25lbnQ7XG5cbiAgICBASW5wdXQoKSBjb25maWchOiBJRmlsZU9wdGlvbkNvbmZpZztcbiAgICBASW5wdXQoKSByZXZpZXdGaWxlQ29uZmlnITogSVJldmlld0ZpbGVDb25maWc7XG5cbiAgICBAT3V0cHV0KCkgZmlsZUFjdGlvbiA9IG5ldyBFdmVudEVtaXR0ZXI8SUZpbGVBY3Rpb25FdmVudD4oKTtcbiAgICBAT3V0cHV0KCkgZGVsZXRlQWN0aW9uID0gbmV3IEV2ZW50RW1pdHRlcjxJRGVsZXRlQWN0aW9uPigpO1xuICAgIEBPdXRwdXQoKSBkb2N1bWVudFJldmlld0lucHV0RXZlbnQgPVxuICAgICAgICBuZXcgRXZlbnRFbWl0dGVyPElEb2N1bWVudFJldmlld0lucHV0RXZlbnQ+KCk7XG4gICAgQE91dHB1dCgpIGxhbmRzY2FwZUNoZWNrID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuICAgIEBPdXRwdXQoKSBmaWxlSG92ZXIgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG5cbiAgICBwdWJsaWMgZmlsZU5ld05hbWU6IEZvcm1Db250cm9sID0gbmV3IEZvcm1Db250cm9sKCk7XG4gICAgcHVibGljIGRvY3VtZW50UmV2aWV3SW5wdXRDb250cm9sOiBGb3JtQ29udHJvbCA9IG5ldyBGb3JtQ29udHJvbChudWxsKTtcbiAgICBwdWJsaWMgZWRpdEZpbGU6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBwdWJsaWMgaXNGaWxlRGVsZXRlOiBib29sZWFuID0gZmFsc2U7XG4gICAgcHVibGljIGRvY3VtZW50UmV2aWV3SW5wdXRWaXNpYmxlOiBib29sZWFuID0gZmFsc2U7XG4gICAgcHVibGljIGlzSW5jb3JyZWN0TWFya0hvdmVyOiBib29sZWFuID0gZmFsc2U7XG4gICAgcHVibGljIGFubm90YXRpb25Ib3ZlcjogYm9vbGVhbiA9IGZhbHNlO1xuICAgIHB1YmxpYyBkb2N1bWVudExvYWRpbmc6IGJvb2xlYW4gPSB0cnVlO1xuICAgIHB1YmxpYyBpc0Fycm93SG92ZXJlZDogYm9vbGVhbiA9IGZhbHNlO1xuICAgIHB1YmxpYyBudW1iZXJPZkZpbGVQYWdlczogc3RyaW5nID0gJyc7XG4gICAgcHVibGljIGZpbGVOYW1lOiBzdHJpbmcgPSAnJztcbiAgICBwdWJsaWMgaWNvbnMgPSBVcGxvYWRGaWxlUm91dGVzLmljb25zO1xuICAgIHB1YmxpYyBpc0ltYWdlRmlsZTogYm9vbGVhbiA9IGZhbHNlO1xuICAgIHB1YmxpYyBpc1ZpZGVvRmlsZTogYm9vbGVhbiA9IGZhbHNlO1xuICAgIHB1YmxpYyByZXZpZXdTdGF0ZSA9IGVSZXZpZXdTdGF0ZTtcbiAgICBwdWJsaWMgZmlsZUlucHV0Q29uZmlnID0gVXBsb2RGaWxlSW5wdXRDb25maWcuVVBMT0FEX0lOUFVUX0NPTkZJRztcblxuICAgIHB1YmxpYyBkb2N1bWVudEFjdGlvbiA9IGVEb2N1bWVudEFjdGlvbjtcblxuICAgIHB1YmxpYyB2aWRlb1RodW1ibmFpbDogc3RyaW5nIHwgbnVsbCA9IG51bGw7XG5cbiAgICBwcml2YXRlIGRlc3Ryb3kkID0gbmV3IFN1YmplY3Q8dm9pZD4oKTtcblxuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBwcml2YXRlIGh0dHA6IEh0dHBDbGllbnQsXG4gICAgICAgIHByaXZhdGUgcmVmOiBDaGFuZ2VEZXRlY3RvclJlZixcbiAgICAgICAgcHJpdmF0ZSByZW5kZXJlcjogUmVuZGVyZXIyLFxuXG4gICAgICAgIC8vUGlwZVxuICAgICAgICBwcml2YXRlIHVybEV4dDogVXJsRXh0ZW5zaW9uUGlwZSxcbiAgICAgICAgcHJpdmF0ZSBmaWxlTmFtZVBpcGU6IEZpbGVOYW1lUGlwZSxcblxuICAgICAgICAvL1NlcnZpY2VcbiAgICAgICAgcHJpdmF0ZSBkZXRhaWxzRGF0YVNlcnZpY2U6IERvY3VtZW50U2VydmljZVxuICAgICkge31cblxuICAgIG5nT25Jbml0KCk6IHZvaWQge1xuICAgICAgICB0aGlzLmdldGZpbGVOYW1lKCk7XG5cbiAgICAgICAgdGhpcy5vblNwaW5uZXIoKTtcblxuICAgICAgICB0aGlzLnJldmlld0lucHV0Q29udHJvbENoYW5nZSgpO1xuXG4gICAgICAgIHRoaXMuc2V0U2F2ZWRUYWcoKTtcblxuICAgICAgICAvL1RPRE8gQm9nZGFuXG4gICAgICAgIGNvbnN0IG1pbWVUeXBlID0gdGhpcy5jb25maWcuZmlsZT8ucmVhbEZpbGU/LnR5cGUgfHwgJyc7XG5cbiAgICAgICAgdGhpcy5pc0ltYWdlRmlsZSA9XG4gICAgICAgICAgICBGaWxlTWltZVR5cGVDb25zdGFudHMuU1VQT1JURURfTUlNRV9UWVBFX01BUFtcbiAgICAgICAgICAgICAgICBlRHJvcFpvbmVGaWxlVHlwZS5JTUFHRVxuICAgICAgICAgICAgXS5pbmNsdWRlcyhtaW1lVHlwZSk7XG4gICAgICAgIHRoaXMuaXNWaWRlb0ZpbGUgPVxuICAgICAgICAgICAgRmlsZU1pbWVUeXBlQ29uc3RhbnRzLlNVUE9SVEVEX01JTUVfVFlQRV9NQVBbXG4gICAgICAgICAgICAgICAgZURyb3Bab25lRmlsZVR5cGUuTUVESUFcbiAgICAgICAgICAgIF0uaW5jbHVkZXMobWltZVR5cGUpO1xuXG4gICAgICAgIGlmICh0aGlzLmlzVmlkZW9GaWxlKSB0aGlzLmdlbmVyYXRlVmlkZW9UaHVtYm5haWwodGhpcy5jb25maWcuZmlsZS51cmwpO1xuICAgIH1cblxuICAgIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5zZXRDYXRlZ29yeVRhZygpO1xuICAgIH1cblxuICAgIHB1YmxpYyBvbkJsdXJJbnB1dChldmVudDogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICBpZiAoZXZlbnQpIHtcbiAgICAgICAgICAgIHRoaXMuZWRpdEZpbGUgPSBmYWxzZTtcbiAgICAgICAgICAgIGlmICh0aGlzLmZpbGVOZXdOYW1lLnZhbHVlKSB7XG4gICAgICAgICAgICAgICAgdGhpcy5jb25maWcuZmlsZS5maWxlTmFtZSA9IHRoaXMuZmlsZU5hbWU7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICAvL3BkZlxuICAgIHB1YmxpYyBhZnRlckxvYWRDb21wbGV0ZShwZGY6IFBERkRvY3VtZW50UHJveHkpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5kb2N1bWVudExvYWRpbmcgPSBmYWxzZTtcbiAgICAgICAgY29uc3QgbnVtYmVyUGFnZXMgPSBwZGYuX3BkZkluZm8ubnVtUGFnZXM7XG5cbiAgICAgICAgdGhpcy5udW1iZXJPZkZpbGVQYWdlcyA9IGAke251bWJlclBhZ2VzfSBwLmA7XG4gICAgfVxuXG4gICAgcHVibGljIHBhZ2VSZW5kZXJlZChcbiAgICAgICAgZXZlbnQ6IGFueSAvLyBsZWF2ZSBhbnkgZm9yIG5vd1xuICAgICk6IHZvaWQge1xuICAgICAgICBjb25zdCBwZGY6IHtcbiAgICAgICAgICAgIHBhZ2VOdW1iZXI6IG51bWJlcjtcbiAgICAgICAgICAgIHNvdXJjZTogeyB3aWR0aDogbnVtYmVyOyBoZWlnaHQ6IG51bWJlciB9O1xuICAgICAgICB9ID0gZXZlbnQ7XG5cbiAgICAgICAgaWYgKFxuICAgICAgICAgICAgdGhpcy5jb25maWcuaGFzTGFuZHNjYXBlT3B0aW9uICYmXG4gICAgICAgICAgICBwZGYucGFnZU51bWJlciA9PT0gMSAmJlxuICAgICAgICAgICAgcGRmLnNvdXJjZS53aWR0aCA+IHBkZi5zb3VyY2UuaGVpZ2h0XG4gICAgICAgICkge1xuICAgICAgICAgICAgdGhpcy5sYW5kc2NhcGVDaGVjay5lbWl0KHRydWUpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHVibGljIG9uQWN0aW9uKGFjdGlvbjogc3RyaW5nKTogdm9pZCB7XG4gICAgICAgIHRoaXMuZGV0YWlsc0RhdGFTZXJ2aWNlLnNldERvY3VtZW50TmFtZSh0aGlzLmZpbGVOYW1lKTtcbiAgICAgICAgc3dpdGNoIChhY3Rpb24pIHtcbiAgICAgICAgICAgIGNhc2UgZURvY3VtZW50QWN0aW9uLlRBRzpcbiAgICAgICAgICAgICAgICB0aGlzLmhhbmRsZVRhZ0FjdGlvbigpO1xuICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgY2FzZSBlRG9jdW1lbnRBY3Rpb24uRE9XTkxPQUQ6XG4gICAgICAgICAgICAgICAgdGhpcy5oYW5kbGVEb3dubG9hZEFjdGlvbigpO1xuICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgY2FzZSBlRG9jdW1lbnRBY3Rpb24uREVMRVRFOlxuICAgICAgICAgICAgICAgIHRoaXMuaGFuZGxlRGVsZXRlQWN0aW9uKCk7XG4gICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICBjYXNlIGVEb2N1bWVudEFjdGlvbi5DQU5DRUw6XG4gICAgICAgICAgICAgICAgdGhpcy5oYW5kbGVDYW5jZWxBY3Rpb24oKTtcbiAgICAgICAgICAgICAgICBicmVhaztcbiAgICAgICAgICAgIGNhc2UgZURvY3VtZW50QWN0aW9uLk1BUktfSU5DT1JSRUNUOlxuICAgICAgICAgICAgICAgIHRoaXMuaGFuZGxlTWFya0luY29ycmVjdEFjdGlvbigpO1xuICAgICAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgY2FzZSBlRG9jdW1lbnRBY3Rpb24uTUFSS19DT1JSRUNUOlxuICAgICAgICAgICAgICAgIHRoaXMuaGFuZGxlTWFya0NvcnJlY3RBY3Rpb24oKTtcbiAgICAgICAgICAgICAgICBicmVhaztcbiAgICAgICAgICAgIGRlZmF1bHQ6XG4gICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwdWJsaWMgb25FZGl0RmlsZSgpOiB2b2lkIHtcbiAgICAgICAgaWYgKFxuICAgICAgICAgICAgdGhpcy5jb25maWcuY3VzdG9tQ2xhc3NOYW1lICE9PSAnZHJpdmVyLWRldGFpbHMtcGRmJyAmJlxuICAgICAgICAgICAgdGhpcy5jb25maWcuY3VzdG9tQ2xhc3NOYW1lICE9PSAnbGFuZHNjYXBlLWRldGFpbHMtdmlldycgJiZcbiAgICAgICAgICAgIHRoaXMucmV2aWV3RmlsZUNvbmZpZy5yZXZpZXdNb2RlICE9PSB0aGlzLnJldmlld1N0YXRlLlJFVklFV19NT0RFICYmXG4gICAgICAgICAgICAhdGhpcy5pbnB1dFJlZj8uaXNGb2N1c0lucHV0XG4gICAgICAgICkge1xuICAgICAgICAgICAgdGhpcy5lZGl0RmlsZSA9IHRydWU7XG4gICAgICAgICAgICB0aGlzLmZpbGVOZXdOYW1lLnBhdGNoVmFsdWUodGhpcy5maWxlTmFtZSk7XG4gICAgICAgICAgICBjb25zdCB0aW1lb3V0ID0gc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICAgICAgY29uc3QgaW5wdXQgPSB0aGlzLmlucHV0UmVmLmlucHV0Lm5hdGl2ZUVsZW1lbnQ7XG4gICAgICAgICAgICAgICAgY29uc3Qgc2VsZWN0aW9uRW5kID0gaW5wdXQudmFsdWUubGVuZ3RoO1xuICAgICAgICAgICAgICAgIGlmIChpbnB1dC5zZXRTZWxlY3Rpb25SYW5nZSkge1xuICAgICAgICAgICAgICAgICAgICBpbnB1dC5zZXRTZWxlY3Rpb25SYW5nZShzZWxlY3Rpb25FbmQsIHNlbGVjdGlvbkVuZCk7XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIGNvbnN0IGZvY3VzVGltZW91dCA9IHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICAgICAgICAgICAgICBpbnB1dC5mb2N1cygpO1xuICAgICAgICAgICAgICAgICAgICBjbGVhclRpbWVvdXQoZm9jdXNUaW1lb3V0KTtcbiAgICAgICAgICAgICAgICB9LCAxMDApO1xuICAgICAgICAgICAgICAgIGNsZWFyVGltZW91dCh0aW1lb3V0KTtcbiAgICAgICAgICAgIH0sIDEwMCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBwdWJsaWMgZ2V0QW5ub3RhdGlvblJldmlld0V2ZW50KGV2ZW50OiB7IHR5cGU6IHN0cmluZyB9KTogdm9pZCB7XG4gICAgICAgIHRoaXMuZG9jdW1lbnRSZXZpZXdJbnB1dFZpc2libGUgPSBldmVudC50eXBlID09PSAnb3Blbic7XG4gICAgfVxuXG4gICAgcHVibGljIHNlbGVjdFRhZyh0YWc6IHN0cmluZyk6IHZvaWQge1xuICAgICAgICB0aGlzLmNvbmZpZy50YWdzT3B0aW9ucz8uZm9yRWFjaCgoaXRlbSkgPT4ge1xuICAgICAgICAgICAgaWYgKGl0ZW0udGFnTmFtZSA9PSB0YWcpIHtcbiAgICAgICAgICAgICAgICBpdGVtLmNoZWNrZWQgPSB0cnVlO1xuXG4gICAgICAgICAgICAgICAgc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuY29uZmlnLmZpbGUudGFncyA9IGl0ZW0udGFnTmFtZTtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5jb25maWcuZmlsZS50YWdHZW5lcmF0ZWRCeVVzZXIgPSB0cnVlO1xuICAgICAgICAgICAgICAgICAgICB0aGlzLmNvbmZpZy5maWxlLnRhZ0lkID0gW2l0ZW0udGFnSWRdO1xuICAgICAgICAgICAgICAgICAgICB0aGlzLmNvbmZpZy5maWxlLnRhZ0NoYW5nZWQgPVxuICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5jb25maWcuZmlsZS5zYXZlZFRhZyAhPSBpdGVtLnRhZ05hbWVcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA/IHRydWVcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA6IGZhbHNlO1xuXG4gICAgICAgICAgICAgICAgICAgIGNvbnN0IGZpbGVBY3Rpb25QYXlsb2FkID0ge1xuICAgICAgICAgICAgICAgICAgICAgICAgZmlsZTogdGhpcy5jb25maWcuZmlsZSxcbiAgICAgICAgICAgICAgICAgICAgICAgIGFjdGlvbjogdGhpcy5kb2N1bWVudEFjdGlvbi5UQUcsXG4gICAgICAgICAgICAgICAgICAgIH07XG5cbiAgICAgICAgICAgICAgICAgICAgaWYgKCF0aGlzLnQyLmlzT3BlbigpKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLmZpbGVBY3Rpb24uZW1pdChmaWxlQWN0aW9uUGF5bG9hZCk7XG4gICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgdGhpcy5yZWYuZGV0ZWN0Q2hhbmdlcygpO1xuICAgICAgICAgICAgICAgIH0sIDIwMCk7XG4gICAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgICAgIGl0ZW0uY2hlY2tlZCA9IGZhbHNlO1xuICAgICAgICAgICAgfVxuICAgICAgICB9KTtcbiAgICAgICAgdGhpcy5yZWYuZGV0ZWN0Q2hhbmdlcygpO1xuICAgIH1cblxuICAgIHB1YmxpYyByZW1vdmVUYWcoKTogdm9pZCB7XG4gICAgICAgIHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICAgICAgdGhpcy5jb25maWcuZmlsZS50YWdzID0gW107XG4gICAgICAgICAgICB0aGlzLmNvbmZpZy5maWxlLnRhZ0lkID0gW107XG4gICAgICAgICAgICB0aGlzLmNvbmZpZy5maWxlLnRhZ0NoYW5nZWQgPSB0aGlzLmNvbmZpZy5maWxlLnNhdmVkVGFnXG4gICAgICAgICAgICAgICAgPyB0cnVlXG4gICAgICAgICAgICAgICAgOiBmYWxzZTtcbiAgICAgICAgICAgIGNvbnN0IGZpbGVBY3Rpb25QYXlsb2FkID0ge1xuICAgICAgICAgICAgICAgIGZpbGU6IHRoaXMuY29uZmlnLmZpbGUsXG4gICAgICAgICAgICAgICAgYWN0aW9uOiB0aGlzLmRvY3VtZW50QWN0aW9uLlRBRyxcbiAgICAgICAgICAgIH07XG4gICAgICAgICAgICB0aGlzLmZpbGVBY3Rpb24uZW1pdChmaWxlQWN0aW9uUGF5bG9hZCk7XG4gICAgICAgICAgICB0aGlzLnJlZi5kZXRlY3RDaGFuZ2VzKCk7XG4gICAgICAgIH0sIDIwMCk7XG4gICAgfVxuXG4gICAgcHVibGljIG9wZW5EZWxldGVQb3B1cChuYW1lOiBzdHJpbmcpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5kZXRhaWxzRGF0YVNlcnZpY2Uuc2V0RG9jdW1lbnROYW1lKG5hbWUpO1xuICAgICAgICB0aGlzLmlzRmlsZURlbGV0ZSA9IHRydWU7XG4gICAgfVxuXG4gICAgcHVibGljIGhvdmVyRmlsZSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5maWxlSG92ZXIuZW1pdCh0aGlzLmNvbmZpZy5maWxlKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgdXBkYXRlSG92ZXIobW9kOiBib29sZWFuKTogdm9pZCB7XG4gICAgICAgIHRoaXMuY29uZmlnLmZpbGUubGFzdEhvdmVyZWQgPSBtb2Q7XG4gICAgICAgIHRoaXMucmVmLmRldGVjdENoYW5nZXMoKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgaG92ZXJBcnJvdyhtb2Q6IGJvb2xlYW4pOiB2b2lkIHtcbiAgICAgICAgdGhpcy5pc0Fycm93SG92ZXJlZCA9IG1vZDtcbiAgICAgICAgdGhpcy5yZWYuZGV0ZWN0Q2hhbmdlcygpO1xuICAgIH1cblxuICAgIHB1YmxpYyBvbk1vdXNlRW50ZXIoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuaXNJbmNvcnJlY3RNYXJrSG92ZXIgPSB0cnVlO1xuICAgIH1cblxuICAgIHB1YmxpYyBvbk1vdXNlTGVhdmUoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuaXNJbmNvcnJlY3RNYXJrSG92ZXIgPSBmYWxzZTtcbiAgICB9XG5cbiAgICAvL1RPRE86IEJvZ2RhbiAtIHRoaXMgZnVuY3Rpb25hbGl0eSBmb3IgY3JlYXRpbmcgdmlkZW8gdGh1bWJuYWlscyBzaG91bGQgYmUgZG9uZSBvbiB0aGUgYmFja2VuZDsgZm9yIHRoZSBmcm9udGVuZCwgSSBhbSB3YWl0aW5nIGZvciB0aGUgZGVzaWduIHNob3cgaSBjb3VsZCBzaG93IGEgcGxhY2Vob2xkZXIuXG4gICAgcHJpdmF0ZSBnZW5lcmF0ZVZpZGVvVGh1bWJuYWlsKHZpZGVvVXJsOiBzdHJpbmcpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5kb2N1bWVudExvYWRpbmcgPSB0cnVlO1xuXG4gICAgICAgIGNvbnN0IHZpZGVvID0gdGhpcy5yZW5kZXJlci5jcmVhdGVFbGVtZW50KCd2aWRlbycpO1xuICAgICAgICB0aGlzLnJlbmRlcmVyLnNldEF0dHJpYnV0ZSh2aWRlbywgJ3NyYycsIHZpZGVvVXJsKTtcbiAgICAgICAgdGhpcy5yZW5kZXJlci5zZXRBdHRyaWJ1dGUodmlkZW8sICdjcm9zc09yaWdpbicsICdhbm9ueW1vdXMnKTtcbiAgICAgICAgdGhpcy5yZW5kZXJlci5zZXRBdHRyaWJ1dGUodmlkZW8sICdtdXRlZCcsICd0cnVlJyk7XG4gICAgICAgIHRoaXMucmVuZGVyZXIuc2V0QXR0cmlidXRlKHZpZGVvLCAncGxheXNJbmxpbmUnLCAndHJ1ZScpO1xuXG4gICAgICAgIHRoaXMucmVuZGVyZXIubGlzdGVuKHZpZGVvLCAnbG9hZGVkZGF0YScsICgpID0+IHtcbiAgICAgICAgICAgIHZpZGVvLmN1cnJlbnRUaW1lID0gMC41O1xuICAgICAgICB9KTtcblxuICAgICAgICB0aGlzLnJlbmRlcmVyLmxpc3Rlbih2aWRlbywgJ3NlZWtlZCcsICgpID0+IHtcbiAgICAgICAgICAgIGNvbnN0IGNhbnZhcyA9IHRoaXMucmVuZGVyZXIuY3JlYXRlRWxlbWVudCgnY2FudmFzJyk7XG4gICAgICAgICAgICBjb25zdCBjdHggPSBjYW52YXMuZ2V0Q29udGV4dCgnMmQnKTtcbiAgICAgICAgICAgIGlmICghY3R4KSByZXR1cm47XG5cbiAgICAgICAgICAgIGNhbnZhcy53aWR0aCA9IHZpZGVvLnZpZGVvV2lkdGg7XG4gICAgICAgICAgICBjYW52YXMuaGVpZ2h0ID0gdmlkZW8udmlkZW9IZWlnaHQ7XG4gICAgICAgICAgICBjdHguZHJhd0ltYWdlKHZpZGVvLCAwLCAwLCBjYW52YXMud2lkdGgsIGNhbnZhcy5oZWlnaHQpO1xuXG4gICAgICAgICAgICBjYW52YXMudG9CbG9iKChibG9iOiBCbG9iKSA9PiB7XG4gICAgICAgICAgICAgICAgaWYgKGJsb2IpIHtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy52aWRlb1RodW1ibmFpbCA9IFVSTC5jcmVhdGVPYmplY3RVUkwoYmxvYik7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZG9jdW1lbnRMb2FkaW5nID0gZmFsc2U7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMucmVmLmRldGVjdENoYW5nZXMoKTtcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9LCAnaW1hZ2UvcG5nJyk7XG4gICAgICAgIH0pO1xuXG4gICAgICAgIHZpZGVvLmxvYWQoKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGdldGZpbGVOYW1lKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5jb25maWcuZmlsZS5maWxlTmFtZSlcbiAgICAgICAgICAgIHRoaXMuZmlsZU5hbWUgPSB0aGlzLmZpbGVOYW1lUGlwZS50cmFuc2Zvcm0oXG4gICAgICAgICAgICAgICAgdGhpcy5jb25maWcuZmlsZS5maWxlTmFtZVxuICAgICAgICAgICAgKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIG9uU3Bpbm5lcigpOiB2b2lkIHtcbiAgICAgICAgY29uc3QgaXNOb3RQZGYgPVxuICAgICAgICAgICAgKHRoaXMuY29uZmlnLmZpbGUuZXh0ZW5zaW9uIHx8XG4gICAgICAgICAgICAgICAgdGhpcy51cmxFeHQudHJhbnNmb3JtKHRoaXMuY29uZmlnLmZpbGUudXJsKSkgIT09ICdwZGYnO1xuICAgICAgICB0aGlzLmRvY3VtZW50TG9hZGluZyA9ICFpc05vdFBkZjtcbiAgICB9XG5cbiAgICBwcml2YXRlIHJldmlld0lucHV0Q29udHJvbENoYW5nZSgpOiB2b2lkIHtcbiAgICAgICAgaWYgKHRoaXMucmV2aWV3RmlsZUNvbmZpZy5pc1Jldmlldykge1xuICAgICAgICAgICAgdGhpcy5kb2N1bWVudFJldmlld0lucHV0Q29udHJvbC52YWx1ZUNoYW5nZXNcbiAgICAgICAgICAgICAgICAucGlwZSh0YWtlVW50aWwodGhpcy5kZXN0cm95JCkpXG4gICAgICAgICAgICAgICAgLnN1YnNjcmliZSgodmFsdWUpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5kb2N1bWVudFJldmlld0lucHV0RXZlbnQuZW1pdCh7XG4gICAgICAgICAgICAgICAgICAgICAgICBmaWxlOiB0aGlzLmNvbmZpZy5maWxlLFxuICAgICAgICAgICAgICAgICAgICAgICAgbWVzc2FnZTogdmFsdWUsXG4gICAgICAgICAgICAgICAgICAgIH0pO1xuICAgICAgICAgICAgICAgIH0pO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBzZXRTYXZlZFRhZygpOiB2b2lkIHtcbiAgICAgICAgaWYgKFxuICAgICAgICAgICAgdGhpcy5jb25maWcuZmlsZS50YWdzICYmXG4gICAgICAgICAgICB0aGlzLmNvbmZpZy5maWxlLnRhZ3MubGVuZ3RoICYmXG4gICAgICAgICAgICB0aGlzLmNvbmZpZy5oYXNUYWdzRHJvcGRvd25cbiAgICAgICAgKSB7XG4gICAgICAgICAgICB0aGlzLmNvbmZpZy5maWxlLnNhdmVkVGFnID0gdGhpcy5jb25maWcuZmlsZS50YWdzWzBdO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBoYW5kbGVUYWdBY3Rpb24oKTogdm9pZCB7XG4gICAgICAgIHRoaXMuc2VsZWN0VGFnKHRoaXMuY29uZmlnLmZpbGUudGFncyB8fCAnTm8gVGFnJyk7XG4gICAgICAgIHRoaXMudDIub3BlbigpO1xuICAgIH1cblxuICAgIHByaXZhdGUgaGFuZGxlRG93bmxvYWRBY3Rpb24oKTogdm9pZCB7XG4gICAgICAgIHRoaXMuZG93bmxvYWRGaWxlKHRoaXMuY29uZmlnLmZpbGUudXJsLCB0aGlzLmZpbGVOYW1lKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGhhbmRsZURlbGV0ZUFjdGlvbigpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5pc0ZpbGVEZWxldGUgPSBmYWxzZTtcblxuICAgICAgICBjb25zdCBkZWxldGVBY3Rpb25QYXlsb2FkID0ge1xuICAgICAgICAgICAgZmlsZTogdGhpcy5jb25maWcuZmlsZSxcbiAgICAgICAgICAgIGFjdGlvbjogdGhpcy5kb2N1bWVudEFjdGlvbi5ERUxFVEUsXG4gICAgICAgIH07XG5cbiAgICAgICAgdGhpcy5maWxlQWN0aW9uLmVtaXQoZGVsZXRlQWN0aW9uUGF5bG9hZCk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBoYW5kbGVDYW5jZWxBY3Rpb24oKTogdm9pZCB7XG4gICAgICAgIHRoaXMuaXNGaWxlRGVsZXRlID0gZmFsc2U7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBoYW5kbGVNYXJrSW5jb3JyZWN0QWN0aW9uKCk6IHZvaWQge1xuICAgICAgICB0aGlzLmNvbmZpZy5maWxlLmluY29ycmVjdCA9IHRydWU7XG5cbiAgICAgICAgY29uc3QgbWFya0luY29ycmVjdEFjdGlvblBheWxvYWQgPSB7XG4gICAgICAgICAgICBmaWxlOiB0aGlzLmNvbmZpZy5maWxlLFxuICAgICAgICAgICAgYWN0aW9uOiB0aGlzLmRvY3VtZW50QWN0aW9uLk1BUktfSU5DT1JSRUNULFxuICAgICAgICB9O1xuXG4gICAgICAgIHRoaXMuZmlsZUFjdGlvbi5lbWl0KG1hcmtJbmNvcnJlY3RBY3Rpb25QYXlsb2FkKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGhhbmRsZU1hcmtDb3JyZWN0QWN0aW9uKCk6IHZvaWQge1xuICAgICAgICB0aGlzLmNvbmZpZy5maWxlLmluY29ycmVjdCA9IGZhbHNlO1xuXG4gICAgICAgIGNvbnN0IG1hcmtDb3JyZWN0QWN0aW9uUGF5bG9hZCA9IHtcbiAgICAgICAgICAgIGZpbGU6IHRoaXMuY29uZmlnLmZpbGUsXG4gICAgICAgICAgICBhY3Rpb246IHRoaXMuZG9jdW1lbnRBY3Rpb24uTUFSS19DT1JSRUNULFxuICAgICAgICB9O1xuXG4gICAgICAgIHRoaXMuZmlsZUFjdGlvbi5lbWl0KG1hcmtDb3JyZWN0QWN0aW9uUGF5bG9hZCk7XG4gICAgICAgIHRoaXMuZG9jdW1lbnRSZXZpZXdJbnB1dFZpc2libGUgPSBmYWxzZTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGRvd25sb2FkRmlsZSh1cmw6IHN0cmluZywgZmlsZW5hbWU6IHN0cmluZyk6IHZvaWQge1xuICAgICAgICB0aGlzLmh0dHAuZ2V0KHVybCwgeyByZXNwb25zZVR5cGU6ICdibG9iJyB9KS5zdWJzY3JpYmUoXG4gICAgICAgICAgICAoYmxvYjogQmxvYikgPT4ge1xuICAgICAgICAgICAgICAgIGNvbnN0IGEgPSB0aGlzLnJlbmRlcmVyLmNyZWF0ZUVsZW1lbnQoJ2EnKTtcbiAgICAgICAgICAgICAgICBjb25zdCBvYmplY3RVcmwgPSBVUkwuY3JlYXRlT2JqZWN0VVJMKGJsb2IpO1xuXG4gICAgICAgICAgICAgICAgdGhpcy5yZW5kZXJlci5zZXRBdHRyaWJ1dGUoYSwgJ2hyZWYnLCBvYmplY3RVcmwpO1xuICAgICAgICAgICAgICAgIHRoaXMucmVuZGVyZXIuc2V0QXR0cmlidXRlKGEsICdkb3dubG9hZCcsIGZpbGVuYW1lKTtcblxuICAgICAgICAgICAgICAgIHRoaXMucmVuZGVyZXIuYXBwZW5kQ2hpbGQoZG9jdW1lbnQuYm9keSwgYSk7XG4gICAgICAgICAgICAgICAgYS5jbGljaygpO1xuXG4gICAgICAgICAgICAgICAgdGhpcy5yZW5kZXJlci5yZW1vdmVDaGlsZChkb2N1bWVudC5ib2R5LCBhKTtcbiAgICAgICAgICAgICAgICBVUkwucmV2b2tlT2JqZWN0VVJMKG9iamVjdFVybCk7XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAgKGVycm9yKSA9PiB7XG4gICAgICAgICAgICAgICAgY29uc29sZS5lcnJvcignRXJyb3IgZG93bmxvYWRpbmcgZmlsZTonLCBlcnJvcik7XG4gICAgICAgICAgICB9XG4gICAgICAgICk7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBzZXRDYXRlZ29yeVRhZygpOiB2b2lkIHtcbiAgICAgICAgaWYgKHRoaXMuY29uZmlnLmZpbGUudGFncz8ubGVuZ3RoKSB7XG4gICAgICAgICAgICB0aGlzLnJldmlld0ZpbGVDb25maWcuY2F0ZWdvcnlUYWcgPSB0aGlzLmNvbmZpZy5maWxlLnRhZ3NbMF07XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5kZXN0cm95JC5uZXh0KCk7XG4gICAgICAgIHRoaXMuZGVzdHJveSQuY29tcGxldGUoKTtcbiAgICB9XG59XG4iLCI8ZGl2XG4gICAgY2xhc3M9XCJ0YS11cGxvYWQtZmlsZS1jb250YWluZXIgZC1ncmlkIHt7IGNvbmZpZy5jdXN0b21DbGFzc05hbWUgfX1cIlxuICAgIFtuZ0NsYXNzXT1cIlxuICAgICAgICBjb25maWdcbiAgICAgICAgICAgIHwgbmdDbGFzc1BpcGVcbiAgICAgICAgICAgICAgICA6IHQyXG4gICAgICAgICAgICAgICAgOiBpc0Fycm93SG92ZXJlZFxuICAgICAgICAgICAgICAgIDogYW5ub3RhdGlvbkhvdmVyXG4gICAgICAgICAgICAgICAgOiByZXZpZXdGaWxlQ29uZmlnXG4gICAgXCJcbj5cbiAgICA8IS0tIFJldmlldyBBY3Rpb25zIC0tPlxuICAgIEBpZiAocmV2aWV3RmlsZUNvbmZpZy5pc1Jldmlldykge1xuICAgICAgICA8ZGl2XG4gICAgICAgICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWhlYWRlci1yZXZpZXcgZC1mbGV4IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtYmV0d2VlblwiXG4gICAgICAgID5cbiAgICAgICAgICAgIEBpZiAocmV2aWV3RmlsZUNvbmZpZy5yZXZpZXdNb2RlID09PSByZXZpZXdTdGF0ZS5SRVZJRVdfTU9ERSkge1xuICAgICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgICAgICAgICAgICBtYWluVG9vbHRpcD1cIkRvd25sb2FkXCJcbiAgICAgICAgICAgICAgICAgICAgdG9vbHRpcEJhY2tncm91bmQ9XCIjNmM2YzZjXCJcbiAgICAgICAgICAgICAgICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInRhLXVwbG9hZC1hY3Rpb24tZG93bmxvYWQtcmV2aWV3IGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIganVzdGlmeS1jb250ZW50LWNlbnRlclwiXG4gICAgICAgICAgICAgICAgICAgIChjbGljayk9XCJvbkFjdGlvbihkb2N1bWVudEFjdGlvbi5ET1dOTE9BRClcIlxuICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAgPHN2Zy1pY29uIFtzcmNdPVwiaWNvbnMuZG93bmxvYWRcIj48L3N2Zy1pY29uPlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgICAgICAgICAgICBtYWluVG9vbHRpcD1cIlxuICAgICAgICAgICAgICAgICAgICBjb25maWcuZmlsZT8uaW5jb3JyZWN0ICYmIGlzSW5jb3JyZWN0TWFya0hvdmVyXG4gICAgICAgICAgICAgICAgICAgID8gJ1VubWFyaydcbiAgICAgICAgICAgICAgICAgICAgOiAnTWFyayBJbmNvcnJlY3QnXG4gICAgICAgICAgICAgICAgICAgIFwiXG4gICAgICAgICAgICAgICAgICAgIHRvb2x0aXBCYWNrZ3JvdW5kPVwiXG4gICAgICAgICAgICAgICAgICAgIGNvbmZpZy5maWxlPy5pbmNvcnJlY3QgJiYgaXNJbmNvcnJlY3RNYXJrSG92ZXIgPyAnIzZjNmM2YycgOiAnI0VGNTM1MCdcbiAgICAgICAgICAgICAgICAgICAgXCJcbiAgICAgICAgICAgICAgICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICAgICAgICAgICAgICAndGEtdXBsb2FkLWFjdGlvbi1tYXJrLWNvcnJlY3QnOlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNvbmZpZy5maWxlPy5pbmNvcnJlY3QgJiYgaXNJbmNvcnJlY3RNYXJrSG92ZXIsXG4gICAgICAgICAgICAgICAgICAgICAgICAndGEtdXBsb2FkLWFjdGlvbi1tYXJrLWluY29ycmVjdCc6ICEoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY29uZmlnLmZpbGU/LmluY29ycmVjdCAmJiBpc0luY29ycmVjdE1hcmtIb3ZlclxuICAgICAgICAgICAgICAgICAgICAgICAgKSxcbiAgICAgICAgICAgICAgICAgICAgICAgIGluY29ycmVjdDogY29uZmlnLmZpbGU/LmluY29ycmVjdCxcbiAgICAgICAgICAgICAgICAgICAgfVwiXG4gICAgICAgICAgICAgICAgICAgIChjbGljayk9XCJcbiAgICAgICAgICAgICAgICAgICAgICAgIG9uQWN0aW9uKFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNvbmZpZy5maWxlPy5pbmNvcnJlY3QgJiYgaXNJbmNvcnJlY3RNYXJrSG92ZXJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPyAnbWFyay1jb3JyZWN0J1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA6ICdtYXJrLWluY29ycmVjdCdcbiAgICAgICAgICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICAgICAgXCJcbiAgICAgICAgICAgICAgICAgICAgKG1vdXNlZW50ZXIpPVwib25Nb3VzZUVudGVyKClcIlxuICAgICAgICAgICAgICAgICAgICAobW91c2VsZWF2ZSk9XCJvbk1vdXNlTGVhdmUoKVwiXG4gICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICA8c3ZnLWljb25cbiAgICAgICAgICAgICAgICAgICAgICAgIFtzcmNdPVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY29uZmlnLmZpbGU/LmluY29ycmVjdCAmJiBpc0luY29ycmVjdE1hcmtIb3ZlclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA/IGljb25zLmNvbmZpcm1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgOiBpY29ucy5jbG9zZVxuICAgICAgICAgICAgICAgICAgICAgICAgXCJcbiAgICAgICAgICAgICAgICAgICAgPjwvc3ZnLWljb24+XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICB9XG4gICAgICAgIDwvZGl2PlxuICAgIH1cblxuICAgIDwhLS0gTm8gUmV2aWV3IEFjdGlvbnMgLS0+XG4gICAgQGlmIChcbiAgICAgICAgIWlzRmlsZURlbGV0ZSAmJlxuICAgICAgICAoIXJldmlld0ZpbGVDb25maWcuaXNSZXZpZXcgfHxcbiAgICAgICAgICAgIChyZXZpZXdGaWxlQ29uZmlnLmlzUmV2aWV3ICYmXG4gICAgICAgICAgICAgICAgcmV2aWV3RmlsZUNvbmZpZy5yZXZpZXdNb2RlID09PSByZXZpZXdTdGF0ZS5GRUVEQkFDS19NT0RFKSlcbiAgICApIHtcbiAgICAgICAgPGRpdiBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWhlYWRlciBkLWZsZXgganVzdGlmeS1jb250ZW50LWJldHdlZW5cIj5cbiAgICAgICAgICAgIDwhLS0gTGVmdCBTaWRlIC0tPlxuICAgICAgICAgICAgQGlmIChjb25maWcuY3VzdG9tQ2xhc3NOYW1lID09PSAnY29tcGFueS1kb2N1bWVudHMnKSB7XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInJpZ2h0c2lkZV9iYXJcIj48L2Rpdj5cbiAgICAgICAgICAgIH0gQGVsc2Uge1xuICAgICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJ0YS11cGxvYWQtZmlsZS1hY3Rpb24tbGVmdHNpZGUgZC1mbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXIgYWxpZ24taXRlbXMtY2VudGVyXCJcbiAgICAgICAgICAgICAgICAgICAgdGFiaW5kZXg9XCIwXCJcbiAgICAgICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwie1xuICAgICAgICAgICAgICAgICAgICAgICAgJ25vLWFjdGlvbi10YWcnOiAhY29uZmlnLmhhc1RhZ3NEcm9wZG93bixcbiAgICAgICAgICAgICAgICAgICAgICAgIGFjdGl2ZTogdDI/LmlzT3BlbigpLFxuICAgICAgICAgICAgICAgICAgICB9XCJcbiAgICAgICAgICAgICAgICAgICAgI3QyPVwibmdiUG9wb3ZlclwiXG4gICAgICAgICAgICAgICAgICAgIFtuZ2JQb3BvdmVyXT1cInRhZ3NQb3BvdmVyXCJcbiAgICAgICAgICAgICAgICAgICAgW3BvcG92ZXJDbGFzc109XCIndGFnc19wb3BvdmVyJ1wiXG4gICAgICAgICAgICAgICAgICAgIFtwbGFjZW1lbnRdPVwiJ3JpZ2h0LXRvcCByaWdodC1ib3R0b20nXCJcbiAgICAgICAgICAgICAgICAgICAgYXV0b2Nsb3NlPVwib3V0c2lkZVwiXG4gICAgICAgICAgICAgICAgICAgIFtjb250YWluZXJdPVwiJ2JvZHknXCJcbiAgICAgICAgICAgICAgICAgICAgdHJpZ2dlcnM9XCInbWFudWFsJ1wiXG4gICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgICAgICAgICBuZ2JUb29sdGlwXG4gICAgICAgICAgICAgICAgICAgICAgICBtYWluVG9vbHRpcD1cIlRhZ1wiXG4gICAgICAgICAgICAgICAgICAgICAgICB0b29sdGlwQmFja2dyb3VuZD1cIiMyRjJGMkZcIlxuICAgICAgICAgICAgICAgICAgICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJ0YS11cGxvYWQtYWN0aW9uLXRhZyBkLWZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBhbGlnbi1pdGVtcy1jZW50ZXJcIlxuICAgICAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cIm9uQWN0aW9uKGRvY3VtZW50QWN0aW9uLlRBRylcIlxuICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICA8c3ZnLWljb24gW3NyY109XCJpY29ucy50YWdcIj48L3N2Zy1pY29uPlxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIDwhLS0gUmlnaHQgU2lkZSAtLT5cbiAgICAgICAgICAgIEBpZiAoIXJldmlld0ZpbGVDb25maWcuaXNBY3Rpb25zSGlkZGVuKSB7XG4gICAgICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWFjdGlvbi1yaWdodHNpZGUgZC1mbGV4IGp1c3RpZnktY29udGVudC1hcm91bmQgYWxpZ24taXRlbXMtY2VudGVyXCJcbiAgICAgICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwie1xuICAgICAgICAgICAgICAgICAgICAgICAgJ2ZlZWRiYWNrLW1vZGUnOlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHJldmlld0ZpbGVDb25maWcuaXNSZXZpZXcgJiZcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICByZXZpZXdGaWxlQ29uZmlnLnJldmlld01vZGUgPT09XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHJldmlld1N0YXRlLkZFRURCQUNLX01PREUsXG4gICAgICAgICAgICAgICAgICAgICAgICBzbWFsbDpcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBjb25maWcudHlwZSA9PT0gJ2RldGFpbHMnIHx8XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY29uZmlnLnR5cGUgPT09ICd0b2RvJyB8fFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHJldmlld0ZpbGVDb25maWcucmV2aWV3TW9kZSA9PVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICByZXZpZXdTdGF0ZS5SRVZJRVdfTU9ERSxcbiAgICAgICAgICAgICAgICAgICAgICAgICd2ZXJ0aWNhbC1tb2RlJzpcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBjb25maWcuY3VzdG9tQ2xhc3NOYW1lID09ICdjb21wYW55LWRvY3VtZW50cycsXG4gICAgICAgICAgICAgICAgICAgIH1cIlxuICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAgQGlmIChjb25maWcuY3VzdG9tQ2xhc3NOYW1lID09PSAnY29tcGFueS1kb2N1bWVudHMnKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgI3QyPVwibmdiUG9wb3ZlclwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgW25nYlBvcG92ZXJdPVwidGFnc1BvcG92ZXJcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtwb3BvdmVyQ2xhc3NdPVwiJ3RhZ3NfcG9wb3Zlcl92ZXJ0aWNhbCdcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtwbGFjZW1lbnRdPVwiJ2JvdHRvbS1sZWZ0J1wiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgYXV0b2Nsb3NlPVwib3V0c2lkZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgW2NvbnRhaW5lcl09XCInYm9keSdcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRyaWdnZXJzPVwiJ21hbnVhbCdcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIG5nYlRvb2x0aXBcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBtYWluVG9vbHRpcD1cIlRhZ1wiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgdG9vbHRpcEJhY2tncm91bmQ9XCIjMkYyRjJGXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBwb3NpdGlvbj1cInRvcFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJ0YS11cGxvYWQtYWN0aW9uLXRhZyBkLWZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBhbGlnbi1pdGVtcy1jZW50ZXJcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgYWN0aXZlOiB0Mj8uaXNPcGVuKCkgfVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cIm9uQWN0aW9uKGRvY3VtZW50QWN0aW9uLlRBRylcIlxuICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzdmctaWNvbiBbc3JjXT1cImljb25zLnRhZ1wiPjwvc3ZnLWljb24+XG4gICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgICAgICAgICBuZ2JUb29sdGlwXG4gICAgICAgICAgICAgICAgICAgICAgICBtYWluVG9vbHRpcD1cIkRvd25sb2FkXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIHRvb2x0aXBCYWNrZ3JvdW5kPVwiIzJGMkYyRlwiXG4gICAgICAgICAgICAgICAgICAgICAgICBwb3NpdGlvbj1cInRvcFwiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInRhLXVwbG9hZC1hY3Rpb24tZG93bmxvYWRcIlxuICAgICAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cIm9uQWN0aW9uKGRvY3VtZW50QWN0aW9uLkRPV05MT0FEKVwiXG4gICAgICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxzdmctaWNvbiBbc3JjXT1cImljb25zLmRvd25sb2FkXCI+PC9zdmctaWNvbj5cbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgIEBpZiAoXG4gICAgICAgICAgICAgICAgICAgICAgICBjb25maWcudHlwZSAhPSAnZGV0YWlscycgJiZcbiAgICAgICAgICAgICAgICAgICAgICAgIGNvbmZpZy50eXBlICE9ICd0b2RvJyAmJlxuICAgICAgICAgICAgICAgICAgICAgICAgcmV2aWV3RmlsZUNvbmZpZy5yZXZpZXdNb2RlICE9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgcmV2aWV3U3RhdGUuUkVWSUVXX01PREUgJiZcbiAgICAgICAgICAgICAgICAgICAgICAgIGNvbmZpZy5maWxlPy5maWxlTmFtZVxuICAgICAgICAgICAgICAgICAgICApIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBuZ2JUb29sdGlwXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgbWFpblRvb2x0aXA9XCJEZWxldGVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRvb2x0aXBCYWNrZ3JvdW5kPVwiI0VGNTM1MFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgcG9zaXRpb249XCJ0b3BcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwidGEtdXBsb2FkLWFjdGlvbi1kZWxldGVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIChjbGljayk9XCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgY29uZmlnLmZpbGUuZmlsZU5hbWUgJiZcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIG9wZW5EZWxldGVQb3B1cChjb25maWcuZmlsZS5maWxlTmFtZSlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBcIlxuICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzdmctaWNvbiBbc3JjXT1cImljb25zLnRyYXNoXCI+PC9zdmctaWNvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICBAaWYgKFxuICAgICAgICAgICAgICAgIHJldmlld0ZpbGVDb25maWcuaXNSZXZpZXcgJiZcbiAgICAgICAgICAgICAgICByZXZpZXdGaWxlQ29uZmlnLnJldmlld01vZGUgPT09IHJldmlld1N0YXRlLkZFRURCQUNLX01PREVcbiAgICAgICAgICAgICkge1xuICAgICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICAgICAgbmdiVG9vbHRpcFxuICAgICAgICAgICAgICAgICAgICBtYWluVG9vbHRpcD1cIk1hcmtlZCBJbmNvcnJlY3RcIlxuICAgICAgICAgICAgICAgICAgICB0b29sdGlwQmFja2dyb3VuZD1cIiNFRjUzNTBcIlxuICAgICAgICAgICAgICAgICAgICBwb3NpdGlvbj1cInRvcFwiXG4gICAgICAgICAgICAgICAgICAgIGNsYXNzPVwidGEtdXBsb2FkLWFjdGlvbi1mZWVkYmFjay1pbmNvcnJlY3QtbWFyayBkLWZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBhbGlnbi1pdGVtcy1jZW50ZXJcIlxuICAgICAgICAgICAgICAgICAgICAoY2xpY2spPVwib25BY3Rpb24oZG9jdW1lbnRBY3Rpb24uTUFSS19JTkNPUlJFQ1QpXCJcbiAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgIDxzdmctaWNvbiBbc3JjXT1cImljb25zLmNsb3NlXCI+PC9zdmctaWNvbj5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIH1cbiAgICAgICAgPC9kaXY+XG4gICAgfVxuXG4gICAgPCEtLSBGaWxlIENvbnRlbnQgLS0+XG4gICAgPGRpdiBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWNvbnRlbnQgIHt7IGNvbmZpZy5jdXN0b21DbGFzc05hbWUgfX1cIj5cbiAgICAgICAgPCEtLSBQZGYgQ29udGVudCAtLT5cbiAgICAgICAgQGlmIChcbiAgICAgICAgICAgIGNvbmZpZy5maWxlPy5leHRlbnNpb24/LnRvTG93ZXJDYXNlKCkgPT09ICdwZGYnICYmIGNvbmZpZy5maWxlPy51cmxcbiAgICAgICAgKSB7XG4gICAgICAgICAgICA8cGRmLXZpZXdlclxuICAgICAgICAgICAgICAgIFtzcmNdPVwiY29uZmlnLmZpbGUudXJsXCJcbiAgICAgICAgICAgICAgICBbKHBhZ2UpXT1cImNvbmZpZy5hY3RpdmVQYWdlXCJcbiAgICAgICAgICAgICAgICBjbGFzcz1cInBkZl92aWV3ZXJcIlxuICAgICAgICAgICAgICAgIFtyb3RhdGlvbl09XCIwXCJcbiAgICAgICAgICAgICAgICBbb3JpZ2luYWwtc2l6ZV09XCJmYWxzZVwiXG4gICAgICAgICAgICAgICAgW3Nob3ctYWxsXT1cInRydWVcIlxuICAgICAgICAgICAgICAgIFtmaXQtdG8tcGFnZV09XCJmYWxzZVwiXG4gICAgICAgICAgICAgICAgW3pvb21dPVwiMVwiXG4gICAgICAgICAgICAgICAgW3pvb20tc2NhbGVdPVwiJ3BhZ2Utd2lkdGgnXCJcbiAgICAgICAgICAgICAgICBbc3RpY2stdG8tcGFnZV09XCJmYWxzZVwiXG4gICAgICAgICAgICAgICAgW3JlbmRlci10ZXh0XT1cInRydWVcIlxuICAgICAgICAgICAgICAgIFtleHRlcm5hbC1saW5rLXRhcmdldF09XCInYmxhbmsnXCJcbiAgICAgICAgICAgICAgICBbYXV0b3Jlc2l6ZV09XCJ0cnVlXCJcbiAgICAgICAgICAgICAgICBbc2hvdy1ib3JkZXJzXT1cImZhbHNlXCJcbiAgICAgICAgICAgICAgICAoYWZ0ZXItbG9hZC1jb21wbGV0ZSk9XCJhZnRlckxvYWRDb21wbGV0ZSgkZXZlbnQpXCJcbiAgICAgICAgICAgICAgICAocGFnZS1yZW5kZXJlZCk9XCJwYWdlUmVuZGVyZWQoJGV2ZW50KVwiXG4gICAgICAgICAgICA+PC9wZGYtdmlld2VyPlxuICAgICAgICB9XG5cbiAgICAgICAgPCEtLSBNZWRpYSBDb250ZW50IC0tPlxuICAgICAgICA8ZGl2XG4gICAgICAgICAgICBjbGFzcz1cImQtZmxleCBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyIGFsaWduLWl0ZW1zLWNlbnRlciBpbWFnZV9tYWluX2hvbGRlciB7e1xuICAgICAgICAgICAgICAgIGNvbmZpZy5jdXN0b21DbGFzc05hbWVcbiAgICAgICAgICAgIH19XCJcbiAgICAgICAgPlxuICAgICAgICAgICAgPCEtLSBJbWFnZSBDb250ZW50IC0tPlxuICAgICAgICAgICAgQGlmIChpc0ltYWdlRmlsZSAmJiBjb25maWcuZmlsZT8udXJsKSB7XG4gICAgICAgICAgICAgICAgPGltZ1xuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWltYWdlXCJcbiAgICAgICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwie1xuICAgICAgICAgICAgICAgICAgICAgICAgZGV0YWlsc19pbWFnZTpcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBjb25maWcudHlwZSA9PT0gJ2RldGFpbHMnIHx8IGNvbmZpZy50eXBlID09PSAndG9kbycsXG4gICAgICAgICAgICAgICAgICAgIH1cIlxuICAgICAgICAgICAgICAgICAgICBbc3JjXT1cImNvbmZpZy5maWxlLnVybFwiXG4gICAgICAgICAgICAgICAgICAgIFthbHRdPVwiY29uZmlnLmZpbGU/LmZpbGVOYW1lXCJcbiAgICAgICAgICAgICAgICAvPlxuICAgICAgICAgICAgfVxuICAgICAgICAgICAgPCEtLSBWaWRlbyBUdW1ibmFpbCAtLT5cbiAgICAgICAgICAgIEBlbHNlIGlmIChpc1ZpZGVvRmlsZSAmJiAhZG9jdW1lbnRMb2FkaW5nKSB7XG4gICAgICAgICAgICAgICAgPGltZ1xuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWltYWdlXCJcbiAgICAgICAgICAgICAgICAgICAgW3NyY109XCJ2aWRlb1RodW1ibmFpbFwiXG4gICAgICAgICAgICAgICAgICAgIFthbHRdPVwiY29uZmlnLmZpbGU/LmZpbGVOYW1lXCJcbiAgICAgICAgICAgICAgICAvPlxuICAgICAgICAgICAgfSBAZWxzZSB7XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInNwaW5uZXJcIj5cbiAgICAgICAgICAgICAgICAgICAgPGFwcC1jYS1zcGlubmVyXG4gICAgICAgICAgICAgICAgICAgICAgICBbc2l6ZV09XCInc21hbGwnXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtjb2xvcl09XCInYmx1ZURhcmsnXCJcbiAgICAgICAgICAgICAgICAgICAgPjwvYXBwLWNhLXNwaW5uZXI+XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICB9XG4gICAgICAgIDwvZGl2PlxuXG4gICAgICAgIDwhLS0gVGFnIENvbnRlbnQgLS0+XG4gICAgICAgIEBpZiAoXG4gICAgICAgICAgICAoY29uZmlnLmhhc1RhZ3NEcm9wZG93biB8fFxuICAgICAgICAgICAgICAgIGNvbmZpZy5jdXN0b21DbGFzc05hbWUgPT09ICd0YWJsZS1kZXRhaWxzJyB8fFxuICAgICAgICAgICAgICAgIGNvbmZpZy5jdXN0b21DbGFzc05hbWUgPT09ICdkcml2ZXItY2FyZC1wZGYnKSAmJlxuICAgICAgICAgICAgY29uZmlnLmZpbGU/LnRhZ3MgJiZcbiAgICAgICAgICAgIGNvbmZpZy5maWxlPy50YWdzICE9PSAnJyAmJlxuICAgICAgICAgICAgY29uZmlnLmZpbGU/LnRhZ3MgIT09ICdObyBUYWcnXG4gICAgICAgICkge1xuICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgIGNsYXNzPVwidGEtdXBsb2FkLWZpbGUtdGFnXCJcbiAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgICAgICAgICAgICAgIGRlZmF1bHQ6ICFjb25maWcuZmlsZT8udGFnR2VuZXJhdGVkQnlVc2VyLFxuICAgICAgICAgICAgICAgICAgICB0YWdSZW1vdmluZzogY29uZmlnLmZpbGU/LnRhZ3MubGVuZ3RoID09PSAwLFxuICAgICAgICAgICAgICAgIH1cIlxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgIDxzcGFuPnt7XG4gICAgICAgICAgICAgICAgICAgIGNvbmZpZy5maWxlPy50YWdzIHx8IHJldmlld0ZpbGVDb25maWcuY2F0ZWdvcnlUYWcgfHwgJydcbiAgICAgICAgICAgICAgICB9fTwvc3Bhbj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICB9XG4gICAgPC9kaXY+XG5cbiAgICA8IS0tIEZpbGUgRGVsZXRlIFRlbXBsYXRlIC0tPlxuICAgIEBpZiAoaXNGaWxlRGVsZXRlKSB7XG4gICAgICAgIDxkaXZcbiAgICAgICAgICAgIGNsYXNzPVwidGEtdXBsb2FkLWZpbGUtZGVsZXRlLXRlbXBsYXRlIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIgZmxleC1jb2x1bW4ge3tcbiAgICAgICAgICAgICAgICBjb25maWcuY3VzdG9tQ2xhc3NOYW1lXG4gICAgICAgICAgICB9fVwiXG4gICAgICAgID5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0YS11cGxvYWQtZmlsZS1kZWxldGUtdGV4dFwiPlxuICAgICAgICAgICAgICAgIEFyZSB5b3Ugc3VyZSB5b3Ugd2FudCB0byBkZWxldGUgZmlsZT9cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPGRpdlxuICAgICAgICAgICAgICAgIGNsYXNzPVwidGEtdXBsb2FkLWZpbGUtYnRuIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIganVzdGlmeS1jb250ZW50LWNlbnRlciB0YS11cGxvYWQtZmlsZS1idG4tZGVsZXRlXCJcbiAgICAgICAgICAgICAgICAoY2xpY2spPVwib25BY3Rpb24oZG9jdW1lbnRBY3Rpb24uREVMRVRFKVwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgREVMRVRFXG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWJ0biBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXIgdGEtdXBsb2FkLWZpbGUtYnRuLWNhbmNlbFwiXG4gICAgICAgICAgICAgICAgKGNsaWNrKT1cIm9uQWN0aW9uKGRvY3VtZW50QWN0aW9uLkNBTkNFTClcIlxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgIENBTkNFTFxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgIH1cblxuICAgIDwhLS0gRmlsZSBGb290ZXIgSW5mb3JtYXRpb24gLS0+XG4gICAgQGlmICghcmV2aWV3RmlsZUNvbmZpZy5pc0Zvb3RlckhpZGRlbikge1xuICAgICAgICA8ZGl2XG4gICAgICAgICAgICBjbGFzcz1cInRhLXVwbG9hZC1maWxlLWZvb3RlclwiXG4gICAgICAgICAgICBbbmdDbGFzc109XCJ7ICdlZGl0LW1vZGUnOiBlZGl0RmlsZSB9XCJcbiAgICAgICAgICAgIChjbGljayk9XCJvbkVkaXRGaWxlKClcIlxuICAgICAgICA+XG4gICAgICAgICAgICA8IS0tIE5vIGVkaXQgbW9kZSAtLT5cbiAgICAgICAgICAgIEBpZiAoIWlzRmlsZURlbGV0ZSkge1xuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJmb290ZXJfaW5mbyBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyXCI+XG4gICAgICAgICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwidGEtdXBsb2FkLWZpbGUtZXh0IHRhLXVwbG9hZC1maWxlLWV4dC17e1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNvbmZpZy5maWxlPy5leHRlbnNpb25cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPyAoY29uZmlnLmZpbGU/LnJlYWxGaWxlLnR5cGVcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB8IG1pbWVUeXBlVG9FeHRlbnNpb25cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB8IGxvd2VyY2FzZSlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgOiAnJ1xuICAgICAgICAgICAgICAgICAgICAgICAgfX1cIlxuICAgICAgICAgICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwieyAnbm8tdGFnJzogIWNvbmZpZy5maWxlPy50YWdzIH1cIlxuICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2PlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHt7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNvbmZpZy5maWxlPy5yZWFsRmlsZS50eXBlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB8IG1pbWVUeXBlVG9FeHRlbnNpb25cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHwgdXBwZXJjYXNlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgfX1cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImRvY3VtZW50X2luZm9faG9sZCBkLWZsZXhcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgIEBpZiAobnVtYmVyT2ZGaWxlUGFnZXMpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwicGRmX3BhZ2Vfc2l6ZVwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7eyBudW1iZXJPZkZpbGVQYWdlcyB9fVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJmaWxlX3NpemVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgaGFzX3BhZ2VzOiBudW1iZXJPZkZpbGVQYWdlcyxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XCJcbiAgICAgICAgICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB7eyBjb25maWcuZmlsZT8uc2l6ZSB8fCAwIHwgYnl0ZUNvbnZlcnQgfX1cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIEBpZiAoIWVkaXRGaWxlKSB7XG4gICAgICAgICAgICAgICAgPHBcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJ0YS11cGxvYWQtZmlsZS1uYW1lXCJcbiAgICAgICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwie1xuICAgICAgICAgICAgICAgICAgICAgICAgZGV0YWlsc190aXRsZTogY29uZmlnLnR5cGUgPT09ICdkZXRhaWxzJyxcbiAgICAgICAgICAgICAgICAgICAgICAgIHRvZG9fdGl0bGU6IGNvbmZpZy50eXBlID09PSAndG9kbycsXG4gICAgICAgICAgICAgICAgICAgIH1cIlxuICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAge3sgZmlsZU5hbWUgfX1cbiAgICAgICAgICAgICAgICA8L3A+XG4gICAgICAgICAgICB9IEBlbHNlIHtcbiAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiZWRpdE1vZGVcIj48L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgPG5nLXRlbXBsYXRlICNlZGl0TW9kZT5cbiAgICAgICAgICAgICAgICA8YXBwLWNhLWlucHV0XG4gICAgICAgICAgICAgICAgICAgIFtmb3JtQ29udHJvbF09XCJmaWxlTmV3TmFtZVwiXG4gICAgICAgICAgICAgICAgICAgIFtpbnB1dENvbmZpZ109XCJmaWxlSW5wdXRDb25maWdcIlxuICAgICAgICAgICAgICAgICAgICAoYmx1cklucHV0KT1cIm9uQmx1cklucHV0KCRldmVudClcIlxuICAgICAgICAgICAgICAgID48L2FwcC1jYS1pbnB1dD5cbiAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgIDwvZGl2PlxuICAgIH1cbjwvZGl2PlxuXG48bmctdGVtcGxhdGUgI3RhZ3NQb3BvdmVyIGxldC1kYXRhPVwiZGF0YVwiPlxuICAgIDxkaXYgY2xhc3M9XCJ0YWdzX21haW5faG9sZGVyXCI+XG4gICAgICAgIEBpZiAoY29uZmlnLmZpbGU/LnRhZ3M/Lmxlbmd0aCkge1xuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInJlbW92ZV90YWdfaG9sZGVyXCIgKGNsaWNrKT1cInJlbW92ZVRhZygpXCI+XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInJlbW92ZV90YWdcIj5SZW1vdmUgVGFnPC9kaXY+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJyZW1vdmVfdGFnX2JvcmRlcl9ob2xkZXJcIj5cbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwicmVtb3ZlX3RhZ19ib3JkZXJcIj48L2Rpdj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICB9XG4gICAgICAgIEBmb3IgKFxuICAgICAgICAgICAgdGFnIG9mIGNvbmZpZz8udGFnc09wdGlvbnM7XG4gICAgICAgICAgICBsZXQgaSA9ICRpbmRleCxcbiAgICAgICAgICAgIGZpcnN0ID0gJGZpcnN0LFxuICAgICAgICAgICAgbGFzdCA9ICRsYXN0O1xuICAgICAgICAgICAgdHJhY2sgaVxuICAgICAgICApIHtcbiAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICBjbGFzcz1cInRhZ3NfaW5uZXJfaG9sZGVyIGQtZmxleCBhbGlnbi1pdGVtcy1jZW50ZXJcIlxuICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICAgICAgICAgICAgICAgZmlyc3RSb3c6IGZpcnN0LFxuICAgICAgICAgICAgICAgICAgICBsYXN0Um93OiBsYXN0LFxuICAgICAgICAgICAgICAgIH1cIlxuICAgICAgICAgICAgICAgIChjbGljayk9XCJzZWxlY3RUYWcodGFnPy50YWdOYW1lKVwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInRhZ19vcHRpb25zX2hvbGRlciBkLWZsZXggYWxpZ24taXRlbXMtY2VudGVyXCI+XG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0YWdfbmFtZVwiIFtuZ0NsYXNzXT1cInsgY2hlY2tlZDogdGFnLmNoZWNrZWQgfVwiPlxuICAgICAgICAgICAgICAgICAgICAgICAge3sgdGFnLnRhZ05hbWUgfX1cbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwiY2hlY2tlZF9pY29uXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgc2hvd246IHRhZy5jaGVja2VkIH1cIlxuICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICA8c3ZnLWljb24gW3NyY109XCJpY29ucy5jb25maXJtXCI+PC9zdmctaWNvbj5cbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgfVxuICAgIDwvZGl2PlxuPC9uZy10ZW1wbGF0ZT5cbiJdfQ==
|