dnd-filing-shell-test 2.1.0 → 2.2.1
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/dnd-filing-shell.js +55 -416
- package/package.json +1 -1
package/dnd-filing-shell.js
CHANGED
|
@@ -2393,6 +2393,36 @@
|
|
|
2393
2393
|
|
|
2394
2394
|
requirePolyfills();
|
|
2395
2395
|
|
|
2396
|
+
function styleInject(css, ref) {
|
|
2397
|
+
if ( ref === void 0 ) ref = {};
|
|
2398
|
+
var insertAt = ref.insertAt;
|
|
2399
|
+
|
|
2400
|
+
if (typeof document === 'undefined') { return; }
|
|
2401
|
+
|
|
2402
|
+
var head = document.head || document.getElementsByTagName('head')[0];
|
|
2403
|
+
var style = document.createElement('style');
|
|
2404
|
+
style.type = 'text/css';
|
|
2405
|
+
|
|
2406
|
+
if (insertAt === 'top') {
|
|
2407
|
+
if (head.firstChild) {
|
|
2408
|
+
head.insertBefore(style, head.firstChild);
|
|
2409
|
+
} else {
|
|
2410
|
+
head.appendChild(style);
|
|
2411
|
+
}
|
|
2412
|
+
} else {
|
|
2413
|
+
head.appendChild(style);
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
if (style.styleSheet) {
|
|
2417
|
+
style.styleSheet.cssText = css;
|
|
2418
|
+
} else {
|
|
2419
|
+
style.appendChild(document.createTextNode(css));
|
|
2420
|
+
}
|
|
2421
|
+
}
|
|
2422
|
+
|
|
2423
|
+
var css_248z = "/* src/material-theme.scss */\nhtml {\n --mat-ripple-color: rgba(0, 0, 0, 0.1);\n}\nhtml {\n --mat-option-selected-state-label-text-color: #3f51b5;\n --mat-option-label-text-color: rgba(0, 0, 0, 0.87);\n --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);\n --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);\n --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);\n}\n.mat-accent {\n --mat-option-selected-state-label-text-color: #e91e63;\n --mat-option-label-text-color: rgba(0, 0, 0, 0.87);\n --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);\n --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);\n --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);\n}\n.mat-warn {\n --mat-option-selected-state-label-text-color: #f44336;\n --mat-option-label-text-color: rgba(0, 0, 0, 0.87);\n --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);\n --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);\n --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);\n}\nhtml {\n --mat-optgroup-label-text-color: rgba(0, 0, 0, 0.87);\n}\nhtml {\n --mat-full-pseudo-checkbox-selected-icon-color: #e91e63;\n --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;\n --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;\n --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;\n --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;\n}\nhtml {\n --mat-minimal-pseudo-checkbox-selected-checkmark-color: #e91e63;\n --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;\n}\n.mat-primary {\n --mat-full-pseudo-checkbox-selected-icon-color: #3f51b5;\n --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;\n --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;\n --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;\n --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;\n}\n.mat-primary {\n --mat-minimal-pseudo-checkbox-selected-checkmark-color: #3f51b5;\n --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;\n}\n.mat-accent {\n --mat-full-pseudo-checkbox-selected-icon-color: #e91e63;\n --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;\n --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;\n --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;\n --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;\n}\n.mat-accent {\n --mat-minimal-pseudo-checkbox-selected-checkmark-color: #e91e63;\n --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;\n}\n.mat-warn {\n --mat-full-pseudo-checkbox-selected-icon-color: #f44336;\n --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;\n --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;\n --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;\n --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;\n}\n.mat-warn {\n --mat-minimal-pseudo-checkbox-selected-checkmark-color: #f44336;\n --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;\n}\nhtml {\n --mat-app-background-color: #fafafa;\n --mat-app-text-color: rgba(0, 0, 0, 0.87);\n --mat-app-elevation-shadow-level-0:\n 0px 0px 0px 0px rgba(0, 0, 0, 0.2),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.14),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-1:\n 0px 2px 1px -1px rgba(0, 0, 0, 0.2),\n 0px 1px 1px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-2:\n 0px 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0px 2px 2px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-3:\n 0px 3px 3px -2px rgba(0, 0, 0, 0.2),\n 0px 3px 4px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-4:\n 0px 2px 4px -1px rgba(0, 0, 0, 0.2),\n 0px 4px 5px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-5:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 5px 8px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 14px 0px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-6:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 6px 10px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-7:\n 0px 4px 5px -2px rgba(0, 0, 0, 0.2),\n 0px 7px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 2px 16px 1px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-8:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-9:\n 0px 5px 6px -3px rgba(0, 0, 0, 0.2),\n 0px 9px 12px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 16px 2px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-10:\n 0px 6px 6px -3px rgba(0, 0, 0, 0.2),\n 0px 10px 14px 1px rgba(0, 0, 0, 0.14),\n 0px 4px 18px 3px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-11:\n 0px 6px 7px -4px rgba(0, 0, 0, 0.2),\n 0px 11px 15px 1px rgba(0, 0, 0, 0.14),\n 0px 4px 20px 3px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-12:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 12px 17px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-13:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 13px 19px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 24px 4px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-14:\n 0px 7px 9px -4px rgba(0, 0, 0, 0.2),\n 0px 14px 21px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 26px 4px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-15:\n 0px 8px 9px -5px rgba(0, 0, 0, 0.2),\n 0px 15px 22px 2px rgba(0, 0, 0, 0.14),\n 0px 6px 28px 5px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-16:\n 0px 8px 10px -5px rgba(0, 0, 0, 0.2),\n 0px 16px 24px 2px rgba(0, 0, 0, 0.14),\n 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-17:\n 0px 8px 11px -5px rgba(0, 0, 0, 0.2),\n 0px 17px 26px 2px rgba(0, 0, 0, 0.14),\n 0px 6px 32px 5px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-18:\n 0px 9px 11px -5px rgba(0, 0, 0, 0.2),\n 0px 18px 28px 2px rgba(0, 0, 0, 0.14),\n 0px 7px 34px 6px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-19:\n 0px 9px 12px -6px rgba(0, 0, 0, 0.2),\n 0px 19px 29px 2px rgba(0, 0, 0, 0.14),\n 0px 7px 36px 6px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-20:\n 0px 10px 13px -6px rgba(0, 0, 0, 0.2),\n 0px 20px 31px 3px rgba(0, 0, 0, 0.14),\n 0px 8px 38px 7px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-21:\n 0px 10px 13px -6px rgba(0, 0, 0, 0.2),\n 0px 21px 33px 3px rgba(0, 0, 0, 0.14),\n 0px 8px 40px 7px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-22:\n 0px 10px 14px -6px rgba(0, 0, 0, 0.2),\n 0px 22px 35px 3px rgba(0, 0, 0, 0.14),\n 0px 8px 42px 7px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-23:\n 0px 11px 14px -7px rgba(0, 0, 0, 0.2),\n 0px 23px 36px 3px rgba(0, 0, 0, 0.14),\n 0px 9px 44px 8px rgba(0, 0, 0, 0.12);\n --mat-app-elevation-shadow-level-24:\n 0px 11px 15px -7px rgba(0, 0, 0, 0.2),\n 0px 24px 38px 3px rgba(0, 0, 0, 0.14),\n 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mdc-elevated-card-container-shape: 4px;\n}\nhtml {\n --mdc-outlined-card-container-shape: 4px;\n --mdc-outlined-card-outline-width: 1px;\n}\nhtml {\n --mdc-elevated-card-container-color: white;\n --mdc-elevated-card-container-elevation:\n 0px 2px 1px -1px rgba(0, 0, 0, 0.2),\n 0px 1px 1px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mdc-outlined-card-container-color: white;\n --mdc-outlined-card-outline-color: rgba(0, 0, 0, 0.12);\n --mdc-outlined-card-container-elevation:\n 0px 0px 0px 0px rgba(0, 0, 0, 0.2),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.14),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mat-card-subtitle-text-color: rgba(0, 0, 0, 0.54);\n}\nhtml {\n --mdc-linear-progress-active-indicator-height: 4px;\n --mdc-linear-progress-track-height: 4px;\n --mdc-linear-progress-track-shape: 0;\n}\n.mat-mdc-progress-bar {\n --mdc-linear-progress-active-indicator-color: #3f51b5;\n --mdc-linear-progress-track-color: rgba(63, 81, 181, 0.25);\n}\n.mat-mdc-progress-bar.mat-accent {\n --mdc-linear-progress-active-indicator-color: #e91e63;\n --mdc-linear-progress-track-color: rgba(233, 30, 99, 0.25);\n}\n.mat-mdc-progress-bar.mat-warn {\n --mdc-linear-progress-active-indicator-color: #f44336;\n --mdc-linear-progress-track-color: rgba(244, 67, 54, 0.25);\n}\nhtml {\n --mdc-plain-tooltip-container-shape: 4px;\n --mdc-plain-tooltip-supporting-text-line-height: 16px;\n}\nhtml {\n --mdc-plain-tooltip-container-color: #616161;\n --mdc-plain-tooltip-supporting-text-color: #fff;\n}\nhtml {\n --mdc-filled-text-field-active-indicator-height: 1px;\n --mdc-filled-text-field-focus-active-indicator-height: 2px;\n --mdc-filled-text-field-container-shape: 4px;\n}\nhtml {\n --mdc-outlined-text-field-outline-width: 1px;\n --mdc-outlined-text-field-focus-outline-width: 2px;\n --mdc-outlined-text-field-container-shape: 4px;\n}\nhtml {\n --mdc-filled-text-field-caret-color: #3f51b5;\n --mdc-filled-text-field-focus-active-indicator-color: #3f51b5;\n --mdc-filled-text-field-focus-label-text-color: rgba(63, 81, 181, 0.87);\n --mdc-filled-text-field-container-color: rgb(244.8, 244.8, 244.8);\n --mdc-filled-text-field-disabled-container-color: rgb(249.9, 249.9, 249.9);\n --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.6);\n --mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);\n --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);\n --mdc-filled-text-field-input-text-color: rgba(0, 0, 0, 0.87);\n --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);\n --mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);\n --mdc-filled-text-field-error-hover-label-text-color: #f44336;\n --mdc-filled-text-field-error-focus-label-text-color: #f44336;\n --mdc-filled-text-field-error-label-text-color: #f44336;\n --mdc-filled-text-field-error-caret-color: #f44336;\n --mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, 0.42);\n --mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, 0.06);\n --mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, 0.87);\n --mdc-filled-text-field-error-active-indicator-color: #f44336;\n --mdc-filled-text-field-error-focus-active-indicator-color: #f44336;\n --mdc-filled-text-field-error-hover-active-indicator-color: #f44336;\n}\nhtml {\n --mdc-outlined-text-field-caret-color: #3f51b5;\n --mdc-outlined-text-field-focus-outline-color: #3f51b5;\n --mdc-outlined-text-field-focus-label-text-color: rgba(63, 81, 181, 0.87);\n --mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, 0.6);\n --mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);\n --mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);\n --mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, 0.87);\n --mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);\n --mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);\n --mdc-outlined-text-field-error-caret-color: #f44336;\n --mdc-outlined-text-field-error-focus-label-text-color: #f44336;\n --mdc-outlined-text-field-error-label-text-color: #f44336;\n --mdc-outlined-text-field-error-hover-label-text-color: #f44336;\n --mdc-outlined-text-field-outline-color: rgba(0, 0, 0, 0.38);\n --mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, 0.06);\n --mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, 0.87);\n --mdc-outlined-text-field-error-focus-outline-color: #f44336;\n --mdc-outlined-text-field-error-hover-outline-color: #f44336;\n --mdc-outlined-text-field-error-outline-color: #f44336;\n}\nhtml {\n --mat-form-field-focus-select-arrow-color: rgba(63, 81, 181, 0.87);\n --mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, 0.38);\n --mat-form-field-state-layer-color: rgba(0, 0, 0, 0.87);\n --mat-form-field-error-text-color: #f44336;\n --mat-form-field-select-option-text-color: inherit;\n --mat-form-field-select-disabled-option-text-color: GrayText;\n --mat-form-field-leading-icon-color: unset;\n --mat-form-field-disabled-leading-icon-color: unset;\n --mat-form-field-trailing-icon-color: unset;\n --mat-form-field-disabled-trailing-icon-color: unset;\n --mat-form-field-error-focus-trailing-icon-color: unset;\n --mat-form-field-error-hover-trailing-icon-color: unset;\n --mat-form-field-error-trailing-icon-color: unset;\n --mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, 0.54);\n --mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, 0.38);\n --mat-form-field-hover-state-layer-opacity: 0.04;\n --mat-form-field-focus-state-layer-opacity: 0.08;\n}\n.mat-mdc-form-field.mat-accent {\n --mdc-filled-text-field-caret-color: #e91e63;\n --mdc-filled-text-field-focus-active-indicator-color: #e91e63;\n --mdc-filled-text-field-focus-label-text-color: rgba(233, 30, 99, 0.87);\n}\n.mat-mdc-form-field.mat-accent {\n --mdc-outlined-text-field-caret-color: #e91e63;\n --mdc-outlined-text-field-focus-outline-color: #e91e63;\n --mdc-outlined-text-field-focus-label-text-color: rgba(233, 30, 99, 0.87);\n}\n.mat-mdc-form-field.mat-accent {\n --mat-form-field-focus-select-arrow-color: rgba(233, 30, 99, 0.87);\n}\n.mat-mdc-form-field.mat-warn {\n --mdc-filled-text-field-caret-color: #f44336;\n --mdc-filled-text-field-focus-active-indicator-color: #f44336;\n --mdc-filled-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);\n}\n.mat-mdc-form-field.mat-warn {\n --mdc-outlined-text-field-caret-color: #f44336;\n --mdc-outlined-text-field-focus-outline-color: #f44336;\n --mdc-outlined-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);\n}\n.mat-mdc-form-field.mat-warn {\n --mat-form-field-focus-select-arrow-color: rgba(244, 67, 54, 0.87);\n}\nhtml {\n --mat-form-field-container-height: 56px;\n --mat-form-field-filled-label-display: block;\n --mat-form-field-container-vertical-padding: 16px;\n --mat-form-field-filled-with-label-container-padding-top: 24px;\n --mat-form-field-filled-with-label-container-padding-bottom: 8px;\n}\nhtml {\n --mat-select-container-elevation-shadow:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mat-select-panel-background-color: white;\n --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);\n --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);\n --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);\n --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);\n --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);\n --mat-select-focused-arrow-color: rgba(63, 81, 181, 0.87);\n --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);\n}\nhtml .mat-mdc-form-field.mat-accent {\n --mat-select-panel-background-color: white;\n --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);\n --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);\n --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);\n --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);\n --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);\n --mat-select-focused-arrow-color: rgba(233, 30, 99, 0.87);\n --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);\n}\nhtml .mat-mdc-form-field.mat-warn {\n --mat-select-panel-background-color: white;\n --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);\n --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);\n --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);\n --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);\n --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);\n --mat-select-focused-arrow-color: rgba(244, 67, 54, 0.87);\n --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);\n}\nhtml {\n --mat-select-arrow-transform: translateY(-8px);\n}\nhtml {\n --mat-autocomplete-container-shape: 4px;\n --mat-autocomplete-container-elevation-shadow:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mat-autocomplete-background-color: white;\n}\nhtml {\n --mdc-dialog-container-shape: 4px;\n}\nhtml {\n --mat-dialog-container-elevation-shadow:\n 0px 11px 15px -7px rgba(0, 0, 0, 0.2),\n 0px 24px 38px 3px rgba(0, 0, 0, 0.14),\n 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\n --mat-dialog-container-max-width: 80vw;\n --mat-dialog-container-small-max-width: 80vw;\n --mat-dialog-container-min-width: 0;\n --mat-dialog-actions-alignment: start;\n --mat-dialog-actions-padding: 8px;\n --mat-dialog-content-padding: 20px 24px;\n --mat-dialog-with-actions-content-padding: 20px 24px;\n --mat-dialog-headline-padding: 0 24px 9px;\n}\nhtml {\n --mdc-dialog-container-color: white;\n --mdc-dialog-subhead-color: rgba(0, 0, 0, 0.87);\n --mdc-dialog-supporting-text-color: rgba(0, 0, 0, 0.6);\n}\n.mat-mdc-standard-chip {\n --mdc-chip-container-shape-radius: 16px;\n --mdc-chip-with-avatar-avatar-shape-radius: 14px;\n --mdc-chip-with-avatar-avatar-size: 28px;\n --mdc-chip-with-icon-icon-size: 18px;\n --mdc-chip-outline-width: 0;\n --mdc-chip-outline-color: transparent;\n --mdc-chip-disabled-outline-color: transparent;\n --mdc-chip-focus-outline-color: transparent;\n --mdc-chip-hover-state-layer-opacity: 0.04;\n --mdc-chip-with-avatar-disabled-avatar-opacity: 1;\n --mdc-chip-flat-selected-outline-width: 0;\n --mdc-chip-selected-hover-state-layer-opacity: 0.04;\n --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;\n --mdc-chip-with-icon-disabled-icon-opacity: 1;\n}\n.mat-mdc-standard-chip {\n --mat-chip-disabled-container-opacity: 0.4;\n --mat-chip-trailing-action-opacity: 0.54;\n --mat-chip-trailing-action-focus-opacity: 1;\n --mat-chip-trailing-action-state-layer-color: transparent;\n --mat-chip-selected-trailing-action-state-layer-color: transparent;\n --mat-chip-trailing-action-hover-state-layer-opacity: 0;\n --mat-chip-trailing-action-focus-state-layer-opacity: 0;\n}\n.mat-mdc-standard-chip {\n --mdc-chip-disabled-label-text-color: #212121;\n --mdc-chip-elevated-container-color: rgb(224.4, 224.4, 224.4);\n --mdc-chip-elevated-selected-container-color: rgb(224.4, 224.4, 224.4);\n --mdc-chip-elevated-disabled-container-color: rgb(224.4, 224.4, 224.4);\n --mdc-chip-flat-disabled-selected-container-color: rgb(224.4, 224.4, 224.4);\n --mdc-chip-focus-state-layer-color: black;\n --mdc-chip-hover-state-layer-color: black;\n --mdc-chip-selected-hover-state-layer-color: black;\n --mdc-chip-focus-state-layer-opacity: 0.12;\n --mdc-chip-selected-focus-state-layer-color: black;\n --mdc-chip-selected-focus-state-layer-opacity: 0.12;\n --mdc-chip-label-text-color: #212121;\n --mdc-chip-selected-label-text-color: #212121;\n --mdc-chip-with-icon-icon-color: #212121;\n --mdc-chip-with-icon-disabled-icon-color: #212121;\n --mdc-chip-with-icon-selected-icon-color: #212121;\n --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;\n --mdc-chip-with-trailing-icon-trailing-icon-color: #212121;\n}\n.mat-mdc-standard-chip {\n --mat-chip-selected-disabled-trailing-icon-color: #212121;\n --mat-chip-selected-trailing-icon-color: #212121;\n}\n.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,\n.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {\n --mdc-chip-disabled-label-text-color: white;\n --mdc-chip-elevated-container-color: #3f51b5;\n --mdc-chip-elevated-selected-container-color: #3f51b5;\n --mdc-chip-elevated-disabled-container-color: #3f51b5;\n --mdc-chip-flat-disabled-selected-container-color: #3f51b5;\n --mdc-chip-focus-state-layer-color: black;\n --mdc-chip-hover-state-layer-color: black;\n --mdc-chip-selected-hover-state-layer-color: black;\n --mdc-chip-focus-state-layer-opacity: 0.12;\n --mdc-chip-selected-focus-state-layer-color: black;\n --mdc-chip-selected-focus-state-layer-opacity: 0.12;\n --mdc-chip-label-text-color: white;\n --mdc-chip-selected-label-text-color: white;\n --mdc-chip-with-icon-icon-color: white;\n --mdc-chip-with-icon-disabled-icon-color: white;\n --mdc-chip-with-icon-selected-icon-color: white;\n --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;\n --mdc-chip-with-trailing-icon-trailing-icon-color: white;\n}\n.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,\n.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {\n --mat-chip-selected-disabled-trailing-icon-color: white;\n --mat-chip-selected-trailing-icon-color: white;\n}\n.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,\n.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {\n --mdc-chip-disabled-label-text-color: white;\n --mdc-chip-elevated-container-color: #e91e63;\n --mdc-chip-elevated-selected-container-color: #e91e63;\n --mdc-chip-elevated-disabled-container-color: #e91e63;\n --mdc-chip-flat-disabled-selected-container-color: #e91e63;\n --mdc-chip-focus-state-layer-color: black;\n --mdc-chip-hover-state-layer-color: black;\n --mdc-chip-selected-hover-state-layer-color: black;\n --mdc-chip-focus-state-layer-opacity: 0.12;\n --mdc-chip-selected-focus-state-layer-color: black;\n --mdc-chip-selected-focus-state-layer-opacity: 0.12;\n --mdc-chip-label-text-color: white;\n --mdc-chip-selected-label-text-color: white;\n --mdc-chip-with-icon-icon-color: white;\n --mdc-chip-with-icon-disabled-icon-color: white;\n --mdc-chip-with-icon-selected-icon-color: white;\n --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;\n --mdc-chip-with-trailing-icon-trailing-icon-color: white;\n}\n.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,\n.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {\n --mat-chip-selected-disabled-trailing-icon-color: white;\n --mat-chip-selected-trailing-icon-color: white;\n}\n.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,\n.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {\n --mdc-chip-disabled-label-text-color: white;\n --mdc-chip-elevated-container-color: #f44336;\n --mdc-chip-elevated-selected-container-color: #f44336;\n --mdc-chip-elevated-disabled-container-color: #f44336;\n --mdc-chip-flat-disabled-selected-container-color: #f44336;\n --mdc-chip-focus-state-layer-color: black;\n --mdc-chip-hover-state-layer-color: black;\n --mdc-chip-selected-hover-state-layer-color: black;\n --mdc-chip-focus-state-layer-opacity: 0.12;\n --mdc-chip-selected-focus-state-layer-color: black;\n --mdc-chip-selected-focus-state-layer-opacity: 0.12;\n --mdc-chip-label-text-color: white;\n --mdc-chip-selected-label-text-color: white;\n --mdc-chip-with-icon-icon-color: white;\n --mdc-chip-with-icon-disabled-icon-color: white;\n --mdc-chip-with-icon-selected-icon-color: white;\n --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;\n --mdc-chip-with-trailing-icon-trailing-icon-color: white;\n}\n.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,\n.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {\n --mat-chip-selected-disabled-trailing-icon-color: white;\n --mat-chip-selected-trailing-icon-color: white;\n}\n.mat-mdc-chip.mat-mdc-standard-chip {\n --mdc-chip-container-height: 32px;\n}\nhtml {\n --mdc-switch-disabled-selected-icon-opacity: 0.38;\n --mdc-switch-disabled-track-opacity: 0.12;\n --mdc-switch-disabled-unselected-icon-opacity: 0.38;\n --mdc-switch-handle-height: 20px;\n --mdc-switch-handle-shape: 10px;\n --mdc-switch-handle-width: 20px;\n --mdc-switch-selected-icon-size: 18px;\n --mdc-switch-track-height: 14px;\n --mdc-switch-track-shape: 7px;\n --mdc-switch-track-width: 36px;\n --mdc-switch-unselected-icon-size: 18px;\n --mdc-switch-selected-focus-state-layer-opacity: 0.12;\n --mdc-switch-selected-hover-state-layer-opacity: 0.04;\n --mdc-switch-selected-pressed-state-layer-opacity: 0.1;\n --mdc-switch-unselected-focus-state-layer-opacity: 0.12;\n --mdc-switch-unselected-hover-state-layer-opacity: 0.04;\n --mdc-switch-unselected-pressed-state-layer-opacity: 0.1;\n}\nhtml .mat-mdc-slide-toggle {\n --mat-switch-disabled-selected-handle-opacity: 0.38;\n --mat-switch-disabled-unselected-handle-opacity: 0.38;\n --mat-switch-unselected-handle-size: 20px;\n --mat-switch-selected-handle-size: 20px;\n --mat-switch-pressed-handle-size: 20px;\n --mat-switch-with-icon-handle-size: 20px;\n --mat-switch-selected-handle-horizontal-margin: 0;\n --mat-switch-selected-with-icon-handle-horizontal-margin: 0;\n --mat-switch-selected-pressed-handle-horizontal-margin: 0;\n --mat-switch-unselected-handle-horizontal-margin: 0;\n --mat-switch-unselected-with-icon-handle-horizontal-margin: 0;\n --mat-switch-unselected-pressed-handle-horizontal-margin: 0;\n --mat-switch-visible-track-opacity: 1;\n --mat-switch-hidden-track-opacity: 1;\n --mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);\n --mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);\n --mat-switch-track-outline-width: 1px;\n --mat-switch-track-outline-color: transparent;\n --mat-switch-selected-track-outline-width: 1px;\n --mat-switch-selected-track-outline-color: transparent;\n --mat-switch-disabled-unselected-track-outline-width: 1px;\n --mat-switch-disabled-unselected-track-outline-color: transparent;\n}\nhtml {\n --mdc-switch-selected-focus-state-layer-color: #3949ab;\n --mdc-switch-selected-handle-color: #3949ab;\n --mdc-switch-selected-hover-state-layer-color: #3949ab;\n --mdc-switch-selected-pressed-state-layer-color: #3949ab;\n --mdc-switch-selected-focus-handle-color: #1a237e;\n --mdc-switch-selected-hover-handle-color: #1a237e;\n --mdc-switch-selected-pressed-handle-color: #1a237e;\n --mdc-switch-selected-focus-track-color: #7986cb;\n --mdc-switch-selected-hover-track-color: #7986cb;\n --mdc-switch-selected-pressed-track-color: #7986cb;\n --mdc-switch-selected-track-color: #7986cb;\n --mdc-switch-disabled-selected-handle-color: #424242;\n --mdc-switch-disabled-selected-icon-color: #fff;\n --mdc-switch-disabled-selected-track-color: #424242;\n --mdc-switch-disabled-unselected-handle-color: #424242;\n --mdc-switch-disabled-unselected-icon-color: #fff;\n --mdc-switch-disabled-unselected-track-color: #424242;\n --mdc-switch-handle-surface-color: #fff;\n --mdc-switch-selected-icon-color: #fff;\n --mdc-switch-unselected-focus-handle-color: #212121;\n --mdc-switch-unselected-focus-state-layer-color: #424242;\n --mdc-switch-unselected-focus-track-color: #e0e0e0;\n --mdc-switch-unselected-handle-color: #616161;\n --mdc-switch-unselected-hover-handle-color: #212121;\n --mdc-switch-unselected-hover-state-layer-color: #424242;\n --mdc-switch-unselected-hover-track-color: #e0e0e0;\n --mdc-switch-unselected-icon-color: #fff;\n --mdc-switch-unselected-pressed-handle-color: #212121;\n --mdc-switch-unselected-pressed-state-layer-color: #424242;\n --mdc-switch-unselected-pressed-track-color: #e0e0e0;\n --mdc-switch-unselected-track-color: #e0e0e0;\n --mdc-switch-handle-elevation-shadow:\n 0px 2px 1px -1px rgba(0, 0, 0, 0.2),\n 0px 1px 1px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\n --mdc-switch-disabled-handle-elevation-shadow:\n 0px 0px 0px 0px rgba(0, 0, 0, 0.2),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.14),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mdc-switch-disabled-label-text-color: rgba(0, 0, 0, 0.38);\n}\nhtml .mat-mdc-slide-toggle {\n --mat-switch-label-text-color: rgba(0, 0, 0, 0.87);\n}\nhtml .mat-mdc-slide-toggle.mat-accent {\n --mdc-switch-selected-focus-state-layer-color: #d81b60;\n --mdc-switch-selected-handle-color: #d81b60;\n --mdc-switch-selected-hover-state-layer-color: #d81b60;\n --mdc-switch-selected-pressed-state-layer-color: #d81b60;\n --mdc-switch-selected-focus-handle-color: #880e4f;\n --mdc-switch-selected-hover-handle-color: #880e4f;\n --mdc-switch-selected-pressed-handle-color: #880e4f;\n --mdc-switch-selected-focus-track-color: #f06292;\n --mdc-switch-selected-hover-track-color: #f06292;\n --mdc-switch-selected-pressed-track-color: #f06292;\n --mdc-switch-selected-track-color: #f06292;\n}\nhtml .mat-mdc-slide-toggle.mat-warn {\n --mdc-switch-selected-focus-state-layer-color: #e53935;\n --mdc-switch-selected-handle-color: #e53935;\n --mdc-switch-selected-hover-state-layer-color: #e53935;\n --mdc-switch-selected-pressed-state-layer-color: #e53935;\n --mdc-switch-selected-focus-handle-color: #b71c1c;\n --mdc-switch-selected-hover-handle-color: #b71c1c;\n --mdc-switch-selected-pressed-handle-color: #b71c1c;\n --mdc-switch-selected-focus-track-color: #e57373;\n --mdc-switch-selected-hover-track-color: #e57373;\n --mdc-switch-selected-pressed-track-color: #e57373;\n --mdc-switch-selected-track-color: #e57373;\n}\nhtml {\n --mdc-switch-state-layer-size: 40px;\n}\nhtml {\n --mdc-radio-disabled-selected-icon-opacity: 0.38;\n --mdc-radio-disabled-unselected-icon-opacity: 0.38;\n --mdc-radio-state-layer-size: 40px;\n}\n.mat-mdc-radio-button.mat-primary {\n --mdc-radio-disabled-selected-icon-color: black;\n --mdc-radio-disabled-unselected-icon-color: black;\n --mdc-radio-unselected-hover-icon-color: #212121;\n --mdc-radio-unselected-focus-icon-color: #212121;\n --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-radio-selected-focus-icon-color: #3f51b5;\n --mdc-radio-selected-hover-icon-color: #3f51b5;\n --mdc-radio-selected-icon-color: #3f51b5;\n --mdc-radio-selected-pressed-icon-color: #3f51b5;\n}\n.mat-mdc-radio-button.mat-primary {\n --mat-radio-ripple-color: black;\n --mat-radio-checked-ripple-color: #3f51b5;\n --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);\n --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);\n}\n.mat-mdc-radio-button.mat-accent {\n --mdc-radio-disabled-selected-icon-color: black;\n --mdc-radio-disabled-unselected-icon-color: black;\n --mdc-radio-unselected-hover-icon-color: #212121;\n --mdc-radio-unselected-focus-icon-color: #212121;\n --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-radio-selected-focus-icon-color: #e91e63;\n --mdc-radio-selected-hover-icon-color: #e91e63;\n --mdc-radio-selected-icon-color: #e91e63;\n --mdc-radio-selected-pressed-icon-color: #e91e63;\n}\n.mat-mdc-radio-button.mat-accent {\n --mat-radio-ripple-color: black;\n --mat-radio-checked-ripple-color: #e91e63;\n --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);\n --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);\n}\n.mat-mdc-radio-button.mat-warn {\n --mdc-radio-disabled-selected-icon-color: black;\n --mdc-radio-disabled-unselected-icon-color: black;\n --mdc-radio-unselected-hover-icon-color: #212121;\n --mdc-radio-unselected-focus-icon-color: #212121;\n --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-radio-selected-focus-icon-color: #f44336;\n --mdc-radio-selected-hover-icon-color: #f44336;\n --mdc-radio-selected-icon-color: #f44336;\n --mdc-radio-selected-pressed-icon-color: #f44336;\n}\n.mat-mdc-radio-button.mat-warn {\n --mat-radio-ripple-color: black;\n --mat-radio-checked-ripple-color: #f44336;\n --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);\n --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);\n}\nhtml {\n --mdc-radio-state-layer-size: 40px;\n}\nhtml {\n --mat-radio-touch-target-display: block;\n}\nhtml {\n --mdc-slider-active-track-height: 6px;\n --mdc-slider-active-track-shape: 9999px;\n --mdc-slider-handle-height: 20px;\n --mdc-slider-handle-shape: 50%;\n --mdc-slider-handle-width: 20px;\n --mdc-slider-inactive-track-height: 4px;\n --mdc-slider-inactive-track-shape: 9999px;\n --mdc-slider-with-overlap-handle-outline-width: 1px;\n --mdc-slider-with-tick-marks-active-container-opacity: 0.6;\n --mdc-slider-with-tick-marks-container-shape: 50%;\n --mdc-slider-with-tick-marks-container-size: 2px;\n --mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;\n --mdc-slider-handle-elevation:\n 0px 2px 1px -1px rgba(0, 0, 0, 0.2),\n 0px 1px 1px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mat-slider-value-indicator-width: auto;\n --mat-slider-value-indicator-height: 32px;\n --mat-slider-value-indicator-caret-display: block;\n --mat-slider-value-indicator-border-radius: 4px;\n --mat-slider-value-indicator-padding: 0 12px;\n --mat-slider-value-indicator-text-transform: none;\n --mat-slider-value-indicator-container-transform: translateX(-50%);\n}\nhtml {\n --mdc-slider-handle-color: #3f51b5;\n --mdc-slider-focus-handle-color: #3f51b5;\n --mdc-slider-hover-handle-color: #3f51b5;\n --mdc-slider-active-track-color: #3f51b5;\n --mdc-slider-inactive-track-color: #3f51b5;\n --mdc-slider-with-tick-marks-inactive-container-color: #3f51b5;\n --mdc-slider-with-tick-marks-active-container-color: white;\n --mdc-slider-disabled-active-track-color: #000;\n --mdc-slider-disabled-handle-color: #000;\n --mdc-slider-disabled-inactive-track-color: #000;\n --mdc-slider-label-container-color: #000;\n --mdc-slider-label-label-text-color: #fff;\n --mdc-slider-with-overlap-handle-outline-color: #fff;\n --mdc-slider-with-tick-marks-disabled-container-color: #000;\n}\nhtml {\n --mat-slider-ripple-color: #3f51b5;\n --mat-slider-hover-state-layer-color: rgba(63, 81, 181, 0.05);\n --mat-slider-focus-state-layer-color: rgba(63, 81, 181, 0.2);\n --mat-slider-value-indicator-opacity: 0.6;\n}\nhtml .mat-accent {\n --mdc-slider-handle-color: #e91e63;\n --mdc-slider-focus-handle-color: #e91e63;\n --mdc-slider-hover-handle-color: #e91e63;\n --mdc-slider-active-track-color: #e91e63;\n --mdc-slider-inactive-track-color: #e91e63;\n --mdc-slider-with-tick-marks-inactive-container-color: #e91e63;\n --mdc-slider-with-tick-marks-active-container-color: white;\n}\nhtml .mat-accent {\n --mat-slider-ripple-color: #e91e63;\n --mat-slider-hover-state-layer-color: rgba(233, 30, 99, 0.05);\n --mat-slider-focus-state-layer-color: rgba(233, 30, 99, 0.2);\n}\nhtml .mat-warn {\n --mdc-slider-handle-color: #f44336;\n --mdc-slider-focus-handle-color: #f44336;\n --mdc-slider-hover-handle-color: #f44336;\n --mdc-slider-active-track-color: #f44336;\n --mdc-slider-inactive-track-color: #f44336;\n --mdc-slider-with-tick-marks-inactive-container-color: #f44336;\n --mdc-slider-with-tick-marks-active-container-color: white;\n}\nhtml .mat-warn {\n --mat-slider-ripple-color: #f44336;\n --mat-slider-hover-state-layer-color: rgba(244, 67, 54, 0.05);\n --mat-slider-focus-state-layer-color: rgba(244, 67, 54, 0.2);\n}\nhtml {\n --mat-menu-container-shape: 4px;\n --mat-menu-divider-bottom-spacing: 0;\n --mat-menu-divider-top-spacing: 0;\n --mat-menu-item-spacing: 16px;\n --mat-menu-item-icon-size: 24px;\n --mat-menu-item-leading-spacing: 16px;\n --mat-menu-item-trailing-spacing: 16px;\n --mat-menu-item-with-icon-leading-spacing: 16px;\n --mat-menu-item-with-icon-trailing-spacing: 16px;\n --mat-menu-container-elevation-shadow:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mat-menu-item-label-text-color: rgba(0, 0, 0, 0.87);\n --mat-menu-item-icon-color: rgba(0, 0, 0, 0.87);\n --mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, 0.04);\n --mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, 0.04);\n --mat-menu-container-color: white;\n --mat-menu-divider-color: rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mdc-list-list-item-container-shape: 0;\n --mdc-list-list-item-leading-avatar-shape: 50%;\n --mdc-list-list-item-container-color: transparent;\n --mdc-list-list-item-selected-container-color: transparent;\n --mdc-list-list-item-leading-avatar-color: transparent;\n --mdc-list-list-item-leading-icon-size: 24px;\n --mdc-list-list-item-leading-avatar-size: 40px;\n --mdc-list-list-item-trailing-icon-size: 24px;\n --mdc-list-list-item-disabled-state-layer-color: transparent;\n --mdc-list-list-item-disabled-state-layer-opacity: 0;\n --mdc-list-list-item-disabled-label-text-opacity: 0.38;\n --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;\n --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;\n}\nhtml {\n --mat-list-active-indicator-color: transparent;\n --mat-list-active-indicator-shape: 4px;\n}\nhtml {\n --mdc-list-list-item-label-text-color: rgba(0, 0, 0, 0.87);\n --mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, 0.54);\n --mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, 0.38);\n --mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-list-list-item-disabled-label-text-color: black;\n --mdc-list-list-item-disabled-leading-icon-color: black;\n --mdc-list-list-item-disabled-trailing-icon-color: black;\n --mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, 0.87);\n --mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, 0.87);\n --mdc-list-list-item-hover-state-layer-color: black;\n --mdc-list-list-item-hover-state-layer-opacity: 0.04;\n --mdc-list-list-item-focus-state-layer-color: black;\n --mdc-list-list-item-focus-state-layer-opacity: 0.12;\n}\n.mdc-list-item__start,\n.mdc-list-item__end {\n --mdc-radio-disabled-selected-icon-color: black;\n --mdc-radio-disabled-unselected-icon-color: black;\n --mdc-radio-unselected-hover-icon-color: #212121;\n --mdc-radio-unselected-focus-icon-color: #212121;\n --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-radio-selected-focus-icon-color: #3f51b5;\n --mdc-radio-selected-hover-icon-color: #3f51b5;\n --mdc-radio-selected-icon-color: #3f51b5;\n --mdc-radio-selected-pressed-icon-color: #3f51b5;\n}\n.mat-accent .mdc-list-item__start,\n.mat-accent .mdc-list-item__end {\n --mdc-radio-disabled-selected-icon-color: black;\n --mdc-radio-disabled-unselected-icon-color: black;\n --mdc-radio-unselected-hover-icon-color: #212121;\n --mdc-radio-unselected-focus-icon-color: #212121;\n --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-radio-selected-focus-icon-color: #e91e63;\n --mdc-radio-selected-hover-icon-color: #e91e63;\n --mdc-radio-selected-icon-color: #e91e63;\n --mdc-radio-selected-pressed-icon-color: #e91e63;\n}\n.mat-warn .mdc-list-item__start,\n.mat-warn .mdc-list-item__end {\n --mdc-radio-disabled-selected-icon-color: black;\n --mdc-radio-disabled-unselected-icon-color: black;\n --mdc-radio-unselected-hover-icon-color: #212121;\n --mdc-radio-unselected-focus-icon-color: #212121;\n --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-radio-selected-focus-icon-color: #f44336;\n --mdc-radio-selected-hover-icon-color: #f44336;\n --mdc-radio-selected-icon-color: #f44336;\n --mdc-radio-selected-pressed-icon-color: #f44336;\n}\n.mat-mdc-list-option {\n --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-checkbox-selected-checkmark-color: white;\n --mdc-checkbox-selected-focus-icon-color: #3f51b5;\n --mdc-checkbox-selected-hover-icon-color: #3f51b5;\n --mdc-checkbox-selected-icon-color: #3f51b5;\n --mdc-checkbox-selected-pressed-icon-color: #3f51b5;\n --mdc-checkbox-unselected-focus-icon-color: #212121;\n --mdc-checkbox-unselected-hover-icon-color: #212121;\n --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-checkbox-selected-focus-state-layer-color: #3f51b5;\n --mdc-checkbox-selected-hover-state-layer-color: #3f51b5;\n --mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;\n --mdc-checkbox-unselected-focus-state-layer-color: black;\n --mdc-checkbox-unselected-hover-state-layer-color: black;\n --mdc-checkbox-unselected-pressed-state-layer-color: black;\n}\n.mat-mdc-list-option.mat-accent {\n --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-checkbox-selected-checkmark-color: white;\n --mdc-checkbox-selected-focus-icon-color: #e91e63;\n --mdc-checkbox-selected-hover-icon-color: #e91e63;\n --mdc-checkbox-selected-icon-color: #e91e63;\n --mdc-checkbox-selected-pressed-icon-color: #e91e63;\n --mdc-checkbox-unselected-focus-icon-color: #212121;\n --mdc-checkbox-unselected-hover-icon-color: #212121;\n --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-checkbox-selected-focus-state-layer-color: #e91e63;\n --mdc-checkbox-selected-hover-state-layer-color: #e91e63;\n --mdc-checkbox-selected-pressed-state-layer-color: #e91e63;\n --mdc-checkbox-unselected-focus-state-layer-color: black;\n --mdc-checkbox-unselected-hover-state-layer-color: black;\n --mdc-checkbox-unselected-pressed-state-layer-color: black;\n}\n.mat-mdc-list-option.mat-warn {\n --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-checkbox-selected-checkmark-color: white;\n --mdc-checkbox-selected-focus-icon-color: #f44336;\n --mdc-checkbox-selected-hover-icon-color: #f44336;\n --mdc-checkbox-selected-icon-color: #f44336;\n --mdc-checkbox-selected-pressed-icon-color: #f44336;\n --mdc-checkbox-unselected-focus-icon-color: #212121;\n --mdc-checkbox-unselected-hover-icon-color: #212121;\n --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-checkbox-selected-focus-state-layer-color: #f44336;\n --mdc-checkbox-selected-hover-state-layer-color: #f44336;\n --mdc-checkbox-selected-pressed-state-layer-color: #f44336;\n --mdc-checkbox-unselected-focus-state-layer-color: black;\n --mdc-checkbox-unselected-hover-state-layer-color: black;\n --mdc-checkbox-unselected-pressed-state-layer-color: black;\n}\n.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,\n.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,\n.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,\n.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {\n color: #3f51b5;\n}\n.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,\n.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,\n.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {\n opacity: 1;\n}\nhtml {\n --mdc-list-list-item-one-line-container-height: 48px;\n --mdc-list-list-item-two-line-container-height: 64px;\n --mdc-list-list-item-three-line-container-height: 88px;\n}\nhtml {\n --mat-list-list-item-leading-icon-start-space: 16px;\n --mat-list-list-item-leading-icon-end-space: 32px;\n}\n.mdc-list-item__start,\n.mdc-list-item__end {\n --mdc-radio-state-layer-size: 40px;\n}\n.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,\n.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,\n.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {\n height: 56px;\n}\n.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,\n.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,\n.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {\n height: 72px;\n}\nhtml {\n --mat-paginator-container-text-color: rgba(0, 0, 0, 0.87);\n --mat-paginator-container-background-color: white;\n --mat-paginator-enabled-icon-color: rgba(0, 0, 0, 0.54);\n --mat-paginator-disabled-icon-color: rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mat-paginator-container-size: 56px;\n --mat-paginator-form-field-container-height: 40px;\n --mat-paginator-form-field-container-vertical-padding: 8px;\n --mat-paginator-touch-target-display: block;\n}\nhtml {\n --mdc-secondary-navigation-tab-container-height: 48px;\n}\nhtml {\n --mdc-tab-indicator-active-indicator-height: 2px;\n --mdc-tab-indicator-active-indicator-shape: 0;\n}\nhtml {\n --mat-tab-header-divider-color: transparent;\n --mat-tab-header-divider-height: 0;\n}\n.mat-mdc-tab-group,\n.mat-mdc-tab-nav-bar {\n --mdc-tab-indicator-active-indicator-color: #3f51b5;\n}\n.mat-mdc-tab-group,\n.mat-mdc-tab-nav-bar {\n --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);\n --mat-tab-header-pagination-icon-color: black;\n --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);\n --mat-tab-header-active-label-text-color: #3f51b5;\n --mat-tab-header-active-ripple-color: #3f51b5;\n --mat-tab-header-inactive-ripple-color: #3f51b5;\n --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);\n --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);\n --mat-tab-header-active-focus-label-text-color: #3f51b5;\n --mat-tab-header-active-hover-label-text-color: #3f51b5;\n --mat-tab-header-active-focus-indicator-color: #3f51b5;\n --mat-tab-header-active-hover-indicator-color: #3f51b5;\n}\n.mat-mdc-tab-group.mat-accent,\n.mat-mdc-tab-nav-bar.mat-accent {\n --mdc-tab-indicator-active-indicator-color: #e91e63;\n}\n.mat-mdc-tab-group.mat-accent,\n.mat-mdc-tab-nav-bar.mat-accent {\n --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);\n --mat-tab-header-pagination-icon-color: black;\n --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);\n --mat-tab-header-active-label-text-color: #e91e63;\n --mat-tab-header-active-ripple-color: #e91e63;\n --mat-tab-header-inactive-ripple-color: #e91e63;\n --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);\n --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);\n --mat-tab-header-active-focus-label-text-color: #e91e63;\n --mat-tab-header-active-hover-label-text-color: #e91e63;\n --mat-tab-header-active-focus-indicator-color: #e91e63;\n --mat-tab-header-active-hover-indicator-color: #e91e63;\n}\n.mat-mdc-tab-group.mat-warn,\n.mat-mdc-tab-nav-bar.mat-warn {\n --mdc-tab-indicator-active-indicator-color: #f44336;\n}\n.mat-mdc-tab-group.mat-warn,\n.mat-mdc-tab-nav-bar.mat-warn {\n --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);\n --mat-tab-header-pagination-icon-color: black;\n --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);\n --mat-tab-header-active-label-text-color: #f44336;\n --mat-tab-header-active-ripple-color: #f44336;\n --mat-tab-header-inactive-ripple-color: #f44336;\n --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);\n --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);\n --mat-tab-header-active-focus-label-text-color: #f44336;\n --mat-tab-header-active-hover-label-text-color: #f44336;\n --mat-tab-header-active-focus-indicator-color: #f44336;\n --mat-tab-header-active-hover-indicator-color: #f44336;\n}\n.mat-mdc-tab-group.mat-background-primary,\n.mat-mdc-tab-nav-bar.mat-background-primary {\n --mat-tab-header-with-background-background-color: #3f51b5;\n --mat-tab-header-with-background-foreground-color: white;\n}\n.mat-mdc-tab-group.mat-background-accent,\n.mat-mdc-tab-nav-bar.mat-background-accent {\n --mat-tab-header-with-background-background-color: #e91e63;\n --mat-tab-header-with-background-foreground-color: white;\n}\n.mat-mdc-tab-group.mat-background-warn,\n.mat-mdc-tab-nav-bar.mat-background-warn {\n --mat-tab-header-with-background-background-color: #f44336;\n --mat-tab-header-with-background-foreground-color: white;\n}\n.mat-mdc-tab-header {\n --mdc-secondary-navigation-tab-container-height: 48px;\n}\nhtml {\n --mdc-checkbox-disabled-selected-checkmark-color: #fff;\n --mdc-checkbox-selected-focus-state-layer-opacity: 0.16;\n --mdc-checkbox-selected-hover-state-layer-opacity: 0.04;\n --mdc-checkbox-selected-pressed-state-layer-opacity: 0.16;\n --mdc-checkbox-unselected-focus-state-layer-opacity: 0.16;\n --mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;\n --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;\n}\nhtml {\n --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-checkbox-selected-checkmark-color: white;\n --mdc-checkbox-selected-focus-icon-color: #e91e63;\n --mdc-checkbox-selected-hover-icon-color: #e91e63;\n --mdc-checkbox-selected-icon-color: #e91e63;\n --mdc-checkbox-selected-pressed-icon-color: #e91e63;\n --mdc-checkbox-unselected-focus-icon-color: #212121;\n --mdc-checkbox-unselected-hover-icon-color: #212121;\n --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-checkbox-selected-focus-state-layer-color: #e91e63;\n --mdc-checkbox-selected-hover-state-layer-color: #e91e63;\n --mdc-checkbox-selected-pressed-state-layer-color: #e91e63;\n --mdc-checkbox-unselected-focus-state-layer-color: black;\n --mdc-checkbox-unselected-hover-state-layer-color: black;\n --mdc-checkbox-unselected-pressed-state-layer-color: black;\n}\nhtml {\n --mat-checkbox-disabled-label-color: rgba(0, 0, 0, 0.38);\n --mat-checkbox-label-text-color: rgba(0, 0, 0, 0.87);\n}\n.mat-mdc-checkbox.mat-primary {\n --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-checkbox-selected-checkmark-color: white;\n --mdc-checkbox-selected-focus-icon-color: #3f51b5;\n --mdc-checkbox-selected-hover-icon-color: #3f51b5;\n --mdc-checkbox-selected-icon-color: #3f51b5;\n --mdc-checkbox-selected-pressed-icon-color: #3f51b5;\n --mdc-checkbox-unselected-focus-icon-color: #212121;\n --mdc-checkbox-unselected-hover-icon-color: #212121;\n --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-checkbox-selected-focus-state-layer-color: #3f51b5;\n --mdc-checkbox-selected-hover-state-layer-color: #3f51b5;\n --mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;\n --mdc-checkbox-unselected-focus-state-layer-color: black;\n --mdc-checkbox-unselected-hover-state-layer-color: black;\n --mdc-checkbox-unselected-pressed-state-layer-color: black;\n}\n.mat-mdc-checkbox.mat-warn {\n --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);\n --mdc-checkbox-selected-checkmark-color: white;\n --mdc-checkbox-selected-focus-icon-color: #f44336;\n --mdc-checkbox-selected-hover-icon-color: #f44336;\n --mdc-checkbox-selected-icon-color: #f44336;\n --mdc-checkbox-selected-pressed-icon-color: #f44336;\n --mdc-checkbox-unselected-focus-icon-color: #212121;\n --mdc-checkbox-unselected-hover-icon-color: #212121;\n --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);\n --mdc-checkbox-selected-focus-state-layer-color: #f44336;\n --mdc-checkbox-selected-hover-state-layer-color: #f44336;\n --mdc-checkbox-selected-pressed-state-layer-color: #f44336;\n --mdc-checkbox-unselected-focus-state-layer-color: black;\n --mdc-checkbox-unselected-hover-state-layer-color: black;\n --mdc-checkbox-unselected-pressed-state-layer-color: black;\n}\nhtml {\n --mdc-checkbox-state-layer-size: 40px;\n}\nhtml {\n --mat-checkbox-touch-target-display: block;\n}\nhtml {\n --mdc-text-button-container-shape: 4px;\n --mdc-text-button-keep-touch-target: false;\n}\nhtml {\n --mdc-filled-button-container-shape: 4px;\n --mdc-filled-button-keep-touch-target: false;\n}\nhtml {\n --mdc-protected-button-container-shape: 4px;\n --mdc-protected-button-container-elevation-shadow:\n 0px 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0px 2px 2px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\n --mdc-protected-button-disabled-container-elevation-shadow:\n 0px 0px 0px 0px rgba(0, 0, 0, 0.2),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.14),\n 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\n --mdc-protected-button-focus-container-elevation-shadow:\n 0px 2px 4px -1px rgba(0, 0, 0, 0.2),\n 0px 4px 5px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\n --mdc-protected-button-hover-container-elevation-shadow:\n 0px 2px 4px -1px rgba(0, 0, 0, 0.2),\n 0px 4px 5px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\n --mdc-protected-button-pressed-container-elevation-shadow:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mdc-outlined-button-keep-touch-target: false;\n --mdc-outlined-button-outline-width: 1px;\n --mdc-outlined-button-container-shape: 4px;\n}\nhtml {\n --mat-text-button-horizontal-padding: 8px;\n --mat-text-button-with-icon-horizontal-padding: 8px;\n --mat-text-button-icon-spacing: 8px;\n --mat-text-button-icon-offset: 0;\n}\nhtml {\n --mat-filled-button-horizontal-padding: 16px;\n --mat-filled-button-icon-spacing: 8px;\n --mat-filled-button-icon-offset: -4px;\n}\nhtml {\n --mat-protected-button-horizontal-padding: 16px;\n --mat-protected-button-icon-spacing: 8px;\n --mat-protected-button-icon-offset: -4px;\n}\nhtml {\n --mat-outlined-button-horizontal-padding: 15px;\n --mat-outlined-button-icon-spacing: 8px;\n --mat-outlined-button-icon-offset: -4px;\n}\nhtml {\n --mdc-text-button-label-text-color: black;\n --mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);\n}\nhtml {\n --mat-text-button-state-layer-color: black;\n --mat-text-button-disabled-state-layer-color: black;\n --mat-text-button-ripple-color: rgba(0, 0, 0, 0.1);\n --mat-text-button-hover-state-layer-opacity: 0.04;\n --mat-text-button-focus-state-layer-opacity: 0.12;\n --mat-text-button-pressed-state-layer-opacity: 0.12;\n}\nhtml {\n --mdc-filled-button-container-color: white;\n --mdc-filled-button-label-text-color: black;\n --mdc-filled-button-disabled-container-color: rgba(0, 0, 0, 0.12);\n --mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);\n}\nhtml {\n --mat-filled-button-state-layer-color: black;\n --mat-filled-button-disabled-state-layer-color: black;\n --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);\n --mat-filled-button-hover-state-layer-opacity: 0.04;\n --mat-filled-button-focus-state-layer-opacity: 0.12;\n --mat-filled-button-pressed-state-layer-opacity: 0.12;\n}\nhtml {\n --mdc-protected-button-container-color: white;\n --mdc-protected-button-label-text-color: black;\n --mdc-protected-button-disabled-container-color: rgba(0, 0, 0, 0.12);\n --mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);\n}\nhtml {\n --mat-protected-button-state-layer-color: black;\n --mat-protected-button-disabled-state-layer-color: black;\n --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);\n --mat-protected-button-hover-state-layer-opacity: 0.04;\n --mat-protected-button-focus-state-layer-opacity: 0.12;\n --mat-protected-button-pressed-state-layer-opacity: 0.12;\n}\nhtml {\n --mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, 0.12);\n --mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);\n --mdc-outlined-button-label-text-color: black;\n --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mat-outlined-button-state-layer-color: black;\n --mat-outlined-button-disabled-state-layer-color: black;\n --mat-outlined-button-ripple-color: rgba(0, 0, 0, 0.1);\n --mat-outlined-button-hover-state-layer-opacity: 0.04;\n --mat-outlined-button-focus-state-layer-opacity: 0.12;\n --mat-outlined-button-pressed-state-layer-opacity: 0.12;\n}\n.mat-mdc-button.mat-primary {\n --mdc-text-button-label-text-color: #3f51b5;\n}\n.mat-mdc-button.mat-primary {\n --mat-text-button-state-layer-color: #3f51b5;\n --mat-text-button-ripple-color: rgba(63, 81, 181, 0.1);\n}\n.mat-mdc-button.mat-accent {\n --mdc-text-button-label-text-color: #e91e63;\n}\n.mat-mdc-button.mat-accent {\n --mat-text-button-state-layer-color: #e91e63;\n --mat-text-button-ripple-color: rgba(233, 30, 99, 0.1);\n}\n.mat-mdc-button.mat-warn {\n --mdc-text-button-label-text-color: #f44336;\n}\n.mat-mdc-button.mat-warn {\n --mat-text-button-state-layer-color: #f44336;\n --mat-text-button-ripple-color: rgba(244, 67, 54, 0.1);\n}\n.mat-mdc-unelevated-button.mat-primary {\n --mdc-filled-button-container-color: #3f51b5;\n --mdc-filled-button-label-text-color: white;\n}\n.mat-mdc-unelevated-button.mat-primary {\n --mat-filled-button-state-layer-color: white;\n --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);\n}\n.mat-mdc-unelevated-button.mat-accent {\n --mdc-filled-button-container-color: #e91e63;\n --mdc-filled-button-label-text-color: white;\n}\n.mat-mdc-unelevated-button.mat-accent {\n --mat-filled-button-state-layer-color: white;\n --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);\n}\n.mat-mdc-unelevated-button.mat-warn {\n --mdc-filled-button-container-color: #f44336;\n --mdc-filled-button-label-text-color: white;\n}\n.mat-mdc-unelevated-button.mat-warn {\n --mat-filled-button-state-layer-color: white;\n --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);\n}\n.mat-mdc-raised-button.mat-primary {\n --mdc-protected-button-container-color: #3f51b5;\n --mdc-protected-button-label-text-color: white;\n}\n.mat-mdc-raised-button.mat-primary {\n --mat-protected-button-state-layer-color: white;\n --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);\n}\n.mat-mdc-raised-button.mat-accent {\n --mdc-protected-button-container-color: #e91e63;\n --mdc-protected-button-label-text-color: white;\n}\n.mat-mdc-raised-button.mat-accent {\n --mat-protected-button-state-layer-color: white;\n --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);\n}\n.mat-mdc-raised-button.mat-warn {\n --mdc-protected-button-container-color: #f44336;\n --mdc-protected-button-label-text-color: white;\n}\n.mat-mdc-raised-button.mat-warn {\n --mat-protected-button-state-layer-color: white;\n --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);\n}\n.mat-mdc-outlined-button.mat-primary {\n --mdc-outlined-button-label-text-color: #3f51b5;\n --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);\n}\n.mat-mdc-outlined-button.mat-primary {\n --mat-outlined-button-state-layer-color: #3f51b5;\n --mat-outlined-button-ripple-color: rgba(63, 81, 181, 0.1);\n}\n.mat-mdc-outlined-button.mat-accent {\n --mdc-outlined-button-label-text-color: #e91e63;\n --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);\n}\n.mat-mdc-outlined-button.mat-accent {\n --mat-outlined-button-state-layer-color: #e91e63;\n --mat-outlined-button-ripple-color: rgba(233, 30, 99, 0.1);\n}\n.mat-mdc-outlined-button.mat-warn {\n --mdc-outlined-button-label-text-color: #f44336;\n --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);\n}\n.mat-mdc-outlined-button.mat-warn {\n --mat-outlined-button-state-layer-color: #f44336;\n --mat-outlined-button-ripple-color: rgba(244, 67, 54, 0.1);\n}\nhtml {\n --mdc-text-button-container-height: 36px;\n}\nhtml {\n --mdc-filled-button-container-height: 36px;\n}\nhtml {\n --mdc-protected-button-container-height: 36px;\n}\nhtml {\n --mdc-outlined-button-container-height: 36px;\n}\nhtml {\n --mat-text-button-touch-target-display: block;\n}\nhtml {\n --mat-filled-button-touch-target-display: block;\n}\nhtml {\n --mat-protected-button-touch-target-display: block;\n}\nhtml {\n --mat-outlined-button-touch-target-display: block;\n}\nhtml {\n --mdc-icon-button-icon-size: 24px;\n}\nhtml {\n --mdc-icon-button-icon-color: inherit;\n --mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, 0.38);\n}\nhtml {\n --mat-icon-button-state-layer-color: black;\n --mat-icon-button-disabled-state-layer-color: black;\n --mat-icon-button-ripple-color: rgba(0, 0, 0, 0.1);\n --mat-icon-button-hover-state-layer-opacity: 0.04;\n --mat-icon-button-focus-state-layer-opacity: 0.12;\n --mat-icon-button-pressed-state-layer-opacity: 0.12;\n}\nhtml .mat-mdc-icon-button.mat-primary {\n --mdc-icon-button-icon-color: #3f51b5;\n}\nhtml .mat-mdc-icon-button.mat-primary {\n --mat-icon-button-state-layer-color: #3f51b5;\n --mat-icon-button-ripple-color: rgba(63, 81, 181, 0.1);\n}\nhtml .mat-mdc-icon-button.mat-accent {\n --mdc-icon-button-icon-color: #e91e63;\n}\nhtml .mat-mdc-icon-button.mat-accent {\n --mat-icon-button-state-layer-color: #e91e63;\n --mat-icon-button-ripple-color: rgba(233, 30, 99, 0.1);\n}\nhtml .mat-mdc-icon-button.mat-warn {\n --mdc-icon-button-icon-color: #f44336;\n}\nhtml .mat-mdc-icon-button.mat-warn {\n --mat-icon-button-state-layer-color: #f44336;\n --mat-icon-button-ripple-color: rgba(244, 67, 54, 0.1);\n}\nhtml {\n --mat-icon-button-touch-target-display: block;\n}\n.mat-mdc-icon-button.mat-mdc-button-base {\n --mdc-icon-button-state-layer-size: 48px;\n width: var(--mdc-icon-button-state-layer-size);\n height: var(--mdc-icon-button-state-layer-size);\n padding: 12px;\n}\nhtml {\n --mdc-fab-container-shape: 50%;\n --mdc-fab-container-elevation-shadow:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 6px 10px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\n --mdc-fab-focus-container-elevation-shadow:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mdc-fab-hover-container-elevation-shadow:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mdc-fab-pressed-container-elevation-shadow:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 12px 17px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mdc-fab-small-container-shape: 50%;\n --mdc-fab-small-container-elevation-shadow:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 6px 10px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\n --mdc-fab-small-focus-container-elevation-shadow:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mdc-fab-small-hover-container-elevation-shadow:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mdc-fab-small-pressed-container-elevation-shadow:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 12px 17px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mdc-extended-fab-container-height: 48px;\n --mdc-extended-fab-container-shape: 24px;\n --mdc-extended-fab-container-elevation-shadow:\n 0px 3px 5px -1px rgba(0, 0, 0, 0.2),\n 0px 6px 10px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\n --mdc-extended-fab-focus-container-elevation-shadow:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mdc-extended-fab-hover-container-elevation-shadow:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n --mdc-extended-fab-pressed-container-elevation-shadow:\n 0px 7px 8px -4px rgba(0, 0, 0, 0.2),\n 0px 12px 17px 2px rgba(0, 0, 0, 0.14),\n 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mdc-fab-container-color: white;\n}\nhtml {\n --mat-fab-foreground-color: black;\n --mat-fab-state-layer-color: black;\n --mat-fab-disabled-state-layer-color: black;\n --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);\n --mat-fab-hover-state-layer-opacity: 0.04;\n --mat-fab-focus-state-layer-opacity: 0.12;\n --mat-fab-pressed-state-layer-opacity: 0.12;\n --mat-fab-disabled-state-container-color: rgba(0, 0, 0, 0.12);\n --mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);\n}\nhtml {\n --mdc-fab-small-container-color: white;\n}\nhtml {\n --mat-fab-small-foreground-color: black;\n --mat-fab-small-state-layer-color: black;\n --mat-fab-small-disabled-state-layer-color: black;\n --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);\n --mat-fab-small-hover-state-layer-opacity: 0.04;\n --mat-fab-small-focus-state-layer-opacity: 0.12;\n --mat-fab-small-pressed-state-layer-opacity: 0.12;\n --mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, 0.12);\n --mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);\n}\nhtml .mat-mdc-fab.mat-primary {\n --mdc-fab-container-color: #3f51b5;\n}\nhtml .mat-mdc-fab.mat-primary {\n --mat-fab-foreground-color: white;\n --mat-fab-state-layer-color: white;\n --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);\n}\nhtml .mat-mdc-fab.mat-accent {\n --mdc-fab-container-color: #e91e63;\n}\nhtml .mat-mdc-fab.mat-accent {\n --mat-fab-foreground-color: white;\n --mat-fab-state-layer-color: white;\n --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);\n}\nhtml .mat-mdc-fab.mat-warn {\n --mdc-fab-container-color: #f44336;\n}\nhtml .mat-mdc-fab.mat-warn {\n --mat-fab-foreground-color: white;\n --mat-fab-state-layer-color: white;\n --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);\n}\nhtml .mat-mdc-mini-fab.mat-primary {\n --mdc-fab-small-container-color: #3f51b5;\n}\nhtml .mat-mdc-mini-fab.mat-primary {\n --mat-fab-small-foreground-color: white;\n --mat-fab-small-state-layer-color: white;\n --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);\n}\nhtml .mat-mdc-mini-fab.mat-accent {\n --mdc-fab-small-container-color: #e91e63;\n}\nhtml .mat-mdc-mini-fab.mat-accent {\n --mat-fab-small-foreground-color: white;\n --mat-fab-small-state-layer-color: white;\n --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);\n}\nhtml .mat-mdc-mini-fab.mat-warn {\n --mdc-fab-small-container-color: #f44336;\n}\nhtml .mat-mdc-mini-fab.mat-warn {\n --mat-fab-small-foreground-color: white;\n --mat-fab-small-state-layer-color: white;\n --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);\n}\nhtml {\n --mat-fab-touch-target-display: block;\n}\nhtml {\n --mat-fab-small-touch-target-display: block;\n}\nhtml {\n --mdc-snackbar-container-shape: 4px;\n}\nhtml {\n --mdc-snackbar-container-color: #333333;\n --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);\n}\nhtml {\n --mat-snack-bar-button-color: #c5cae9;\n}\nhtml {\n --mat-table-row-item-outline-width: 1px;\n}\nhtml {\n --mat-table-background-color: white;\n --mat-table-header-headline-color: rgba(0, 0, 0, 0.87);\n --mat-table-row-item-label-text-color: rgba(0, 0, 0, 0.87);\n --mat-table-row-item-outline-color: rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mat-table-header-container-height: 56px;\n --mat-table-footer-container-height: 52px;\n --mat-table-row-item-container-height: 52px;\n}\nhtml {\n --mdc-circular-progress-active-indicator-width: 4px;\n --mdc-circular-progress-size: 48px;\n}\nhtml {\n --mdc-circular-progress-active-indicator-color: #3f51b5;\n}\nhtml .mat-accent {\n --mdc-circular-progress-active-indicator-color: #e91e63;\n}\nhtml .mat-warn {\n --mdc-circular-progress-active-indicator-color: #f44336;\n}\nhtml {\n --mat-badge-container-shape: 50%;\n --mat-badge-container-size: unset;\n --mat-badge-small-size-container-size: unset;\n --mat-badge-large-size-container-size: unset;\n --mat-badge-legacy-container-size: 22px;\n --mat-badge-legacy-small-size-container-size: 16px;\n --mat-badge-legacy-large-size-container-size: 28px;\n --mat-badge-container-offset: -11px 0;\n --mat-badge-small-size-container-offset: -8px 0;\n --mat-badge-large-size-container-offset: -14px 0;\n --mat-badge-container-overlap-offset: -11px;\n --mat-badge-small-size-container-overlap-offset: -8px;\n --mat-badge-large-size-container-overlap-offset: -14px;\n --mat-badge-container-padding: 0;\n --mat-badge-small-size-container-padding: 0;\n --mat-badge-large-size-container-padding: 0;\n}\nhtml {\n --mat-badge-background-color: #3f51b5;\n --mat-badge-text-color: white;\n --mat-badge-disabled-state-background-color: #b9b9b9;\n --mat-badge-disabled-state-text-color: rgba(0, 0, 0, 0.38);\n}\n.mat-badge-accent {\n --mat-badge-background-color: #e91e63;\n --mat-badge-text-color: white;\n}\n.mat-badge-warn {\n --mat-badge-background-color: #f44336;\n --mat-badge-text-color: white;\n}\nhtml {\n --mat-bottom-sheet-container-shape: 4px;\n}\nhtml {\n --mat-bottom-sheet-container-text-color: rgba(0, 0, 0, 0.87);\n --mat-bottom-sheet-container-background-color: white;\n}\nhtml {\n --mat-legacy-button-toggle-height: 36px;\n --mat-legacy-button-toggle-shape: 2px;\n --mat-legacy-button-toggle-focus-state-layer-opacity: 1;\n}\nhtml {\n --mat-standard-button-toggle-shape: 4px;\n --mat-standard-button-toggle-hover-state-layer-opacity: 0.04;\n --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;\n}\nhtml {\n --mat-legacy-button-toggle-text-color: rgba(0, 0, 0, 0.38);\n --mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, 0.12);\n --mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.54);\n --mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;\n --mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);\n --mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;\n --mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;\n}\nhtml {\n --mat-standard-button-toggle-text-color: rgba(0, 0, 0, 0.87);\n --mat-standard-button-toggle-background-color: white;\n --mat-standard-button-toggle-state-layer-color: black;\n --mat-standard-button-toggle-selected-state-background-color: #e0e0e0;\n --mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.87);\n --mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);\n --mat-standard-button-toggle-disabled-state-background-color: white;\n --mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, 0.87);\n --mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;\n --mat-standard-button-toggle-divider-color: rgb(224.4, 224.4, 224.4);\n}\nhtml {\n --mat-standard-button-toggle-height: 48px;\n}\nhtml {\n --mat-datepicker-calendar-container-shape: 4px;\n --mat-datepicker-calendar-container-touch-shape: 4px;\n --mat-datepicker-calendar-container-elevation-shadow:\n 0px 2px 4px -1px rgba(0, 0, 0, 0.2),\n 0px 4px 5px 0px rgba(0, 0, 0, 0.14),\n 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\n --mat-datepicker-calendar-container-touch-elevation-shadow:\n 0px 11px 15px -7px rgba(0, 0, 0, 0.2),\n 0px 24px 38px 3px rgba(0, 0, 0, 0.14),\n 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mat-datepicker-calendar-date-selected-state-text-color: white;\n --mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;\n --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(63, 81, 181, 0.4);\n --mat-datepicker-calendar-date-today-selected-state-outline-color: white;\n --mat-datepicker-calendar-date-focus-state-background-color: rgba(63, 81, 181, 0.3);\n --mat-datepicker-calendar-date-hover-state-background-color: rgba(63, 81, 181, 0.3);\n --mat-datepicker-toggle-active-state-icon-color: #3f51b5;\n --mat-datepicker-calendar-date-in-range-state-background-color: rgba(63, 81, 181, 0.2);\n --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);\n --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;\n --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);\n --mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);\n --mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);\n --mat-datepicker-calendar-period-button-text-color: black;\n --mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);\n --mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);\n --mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);\n --mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);\n --mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.38);\n --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, 0.18);\n --mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, 0.87);\n --mat-datepicker-calendar-date-outline-color: transparent;\n --mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, 0.38);\n --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.24);\n --mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.87);\n --mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, 0.38);\n --mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, 0.38);\n --mat-datepicker-calendar-container-background-color: white;\n --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);\n}\n.mat-datepicker-content.mat-accent {\n --mat-datepicker-calendar-date-selected-state-text-color: white;\n --mat-datepicker-calendar-date-selected-state-background-color: #e91e63;\n --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(233, 30, 99, 0.4);\n --mat-datepicker-calendar-date-today-selected-state-outline-color: white;\n --mat-datepicker-calendar-date-focus-state-background-color: rgba(233, 30, 99, 0.3);\n --mat-datepicker-calendar-date-hover-state-background-color: rgba(233, 30, 99, 0.3);\n --mat-datepicker-calendar-date-in-range-state-background-color: rgba(233, 30, 99, 0.2);\n --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);\n --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;\n --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);\n}\n.mat-datepicker-content.mat-warn {\n --mat-datepicker-calendar-date-selected-state-text-color: white;\n --mat-datepicker-calendar-date-selected-state-background-color: #f44336;\n --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(244, 67, 54, 0.4);\n --mat-datepicker-calendar-date-today-selected-state-outline-color: white;\n --mat-datepicker-calendar-date-focus-state-background-color: rgba(244, 67, 54, 0.3);\n --mat-datepicker-calendar-date-hover-state-background-color: rgba(244, 67, 54, 0.3);\n --mat-datepicker-calendar-date-in-range-state-background-color: rgba(244, 67, 54, 0.2);\n --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);\n --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;\n --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);\n}\n.mat-datepicker-toggle-active.mat-accent {\n --mat-datepicker-toggle-active-state-icon-color: #e91e63;\n}\n.mat-datepicker-toggle-active.mat-warn {\n --mat-datepicker-toggle-active-state-icon-color: #f44336;\n}\n.mat-calendar-controls {\n --mat-icon-button-touch-target-display: none;\n}\n.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {\n --mdc-icon-button-state-layer-size: 40px;\n width: var(--mdc-icon-button-state-layer-size);\n height: var(--mdc-icon-button-state-layer-size);\n padding: 8px;\n}\nhtml {\n --mat-divider-width: 1px;\n}\nhtml {\n --mat-divider-color: rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mat-expansion-container-shape: 4px;\n --mat-expansion-legacy-header-indicator-display: inline-block;\n --mat-expansion-header-indicator-display: none;\n}\nhtml {\n --mat-expansion-container-background-color: white;\n --mat-expansion-container-text-color: rgba(0, 0, 0, 0.87);\n --mat-expansion-actions-divider-color: rgba(0, 0, 0, 0.12);\n --mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);\n --mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);\n --mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, 0.26);\n --mat-expansion-header-text-color: rgba(0, 0, 0, 0.87);\n --mat-expansion-header-description-color: rgba(0, 0, 0, 0.54);\n --mat-expansion-header-indicator-color: rgba(0, 0, 0, 0.54);\n}\nhtml {\n --mat-expansion-header-collapsed-state-height: 48px;\n --mat-expansion-header-expanded-state-height: 64px;\n}\nhtml {\n --mat-icon-color: inherit;\n}\n.mat-icon.mat-primary {\n --mat-icon-color: #3f51b5;\n}\n.mat-icon.mat-accent {\n --mat-icon-color: #e91e63;\n}\n.mat-icon.mat-warn {\n --mat-icon-color: #f44336;\n}\nhtml {\n --mat-sidenav-container-shape: 0;\n --mat-sidenav-container-elevation-shadow:\n 0px 8px 10px -5px rgba(0, 0, 0, 0.2),\n 0px 16px 24px 2px rgba(0, 0, 0, 0.14),\n 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\n --mat-sidenav-container-width: auto;\n}\nhtml {\n --mat-sidenav-container-divider-color: rgba(0, 0, 0, 0.12);\n --mat-sidenav-container-background-color: white;\n --mat-sidenav-container-text-color: rgba(0, 0, 0, 0.87);\n --mat-sidenav-content-background-color: #fafafa;\n --mat-sidenav-content-text-color: rgba(0, 0, 0, 0.87);\n --mat-sidenav-scrim-color: rgba(0, 0, 0, 0.6);\n}\nhtml {\n --mat-stepper-header-icon-foreground-color: white;\n --mat-stepper-header-selected-state-icon-background-color: #3f51b5;\n --mat-stepper-header-selected-state-icon-foreground-color: white;\n --mat-stepper-header-done-state-icon-background-color: #3f51b5;\n --mat-stepper-header-done-state-icon-foreground-color: white;\n --mat-stepper-header-edit-state-icon-background-color: #3f51b5;\n --mat-stepper-header-edit-state-icon-foreground-color: white;\n --mat-stepper-container-color: white;\n --mat-stepper-line-color: rgba(0, 0, 0, 0.12);\n --mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);\n --mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);\n --mat-stepper-header-label-text-color: rgba(0, 0, 0, 0.54);\n --mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, 0.54);\n --mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, 0.87);\n --mat-stepper-header-error-state-label-text-color: #f44336;\n --mat-stepper-header-icon-background-color: rgba(0, 0, 0, 0.54);\n --mat-stepper-header-error-state-icon-foreground-color: #f44336;\n --mat-stepper-header-error-state-icon-background-color: transparent;\n}\nhtml .mat-step-header.mat-accent {\n --mat-stepper-header-icon-foreground-color: white;\n --mat-stepper-header-selected-state-icon-background-color: #e91e63;\n --mat-stepper-header-selected-state-icon-foreground-color: white;\n --mat-stepper-header-done-state-icon-background-color: #e91e63;\n --mat-stepper-header-done-state-icon-foreground-color: white;\n --mat-stepper-header-edit-state-icon-background-color: #e91e63;\n --mat-stepper-header-edit-state-icon-foreground-color: white;\n}\nhtml .mat-step-header.mat-warn {\n --mat-stepper-header-icon-foreground-color: white;\n --mat-stepper-header-selected-state-icon-background-color: #f44336;\n --mat-stepper-header-selected-state-icon-foreground-color: white;\n --mat-stepper-header-done-state-icon-background-color: #f44336;\n --mat-stepper-header-done-state-icon-foreground-color: white;\n --mat-stepper-header-edit-state-icon-background-color: #f44336;\n --mat-stepper-header-edit-state-icon-foreground-color: white;\n}\nhtml {\n --mat-stepper-header-height: 72px;\n}\nhtml {\n --mat-sort-arrow-color: rgb(117.3, 117.3, 117.3);\n}\nhtml {\n --mat-toolbar-container-background-color: whitesmoke;\n --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);\n}\n.mat-toolbar.mat-primary {\n --mat-toolbar-container-background-color: #3f51b5;\n --mat-toolbar-container-text-color: white;\n}\n.mat-toolbar.mat-accent {\n --mat-toolbar-container-background-color: #e91e63;\n --mat-toolbar-container-text-color: white;\n}\n.mat-toolbar.mat-warn {\n --mat-toolbar-container-background-color: #f44336;\n --mat-toolbar-container-text-color: white;\n}\nhtml {\n --mat-toolbar-standard-height: 64px;\n --mat-toolbar-mobile-height: 56px;\n}\nhtml {\n --mat-tree-container-background-color: white;\n --mat-tree-node-text-color: rgba(0, 0, 0, 0.87);\n}\nhtml {\n --mat-tree-node-min-height: 48px;\n}\nhtml {\n --mat-timepicker-container-shape: 4px;\n --mat-timepicker-container-elevation-shadow:\n 0px 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0px 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\nhtml {\n --mat-timepicker-container-background-color: white;\n}\n\n/* src/styles.scss */\nhtml,\nbody {\n height: 100%;\n overflow: hidden;\n}\n* {\n box-sizing: border-box;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n margin: 0;\n}\nbody {\n margin: 0;\n font-family:\n Roboto,\n \"Helvetica Neue\",\n sans-serif;\n}\n\n/* angular:styles/global:styles */\n";
|
|
2424
|
+
styleInject(css_248z);
|
|
2425
|
+
|
|
2396
2426
|
var __defProp = Object.defineProperty;
|
|
2397
2427
|
var __defProps = Object.defineProperties;
|
|
2398
2428
|
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
@@ -41930,12 +41960,12 @@ Note: Recommended intrinsic image size is calculated assuming a maximum DPR of $
|
|
|
41930
41960
|
\u0275\u0275advance(5);
|
|
41931
41961
|
\u0275\u0275textInterpolate(ctx.activeStep());
|
|
41932
41962
|
}
|
|
41933
|
-
}, styles: ["\n\n[_nghost-%COMP%] .stepper[_ngcontent-%COMP%] {\n display: flex;\n height: 100%;\n width: 100%;\n}\n[_nghost-%COMP%] .stepper-body[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n}\n[_nghost-%COMP%] .stepper-body-header[_ngcontent-%COMP%] {\n height: 46px;\n box-sizing: border-box;\n padding: 24px 24px
|
|
41963
|
+
}, styles: ["\n\n[_nghost-%COMP%] .stepper[_ngcontent-%COMP%] {\n display: flex;\n height: 100%;\n width: 100%;\n}\n[_nghost-%COMP%] .stepper-body[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n}\n[_nghost-%COMP%] .stepper-body-header[_ngcontent-%COMP%] {\n height: 46px;\n box-sizing: border-box;\n padding: 24px 24px 38px 24px;\n}\n[_nghost-%COMP%] .stepper-body-header-title[_ngcontent-%COMP%] {\n color: #064563;\n margin: 0;\n font-size: 20px;\n line-height: 20px;\n}\n[_nghost-%COMP%] .stepper-navigation[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n padding: 16px 0;\n height: 100%;\n width: 25%;\n background: #f4f4f4;\n}\n[_nghost-%COMP%] .stepper-navigation-header[_ngcontent-%COMP%] {\n height: 46px;\n box-sizing: border-box;\n padding: 8px 16px 16px 16px;\n}\n[_nghost-%COMP%] .stepper-navigation-header-title[_ngcontent-%COMP%] {\n color: #66698d;\n margin: 0;\n font-weight: 400;\n font-size: 18px;\n line-height: 18px;\n}\n[_nghost-%COMP%] .stepper-navigation-item[_ngcontent-%COMP%] {\n padding: 12px 16px;\n color: #6a6a6a;\n cursor: pointer;\n transition: color 0.125s ease-in-out, font-weight 0.125s ease-in-out;\n -webkit-user-select: none;\n user-select: none;\n}\n[_nghost-%COMP%] .stepper-navigation-item.selected[_ngcontent-%COMP%] {\n cursor: unset;\n color: black;\n background: white;\n font-weight: 500;\n}\n/*# sourceMappingURL=stepper.component.css.map */"], changeDetection: 0 });
|
|
41934
41964
|
};
|
|
41935
41965
|
(() => {
|
|
41936
41966
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(Stepper, [{
|
|
41937
41967
|
type: Component,
|
|
41938
|
-
args: [{ standalone: true, selector: "stepper", changeDetection: ChangeDetectionStrategy.OnPush, template: '<div class="stepper">\r\n <div class="stepper-navigation">\r\n <div class="stepper-navigation-header">\r\n <h2 class="stepper-navigation-header-title">EDIT TASK</h2>\r\n </div>\r\n\r\n @for (item of steps; track item; let index = $index) {\r\n <div [class.selected]="activeStep() === item" class="stepper-navigation-item">\r\n {{index + 1}}. {{item}}\r\n </div>\r\n }\r\n </div>\r\n\r\n <div class="stepper-body">\r\n <div class="stepper-body-header">\r\n <h1 class="stepper-body-header-title">{{activeStep()}}</h1>\r\n </div>\r\n\r\n <ng-content/>\r\n </div>\r\n</div>\r\n', styles: ["/* src/app/components/stepper/stepper.component.scss */\n:host .stepper {\n display: flex;\n height: 100%;\n width: 100%;\n}\n:host .stepper-body {\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n}\n:host .stepper-body-header {\n height: 46px;\n box-sizing: border-box;\n padding: 24px 24px
|
|
41968
|
+
args: [{ standalone: true, selector: "stepper", changeDetection: ChangeDetectionStrategy.OnPush, template: '<div class="stepper">\r\n <div class="stepper-navigation">\r\n <div class="stepper-navigation-header">\r\n <h2 class="stepper-navigation-header-title">EDIT TASK</h2>\r\n </div>\r\n\r\n @for (item of steps; track item; let index = $index) {\r\n <div [class.selected]="activeStep() === item" class="stepper-navigation-item">\r\n {{index + 1}}. {{item}}\r\n </div>\r\n }\r\n </div>\r\n\r\n <div class="stepper-body">\r\n <div class="stepper-body-header">\r\n <h1 class="stepper-body-header-title">{{activeStep()}}</h1>\r\n </div>\r\n\r\n <ng-content/>\r\n </div>\r\n</div>\r\n', styles: ["/* src/app/components/stepper/stepper.component.scss */\n:host .stepper {\n display: flex;\n height: 100%;\n width: 100%;\n}\n:host .stepper-body {\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n}\n:host .stepper-body-header {\n height: 46px;\n box-sizing: border-box;\n padding: 24px 24px 38px 24px;\n}\n:host .stepper-body-header-title {\n color: #064563;\n margin: 0;\n font-size: 20px;\n line-height: 20px;\n}\n:host .stepper-navigation {\n display: flex;\n flex-direction: column;\n padding: 16px 0;\n height: 100%;\n width: 25%;\n background: #f4f4f4;\n}\n:host .stepper-navigation-header {\n height: 46px;\n box-sizing: border-box;\n padding: 8px 16px 16px 16px;\n}\n:host .stepper-navigation-header-title {\n color: #66698d;\n margin: 0;\n font-weight: 400;\n font-size: 18px;\n line-height: 18px;\n}\n:host .stepper-navigation-item {\n padding: 12px 16px;\n color: #6a6a6a;\n cursor: pointer;\n transition: color 0.125s ease-in-out, font-weight 0.125s ease-in-out;\n -webkit-user-select: none;\n user-select: none;\n}\n:host .stepper-navigation-item.selected {\n cursor: unset;\n color: black;\n background: white;\n font-weight: 500;\n}\n/*# sourceMappingURL=stepper.component.css.map */\n"] }]
|
|
41939
41969
|
}], null, null);
|
|
41940
41970
|
})();
|
|
41941
41971
|
(() => {
|
|
@@ -66665,7 +66695,7 @@ By proceeding with this filing under any of the above-named Acts, the authorizer
|
|
|
66665
66695
|
\u0275\u0275property("diameter", 40);
|
|
66666
66696
|
}
|
|
66667
66697
|
}
|
|
66668
|
-
var _c014,
|
|
66698
|
+
var _c014, FilingComponent;
|
|
66669
66699
|
var init_filing_component = __esm({
|
|
66670
66700
|
"src/app/components/filing/filing.component.ts"() {
|
|
66671
66701
|
init_core();
|
|
@@ -66685,403 +66715,8 @@ By proceeding with this filing under any of the above-named Acts, the authorizer
|
|
|
66685
66715
|
init_formation_preview_form_helper();
|
|
66686
66716
|
init_core();
|
|
66687
66717
|
_c014 = ["scrollContainer"];
|
|
66688
|
-
initialTaskMock = {
|
|
66689
|
-
_taskType: "Formation",
|
|
66690
|
-
entity: {
|
|
66691
|
-
"_id": "691b764d7c6f80f5f227c891",
|
|
66692
|
-
"_profile": {
|
|
66693
|
-
"name": "ECore Demo Entity",
|
|
66694
|
-
"email": "michel.lavoie@athennian.com",
|
|
66695
|
-
"directorNumberType": "2",
|
|
66696
|
-
"secondary_name": "",
|
|
66697
|
-
"entity_type": "",
|
|
66698
|
-
"entity_subtype": "",
|
|
66699
|
-
"entity_status": "Active",
|
|
66700
|
-
"entity_language": "en-CA",
|
|
66701
|
-
"address_type": "Registered Office",
|
|
66702
|
-
"member_corp": "",
|
|
66703
|
-
"stock_corp": "",
|
|
66704
|
-
"default_currency": "",
|
|
66705
|
-
"taxID_number": "",
|
|
66706
|
-
"corp_number": "",
|
|
66707
|
-
"file_number": "",
|
|
66708
|
-
"creation": "",
|
|
66709
|
-
"residency": "",
|
|
66710
|
-
"inactive_date": "",
|
|
66711
|
-
"contact_numbers": {
|
|
66712
|
-
"primary": "",
|
|
66713
|
-
"secondary": "",
|
|
66714
|
-
"other": ""
|
|
66715
|
-
},
|
|
66716
|
-
"emails": {
|
|
66717
|
-
"primary": "",
|
|
66718
|
-
"secondary": "",
|
|
66719
|
-
"other": ""
|
|
66720
|
-
},
|
|
66721
|
-
"description": "",
|
|
66722
|
-
"attention": "",
|
|
66723
|
-
"lawyer": {
|
|
66724
|
-
"personID": "",
|
|
66725
|
-
"name": ""
|
|
66726
|
-
},
|
|
66727
|
-
"paralegal": {
|
|
66728
|
-
"personID": "",
|
|
66729
|
-
"name": ""
|
|
66730
|
-
},
|
|
66731
|
-
"sign_auth": "",
|
|
66732
|
-
"tags": [],
|
|
66733
|
-
"naics_code": "11112",
|
|
66734
|
-
"legal_entity_identifier": "1",
|
|
66735
|
-
"unique_id_name": "",
|
|
66736
|
-
"unique_id": "",
|
|
66737
|
-
"cancellation_date": "",
|
|
66738
|
-
"created_date": 1763407347351,
|
|
66739
|
-
"cancellation_memo": "",
|
|
66740
|
-
"registry_id": "",
|
|
66741
|
-
"client_matter_number": "",
|
|
66742
|
-
"partnership_expiry_date": "",
|
|
66743
|
-
"partnership_no_expiry_date": false,
|
|
66744
|
-
"partnership_registration_date": "",
|
|
66745
|
-
"partnership_cancellation_date": "",
|
|
66746
|
-
"partnership_do_not_renew": false,
|
|
66747
|
-
"ext": {
|
|
66748
|
-
"preference": "",
|
|
66749
|
-
"corp_seal": "",
|
|
66750
|
-
"minutebook_local": "",
|
|
66751
|
-
"electronic_filing": false,
|
|
66752
|
-
"notes": ""
|
|
66753
|
-
},
|
|
66754
|
-
"modified_date": 1763407582300
|
|
66755
|
-
},
|
|
66756
|
-
"_compliance": {
|
|
66757
|
-
"home_jurisdiction": "ON",
|
|
66758
|
-
"jurisdiction_country": "Canada",
|
|
66759
|
-
"country": "CA",
|
|
66760
|
-
"region": "CA-ON",
|
|
66761
|
-
"jurisdiction_county": "",
|
|
66762
|
-
"incorporation_date": "",
|
|
66763
|
-
"professional": false,
|
|
66764
|
-
"profession_type": "",
|
|
66765
|
-
"profession_other": "",
|
|
66766
|
-
"exchanges": [],
|
|
66767
|
-
"isFloating_fiscal_year_end": false,
|
|
66768
|
-
"floating_fiscal_year_end": ""
|
|
66769
|
-
},
|
|
66770
|
-
"_administration": {
|
|
66771
|
-
"fractional_shares": true,
|
|
66772
|
-
"fractional_shares_decimals": 12,
|
|
66773
|
-
"currency_decimals": 2,
|
|
66774
|
-
"_id": "691b764d7c6f80f5f227c892"
|
|
66775
|
-
},
|
|
66776
|
-
"_exclude_from_AI": false,
|
|
66777
|
-
"_contacts": [],
|
|
66778
|
-
"_notes": [],
|
|
66779
|
-
"_status": "pending",
|
|
66780
|
-
"_admins": [],
|
|
66781
|
-
"_affiliations": [],
|
|
66782
|
-
"_teamIDs": [
|
|
66783
|
-
"6425fd397e05ba0e117c5414"
|
|
66784
|
-
],
|
|
66785
|
-
"_companyGroups": [],
|
|
66786
|
-
"_responsibleOffices": [],
|
|
66787
|
-
"_governingActs": [],
|
|
66788
|
-
"_customEntitySubtype": [],
|
|
66789
|
-
"_instructions": [],
|
|
66790
|
-
"communications": [],
|
|
66791
|
-
"__v": 11,
|
|
66792
|
-
"_addressesID": "691b764db16dda10098c9f1e",
|
|
66793
|
-
"_historyID": "691b764d8fb026fb464f62f4",
|
|
66794
|
-
"_articles": {
|
|
66795
|
-
"min_directors": 1,
|
|
66796
|
-
"max_directors": 3,
|
|
66797
|
-
"unlimited_directors": false,
|
|
66798
|
-
"share_terms": "Authorized Share Capital (Articles section)",
|
|
66799
|
-
"share_restrictions_text": "Restrictions on Share Capital (Articles section)",
|
|
66800
|
-
"transfer_restrictions_text": "Transfer Restrictions (Articles section)",
|
|
66801
|
-
"other_provisions": "Other Provisions (Articles section)",
|
|
66802
|
-
"restrictions": "Business Restrictions (Articles section)"
|
|
66803
|
-
},
|
|
66804
|
-
"governing_acts": [],
|
|
66805
|
-
"company_groups": [],
|
|
66806
|
-
"responsible_offices": []
|
|
66807
|
-
},
|
|
66808
|
-
incomingAffiliations: [
|
|
66809
|
-
{
|
|
66810
|
-
kind: "PrincipalAffiliationV3",
|
|
66811
|
-
participant: {
|
|
66812
|
-
_id: 22,
|
|
66813
|
-
_profile: {
|
|
66814
|
-
firstName: "Mikita",
|
|
66815
|
-
lastName: "Simpson",
|
|
66816
|
-
middleName: "Test"
|
|
66817
|
-
}
|
|
66818
|
-
},
|
|
66819
|
-
target: {
|
|
66820
|
-
_profile: {
|
|
66821
|
-
firstName: "Mikita",
|
|
66822
|
-
lastName: "Simpson",
|
|
66823
|
-
middleName: "Test"
|
|
66824
|
-
}
|
|
66825
|
-
},
|
|
66826
|
-
role: {
|
|
66827
|
-
role_name: "Director"
|
|
66828
|
-
},
|
|
66829
|
-
addresses: [
|
|
66830
|
-
{
|
|
66831
|
-
city: "Woodbridge",
|
|
66832
|
-
postal_zip: "L4L 4Y7",
|
|
66833
|
-
province_state: "ON",
|
|
66834
|
-
components: [
|
|
66835
|
-
{
|
|
66836
|
-
name: "Street Only",
|
|
66837
|
-
value: "Main St NW"
|
|
66838
|
-
},
|
|
66839
|
-
{
|
|
66840
|
-
name: "Attention",
|
|
66841
|
-
value: "President"
|
|
66842
|
-
},
|
|
66843
|
-
{
|
|
66844
|
-
name: "Street Number Only",
|
|
66845
|
-
value: "4550"
|
|
66846
|
-
}
|
|
66847
|
-
]
|
|
66848
|
-
}
|
|
66849
|
-
]
|
|
66850
|
-
},
|
|
66851
|
-
{
|
|
66852
|
-
kind: "PrincipalAffiliationV3",
|
|
66853
|
-
participant: {
|
|
66854
|
-
_id: 21,
|
|
66855
|
-
_profile: {
|
|
66856
|
-
firstName: "Mark",
|
|
66857
|
-
lastName: "Simpson",
|
|
66858
|
-
middleName: "Test"
|
|
66859
|
-
}
|
|
66860
|
-
},
|
|
66861
|
-
target: {
|
|
66862
|
-
_profile: {
|
|
66863
|
-
firstName: "Mikita",
|
|
66864
|
-
lastName: "Simpson",
|
|
66865
|
-
middleName: "Test"
|
|
66866
|
-
}
|
|
66867
|
-
},
|
|
66868
|
-
role: {
|
|
66869
|
-
role_name: "Director"
|
|
66870
|
-
},
|
|
66871
|
-
addresses: [],
|
|
66872
|
-
parent_affiliation: {
|
|
66873
|
-
addresses: [
|
|
66874
|
-
{
|
|
66875
|
-
city: "Woodbridge",
|
|
66876
|
-
postal_zip: "L4L 4Y7",
|
|
66877
|
-
province_state: "ON",
|
|
66878
|
-
components: [
|
|
66879
|
-
{
|
|
66880
|
-
name: "Street Only",
|
|
66881
|
-
value: "Queen Ave SE"
|
|
66882
|
-
},
|
|
66883
|
-
{
|
|
66884
|
-
name: "Attention",
|
|
66885
|
-
value: "President"
|
|
66886
|
-
},
|
|
66887
|
-
{
|
|
66888
|
-
name: "Street Number Only",
|
|
66889
|
-
value: "4550"
|
|
66890
|
-
}
|
|
66891
|
-
]
|
|
66892
|
-
}
|
|
66893
|
-
]
|
|
66894
|
-
}
|
|
66895
|
-
},
|
|
66896
|
-
{
|
|
66897
|
-
kind: "EntityAffiliationV3",
|
|
66898
|
-
role: {
|
|
66899
|
-
role_name: "Shared Address",
|
|
66900
|
-
static_title: "Registered Office",
|
|
66901
|
-
description: "Main registered office address for the entity",
|
|
66902
|
-
id: 12345
|
|
66903
|
-
},
|
|
66904
|
-
entity_id: "ENT-67890",
|
|
66905
|
-
created_at: "2026-01-09T00:00:00Z",
|
|
66906
|
-
addresses: [
|
|
66907
|
-
{
|
|
66908
|
-
city: "Woodbridge",
|
|
66909
|
-
postal_zip: "L4L 4Y7",
|
|
66910
|
-
province_state: "ON",
|
|
66911
|
-
components: [
|
|
66912
|
-
{
|
|
66913
|
-
name: "Street Only",
|
|
66914
|
-
value: "123 Maple Avenue NW"
|
|
66915
|
-
},
|
|
66916
|
-
{
|
|
66917
|
-
name: "Attention",
|
|
66918
|
-
value: "President"
|
|
66919
|
-
},
|
|
66920
|
-
{
|
|
66921
|
-
name: "Street Number Only",
|
|
66922
|
-
value: "4550"
|
|
66923
|
-
}
|
|
66924
|
-
]
|
|
66925
|
-
}
|
|
66926
|
-
]
|
|
66927
|
-
},
|
|
66928
|
-
{
|
|
66929
|
-
kind: "OtherAffiliation",
|
|
66930
|
-
role: {
|
|
66931
|
-
role_name: "Director"
|
|
66932
|
-
},
|
|
66933
|
-
addresses: [
|
|
66934
|
-
{
|
|
66935
|
-
components: [
|
|
66936
|
-
{
|
|
66937
|
-
name: "Street Only",
|
|
66938
|
-
value: "Fake St N"
|
|
66939
|
-
}
|
|
66940
|
-
]
|
|
66941
|
-
}
|
|
66942
|
-
]
|
|
66943
|
-
},
|
|
66944
|
-
{
|
|
66945
|
-
kind: "PrincipalAffiliationV3",
|
|
66946
|
-
participant: {
|
|
66947
|
-
_id: 21,
|
|
66948
|
-
_profile: {
|
|
66949
|
-
firstName: "Mikita",
|
|
66950
|
-
lastName: "Simpson",
|
|
66951
|
-
middleName: "Test"
|
|
66952
|
-
}
|
|
66953
|
-
},
|
|
66954
|
-
target: {
|
|
66955
|
-
_profile: {
|
|
66956
|
-
firstName: "Mikita",
|
|
66957
|
-
lastName: "Simpson",
|
|
66958
|
-
middleName: "Test"
|
|
66959
|
-
}
|
|
66960
|
-
},
|
|
66961
|
-
role: {
|
|
66962
|
-
role_name: "Shareholder"
|
|
66963
|
-
},
|
|
66964
|
-
addresses: [
|
|
66965
|
-
{
|
|
66966
|
-
city: "Woodbridge",
|
|
66967
|
-
postal_zip: "L4L 4Y7",
|
|
66968
|
-
province_state: "ON",
|
|
66969
|
-
components: [
|
|
66970
|
-
{
|
|
66971
|
-
name: "Street Only",
|
|
66972
|
-
value: "Market Blvd W"
|
|
66973
|
-
}
|
|
66974
|
-
]
|
|
66975
|
-
}
|
|
66976
|
-
]
|
|
66977
|
-
}
|
|
66978
|
-
],
|
|
66979
|
-
_ext: {
|
|
66980
|
-
"officialEmail": "michel.lavoie@athennian.com",
|
|
66981
|
-
_consent_to_use_name: "Company",
|
|
66982
|
-
_name_reservation_date: "2026-01-13",
|
|
66983
|
-
_numbered_company: true,
|
|
66984
|
-
_incorporators: [
|
|
66985
|
-
{
|
|
66986
|
-
profileID: "1a",
|
|
66987
|
-
type: "person",
|
|
66988
|
-
firstName: "Anna",
|
|
66989
|
-
middleName: "Maria",
|
|
66990
|
-
lastName: "Kowalski",
|
|
66991
|
-
incorporator_name: "Anna M. Kowalski",
|
|
66992
|
-
incorporator_reg_number: "2370534",
|
|
66993
|
-
city: "New York",
|
|
66994
|
-
province_state: "NY",
|
|
66995
|
-
country: "USA",
|
|
66996
|
-
postal_zip: "10001",
|
|
66997
|
-
location_type: "residential",
|
|
66998
|
-
components: [
|
|
66999
|
-
{
|
|
67000
|
-
name: "Street Only",
|
|
67001
|
-
value: "Main St NW"
|
|
67002
|
-
},
|
|
67003
|
-
{
|
|
67004
|
-
name: "Attention",
|
|
67005
|
-
value: "President"
|
|
67006
|
-
},
|
|
67007
|
-
{
|
|
67008
|
-
name: "Street Number Only",
|
|
67009
|
-
value: "4550"
|
|
67010
|
-
}
|
|
67011
|
-
]
|
|
67012
|
-
},
|
|
67013
|
-
{
|
|
67014
|
-
profileID: "2s",
|
|
67015
|
-
type: "person",
|
|
67016
|
-
firstName: "John",
|
|
67017
|
-
lastName: "Doe",
|
|
67018
|
-
incorporator_name: "John Doe",
|
|
67019
|
-
incorporator_reg_number: "2370534",
|
|
67020
|
-
city: "New York",
|
|
67021
|
-
province_state: "NY",
|
|
67022
|
-
country: "USA",
|
|
67023
|
-
postal_zip: "10001",
|
|
67024
|
-
location_type: "business",
|
|
67025
|
-
components: [
|
|
67026
|
-
{
|
|
67027
|
-
name: "Street Only",
|
|
67028
|
-
value: "Main St NW"
|
|
67029
|
-
},
|
|
67030
|
-
{
|
|
67031
|
-
name: "Attention",
|
|
67032
|
-
value: "President"
|
|
67033
|
-
},
|
|
67034
|
-
{
|
|
67035
|
-
name: "Street Number Only",
|
|
67036
|
-
value: "4550"
|
|
67037
|
-
}
|
|
67038
|
-
]
|
|
67039
|
-
},
|
|
67040
|
-
{
|
|
67041
|
-
type: "entity",
|
|
67042
|
-
incorporator_name: "Tech Innovations Ltd.",
|
|
67043
|
-
incorporator_reg_number: "2370534",
|
|
67044
|
-
city: "London",
|
|
67045
|
-
province_state: "Greater London",
|
|
67046
|
-
country: "United Kingdom",
|
|
67047
|
-
postal_zip: "SW1A 1AA",
|
|
67048
|
-
location_type: "business",
|
|
67049
|
-
signatory_first_name: "Alice",
|
|
67050
|
-
signatory_last_name: "Smith",
|
|
67051
|
-
signatory_title: "CEO",
|
|
67052
|
-
components: [
|
|
67053
|
-
{
|
|
67054
|
-
name: "Street Only",
|
|
67055
|
-
value: "Main St NW"
|
|
67056
|
-
},
|
|
67057
|
-
{
|
|
67058
|
-
name: "Attention",
|
|
67059
|
-
value: "President"
|
|
67060
|
-
},
|
|
67061
|
-
{
|
|
67062
|
-
name: "Street Number Only",
|
|
67063
|
-
value: "4550"
|
|
67064
|
-
}
|
|
67065
|
-
]
|
|
67066
|
-
},
|
|
67067
|
-
{
|
|
67068
|
-
type: "entity",
|
|
67069
|
-
incorporator_name: "Tech Innovations Ltd.",
|
|
67070
|
-
incorporator_reg_number: "2370534",
|
|
67071
|
-
city: "Toronto",
|
|
67072
|
-
province_state: "ON",
|
|
67073
|
-
country: "Canada",
|
|
67074
|
-
postal_zip: "M5H 2N2",
|
|
67075
|
-
location_type: "business",
|
|
67076
|
-
signatory_first_name: "Bob",
|
|
67077
|
-
signatory_last_name: "Johnson",
|
|
67078
|
-
signatory_title: "Managing Director"
|
|
67079
|
-
}
|
|
67080
|
-
]
|
|
67081
|
-
}
|
|
67082
|
-
};
|
|
67083
66718
|
FilingComponent = class _FilingComponent {
|
|
67084
|
-
signature = input(
|
|
66719
|
+
signature = input();
|
|
67085
66720
|
deltaData = input();
|
|
67086
66721
|
validateOptions = input();
|
|
67087
66722
|
isLoading = signal(false);
|
|
@@ -67099,12 +66734,18 @@ By proceeding with this filing under any of the above-named Acts, the authorizer
|
|
|
67099
66734
|
isSignatureChanged = () => {
|
|
67100
66735
|
const signature = this.signature();
|
|
67101
66736
|
const signatureFromDeltaData = this.deltaData()?.deltaData?.task;
|
|
67102
|
-
if (
|
|
66737
|
+
if (signature && signatureFromDeltaData) {
|
|
67103
66738
|
return !deepEqual(signature.task, signatureFromDeltaData);
|
|
67104
66739
|
}
|
|
67105
66740
|
return false;
|
|
67106
66741
|
};
|
|
67107
66742
|
constructor() {
|
|
66743
|
+
effect(() => {
|
|
66744
|
+
const task = this.signature()?.task;
|
|
66745
|
+
if (task) {
|
|
66746
|
+
this.deltaForm = new FormGroup(__spreadValues({}, this.generateDeltaFormFieldsConfig(task)));
|
|
66747
|
+
}
|
|
66748
|
+
});
|
|
67108
66749
|
effect(() => {
|
|
67109
66750
|
const deltaData = this.deltaData();
|
|
67110
66751
|
if (deltaData) {
|
|
@@ -67117,11 +66758,7 @@ By proceeding with this filing under any of the above-named Acts, the authorizer
|
|
|
67117
66758
|
}
|
|
67118
66759
|
});
|
|
67119
66760
|
}
|
|
67120
|
-
|
|
67121
|
-
this.deltaForm = new FormGroup(__spreadValues({}, this.generateDeltaFormFieldsConfig()));
|
|
67122
|
-
}
|
|
67123
|
-
generateDeltaFormFieldsConfig() {
|
|
67124
|
-
const task = this.signature().task;
|
|
66761
|
+
generateDeltaFormFieldsConfig(task) {
|
|
67125
66762
|
if (task?._taskType === "Formation") {
|
|
67126
66763
|
return FormationDeltaFormHelper.generateConfig(task);
|
|
67127
66764
|
}
|
|
@@ -67143,8 +66780,8 @@ By proceeding with this filing under any of the above-named Acts, the authorizer
|
|
|
67143
66780
|
termsAndConditions,
|
|
67144
66781
|
officialEmail: generalInfo[FillingFormControls.OfficialEmail]
|
|
67145
66782
|
};
|
|
67146
|
-
if (this.signature()
|
|
67147
|
-
this.signature()
|
|
66783
|
+
if (this.signature()?.deltaDataChange) {
|
|
66784
|
+
this.signature()?.deltaDataChange({
|
|
67148
66785
|
deltaData: __spreadProps(__spreadValues({}, deltaData), { signature: this.signature() })
|
|
67149
66786
|
});
|
|
67150
66787
|
}
|
|
@@ -67152,11 +66789,11 @@ By proceeding with this filing under any of the above-named Acts, the authorizer
|
|
|
67152
66789
|
if (signature) {
|
|
67153
66790
|
const response = yield this.formationService.submitFormationValidateRequest(signature, deltaData, this.validateOptions());
|
|
67154
66791
|
this.changeDeltaData.emit({
|
|
67155
|
-
deltaData: __spreadProps(__spreadValues({}, deltaData), { task: this.signature()
|
|
66792
|
+
deltaData: __spreadProps(__spreadValues({}, deltaData), { task: this.signature()?.task })
|
|
67156
66793
|
});
|
|
67157
|
-
if (this.signature()
|
|
66794
|
+
if (this.signature()?.draftReady) {
|
|
67158
66795
|
const isoTimestamp = (/* @__PURE__ */ new Date()).toISOString();
|
|
67159
|
-
this.signature()
|
|
66796
|
+
this.signature()?.draftReady({
|
|
67160
66797
|
draftPdf: response.Draft ?? "",
|
|
67161
66798
|
documentName: this.validateOptions()?.documentName ? `${this.validateOptions()?.documentName} ${isoTimestamp}` : `Incorporation Draft ${isoTimestamp}`,
|
|
67162
66799
|
documentType: "pdf"
|
|
@@ -67208,8 +66845,9 @@ By proceeding with this filing under any of the above-named Acts, the authorizer
|
|
|
67208
66845
|
this.errorData.set(null);
|
|
67209
66846
|
const result = yield this.validateAndFile(this.previewForm, termsAndConditions);
|
|
67210
66847
|
const serviceId = result?.ServiceOrderId;
|
|
67211
|
-
|
|
67212
|
-
|
|
66848
|
+
const signature = this.signature();
|
|
66849
|
+
if (serviceId && signature) {
|
|
66850
|
+
const result2 = yield this.formationService.submitFormationRequest(signature, serviceId, this.validateOptions());
|
|
67213
66851
|
if (!result2?.ReceiptPdf) {
|
|
67214
66852
|
yield this.getStatus(serviceId);
|
|
67215
66853
|
}
|
|
@@ -67228,7 +66866,7 @@ By proceeding with this filing under any of the above-named Acts, the authorizer
|
|
|
67228
66866
|
});
|
|
67229
66867
|
}
|
|
67230
66868
|
generatePreviewFormFieldsConfig() {
|
|
67231
|
-
const task = this.signature()
|
|
66869
|
+
const task = this.signature()?.task;
|
|
67232
66870
|
if (task?._taskType === "Formation") {
|
|
67233
66871
|
return FormationPreviewFormHelper.generateFieldConfig(task, this.deltaData()?.deltaData);
|
|
67234
66872
|
}
|
|
@@ -67255,8 +66893,9 @@ By proceeding with this filing under any of the above-named Acts, the authorizer
|
|
|
67255
66893
|
getStatus(serviceId) {
|
|
67256
66894
|
return __async(this, null, function* () {
|
|
67257
66895
|
this.isPolling = true;
|
|
67258
|
-
|
|
67259
|
-
|
|
66896
|
+
const signature = yield this.signature();
|
|
66897
|
+
while (this.isPolling && signature) {
|
|
66898
|
+
const result = yield this.formationService.getStatusFormationRequest(signature, serviceId, this.validateOptions());
|
|
67260
66899
|
const status = result.Status;
|
|
67261
66900
|
if (!status || this.isFormationTerminated(status)) {
|
|
67262
66901
|
this.isPolling = false;
|
|
@@ -67323,7 +66962,7 @@ By proceeding with this filing under any of the above-named Acts, the authorizer
|
|
|
67323
66962
|
}] });
|
|
67324
66963
|
})();
|
|
67325
66964
|
(() => {
|
|
67326
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(FilingComponent, { className: "FilingComponent", filePath: "src/app/components/filing/filing.component.ts", lineNumber:
|
|
66965
|
+
(typeof ngDevMode === "undefined" || ngDevMode) && \u0275setClassDebugInfo(FilingComponent, { className: "FilingComponent", filePath: "src/app/components/filing/filing.component.ts", lineNumber: 47 });
|
|
67327
66966
|
})();
|
|
67328
66967
|
}
|
|
67329
66968
|
});
|