@touchpoll/tp-survey 0.0.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.
Files changed (99) hide show
  1. package/README.md +24 -0
  2. package/esm2022/lib/component/answer/answer.additional/answer.additional.component.mjs +49 -0
  3. package/esm2022/lib/component/answer/answer.additional/directive/additional.answer.caption.position/additional.answer.caption.position.directive.mjs +61 -0
  4. package/esm2022/lib/component/answer/answer.end/answer.end.component.mjs +30 -0
  5. package/esm2022/lib/component/answer/answer.info/answer.info.component.mjs +30 -0
  6. package/esm2022/lib/component/answer/answer.lang/answer.lang.component.mjs +22 -0
  7. package/esm2022/lib/component/answer/answer.master/answer.master.component.mjs +55 -0
  8. package/esm2022/lib/component/answer/answer.ms/answer.ms.component.mjs +106 -0
  9. package/esm2022/lib/component/answer/answer.od/answer.od.component.mjs +39 -0
  10. package/esm2022/lib/component/answer/answer.ol/answer.ol.component.mjs +39 -0
  11. package/esm2022/lib/component/answer/answer.sl/answer.sl.component.mjs +131 -0
  12. package/esm2022/lib/component/answer/answer.sl/pipe/as.form.array/as.form.array.pipe.mjs +17 -0
  13. package/esm2022/lib/component/answer/answer.sl/pipe/as.form.control/as.form.control.pipe.mjs +17 -0
  14. package/esm2022/lib/component/answer/answer.ss/answer.ss.component.mjs +51 -0
  15. package/esm2022/lib/component/answer/container.answer/container.answer.component.mjs +317 -0
  16. package/esm2022/lib/component/answer/container.answer/container.answer.validator.mjs +124 -0
  17. package/esm2022/lib/component/navigation.button/navigation.button.component.mjs +21 -0
  18. package/esm2022/lib/component/question.caption/question.caption.component.mjs +15 -0
  19. package/esm2022/lib/component/survey.play/survey.play.component.mjs +131 -0
  20. package/esm2022/lib/component/survey.question.preview/survey.question.preview.component.mjs +44 -0
  21. package/esm2022/lib/core/tp.servey.quota/tp.survey.quota.mjs +82 -0
  22. package/esm2022/lib/core/tp.survey.answer/tp.survey.answer.mjs +30 -0
  23. package/esm2022/lib/core/tp.survey.core/tp.survey.core.service.mjs +370 -0
  24. package/esm2022/lib/core/tp.survey.interview/tp.survey.interview.service.mjs +70 -0
  25. package/esm2022/lib/core/tp.survey.logic/tp.survey.logic.service.mjs +43 -0
  26. package/esm2022/lib/directive/alternatives.container/alternatives.container.directive.mjs +130 -0
  27. package/esm2022/lib/directive/focus.and.select/focus.and.select.directive.mjs +27 -0
  28. package/esm2022/lib/directive/survey.theme/survey.theme.directive.mjs +53 -0
  29. package/esm2022/lib/directive/update.font.size/update.font.size.directive.mjs +28 -0
  30. package/esm2022/lib/icons/default.icons/default.icons.mjs +15 -0
  31. package/esm2022/lib/icons/default.icons/default.icons.module.mjs +31 -0
  32. package/esm2022/lib/pipe/get.active.language/get.active.language.pipe.mjs +17 -0
  33. package/esm2022/lib/pipe/get.additional.value.by.value/get.additional.value.by.value.pipe.mjs +18 -0
  34. package/esm2022/lib/pipe/key.values/key.values.pipe.mjs +20 -0
  35. package/esm2022/lib/pipe/multi.lang.object.to.html/multi.lang.object.to.html.pipe.mjs +26 -0
  36. package/esm2022/lib/tp.survey.config.mjs +8 -0
  37. package/esm2022/lib/tp.survey.const.mjs +28 -0
  38. package/esm2022/lib/tp.survey.enum.mjs +59 -0
  39. package/esm2022/lib/tp.survey.interface.mjs +2 -0
  40. package/esm2022/lib/tp.survey.method.mjs +5 -0
  41. package/esm2022/lib/tp.survey.module.mjs +27 -0
  42. package/esm2022/lib/tp.survey.type.mjs +2 -0
  43. package/esm2022/public-api.mjs +14 -0
  44. package/esm2022/touchpoll-tp-survey.mjs +5 -0
  45. package/fesm2022/touchpoll-tp-survey.mjs +2210 -0
  46. package/fesm2022/touchpoll-tp-survey.mjs.map +1 -0
  47. package/index.d.ts +5 -0
  48. package/lib/component/answer/answer.additional/answer.additional.component.d.ts +17 -0
  49. package/lib/component/answer/answer.additional/directive/additional.answer.caption.position/additional.answer.caption.position.directive.d.ts +16 -0
  50. package/lib/component/answer/answer.end/answer.end.component.d.ts +6 -0
  51. package/lib/component/answer/answer.info/answer.info.component.d.ts +6 -0
  52. package/lib/component/answer/answer.lang/answer.lang.component.d.ts +9 -0
  53. package/lib/component/answer/answer.master/answer.master.component.d.ts +21 -0
  54. package/lib/component/answer/answer.ms/answer.ms.component.d.ts +21 -0
  55. package/lib/component/answer/answer.od/answer.od.component.d.ts +8 -0
  56. package/lib/component/answer/answer.ol/answer.ol.component.d.ts +7 -0
  57. package/lib/component/answer/answer.sl/answer.sl.component.d.ts +21 -0
  58. package/lib/component/answer/answer.sl/pipe/as.form.array/as.form.array.pipe.d.ts +8 -0
  59. package/lib/component/answer/answer.sl/pipe/as.form.control/as.form.control.pipe.d.ts +8 -0
  60. package/lib/component/answer/answer.ss/answer.ss.component.d.ts +10 -0
  61. package/lib/component/answer/container.answer/container.answer.component.d.ts +36 -0
  62. package/lib/component/answer/container.answer/container.answer.validator.d.ts +10 -0
  63. package/lib/component/navigation.button/navigation.button.component.d.ts +9 -0
  64. package/lib/component/question.caption/question.caption.component.d.ts +8 -0
  65. package/lib/component/survey.play/survey.play.component.d.ts +36 -0
  66. package/lib/component/survey.question.preview/survey.question.preview.component.d.ts +16 -0
  67. package/lib/core/tp.servey.quota/tp.survey.quota.d.ts +12 -0
  68. package/lib/core/tp.survey.answer/tp.survey.answer.d.ts +17 -0
  69. package/lib/core/tp.survey.core/tp.survey.core.service.d.ts +29 -0
  70. package/lib/core/tp.survey.interview/tp.survey.interview.service.d.ts +14 -0
  71. package/lib/core/tp.survey.logic/tp.survey.logic.service.d.ts +12 -0
  72. package/lib/directive/alternatives.container/alternatives.container.directive.d.ts +17 -0
  73. package/lib/directive/focus.and.select/focus.and.select.directive.d.ts +9 -0
  74. package/lib/directive/survey.theme/survey.theme.directive.d.ts +13 -0
  75. package/lib/directive/update.font.size/update.font.size.directive.d.ts +10 -0
  76. package/lib/icons/default.icons/default.icons.d.ts +5 -0
  77. package/lib/icons/default.icons/default.icons.module.d.ts +12 -0
  78. package/lib/pipe/get.active.language/get.active.language.pipe.d.ts +8 -0
  79. package/lib/pipe/get.additional.value.by.value/get.additional.value.by.value.pipe.d.ts +8 -0
  80. package/lib/pipe/key.values/key.values.pipe.d.ts +14 -0
  81. package/lib/pipe/multi.lang.object.to.html/multi.lang.object.to.html.pipe.d.ts +11 -0
  82. package/lib/tp.survey.config.d.ts +11 -0
  83. package/lib/tp.survey.const.d.ts +4 -0
  84. package/lib/tp.survey.enum.d.ts +51 -0
  85. package/lib/tp.survey.interface.d.ts +320 -0
  86. package/lib/tp.survey.method.d.ts +1 -0
  87. package/lib/tp.survey.module.d.ts +10 -0
  88. package/lib/tp.survey.type.d.ts +13 -0
  89. package/package.json +25 -0
  90. package/public-api.d.ts +9 -0
  91. package/styles/platform/component/survey.checkbox.scss +102 -0
  92. package/styles/platform/component/survey.radio.button.scss +34 -0
  93. package/styles/platform/survey.mixins.desktop.scss +146 -0
  94. package/styles/platform/survey.mixins.tablet.scss +132 -0
  95. package/styles/survey.mixins.scss +76 -0
  96. package/styles/survey.themes.scss +56 -0
  97. package/styles/theme/azure.blue.scss +54 -0
  98. package/styles/theme/cyan.orange.scss +54 -0
  99. package/styles/theme/rose.red.scss +54 -0
@@ -0,0 +1,2210 @@
1
+ import * as i0 from '@angular/core';
2
+ import { InjectionToken, PLATFORM_ID, NgModule, Inject, input, Component, ChangeDetectionStrategy, output, Pipe, inject, DestroyRef, forwardRef, effect, ElementRef, Directive, ContentChildren, HostBinding, booleanAttribute, numberAttribute, Injectable, signal } from '@angular/core';
3
+ import { isPlatformServer, KeyValuePipe, JsonPipe, isPlatformBrowser, AsyncPipe, NgTemplateOutlet } from '@angular/common';
4
+ import * as i1 from '@angular/platform-browser';
5
+ import * as i2 from '@angular/material/icon';
6
+ import { MatIcon } from '@angular/material/icon';
7
+ import { filter, tap, debounceTime, Subject, BehaviorSubject, mergeMap, from, concatMap, of, delay, distinctUntilChanged, merge } from 'rxjs';
8
+ import { map } from 'rxjs/operators';
9
+ import { takeUntilDestroyed, toSignal } from '@angular/core/rxjs-interop';
10
+ import { MatButton } from '@angular/material/button';
11
+ import { MatRadioGroup, MatRadioButton } from '@angular/material/radio';
12
+ import * as i1$2 from '@angular/forms';
13
+ import { FormControl, NG_VALUE_ACCESSOR, ReactiveFormsModule, FormGroup, FormArray, FormsModule } from '@angular/forms';
14
+ import { MatFormField } from '@angular/material/form-field';
15
+ import { MatInput } from '@angular/material/input';
16
+ import { MatCheckbox } from '@angular/material/checkbox';
17
+ import * as i1$1 from '@angular/cdk/layout';
18
+ import { CdkTextareaAutosize } from '@angular/cdk/text-field';
19
+
20
+ /**
21
+ * A DI token for the survey service.
22
+ *
23
+ * @publicApi
24
+ */
25
+ const TP_SURVEY_CONFIGURATION = new InjectionToken('__TOUCHPOLL_SURVEY_CONFIGURATION_TOKEN__');
26
+
27
+ const defaultIcons = {
28
+ 'iconButtonNext': `
29
+ <path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/>
30
+ `,
31
+ 'iconButtonBack': `
32
+ <path d="M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"/>
33
+ `,
34
+ 'iconIsMute': `
35
+ <path d="M7.6,4H4A3,3,0,0,0,1,7H1a3,3,0,0,0,3,3H7.6a7.9,7.9,0,0,1,3.9,1L15,13V1L11.4,3A7.9,7.9,0,0,1,7.6,4Z" fill="none" stroke="#444" stroke-linejoin="round" stroke-width="2"/>
36
+ <path d="M6,10v2.9a4,4,0,0,0,.3,1.5L7,17" fill="none" stroke="#444" stroke-linejoin="round" stroke-width="4"/>
37
+ <path d="M15,4h.1A1.9,1.9,0,0,1,17,5.9V8.1A1.9,1.9,0,0,1,15.1,10H15a0,0,0,0,1,0,0V4A0,0,0,0,1,15,4Z" fill="none" stroke="#444" stroke-linejoin="round" stroke-width="2"/>
38
+ <line x1="1" y1="1" x2="17" y2="17" fill="none" stroke="#444" stroke-linejoin="round" stroke-width="2"/>
39
+ `,
40
+ };
41
+
42
+ class DefaultIconsModule {
43
+ constructor(domSanitizer, matIconRegistry, platformId) {
44
+ this.domSanitizer = domSanitizer;
45
+ this.matIconRegistry = matIconRegistry;
46
+ this.platformId = platformId;
47
+ for (const [name, svgText] of Object.entries(defaultIcons)) {
48
+ const iconText = `<svg viewBox="0 0 24 24">${isPlatformServer(this.platformId) ? '' : svgText}</svg>`;
49
+ this.matIconRegistry.addSvgIconLiteral(name, this.domSanitizer.bypassSecurityTrustHtml(iconText));
50
+ }
51
+ }
52
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: DefaultIconsModule, deps: [{ token: i1.DomSanitizer }, { token: i2.MatIconRegistry }, { token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.NgModule }); }
53
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.0.6", ngImport: i0, type: DefaultIconsModule }); }
54
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: DefaultIconsModule }); }
55
+ }
56
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: DefaultIconsModule, decorators: [{
57
+ type: NgModule,
58
+ args: [{
59
+ declarations: [],
60
+ imports: [],
61
+ }]
62
+ }], ctorParameters: () => [{ type: i1.DomSanitizer }, { type: i2.MatIconRegistry }, { type: undefined, decorators: [{
63
+ type: Inject,
64
+ args: [PLATFORM_ID]
65
+ }] }] });
66
+
67
+ class TpSurveyModule {
68
+ // #docregion for-root
69
+ static forRoot(config) {
70
+ return {
71
+ ngModule: TpSurveyModule,
72
+ providers: [
73
+ { provide: TP_SURVEY_CONFIGURATION, useValue: config }
74
+ ]
75
+ };
76
+ }
77
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
78
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyModule, imports: [DefaultIconsModule] }); }
79
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyModule, imports: [DefaultIconsModule] }); }
80
+ }
81
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyModule, decorators: [{
82
+ type: NgModule,
83
+ args: [{
84
+ imports: [
85
+ DefaultIconsModule
86
+ ]
87
+ }]
88
+ }] });
89
+
90
+ class QuestionCaptionComponent {
91
+ constructor() {
92
+ this.caption = input();
93
+ this.captionHelp = input();
94
+ }
95
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: QuestionCaptionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
96
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.0.6", type: QuestionCaptionComponent, isStandalone: true, selector: "tp-survey-question-caption", inputs: { caption: { classPropertyName: "caption", publicName: "caption", isSignal: true, isRequired: false, transformFunction: null }, captionHelp: { classPropertyName: "captionHelp", publicName: "captionHelp", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"container-main\">\r\n <div [innerHTML]= \"caption()\" class=\"question-caption-font\"></div>\r\n <div [innerHTML]= \"captionHelp()\" class=\"question-caption-helper-font\"></div>\r\n</div>\r\n", styles: [".container-main{display:flex;flex-flow:column nowrap;justify-content:center;align-items:center;gap:1em;width:100%;white-space:pre-wrap;line-height:1;box-sizing:border-box;padding:1em}.question-caption-font{font-size:1.2em;line-height:1.2;width:100%;text-align:center}.question-caption-helper-font{font-size:1.1em;font-style:italic;width:100%;text-align:center}:host-context(.tp-view-desktop) .container-main{max-width:896px;margin:0 auto}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
97
+ }
98
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: QuestionCaptionComponent, decorators: [{
99
+ type: Component,
100
+ args: [{ selector: 'tp-survey-question-caption', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, template: "<div class=\"container-main\">\r\n <div [innerHTML]= \"caption()\" class=\"question-caption-font\"></div>\r\n <div [innerHTML]= \"captionHelp()\" class=\"question-caption-helper-font\"></div>\r\n</div>\r\n", styles: [".container-main{display:flex;flex-flow:column nowrap;justify-content:center;align-items:center;gap:1em;width:100%;white-space:pre-wrap;line-height:1;box-sizing:border-box;padding:1em}.question-caption-font{font-size:1.2em;line-height:1.2;width:100%;text-align:center}.question-caption-helper-font{font-size:1.1em;font-style:italic;width:100%;text-align:center}:host-context(.tp-view-desktop) .container-main{max-width:896px;margin:0 auto}\n"] }]
101
+ }] });
102
+
103
+ class NavigationButtonComponent {
104
+ constructor() {
105
+ this.direction = input.required();
106
+ this.caption = input();
107
+ this.onClick = output();
108
+ }
109
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: NavigationButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
110
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.6", type: NavigationButtonComponent, isStandalone: true, selector: "tp-survey-navigation-button", inputs: { direction: { classPropertyName: "direction", publicName: "direction", isSignal: true, isRequired: true, transformFunction: null }, caption: { classPropertyName: "caption", publicName: "caption", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onClick: "onClick" }, ngImport: i0, template: "<button mat-flat-button (click)=\"onClick.emit(direction())\" class=\"navigation-button\">\r\n @if (direction() === 'back') {\r\n <mat-icon svgIcon=\"iconButtonBack\" aria-hidden=\"false\" class=\"navigation-button-icon\"/>\r\n }\r\n\r\n <span class=\"navigation-button-label\">{{ caption() }}</span>\r\n\r\n @if (direction() === 'next') {\r\n <mat-icon iconPositionEnd svgIcon=\"iconButtonNext\" aria-hidden=\"false\" class=\"navigation-button-icon\"/>\r\n }\r\n</button>\r\n\r\n", styles: ["mat-icon.navigation-button-icon{width:46px;height:46px}.navigation-button{width:130px}\n"], dependencies: [{ kind: "component", type: MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
111
+ }
112
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: NavigationButtonComponent, decorators: [{
113
+ type: Component,
114
+ args: [{ selector: 'tp-survey-navigation-button', standalone: true, imports: [
115
+ MatButton,
116
+ MatIcon
117
+ ], changeDetection: ChangeDetectionStrategy.OnPush, template: "<button mat-flat-button (click)=\"onClick.emit(direction())\" class=\"navigation-button\">\r\n @if (direction() === 'back') {\r\n <mat-icon svgIcon=\"iconButtonBack\" aria-hidden=\"false\" class=\"navigation-button-icon\"/>\r\n }\r\n\r\n <span class=\"navigation-button-label\">{{ caption() }}</span>\r\n\r\n @if (direction() === 'next') {\r\n <mat-icon iconPositionEnd svgIcon=\"iconButtonNext\" aria-hidden=\"false\" class=\"navigation-button-icon\"/>\r\n }\r\n</button>\r\n\r\n", styles: ["mat-icon.navigation-button-icon{width:46px;height:46px}.navigation-button{width:130px}\n"] }]
118
+ }] });
119
+
120
+ const MISSING_VALUE = -97;
121
+ const BASE_WIDTH = 1280;
122
+ const BASE_HEIGHT = 800;
123
+ const LOGIC_FUNC_TEXT = `
124
+ const self = this;
125
+ var setVar = function(varName, value) {
126
+ self[varName] = value
127
+ };
128
+ var FUNC_IN = function(varName, array) {
129
+ return isNaN(parseInt(varName)) ? false : array.indexOf(varName) > -1
130
+ };
131
+ var FUNC_INTERSECT = function (var1, var2) {
132
+ return Array.isArray(var1) && Array.isArray(var2) ? var1.some(function(el1) {
133
+ return var2.some(function (el2) {
134
+ return el2 === el1;
135
+ });
136
+ }) : false;
137
+ };
138
+ var value = function(varName, defaultValue) {
139
+ const defVal = !defaultValue ? 0 : defaultValue;
140
+ if ( (varName === -97) || (varName === null) || (varName === undefined) ) {
141
+ return defVal
142
+ } else {
143
+ return varName
144
+ }
145
+ }
146
+ for (var p in this) eval("var " + p + " = this[p];"); `;
147
+
148
+ const answerDefaultValidator = () => {
149
+ return (control) => {
150
+ //ответ не число, такого быть не может, это ошибка
151
+ if ((control.value === null) || (control.value === MISSING_VALUE)) {
152
+ return { answerRequired: true };
153
+ }
154
+ //ошибок нет, всё корректно
155
+ return null;
156
+ };
157
+ };
158
+ const answerODValidator = (minValue, maxValue) => (control) => {
159
+ //ответ не число, такого быть не может, это ошибка
160
+ if (!Number.isSafeInteger(control.value)) {
161
+ return { answerOdAnswerType: true };
162
+ }
163
+ //Нужно проверить 2 ситуации.
164
+ //1 В настройках вопроса указали minValue, тогда введённое число должно быть больше minValue.
165
+ //2 В настройках вопроса указали maxValue, тогда введённое число должно быть меньше maxValue.
166
+ //Если эти условия не выполняются, то это ошибка.
167
+ if ((Number.isSafeInteger(minValue) && control.value < minValue) || (Number.isSafeInteger(maxValue) && (maxValue ?? 0 > 0) && control.value > maxValue)) {
168
+ return { answerOdAnswerError: true };
169
+ }
170
+ //ошибок нет, всё корректно
171
+ return null;
172
+ };
173
+ const answerOLValidator = () => (control) => {
174
+ const text = typeof control.value !== 'string' ? '' : control.value.trim();
175
+ //Нужно чтобы в поле ввели хоть что-то.
176
+ if (text.length === 0) {
177
+ return { answerOlAnswerError: true };
178
+ }
179
+ //ошибок нет, всё корректно
180
+ return null;
181
+ };
182
+ const answerSSValidator = () => (control) => {
183
+ //ответ не число, такого быть не может, это ошибка
184
+ if (!Number.isSafeInteger(control.value)) {
185
+ return { answerSsAnswerType: true };
186
+ }
187
+ //нет ответа
188
+ if (control.value < 0) {
189
+ return { answerMissing: true };
190
+ }
191
+ //ошибок нет, всё корректно
192
+ return null;
193
+ };
194
+ const answerMSValidator = (visibleAlternativeCount, minCount = 1, maxCount = 0) => (control) => {
195
+ //visibleAlternativeCount - количество альтернатив на экране, если 0, то смысла показывать вопрос нет
196
+ //minCount - Минимальное количество ответов, которое может выбрать респондент, по умолчанию 1.
197
+ //maxCount - Максимальное количество ответов, которые может выбрать респондент. Если указано 0, количество не ограничено. По умолчанию 0
198
+ if (visibleAlternativeCount === 0) {
199
+ return null;
200
+ }
201
+ //ответ не массив, такого быть не может, это ошибка
202
+ if (!Array.isArray(control.value)) {
203
+ return { answerMsAnswerType: true };
204
+ }
205
+ //количество ответов
206
+ const count = control.value.length;
207
+ //проверяем minCount
208
+ if (count < minCount) {
209
+ return { answerMsMinCount: true };
210
+ }
211
+ //проверяем maxCount
212
+ if (maxCount > 0 && count > maxCount) {
213
+ return { answerMsMaxCount: true };
214
+ }
215
+ //ошибок нет, всё корректно
216
+ return null;
217
+ };
218
+ const answerSlValidator = (required, minAnswersCount, sectionList) => (control) => {
219
+ //если ответы для каждой секции необязательны, ничего не проверяем и выходим.
220
+ if (!required) {
221
+ return null;
222
+ }
223
+ if (!control.value) {
224
+ return { answerMissing: true };
225
+ }
226
+ //если хоть 1 сессия не имеет значения(или количество выбранных альтернатив меньше minAnswersCount), тогда ответ на вопрос не полный.
227
+ const hasMissingAnswers = sectionList.some(section => {
228
+ const sectionAnswers = control.value[section.SectionGuid.toString()];
229
+ if (!sectionAnswers) {
230
+ return true;
231
+ }
232
+ else {
233
+ return Array.isArray(sectionAnswers) ? sectionAnswers.length === 0 || (minAnswersCount > 1 && sectionAnswers.length < minAnswersCount) : sectionAnswers === 0;
234
+ }
235
+ });
236
+ if (hasMissingAnswers) {
237
+ return { answerMissing: true };
238
+ }
239
+ //ошибок нет, всё корректно
240
+ return null;
241
+ };
242
+ const additionalAnswerDefaultValidator = (required) => {
243
+ return (control) => {
244
+ if ((control.value === null || (typeof control.value === 'string' && control.value.trim().length === 0)) && required) {
245
+ return { additionalAnswerRequired: true };
246
+ }
247
+ //ошибок нет, всё корректно
248
+ return null;
249
+ };
250
+ };
251
+ const additionalAnswerNumberValidator = (required, minValue, maxValue) => (control) => {
252
+ //ответ не обязательный, можно не контролировать
253
+ if (!required) {
254
+ return null;
255
+ }
256
+ //ответ не число, такого быть не может, это ошибка
257
+ if (!Number.isSafeInteger(control.value)) {
258
+ return { additionalAnswerType: true };
259
+ }
260
+ //Нужно проверить 2 ситуации.
261
+ //1 В настройках вопроса указали minValue, тогда введённое число должно быть больше minValue.
262
+ //2 В настройках вопроса указали maxValue, тогда введённое число должно быть меньше maxValue.
263
+ //Если эти условия не выполняются, то это ошибка.
264
+ if ((Number.isSafeInteger(minValue) && control.value < minValue) || (Number.isSafeInteger(maxValue) && control.value > maxValue)) {
265
+ return { answerOdAnswerError: true };
266
+ }
267
+ //ошибок нет, всё корректно
268
+ return null;
269
+ };
270
+
271
+ class MultiLangObjectToHtmlPipe {
272
+ constructor(_sanitizer) {
273
+ this._sanitizer = _sanitizer;
274
+ }
275
+ transform(caption, language) {
276
+ if (!Array.isArray(caption)) {
277
+ return '';
278
+ }
279
+ const langObj = caption.find(capt => capt.lang === language);
280
+ const text = langObj?._SYS_CaptionHTML ?? langObj?.CaptionHtml ?? '';
281
+ return this._sanitizer.bypassSecurityTrustHtml(text);
282
+ }
283
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: MultiLangObjectToHtmlPipe, deps: [{ token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
284
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.6", ngImport: i0, type: MultiLangObjectToHtmlPipe, isStandalone: true, name: "multiLangObjectToHtml" }); }
285
+ }
286
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: MultiLangObjectToHtmlPipe, decorators: [{
287
+ type: Pipe,
288
+ args: [{
289
+ name: 'multiLangObjectToHtml',
290
+ standalone: true
291
+ }]
292
+ }], ctorParameters: () => [{ type: i1.DomSanitizer }] });
293
+
294
+ var ViewModel;
295
+ (function (ViewModel) {
296
+ ViewModel[ViewModel["vmDesktop"] = 1] = "vmDesktop";
297
+ ViewModel[ViewModel["vmMobile"] = 2] = "vmMobile";
298
+ ViewModel[ViewModel["vmTablet"] = 3] = "vmTablet";
299
+ })(ViewModel || (ViewModel = {}));
300
+ var SurveyEvents;
301
+ (function (SurveyEvents) {
302
+ SurveyEvents["seSurveyStart"] = "survey.start";
303
+ SurveyEvents["seSurveyViewModelUpdate"] = "survey.view.model.update";
304
+ SurveyEvents["seSurveyDeveloperModeUpdate"] = "survey.developer.mode.update";
305
+ SurveyEvents["seSurveyEnd"] = "survey.end";
306
+ SurveyEvents["seQuestionShow"] = "question.show";
307
+ SurveyEvents["seQuestionHide"] = "question.hide";
308
+ SurveyEvents["seQuestionRefresh"] = "question.refresh";
309
+ SurveyEvents["seQuestionAnswersCompleted"] = "answers.completed";
310
+ SurveyEvents["seQuestionAnswersChange"] = "answers.change";
311
+ SurveyEvents["seSurveyLanguageUpdate"] = "survey.language.update"; // on survey language updated
312
+ })(SurveyEvents || (SurveyEvents = {}));
313
+ var AdditionalAnswerType;
314
+ (function (AdditionalAnswerType) {
315
+ AdditionalAnswerType[AdditionalAnswerType["aatNumber"] = 1] = "aatNumber";
316
+ AdditionalAnswerType[AdditionalAnswerType["aatText"] = 2] = "aatText";
317
+ AdditionalAnswerType[AdditionalAnswerType["aatBoolean"] = 3] = "aatBoolean";
318
+ })(AdditionalAnswerType || (AdditionalAnswerType = {}));
319
+ var QuestionsType;
320
+ (function (QuestionsType) {
321
+ QuestionsType["eqLANG"] = "LANG";
322
+ QuestionsType["eqSS"] = "SS";
323
+ QuestionsType["eqMS"] = "MS";
324
+ QuestionsType["eqINFO"] = "INFO";
325
+ QuestionsType["eqSL"] = "SL";
326
+ QuestionsType["eqOL"] = "OL";
327
+ QuestionsType["eqOD"] = "OD";
328
+ QuestionsType["eqEND"] = "END";
329
+ })(QuestionsType || (QuestionsType = {}));
330
+ var ResultativeStatus;
331
+ (function (ResultativeStatus) {
332
+ ResultativeStatus[ResultativeStatus["rsUnset"] = -1] = "rsUnset";
333
+ ResultativeStatus[ResultativeStatus["rsUnresultative"] = 0] = "rsUnresultative";
334
+ ResultativeStatus[ResultativeStatus["rsResultative"] = 1] = "rsResultative";
335
+ })(ResultativeStatus || (ResultativeStatus = {}));
336
+ var ValidStatus;
337
+ (function (ValidStatus) {
338
+ ValidStatus[ValidStatus["vsUnset"] = -1] = "vsUnset";
339
+ ValidStatus[ValidStatus["vsUnValid"] = 0] = "vsUnValid";
340
+ ValidStatus[ValidStatus["vsValid"] = 1] = "vsValid";
341
+ ValidStatus[ValidStatus["vsDoubtful"] = 2] = "vsDoubtful";
342
+ })(ValidStatus || (ValidStatus = {}));
343
+ var EInterviewStatus;
344
+ (function (EInterviewStatus) {
345
+ EInterviewStatus[EInterviewStatus["isUnFinished"] = -4] = "isUnFinished";
346
+ EInterviewStatus[EInterviewStatus["isTested"] = -3] = "isTested";
347
+ EInterviewStatus[EInterviewStatus["isRefinement"] = -2] = "isRefinement";
348
+ EInterviewStatus[EInterviewStatus["isDefect"] = -1] = "isDefect";
349
+ EInterviewStatus[EInterviewStatus["isNotChecked"] = 0] = "isNotChecked";
350
+ EInterviewStatus[EInterviewStatus["isChecked"] = 1] = "isChecked"; // проверено
351
+ })(EInterviewStatus || (EInterviewStatus = {}));
352
+
353
+ class AnswerMasterComponent {
354
+ constructor() {
355
+ this.language = input.required();
356
+ this.viewModel = input.required();
357
+ this.viewModelE = ViewModel;
358
+ this.onModelChange = (data) => { };
359
+ this.onModelTouched = () => { };
360
+ this.destroyRef = inject(DestroyRef);
361
+ this.control = new FormControl(null);
362
+ this.control.valueChanges.pipe(takeUntilDestroyed(this.destroyRef)).subscribe(res => {
363
+ this.onModelChange(res);
364
+ });
365
+ }
366
+ registerOnChange(fn) {
367
+ this.onModelChange = fn;
368
+ }
369
+ registerOnTouched(fn) {
370
+ this.onModelTouched();
371
+ }
372
+ setDisabledState(isDisabled) {
373
+ }
374
+ writeValue(value) {
375
+ this.control.patchValue(value, { emitEvent: false });
376
+ }
377
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerMasterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
378
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.0.6", type: AnswerMasterComponent, isStandalone: true, selector: "app-answer-master", inputs: { language: { classPropertyName: "language", publicName: "language", isSignal: true, isRequired: true, transformFunction: null }, viewModel: { classPropertyName: "viewModel", publicName: "viewModel", isSignal: true, isRequired: true, transformFunction: null } }, providers: [
379
+ {
380
+ provide: NG_VALUE_ACCESSOR,
381
+ useExisting: forwardRef(() => AnswerMasterComponent),
382
+ multi: true
383
+ },
384
+ ], ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
385
+ }
386
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerMasterComponent, decorators: [{
387
+ type: Component,
388
+ args: [{
389
+ selector: 'app-answer-master',
390
+ template: '',
391
+ changeDetection: ChangeDetectionStrategy.OnPush,
392
+ standalone: true,
393
+ providers: [
394
+ {
395
+ provide: NG_VALUE_ACCESSOR,
396
+ useExisting: forwardRef(() => AnswerMasterComponent),
397
+ multi: true
398
+ },
399
+ ],
400
+ }]
401
+ }], ctorParameters: () => [] });
402
+
403
+ class AlternativesContainerDirective {
404
+ #destroyRef;
405
+ constructor(_renderer, elementRef, _breakpointObserver) {
406
+ this._renderer = _renderer;
407
+ this.elementRef = elementRef;
408
+ this._breakpointObserver = _breakpointObserver;
409
+ this.question = input.required({ alias: 'tpSurveyAlternativesContainer' });
410
+ this.viewModel = input.required({ alias: 'containerViewModel' });
411
+ this.#destroyRef = inject(DestroyRef);
412
+ effect(() => {
413
+ if (this.viewModel() === ViewModel.vmTablet) {
414
+ this.#updateTabletLayout();
415
+ }
416
+ else {
417
+ this.#updateDesktopLayout();
418
+ }
419
+ });
420
+ }
421
+ #updateDesktopLayout() {
422
+ this._breakpointObserver.observe(["(max-width: 480px)"]).pipe(map((result) => result.matches), takeUntilDestroyed(this.#destroyRef)).subscribe((isMobile) => {
423
+ let columnCount;
424
+ if (isMobile) {
425
+ columnCount = this.question().MobileViewAlternativeColumnCount || 1; //if 0 will be 1
426
+ }
427
+ else {
428
+ columnCount = this.question().AlternativeColumnCount || 1; //if 0 will be 1
429
+ }
430
+ this._renderer.setStyle(this.elementRef.nativeElement, 'grid-template-columns', `repeat(${columnCount}, 10fr)`);
431
+ });
432
+ }
433
+ #updateTabletLayout() {
434
+ if (!this.alternatives) {
435
+ return;
436
+ }
437
+ if (this.viewModel() === ViewModel.vmTablet) {
438
+ const question = this.question();
439
+ const transformToPer = (newVal, containerSideSize) => newVal * 100 / containerSideSize; // превращает размер px в %
440
+ const containerWidthFull = this.elementRef.nativeElement.offsetWidth;
441
+ const containerHeightFull = this.elementRef.nativeElement.offsetHeight;
442
+ const alternativeColumnCount = question.TabletViewAlternativeColumnCount ?? 1;
443
+ const horizontalRatio = containerWidthFull / BASE_WIDTH;
444
+ const verticalRatio = containerHeightFull / BASE_HEIGHT;
445
+ const maxAlternativeWidth = containerWidthFull * 0.7; // для авторазмера установим максимальный размер альтернативы в 70% от доступной длинны контейнера
446
+ const alternativesCount = Math.max(this.alternatives.length, 1);
447
+ const horizontalDistance = question.AlternativeHorizontalDistance ?? 10 * horizontalRatio;
448
+ const verticalDistance = (question.AlternativeVerticalDistance ?? 10) * verticalRatio;
449
+ const marginTop = question.AlternativeMarginTop ?? 10 * verticalRatio;
450
+ const marginLeft = (question.AlternativeMarginLeft ?? 0) * horizontalRatio;
451
+ const columnCount = alternativeColumnCount > alternativesCount ? alternativesCount : alternativeColumnCount;
452
+ const rowCount = Math.round(alternativesCount / columnCount);
453
+ const defaultHorizontalPadding = 10 * horizontalRatio;
454
+ let width = 0;
455
+ let height = 0;
456
+ if (question.AlternativeAutoSize ?? true) { // если авторазмер, то высоту и ширину считаем автоматом
457
+ const marginsWidth = horizontalDistance * (columnCount - 1) + defaultHorizontalPadding * 2;
458
+ width = Math.min((containerWidthFull - marginsWidth) / columnCount, maxAlternativeWidth);
459
+ height = this.alternatives.reduce((maxHeight, alt) => {
460
+ const altWidthPercent = transformToPer(width, containerWidthFull);
461
+ this._renderer.setStyle(alt.nativeElement, 'width', `${altWidthPercent}%`);
462
+ return Math.max(maxHeight, alt.nativeElement.clientHeight);
463
+ }, 0);
464
+ }
465
+ else { // если авторазмер отключён, размеры берём из настроек
466
+ width = question.AlternativeWidth ?? 300;
467
+ height = question.AlternativeHeight ?? 50;
468
+ }
469
+ const deltaVertical = containerHeightFull - height * rowCount - verticalDistance * (rowCount - 1);
470
+ const deltaHorizontal = (containerWidthFull - width * columnCount - horizontalDistance * (columnCount - 1)) / 2 - defaultHorizontalPadding;
471
+ let rowNum = -1;
472
+ let colNum = 0;
473
+ this.alternatives.forEach((alt, index) => {
474
+ let left = 0;
475
+ let top = 0;
476
+ if (question.AlternativeAutoArrange) {
477
+ const isNewRow = (index) % columnCount === 0;
478
+ if (isNewRow) {
479
+ rowNum++;
480
+ colNum = 0;
481
+ }
482
+ left = marginLeft + colNum * width + colNum * horizontalDistance + deltaHorizontal + defaultHorizontalPadding;
483
+ top = marginTop + rowNum * height + rowNum * verticalDistance + deltaVertical / 2;
484
+ colNum++;
485
+ }
486
+ else {
487
+ const altObj = question.Alternativelist[index];
488
+ if (!!altObj) {
489
+ left = altObj.x;
490
+ top = altObj.y;
491
+ if (!question.AlternativeAutoSize) {
492
+ width = altObj.width > 0 ? altObj.width : question.AlternativeWidth;
493
+ height = altObj.height > 0 ? altObj.height : question.AlternativeHeight;
494
+ }
495
+ }
496
+ }
497
+ this._renderer.setStyle(alt.nativeElement, 'width', `${transformToPer(width, containerWidthFull)}%`);
498
+ this._renderer.setStyle(alt.nativeElement, 'height', `${transformToPer(height, containerHeightFull)}%`);
499
+ this._renderer.setStyle(alt.nativeElement, 'left', `${transformToPer(left, containerWidthFull)}%`);
500
+ this._renderer.setStyle(alt.nativeElement, 'top', `${transformToPer(top, containerHeightFull)}%`);
501
+ });
502
+ }
503
+ else {
504
+ this.alternatives.forEach((alt) => {
505
+ this._renderer.setStyle(alt.nativeElement, 'width', ``);
506
+ this._renderer.setStyle(alt.nativeElement, 'height', ``);
507
+ this._renderer.setStyle(alt.nativeElement, 'left', ``);
508
+ this._renderer.setStyle(alt.nativeElement, 'top', ``);
509
+ });
510
+ }
511
+ }
512
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AlternativesContainerDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i1$1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Directive }); }
513
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.0.6", type: AlternativesContainerDirective, isStandalone: true, selector: "[tpSurveyAlternativesContainer]", inputs: { question: { classPropertyName: "question", publicName: "tpSurveyAlternativesContainer", isSignal: true, isRequired: true, transformFunction: null }, viewModel: { classPropertyName: "viewModel", publicName: "containerViewModel", isSignal: true, isRequired: true, transformFunction: null } }, queries: [{ propertyName: "alternatives", predicate: ["tablet_alt"], read: ElementRef }], ngImport: i0 }); }
514
+ }
515
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AlternativesContainerDirective, decorators: [{
516
+ type: Directive,
517
+ args: [{
518
+ selector: '[tpSurveyAlternativesContainer]',
519
+ standalone: true
520
+ }]
521
+ }], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i1$1.BreakpointObserver }], propDecorators: { alternatives: [{
522
+ type: ContentChildren,
523
+ args: ['tablet_alt', { read: ElementRef }]
524
+ }] } });
525
+
526
+ class AnswerSSComponent extends AnswerMasterComponent {
527
+ constructor() {
528
+ super(...arguments);
529
+ this.question = input.required();
530
+ this.alternativeList = input.required();
531
+ this.onAlternativeClick = output();
532
+ }
533
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerSSComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
534
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.6", type: AnswerSSComponent, isStandalone: true, selector: "tp-survey-answer-ss", inputs: { question: { classPropertyName: "question", publicName: "question", isSignal: true, isRequired: true, transformFunction: null }, alternativeList: { classPropertyName: "alternativeList", publicName: "alternativeList", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { onAlternativeClick: "onAlternativeClick" }, providers: [
535
+ {
536
+ provide: NG_VALUE_ACCESSOR,
537
+ useExisting: forwardRef(() => AnswerSSComponent),
538
+ multi: true
539
+ },
540
+ ], usesInheritance: true, ngImport: i0, template: "<mat-radio-group\r\n class=\"container-ms-ss-alternatives\"\r\n [tpSurveyAlternativesContainer] = \"question()\"\r\n [containerViewModel]=\"viewModel()\"\r\n [formControl]=\"control\">\r\n @for (alt of alternativeList(); track alt.Value; let index = $index) {\r\n <mat-radio-button\r\n #tablet_alt\r\n class=\"alternative-ss-ms tp-survey-radio-button\"\r\n [style.font-size.%]=\"viewModel() === viewModelE.vmTablet ? question().AlternativeTabletFontSize : undefined\"\r\n [value]=\"alt.Value\"\r\n (change)=\"onAlternativeClick.emit($event.value)\">\r\n @if (alt.IsMute) {\r\n <mat-icon class=\"icon-is-mute\" svgIcon=\"iconIsMute\"></mat-icon>\r\n }\r\n <span class=\"alternative-ss-ms-caption\" [innerHTML]= \"alt.MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </mat-radio-button>\r\n }\r\n</mat-radio-group>\r\n\r\n", styles: [".container-controls{display:grid;justify-content:center;gap:1em}.container-controls>mat-radio-group{display:grid;grid-column-gap:2em;grid-gap:.5em;min-width:200px}@media (max-width: 480px){.container-controls{padding:1em}}\n"], dependencies: [{ kind: "directive", type: MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "pipe", type: MultiLangObjectToHtmlPipe, name: "multiLangObjectToHtml" }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: AlternativesContainerDirective, selector: "[tpSurveyAlternativesContainer]", inputs: ["tpSurveyAlternativesContainer", "containerViewModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
541
+ }
542
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerSSComponent, decorators: [{
543
+ type: Component,
544
+ args: [{ selector: 'tp-survey-answer-ss', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
545
+ MatRadioGroup,
546
+ ReactiveFormsModule,
547
+ MatRadioButton,
548
+ MultiLangObjectToHtmlPipe,
549
+ KeyValuePipe,
550
+ MatFormField,
551
+ MatInput,
552
+ MatIcon,
553
+ MatCheckbox,
554
+ AlternativesContainerDirective
555
+ ], providers: [
556
+ {
557
+ provide: NG_VALUE_ACCESSOR,
558
+ useExisting: forwardRef(() => AnswerSSComponent),
559
+ multi: true
560
+ },
561
+ ], template: "<mat-radio-group\r\n class=\"container-ms-ss-alternatives\"\r\n [tpSurveyAlternativesContainer] = \"question()\"\r\n [containerViewModel]=\"viewModel()\"\r\n [formControl]=\"control\">\r\n @for (alt of alternativeList(); track alt.Value; let index = $index) {\r\n <mat-radio-button\r\n #tablet_alt\r\n class=\"alternative-ss-ms tp-survey-radio-button\"\r\n [style.font-size.%]=\"viewModel() === viewModelE.vmTablet ? question().AlternativeTabletFontSize : undefined\"\r\n [value]=\"alt.Value\"\r\n (change)=\"onAlternativeClick.emit($event.value)\">\r\n @if (alt.IsMute) {\r\n <mat-icon class=\"icon-is-mute\" svgIcon=\"iconIsMute\"></mat-icon>\r\n }\r\n <span class=\"alternative-ss-ms-caption\" [innerHTML]= \"alt.MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </mat-radio-button>\r\n }\r\n</mat-radio-group>\r\n\r\n", styles: [".container-controls{display:grid;justify-content:center;gap:1em}.container-controls>mat-radio-group{display:grid;grid-column-gap:2em;grid-gap:.5em;min-width:200px}@media (max-width: 480px){.container-controls{padding:1em}}\n"] }]
562
+ }] });
563
+
564
+ class AnswerInfoComponent extends AnswerMasterComponent {
565
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerInfoComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
566
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.6", type: AnswerInfoComponent, isStandalone: true, selector: "tp-survey-answer-info", providers: [
567
+ {
568
+ provide: NG_VALUE_ACCESSOR,
569
+ useExisting: forwardRef(() => AnswerInfoComponent),
570
+ multi: true
571
+ },
572
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true }); }
573
+ }
574
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerInfoComponent, decorators: [{
575
+ type: Component,
576
+ args: [{
577
+ selector: 'tp-survey-answer-info',
578
+ template: '',
579
+ standalone: true,
580
+ providers: [
581
+ {
582
+ provide: NG_VALUE_ACCESSOR,
583
+ useExisting: forwardRef(() => AnswerInfoComponent),
584
+ multi: true
585
+ },
586
+ ],
587
+ }]
588
+ }] });
589
+
590
+ class AnswerMSComponent extends AnswerMasterComponent {
591
+ constructor() {
592
+ super();
593
+ this.question = input.required();
594
+ this.alternativeList = input.required();
595
+ this.alternativeMaxAnswersCount = input.required();
596
+ this.onAlternativeClick = output();
597
+ this.answerMSForm = new FormGroup({
598
+ alternativeList: new FormArray([])
599
+ });
600
+ }
601
+ ngOnInit() {
602
+ const alternativeList = this.alternativeList();
603
+ const answerAsArray = Array.isArray(this.control.value) ? this.control.value : [];
604
+ const maxCount = this.alternativeMaxAnswersCount();
605
+ this.answerMSForm.controls.alternativeList.clear({ emitEvent: false });
606
+ alternativeList.forEach(alt => {
607
+ const control = new FormControl(answerAsArray.includes(alt.Value), { nonNullable: true });
608
+ //У альтернативы есть понятие "Группа". Группа это число. Если выбирают альтернативу с определённой группой, то альтернативы с другой группой должны быть отжаты.
609
+ control.valueChanges.pipe(filter(value => value), takeUntilDestroyed(this.destroyRef)).subscribe({
610
+ next: () => this.#uncheckControlsWithOtherGroup(alt.GroupNo)
611
+ });
612
+ this.answerMSForm.controls.alternativeList.push(control, { emitEvent: false });
613
+ });
614
+ this.answerMSForm.controls.alternativeList.valueChanges.pipe(map((_) => {
615
+ const checkedArray = this.answerMSForm.controls.alternativeList.controls.map(c => c.value) ?? [];
616
+ return this.alternativeList()
617
+ .map(alt => alt.Value)
618
+ .filter((_, index) => checkedArray[index]);
619
+ }), tap(answerArray => this.#disableExtraControls(answerArray.length, maxCount)), takeUntilDestroyed(this.destroyRef)).subscribe({
620
+ next: res => this.control.patchValue(res, { emitEvent: true })
621
+ });
622
+ }
623
+ //отжимает контролы у которых отличается номер группы
624
+ #uncheckControlsWithOtherGroup(groupNumber) {
625
+ //сначала отбираем контролы у которых другая группа.
626
+ const otherGroupAlternativesList = this.alternativeList()
627
+ .map((alt, altIndex) => ({ alternative: alt, index: altIndex })) //нужен индекс, по нему проще выбирать контролы в answerMSForm.controls.alternativeList
628
+ .filter(data => data.alternative.GroupNo !== groupNumber); //контролы у которых другая группа
629
+ //"отжимаем галочку"
630
+ otherGroupAlternativesList.forEach(data => {
631
+ const altControl = this.answerMSForm.controls.alternativeList.at(data.index);
632
+ altControl.patchValue(false, { emitEvent: false });
633
+ });
634
+ }
635
+ //дизейблит контроли если выбрали максимальное количество или енейблит если выбрали не максимальное количество
636
+ #disableExtraControls(currentCount, maxCount) {
637
+ //если в настройках анкеты указали что максимальное возможное количество выбранных альтернатив = 0, но ничего контролировать не надо.
638
+ if (maxCount === 0) {
639
+ return;
640
+ }
641
+ this.alternativeList().forEach((_, altIndex) => {
642
+ const isDisable = currentCount >= maxCount;
643
+ const control = this.answerMSForm.controls.alternativeList.at(altIndex);
644
+ if (isDisable) {
645
+ //надо дизейблить те которые не выбраны
646
+ if (!control.value) {
647
+ control.disable({ emitEvent: false });
648
+ }
649
+ }
650
+ else {
651
+ //лимита нет, можно выбирать все
652
+ control.enable({ emitEvent: false });
653
+ }
654
+ });
655
+ }
656
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerMSComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
657
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.6", type: AnswerMSComponent, isStandalone: true, selector: "tp-survey-answer-ms", inputs: { question: { classPropertyName: "question", publicName: "question", isSignal: true, isRequired: true, transformFunction: null }, alternativeList: { classPropertyName: "alternativeList", publicName: "alternativeList", isSignal: true, isRequired: true, transformFunction: null }, alternativeMaxAnswersCount: { classPropertyName: "alternativeMaxAnswersCount", publicName: "alternativeMaxAnswersCount", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { onAlternativeClick: "onAlternativeClick" }, providers: [
658
+ {
659
+ provide: NG_VALUE_ACCESSOR,
660
+ useExisting: forwardRef(() => AnswerMSComponent),
661
+ multi: true
662
+ },
663
+ ], usesInheritance: true, ngImport: i0, template: "<ng-container [formGroup]=\"answerMSForm\">\r\n <div\r\n class=\"container-ms-ss-alternatives\"\r\n [tpSurveyAlternativesContainer] = \"question()\"\r\n [containerViewModel]=\"viewModel()\"\r\n formArrayName=\"alternativeList\">\r\n @for (alt of answerMSForm.controls.alternativeList.controls; track alt; let indx = $index) {\r\n <mat-checkbox\r\n #tablet_alt\r\n [formControl]=\"alt\"\r\n [style.font-size.%]=\"viewModel() === viewModelE.vmTablet ? question().AlternativeTabletFontSize : undefined\"\r\n (change)=\"onAlternativeClick.emit(alternativeList()[indx].Value)\"\r\n class=\"alternative-ss-ms tp-survey-checkbox\">\r\n @if (alternativeList()[indx].IsMute) {\r\n <mat-icon class=\"icon-is-mute\" svgIcon=\"iconIsMute\"></mat-icon>\r\n }\r\n <span class=\"alternative-ss-ms-caption\" [innerHTML]= \"alternativeList()[indx].MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </mat-checkbox>\r\n }\r\n </div>\r\n</ng-container>\r\n", styles: [".container-main-tablet{position:absolute;width:100%;height:100%;top:0;box-sizing:border-box;overflow:hidden}.radio-button{margin:4px}@media (max-width: 480px){.container-controls{padding:1em}}\n"], dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$2.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { kind: "component", type: MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "pipe", type: MultiLangObjectToHtmlPipe, name: "multiLangObjectToHtml" }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: AlternativesContainerDirective, selector: "[tpSurveyAlternativesContainer]", inputs: ["tpSurveyAlternativesContainer", "containerViewModel"] }] }); }
664
+ }
665
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerMSComponent, decorators: [{
666
+ type: Component,
667
+ args: [{ selector: 'tp-survey-answer-ms', standalone: true, imports: [
668
+ ReactiveFormsModule,
669
+ MatCheckbox,
670
+ MultiLangObjectToHtmlPipe,
671
+ MatIcon,
672
+ MatRadioGroup,
673
+ AlternativesContainerDirective,
674
+ ], providers: [
675
+ {
676
+ provide: NG_VALUE_ACCESSOR,
677
+ useExisting: forwardRef(() => AnswerMSComponent),
678
+ multi: true
679
+ },
680
+ ], template: "<ng-container [formGroup]=\"answerMSForm\">\r\n <div\r\n class=\"container-ms-ss-alternatives\"\r\n [tpSurveyAlternativesContainer] = \"question()\"\r\n [containerViewModel]=\"viewModel()\"\r\n formArrayName=\"alternativeList\">\r\n @for (alt of answerMSForm.controls.alternativeList.controls; track alt; let indx = $index) {\r\n <mat-checkbox\r\n #tablet_alt\r\n [formControl]=\"alt\"\r\n [style.font-size.%]=\"viewModel() === viewModelE.vmTablet ? question().AlternativeTabletFontSize : undefined\"\r\n (change)=\"onAlternativeClick.emit(alternativeList()[indx].Value)\"\r\n class=\"alternative-ss-ms tp-survey-checkbox\">\r\n @if (alternativeList()[indx].IsMute) {\r\n <mat-icon class=\"icon-is-mute\" svgIcon=\"iconIsMute\"></mat-icon>\r\n }\r\n <span class=\"alternative-ss-ms-caption\" [innerHTML]= \"alternativeList()[indx].MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </mat-checkbox>\r\n }\r\n </div>\r\n</ng-container>\r\n", styles: [".container-main-tablet{position:absolute;width:100%;height:100%;top:0;box-sizing:border-box;overflow:hidden}.radio-button{margin:4px}@media (max-width: 480px){.container-controls{padding:1em}}\n"] }]
681
+ }], ctorParameters: () => [] });
682
+
683
+ class AdditionalAnswerCaptionPositionDirective {
684
+ constructor() {
685
+ this.tpSurveyAdditionalAnswerCaptionPosition = input();
686
+ this.tpSurveyAdditionalAnswerType = input();
687
+ }
688
+ get classBottom() {
689
+ return this.tpSurveyAdditionalAnswerCaptionPosition() === 'bottom';
690
+ }
691
+ get classTop() {
692
+ return this.tpSurveyAdditionalAnswerCaptionPosition() === 'top';
693
+ }
694
+ get classLeft() {
695
+ return this.tpSurveyAdditionalAnswerCaptionPosition() === 'left';
696
+ }
697
+ get classRight() {
698
+ return this.tpSurveyAdditionalAnswerCaptionPosition() === 'right';
699
+ }
700
+ get classTypeNumber() {
701
+ return this.tpSurveyAdditionalAnswerType() === AdditionalAnswerType.aatNumber;
702
+ }
703
+ get classTypeText() {
704
+ return this.tpSurveyAdditionalAnswerType() === AdditionalAnswerType.aatText;
705
+ }
706
+ get classTypeBoolean() {
707
+ return this.tpSurveyAdditionalAnswerType() === AdditionalAnswerType.aatBoolean;
708
+ }
709
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AdditionalAnswerCaptionPositionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
710
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.0.6", type: AdditionalAnswerCaptionPositionDirective, isStandalone: true, selector: "[tpSurveyAdditionalAnswerCaptionPosition]", inputs: { tpSurveyAdditionalAnswerCaptionPosition: { classPropertyName: "tpSurveyAdditionalAnswerCaptionPosition", publicName: "tpSurveyAdditionalAnswerCaptionPosition", isSignal: true, isRequired: false, transformFunction: null }, tpSurveyAdditionalAnswerType: { classPropertyName: "tpSurveyAdditionalAnswerType", publicName: "tpSurveyAdditionalAnswerType", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class.caption-align-bottom": "this.classBottom", "class.caption-align-top": "this.classTop", "class.caption-align-left": "this.classLeft", "class.caption-align-right": "this.classRight", "class.answer-type-number": "this.classTypeNumber", "class.answer-type-text": "this.classTypeText", "class.answer-type-boolean": "this.classTypeBoolean" } }, ngImport: i0 }); }
711
+ }
712
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AdditionalAnswerCaptionPositionDirective, decorators: [{
713
+ type: Directive,
714
+ args: [{
715
+ selector: '[tpSurveyAdditionalAnswerCaptionPosition]',
716
+ standalone: true
717
+ }]
718
+ }], propDecorators: { classBottom: [{
719
+ type: HostBinding,
720
+ args: ["class.caption-align-bottom"]
721
+ }], classTop: [{
722
+ type: HostBinding,
723
+ args: ["class.caption-align-top"]
724
+ }], classLeft: [{
725
+ type: HostBinding,
726
+ args: ["class.caption-align-left"]
727
+ }], classRight: [{
728
+ type: HostBinding,
729
+ args: ["class.caption-align-right"]
730
+ }], classTypeNumber: [{
731
+ type: HostBinding,
732
+ args: ["class.answer-type-number"]
733
+ }], classTypeText: [{
734
+ type: HostBinding,
735
+ args: ["class.answer-type-text"]
736
+ }], classTypeBoolean: [{
737
+ type: HostBinding,
738
+ args: ["class.answer-type-boolean"]
739
+ }] } });
740
+
741
+ class AnswerAdditionalComponent {
742
+ constructor() {
743
+ // control = input.required<FormControl<AdditionalAnswer>>();
744
+ this.control = input.required();
745
+ this.answerType = input.required();
746
+ this.caption = input('');
747
+ this.numberMinValue = input(null);
748
+ this.numberMaxValue = input(null);
749
+ this.textMultiline = input(false);
750
+ this.captionPosition = input('top');
751
+ this.additionalAnswerType = AdditionalAnswerType;
752
+ }
753
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerAdditionalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
754
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.6", type: AnswerAdditionalComponent, isStandalone: true, selector: "tp-survey-answer-additional", inputs: { control: { classPropertyName: "control", publicName: "control", isSignal: true, isRequired: true, transformFunction: null }, answerType: { classPropertyName: "answerType", publicName: "answerType", isSignal: true, isRequired: true, transformFunction: null }, caption: { classPropertyName: "caption", publicName: "caption", isSignal: true, isRequired: false, transformFunction: null }, numberMinValue: { classPropertyName: "numberMinValue", publicName: "numberMinValue", isSignal: true, isRequired: false, transformFunction: null }, numberMaxValue: { classPropertyName: "numberMaxValue", publicName: "numberMaxValue", isSignal: true, isRequired: false, transformFunction: null }, textMultiline: { classPropertyName: "textMultiline", publicName: "textMultiline", isSignal: true, isRequired: false, transformFunction: null }, captionPosition: { classPropertyName: "captionPosition", publicName: "captionPosition", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
755
+ {
756
+ provide: NG_VALUE_ACCESSOR,
757
+ useExisting: forwardRef(() => AnswerAdditionalComponent),
758
+ multi: true
759
+ },
760
+ ], ngImport: i0, template: "<div class=\"container-main\" [tpSurveyAdditionalAnswerCaptionPosition]=\"captionPosition()\" [tpSurveyAdditionalAnswerType]=\"answerType()\" >\r\n <span [innerHTML]= \"caption()\" class=\"answer-caption\"></span>\r\n @switch (answerType()) {\r\n @case (additionalAnswerType.aatNumber) {\r\n <mat-form-field class=\"tp-survey-input\" appearance=\"outline\" subscriptSizing=\"dynamic\">\r\n <input [formControl]=\"control()\" matInput [step]=\"1\" [min]=\"numberMinValue()\" [max]=\"numberMaxValue()\" type=\"number\">\r\n </mat-form-field>\r\n }\r\n\r\n @case (additionalAnswerType.aatText) {\r\n <mat-form-field appearance=\"outline\" class=\"tp-survey-input\" subscriptSizing=\"dynamic\">\r\n @if (textMultiline()) {\r\n <textarea\r\n [formControl]=\"control()\"\r\n cdkAutosizeMaxRows=\"5\"\r\n cdkAutosizeMinRows=\"3\"\r\n cdkTextareaAutosize matInput>\r\n </textarea>\r\n } @else {\r\n <input [formControl]=\"control()\" matInput type=\"text\">\r\n }\r\n </mat-form-field>\r\n }\r\n @case (additionalAnswerType.aatBoolean) {\r\n <mat-checkbox\r\n [formControl]=\"control()\"\r\n [class.answer-checkbox-center] = \"captionPosition() === 'left' || captionPosition() === 'right'\"\r\n class=\"tp-survey-checkbox\">\r\n </mat-checkbox>\r\n }\r\n }\r\n</div>\r\n", styles: [".container-main{display:flex;flex-wrap:nowrap;flex-direction:column-reverse;align-items:center;min-width:40px;flex:1;flex-basis:0}.container-main{display:inline-flex}.answer-checkbox-center{align-self:center}.caption-align-top{flex-direction:column;align-items:baseline}.caption-align-right{flex-direction:row-reverse;align-items:center}.caption-align-right.answer-type-number .tp-survey-input,.caption-align-right.answer-type-text .tp-survey-input{margin-right:1em}.caption-align-left{flex-direction:row;align-items:center}.caption-align-left.answer-type-number .tp-survey-input,.caption-align-left.answer-type-text .tp-survey-input{margin-left:1em}.caption-align-bottom{flex-direction:column-reverse;align-items:baseline}.answer-type-text{width:100%}.answer-type-text :host{width:100%}.answer-type-text .tp-survey-input{width:100%}.is-number-control{max-width:150px}\n"], dependencies: [{ kind: "component", type: MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$2.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$2.MinValidator, selector: "input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]", inputs: ["min"] }, { kind: "directive", type: i1$2.MaxValidator, selector: "input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]", inputs: ["max"] }, { kind: "directive", type: i1$2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: AdditionalAnswerCaptionPositionDirective, selector: "[tpSurveyAdditionalAnswerCaptionPosition]", inputs: ["tpSurveyAdditionalAnswerCaptionPosition", "tpSurveyAdditionalAnswerType"] }, { kind: "directive", type: CdkTextareaAutosize, selector: "textarea[cdkTextareaAutosize]", inputs: ["cdkAutosizeMinRows", "cdkAutosizeMaxRows", "cdkTextareaAutosize", "placeholder"], exportAs: ["cdkTextareaAutosize"] }, { kind: "component", type: MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }] }); }
761
+ }
762
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerAdditionalComponent, decorators: [{
763
+ type: Component,
764
+ args: [{ selector: 'tp-survey-answer-additional', standalone: true, imports: [
765
+ MatFormField,
766
+ MatInput,
767
+ ReactiveFormsModule,
768
+ AdditionalAnswerCaptionPositionDirective,
769
+ CdkTextareaAutosize,
770
+ MatCheckbox,
771
+ ], providers: [
772
+ {
773
+ provide: NG_VALUE_ACCESSOR,
774
+ useExisting: forwardRef(() => AnswerAdditionalComponent),
775
+ multi: true
776
+ },
777
+ ], template: "<div class=\"container-main\" [tpSurveyAdditionalAnswerCaptionPosition]=\"captionPosition()\" [tpSurveyAdditionalAnswerType]=\"answerType()\" >\r\n <span [innerHTML]= \"caption()\" class=\"answer-caption\"></span>\r\n @switch (answerType()) {\r\n @case (additionalAnswerType.aatNumber) {\r\n <mat-form-field class=\"tp-survey-input\" appearance=\"outline\" subscriptSizing=\"dynamic\">\r\n <input [formControl]=\"control()\" matInput [step]=\"1\" [min]=\"numberMinValue()\" [max]=\"numberMaxValue()\" type=\"number\">\r\n </mat-form-field>\r\n }\r\n\r\n @case (additionalAnswerType.aatText) {\r\n <mat-form-field appearance=\"outline\" class=\"tp-survey-input\" subscriptSizing=\"dynamic\">\r\n @if (textMultiline()) {\r\n <textarea\r\n [formControl]=\"control()\"\r\n cdkAutosizeMaxRows=\"5\"\r\n cdkAutosizeMinRows=\"3\"\r\n cdkTextareaAutosize matInput>\r\n </textarea>\r\n } @else {\r\n <input [formControl]=\"control()\" matInput type=\"text\">\r\n }\r\n </mat-form-field>\r\n }\r\n @case (additionalAnswerType.aatBoolean) {\r\n <mat-checkbox\r\n [formControl]=\"control()\"\r\n [class.answer-checkbox-center] = \"captionPosition() === 'left' || captionPosition() === 'right'\"\r\n class=\"tp-survey-checkbox\">\r\n </mat-checkbox>\r\n }\r\n }\r\n</div>\r\n", styles: [".container-main{display:flex;flex-wrap:nowrap;flex-direction:column-reverse;align-items:center;min-width:40px;flex:1;flex-basis:0}.container-main{display:inline-flex}.answer-checkbox-center{align-self:center}.caption-align-top{flex-direction:column;align-items:baseline}.caption-align-right{flex-direction:row-reverse;align-items:center}.caption-align-right.answer-type-number .tp-survey-input,.caption-align-right.answer-type-text .tp-survey-input{margin-right:1em}.caption-align-left{flex-direction:row;align-items:center}.caption-align-left.answer-type-number .tp-survey-input,.caption-align-left.answer-type-text .tp-survey-input{margin-left:1em}.caption-align-bottom{flex-direction:column-reverse;align-items:baseline}.answer-type-text{width:100%}.answer-type-text :host{width:100%}.answer-type-text .tp-survey-input{width:100%}.is-number-control{max-width:150px}\n"] }]
778
+ }] });
779
+
780
+ class AnswerEndComponent extends AnswerMasterComponent {
781
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerEndComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
782
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.6", type: AnswerEndComponent, isStandalone: true, selector: "tp-survey-answer-end", providers: [
783
+ {
784
+ provide: NG_VALUE_ACCESSOR,
785
+ useExisting: forwardRef(() => AnswerEndComponent),
786
+ multi: true
787
+ },
788
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true }); }
789
+ }
790
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerEndComponent, decorators: [{
791
+ type: Component,
792
+ args: [{
793
+ selector: 'tp-survey-answer-end',
794
+ template: '',
795
+ standalone: true,
796
+ providers: [
797
+ {
798
+ provide: NG_VALUE_ACCESSOR,
799
+ useExisting: forwardRef(() => AnswerEndComponent),
800
+ multi: true
801
+ },
802
+ ],
803
+ }]
804
+ }] });
805
+
806
+ class FocusAndSelectDirective {
807
+ constructor(el) {
808
+ this.el = el;
809
+ if (!el.nativeElement['focus']) {
810
+ throw new Error('Element does not accept focus.');
811
+ }
812
+ }
813
+ ngOnInit() {
814
+ const input = this.el.nativeElement;
815
+ if ('focus' in input) {
816
+ input.focus();
817
+ input.select();
818
+ }
819
+ }
820
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: FocusAndSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
821
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.6", type: FocusAndSelectDirective, isStandalone: true, selector: "[tpSurveyFocusAndSelect]", ngImport: i0 }); }
822
+ }
823
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: FocusAndSelectDirective, decorators: [{
824
+ type: Directive,
825
+ args: [{
826
+ selector: '[tpSurveyFocusAndSelect]',
827
+ standalone: true
828
+ }]
829
+ }], ctorParameters: () => [{ type: i0.ElementRef }] });
830
+
831
+ class AnswerOLComponent extends AnswerMasterComponent {
832
+ constructor() {
833
+ super(...arguments);
834
+ this.telephoneInput = input(false);
835
+ }
836
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerOLComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
837
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.6", type: AnswerOLComponent, isStandalone: true, selector: "tp-survey-answer-ol", inputs: { telephoneInput: { classPropertyName: "telephoneInput", publicName: "telephoneInput", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
838
+ {
839
+ provide: NG_VALUE_ACCESSOR,
840
+ useExisting: forwardRef(() => AnswerOLComponent),
841
+ multi: true
842
+ },
843
+ ], usesInheritance: true, ngImport: i0, template: "<div class=\"container-main\">\r\n @if (telephoneInput()) {\r\n <mat-form-field appearance=\"outline\">\r\n <span matPrefix>+380&nbsp;</span>\r\n <input matInput [formControl]=\"control\" tpSurveyFocusAndSelect>\r\n </mat-form-field>\r\n } @else {\r\n <mat-form-field appearance=\"outline\" class=\"input-text\">\r\n <textarea rows=\"10\" matInput [formControl]=\"control\" tpSurveyFocusAndSelect></textarea>\r\n </mat-form-field>\r\n\r\n<!-- <mat-form-field class=\"container-controls\" appearance=\"outline\">-->\r\n<!-- <textarea rows=\"10\" autofocus matInput [(ngModel)]=\"answer.AnswerValue\" (ngModelChange)=\"answerChange()\" appFocusAndSelect></textarea>-->\r\n<!-- </mat-form-field>-->\r\n }\r\n\r\n<!-- <mat-form-field appearance=\"outline\" class=\"input-od-number\">-->\r\n<!-- <input [formControl]=\"control\" tpSurveyFocusAndSelect matInput type=\"number\">-->\r\n<!-- </mat-form-field>-->\r\n</div>\r\n", styles: [":host{width:100%}.container-main{display:flex;width:100%;justify-content:center;align-items:center;flex-flow:column;gap:2em;padding:0 2em;box-sizing:border-box}.input-text{width:100%}\n"], dependencies: [{ kind: "directive", type: FocusAndSelectDirective, selector: "[tpSurveyFocusAndSelect]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "component", type: MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); }
844
+ }
845
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerOLComponent, decorators: [{
846
+ type: Component,
847
+ args: [{ selector: 'tp-survey-answer-ol', standalone: true, imports: [
848
+ FocusAndSelectDirective,
849
+ FormsModule,
850
+ MatFormField,
851
+ MatInput,
852
+ ReactiveFormsModule
853
+ ], providers: [
854
+ {
855
+ provide: NG_VALUE_ACCESSOR,
856
+ useExisting: forwardRef(() => AnswerOLComponent),
857
+ multi: true
858
+ },
859
+ ], template: "<div class=\"container-main\">\r\n @if (telephoneInput()) {\r\n <mat-form-field appearance=\"outline\">\r\n <span matPrefix>+380&nbsp;</span>\r\n <input matInput [formControl]=\"control\" tpSurveyFocusAndSelect>\r\n </mat-form-field>\r\n } @else {\r\n <mat-form-field appearance=\"outline\" class=\"input-text\">\r\n <textarea rows=\"10\" matInput [formControl]=\"control\" tpSurveyFocusAndSelect></textarea>\r\n </mat-form-field>\r\n\r\n<!-- <mat-form-field class=\"container-controls\" appearance=\"outline\">-->\r\n<!-- <textarea rows=\"10\" autofocus matInput [(ngModel)]=\"answer.AnswerValue\" (ngModelChange)=\"answerChange()\" appFocusAndSelect></textarea>-->\r\n<!-- </mat-form-field>-->\r\n }\r\n\r\n<!-- <mat-form-field appearance=\"outline\" class=\"input-od-number\">-->\r\n<!-- <input [formControl]=\"control\" tpSurveyFocusAndSelect matInput type=\"number\">-->\r\n<!-- </mat-form-field>-->\r\n</div>\r\n", styles: [":host{width:100%}.container-main{display:flex;width:100%;justify-content:center;align-items:center;flex-flow:column;gap:2em;padding:0 2em;box-sizing:border-box}.input-text{width:100%}\n"] }]
860
+ }] });
861
+
862
+ class AsFormArrayPipe {
863
+ transform(value) {
864
+ return value;
865
+ }
866
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AsFormArrayPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
867
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.6", ngImport: i0, type: AsFormArrayPipe, isStandalone: true, name: "asFormArray" }); }
868
+ }
869
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AsFormArrayPipe, decorators: [{
870
+ type: Pipe,
871
+ args: [{
872
+ name: 'asFormArray',
873
+ standalone: true
874
+ }]
875
+ }] });
876
+
877
+ class AsFormControlPipe {
878
+ transform(value) {
879
+ return value;
880
+ }
881
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AsFormControlPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
882
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.6", ngImport: i0, type: AsFormControlPipe, isStandalone: true, name: "asFormControl" }); }
883
+ }
884
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AsFormControlPipe, decorators: [{
885
+ type: Pipe,
886
+ args: [{
887
+ name: 'asFormControl',
888
+ standalone: true
889
+ }]
890
+ }] });
891
+
892
+ class AnswerSLComponent extends AnswerMasterComponent {
893
+ constructor() {
894
+ super(...arguments);
895
+ this.alternativeList = input.required();
896
+ this.sectionList = input.required();
897
+ this.multiSelect = input(false, { transform: booleanAttribute });
898
+ this.maxCount = input(0, { transform: numberAttribute });
899
+ this.answerSLForm = new FormGroup({});
900
+ }
901
+ ngOnInit() {
902
+ const multiSelect = this.multiSelect();
903
+ this.sectionList().forEach(section => {
904
+ const sectionControl = this.#createSectionRowControl(multiSelect, []);
905
+ this.answerSLForm.addControl(section.SectionGuid.toString(), sectionControl);
906
+ });
907
+ this.answerSLForm.valueChanges.pipe(map((fullAnswer) => {
908
+ let res = {};
909
+ //Если в настройках указали мультивыбор для секции, то в данной реализации, при изменении форма возвращает массив boolean?, true/false, нажата отжата.
910
+ //Этот массив нужно конвертировать в массив number, в котором будут только нажатые альтернативы.
911
+ if (this.multiSelect()) {
912
+ Object.entries(fullAnswer).forEach(([key]) => {
913
+ const sectionAnswerCheckedArray = this.answerSLForm.get(key)?.value;
914
+ res[key] = this.alternativeList()
915
+ .map(alt => alt.Value)
916
+ .filter((_, index) => sectionAnswerCheckedArray[index]);
917
+ });
918
+ }
919
+ else {
920
+ //если единичный выбор для секции, то ответ просто исходное значение.
921
+ res = fullAnswer;
922
+ }
923
+ return res;
924
+ }), tap(res => this.#disableExtraControls(this.maxCount())), takeUntilDestroyed(this.destroyRef)).subscribe({
925
+ next: res => this.control.patchValue(res, { emitEvent: true })
926
+ });
927
+ }
928
+ #createSectionRowControl(multiSelect, answers) {
929
+ if (multiSelect) {
930
+ const msArray = new FormArray([]);
931
+ const answerAsArray = Array(answers);
932
+ this.alternativeList().forEach((alt) => {
933
+ const control = new FormControl(answerAsArray.includes(alt.Value), { nonNullable: true });
934
+ msArray.push(control, { emitEvent: false });
935
+ //В режиме multiSelect у альтернативы есть понятие "Группа". Группа это число. Если выбирают альтернативу с определённой группой, то альтернативы с другой группой должны быть отжаты.
936
+ //Логика такая же как и в ms вопросе
937
+ control.valueChanges.pipe(filter(value => value && this.multiSelect()), takeUntilDestroyed(this.destroyRef)).subscribe({
938
+ next: () => {
939
+ //сначала отбираем контролы у которых другая группа.
940
+ const otherGroupAlternativesList = this.alternativeList()
941
+ .map((alt, altIndex) => ({ alternative: alt, index: altIndex })) //нужен индекс, по нему проще выбирать контролы в msArray
942
+ .filter(data => data.alternative.GroupNo !== alt.GroupNo); //контролы у которых другая группа
943
+ //"отжимаем галочку"
944
+ otherGroupAlternativesList.forEach(data => {
945
+ const altControl = msArray.controls.at(data.index);
946
+ altControl.patchValue(false, { emitEvent: false });
947
+ });
948
+ }
949
+ });
950
+ });
951
+ return msArray;
952
+ }
953
+ else {
954
+ return new FormControl(Number(answers), { nonNullable: true });
955
+ }
956
+ }
957
+ //дизейблит контроли если выбрали максимальное количество или енейблит если выбрали не максимальное количество
958
+ #disableExtraControls(maxCount) {
959
+ //если в настройках анкеты указали что максимальное возможное количество выбранных альтернатив = 0, но ничего контролировать не надо.
960
+ if (maxCount === 0 || !this.multiSelect()) {
961
+ return;
962
+ }
963
+ this.sectionList().forEach(sec => {
964
+ const sectionControlArray = this.answerSLForm.get(sec.SectionGuid.toString());
965
+ const values = sectionControlArray.value;
966
+ const checkedCount = values.filter(v => v).length;
967
+ sectionControlArray.controls.forEach(control => {
968
+ if (checkedCount >= maxCount && !control.value) {
969
+ control.disable({ emitEvent: false });
970
+ }
971
+ else {
972
+ control.enable({ emitEvent: false });
973
+ }
974
+ });
975
+ });
976
+ }
977
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerSLComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
978
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.6", type: AnswerSLComponent, isStandalone: true, selector: "tp-survey-answer-sl", inputs: { alternativeList: { classPropertyName: "alternativeList", publicName: "alternativeList", isSignal: true, isRequired: true, transformFunction: null }, sectionList: { classPropertyName: "sectionList", publicName: "sectionList", isSignal: true, isRequired: true, transformFunction: null }, multiSelect: { classPropertyName: "multiSelect", publicName: "multiSelect", isSignal: true, isRequired: false, transformFunction: null }, maxCount: { classPropertyName: "maxCount", publicName: "maxCount", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
979
+ {
980
+ provide: NG_VALUE_ACCESSOR,
981
+ useExisting: forwardRef(() => AnswerSLComponent),
982
+ multi: true
983
+ },
984
+ ], usesInheritance: true, ngImport: i0, template: "<table class=\"default-view\" [formGroup]=\"answerSLForm\">\r\n <thead>\r\n <tr>\r\n <th></th>\r\n @for (alt of alternativeList(); track alt.Value; let index = $index) {\r\n <th class=\"SLAlternativeCaption\">\r\n <span [innerHTML]= \"alt.MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </th>\r\n }\r\n </tr>\r\n </thead>\r\n <tbody>\r\n @for (secControl of answerSLForm.controls | keyvalue; track secControl.key; let sectionIndex = $index) {\r\n @if (multiSelect()){\r\n <tr>\r\n <td>\r\n <span [innerHTML]= \"sectionList()[sectionIndex].MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </td>\r\n @for (alternativeControl of (secControl.value | asFormArray).controls ; track alternativeControl) {\r\n <td>\r\n <mat-checkbox\r\n [formControl]=\"alternativeControl\"\r\n class=\"alternative-sl tp-survey-checkbox\"/>\r\n </td>\r\n }\r\n </tr>\r\n } @else {\r\n <mat-radio-group [formControl]=\"secControl.value | asFormControl\" class=\"single-select-row\">\r\n <td class=\"single-select-item\">\r\n <span [innerHTML]= \"sectionList()[sectionIndex].MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </td>\r\n @for (alt of alternativeList(); track alt.Value; let index = $index) {\r\n <td class=\"single-select-item\">\r\n <mat-radio-button\r\n class=\"alternative-sl tp-survey-radio-button\"\r\n [value]=\"alt.Value\">\r\n </mat-radio-button>\r\n </td>\r\n }\r\n </mat-radio-group>\r\n }\r\n }\r\n </tbody>\r\n</table>\r\n\r\n<div class=\"mobile-view\" [formGroup]=\"answerSLForm\">\r\n @for (secControl of answerSLForm.controls | keyvalue; track secControl.key; let secIndex = $index) {\r\n <div class=\"mobile-view-section-row\" [formArrayName]=\"secControl.key\">\r\n <span [innerHTML]= \"sectionList()[secIndex].MultiLangCaptions | multiLangObjectToHtml:language()\" class=\"mobile-view-section-caption section-sl-caption\"></span>\r\n @if (multiSelect()) {\r\n <div class=\"mobile-view-alternative-list\">\r\n @for (alternativeControl of (secControl.value | asFormArray).controls; track alternativeControl; let altIndex = $index) {\r\n <mat-checkbox\r\n [formControl]=\"alternativeControl\"\r\n class=\"alternative-sl tp-survey-checkbox\">\r\n <span class=\"alternative-sl-caption\" [innerHTML]= \"alternativeList()[altIndex].MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </mat-checkbox>\r\n }\r\n </div>\r\n } @else {\r\n <mat-radio-group\r\n class=\"mobile-view-alternative-list\"\r\n [formControl]=\"secControl.value | asFormControl\">\r\n @for (alt of alternativeList(); track alt.Value; let index = $index) {\r\n <mat-radio-button\r\n class=\"tp-survey-radio-button\"\r\n [value]=\"alt.Value\">\r\n <span class=\"alternative-sl-caption\" [innerHTML]= \"alt.MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </mat-radio-button>\r\n }\r\n </mat-radio-group>\r\n }\r\n </div>\r\n }\r\n</div>\r\n", styles: ["td{text-align:center}table{width:100%}tr td{border-bottom:1px solid rgba(102,102,103,.49)}.default-view{display:block}.mobile-view{display:none;padding:1em;flex-flow:column;gap:4em}.mobile-view-alternative-list{display:flex;flex-flow:column}.mobile-view-section-row{margin-bottom:2em}.mobile-view-section-caption{display:block;border-bottom:1px solid}.section-sl-caption{font-size:1.3em}.alternative-sl-caption{font-size:1.1em}.single-select-row{display:table-row;vertical-align:middle;border-bottom:1px solid rgba(102,102,103,.49)}.single-select-item{vertical-align:middle;border-bottom:1px solid rgba(102,102,103,.49)}@media (max-width: 480px){.default-view{display:none}.mobile-view{display:block}}\n"], dependencies: [{ kind: "pipe", type: MultiLangObjectToHtmlPipe, name: "multiLangObjectToHtml" }, { kind: "component", type: MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$2.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { kind: "pipe", type: KeyValuePipe, name: "keyvalue" }, { kind: "pipe", type: AsFormArrayPipe, name: "asFormArray" }, { kind: "component", type: MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "directive", type: MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "pipe", type: AsFormControlPipe, name: "asFormControl" }] }); }
985
+ }
986
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerSLComponent, decorators: [{
987
+ type: Component,
988
+ args: [{ selector: 'tp-survey-answer-sl', standalone: true, imports: [
989
+ MultiLangObjectToHtmlPipe,
990
+ MatCheckbox,
991
+ ReactiveFormsModule,
992
+ KeyValuePipe,
993
+ MatIcon,
994
+ JsonPipe,
995
+ AsFormArrayPipe,
996
+ MatRadioButton,
997
+ MatRadioGroup,
998
+ AsFormControlPipe
999
+ ], providers: [
1000
+ {
1001
+ provide: NG_VALUE_ACCESSOR,
1002
+ useExisting: forwardRef(() => AnswerSLComponent),
1003
+ multi: true
1004
+ },
1005
+ ], template: "<table class=\"default-view\" [formGroup]=\"answerSLForm\">\r\n <thead>\r\n <tr>\r\n <th></th>\r\n @for (alt of alternativeList(); track alt.Value; let index = $index) {\r\n <th class=\"SLAlternativeCaption\">\r\n <span [innerHTML]= \"alt.MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </th>\r\n }\r\n </tr>\r\n </thead>\r\n <tbody>\r\n @for (secControl of answerSLForm.controls | keyvalue; track secControl.key; let sectionIndex = $index) {\r\n @if (multiSelect()){\r\n <tr>\r\n <td>\r\n <span [innerHTML]= \"sectionList()[sectionIndex].MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </td>\r\n @for (alternativeControl of (secControl.value | asFormArray).controls ; track alternativeControl) {\r\n <td>\r\n <mat-checkbox\r\n [formControl]=\"alternativeControl\"\r\n class=\"alternative-sl tp-survey-checkbox\"/>\r\n </td>\r\n }\r\n </tr>\r\n } @else {\r\n <mat-radio-group [formControl]=\"secControl.value | asFormControl\" class=\"single-select-row\">\r\n <td class=\"single-select-item\">\r\n <span [innerHTML]= \"sectionList()[sectionIndex].MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </td>\r\n @for (alt of alternativeList(); track alt.Value; let index = $index) {\r\n <td class=\"single-select-item\">\r\n <mat-radio-button\r\n class=\"alternative-sl tp-survey-radio-button\"\r\n [value]=\"alt.Value\">\r\n </mat-radio-button>\r\n </td>\r\n }\r\n </mat-radio-group>\r\n }\r\n }\r\n </tbody>\r\n</table>\r\n\r\n<div class=\"mobile-view\" [formGroup]=\"answerSLForm\">\r\n @for (secControl of answerSLForm.controls | keyvalue; track secControl.key; let secIndex = $index) {\r\n <div class=\"mobile-view-section-row\" [formArrayName]=\"secControl.key\">\r\n <span [innerHTML]= \"sectionList()[secIndex].MultiLangCaptions | multiLangObjectToHtml:language()\" class=\"mobile-view-section-caption section-sl-caption\"></span>\r\n @if (multiSelect()) {\r\n <div class=\"mobile-view-alternative-list\">\r\n @for (alternativeControl of (secControl.value | asFormArray).controls; track alternativeControl; let altIndex = $index) {\r\n <mat-checkbox\r\n [formControl]=\"alternativeControl\"\r\n class=\"alternative-sl tp-survey-checkbox\">\r\n <span class=\"alternative-sl-caption\" [innerHTML]= \"alternativeList()[altIndex].MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </mat-checkbox>\r\n }\r\n </div>\r\n } @else {\r\n <mat-radio-group\r\n class=\"mobile-view-alternative-list\"\r\n [formControl]=\"secControl.value | asFormControl\">\r\n @for (alt of alternativeList(); track alt.Value; let index = $index) {\r\n <mat-radio-button\r\n class=\"tp-survey-radio-button\"\r\n [value]=\"alt.Value\">\r\n <span class=\"alternative-sl-caption\" [innerHTML]= \"alt.MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </mat-radio-button>\r\n }\r\n </mat-radio-group>\r\n }\r\n </div>\r\n }\r\n</div>\r\n", styles: ["td{text-align:center}table{width:100%}tr td{border-bottom:1px solid rgba(102,102,103,.49)}.default-view{display:block}.mobile-view{display:none;padding:1em;flex-flow:column;gap:4em}.mobile-view-alternative-list{display:flex;flex-flow:column}.mobile-view-section-row{margin-bottom:2em}.mobile-view-section-caption{display:block;border-bottom:1px solid}.section-sl-caption{font-size:1.3em}.alternative-sl-caption{font-size:1.1em}.single-select-row{display:table-row;vertical-align:middle;border-bottom:1px solid rgba(102,102,103,.49)}.single-select-item{vertical-align:middle;border-bottom:1px solid rgba(102,102,103,.49)}@media (max-width: 480px){.default-view{display:none}.mobile-view{display:block}}\n"] }]
1006
+ }] });
1007
+
1008
+ class AnswerODComponent extends AnswerMasterComponent {
1009
+ constructor() {
1010
+ super(...arguments);
1011
+ this.minValue = input(1);
1012
+ this.maxValue = input(null);
1013
+ }
1014
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerODComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1015
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.0.6", type: AnswerODComponent, isStandalone: true, selector: "tp-survey-answer-od", inputs: { minValue: { classPropertyName: "minValue", publicName: "minValue", isSignal: true, isRequired: false, transformFunction: null }, maxValue: { classPropertyName: "maxValue", publicName: "maxValue", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
1016
+ {
1017
+ provide: NG_VALUE_ACCESSOR,
1018
+ useExisting: forwardRef(() => AnswerODComponent),
1019
+ multi: true
1020
+ },
1021
+ ], usesInheritance: true, ngImport: i0, template: "<div class=\"container-main\">\r\n <mat-form-field appearance=\"outline\" class=\"input-od-number\">\r\n <input [formControl]=\"control\" [min]=\"minValue()\" [max]=\"maxValue()\" tpSurveyFocusAndSelect matInput type=\"number\">\r\n </mat-form-field>\r\n</div>\r\n\r\n", styles: [".container-main{display:flex;width:100%;justify-content:center;align-items:center;flex-flow:column;gap:2em}.input-od-number{max-width:150px}\n"], dependencies: [{ kind: "component", type: MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$2.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$2.MinValidator, selector: "input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]", inputs: ["min"] }, { kind: "directive", type: i1$2.MaxValidator, selector: "input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]", inputs: ["max"] }, { kind: "directive", type: i1$2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: FocusAndSelectDirective, selector: "[tpSurveyFocusAndSelect]" }, { kind: "directive", type: MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }] }); }
1022
+ }
1023
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerODComponent, decorators: [{
1024
+ type: Component,
1025
+ args: [{ selector: 'tp-survey-answer-od', standalone: true, imports: [
1026
+ MatFormField,
1027
+ ReactiveFormsModule,
1028
+ FocusAndSelectDirective,
1029
+ MatInput,
1030
+ ], providers: [
1031
+ {
1032
+ provide: NG_VALUE_ACCESSOR,
1033
+ useExisting: forwardRef(() => AnswerODComponent),
1034
+ multi: true
1035
+ },
1036
+ ], template: "<div class=\"container-main\">\r\n <mat-form-field appearance=\"outline\" class=\"input-od-number\">\r\n <input [formControl]=\"control\" [min]=\"minValue()\" [max]=\"maxValue()\" tpSurveyFocusAndSelect matInput type=\"number\">\r\n </mat-form-field>\r\n</div>\r\n\r\n", styles: [".container-main{display:flex;width:100%;justify-content:center;align-items:center;flex-flow:column;gap:2em}.input-od-number{max-width:150px}\n"] }]
1037
+ }] });
1038
+
1039
+ class TpSurveyLogicService {
1040
+ #vars = Object.create(null);
1041
+ get vars() {
1042
+ return this.#vars;
1043
+ }
1044
+ setLogicValue(varName, value) {
1045
+ this.#vars[varName] = value;
1046
+ }
1047
+ getLogicVars() {
1048
+ return { ...this.#vars };
1049
+ }
1050
+ executeLogic(expression) {
1051
+ try {
1052
+ return !expression ? true : new Function(`${LOGIC_FUNC_TEXT} return ${expression}`).call(this.#vars);
1053
+ }
1054
+ catch (e) {
1055
+ return false;
1056
+ }
1057
+ }
1058
+ executePostScript(expression) {
1059
+ try {
1060
+ if (!expression) {
1061
+ return;
1062
+ }
1063
+ new Function(`${LOGIC_FUNC_TEXT} ${expression}`).call(this.#vars);
1064
+ }
1065
+ catch (e) {
1066
+ console.log(e);
1067
+ }
1068
+ }
1069
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyLogicService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1070
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyLogicService, providedIn: 'root' }); }
1071
+ }
1072
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyLogicService, decorators: [{
1073
+ type: Injectable,
1074
+ args: [{
1075
+ providedIn: 'root'
1076
+ }]
1077
+ }] });
1078
+
1079
+ class GetAdditionalValueByValuePipe {
1080
+ transform(value, additionalAnswerList) {
1081
+ const val = (typeof value === 'string') ? Number(value) : value;
1082
+ return additionalAnswerList.find(aa => aa.Value === val);
1083
+ }
1084
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: GetAdditionalValueByValuePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
1085
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.6", ngImport: i0, type: GetAdditionalValueByValuePipe, isStandalone: true, name: "getAdditionalValueByValue" }); }
1086
+ }
1087
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: GetAdditionalValueByValuePipe, decorators: [{
1088
+ type: Pipe,
1089
+ args: [{
1090
+ name: 'getAdditionalValueByValue',
1091
+ standalone: true
1092
+ }]
1093
+ }] });
1094
+
1095
+ class KeyValuesPipe {
1096
+ transform(controls) {
1097
+ return Object.entries(controls).map(([key, control]) => ({
1098
+ name: key,
1099
+ control: control,
1100
+ }));
1101
+ }
1102
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: KeyValuesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
1103
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.6", ngImport: i0, type: KeyValuesPipe, isStandalone: true, name: "keyValues" }); }
1104
+ }
1105
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: KeyValuesPipe, decorators: [{
1106
+ type: Pipe,
1107
+ args: [{
1108
+ name: 'keyValues',
1109
+ standalone: true
1110
+ }]
1111
+ }] });
1112
+
1113
+ class AnswerLangComponent extends AnswerMasterComponent {
1114
+ constructor() {
1115
+ super(...arguments);
1116
+ this.languageList = input.required();
1117
+ this.onLanguageChange = output();
1118
+ }
1119
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerLangComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
1120
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.6", type: AnswerLangComponent, isStandalone: true, selector: "tp-survey-answer-lang", inputs: { languageList: { classPropertyName: "languageList", publicName: "languageList", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { onLanguageChange: "onLanguageChange" }, usesInheritance: true, ngImport: i0, template: "@for (language of languageList(); track $index) {\r\n <button mat-button (click)=\"onLanguageChange.emit(language.Value)\">\r\n {{language.Caption}}\r\n </button>\r\n}\r\n", styles: [""], dependencies: [{ kind: "component", type: MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }] }); }
1121
+ }
1122
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: AnswerLangComponent, decorators: [{
1123
+ type: Component,
1124
+ args: [{ selector: 'tp-survey-answer-lang', standalone: true, imports: [
1125
+ MatButton,
1126
+ MatIcon
1127
+ ], template: "@for (language of languageList(); track $index) {\r\n <button mat-button (click)=\"onLanguageChange.emit(language.Value)\">\r\n {{language.Caption}}\r\n </button>\r\n}\r\n" }]
1128
+ }] });
1129
+
1130
+ class ContainerAnswerComponent {
1131
+ #alternativeSequenceClicks;
1132
+ #logic;
1133
+ #destroyRef;
1134
+ constructor() {
1135
+ this.question = input.required();
1136
+ this.language = input.required();
1137
+ this.viewModel = input.required();
1138
+ this.answers = input();
1139
+ this.developerMode = input(false);
1140
+ this.languageList = input.required();
1141
+ this.visibleAlternativeList = signal([]);
1142
+ this.visibleSectionList = signal([]);
1143
+ this.visibleAdditionalAnswerList = signal([]);
1144
+ this.logicChanged = output();
1145
+ this.answerChanged = output();
1146
+ this.onLanguageChange = output();
1147
+ this.questionsType = QuestionsType;
1148
+ this.AdditionalAnswerType = AdditionalAnswerType;
1149
+ this.#alternativeSequenceClicks = [];
1150
+ this.#logic = inject(TpSurveyLogicService);
1151
+ this.#destroyRef = inject(DestroyRef);
1152
+ this.answerForm = new FormGroup({
1153
+ answer: new FormControl(null),
1154
+ additionalAnswers: new FormGroup({}),
1155
+ });
1156
+ }
1157
+ ngOnInit() {
1158
+ const answerValue = this.answers()?.question?.AnswerValue ?? null;
1159
+ const answerValueClear = answerValue === MISSING_VALUE ? null : answerValue;
1160
+ this.answerForm.patchValue({
1161
+ answer: answerValueClear,
1162
+ additionalAnswers: this.answers()?.question?.AnswerAdditional
1163
+ }, { emitEvent: false });
1164
+ this.#alternativeSequenceClicks = this.answers()?.question?.AlternativeSequenceClicks ?? [];
1165
+ this.#updateAlternativesAndSections();
1166
+ this.#updateAdditionalAnswers(true);
1167
+ this.#addValidator();
1168
+ this.answerForm.valueChanges.pipe(debounceTime(250), tap(() => this.logicChanged.emit(this.#getLogicVars())), //шлём новые логические переменные(может обновиться список additionalAnswers)
1169
+ tap(() => this.#updateAdditionalAnswers(false)), //перестраиваем additionalAnswers
1170
+ map(values => {
1171
+ const formGroup = this.answerForm.controls.additionalAnswers;
1172
+ const additionalAnswerNormalized = {};
1173
+ this.question().AdditionalAnswerlist.forEach(aa => {
1174
+ const isVisible = this.visibleAdditionalAnswerList().find(faa => faa.Value === aa.Value);
1175
+ if (isVisible) {
1176
+ additionalAnswerNormalized[aa.Value] = !!values.additionalAnswers ? values.additionalAnswers[aa.Value] : MISSING_VALUE;
1177
+ formGroup.get(aa.Value.toString())?.enable({ emitEvent: false });
1178
+ }
1179
+ else {
1180
+ additionalAnswerNormalized[aa.Value] = MISSING_VALUE;
1181
+ formGroup.get(aa.Value.toString())?.disable({ emitEvent: false });
1182
+ }
1183
+ });
1184
+ return {
1185
+ answer: values.answer,
1186
+ additionalAnswers: additionalAnswerNormalized,
1187
+ };
1188
+ }), takeUntilDestroyed(this.#destroyRef)).subscribe(data => {
1189
+ this.answerChanged.emit({
1190
+ guid: this.question().QuestionGuid,
1191
+ isComplete: this.answerForm.valid,
1192
+ answer: data.answer,
1193
+ additionalAnswers: data.additionalAnswers,
1194
+ logicVars: this.#getLogicVars(),
1195
+ viewedAlternativeValues: this.visibleAlternativeList().map(alt => alt.Value),
1196
+ viewedSectionGuids: this.visibleSectionList().map(alt => alt.SectionGuid),
1197
+ alternativeSequenceClicks: Array.from(this.#alternativeSequenceClicks)
1198
+ });
1199
+ });
1200
+ this.#setDefaultAnswers();
1201
+ }
1202
+ #addValidator() {
1203
+ const question = this.question();
1204
+ this.answerForm.controls.answer.addValidators(answerDefaultValidator());
1205
+ switch (question.QuestionType) {
1206
+ case QuestionsType.eqSS: {
1207
+ this.answerForm.controls.answer.addValidators(answerSSValidator());
1208
+ break;
1209
+ }
1210
+ case QuestionsType.eqMS: {
1211
+ this.answerForm.controls.answer.addValidators(answerMSValidator(this.visibleAlternativeList().length, this.question().AlternativeMinAnswersCount, this.question().AlternativeMaxAnswersCount));
1212
+ break;
1213
+ }
1214
+ case QuestionsType.eqOD: {
1215
+ this.answerForm.controls.answer.addValidators(answerODValidator(question.ODMinValue, question.ODMaxValue));
1216
+ break;
1217
+ }
1218
+ case QuestionsType.eqOL: {
1219
+ this.answerForm.controls.answer.addValidators(answerOLValidator());
1220
+ break;
1221
+ }
1222
+ case QuestionsType.eqSL: {
1223
+ this.answerForm.controls.answer.addValidators(answerSlValidator(this.question().RequireAllAnswers, this.question().SLSectionMinAnswersCount, this.visibleSectionList()));
1224
+ break;
1225
+ }
1226
+ }
1227
+ }
1228
+ #setDefaultAnswers() {
1229
+ const question = this.question();
1230
+ const isLang = question.QuestionType === QuestionsType.eqLANG;
1231
+ const isInfo = question.QuestionType === QuestionsType.eqINFO;
1232
+ const isEnd = question.QuestionType === QuestionsType.eqEND;
1233
+ const isSSMS = (question.QuestionType === QuestionsType.eqSS || question.QuestionType === QuestionsType.eqMS) && (this.visibleAlternativeList().length === 0);
1234
+ if (isInfo || isEnd || isSSMS || isLang) {
1235
+ let defaultAnswer;
1236
+ switch (question.QuestionType) {
1237
+ case QuestionsType.eqMS:
1238
+ defaultAnswer = [];
1239
+ break;
1240
+ case QuestionsType.eqSS:
1241
+ defaultAnswer = 0;
1242
+ break;
1243
+ default: defaultAnswer = 1;
1244
+ }
1245
+ //может возникнуть ситуация, когда нет альтернатив для отображения.в этом случае вопрос показывать не нужно, как ответ записываем 0 и переходим на следующий
1246
+ this.answerForm.patchValue({
1247
+ answer: defaultAnswer
1248
+ }, { emitEvent: true });
1249
+ }
1250
+ }
1251
+ //собираем все логические переменные, которые генерит вопрос
1252
+ #getLogicVars() {
1253
+ const questionType = this.question().QuestionType;
1254
+ const answer = this.answerForm.controls.answer.value;
1255
+ const logicObj = {};
1256
+ //переменная самого вопроса
1257
+ const questionSysName = this.question().SysName;
1258
+ //ответ на основной вопрос
1259
+ logicObj[questionSysName] = this.answerForm.value.answer;
1260
+ switch (questionType) {
1261
+ case QuestionsType.eqSS: {
1262
+ //каждая альтернатива имеет свою переменную, 1 нажата, 0 не нажата или скрыта(скрыта сомнительно, что это правильно)
1263
+ this.question().Alternativelist.forEach(alt => logicObj[`${questionSysName}${alt.SysName}`] = answer === alt.Value ? 1 : 0); // переменные альтернатив
1264
+ break;
1265
+ }
1266
+ case QuestionsType.eqMS: {
1267
+ const answers = Array.isArray(this.answerForm.value.answer) ? this.answerForm.value.answer : [];
1268
+ //каждая альтернатива имеет свою переменную, 1 нажата, 0 не нажата или скрыта(скрыта сомнительно, что это правильно)
1269
+ this.question().Alternativelist.forEach(alt => logicObj[`${questionSysName}${alt.SysName}`] = answers.find(val => val === alt.Value) ? 1 : 0); // переменные альтернатив
1270
+ break;
1271
+ }
1272
+ case QuestionsType.eqOL: {
1273
+ //логическая переменная для OL вопроса - 1, а не то что ввели
1274
+ logicObj[questionSysName] = 1;
1275
+ break;
1276
+ }
1277
+ case QuestionsType.eqSL: {
1278
+ /*Тут сложнее чем в остальных типах вопросов.
1279
+ * 1. Логическая переменная для SL вопроса
1280
+ * 2. Логическая переменная для каждой секции
1281
+ * 3. Логические переменные для каждой альтернативы + секции
1282
+ * */
1283
+ //1. Логическая переменная для SL вопроса - 1, а не то что ввели
1284
+ logicObj[questionSysName] = 1;
1285
+ //Каждая секция должны иметь свою логическую переменную, array<number> если multiselect, number если multiselect = false, -97 если секция не была показана.
1286
+ //+ для каждой секции нужно добавлять логические переменные для каждой альтернативы. 1 нажата, 0 отжата, -97 если альтернатива не была показана.
1287
+ const fullAnswers = this.answerForm.value.answer;
1288
+ const visibleAlternativeList = this.visibleAlternativeList().map(alt => alt.Value);
1289
+ this.question().Sectionlist.forEach(section => {
1290
+ const sectionSysName = section.SysName;
1291
+ //если undefined, то заменим на -97 это значит секция не была показана.
1292
+ const sectionAnswer = fullAnswers[section.SectionGuid.toString()] ?? MISSING_VALUE;
1293
+ //2. добавляем переменную самой секции.
1294
+ logicObj[sectionSysName] = sectionAnswer;
1295
+ this.question().Alternativelist.forEach(alternative => {
1296
+ const sectionAlternativeSysName = `${sectionSysName}${alternative.SysName}`;
1297
+ //секция не была показана, значит альтернативы тоже
1298
+ if (sectionAnswer === MISSING_VALUE) {
1299
+ logicObj[sectionAlternativeSysName] = MISSING_VALUE;
1300
+ }
1301
+ else {
1302
+ //сначала нужно проверить была ли показана альтернатива, если нет
1303
+ //альтернативы нет в списке показанных
1304
+ if (!visibleAlternativeList.find(visibleVal => visibleVal === alternative.Value)) {
1305
+ logicObj[sectionAlternativeSysName] = MISSING_VALUE;
1306
+ }
1307
+ else {
1308
+ //альтернативы есть в списке показанных, нужно узнать была нажата или нет.
1309
+ const isPressed = Array.isArray(sectionAnswer) ? sectionAnswer.includes(alternative.Value) : sectionAnswer === alternative.Value;
1310
+ logicObj[sectionAlternativeSysName] = isPressed ? 1 : 0;
1311
+ }
1312
+ }
1313
+ });
1314
+ });
1315
+ break;
1316
+ }
1317
+ }
1318
+ //логические переменные дополнительных вопросов.
1319
+ this.question().AdditionalAnswerlist.forEach(aa => {
1320
+ const additionalAnswer = !!this.answerForm.value.additionalAnswers ? this.answerForm.value.additionalAnswers[aa.Value.toString()] : MISSING_VALUE;
1321
+ const additionalAnswerSysName = `${questionSysName}${aa.SysName}`;
1322
+ if (additionalAnswer === MISSING_VALUE) {
1323
+ //дополнительный ответ не был показан, (скрыт по логике)
1324
+ logicObj[additionalAnswerSysName] = MISSING_VALUE;
1325
+ }
1326
+ else {
1327
+ //если на вопрос не отвечали(null), этот самый null и добавляем как ответ.
1328
+ if (additionalAnswer === null) {
1329
+ logicObj[additionalAnswerSysName] = null;
1330
+ }
1331
+ else {
1332
+ //если вопрос типа текст, как переменную добавим 1, в остальных случаях сам ответ.
1333
+ logicObj[additionalAnswerSysName] = aa.AnswerType === AdditionalAnswerType.aatText ? 1 : additionalAnswer;
1334
+ }
1335
+ }
1336
+ });
1337
+ return logicObj;
1338
+ }
1339
+ #updateAlternativesAndSections() {
1340
+ const developerMode = this.developerMode();
1341
+ //фильтруем альтернативы,
1342
+ const filteredAlternativeList = this.question().Alternativelist.filter(alt => developerMode || this.#logic.executeLogic(alt.EnableExpression));
1343
+ //фильтруем секции,
1344
+ const filteredSectionList = this.question().Sectionlist.filter(sec => developerMode || this.#logic.executeLogic(sec.EnableExpression));
1345
+ //меняем расположение тех, которые этого требуют и обновляем глобальную переменную
1346
+ this.visibleAlternativeList.set(this.#arrangeRotatedList(filteredAlternativeList));
1347
+ //для секций тоже самое
1348
+ this.visibleSectionList.set(this.#arrangeRotatedList(filteredSectionList));
1349
+ }
1350
+ #updateAdditionalAnswers(isInit) {
1351
+ const developerMode = this.developerMode();
1352
+ const formGroup = this.answerForm.controls.additionalAnswers;
1353
+ if (isInit) {
1354
+ this.question().AdditionalAnswerlist.forEach(aa => {
1355
+ switch (aa.AnswerType) {
1356
+ case AdditionalAnswerType.aatNumber:
1357
+ formGroup.addControl(aa.Value.toString(), new FormControl(null, { validators: [additionalAnswerDefaultValidator(aa.IsRequired), additionalAnswerNumberValidator(aa.IsRequired, aa.NumberMinValue, aa.NumberMaxValue)] }), { emitEvent: false });
1358
+ break;
1359
+ case AdditionalAnswerType.aatText:
1360
+ formGroup.addControl(aa.Value.toString(), new FormControl(null, { validators: [additionalAnswerDefaultValidator(aa.IsRequired)] }), { emitEvent: false });
1361
+ break;
1362
+ case AdditionalAnswerType.aatBoolean:
1363
+ formGroup.addControl(aa.Value.toString(), new FormControl(null, { validators: [additionalAnswerDefaultValidator(aa.IsRequired)] }), { emitEvent: false });
1364
+ break;
1365
+ }
1366
+ });
1367
+ return;
1368
+ }
1369
+ //фильтруем,
1370
+ const filteredAdditionalAnswerList = this.question().AdditionalAnswerlist.filter(addAnswer => developerMode || this.#logic.executeLogic(addAnswer.EnableExpression));
1371
+ //обновляем глобальный список
1372
+ this.visibleAdditionalAnswerList.set(filteredAdditionalAnswerList);
1373
+ }
1374
+ onAlternativeClick(value) {
1375
+ this.#alternativeSequenceClicks.push([value, new Date().getTime()]);
1376
+ }
1377
+ #arrangeRotatedList(inputArray) {
1378
+ //У каждой альтернативы и секции есть признак Rotation, который позволяем менять порядок отображения альтернативы или секции
1379
+ //если он true, то альтернатива и секция должна поменять расположение
1380
+ const resArray = [];
1381
+ //размер массива
1382
+ const inputArrayLength = inputArray.length;
1383
+ //проходимся по каждому элементу входного массива, и копируем в результирующий, Если Rotation, копируем его индекс, если Rotation не указан, копируем сам объект
1384
+ inputArray.forEach((obj, index) => resArray.push(obj.Rotation ? index : obj));
1385
+ //теперь с помощью рандома, расставим остальные эл-ты
1386
+ resArray.forEach((obj, index, array) => {
1387
+ if ((typeof obj === 'number') && (obj >= 0)) {
1388
+ while (true) {
1389
+ //если в новом массиве нет элемента из старого массива по random индексу, тогда копируем в новый массив старый елемент в новый адрес
1390
+ const newIndex = Math.floor(Math.random() * inputArrayLength);
1391
+ if (array.indexOf(inputArray[newIndex]) === -1) {
1392
+ array[index] = inputArray[newIndex];
1393
+ break;
1394
+ }
1395
+ }
1396
+ }
1397
+ });
1398
+ return resArray;
1399
+ }
1400
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: ContainerAnswerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1401
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.6", type: ContainerAnswerComponent, isStandalone: true, selector: "tp-survey-container-answer", inputs: { question: { classPropertyName: "question", publicName: "question", isSignal: true, isRequired: true, transformFunction: null }, language: { classPropertyName: "language", publicName: "language", isSignal: true, isRequired: true, transformFunction: null }, viewModel: { classPropertyName: "viewModel", publicName: "viewModel", isSignal: true, isRequired: true, transformFunction: null }, answers: { classPropertyName: "answers", publicName: "answers", isSignal: true, isRequired: false, transformFunction: null }, developerMode: { classPropertyName: "developerMode", publicName: "developerMode", isSignal: true, isRequired: false, transformFunction: null }, languageList: { classPropertyName: "languageList", publicName: "languageList", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { logicChanged: "logicChanged", answerChanged: "answerChanged", onLanguageChange: "onLanguageChange" }, ngImport: i0, template: "<div class=\"container-main\" [formGroup]=\"answerForm\">\r\n @switch (question().QuestionType) {\r\n <!-- @case ('LANG') {-->\r\n <!-- <app-answer-lang [question]=\"question\" [langArray]=\"sc.questionary.BaseParams.LanguageList\"/>-->\r\n <!-- }-->\r\n\r\n @case (questionsType.eqLANG) {\r\n <tp-survey-answer-lang\r\n [languageList]=\"languageList()\"\r\n [language]=\"2\"\r\n [viewModel]=\"viewModel()\"\r\n (onLanguageChange)=\"onLanguageChange.emit($event)\"/>\r\n }\r\n\r\n @case (questionsType.eqINFO) {\r\n <tp-survey-answer-info\r\n formControlName=\"answer\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"/>\r\n }\r\n\r\n @case (questionsType.eqSS) {\r\n <tp-survey-answer-ss\r\n formControlName=\"answer\"\r\n [question]=\"question()\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"\r\n [alternativeList]=\"visibleAlternativeList()\"\r\n (onAlternativeClick)=\"onAlternativeClick($event)\"\r\n />\r\n }\r\n\r\n @case (questionsType.eqMS) {\r\n <tp-survey-answer-ms\r\n formControlName=\"answer\"\r\n [question]=\"question()\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"\r\n [alternativeMaxAnswersCount]=\"question().AlternativeMaxAnswersCount\"\r\n [alternativeList]=\"visibleAlternativeList()\"\r\n (onAlternativeClick)=\"onAlternativeClick($event)\"/>\r\n }\r\n\r\n @case (questionsType.eqOD) {\r\n <tp-survey-answer-od\r\n formControlName=\"answer\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"\r\n [minValue]=\"question().ODMinValue\"\r\n [maxValue]=\"question().ODMaxValue\"\r\n />\r\n }\r\n\r\n @case (questionsType.eqOL) {\r\n <tp-survey-answer-ol\r\n formControlName=\"answer\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"\r\n [telephoneInput]=\"question().OLTypeTel\"\r\n />\r\n }\r\n\r\n @case (questionsType.eqSL) {\r\n <tp-survey-answer-sl\r\n formControlName=\"answer\"\r\n [alternativeList]=\"visibleAlternativeList()\"\r\n [sectionList]=\"visibleSectionList()\"\r\n [multiSelect]=\"question().MultiSelect\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"\r\n [maxCount]=\"this.question().SLSectionMaxAnswersCount\"\r\n />\r\n }\r\n\r\n @case (questionsType.eqEND) {\r\n <tp-survey-answer-end\r\n formControlName=\"answer\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"\r\n />\r\n }\r\n }\r\n\r\n <div class=\"container-additional-answer\">\r\n @for (addAnswer of answerForm.controls.additionalAnswers.controls | keyValues; track addAnswer) {\r\n @if (addAnswer.name | getAdditionalValueByValue:visibleAdditionalAnswerList(); as additionalAnswerObject ) {\r\n <tp-survey-answer-additional\r\n [control]=\"addAnswer.control\"\r\n [class.full-width]=\"additionalAnswerObject.AnswerType===AdditionalAnswerType.aatText\"\r\n [answerType]=\"additionalAnswerObject.AnswerType\"\r\n [caption]=\"additionalAnswerObject.MultiLangCaptions | multiLangObjectToHtml:language()\"\r\n [numberMinValue]=\"additionalAnswerObject.NumberMinValue\"\r\n [numberMaxValue]=\"additionalAnswerObject.NumberMaxValue\"\r\n [textMultiline]=\"additionalAnswerObject.TextMultiline\"\r\n [captionPosition]=\"additionalAnswerObject.CaptionPosition\"/>\r\n }\r\n }\r\n </div>\r\n</div>\r\n\r\n", styles: [".container-main{display:flex;flex-flow:column;align-items:center}tp-survey-answer-sl{width:100%}.full-width{width:100%}:host-context(.tp-view-desktop) .container-main{max-width:896px;margin:0 auto;padding:0 1em}:host-context(.tp-view-desktop) .container-additional-answer{padding:1em;display:flex;flex-flow:column;align-items:baseline;gap:2em}:host-context(.tp-view-tablet) .container-main{width:100%;height:100%;overflow:hidden;display:block}:host-context(.tp-view-tablet) .container-additional-answer{position:absolute;width:80%;left:10%;bottom:0}@media (max-width: 480px){:host-context(.tp-view-desktop) .container-additional-answer{width:100%}}\n"], dependencies: [{ kind: "component", type: AnswerODComponent, selector: "tp-survey-answer-od", inputs: ["minValue", "maxValue"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: AnswerSSComponent, selector: "tp-survey-answer-ss", inputs: ["question", "alternativeList"], outputs: ["onAlternativeClick"] }, { kind: "component", type: AnswerInfoComponent, selector: "tp-survey-answer-info" }, { kind: "component", type: AnswerMSComponent, selector: "tp-survey-answer-ms", inputs: ["question", "alternativeList", "alternativeMaxAnswersCount"], outputs: ["onAlternativeClick"] }, { kind: "component", type: AnswerAdditionalComponent, selector: "tp-survey-answer-additional", inputs: ["control", "answerType", "caption", "numberMinValue", "numberMaxValue", "textMultiline", "captionPosition"] }, { kind: "pipe", type: MultiLangObjectToHtmlPipe, name: "multiLangObjectToHtml" }, { kind: "component", type: AnswerEndComponent, selector: "tp-survey-answer-end" }, { kind: "component", type: AnswerOLComponent, selector: "tp-survey-answer-ol", inputs: ["telephoneInput"] }, { kind: "component", type: AnswerSLComponent, selector: "tp-survey-answer-sl", inputs: ["alternativeList", "sectionList", "multiSelect", "maxCount"] }, { kind: "pipe", type: GetAdditionalValueByValuePipe, name: "getAdditionalValueByValue" }, { kind: "pipe", type: KeyValuesPipe, name: "keyValues" }, { kind: "component", type: AnswerLangComponent, selector: "tp-survey-answer-lang", inputs: ["languageList"], outputs: ["onLanguageChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1402
+ }
1403
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: ContainerAnswerComponent, decorators: [{
1404
+ type: Component,
1405
+ args: [{ selector: 'tp-survey-container-answer', standalone: true, imports: [
1406
+ AnswerODComponent,
1407
+ ReactiveFormsModule,
1408
+ AnswerSSComponent,
1409
+ AnswerInfoComponent,
1410
+ AnswerMSComponent,
1411
+ AnswerAdditionalComponent,
1412
+ KeyValuePipe,
1413
+ MultiLangObjectToHtmlPipe,
1414
+ AnswerEndComponent,
1415
+ AnswerOLComponent,
1416
+ AnswerSLComponent,
1417
+ GetAdditionalValueByValuePipe,
1418
+ KeyValuesPipe,
1419
+ AnswerLangComponent
1420
+ ], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"container-main\" [formGroup]=\"answerForm\">\r\n @switch (question().QuestionType) {\r\n <!-- @case ('LANG') {-->\r\n <!-- <app-answer-lang [question]=\"question\" [langArray]=\"sc.questionary.BaseParams.LanguageList\"/>-->\r\n <!-- }-->\r\n\r\n @case (questionsType.eqLANG) {\r\n <tp-survey-answer-lang\r\n [languageList]=\"languageList()\"\r\n [language]=\"2\"\r\n [viewModel]=\"viewModel()\"\r\n (onLanguageChange)=\"onLanguageChange.emit($event)\"/>\r\n }\r\n\r\n @case (questionsType.eqINFO) {\r\n <tp-survey-answer-info\r\n formControlName=\"answer\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"/>\r\n }\r\n\r\n @case (questionsType.eqSS) {\r\n <tp-survey-answer-ss\r\n formControlName=\"answer\"\r\n [question]=\"question()\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"\r\n [alternativeList]=\"visibleAlternativeList()\"\r\n (onAlternativeClick)=\"onAlternativeClick($event)\"\r\n />\r\n }\r\n\r\n @case (questionsType.eqMS) {\r\n <tp-survey-answer-ms\r\n formControlName=\"answer\"\r\n [question]=\"question()\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"\r\n [alternativeMaxAnswersCount]=\"question().AlternativeMaxAnswersCount\"\r\n [alternativeList]=\"visibleAlternativeList()\"\r\n (onAlternativeClick)=\"onAlternativeClick($event)\"/>\r\n }\r\n\r\n @case (questionsType.eqOD) {\r\n <tp-survey-answer-od\r\n formControlName=\"answer\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"\r\n [minValue]=\"question().ODMinValue\"\r\n [maxValue]=\"question().ODMaxValue\"\r\n />\r\n }\r\n\r\n @case (questionsType.eqOL) {\r\n <tp-survey-answer-ol\r\n formControlName=\"answer\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"\r\n [telephoneInput]=\"question().OLTypeTel\"\r\n />\r\n }\r\n\r\n @case (questionsType.eqSL) {\r\n <tp-survey-answer-sl\r\n formControlName=\"answer\"\r\n [alternativeList]=\"visibleAlternativeList()\"\r\n [sectionList]=\"visibleSectionList()\"\r\n [multiSelect]=\"question().MultiSelect\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"\r\n [maxCount]=\"this.question().SLSectionMaxAnswersCount\"\r\n />\r\n }\r\n\r\n @case (questionsType.eqEND) {\r\n <tp-survey-answer-end\r\n formControlName=\"answer\"\r\n [language]=\"language()\"\r\n [viewModel]=\"viewModel()\"\r\n />\r\n }\r\n }\r\n\r\n <div class=\"container-additional-answer\">\r\n @for (addAnswer of answerForm.controls.additionalAnswers.controls | keyValues; track addAnswer) {\r\n @if (addAnswer.name | getAdditionalValueByValue:visibleAdditionalAnswerList(); as additionalAnswerObject ) {\r\n <tp-survey-answer-additional\r\n [control]=\"addAnswer.control\"\r\n [class.full-width]=\"additionalAnswerObject.AnswerType===AdditionalAnswerType.aatText\"\r\n [answerType]=\"additionalAnswerObject.AnswerType\"\r\n [caption]=\"additionalAnswerObject.MultiLangCaptions | multiLangObjectToHtml:language()\"\r\n [numberMinValue]=\"additionalAnswerObject.NumberMinValue\"\r\n [numberMaxValue]=\"additionalAnswerObject.NumberMaxValue\"\r\n [textMultiline]=\"additionalAnswerObject.TextMultiline\"\r\n [captionPosition]=\"additionalAnswerObject.CaptionPosition\"/>\r\n }\r\n }\r\n </div>\r\n</div>\r\n\r\n", styles: [".container-main{display:flex;flex-flow:column;align-items:center}tp-survey-answer-sl{width:100%}.full-width{width:100%}:host-context(.tp-view-desktop) .container-main{max-width:896px;margin:0 auto;padding:0 1em}:host-context(.tp-view-desktop) .container-additional-answer{padding:1em;display:flex;flex-flow:column;align-items:baseline;gap:2em}:host-context(.tp-view-tablet) .container-main{width:100%;height:100%;overflow:hidden;display:block}:host-context(.tp-view-tablet) .container-additional-answer{position:absolute;width:80%;left:10%;bottom:0}@media (max-width: 480px){:host-context(.tp-view-desktop) .container-additional-answer{width:100%}}\n"] }]
1421
+ }], ctorParameters: () => [] });
1422
+
1423
+ class GetActiveLanguagePipe {
1424
+ transform(languageList, languageId) {
1425
+ return Array.isArray(languageList) ? languageList.find(langObj => langObj.Value === languageId && langObj.isActive) : undefined;
1426
+ }
1427
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: GetActiveLanguagePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
1428
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.6", ngImport: i0, type: GetActiveLanguagePipe, isStandalone: true, name: "getActiveLanguage" }); }
1429
+ }
1430
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: GetActiveLanguagePipe, decorators: [{
1431
+ type: Pipe,
1432
+ args: [{
1433
+ name: 'getActiveLanguage',
1434
+ standalone: true
1435
+ }]
1436
+ }] });
1437
+
1438
+ class UpdateFontSizeDirective {
1439
+ constructor(_element) {
1440
+ this._element = _element;
1441
+ this.viewModel = input.required({ alias: 'tpSurveyUpdateFontSize' });
1442
+ effect(() => {
1443
+ if (this.viewModel() === ViewModel.vmTablet) {
1444
+ const containerWidth = this._element.nativeElement.clientWidth;
1445
+ const containerHeight = this._element.nativeElement.clientHeight;
1446
+ const proportion = Math.min(containerWidth / BASE_WIDTH, containerHeight / BASE_HEIGHT);
1447
+ Array.from(this._element.nativeElement.children).forEach((el) => el.style.fontSize = `${proportion * 100}%`);
1448
+ }
1449
+ });
1450
+ }
1451
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: UpdateFontSizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
1452
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.0.6", type: UpdateFontSizeDirective, isStandalone: true, selector: "[tpSurveyUpdateFontSize]", inputs: { viewModel: { classPropertyName: "viewModel", publicName: "tpSurveyUpdateFontSize", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 }); }
1453
+ }
1454
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: UpdateFontSizeDirective, decorators: [{
1455
+ type: Directive,
1456
+ args: [{
1457
+ selector: '[tpSurveyUpdateFontSize]',
1458
+ standalone: true
1459
+ }]
1460
+ }], ctorParameters: () => [{ type: i0.ElementRef }] });
1461
+
1462
+ function executeLogicExpression(expression, vars) {
1463
+ return new Function(`${LOGIC_FUNC_TEXT} return ${expression}`).call(vars);
1464
+ }
1465
+
1466
+ class SurveyQuotas {
1467
+ #completedQuota = { name: null, guid: null, guid2d: null };
1468
+ #quotas = [];
1469
+ #quotas2d = [];
1470
+ #quotaLimitDestinationQuestionGuid = -1;
1471
+ #quotaLimitDestinationQuestionNum = -1;
1472
+ setQuotas(quotas1d = [], quotas2d = [], quotaLimitDestinationQuestionGuid = -1, destinationQuestionNum = -1) {
1473
+ this.#quotas = quotas1d;
1474
+ this.#quotas2d = quotas2d;
1475
+ this.#quotaLimitDestinationQuestionGuid = quotaLimitDestinationQuestionGuid;
1476
+ this.#quotaLimitDestinationQuestionNum = destinationQuestionNum;
1477
+ }
1478
+ guidIsDestinationQuestion(guid) {
1479
+ return this.#quotaLimitDestinationQuestionGuid === guid;
1480
+ }
1481
+ get quotaIsCompleted() {
1482
+ return this.#completedQuota && (!!this.#completedQuota.guid || !!this.#completedQuota.guid2d);
1483
+ }
1484
+ get destinationQuestionGuid() {
1485
+ return this.#quotaLimitDestinationQuestionGuid;
1486
+ }
1487
+ get quotaCount() {
1488
+ const quotas = this.#quotas && Array.isArray(this.#quotas) ? this.#quotas.length : 0;
1489
+ const quotas2d = this.#quotas2d && Array.isArray(this.#quotas2d) ? this.#quotas2d.length : 0;
1490
+ return quotas + quotas2d;
1491
+ }
1492
+ findFilledQuotas(currentQuestionNum, vars, interviewAnswers) {
1493
+ /*
1494
+ * Поиск заполненной квоты это очень дорогой процесс. Его нужно оптимизировать по максимуму.
1495
+ * Перед поиском нужно выполнить ряд проверок.
1496
+ * Проверка currentQuestionNum <= this.#quotaLimitDestinationQuestionNum Нужна для оптимизации.
1497
+ * DestinationQuestion Желательно располагать после последнего квотного вопроса, потому что нет смысла постоянно проверять квоты, если вопросы которые используются для расчёта квоты меняться не будут.
1498
+ * например Квота Q1 + Q2 <= 25. DestinationQuestion нужно делать номером 3 или 4. Потому что как бы респондент не отвечал на последующие вопросы, результат квот не измениться и каждый раз их пересчитывать смысла нет.
1499
+ */
1500
+ if ((this.destinationQuestionGuid > 0) && //Глобально в настройках анкеты должен быть указан вопрос который должен отобразиться при достижении квоты, если его нет, то и искать квоты смысла нет.
1501
+ (this.quotaCount > 0) && //проверим если у нас вообще квоты
1502
+ (currentQuestionNum <= this.#quotaLimitDestinationQuestionNum) && // номер текущий вопроса меньше номера вопроса для перехода по достижении квот
1503
+ (!this.quotaIsCompleted) //и на финал проверим если ли уже заполненная квота, повторно не запускаем
1504
+ ) {
1505
+ new Promise((resolve, reject) => {
1506
+ if (Array.isArray(this.#quotas)) {
1507
+ const completedQuota = this.#quotas.find(quota => executeLogicExpression(quota.expression, vars));
1508
+ if (!!completedQuota) {
1509
+ return resolve({ name: completedQuota.name, guid: completedQuota.quota_guid });
1510
+ }
1511
+ }
1512
+ if (Array.isArray(this.#quotas2d)) {
1513
+ const answers = this.#quotas2d.length > 0 ? interviewAnswers.map(a => ({ av: a.AnswerValue, qg: a.QuestionGUID })) : [];
1514
+ const filledQuota2dArray = this.#quotas2d.filter(quotaValues => quotaValues.qs.every(qvq => !!answers.find(intAnswer => intAnswer.qg === qvq.guid && intAnswer.av === qvq.value)));
1515
+ //если не нашли заполненных квот выходим
1516
+ if (filledQuota2dArray.length <= 0) {
1517
+ return;
1518
+ }
1519
+ //ищем квоту которая заполнена и у нее есть условие и оно выполняется.
1520
+ const quota2dWithExpression = filledQuota2dArray.find((q) => !!q.exp && executeLogicExpression(q.exp, vars));
1521
+ //если квота есть сообщим
1522
+ if (!!quota2dWithExpression) {
1523
+ return resolve({ name: null, guid2d: quota2dWithExpression.qvg });
1524
+ }
1525
+ //если квоты с Expression нет, ищем квоту которая заполнена и у нее нет условия
1526
+ const quota2dWithoutExpression = filledQuota2dArray.find((q) => !q.exp || (typeof q.exp === 'string' && q.exp.trim().length === 0));
1527
+ if (!!quota2dWithoutExpression) {
1528
+ return resolve({ name: null, guid2d: quota2dWithoutExpression.qvg });
1529
+ }
1530
+ }
1531
+ reject(null);
1532
+ }).then(quota => {
1533
+ if (!!quota) {
1534
+ this.#completedQuota = {
1535
+ name: quota.name,
1536
+ guid: 'guid' in quota ? quota.guid : null,
1537
+ guid2d: 'guid2d' in quota ? quota.guid2d : null,
1538
+ };
1539
+ }
1540
+ }).catch(err => {
1541
+ console.error(err);
1542
+ });
1543
+ }
1544
+ }
1545
+ }
1546
+
1547
+ class Answer {
1548
+ constructor(guid, version = -1) {
1549
+ this.AnswerAdditional = {};
1550
+ this.ViewedAlternativeValues = [];
1551
+ this.ViewedSectionGuids = [];
1552
+ this.AlternativeSequenceClicks = [];
1553
+ this.StartedAt = 0;
1554
+ this.FinishedAt = 0;
1555
+ this.AnswerValue = MISSING_VALUE;
1556
+ this.answerIsComplete = false;
1557
+ this.QuestionGUID = guid;
1558
+ this.QuestionVersion = version;
1559
+ }
1560
+ clear() {
1561
+ this.StartedAt = 0;
1562
+ this.FinishedAt = 0;
1563
+ this.AnswerValue = MISSING_VALUE;
1564
+ this.ViewedAlternativeValues.length = 0;
1565
+ this.ViewedSectionGuids.length = 0;
1566
+ this.AlternativeSequenceClicks.length = 0;
1567
+ for (const key of Object.keys(this.AnswerAdditional)) {
1568
+ this.AnswerAdditional[Number(key)] = null;
1569
+ }
1570
+ }
1571
+ addAnswer(answerValue, answerAdditional, asComplete) {
1572
+ this.AnswerValue = answerValue;
1573
+ }
1574
+ }
1575
+
1576
+ class TpSurveyInterviewService {
1577
+ constructor() {
1578
+ this.#answerList = [];
1579
+ this.startedAt = 0;
1580
+ }
1581
+ #answerList;
1582
+ createAnswer(guid, version) {
1583
+ //ишем ответ с таким же номером как и в вопросе
1584
+ let answer = this.findAnswerByGuid(guid);
1585
+ //если ответа с таким номером вопроса нет, создадим
1586
+ if (!answer) {
1587
+ answer = new Answer(guid, version);
1588
+ this.#answerList.push(answer);
1589
+ }
1590
+ //вернём то, что создали или то что нашли
1591
+ return answer;
1592
+ }
1593
+ findAnswerByGuid(guid) {
1594
+ return this.#answerList.find(a => a.QuestionGUID === guid);
1595
+ }
1596
+ questionIsComplete(guid) {
1597
+ const answer = this.findAnswerByGuid(guid);
1598
+ return !answer ? false : answer.answerIsComplete;
1599
+ }
1600
+ getAnswerList() {
1601
+ return this.#answerList;
1602
+ }
1603
+ overrideAnswers(answers) {
1604
+ //не будем трогать вопросы которые = -97
1605
+ answers.filter(answer => answer.AnswerValue !== MISSING_VALUE).forEach(oldAnswer => {
1606
+ const newAnswer = this.#answerList.find(aa => aa.QuestionGUID === oldAnswer.QuestionGUID);
1607
+ if (!!newAnswer) {
1608
+ //вернём основной ответ
1609
+ newAnswer.AnswerValue = oldAnswer.AnswerValue;
1610
+ newAnswer.StartedAt = oldAnswer.StartedAt;
1611
+ newAnswer.FinishedAt = oldAnswer.FinishedAt;
1612
+ //С дополнительными ответами сложнее, они помечены readonly. Поэтому сначала удалим, потом добавим
1613
+ for (const prop of Object.getOwnPropertyNames(newAnswer.AnswerAdditional)) {
1614
+ // delete newAnswer.AnswerAdditional[prop];
1615
+ }
1616
+ //добавляем старые значения
1617
+ // for (const [key, value] of Object.entries(oldAnswer.AnswerAdditional)) {
1618
+ // newAnswer.AnswerAdditional[key] = value;
1619
+ // }
1620
+ //
1621
+ // if (Array.isArray(oldAnswer['AlternativeSequenceClicks'])) {
1622
+ // newAnswer['AlternativeSequenceClicks'] = Array.from(oldAnswer['AlternativeSequenceClicks']);
1623
+ // }
1624
+ //То же самое с ViewedAlternativeValues и ViewedSectionGuids. Т.к. они readonly сначала удалим, потом добавим
1625
+ newAnswer.ViewedAlternativeValues.length = 0;
1626
+ oldAnswer.ViewedAlternativeValues.forEach(oa => newAnswer.ViewedAlternativeValues.push(oa));
1627
+ newAnswer.ViewedSectionGuids.length = 0;
1628
+ oldAnswer.ViewedSectionGuids.forEach(oa => newAnswer.ViewedSectionGuids.push(oa));
1629
+ }
1630
+ });
1631
+ }
1632
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyInterviewService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1633
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyInterviewService, providedIn: 'root' }); }
1634
+ }
1635
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyInterviewService, decorators: [{
1636
+ type: Injectable,
1637
+ args: [{
1638
+ providedIn: 'root'
1639
+ }]
1640
+ }] });
1641
+
1642
+ class TpSurveyCoreService {
1643
+ #currentQuestion;
1644
+ #surveyQuotas;
1645
+ #questionary;
1646
+ #displayedQuestions; // нужно для навигации по кнопке back
1647
+ #destroyRef;
1648
+ constructor(platformId, _logic, _interview) {
1649
+ this.platformId = platformId;
1650
+ this._logic = _logic;
1651
+ this._interview = _interview;
1652
+ this._eventBus = new Subject();
1653
+ this.#currentQuestion = new BehaviorSubject(null);
1654
+ this.#surveyQuotas = new SurveyQuotas();
1655
+ this.#displayedQuestions = []; // нужно для навигации по кнопке back
1656
+ this.#destroyRef = inject(DestroyRef);
1657
+ // запускам проверку квот, после скрытия каждого(почти) вопроса (seQuestionHide)
1658
+ this._eventBus.asObservable().pipe(filter(ev => ev.key === SurveyEvents.seQuestionHide), takeUntilDestroyed(this.#destroyRef)).subscribe({
1659
+ next: () => this.#surveyQuotas.findFilledQuotas(this.#currentQuestion.value?.QuestionNum ?? -1, Object.assign({}, this._logic.getLogicVars()), this._interview.getAnswerList())
1660
+ });
1661
+ }
1662
+ setupSurvey(questionaryRawData, logicVars, answerList, questionGuid) {
1663
+ //если анкеты нет, делать нечего.
1664
+ if (!questionaryRawData) {
1665
+ this.#currentQuestion.next(null);
1666
+ return;
1667
+ }
1668
+ this.#questionary = questionaryRawData;
1669
+ if (isPlatformBrowser(this.platformId)) {
1670
+ //узнаем есть ли вопрос который указали для перехода при заполнении квоты
1671
+ const destinationQuestion = this.#findQuestionByGuid(questionaryRawData.BaseParams.QuotaLimitDestinationQuestionGuid);
1672
+ //инициализируем квоты
1673
+ this.#surveyQuotas.setQuotas(questionaryRawData.Quotas, questionaryRawData.Quotas2d, destinationQuestion?.QuestionGuid ?? -1, destinationQuestion?.QuestionNum ?? -1);
1674
+ }
1675
+ //создадим ответы и логические переменные
1676
+ this.#initiateQuestions(this.#questionary.Questions);
1677
+ // Может быть 2 варианта запуска интервью, 1-новое интервью, 2-перезапуск старого интервью. В первом случае начало это lang или первый вопрос. Во втором, с последнего вопроса на который ответили.
1678
+ let startQuestionNum = undefined;
1679
+ //если загружаем ранее не законченное интервью, продолжаем с места последнего вопроса (случай номер 2)
1680
+ if (!!logicVars && !!answerList && !!questionGuid) {
1681
+ //загружаем старые логические переменные и ответы
1682
+ this.#fillOldInterviewData(logicVars, answerList);
1683
+ //ищем номер вопроса, который был последний перед сохранением.
1684
+ const questionLastSave = this.#findQuestionByGuid(questionGuid);
1685
+ //Вопрос могли удалить. Тогда начнем сначала.
1686
+ if (!!questionLastSave) {
1687
+ startQuestionNum = questionLastSave.QuestionNum;
1688
+ }
1689
+ }
1690
+ if (startQuestionNum === undefined) {
1691
+ //Это новое интервью, без ранее сохранённых данных(случай 1). Запускаем опрос, первый экран это Lang вопрос, но если выбора языка нет, пропускаем и переходим на 1-й вопрос
1692
+ startQuestionNum = this.#activeLangCount > 1 ? 0 : this.#nextQuestionNum();
1693
+ }
1694
+ //пошлём событие о начале опроса
1695
+ this._eventBus.next({ key: SurveyEvents.seSurveyStart, data: { questionary: this.#questionary } });
1696
+ //показываем вопрос
1697
+ this.#changeCurrentQuestion(this.#questionary.Questions[startQuestionNum]);
1698
+ }
1699
+ on(...key) {
1700
+ return this._eventBus.asObservable().pipe(filter(event => key.includes(event.key)), map(event => event.data));
1701
+ }
1702
+ goToNextQuestion() {
1703
+ const currentQuestion = this.#currentQuestion.value;
1704
+ if (!currentQuestion) {
1705
+ return;
1706
+ }
1707
+ //если ответ на текущий вопрос не закончен, выходим
1708
+ if (!this._interview.questionIsComplete(currentQuestion.QuestionGuid)) {
1709
+ return;
1710
+ }
1711
+ //если указан PostScript, выполним его
1712
+ if (!!currentQuestion.PostScript) {
1713
+ this._logic.executePostScript(currentQuestion.PostScript);
1714
+ }
1715
+ this.#changeCurrentQuestion(this.#questionary.Questions[this.#nextQuestionNum()]);
1716
+ }
1717
+ goToBackQuestion() {
1718
+ this.#displayedQuestions.pop(); // удалим информацию о том что показывали этот вопрос
1719
+ const previousQuestionNum = this.#displayedQuestions.pop(); // узнаем номер вопроса на который нам надо перейти, и удалим информацию что-бы не дублировать
1720
+ if (!!previousQuestionNum) {
1721
+ const prevQuestion = this.#questionary?.Questions[previousQuestionNum];
1722
+ if (!!prevQuestion) {
1723
+ this.#changeCurrentQuestion(prevQuestion);
1724
+ }
1725
+ }
1726
+ }
1727
+ questionIsComplete(guid) {
1728
+ const answer = this._interview.findAnswerByGuid(guid);
1729
+ return answer?.answerIsComplete ?? false;
1730
+ }
1731
+ #fillOldInterviewData(logicVars, answerList) {
1732
+ //пропишем старые логические переменные
1733
+ if (Array.isArray(logicVars)) {
1734
+ logicVars.forEach(logicVarObj => {
1735
+ this._logic.setLogicValue(logicVarObj.nm, logicVarObj.vl);
1736
+ });
1737
+ }
1738
+ //пропишем старые ответы
1739
+ this._interview.overrideAnswers(answerList);
1740
+ //нужно вернуть время начала интервью, отдельно оно не сохраняется, поэтому возьмём минимальное время начала из ответов
1741
+ //фильтруем все вопросы у которых оно указано(>0) и трансформируем в число.
1742
+ const startedAtArray = answerList.filter(answer => answer.StartedAt > 0).map(answer => answer.StartedAt);
1743
+ //берём минимальное
1744
+ this._interview.startedAt = Math.min(...startedAtArray);
1745
+ }
1746
+ #changeCurrentQuestion(newQuestion) {
1747
+ const currentQuestion = this.#currentQuestion.value;
1748
+ const currentTime = new Date().getTime();
1749
+ if (!!currentQuestion) {
1750
+ /*
1751
+ Сохраним время начала интервью. Фиксировать будем не с самого начала, а с ответа на первый вопрос.
1752
+ Потому что практика такая, открыть анкету на планшете и ходить искать респондентов и из-за этого длительность интервью может быть нерелевантно.
1753
+ * */
1754
+ if (this._interview.startedAt === 0 && currentQuestion.QuestionNum >= 0) {
1755
+ this._interview.startedAt = currentTime;
1756
+ }
1757
+ //нужно сохранить FinishedAt в ответах для старого вопроса
1758
+ const answer = this._interview.findAnswerByGuid(currentQuestion.QuestionGuid);
1759
+ if (!!answer) {
1760
+ answer.FinishedAt = currentTime;
1761
+ }
1762
+ this._eventBus.next({ key: SurveyEvents.seQuestionHide, data: currentQuestion });
1763
+ }
1764
+ this.#displayedQuestions.push(newQuestion.QuestionNum);
1765
+ this.#currentQuestion.next(newQuestion);
1766
+ //нужно сохранить StartedAt в ответах для нового вопроса
1767
+ const answerNew = this._interview.findAnswerByGuid(newQuestion.QuestionGuid);
1768
+ if (!!answerNew) {
1769
+ answerNew.StartedAt = currentTime;
1770
+ }
1771
+ this._eventBus.next({ key: SurveyEvents.seQuestionShow, data: newQuestion });
1772
+ //если новый экран это end тогда завершаем интервью
1773
+ if (newQuestion.QuestionType === 'END') {
1774
+ this.#finishInterview();
1775
+ }
1776
+ }
1777
+ currentQuestion$() {
1778
+ return this.#currentQuestion.asObservable();
1779
+ }
1780
+ findAnswerByGuid(guid) {
1781
+ return this._interview.findAnswerByGuid(guid);
1782
+ }
1783
+ setLogicValue(varName, value) {
1784
+ this._logic.setLogicValue(varName, value);
1785
+ }
1786
+ getLogicVars() {
1787
+ return this._logic.getLogicVars();
1788
+ }
1789
+ getAnswerList() {
1790
+ return this._interview.getAnswerList();
1791
+ }
1792
+ updateAnswer(eventData) {
1793
+ const answer = this._interview.findAnswerByGuid(eventData.guid);
1794
+ if (!answer) {
1795
+ return;
1796
+ }
1797
+ //вопросы которые в своем составе имеет секции, хранят ответы чуть по другому, точнее ответ на каждую секцию это отдельный объект в _interview.answerList
1798
+ //поэтому ответ для таких типов вопросов это [key: string]: Array<number> | number, где key(guid секции) это ответ на секцию, если key нет, секция не была показана
1799
+ if (this.#currentQuestion.value?.QuestionType === QuestionsType.eqSL) {
1800
+ const sectionList = this.#currentQuestion.value?.Sectionlist;
1801
+ //пройдёмся по каждой секции и если для неё есть ответ, запишем, в противном случае вместо ответа укажем -97(MISSING_VALUE)
1802
+ if (!!sectionList) {
1803
+ sectionList.forEach(section => {
1804
+ const sectionInterviewAnswer = this._interview.findAnswerByGuid(section.SectionGuid);
1805
+ if (!sectionInterviewAnswer) {
1806
+ return;
1807
+ }
1808
+ const sectionQuestionAnswer = eventData.answer ? eventData.answer[section.SectionGuid.toString()] : undefined;
1809
+ sectionInterviewAnswer.AnswerValue = sectionQuestionAnswer === undefined ? MISSING_VALUE : sectionQuestionAnswer;
1810
+ });
1811
+ }
1812
+ //ответ самого исходного вопроса должен быть 1
1813
+ answer.AnswerValue = 1;
1814
+ }
1815
+ else {
1816
+ //ответ на вопрос у которого нет секций
1817
+ answer.AnswerValue = eventData.answer;
1818
+ }
1819
+ //на вопрос ответили тогда когда есть все ответы и выполняется логика кнопки далее(если её указали)
1820
+ answer.answerIsComplete = eventData.isComplete && this.#nextButtonExpressionIsTrue();
1821
+ //ViewedAlternativeValues и ViewedSectionGuids. Т.к. они readonly сначала удалим, потом добавим
1822
+ answer.ViewedAlternativeValues.length = 0;
1823
+ eventData.viewedAlternativeValues.forEach(oa => answer.ViewedAlternativeValues.push(oa));
1824
+ answer.ViewedSectionGuids.length = 0;
1825
+ eventData.viewedSectionGuids.forEach(oa => answer.ViewedSectionGuids.push(oa));
1826
+ answer.AlternativeSequenceClicks.length = 0;
1827
+ eventData.alternativeSequenceClicks.forEach(oa => answer.AlternativeSequenceClicks.push(oa));
1828
+ Object.entries(answer.AnswerAdditional).forEach(([key]) => delete answer.AnswerAdditional[Number(key)]);
1829
+ Object.entries(eventData.additionalAnswers).forEach(([key, value]) => answer.AnswerAdditional[Number(key)] = value);
1830
+ this.updateLogic(eventData.logicVars);
1831
+ this._eventBus.next({ key: SurveyEvents.seQuestionAnswersChange, data: { question: this.#currentQuestion.value, answerIsComplete: answer.answerIsComplete } });
1832
+ //может возникнуть ситуация, когда нет ни одной альтернативы или секции для отображения.в этом случае вопрос показывать не нужно, как ответ записываем 0 и переходим на следующий
1833
+ const question = this.#findQuestionByGuid(eventData.guid);
1834
+ //ситуация для ss/ms вопросов,
1835
+ if (!!question && answer.answerIsComplete && (question.QuestionType === 'SS' || question.QuestionType === 'MS') && (eventData.viewedAlternativeValues.length === 0)) {
1836
+ this.goToNextQuestion();
1837
+ }
1838
+ }
1839
+ updateLogic(logicVars) {
1840
+ Object.entries(logicVars).forEach(([varName, value]) => {
1841
+ this.setLogicValue(varName, value);
1842
+ });
1843
+ }
1844
+ //возвращает количество активных языков
1845
+ get #activeLangCount() {
1846
+ //если анкета по какой-то причине ну указана, вернём 0
1847
+ return this.#questionary?.BaseParams.LanguageList.filter(langObj => langObj.isActive).length ?? 0;
1848
+ }
1849
+ //возвращает количество вопросов
1850
+ get #questionsCount() {
1851
+ return this.#questionary?.Questions.length ?? 0;
1852
+ }
1853
+ #finishInterview() {
1854
+ const currentTime = new Date();
1855
+ let resultDirty;
1856
+ try {
1857
+ resultDirty = this._logic.executeLogic(this.#questionary?.BaseParams.ResultativeScript ?? '');
1858
+ }
1859
+ catch (e) {
1860
+ resultDirty = false;
1861
+ }
1862
+ const interview = {
1863
+ Language: 0, //todo lang
1864
+ SpotId: 0,
1865
+ DeviceId: 0,
1866
+ DeviceType: 0,
1867
+ Resultative: ResultativeStatus.rsUnset,
1868
+ Valid: ValidStatus.vsUnset,
1869
+ Wave: this.#questionary?.Info.current_wave ?? 0,
1870
+ QuestionaryName: this.#questionary?.Info.name ?? '',
1871
+ QuestionaryGuid: this.#questionary?.Info.questionary_guid ?? 0,
1872
+ StartedAt: this._interview.startedAt,
1873
+ FinishedAt: currentTime.getTime(),
1874
+ TineZoneBias: currentTime.getTimezoneOffset(),
1875
+ ResultatDirty: resultDirty,
1876
+ Answers: {
1877
+ AnsversList: Array.from(this._interview.getAnswerList())
1878
+ },
1879
+ additional_info: {
1880
+ QuestionaryUpdateTimestamp: new Date(this.#questionary?.Info.last_update_timestamp ?? 0).getTime(),
1881
+ },
1882
+ ResultQuotaGuids: [],
1883
+ ResultQuota2dGuids: [],
1884
+ LogicVars: [],
1885
+ };
1886
+ const logicVars = this._logic.getLogicVars();
1887
+ Object.entries(logicVars).forEach(([key, value]) => interview.LogicVars.push({ nm: key, vl: value }));
1888
+ this._eventBus.next({ key: SurveyEvents.seSurveyEnd, data: interview });
1889
+ }
1890
+ #nextQuestionNum() {
1891
+ const currentQuestion = this.#currentQuestion.value;
1892
+ // проверим квоты
1893
+ const currentGuid = currentQuestion?.QuestionGuid ?? 0;
1894
+ if (this.#surveyQuotas.quotaIsCompleted && !this.#surveyQuotas.guidIsDestinationQuestion(currentGuid)) {
1895
+ // у нас есть заполненная квота, найдем вопрос который нужно показать при заполнении квоты
1896
+ const destinationQ = this.#findQuestionByGuid(this.#surveyQuotas.destinationQuestionGuid);
1897
+ //если вопрос есть(его могли удалить из анкеты), показывает его
1898
+ if (!!destinationQ) {
1899
+ return destinationQ.QuestionNum;
1900
+ }
1901
+ }
1902
+ // если нет заполненной квоты, переходим на следующий вопрос, ищем следующий вопрос который мы можем отобразить (до логика может запретить показ вопроса)
1903
+ let nextQuestionNum = (currentQuestion?.QuestionNum ?? 0) + 1;
1904
+ // но сначала проверим после логику
1905
+ if (!!currentQuestion) {
1906
+ const destQ = currentQuestion.logiclist.find(logObj => (logObj.DestinationQuestionGuid > 0) && this._logic.executeLogic(logObj.LogicText));
1907
+ if (!!destQ) {
1908
+ const destQNum = this.#findQuestionByGuid(destQ.DestinationQuestionGuid)?.QuestionNum;
1909
+ if (Number.isSafeInteger(destQNum)) { // вопрос мог быть удалён, а логику оставить
1910
+ nextQuestionNum = destQNum;
1911
+ }
1912
+ }
1913
+ }
1914
+ // общее количество вопросов, цикл будет считать до этого количества
1915
+ const questionCount = this.#questionsCount;
1916
+ do {
1917
+ //потенциально следующий вопрос
1918
+ const q = this.#questionary.Questions[nextQuestionNum];
1919
+ //если это последний вопрос или если выполняется BeforeExpression и этот вопрос не DestinationQuota, можем его показать
1920
+ if (q.QuestionType === QuestionsType.eqEND || (this._logic.executeLogic(q.BeforeExpression) && !this.#surveyQuotas.guidIsDestinationQuestion(q.QuestionGuid))) {
1921
+ return nextQuestionNum;
1922
+ }
1923
+ //вопрос нельзя показывать, увеличиваем счётчик текущего вопроса на 1
1924
+ nextQuestionNum++;
1925
+ } while (nextQuestionNum < questionCount - 1); // end вопрос должен всегда быть показан
1926
+ return nextQuestionNum;
1927
+ }
1928
+ #initiateQuestions(questionList) {
1929
+ questionList.forEach(question => {
1930
+ //создаём пустой ответ для вопроса.
1931
+ const answer = this._interview.createAnswer(question.QuestionGuid, question.Version);
1932
+ //такого быть не должно, это ошибка
1933
+ if (!answer) {
1934
+ throw new Error('answer not found');
1935
+ }
1936
+ this._logic.setLogicValue(question.SysName, MISSING_VALUE); // переменная самого вопроса
1937
+ //добавим доп ответы и логику для них
1938
+ question.AdditionalAnswerlist.forEach(aa => {
1939
+ answer.AnswerAdditional[aa.Value] = null;
1940
+ this._logic.setLogicValue(`${question.SysName}${aa.SysName}`, MISSING_VALUE); // логика для переменных доп ответа
1941
+ });
1942
+ // если в тексте postScript есть запись типа setVar('varName', value); нужно инициализировать переменную varName значением -97.
1943
+ if (!!question.PostScript) {
1944
+ (question.PostScript.match(/(\bsetvar\b)\(['|"](.*?)['|"]/gim) ?? []).map(scriptVar => scriptVar.match(/['|"](.+)['|"]/i)[1]).forEach(varName => this._logic.setLogicValue(varName, null));
1945
+ }
1946
+ // для Вопросов SS/MS нужно прописать логику альтернатив sysname вопроса + sysname альтернативы
1947
+ if (question.Sectionlist.length <= 0) { // для Вопросов SS/MS
1948
+ question.Alternativelist.forEach(alt => this._logic.setLogicValue(`${question.SysName}${alt.SysName}`, MISSING_VALUE));
1949
+ }
1950
+ else {
1951
+ //для вопросов у которых есть секции проинициализируем каждую секцию
1952
+ question.Sectionlist.forEach(section => {
1953
+ //создаём пустой ответ для секции.
1954
+ const answerForSection = this._interview.createAnswer(section.SectionGuid, 1);
1955
+ //такого быть не должно, это ошибка
1956
+ if (!answerForSection) {
1957
+ throw new Error('answer not found');
1958
+ }
1959
+ // для Вопросов SL нужно прописать логику альтернатив и секций sysname секции + sysname альтернативы
1960
+ this._logic.setLogicValue(section.SysName, MISSING_VALUE); // переменная самой секции
1961
+ //логика альтернатив SL вопроса
1962
+ question.Alternativelist.forEach(alt => this._logic.setLogicValue(`${section.SysName}${alt.SysName}`, MISSING_VALUE));
1963
+ });
1964
+ }
1965
+ });
1966
+ }
1967
+ //ищет вопрос на guid
1968
+ #findQuestionByGuid(guid) {
1969
+ if (!this.#questionary) {
1970
+ return undefined;
1971
+ }
1972
+ return this.#questionary.Questions.find(q => q.QuestionGuid === guid);
1973
+ }
1974
+ #nextButtonExpressionIsTrue() {
1975
+ const buttonNextExpression = this.#currentQuestion.value?.BtnNextExpression ?? '';
1976
+ //если скрипта для кнопки далее нет, вернём true
1977
+ if (buttonNextExpression.trim() === '') {
1978
+ return true;
1979
+ }
1980
+ try {
1981
+ return this._logic.executeLogic(buttonNextExpression);
1982
+ }
1983
+ catch (e) {
1984
+ console.error(e);
1985
+ return false;
1986
+ }
1987
+ }
1988
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyCoreService, deps: [{ token: PLATFORM_ID }, { token: TpSurveyLogicService }, { token: TpSurveyInterviewService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1989
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyCoreService, providedIn: 'root' }); }
1990
+ }
1991
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: TpSurveyCoreService, decorators: [{
1992
+ type: Injectable,
1993
+ args: [{
1994
+ providedIn: 'root'
1995
+ }]
1996
+ }], ctorParameters: () => [{ type: undefined, decorators: [{
1997
+ type: Inject,
1998
+ args: [PLATFORM_ID]
1999
+ }] }, { type: TpSurveyLogicService }, { type: TpSurveyInterviewService }] });
2000
+
2001
+ class SurveyThemeDirective {
2002
+ constructor() {
2003
+ this.theme = input('cyan-orange-light', { alias: 'tpSurveyTheme' });
2004
+ }
2005
+ get classCyanOrangeLight() {
2006
+ return this.theme() === 'cyan-orange-light';
2007
+ }
2008
+ get classCyanOrangeDark() {
2009
+ return this.theme() === 'cyan-orange-dark';
2010
+ }
2011
+ get classRoseRedLight() {
2012
+ return this.theme() === 'rose-red-light';
2013
+ }
2014
+ get classRoseRedDark() {
2015
+ return this.theme() === 'rose-red-dark';
2016
+ }
2017
+ get classAzureBlueLight() {
2018
+ return this.theme() === 'azure-blue-light';
2019
+ }
2020
+ get classAzureBlueDark() {
2021
+ return this.theme() === 'azure-blue-dark';
2022
+ }
2023
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: SurveyThemeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
2024
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.0.6", type: SurveyThemeDirective, isStandalone: true, selector: "[tpSurveyTheme]", inputs: { theme: { classPropertyName: "theme", publicName: "tpSurveyTheme", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class.survey-theme-cyan-orange-light": "this.classCyanOrangeLight", "class.survey-theme-cyan-orange-dark": "this.classCyanOrangeDark", "class.survey-theme-rose-red-light": "this.classRoseRedLight", "class.survey-theme-rose-red-dark": "this.classRoseRedDark", "class.survey-theme-azure-blue-light": "this.classAzureBlueLight", "class.survey-theme-azure-blue-dark": "this.classAzureBlueDark" } }, ngImport: i0 }); }
2025
+ }
2026
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: SurveyThemeDirective, decorators: [{
2027
+ type: Directive,
2028
+ args: [{
2029
+ selector: '[tpSurveyTheme]',
2030
+ standalone: true
2031
+ }]
2032
+ }], propDecorators: { classCyanOrangeLight: [{
2033
+ type: HostBinding,
2034
+ args: ["class.survey-theme-cyan-orange-light"]
2035
+ }], classCyanOrangeDark: [{
2036
+ type: HostBinding,
2037
+ args: ["class.survey-theme-cyan-orange-dark"]
2038
+ }], classRoseRedLight: [{
2039
+ type: HostBinding,
2040
+ args: ["class.survey-theme-rose-red-light"]
2041
+ }], classRoseRedDark: [{
2042
+ type: HostBinding,
2043
+ args: ["class.survey-theme-rose-red-dark"]
2044
+ }], classAzureBlueLight: [{
2045
+ type: HostBinding,
2046
+ args: ["class.survey-theme-azure-blue-light"]
2047
+ }], classAzureBlueDark: [{
2048
+ type: HostBinding,
2049
+ args: ["class.survey-theme-azure-blue-dark"]
2050
+ }] } });
2051
+
2052
+ class SurveyPlayComponent {
2053
+ #core;
2054
+ #destroyRef;
2055
+ constructor() {
2056
+ this.questionary = input.required();
2057
+ this.viewModel = input.required();
2058
+ this.interviewAutoSaveData = input();
2059
+ this.theme = input('cyan-orange-light');
2060
+ this.language = input(2);
2061
+ this.templateNavigationRef = input();
2062
+ this.interviewStarted = output();
2063
+ this.interviewFinished = output();
2064
+ this.interviewProgress = output();
2065
+ this.activeLanguage = signal(this.language());
2066
+ this.viewModelE = ViewModel;
2067
+ this.#core = inject(TpSurveyCoreService);
2068
+ this.#destroyRef = inject(DestroyRef);
2069
+ //Проблема в том, что если идёт подряд 2 вопроса с одинаковым типом, то не удаляется. Нужно пробросить null с небольшой задержкой, чтобы движок angular`а удалял старые компоненты
2070
+ this.currentQuestionViewData$ = this.#core.currentQuestion$().pipe(mergeMap(currentQuestion => from([null, currentQuestion]).pipe(concatMap(val => of(val).pipe(delay(val === null ? 0 : 50))))),
2071
+ //будем реагировать только когда null => вопрос и наоборот вопрос => null.
2072
+ distinctUntilChanged((a, b) => JSON.stringify(a) === JSON.stringify(b)), map(currentQuestion => ({
2073
+ question: currentQuestion,
2074
+ answers: !currentQuestion ? undefined : {
2075
+ question: this.#core.findAnswerByGuid(currentQuestion.QuestionGuid),
2076
+ sections: currentQuestion.Sectionlist.map(section => this.#core.findAnswerByGuid(section.SectionGuid)),
2077
+ }
2078
+ })));
2079
+ /*
2080
+ * кнопка далее нужно проверять при показе вопроса и при изменении ответа. При показе она может быть доступна сразу(например info).
2081
+ * Кнопка доступна если ответ корректно заполнен(questionIsComplete) и это не eqEND вопрос
2082
+ * */
2083
+ this.nextButtonAvailable = toSignal(merge(this.#core.on(SurveyEvents.seQuestionAnswersChange).pipe(map(data => data.question)), this.#core.on(SurveyEvents.seQuestionShow).pipe(map(data => data))).pipe(map(question => this.#core.questionIsComplete(question.QuestionGuid) && question.QuestionType !== QuestionsType.eqEND && question.QuestionType !== QuestionsType.eqLANG), delay(1)), { initialValue: false });
2084
+ //кнопку Назад можно показывать если в настройках указали ShowBtnBack и это не eqEND вопрос
2085
+ this.backButtonAvailable = toSignal(this.#core.on(SurveyEvents.seQuestionShow).pipe(filter(question => !!question), map((question) => question.QuestionNum > 1 && question.ShowBtnBack && question.QuestionType !== QuestionsType.eqEND && question.QuestionType !== QuestionsType.eqLANG), delay(1)));
2086
+ this.#core.on(SurveyEvents.seSurveyEnd).pipe(takeUntilDestroyed(this.#destroyRef)).subscribe({
2087
+ next: interview => {
2088
+ interview.Language = this.activeLanguage();
2089
+ this.interviewFinished.emit(interview);
2090
+ }
2091
+ });
2092
+ this.#core.on(SurveyEvents.seSurveyStart).pipe(takeUntilDestroyed(this.#destroyRef)).subscribe({
2093
+ next: data => this.interviewStarted.emit(data)
2094
+ });
2095
+ this.#core.on(SurveyEvents.seQuestionShow).pipe(takeUntilDestroyed(this.#destroyRef)).subscribe({
2096
+ next: q => this.interviewProgress.emit({
2097
+ currentNum: q.QuestionNum,
2098
+ questionsCount: this.questionary().Questions.length,
2099
+ questionGuid: q.QuestionGuid,
2100
+ interviewData: {
2101
+ logicVars: this.#core.getLogicVars(),
2102
+ answerList: this.#core.getAnswerList(),
2103
+ }
2104
+ })
2105
+ });
2106
+ }
2107
+ ngOnInit() {
2108
+ this.#core.setupSurvey(this.questionary(), this.interviewAutoSaveData()?.logic_vars, this.interviewAutoSaveData()?.answer_list, this.interviewAutoSaveData()?.question_guid);
2109
+ }
2110
+ onNavigationButtonClick(direction) {
2111
+ if (direction === 'next') {
2112
+ this.#core.goToNextQuestion();
2113
+ }
2114
+ else {
2115
+ this.#core.goToBackQuestion();
2116
+ }
2117
+ }
2118
+ onAnswerChanged(eventData) {
2119
+ this.#core.updateAnswer(eventData);
2120
+ }
2121
+ onLogicChanged(logicVars) {
2122
+ this.#core.updateLogic(logicVars);
2123
+ }
2124
+ onLanguageChange(language) {
2125
+ this.activeLanguage.set(language);
2126
+ this.#core.goToNextQuestion();
2127
+ }
2128
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: SurveyPlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2129
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.6", type: SurveyPlayComponent, isStandalone: true, selector: "tp-survey-play", inputs: { questionary: { classPropertyName: "questionary", publicName: "questionary", isSignal: true, isRequired: true, transformFunction: null }, viewModel: { classPropertyName: "viewModel", publicName: "viewModel", isSignal: true, isRequired: true, transformFunction: null }, interviewAutoSaveData: { classPropertyName: "interviewAutoSaveData", publicName: "interviewAutoSaveData", isSignal: true, isRequired: false, transformFunction: null }, theme: { classPropertyName: "theme", publicName: "theme", isSignal: true, isRequired: false, transformFunction: null }, language: { classPropertyName: "language", publicName: "language", isSignal: true, isRequired: false, transformFunction: null }, templateNavigationRef: { classPropertyName: "templateNavigationRef", publicName: "templateNavigationRef", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { interviewStarted: "interviewStarted", interviewFinished: "interviewFinished", interviewProgress: "interviewProgress" }, providers: [
2130
+ // {
2131
+ // provide: TpSurveyCoreService,
2132
+ // deps: [
2133
+ // PLATFORM_ID,
2134
+ // TpSurveyLogicService,
2135
+ // TpSurveyInterviewService
2136
+ // ]
2137
+ // },
2138
+ // TpSurveyLogicService,
2139
+ // TpSurveyInterviewService
2140
+ ], ngImport: i0, template: "<div\r\n class=\"survey-container-main survey-typography\"\r\n [tpSurveyUpdateFontSize]=\"viewModel()\"\r\n [tpSurveyTheme]=\"theme()\"\r\n [class.tp-view-desktop]=\"viewModel() === viewModelE.vmDesktop\"\r\n [class.tp-view-tablet]=\"viewModel() === viewModelE.vmTablet\">\r\n\r\n @if (currentQuestionViewData$ | async; as currentQuestionViewData) {\r\n @if (currentQuestionViewData.question; as question) {\r\n <tp-survey-question-caption\r\n [caption]=\"question.MultiLangCaptions | multiLangObjectToHtml:activeLanguage()\"\r\n [captionHelp]=\"question.MultiLangCaptionsHelper | multiLangObjectToHtml:activeLanguage()\"/>\r\n\r\n <tp-survey-container-answer\r\n [question]=\"question\"\r\n [language]=\"activeLanguage()\"\r\n [viewModel]=\"viewModel()\"\r\n [answers]=\"currentQuestionViewData.answers\"\r\n [languageList]=\"questionary().BaseParams.LanguageList\"\r\n (logicChanged)=\"onLogicChanged($event)\"\r\n (onLanguageChange)=\"onLanguageChange($event)\"\r\n (answerChanged)=\"onAnswerChanged($event)\"/>\r\n }\r\n }\r\n\r\n <div class=\"container-navigation\">\r\n <div class=\"container-navigation-back\">\r\n @if (backButtonAvailable()) {\r\n <tp-survey-navigation-button\r\n direction=\"back\"\r\n [caption]=\"(questionary().BaseParams.LanguageList | getActiveLanguage: activeLanguage())?.back_button_caption\"\r\n (click)=\"onNavigationButtonClick('back')\"/>\r\n }\r\n </div>\r\n\r\n <ng-container\r\n [ngTemplateOutlet]=\"templateNavigationRef() ?? null\">\r\n </ng-container>\r\n\r\n <div class=\"container-navigation-next\">\r\n @if (nextButtonAvailable()){\r\n <tp-survey-navigation-button\r\n [caption]=\"(questionary().BaseParams.LanguageList | getActiveLanguage: activeLanguage())?.next_button_caption\"\r\n direction=\"next\"\r\n (onClick)=\"onNavigationButtonClick('next')\"/>\r\n }\r\n </div>\r\n </div>\r\n</div>\r\n\r\n\r\n", styles: [".mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale3d(0,0,0);background-color:var(--mat-ripple-color, rgba(0, 0, 0, .1))}.cdk-high-contrast-active .mat-ripple-element,.cdk-drag-preview .mat-ripple-element,.cdk-drag-placeholder .mat-ripple-element{display:none}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}.cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.cdk-overlay-backdrop{position:absolute;inset:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.cdk-overlay-dark-backdrop{background:#00000052}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0!important;box-sizing:content-box!important;height:0!important}@keyframes cdk-text-field-autofill-start{}@keyframes cdk-text-field-autofill-end{}.cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.mat-focus-indicator{position:relative}.mat-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border:var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.mat-focus-indicator:focus:before{content:\"\"}.cdk-high-contrast-active{--mat-focus-indicator-display: block}.mat-mdc-focus-indicator{position:relative}.mat-mdc-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-mdc-focus-indicator-display, none);border:var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius, 4px)}.mat-mdc-focus-indicator:focus:before{content:\"\"}.cdk-high-contrast-active{--mat-mdc-focus-indicator-display: block}.mat-app-background{background-color:var(--mat-app-background-color, transparent);color:var(--mat-app-text-color, inherit)}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:var(--mat-app-elevation-shadow-level-0, none)}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:var(--mat-app-elevation-shadow-level-1, none)}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:var(--mat-app-elevation-shadow-level-2, none)}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:var(--mat-app-elevation-shadow-level-3, none)}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:var(--mat-app-elevation-shadow-level-4, none)}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:var(--mat-app-elevation-shadow-level-5, none)}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:var(--mat-app-elevation-shadow-level-6, none)}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:var(--mat-app-elevation-shadow-level-7, none)}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:var(--mat-app-elevation-shadow-level-8, none)}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:var(--mat-app-elevation-shadow-level-9, none)}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:var(--mat-app-elevation-shadow-level-10, none)}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:var(--mat-app-elevation-shadow-level-11, none)}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:var(--mat-app-elevation-shadow-level-12, none)}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:var(--mat-app-elevation-shadow-level-13, none)}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:var(--mat-app-elevation-shadow-level-14, none)}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:var(--mat-app-elevation-shadow-level-15, none)}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:var(--mat-app-elevation-shadow-level-16, none)}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:var(--mat-app-elevation-shadow-level-17, none)}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:var(--mat-app-elevation-shadow-level-18, none)}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:var(--mat-app-elevation-shadow-level-19, none)}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:var(--mat-app-elevation-shadow-level-20, none)}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:var(--mat-app-elevation-shadow-level-21, none)}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:var(--mat-app-elevation-shadow-level-22, none)}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:var(--mat-app-elevation-shadow-level-23, none)}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:var(--mat-app-elevation-shadow-level-24, none)}.survey-container-main{--mat-app-background-color: #fdfbff;--mat-app-text-color: #1a1b1f;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(26, 27, 31, .1);--mat-option-selected-state-label-text-color: #131c2b;--mat-option-label-text-color: #1a1b1f;--mat-option-hover-state-layer-color: rgba(26, 27, 31, .08);--mat-option-focus-state-layer-color: rgba(26, 27, 31, .12);--mat-option-selected-state-layer-color: #dae2f9;--mat-option-label-text-font: Roboto, sans-serif;--mat-option-label-text-line-height: 1.25rem;--mat-option-label-text-size: 1rem;--mat-option-label-text-tracking: .006rem;--mat-option-label-text-weight: 400;--mat-optgroup-label-text-color: #44474e;--mat-optgroup-label-text-font: Roboto, sans-serif;--mat-optgroup-label-text-line-height: 1.25rem;--mat-optgroup-label-text-size: .875rem;--mat-optgroup-label-text-tracking: .006rem;--mat-optgroup-label-text-weight: 500;--mat-full-pseudo-checkbox-selected-icon-color: #005cbb;--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;--mat-full-pseudo-checkbox-unselected-icon-color: #44474e;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fdfbff;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(26, 27, 31, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(26, 27, 31, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #005cbb;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(26, 27, 31, .38);--mdc-elevated-card-container-color: #fdfbff;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-elevated-card-container-shape: 12px;--mdc-outlined-card-container-color: #fdfbff;--mdc-outlined-card-outline-color: #c4c6d0;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-shape: 12px;--mdc-outlined-card-outline-width: 1px;--mat-card-subtitle-text-color: #1a1b1f;--mat-card-title-text-font: Roboto;--mat-card-title-text-line-height: 1.75rem;--mat-card-title-text-size: 1.375rem;--mat-card-title-text-tracking: 0rem;--mat-card-title-text-weight: 400;--mat-card-subtitle-text-font: Roboto, sans-serif;--mat-card-subtitle-text-line-height: 1.5rem;--mat-card-subtitle-text-size: 1rem;--mat-card-subtitle-text-tracking: .009rem;--mat-card-subtitle-text-weight: 500;--mdc-linear-progress-active-indicator-color: #005cbb;--mdc-linear-progress-track-color: #e0e2ec;--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0px;--mdc-plain-tooltip-container-color: #2f3033;--mdc-plain-tooltip-supporting-text-color: #f2f0f4;--mdc-plain-tooltip-supporting-text-line-height: 1rem;--mdc-plain-tooltip-supporting-text-font: Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size: .75rem;--mdc-plain-tooltip-supporting-text-weight: 400;--mdc-plain-tooltip-supporting-text-tracking: .025rem;--mdc-plain-tooltip-container-shape: 4px;--mdc-filled-text-field-caret-color: #005cbb;--mdc-filled-text-field-focus-active-indicator-color: #005cbb;--mdc-filled-text-field-focus-label-text-color: #005cbb;--mdc-filled-text-field-container-color: #e0e2ec;--mdc-filled-text-field-disabled-container-color: rgba(26, 27, 31, .04);--mdc-filled-text-field-label-text-color: #44474e;--mdc-filled-text-field-hover-label-text-color: #44474e;--mdc-filled-text-field-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-filled-text-field-input-text-color: #1a1b1f;--mdc-filled-text-field-disabled-input-text-color: rgba(26, 27, 31, .38);--mdc-filled-text-field-input-text-placeholder-color: #44474e;--mdc-filled-text-field-error-hover-label-text-color: #410002;--mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;--mdc-filled-text-field-error-label-text-color: #ba1a1a;--mdc-filled-text-field-active-indicator-color: #44474e;--mdc-filled-text-field-disabled-active-indicator-color: rgba(26, 27, 31, .38);--mdc-filled-text-field-hover-active-indicator-color: #1a1b1f;--mdc-filled-text-field-error-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-hover-active-indicator-color: #410002;--mdc-filled-text-field-label-text-font: Roboto, sans-serif;--mdc-filled-text-field-label-text-size: 1rem;--mdc-filled-text-field-label-text-tracking: .031rem;--mdc-filled-text-field-label-text-weight: 400;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-caret-color: #005cbb;--mdc-outlined-text-field-focus-outline-color: #005cbb;--mdc-outlined-text-field-focus-label-text-color: #005cbb;--mdc-outlined-text-field-label-text-color: #44474e;--mdc-outlined-text-field-hover-label-text-color: #1a1b1f;--mdc-outlined-text-field-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-outlined-text-field-input-text-color: #1a1b1f;--mdc-outlined-text-field-disabled-input-text-color: rgba(26, 27, 31, .38);--mdc-outlined-text-field-input-text-placeholder-color: #44474e;--mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-hover-label-text-color: #410002;--mdc-outlined-text-field-outline-color: #74777f;--mdc-outlined-text-field-disabled-outline-color: rgba(26, 27, 31, .12);--mdc-outlined-text-field-hover-outline-color: #1a1b1f;--mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;--mdc-outlined-text-field-error-hover-outline-color: #410002;--mdc-outlined-text-field-error-outline-color: #ba1a1a;--mdc-outlined-text-field-label-text-font: Roboto, sans-serif;--mdc-outlined-text-field-label-text-size: 1rem;--mdc-outlined-text-field-label-text-tracking: .031rem;--mdc-outlined-text-field-label-text-weight: 400;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mat-form-field-focus-select-arrow-color: #005cbb;--mat-form-field-disabled-input-text-placeholder-color: rgba(26, 27, 31, .38);--mat-form-field-state-layer-color: #1a1b1f;--mat-form-field-error-text-color: #ba1a1a;--mat-form-field-select-option-text-color: #1a1b1f;--mat-form-field-select-disabled-option-text-color: rgba(26, 27, 31, .38);--mat-form-field-leading-icon-color: #44474e;--mat-form-field-disabled-leading-icon-color: rgba(26, 27, 31, .38);--mat-form-field-trailing-icon-color: #44474e;--mat-form-field-disabled-trailing-icon-color: rgba(26, 27, 31, .38);--mat-form-field-error-focus-trailing-icon-color: #ba1a1a;--mat-form-field-error-hover-trailing-icon-color: #410002;--mat-form-field-error-trailing-icon-color: #ba1a1a;--mat-form-field-enabled-select-arrow-color: #44474e;--mat-form-field-disabled-select-arrow-color: rgba(26, 27, 31, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-container-text-font: Roboto, sans-serif;--mat-form-field-container-text-line-height: 1.5rem;--mat-form-field-container-text-size: 1rem;--mat-form-field-container-text-tracking: .031rem;--mat-form-field-container-text-weight: 400;--mat-form-field-subscript-text-font: Roboto, sans-serif;--mat-form-field-subscript-text-line-height: 1rem;--mat-form-field-subscript-text-size: .75rem;--mat-form-field-subscript-text-tracking: .025rem;--mat-form-field-subscript-text-weight: 400;--mat-form-field-container-height: 52px;--mat-form-field-filled-label-display: block;--mat-form-field-container-vertical-padding: 14px;--mat-form-field-filled-with-label-container-padding-top: 22px;--mat-form-field-filled-with-label-container-padding-bottom: 6px;--mat-form-field-focus-state-layer-opacity: 0;--mat-select-panel-background-color: #efedf1;--mat-select-enabled-trigger-text-color: #1a1b1f;--mat-select-disabled-trigger-text-color: rgba(26, 27, 31, .38);--mat-select-placeholder-text-color: #44474e;--mat-select-enabled-arrow-color: #44474e;--mat-select-disabled-arrow-color: rgba(26, 27, 31, .38);--mat-select-focused-arrow-color: #005cbb;--mat-select-invalid-arrow-color: #ba1a1a;--mat-select-trigger-text-font: Roboto, sans-serif;--mat-select-trigger-text-line-height: 1.5rem;--mat-select-trigger-text-size: 1rem;--mat-select-trigger-text-tracking: .031rem;--mat-select-trigger-text-weight: 400;--mat-select-arrow-transform: translateY(-8px);--mat-select-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #efedf1;--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-dialog-container-color: #fdfbff;--mdc-dialog-subhead-color: #1a1b1f;--mdc-dialog-supporting-text-color: #44474e;--mdc-dialog-subhead-font: Roboto;--mdc-dialog-subhead-line-height: 2rem;--mdc-dialog-subhead-size: 1.5rem;--mdc-dialog-subhead-weight: 400;--mdc-dialog-subhead-tracking: 0rem;--mdc-dialog-supporting-text-font: Roboto, sans-serif;--mdc-dialog-supporting-text-line-height: 1.25rem;--mdc-dialog-supporting-text-size: .875rem;--mdc-dialog-supporting-text-weight: 400;--mdc-dialog-supporting-text-tracking: .016rem;--mdc-dialog-container-shape: 28px;--mat-dialog-container-elevation-shadow: none;--mat-dialog-container-max-width: 560px;--mat-dialog-container-small-max-width: calc(100vw - 32px) ;--mat-dialog-container-min-width: 280px;--mat-dialog-actions-alignment: flex-end;--mat-dialog-actions-padding: 16px 24px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px 0;--mat-dialog-headline-padding: 6px 24px 13px;--mdc-chip-outline-color: #74777f;--mdc-chip-disabled-outline-color: rgba(26, 27, 31, .12);--mdc-chip-focus-outline-color: #44474e;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-chip-elevated-selected-container-color: #dae2f9;--mdc-chip-flat-disabled-selected-container-color: rgba(26, 27, 31, .12);--mdc-chip-focus-state-layer-color: #44474e;--mdc-chip-hover-state-layer-color: #44474e;--mdc-chip-selected-hover-state-layer-color: #131c2b;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #131c2b;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #44474e;--mdc-chip-selected-label-text-color: #131c2b;--mdc-chip-with-icon-icon-color: #44474e;--mdc-chip-with-icon-disabled-icon-color: #1a1b1f;--mdc-chip-with-icon-selected-icon-color: #131c2b;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #1a1b1f;--mdc-chip-with-trailing-icon-trailing-icon-color: #44474e;--mdc-chip-label-text-font: Roboto, sans-serif;--mdc-chip-label-text-line-height: 1.25rem;--mdc-chip-label-text-size: .875rem;--mdc-chip-label-text-tracking: .006rem;--mdc-chip-label-text-weight: 500;--mdc-chip-container-height: 28px;--mdc-chip-container-shape-radius: 8px;--mdc-chip-with-avatar-avatar-size: 24px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 1px;--mdc-chip-with-avatar-disabled-avatar-opacity: .38;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: .38;--mdc-chip-with-icon-disabled-icon-opacity: .38;--mat-chip-trailing-action-state-layer-color: #44474e;--mat-chip-selected-trailing-action-state-layer-color: #131c2b;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #1a1b1f;--mat-chip-selected-trailing-icon-color: #131c2b;--mat-chip-disabled-container-opacity: 1;--mat-chip-trailing-action-opacity: 1;--mat-chip-trailing-action-focus-opacity: 1;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #005cbb;--mdc-switch-selected-handle-color: #ffffff;--mdc-switch-selected-hover-state-layer-color: #005cbb;--mdc-switch-selected-pressed-state-layer-color: #005cbb;--mdc-switch-selected-focus-handle-color: #d7e3ff;--mdc-switch-selected-hover-handle-color: #d7e3ff;--mdc-switch-selected-pressed-handle-color: #d7e3ff;--mdc-switch-selected-focus-track-color: #005cbb;--mdc-switch-selected-hover-track-color: #005cbb;--mdc-switch-selected-pressed-track-color: #005cbb;--mdc-switch-selected-track-color: #005cbb;--mdc-switch-disabled-selected-handle-color: #fdfbff;--mdc-switch-disabled-selected-icon-color: #1a1b1f;--mdc-switch-disabled-selected-track-color: #1a1b1f;--mdc-switch-disabled-unselected-handle-color: #1a1b1f;--mdc-switch-disabled-unselected-icon-color: #e0e2ec;--mdc-switch-disabled-unselected-track-color: #e0e2ec;--mdc-switch-selected-icon-color: #001b3f;--mdc-switch-unselected-focus-handle-color: #44474e;--mdc-switch-unselected-focus-state-layer-color: #1a1b1f;--mdc-switch-unselected-focus-track-color: #e0e2ec;--mdc-switch-unselected-handle-color: #74777f;--mdc-switch-unselected-hover-handle-color: #44474e;--mdc-switch-unselected-hover-state-layer-color: #1a1b1f;--mdc-switch-unselected-hover-track-color: #e0e2ec;--mdc-switch-unselected-icon-color: #e0e2ec;--mdc-switch-unselected-pressed-handle-color: #44474e;--mdc-switch-unselected-pressed-state-layer-color: #1a1b1f;--mdc-switch-unselected-pressed-track-color: #e0e2ec;--mdc-switch-unselected-track-color: #e0e2ec;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-shape: 9999px;--mdc-switch-selected-icon-size: 16px;--mdc-switch-track-height: 32px;--mdc-switch-track-shape: 9999px;--mdc-switch-track-width: 52px;--mdc-switch-unselected-icon-size: 16px;--mdc-switch-state-layer-size: 40px;--mat-switch-track-outline-color: #74777f;--mat-switch-disabled-unselected-track-outline-color: #1a1b1f;--mat-switch-label-text-color: #1a1b1f;--mat-switch-label-text-font: Roboto, sans-serif;--mat-switch-label-text-line-height: 1.25rem;--mat-switch-label-text-size: .875rem;--mat-switch-label-text-tracking: .016rem;--mat-switch-label-text-weight: 400;--mat-switch-disabled-selected-handle-opacity: 1;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 16px;--mat-switch-selected-handle-size: 24px;--mat-switch-pressed-handle-size: 28px;--mat-switch-with-icon-handle-size: 24px;--mat-switch-selected-handle-horizontal-margin: 0 24px;--mat-switch-selected-with-icon-handle-horizontal-margin: 0 24px;--mat-switch-selected-pressed-handle-horizontal-margin: 0 22px;--mat-switch-unselected-handle-horizontal-margin: 0 8px;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0 4px;--mat-switch-unselected-pressed-handle-horizontal-margin: 0 2px;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 0;--mat-switch-visible-track-transition: opacity 75ms;--mat-switch-hidden-track-transition: opacity 75ms;--mat-switch-track-outline-width: 2px;--mat-switch-selected-track-outline-width: 2px;--mat-switch-selected-track-outline-color: transparent;--mat-switch-disabled-unselected-track-outline-width: 2px;--mdc-radio-disabled-selected-icon-color: #1a1b1f;--mdc-radio-disabled-unselected-icon-color: #1a1b1f;--mdc-radio-unselected-hover-icon-color: #1a1b1f;--mdc-radio-unselected-icon-color: #44474e;--mdc-radio-unselected-pressed-icon-color: #1a1b1f;--mdc-radio-selected-focus-icon-color: #005cbb;--mdc-radio-selected-hover-icon-color: #005cbb;--mdc-radio-selected-icon-color: #005cbb;--mdc-radio-selected-pressed-icon-color: #005cbb;--mdc-radio-state-layer-size: 36px;--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mat-radio-ripple-color: #1a1b1f;--mat-radio-checked-ripple-color: #005cbb;--mat-radio-disabled-label-color: rgba(26, 27, 31, .38);--mat-radio-label-text-color: #1a1b1f;--mat-radio-label-text-font: Roboto, sans-serif;--mat-radio-label-text-line-height: 1.25rem;--mat-radio-label-text-size: .875rem;--mat-radio-label-text-tracking: .016rem;--mat-radio-label-text-weight: 400;--mat-radio-touch-target-display: block;--mdc-slider-handle-color: #005cbb;--mdc-slider-focus-handle-color: #005cbb;--mdc-slider-hover-handle-color: #005cbb;--mdc-slider-active-track-color: #005cbb;--mdc-slider-inactive-track-color: #e0e2ec;--mdc-slider-with-tick-marks-inactive-container-color: #44474e;--mdc-slider-with-tick-marks-active-container-color: #ffffff;--mdc-slider-disabled-active-track-color: #1a1b1f;--mdc-slider-disabled-handle-color: #1a1b1f;--mdc-slider-disabled-inactive-track-color: #1a1b1f;--mdc-slider-label-container-color: #005cbb;--mdc-slider-label-label-text-color: #ffffff;--mdc-slider-with-overlap-handle-outline-color: #ffffff;--mdc-slider-with-tick-marks-disabled-container-color: #1a1b1f;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mdc-slider-label-label-text-font: Roboto, sans-serif;--mdc-slider-label-label-text-size: .75rem;--mdc-slider-label-label-text-line-height: 1rem;--mdc-slider-label-label-text-tracking: .031rem;--mdc-slider-label-label-text-weight: 500;--mdc-slider-active-track-height: 4px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 9999px;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .38;--mdc-slider-with-tick-marks-container-shape: 9999px;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .38;--mat-slider-ripple-color: #005cbb;--mat-slider-hover-state-layer-color: rgba(0, 92, 187, .05);--mat-slider-focus-state-layer-color: rgba(0, 92, 187, .2);--mat-slider-value-indicator-width: 28px;--mat-slider-value-indicator-height: 28px;--mat-slider-value-indicator-caret-display: none;--mat-slider-value-indicator-border-radius: 50% 50% 50% 0;--mat-slider-value-indicator-padding: 0;--mat-slider-value-indicator-text-transform: rotate(45deg);--mat-slider-value-indicator-container-transform: translateX(-50%) rotate(-45deg);--mat-slider-value-indicator-opacity: 1;--mat-menu-item-label-text-color: #1a1b1f;--mat-menu-item-icon-color: #44474e;--mat-menu-item-hover-state-layer-color: rgba(26, 27, 31, .08);--mat-menu-item-focus-state-layer-color: rgba(26, 27, 31, .12);--mat-menu-container-color: #efedf1;--mat-menu-divider-color: #e0e2ec;--mat-menu-item-label-text-font: Roboto, sans-serif;--mat-menu-item-label-text-size: .875rem;--mat-menu-item-label-text-tracking: .006rem;--mat-menu-item-label-text-line-height: 1.25rem;--mat-menu-item-label-text-weight: 500;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 8px;--mat-menu-divider-top-spacing: 8px;--mat-menu-item-spacing: 12px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 12px;--mat-menu-item-trailing-spacing: 12px;--mat-menu-item-with-icon-leading-spacing: 12px;--mat-menu-item-with-icon-trailing-spacing: 12px;--mat-menu-base-elevation-level: 2;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #d7e3ff;--mdc-list-list-item-disabled-state-layer-color: #1a1b1f;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #1a1b1f;--mdc-list-list-item-supporting-text-color: #44474e;--mdc-list-list-item-leading-icon-color: #44474e;--mdc-list-list-item-trailing-supporting-text-color: #44474e;--mdc-list-list-item-trailing-icon-color: #44474e;--mdc-list-list-item-selected-trailing-icon-color: #005cbb;--mdc-list-list-item-disabled-label-text-color: #1a1b1f;--mdc-list-list-item-disabled-leading-icon-color: #1a1b1f;--mdc-list-list-item-disabled-trailing-icon-color: #1a1b1f;--mdc-list-list-item-hover-label-text-color: #1a1b1f;--mdc-list-list-item-focus-label-text-color: #1a1b1f;--mdc-list-list-item-hover-state-layer-color: #1a1b1f;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #1a1b1f;--mdc-list-list-item-focus-state-layer-opacity: .12;--mdc-list-list-item-label-text-font: Roboto, sans-serif;--mdc-list-list-item-label-text-line-height: 1.5rem;--mdc-list-list-item-label-text-size: 1rem;--mdc-list-list-item-label-text-tracking: .031rem;--mdc-list-list-item-label-text-weight: 400;--mdc-list-list-item-supporting-text-font: Roboto, sans-serif;--mdc-list-list-item-supporting-text-line-height: 1.25rem;--mdc-list-list-item-supporting-text-size: .875rem;--mdc-list-list-item-supporting-text-tracking: .016rem;--mdc-list-list-item-supporting-text-weight: 400;--mdc-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;--mdc-list-list-item-trailing-supporting-text-line-height: 1rem;--mdc-list-list-item-trailing-supporting-text-size: .688rem;--mdc-list-list-item-trailing-supporting-text-tracking: .031rem;--mdc-list-list-item-trailing-supporting-text-weight: 500;--mdc-list-list-item-one-line-container-height: 44px;--mdc-list-list-item-two-line-container-height: 60px;--mdc-list-list-item-three-line-container-height: 84px;--mdc-list-list-item-container-shape: 0px;--mdc-list-list-item-leading-avatar-shape: 9999px;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-label-text-opacity: .3;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: #dae2f9;--mat-list-list-item-leading-icon-start-space: 12px;--mat-list-list-item-leading-icon-end-space: 12px;--mat-list-active-indicator-shape: 9999px;--mat-paginator-container-text-color: #1a1b1f;--mat-paginator-container-background-color: #fdfbff;--mat-paginator-enabled-icon-color: #44474e;--mat-paginator-disabled-icon-color: rgba(26, 27, 31, .38);--mat-paginator-container-text-font: Roboto, sans-serif;--mat-paginator-container-text-line-height: 1rem;--mat-paginator-container-text-size: .75rem;--mat-paginator-container-text-tracking: .025rem;--mat-paginator-container-text-weight: 400;--mat-paginator-select-trigger-text-size: .75rem;--mat-paginator-container-size: 52px;--mat-paginator-form-field-container-height: 40px;--mat-paginator-form-field-container-vertical-padding: 8px;--mat-paginator-touch-target-display: block;--mdc-secondary-navigation-tab-container-height: 44px;--mdc-tab-indicator-active-indicator-color: #005cbb;--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mat-tab-header-divider-color: #e0e2ec;--mat-tab-header-pagination-icon-color: #1a1b1f;--mat-tab-header-inactive-label-text-color: #1a1b1f;--mat-tab-header-active-label-text-color: #1a1b1f;--mat-tab-header-active-ripple-color: #1a1b1f;--mat-tab-header-inactive-ripple-color: #1a1b1f;--mat-tab-header-inactive-focus-label-text-color: #1a1b1f;--mat-tab-header-inactive-hover-label-text-color: #1a1b1f;--mat-tab-header-active-focus-label-text-color: #1a1b1f;--mat-tab-header-active-hover-label-text-color: #1a1b1f;--mat-tab-header-active-focus-indicator-color: #005cbb;--mat-tab-header-active-hover-indicator-color: #005cbb;--mat-tab-header-label-text-font: Roboto, sans-serif;--mat-tab-header-label-text-size: .875rem;--mat-tab-header-label-text-tracking: .006rem;--mat-tab-header-label-text-line-height: 1.25rem;--mat-tab-header-label-text-weight: 500;--mat-tab-header-divider-height: 1px;--mdc-checkbox-disabled-selected-checkmark-color: #fdfbff;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(26, 27, 31, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(26, 27, 31, .38);--mdc-checkbox-selected-checkmark-color: #ffffff;--mdc-checkbox-selected-focus-icon-color: #005cbb;--mdc-checkbox-selected-hover-icon-color: #005cbb;--mdc-checkbox-selected-icon-color: #005cbb;--mdc-checkbox-unselected-focus-icon-color: #1a1b1f;--mdc-checkbox-unselected-hover-icon-color: #1a1b1f;--mdc-checkbox-unselected-icon-color: #44474e;--mdc-checkbox-selected-focus-state-layer-color: #005cbb;--mdc-checkbox-selected-hover-state-layer-color: #005cbb;--mdc-checkbox-selected-pressed-state-layer-color: #1a1b1f;--mdc-checkbox-unselected-focus-state-layer-color: #1a1b1f;--mdc-checkbox-unselected-hover-state-layer-color: #1a1b1f;--mdc-checkbox-unselected-pressed-state-layer-color: #005cbb;--mdc-checkbox-state-layer-size: 36px;--mat-checkbox-disabled-label-color: rgba(26, 27, 31, .38);--mat-checkbox-label-text-color: #1a1b1f;--mat-checkbox-label-text-font: Roboto, sans-serif;--mat-checkbox-label-text-line-height: 1.25rem;--mat-checkbox-label-text-size: .875rem;--mat-checkbox-label-text-tracking: .016rem;--mat-checkbox-label-text-weight: 400;--mat-checkbox-touch-target-display: block;--mdc-text-button-label-text-color: #005cbb;--mdc-text-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-text-button-label-text-font: Roboto, sans-serif;--mdc-text-button-label-text-size: .875rem;--mdc-text-button-label-text-tracking: .006rem;--mdc-text-button-label-text-weight: 500;--mdc-text-button-container-height: 36px;--mdc-text-button-container-shape: 9999px;--mdc-protected-button-container-color: #fdfbff;--mdc-protected-button-label-text-color: #005cbb;--mdc-protected-button-disabled-container-color: rgba(26, 27, 31, .12);--mdc-protected-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-protected-button-label-text-font: Roboto, sans-serif;--mdc-protected-button-label-text-size: .875rem;--mdc-protected-button-label-text-tracking: .006rem;--mdc-protected-button-label-text-weight: 500;--mdc-protected-button-container-height: 36px;--mdc-protected-button-container-shape: 9999px;--mdc-filled-button-container-color: #005cbb;--mdc-filled-button-label-text-color: #ffffff;--mdc-filled-button-disabled-container-color: rgba(26, 27, 31, .12);--mdc-filled-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-filled-button-label-text-font: Roboto, sans-serif;--mdc-filled-button-label-text-size: .875rem;--mdc-filled-button-label-text-tracking: .006rem;--mdc-filled-button-label-text-weight: 500;--mdc-filled-button-container-height: 36px;--mdc-filled-button-container-shape: 9999px;--mdc-outlined-button-disabled-outline-color: rgba(26, 27, 31, .12);--mdc-outlined-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-outlined-button-label-text-color: #005cbb;--mdc-outlined-button-outline-color: #74777f;--mdc-outlined-button-label-text-font: Roboto, sans-serif;--mdc-outlined-button-label-text-size: .875rem;--mdc-outlined-button-label-text-tracking: .006rem;--mdc-outlined-button-label-text-weight: 500;--mdc-outlined-button-container-height: 36px;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 9999px;--mat-text-button-state-layer-color: #005cbb;--mat-text-button-disabled-state-layer-color: #44474e;--mat-text-button-ripple-color: rgba(0, 92, 187, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-text-button-touch-target-display: block;--mat-text-button-horizontal-padding: 12px;--mat-text-button-with-icon-horizontal-padding: 16px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: -4px;--mat-protected-button-state-layer-color: #005cbb;--mat-protected-button-disabled-state-layer-color: #44474e;--mat-protected-button-ripple-color: rgba(0, 92, 187, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-protected-button-touch-target-display: block;--mat-protected-button-horizontal-padding: 24px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -8px;--mat-filled-button-state-layer-color: #ffffff;--mat-filled-button-disabled-state-layer-color: #44474e;--mat-filled-button-ripple-color: rgba(255, 255, 255, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-filled-button-touch-target-display: block;--mat-filled-button-horizontal-padding: 24px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -8px;--mat-outlined-button-state-layer-color: #005cbb;--mat-outlined-button-disabled-state-layer-color: #44474e;--mat-outlined-button-ripple-color: rgba(0, 92, 187, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mat-outlined-button-touch-target-display: block;--mat-outlined-button-horizontal-padding: 24px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -8px;--mdc-icon-button-icon-color: #44474e;--mdc-icon-button-disabled-icon-color: rgba(26, 27, 31, .38);--mdc-icon-button-state-layer-size: 36px;--mdc-icon-button-icon-size: 24px;--mat-icon-button-state-layer-color: #44474e;--mat-icon-button-disabled-state-layer-color: #44474e;--mat-icon-button-ripple-color: rgba(68, 71, 78, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-touch-target-display: block;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-label-text-font: Roboto, sans-serif;--mdc-extended-fab-label-text-size: .875rem;--mdc-extended-fab-label-text-tracking: .006rem;--mdc-extended-fab-label-text-weight: 500;--mdc-extended-fab-container-height: 56px;--mdc-extended-fab-container-shape: 16px;--mdc-fab-container-color: #d7e3ff;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-shape: 16px;--mdc-fab-small-container-color: #d7e3ff;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-shape: 12px;--mat-fab-foreground-color: #001b3f;--mat-fab-state-layer-color: #001b3f;--mat-fab-ripple-color: rgba(0, 27, 63, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(26, 27, 31, .12);--mat-fab-disabled-state-foreground-color: rgba(26, 27, 31, .38);--mat-fab-touch-target-display: block;--mat-fab-small-foreground-color: #001b3f;--mat-fab-small-state-layer-color: #001b3f;--mat-fab-small-ripple-color: rgba(0, 27, 63, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(26, 27, 31, .12);--mat-fab-small-disabled-state-foreground-color: rgba(26, 27, 31, .38);--mdc-snackbar-container-color: #2f3033;--mdc-snackbar-supporting-text-color: #f2f0f4;--mdc-snackbar-supporting-text-font: Roboto, sans-serif;--mdc-snackbar-supporting-text-line-height: 1.25rem;--mdc-snackbar-supporting-text-size: .875rem;--mdc-snackbar-supporting-text-weight: 400;--mdc-snackbar-container-shape: 4px;--mat-snack-bar-button-color: #abc7ff;--mat-table-background-color: #fdfbff;--mat-table-header-headline-color: #1a1b1f;--mat-table-row-item-label-text-color: #1a1b1f;--mat-table-row-item-outline-color: #c4c6d0;--mat-table-header-headline-font: Roboto, sans-serif;--mat-table-header-headline-line-height: 1.25rem;--mat-table-header-headline-size: .875rem;--mat-table-header-headline-weight: 500;--mat-table-header-headline-tracking: .006rem;--mat-table-row-item-label-text-font: Roboto, sans-serif;--mat-table-row-item-label-text-line-height: 1.25rem;--mat-table-row-item-label-text-size: .875rem;--mat-table-row-item-label-text-weight: 400;--mat-table-row-item-label-text-tracking: .016rem;--mat-table-footer-supporting-text-font: Roboto, sans-serif;--mat-table-footer-supporting-text-line-height: 1.25rem;--mat-table-footer-supporting-text-size: .875rem;--mat-table-footer-supporting-text-weight: 400;--mat-table-footer-supporting-text-tracking: .016rem;--mat-table-header-container-height: 52px;--mat-table-footer-container-height: 48px;--mat-table-row-item-container-height: 48px;--mat-table-row-item-outline-width: 1px;--mdc-circular-progress-active-indicator-color: #005cbb;--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mat-badge-background-color: #ba1a1a;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: rgba(186, 26, 26, .38);--mat-badge-disabled-state-text-color: #ffffff;--mat-badge-text-font: Roboto, sans-serif;--mat-badge-text-size: .688rem;--mat-badge-text-weight: 500;--mat-badge-large-size-text-size: .688rem;--mat-badge-container-shape: 9999px;--mat-badge-container-size: 16px;--mat-badge-small-size-container-size: 6px;--mat-badge-large-size-container-size: 16px;--mat-badge-legacy-container-size: unset;--mat-badge-legacy-small-size-container-size: unset;--mat-badge-legacy-large-size-container-size: unset;--mat-badge-container-offset: -12px 0;--mat-badge-small-size-container-offset: -6px 0;--mat-badge-large-size-container-offset: -12px 0;--mat-badge-container-overlap-offset: -12px;--mat-badge-small-size-container-overlap-offset: -6px;--mat-badge-large-size-container-overlap-offset: -12px;--mat-badge-container-padding: 0 4px;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0 4px;--mat-badge-small-size-text-size: 0;--mat-bottom-sheet-container-text-color: #1a1b1f;--mat-bottom-sheet-container-background-color: #f5f3f7;--mat-bottom-sheet-container-text-font: Roboto, sans-serif;--mat-bottom-sheet-container-text-line-height: 1.5rem;--mat-bottom-sheet-container-text-size: 1rem;--mat-bottom-sheet-container-text-tracking: .031rem;--mat-bottom-sheet-container-text-weight: 400;--mat-bottom-sheet-container-shape: 28px;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #1a1b1f;--mat-standard-button-toggle-state-layer-color: #1a1b1f;--mat-standard-button-toggle-selected-state-background-color: #dae2f9;--mat-standard-button-toggle-selected-state-text-color: #131c2b;--mat-standard-button-toggle-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(26, 27, 31, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(26, 27, 31, .12);--mat-standard-button-toggle-divider-color: #74777f;--mat-standard-button-toggle-label-text-font: Roboto, sans-serif;--mat-standard-button-toggle-label-text-line-height: 1.25rem;--mat-standard-button-toggle-label-text-size: .875rem;--mat-standard-button-toggle-label-text-tracking: .006rem;--mat-standard-button-toggle-label-text-weight: 500;--mat-standard-button-toggle-height: 40px;--mat-standard-button-toggle-shape: 9999px;--mat-standard-button-toggle-background-color: transparent;--mat-standard-button-toggle-disabled-state-background-color: transparent;--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #005cbb;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #005cbb;--mat-datepicker-calendar-date-focus-state-background-color: rgba(26, 27, 31, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(26, 27, 31, .08);--mat-datepicker-toggle-active-state-icon-color: #44474e;--mat-datepicker-calendar-date-in-range-state-background-color: #d7e3ff;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #e0e0ff;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #dae2f9;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #565e71;--mat-datepicker-toggle-icon-color: #44474e;--mat-datepicker-calendar-body-label-text-color: #1a1b1f;--mat-datepicker-calendar-period-button-text-color: #44474e;--mat-datepicker-calendar-period-button-icon-color: #44474e;--mat-datepicker-calendar-navigation-button-icon-color: #44474e;--mat-datepicker-calendar-header-text-color: #44474e;--mat-datepicker-calendar-date-today-outline-color: #005cbb;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-date-text-color: #1a1b1f;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #005cbb;--mat-datepicker-range-input-separator-color: #1a1b1f;--mat-datepicker-range-input-disabled-state-separator-color: rgba(26, 27, 31, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-container-background-color: #e9e8ec;--mat-datepicker-calendar-container-text-color: #1a1b1f;--mat-datepicker-calendar-text-font: Roboto, sans-serif;--mat-datepicker-calendar-text-size: 1rem;--mat-datepicker-calendar-body-label-text-size: .875rem;--mat-datepicker-calendar-body-label-text-weight: 500;--mat-datepicker-calendar-period-button-text-size: .875rem;--mat-datepicker-calendar-period-button-text-weight: 500;--mat-datepicker-calendar-header-text-size: .875rem;--mat-datepicker-calendar-header-text-weight: 500;--mat-datepicker-calendar-container-shape: 16px;--mat-datepicker-calendar-container-touch-shape: 28px;--mat-datepicker-calendar-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-divider-color: transparent;--mat-datepicker-calendar-date-outline-color: transparent;--mat-divider-color: #c4c6d0;--mat-divider-width: 1px;--mat-expansion-container-background-color: #fdfbff;--mat-expansion-container-text-color: #1a1b1f;--mat-expansion-actions-divider-color: #c4c6d0;--mat-expansion-header-hover-state-layer-color: rgba(26, 27, 31, .08);--mat-expansion-header-focus-state-layer-color: rgba(26, 27, 31, .12);--mat-expansion-header-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-expansion-header-text-color: #1a1b1f;--mat-expansion-header-description-color: #44474e;--mat-expansion-header-indicator-color: #44474e;--mat-expansion-header-text-font: Roboto, sans-serif;--mat-expansion-header-text-size: 1rem;--mat-expansion-header-text-weight: 500;--mat-expansion-header-text-line-height: 1.5rem;--mat-expansion-header-text-tracking: .009rem;--mat-expansion-container-text-font: Roboto, sans-serif;--mat-expansion-container-text-line-height: 1.5rem;--mat-expansion-container-text-size: 1rem;--mat-expansion-container-text-tracking: .031rem;--mat-expansion-container-text-weight: 400;--mat-expansion-header-collapsed-state-height: 44px;--mat-expansion-header-expanded-state-height: 60px;--mat-expansion-container-shape: 12px;--mat-expansion-legacy-header-indicator-display: none;--mat-expansion-header-indicator-display: inline-block;--mat-grid-list-tile-header-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;--mat-grid-list-tile-header-secondary-text-size: 400 .875rem / 1.25rem Roboto, sans-serif;--mat-grid-list-tile-footer-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;--mat-grid-list-tile-footer-secondary-text-size: 400 .875rem / 1.25rem Roboto, sans-serif;--mat-icon-color: inherit;--mat-sidenav-container-background-color: #fdfbff;--mat-sidenav-container-text-color: #44474e;--mat-sidenav-content-background-color: #fdfbff;--mat-sidenav-content-text-color: #1a1b1f;--mat-sidenav-scrim-color: rgba(45, 48, 56, .4);--mat-sidenav-container-shape: 16px;--mat-sidenav-container-elevation-shadow: none;--mat-sidenav-container-width: 360px;--mat-sidenav-container-divider-color: transparent;--mat-stepper-header-icon-foreground-color: #fdfbff;--mat-stepper-header-selected-state-icon-background-color: #005cbb;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #005cbb;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #fdfbff;--mat-stepper-line-color: #c4c6d0;--mat-stepper-header-hover-state-layer-color: rgba(47, 48, 51, .08);--mat-stepper-header-focus-state-layer-color: rgba(47, 48, 51, .12);--mat-stepper-header-label-text-color: #44474e;--mat-stepper-header-optional-label-text-color: #44474e;--mat-stepper-header-selected-state-label-text-color: #44474e;--mat-stepper-header-error-state-label-text-color: #ba1a1a;--mat-stepper-header-icon-background-color: #44474e;--mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;--mat-stepper-container-text-font: Roboto, sans-serif;--mat-stepper-header-label-text-font: Roboto, sans-serif;--mat-stepper-header-label-text-size: .875rem;--mat-stepper-header-label-text-weight: 500;--mat-stepper-header-error-state-label-text-size: .875rem;--mat-stepper-header-selected-state-label-text-size: .875rem;--mat-stepper-header-selected-state-label-text-weight: 500;--mat-stepper-header-height: 68px;--mat-stepper-header-focus-state-layer-shape: 12px;--mat-stepper-header-hover-state-layer-shape: 12px;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #1a1b1f;--mat-toolbar-container-background-color: #fdfbff;--mat-toolbar-container-text-color: #1a1b1f;--mat-toolbar-title-text-font: Roboto;--mat-toolbar-title-text-line-height: 1.75rem;--mat-toolbar-title-text-size: 1.375rem;--mat-toolbar-title-text-tracking: 0rem;--mat-toolbar-title-text-weight: 400;--mat-toolbar-standard-height: 60px;--mat-toolbar-mobile-height: 52px;--mat-tree-container-background-color: #fdfbff;--mat-tree-node-text-color: #1a1b1f;--mat-tree-node-text-font: Roboto, sans-serif;--mat-tree-node-text-size: 1rem;--mat-tree-node-text-weight: 400;--mat-tree-node-min-height: 44px;font-family:Roboto,Helvetica Neue,sans-serif}.mat-theme-loaded-marker{display:none}.survey-container-main p{margin:0}.survey-theme-azure-blue-light .mat-display-large,.survey-theme-azure-blue-light .mat-typography .mat-display-large,.survey-theme-azure-blue-light .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-display-medium,.survey-theme-azure-blue-light .mat-typography .mat-display-medium,.survey-theme-azure-blue-light .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-display-small,.survey-theme-azure-blue-light .mat-typography .mat-display-small,.survey-theme-azure-blue-light .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-headline-large,.survey-theme-azure-blue-light .mat-typography .mat-headline-large,.survey-theme-azure-blue-light .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-headline-medium,.survey-theme-azure-blue-light .mat-typography .mat-headline-medium,.survey-theme-azure-blue-light .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-headline-small,.survey-theme-azure-blue-light .mat-typography .mat-headline-small,.survey-theme-azure-blue-light .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-title-large,.survey-theme-azure-blue-light .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-azure-blue-light .mat-title-medium,.survey-theme-azure-blue-light .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-azure-blue-light .mat-title-small,.survey-theme-azure-blue-light .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-light .mat-body-large,.survey-theme-azure-blue-light .mat-typography .mat-body-large,.survey-theme-azure-blue-light .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-light .mat-body-large p,.survey-theme-azure-blue-light .mat-typography .mat-body-large p,.survey-theme-azure-blue-light .mat-typography p{margin:0 0 .75em}.survey-theme-azure-blue-light .mat-body-medium,.survey-theme-azure-blue-light .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-azure-blue-light .mat-body-small,.survey-theme-azure-blue-light .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-azure-blue-light .mat-label-large,.survey-theme-azure-blue-light .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-light .mat-label-medium,.survey-theme-azure-blue-light .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-light .mat-label-small,.survey-theme-azure-blue-light .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-light.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-azure-blue-light ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-azure-blue-light.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#e0e0ff}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#00006e}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#e0e0ff}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#00006e}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#dae2f9;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-azure-blue-light.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-azure-blue-dark{--mat-app-background-color: #1a1b1f;--mat-app-text-color: #e3e2e6;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(227, 226, 230, .1);--mat-option-selected-state-label-text-color: #dae2f9;--mat-option-label-text-color: #e3e2e6;--mat-option-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-option-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-option-selected-state-layer-color: #3e4759;--mat-optgroup-label-text-color: #c4c6d0;--mat-full-pseudo-checkbox-selected-icon-color: #abc7ff;--mat-full-pseudo-checkbox-selected-checkmark-color: #002f65;--mat-full-pseudo-checkbox-unselected-icon-color: #c4c6d0;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #1a1b1f;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(227, 226, 230, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(227, 226, 230, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #abc7ff;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(227, 226, 230, .38);--mdc-elevated-card-container-color: #1a1b1f;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #1a1b1f;--mdc-outlined-card-outline-color: #44474e;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #e3e2e6;--mdc-linear-progress-active-indicator-color: #abc7ff;--mdc-linear-progress-track-color: #44474e;--mdc-plain-tooltip-container-color: #e3e2e6;--mdc-plain-tooltip-supporting-text-color: #2f3033;--mdc-filled-text-field-caret-color: #abc7ff;--mdc-filled-text-field-focus-active-indicator-color: #abc7ff;--mdc-filled-text-field-focus-label-text-color: #abc7ff;--mdc-filled-text-field-container-color: #44474e;--mdc-filled-text-field-disabled-container-color: rgba(227, 226, 230, .04);--mdc-filled-text-field-label-text-color: #c4c6d0;--mdc-filled-text-field-hover-label-text-color: #c4c6d0;--mdc-filled-text-field-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-filled-text-field-input-text-color: #e3e2e6;--mdc-filled-text-field-disabled-input-text-color: rgba(227, 226, 230, .38);--mdc-filled-text-field-input-text-placeholder-color: #c4c6d0;--mdc-filled-text-field-error-hover-label-text-color: #ffdad6;--mdc-filled-text-field-error-focus-label-text-color: #ffb4ab;--mdc-filled-text-field-error-label-text-color: #ffb4ab;--mdc-filled-text-field-active-indicator-color: #c4c6d0;--mdc-filled-text-field-disabled-active-indicator-color: rgba(227, 226, 230, .38);--mdc-filled-text-field-hover-active-indicator-color: #e3e2e6;--mdc-filled-text-field-error-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-focus-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-hover-active-indicator-color: #ffdad6;--mdc-outlined-text-field-caret-color: #abc7ff;--mdc-outlined-text-field-focus-outline-color: #abc7ff;--mdc-outlined-text-field-focus-label-text-color: #abc7ff;--mdc-outlined-text-field-label-text-color: #c4c6d0;--mdc-outlined-text-field-hover-label-text-color: #e3e2e6;--mdc-outlined-text-field-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-outlined-text-field-input-text-color: #e3e2e6;--mdc-outlined-text-field-disabled-input-text-color: rgba(227, 226, 230, .38);--mdc-outlined-text-field-input-text-placeholder-color: #c4c6d0;--mdc-outlined-text-field-error-focus-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-hover-label-text-color: #ffdad6;--mdc-outlined-text-field-outline-color: #8e9099;--mdc-outlined-text-field-disabled-outline-color: rgba(227, 226, 230, .12);--mdc-outlined-text-field-hover-outline-color: #e3e2e6;--mdc-outlined-text-field-error-focus-outline-color: #ffb4ab;--mdc-outlined-text-field-error-hover-outline-color: #ffdad6;--mdc-outlined-text-field-error-outline-color: #ffb4ab;--mat-form-field-focus-select-arrow-color: #abc7ff;--mat-form-field-disabled-input-text-placeholder-color: rgba(227, 226, 230, .38);--mat-form-field-state-layer-color: #e3e2e6;--mat-form-field-error-text-color: #ffb4ab;--mat-form-field-select-option-text-color: #1a1b1f;--mat-form-field-select-disabled-option-text-color: rgba(26, 27, 31, .38);--mat-form-field-leading-icon-color: #c4c6d0;--mat-form-field-disabled-leading-icon-color: rgba(227, 226, 230, .38);--mat-form-field-trailing-icon-color: #c4c6d0;--mat-form-field-disabled-trailing-icon-color: rgba(227, 226, 230, .38);--mat-form-field-error-focus-trailing-icon-color: #ffb4ab;--mat-form-field-error-hover-trailing-icon-color: #ffdad6;--mat-form-field-error-trailing-icon-color: #ffb4ab;--mat-form-field-enabled-select-arrow-color: #c4c6d0;--mat-form-field-disabled-select-arrow-color: rgba(227, 226, 230, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #1e1f23;--mat-select-enabled-trigger-text-color: #e3e2e6;--mat-select-disabled-trigger-text-color: rgba(227, 226, 230, .38);--mat-select-placeholder-text-color: #c4c6d0;--mat-select-enabled-arrow-color: #c4c6d0;--mat-select-disabled-arrow-color: rgba(227, 226, 230, .38);--mat-select-focused-arrow-color: #abc7ff;--mat-select-invalid-arrow-color: #ffb4ab;--mat-autocomplete-background-color: #1e1f23;--mdc-dialog-container-color: #1a1b1f;--mdc-dialog-subhead-color: #e3e2e6;--mdc-dialog-supporting-text-color: #c4c6d0;--mdc-chip-outline-color: #8e9099;--mdc-chip-disabled-outline-color: rgba(227, 226, 230, .12);--mdc-chip-focus-outline-color: #c4c6d0;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-chip-elevated-selected-container-color: #3e4759;--mdc-chip-flat-disabled-selected-container-color: rgba(227, 226, 230, .12);--mdc-chip-focus-state-layer-color: #c4c6d0;--mdc-chip-hover-state-layer-color: #c4c6d0;--mdc-chip-selected-hover-state-layer-color: #dae2f9;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #dae2f9;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #c4c6d0;--mdc-chip-selected-label-text-color: #dae2f9;--mdc-chip-with-icon-icon-color: #c4c6d0;--mdc-chip-with-icon-disabled-icon-color: #e3e2e6;--mdc-chip-with-icon-selected-icon-color: #dae2f9;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #e3e2e6;--mdc-chip-with-trailing-icon-trailing-icon-color: #c4c6d0;--mat-chip-trailing-action-state-layer-color: #c4c6d0;--mat-chip-selected-trailing-action-state-layer-color: #dae2f9;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #e3e2e6;--mat-chip-selected-trailing-icon-color: #dae2f9;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #abc7ff;--mdc-switch-selected-handle-color: #002f65;--mdc-switch-selected-hover-state-layer-color: #abc7ff;--mdc-switch-selected-pressed-state-layer-color: #abc7ff;--mdc-switch-selected-focus-handle-color: #00458f;--mdc-switch-selected-hover-handle-color: #00458f;--mdc-switch-selected-pressed-handle-color: #00458f;--mdc-switch-selected-focus-track-color: #abc7ff;--mdc-switch-selected-hover-track-color: #abc7ff;--mdc-switch-selected-pressed-track-color: #abc7ff;--mdc-switch-selected-track-color: #abc7ff;--mdc-switch-disabled-selected-handle-color: #1a1b1f;--mdc-switch-disabled-selected-icon-color: #e3e2e6;--mdc-switch-disabled-selected-track-color: #e3e2e6;--mdc-switch-disabled-unselected-handle-color: #e3e2e6;--mdc-switch-disabled-unselected-icon-color: #44474e;--mdc-switch-disabled-unselected-track-color: #44474e;--mdc-switch-selected-icon-color: #d7e3ff;--mdc-switch-unselected-focus-handle-color: #c4c6d0;--mdc-switch-unselected-focus-state-layer-color: #e3e2e6;--mdc-switch-unselected-focus-track-color: #44474e;--mdc-switch-unselected-handle-color: #8e9099;--mdc-switch-unselected-hover-handle-color: #c4c6d0;--mdc-switch-unselected-hover-state-layer-color: #e3e2e6;--mdc-switch-unselected-hover-track-color: #44474e;--mdc-switch-unselected-icon-color: #44474e;--mdc-switch-unselected-pressed-handle-color: #c4c6d0;--mdc-switch-unselected-pressed-state-layer-color: #e3e2e6;--mdc-switch-unselected-pressed-track-color: #44474e;--mdc-switch-unselected-track-color: #44474e;--mat-switch-track-outline-color: #8e9099;--mat-switch-disabled-unselected-track-outline-color: #e3e2e6;--mat-switch-label-text-color: #e3e2e6;--mdc-radio-disabled-selected-icon-color: #e3e2e6;--mdc-radio-disabled-unselected-icon-color: #e3e2e6;--mdc-radio-unselected-hover-icon-color: #e3e2e6;--mdc-radio-unselected-icon-color: #c4c6d0;--mdc-radio-unselected-pressed-icon-color: #e3e2e6;--mdc-radio-selected-focus-icon-color: #abc7ff;--mdc-radio-selected-hover-icon-color: #abc7ff;--mdc-radio-selected-icon-color: #abc7ff;--mdc-radio-selected-pressed-icon-color: #abc7ff;--mat-radio-ripple-color: #e3e2e6;--mat-radio-checked-ripple-color: #abc7ff;--mat-radio-disabled-label-color: rgba(227, 226, 230, .38);--mat-radio-label-text-color: #e3e2e6;--mdc-slider-handle-color: #abc7ff;--mdc-slider-focus-handle-color: #abc7ff;--mdc-slider-hover-handle-color: #abc7ff;--mdc-slider-active-track-color: #abc7ff;--mdc-slider-inactive-track-color: #44474e;--mdc-slider-with-tick-marks-inactive-container-color: #c4c6d0;--mdc-slider-with-tick-marks-active-container-color: #002f65;--mdc-slider-disabled-active-track-color: #e3e2e6;--mdc-slider-disabled-handle-color: #e3e2e6;--mdc-slider-disabled-inactive-track-color: #e3e2e6;--mdc-slider-label-container-color: #abc7ff;--mdc-slider-label-label-text-color: #002f65;--mdc-slider-with-overlap-handle-outline-color: #002f65;--mdc-slider-with-tick-marks-disabled-container-color: #e3e2e6;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #abc7ff;--mat-slider-hover-state-layer-color: rgba(171, 199, 255, .05);--mat-slider-focus-state-layer-color: rgba(171, 199, 255, .2);--mat-menu-item-label-text-color: #e3e2e6;--mat-menu-item-icon-color: #c4c6d0;--mat-menu-item-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-menu-item-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-menu-container-color: #1e1f23;--mat-menu-divider-color: #44474e;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #00458f;--mdc-list-list-item-disabled-state-layer-color: #e3e2e6;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #e3e2e6;--mdc-list-list-item-supporting-text-color: #c4c6d0;--mdc-list-list-item-leading-icon-color: #c4c6d0;--mdc-list-list-item-trailing-supporting-text-color: #c4c6d0;--mdc-list-list-item-trailing-icon-color: #c4c6d0;--mdc-list-list-item-selected-trailing-icon-color: #abc7ff;--mdc-list-list-item-disabled-label-text-color: #e3e2e6;--mdc-list-list-item-disabled-leading-icon-color: #e3e2e6;--mdc-list-list-item-disabled-trailing-icon-color: #e3e2e6;--mdc-list-list-item-hover-label-text-color: #e3e2e6;--mdc-list-list-item-focus-label-text-color: #e3e2e6;--mdc-list-list-item-hover-state-layer-color: #e3e2e6;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #e3e2e6;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #3e4759;--mat-paginator-container-text-color: #e3e2e6;--mat-paginator-container-background-color: #1a1b1f;--mat-paginator-enabled-icon-color: #c4c6d0;--mat-paginator-disabled-icon-color: rgba(227, 226, 230, .38);--mdc-tab-indicator-active-indicator-color: #abc7ff;--mat-tab-header-divider-color: #44474e;--mat-tab-header-pagination-icon-color: #e3e2e6;--mat-tab-header-inactive-label-text-color: #e3e2e6;--mat-tab-header-active-label-text-color: #e3e2e6;--mat-tab-header-active-ripple-color: #e3e2e6;--mat-tab-header-inactive-ripple-color: #e3e2e6;--mat-tab-header-inactive-focus-label-text-color: #e3e2e6;--mat-tab-header-inactive-hover-label-text-color: #e3e2e6;--mat-tab-header-active-focus-label-text-color: #e3e2e6;--mat-tab-header-active-hover-label-text-color: #e3e2e6;--mat-tab-header-active-focus-indicator-color: #abc7ff;--mat-tab-header-active-hover-indicator-color: #abc7ff;--mdc-checkbox-disabled-selected-checkmark-color: #1a1b1f;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(227, 226, 230, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(227, 226, 230, .38);--mdc-checkbox-selected-checkmark-color: #002f65;--mdc-checkbox-selected-focus-icon-color: #abc7ff;--mdc-checkbox-selected-hover-icon-color: #abc7ff;--mdc-checkbox-selected-icon-color: #abc7ff;--mdc-checkbox-unselected-focus-icon-color: #e3e2e6;--mdc-checkbox-unselected-hover-icon-color: #e3e2e6;--mdc-checkbox-unselected-icon-color: #c4c6d0;--mdc-checkbox-selected-focus-state-layer-color: #abc7ff;--mdc-checkbox-selected-hover-state-layer-color: #abc7ff;--mdc-checkbox-selected-pressed-state-layer-color: #e3e2e6;--mdc-checkbox-unselected-focus-state-layer-color: #e3e2e6;--mdc-checkbox-unselected-hover-state-layer-color: #e3e2e6;--mdc-checkbox-unselected-pressed-state-layer-color: #abc7ff;--mat-checkbox-disabled-label-color: rgba(227, 226, 230, .38);--mat-checkbox-label-text-color: #e3e2e6;--mdc-text-button-label-text-color: #abc7ff;--mdc-text-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-protected-button-container-color: #1a1b1f;--mdc-protected-button-label-text-color: #abc7ff;--mdc-protected-button-disabled-container-color: rgba(227, 226, 230, .12);--mdc-protected-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #abc7ff;--mdc-filled-button-label-text-color: #002f65;--mdc-filled-button-disabled-container-color: rgba(227, 226, 230, .12);--mdc-filled-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-outlined-button-disabled-outline-color: rgba(227, 226, 230, .12);--mdc-outlined-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-outlined-button-label-text-color: #abc7ff;--mdc-outlined-button-outline-color: #8e9099;--mat-text-button-state-layer-color: #abc7ff;--mat-text-button-disabled-state-layer-color: #c4c6d0;--mat-text-button-ripple-color: rgba(171, 199, 255, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #abc7ff;--mat-protected-button-disabled-state-layer-color: #c4c6d0;--mat-protected-button-ripple-color: rgba(171, 199, 255, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #002f65;--mat-filled-button-disabled-state-layer-color: #c4c6d0;--mat-filled-button-ripple-color: rgba(0, 47, 101, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #abc7ff;--mat-outlined-button-disabled-state-layer-color: #c4c6d0;--mat-outlined-button-ripple-color: rgba(171, 199, 255, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #c4c6d0;--mdc-icon-button-disabled-icon-color: rgba(227, 226, 230, .38);--mat-icon-button-state-layer-color: #c4c6d0;--mat-icon-button-disabled-state-layer-color: #c4c6d0;--mat-icon-button-ripple-color: rgba(196, 198, 208, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #00458f;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #00458f;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #d7e3ff;--mat-fab-state-layer-color: #d7e3ff;--mat-fab-ripple-color: rgba(215, 227, 255, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(227, 226, 230, .12);--mat-fab-disabled-state-foreground-color: rgba(227, 226, 230, .38);--mat-fab-small-foreground-color: #d7e3ff;--mat-fab-small-state-layer-color: #d7e3ff;--mat-fab-small-ripple-color: rgba(215, 227, 255, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(227, 226, 230, .12);--mat-fab-small-disabled-state-foreground-color: rgba(227, 226, 230, .38);--mdc-snackbar-container-color: #e3e2e6;--mdc-snackbar-supporting-text-color: #2f3033;--mat-snack-bar-button-color: #005cbb;--mat-table-background-color: #1a1b1f;--mat-table-header-headline-color: #e3e2e6;--mat-table-row-item-label-text-color: #e3e2e6;--mat-table-row-item-outline-color: #44474e;--mdc-circular-progress-active-indicator-color: #abc7ff;--mat-badge-background-color: #ffb4ab;--mat-badge-text-color: #690005;--mat-badge-disabled-state-background-color: rgba(255, 180, 171, .38);--mat-badge-disabled-state-text-color: #690005;--mat-bottom-sheet-container-text-color: #e3e2e6;--mat-bottom-sheet-container-background-color: #1a1b1f;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #e3e2e6;--mat-standard-button-toggle-state-layer-color: #e3e2e6;--mat-standard-button-toggle-selected-state-background-color: #3e4759;--mat-standard-button-toggle-selected-state-text-color: #dae2f9;--mat-standard-button-toggle-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(227, 226, 230, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(227, 226, 230, .12);--mat-standard-button-toggle-divider-color: #8e9099;--mat-datepicker-calendar-date-selected-state-text-color: #002f65;--mat-datepicker-calendar-date-selected-state-background-color: #abc7ff;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #abc7ff;--mat-datepicker-calendar-date-focus-state-background-color: rgba(227, 226, 230, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(227, 226, 230, .08);--mat-datepicker-toggle-active-state-icon-color: #c4c6d0;--mat-datepicker-calendar-date-in-range-state-background-color: #00458f;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #0000ef;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #3e4759;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #bec6dc;--mat-datepicker-toggle-icon-color: #c4c6d0;--mat-datepicker-calendar-body-label-text-color: #e3e2e6;--mat-datepicker-calendar-period-button-text-color: #c4c6d0;--mat-datepicker-calendar-period-button-icon-color: #c4c6d0;--mat-datepicker-calendar-navigation-button-icon-color: #c4c6d0;--mat-datepicker-calendar-header-text-color: #c4c6d0;--mat-datepicker-calendar-date-today-outline-color: #abc7ff;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-date-text-color: #e3e2e6;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #abc7ff;--mat-datepicker-range-input-separator-color: #e3e2e6;--mat-datepicker-range-input-disabled-state-separator-color: rgba(227, 226, 230, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-container-background-color: #292a2d;--mat-datepicker-calendar-container-text-color: #e3e2e6;--mat-divider-color: #44474e;--mat-expansion-container-background-color: #1a1b1f;--mat-expansion-container-text-color: #e3e2e6;--mat-expansion-actions-divider-color: #44474e;--mat-expansion-header-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-expansion-header-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-expansion-header-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-expansion-header-text-color: #e3e2e6;--mat-expansion-header-description-color: #c4c6d0;--mat-expansion-header-indicator-color: #c4c6d0;--mat-sidenav-container-background-color: #1a1b1f;--mat-sidenav-container-text-color: #c4c6d0;--mat-sidenav-content-background-color: #1a1b1f;--mat-sidenav-content-text-color: #e3e2e6;--mat-sidenav-scrim-color: rgba(45, 48, 56, .4);--mat-stepper-header-icon-foreground-color: #1a1b1f;--mat-stepper-header-selected-state-icon-background-color: #abc7ff;--mat-stepper-header-selected-state-icon-foreground-color: #002f65;--mat-stepper-header-edit-state-icon-background-color: #abc7ff;--mat-stepper-header-edit-state-icon-foreground-color: #002f65;--mat-stepper-container-color: #1a1b1f;--mat-stepper-line-color: #44474e;--mat-stepper-header-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-stepper-header-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-stepper-header-label-text-color: #c4c6d0;--mat-stepper-header-optional-label-text-color: #c4c6d0;--mat-stepper-header-selected-state-label-text-color: #c4c6d0;--mat-stepper-header-error-state-label-text-color: #ffb4ab;--mat-stepper-header-icon-background-color: #c4c6d0;--mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;--mat-sort-arrow-color: #e3e2e6;--mat-toolbar-container-background-color: #1a1b1f;--mat-toolbar-container-text-color: #e3e2e6;--mat-tree-container-background-color: #1a1b1f;--mat-tree-node-text-color: #e3e2e6}.survey-theme-azure-blue-dark .mat-display-large,.survey-theme-azure-blue-dark .mat-typography .mat-display-large,.survey-theme-azure-blue-dark .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-display-medium,.survey-theme-azure-blue-dark .mat-typography .mat-display-medium,.survey-theme-azure-blue-dark .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-display-small,.survey-theme-azure-blue-dark .mat-typography .mat-display-small,.survey-theme-azure-blue-dark .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-headline-large,.survey-theme-azure-blue-dark .mat-typography .mat-headline-large,.survey-theme-azure-blue-dark .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-headline-medium,.survey-theme-azure-blue-dark .mat-typography .mat-headline-medium,.survey-theme-azure-blue-dark .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-headline-small,.survey-theme-azure-blue-dark .mat-typography .mat-headline-small,.survey-theme-azure-blue-dark .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-title-large,.survey-theme-azure-blue-dark .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-azure-blue-dark .mat-title-medium,.survey-theme-azure-blue-dark .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-azure-blue-dark .mat-title-small,.survey-theme-azure-blue-dark .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-dark .mat-body-large,.survey-theme-azure-blue-dark .mat-typography .mat-body-large,.survey-theme-azure-blue-dark .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-dark .mat-body-large p,.survey-theme-azure-blue-dark .mat-typography .mat-body-large p,.survey-theme-azure-blue-dark .mat-typography p{margin:0 0 .75em}.survey-theme-azure-blue-dark .mat-body-medium,.survey-theme-azure-blue-dark .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-azure-blue-dark .mat-body-small,.survey-theme-azure-blue-dark .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-azure-blue-dark .mat-label-large,.survey-theme-azure-blue-dark .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-dark .mat-label-medium,.survey-theme-azure-blue-dark .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-dark .mat-label-small,.survey-theme-azure-blue-dark .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-dark.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-azure-blue-dark ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-azure-blue-dark.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#0000ef}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#e0e0ff}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#0000ef}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#e0e0ff}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#3e4759;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-azure-blue-dark.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-cyan-orange-light{--mat-app-background-color: #fafdfc;--mat-app-text-color: #191c1c;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(25, 28, 28, .1);--mat-option-selected-state-label-text-color: #051f1f;--mat-option-label-text-color: #191c1c;--mat-option-hover-state-layer-color: rgba(25, 28, 28, .08);--mat-option-focus-state-layer-color: rgba(25, 28, 28, .12);--mat-option-selected-state-layer-color: #cce8e7;--mat-optgroup-label-text-color: #3f4948;--mat-full-pseudo-checkbox-selected-icon-color: #006a6a;--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;--mat-full-pseudo-checkbox-unselected-icon-color: #3f4948;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafdfc;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(25, 28, 28, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(25, 28, 28, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #006a6a;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(25, 28, 28, .38);--mdc-elevated-card-container-color: #fafdfc;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #fafdfc;--mdc-outlined-card-outline-color: #bec9c8;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #191c1c;--mdc-linear-progress-active-indicator-color: #006a6a;--mdc-linear-progress-track-color: #dae5e4;--mdc-plain-tooltip-container-color: #2d3131;--mdc-plain-tooltip-supporting-text-color: #eff1f0;--mdc-filled-text-field-caret-color: #006a6a;--mdc-filled-text-field-focus-active-indicator-color: #006a6a;--mdc-filled-text-field-focus-label-text-color: #006a6a;--mdc-filled-text-field-container-color: #dae5e4;--mdc-filled-text-field-disabled-container-color: rgba(25, 28, 28, .04);--mdc-filled-text-field-label-text-color: #3f4948;--mdc-filled-text-field-hover-label-text-color: #3f4948;--mdc-filled-text-field-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-filled-text-field-input-text-color: #191c1c;--mdc-filled-text-field-disabled-input-text-color: rgba(25, 28, 28, .38);--mdc-filled-text-field-input-text-placeholder-color: #3f4948;--mdc-filled-text-field-error-hover-label-text-color: #410002;--mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;--mdc-filled-text-field-error-label-text-color: #ba1a1a;--mdc-filled-text-field-active-indicator-color: #3f4948;--mdc-filled-text-field-disabled-active-indicator-color: rgba(25, 28, 28, .38);--mdc-filled-text-field-hover-active-indicator-color: #191c1c;--mdc-filled-text-field-error-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-hover-active-indicator-color: #410002;--mdc-outlined-text-field-caret-color: #006a6a;--mdc-outlined-text-field-focus-outline-color: #006a6a;--mdc-outlined-text-field-focus-label-text-color: #006a6a;--mdc-outlined-text-field-label-text-color: #3f4948;--mdc-outlined-text-field-hover-label-text-color: #191c1c;--mdc-outlined-text-field-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-outlined-text-field-input-text-color: #191c1c;--mdc-outlined-text-field-disabled-input-text-color: rgba(25, 28, 28, .38);--mdc-outlined-text-field-input-text-placeholder-color: #3f4948;--mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-hover-label-text-color: #410002;--mdc-outlined-text-field-outline-color: #6f7979;--mdc-outlined-text-field-disabled-outline-color: rgba(25, 28, 28, .12);--mdc-outlined-text-field-hover-outline-color: #191c1c;--mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;--mdc-outlined-text-field-error-hover-outline-color: #410002;--mdc-outlined-text-field-error-outline-color: #ba1a1a;--mat-form-field-focus-select-arrow-color: #006a6a;--mat-form-field-disabled-input-text-placeholder-color: rgba(25, 28, 28, .38);--mat-form-field-state-layer-color: #191c1c;--mat-form-field-error-text-color: #ba1a1a;--mat-form-field-select-option-text-color: #191c1c;--mat-form-field-select-disabled-option-text-color: rgba(25, 28, 28, .38);--mat-form-field-leading-icon-color: #3f4948;--mat-form-field-disabled-leading-icon-color: rgba(25, 28, 28, .38);--mat-form-field-trailing-icon-color: #3f4948;--mat-form-field-disabled-trailing-icon-color: rgba(25, 28, 28, .38);--mat-form-field-error-focus-trailing-icon-color: #ba1a1a;--mat-form-field-error-hover-trailing-icon-color: #410002;--mat-form-field-error-trailing-icon-color: #ba1a1a;--mat-form-field-enabled-select-arrow-color: #3f4948;--mat-form-field-disabled-select-arrow-color: rgba(25, 28, 28, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #eceeed;--mat-select-enabled-trigger-text-color: #191c1c;--mat-select-disabled-trigger-text-color: rgba(25, 28, 28, .38);--mat-select-placeholder-text-color: #3f4948;--mat-select-enabled-arrow-color: #3f4948;--mat-select-disabled-arrow-color: rgba(25, 28, 28, .38);--mat-select-focused-arrow-color: #006a6a;--mat-select-invalid-arrow-color: #ba1a1a;--mat-autocomplete-background-color: #eceeed;--mdc-dialog-container-color: #fafdfc;--mdc-dialog-subhead-color: #191c1c;--mdc-dialog-supporting-text-color: #3f4948;--mdc-chip-outline-color: #6f7979;--mdc-chip-disabled-outline-color: rgba(25, 28, 28, .12);--mdc-chip-focus-outline-color: #3f4948;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-chip-elevated-selected-container-color: #cce8e7;--mdc-chip-flat-disabled-selected-container-color: rgba(25, 28, 28, .12);--mdc-chip-focus-state-layer-color: #3f4948;--mdc-chip-hover-state-layer-color: #3f4948;--mdc-chip-selected-hover-state-layer-color: #051f1f;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #051f1f;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #3f4948;--mdc-chip-selected-label-text-color: #051f1f;--mdc-chip-with-icon-icon-color: #3f4948;--mdc-chip-with-icon-disabled-icon-color: #191c1c;--mdc-chip-with-icon-selected-icon-color: #051f1f;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #191c1c;--mdc-chip-with-trailing-icon-trailing-icon-color: #3f4948;--mat-chip-trailing-action-state-layer-color: #3f4948;--mat-chip-selected-trailing-action-state-layer-color: #051f1f;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #191c1c;--mat-chip-selected-trailing-icon-color: #051f1f;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #006a6a;--mdc-switch-selected-handle-color: #ffffff;--mdc-switch-selected-hover-state-layer-color: #006a6a;--mdc-switch-selected-pressed-state-layer-color: #006a6a;--mdc-switch-selected-focus-handle-color: #00fbfb;--mdc-switch-selected-hover-handle-color: #00fbfb;--mdc-switch-selected-pressed-handle-color: #00fbfb;--mdc-switch-selected-focus-track-color: #006a6a;--mdc-switch-selected-hover-track-color: #006a6a;--mdc-switch-selected-pressed-track-color: #006a6a;--mdc-switch-selected-track-color: #006a6a;--mdc-switch-disabled-selected-handle-color: #fafdfc;--mdc-switch-disabled-selected-icon-color: #191c1c;--mdc-switch-disabled-selected-track-color: #191c1c;--mdc-switch-disabled-unselected-handle-color: #191c1c;--mdc-switch-disabled-unselected-icon-color: #dae5e4;--mdc-switch-disabled-unselected-track-color: #dae5e4;--mdc-switch-selected-icon-color: #002020;--mdc-switch-unselected-focus-handle-color: #3f4948;--mdc-switch-unselected-focus-state-layer-color: #191c1c;--mdc-switch-unselected-focus-track-color: #dae5e4;--mdc-switch-unselected-handle-color: #6f7979;--mdc-switch-unselected-hover-handle-color: #3f4948;--mdc-switch-unselected-hover-state-layer-color: #191c1c;--mdc-switch-unselected-hover-track-color: #dae5e4;--mdc-switch-unselected-icon-color: #dae5e4;--mdc-switch-unselected-pressed-handle-color: #3f4948;--mdc-switch-unselected-pressed-state-layer-color: #191c1c;--mdc-switch-unselected-pressed-track-color: #dae5e4;--mdc-switch-unselected-track-color: #dae5e4;--mat-switch-track-outline-color: #6f7979;--mat-switch-disabled-unselected-track-outline-color: #191c1c;--mat-switch-label-text-color: #191c1c;--mdc-radio-disabled-selected-icon-color: #191c1c;--mdc-radio-disabled-unselected-icon-color: #191c1c;--mdc-radio-unselected-hover-icon-color: #191c1c;--mdc-radio-unselected-icon-color: #3f4948;--mdc-radio-unselected-pressed-icon-color: #191c1c;--mdc-radio-selected-focus-icon-color: #006a6a;--mdc-radio-selected-hover-icon-color: #006a6a;--mdc-radio-selected-icon-color: #006a6a;--mdc-radio-selected-pressed-icon-color: #006a6a;--mat-radio-ripple-color: #191c1c;--mat-radio-checked-ripple-color: #006a6a;--mat-radio-disabled-label-color: rgba(25, 28, 28, .38);--mat-radio-label-text-color: #191c1c;--mdc-slider-handle-color: #006a6a;--mdc-slider-focus-handle-color: #006a6a;--mdc-slider-hover-handle-color: #006a6a;--mdc-slider-active-track-color: #006a6a;--mdc-slider-inactive-track-color: #dae5e4;--mdc-slider-with-tick-marks-inactive-container-color: #3f4948;--mdc-slider-with-tick-marks-active-container-color: #ffffff;--mdc-slider-disabled-active-track-color: #191c1c;--mdc-slider-disabled-handle-color: #191c1c;--mdc-slider-disabled-inactive-track-color: #191c1c;--mdc-slider-label-container-color: #006a6a;--mdc-slider-label-label-text-color: #ffffff;--mdc-slider-with-overlap-handle-outline-color: #ffffff;--mdc-slider-with-tick-marks-disabled-container-color: #191c1c;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #006a6a;--mat-slider-hover-state-layer-color: rgba(0, 106, 106, .05);--mat-slider-focus-state-layer-color: rgba(0, 106, 106, .2);--mat-menu-item-label-text-color: #191c1c;--mat-menu-item-icon-color: #3f4948;--mat-menu-item-hover-state-layer-color: rgba(25, 28, 28, .08);--mat-menu-item-focus-state-layer-color: rgba(25, 28, 28, .12);--mat-menu-container-color: #eceeed;--mat-menu-divider-color: #dae5e4;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #00fbfb;--mdc-list-list-item-disabled-state-layer-color: #191c1c;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #191c1c;--mdc-list-list-item-supporting-text-color: #3f4948;--mdc-list-list-item-leading-icon-color: #3f4948;--mdc-list-list-item-trailing-supporting-text-color: #3f4948;--mdc-list-list-item-trailing-icon-color: #3f4948;--mdc-list-list-item-selected-trailing-icon-color: #006a6a;--mdc-list-list-item-disabled-label-text-color: #191c1c;--mdc-list-list-item-disabled-leading-icon-color: #191c1c;--mdc-list-list-item-disabled-trailing-icon-color: #191c1c;--mdc-list-list-item-hover-label-text-color: #191c1c;--mdc-list-list-item-focus-label-text-color: #191c1c;--mdc-list-list-item-hover-state-layer-color: #191c1c;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #191c1c;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #cce8e7;--mat-paginator-container-text-color: #191c1c;--mat-paginator-container-background-color: #fafdfc;--mat-paginator-enabled-icon-color: #3f4948;--mat-paginator-disabled-icon-color: rgba(25, 28, 28, .38);--mdc-tab-indicator-active-indicator-color: #006a6a;--mat-tab-header-divider-color: #dae5e4;--mat-tab-header-pagination-icon-color: #191c1c;--mat-tab-header-inactive-label-text-color: #191c1c;--mat-tab-header-active-label-text-color: #191c1c;--mat-tab-header-active-ripple-color: #191c1c;--mat-tab-header-inactive-ripple-color: #191c1c;--mat-tab-header-inactive-focus-label-text-color: #191c1c;--mat-tab-header-inactive-hover-label-text-color: #191c1c;--mat-tab-header-active-focus-label-text-color: #191c1c;--mat-tab-header-active-hover-label-text-color: #191c1c;--mat-tab-header-active-focus-indicator-color: #006a6a;--mat-tab-header-active-hover-indicator-color: #006a6a;--mdc-checkbox-disabled-selected-checkmark-color: #fafdfc;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(25, 28, 28, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(25, 28, 28, .38);--mdc-checkbox-selected-checkmark-color: #ffffff;--mdc-checkbox-selected-focus-icon-color: #006a6a;--mdc-checkbox-selected-hover-icon-color: #006a6a;--mdc-checkbox-selected-icon-color: #006a6a;--mdc-checkbox-unselected-focus-icon-color: #191c1c;--mdc-checkbox-unselected-hover-icon-color: #191c1c;--mdc-checkbox-unselected-icon-color: #3f4948;--mdc-checkbox-selected-focus-state-layer-color: #006a6a;--mdc-checkbox-selected-hover-state-layer-color: #006a6a;--mdc-checkbox-selected-pressed-state-layer-color: #191c1c;--mdc-checkbox-unselected-focus-state-layer-color: #191c1c;--mdc-checkbox-unselected-hover-state-layer-color: #191c1c;--mdc-checkbox-unselected-pressed-state-layer-color: #006a6a;--mat-checkbox-disabled-label-color: rgba(25, 28, 28, .38);--mat-checkbox-label-text-color: #191c1c;--mdc-text-button-label-text-color: #006a6a;--mdc-text-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-protected-button-container-color: #fafdfc;--mdc-protected-button-label-text-color: #006a6a;--mdc-protected-button-disabled-container-color: rgba(25, 28, 28, .12);--mdc-protected-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #006a6a;--mdc-filled-button-label-text-color: #ffffff;--mdc-filled-button-disabled-container-color: rgba(25, 28, 28, .12);--mdc-filled-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-outlined-button-disabled-outline-color: rgba(25, 28, 28, .12);--mdc-outlined-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-outlined-button-label-text-color: #006a6a;--mdc-outlined-button-outline-color: #6f7979;--mat-text-button-state-layer-color: #006a6a;--mat-text-button-disabled-state-layer-color: #3f4948;--mat-text-button-ripple-color: rgba(0, 106, 106, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #006a6a;--mat-protected-button-disabled-state-layer-color: #3f4948;--mat-protected-button-ripple-color: rgba(0, 106, 106, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #ffffff;--mat-filled-button-disabled-state-layer-color: #3f4948;--mat-filled-button-ripple-color: rgba(255, 255, 255, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #006a6a;--mat-outlined-button-disabled-state-layer-color: #3f4948;--mat-outlined-button-ripple-color: rgba(0, 106, 106, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #3f4948;--mdc-icon-button-disabled-icon-color: rgba(25, 28, 28, .38);--mat-icon-button-state-layer-color: #3f4948;--mat-icon-button-disabled-state-layer-color: #3f4948;--mat-icon-button-ripple-color: rgba(63, 73, 72, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #00fbfb;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #00fbfb;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #002020;--mat-fab-state-layer-color: #002020;--mat-fab-ripple-color: rgba(0, 32, 32, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(25, 28, 28, .12);--mat-fab-disabled-state-foreground-color: rgba(25, 28, 28, .38);--mat-fab-small-foreground-color: #002020;--mat-fab-small-state-layer-color: #002020;--mat-fab-small-ripple-color: rgba(0, 32, 32, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(25, 28, 28, .12);--mat-fab-small-disabled-state-foreground-color: rgba(25, 28, 28, .38);--mdc-snackbar-container-color: #2d3131;--mdc-snackbar-supporting-text-color: #eff1f0;--mat-snack-bar-button-color: #00dddd;--mat-table-background-color: #fafdfc;--mat-table-header-headline-color: #191c1c;--mat-table-row-item-label-text-color: #191c1c;--mat-table-row-item-outline-color: #bec9c8;--mdc-circular-progress-active-indicator-color: #006a6a;--mat-badge-background-color: #ba1a1a;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: rgba(186, 26, 26, .38);--mat-badge-disabled-state-text-color: #ffffff;--mat-bottom-sheet-container-text-color: #191c1c;--mat-bottom-sheet-container-background-color: #f2f4f3;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #191c1c;--mat-standard-button-toggle-state-layer-color: #191c1c;--mat-standard-button-toggle-selected-state-background-color: #cce8e7;--mat-standard-button-toggle-selected-state-text-color: #051f1f;--mat-standard-button-toggle-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(25, 28, 28, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(25, 28, 28, .12);--mat-standard-button-toggle-divider-color: #6f7979;--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #006a6a;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #006a6a;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 28, 28, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 28, 28, .08);--mat-datepicker-toggle-active-state-icon-color: #3f4948;--mat-datepicker-calendar-date-in-range-state-background-color: #00fbfb;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #ffdcc7;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #cce8e7;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #4a6363;--mat-datepicker-toggle-icon-color: #3f4948;--mat-datepicker-calendar-body-label-text-color: #191c1c;--mat-datepicker-calendar-period-button-text-color: #3f4948;--mat-datepicker-calendar-period-button-icon-color: #3f4948;--mat-datepicker-calendar-navigation-button-icon-color: #3f4948;--mat-datepicker-calendar-header-text-color: #3f4948;--mat-datepicker-calendar-date-today-outline-color: #006a6a;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-date-text-color: #191c1c;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #006a6a;--mat-datepicker-range-input-separator-color: #191c1c;--mat-datepicker-range-input-disabled-state-separator-color: rgba(25, 28, 28, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-container-background-color: #e6e9e8;--mat-datepicker-calendar-container-text-color: #191c1c;--mat-divider-color: #bec9c8;--mat-expansion-container-background-color: #fafdfc;--mat-expansion-container-text-color: #191c1c;--mat-expansion-actions-divider-color: #bec9c8;--mat-expansion-header-hover-state-layer-color: rgba(25, 28, 28, .08);--mat-expansion-header-focus-state-layer-color: rgba(25, 28, 28, .12);--mat-expansion-header-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-expansion-header-text-color: #191c1c;--mat-expansion-header-description-color: #3f4948;--mat-expansion-header-indicator-color: #3f4948;--mat-sidenav-container-background-color: #fafdfc;--mat-sidenav-container-text-color: #3f4948;--mat-sidenav-content-background-color: #fafdfc;--mat-sidenav-content-text-color: #191c1c;--mat-sidenav-scrim-color: rgba(41, 50, 50, .4);--mat-stepper-header-icon-foreground-color: #fafdfc;--mat-stepper-header-selected-state-icon-background-color: #006a6a;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #006a6a;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #fafdfc;--mat-stepper-line-color: #bec9c8;--mat-stepper-header-hover-state-layer-color: rgba(45, 49, 49, .08);--mat-stepper-header-focus-state-layer-color: rgba(45, 49, 49, .12);--mat-stepper-header-label-text-color: #3f4948;--mat-stepper-header-optional-label-text-color: #3f4948;--mat-stepper-header-selected-state-label-text-color: #3f4948;--mat-stepper-header-error-state-label-text-color: #ba1a1a;--mat-stepper-header-icon-background-color: #3f4948;--mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;--mat-sort-arrow-color: #191c1c;--mat-toolbar-container-background-color: #fafdfc;--mat-toolbar-container-text-color: #191c1c;--mat-tree-container-background-color: #fafdfc;--mat-tree-node-text-color: #191c1c}.survey-theme-cyan-orange-light .mat-display-large,.survey-theme-cyan-orange-light .mat-typography .mat-display-large,.survey-theme-cyan-orange-light .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-display-medium,.survey-theme-cyan-orange-light .mat-typography .mat-display-medium,.survey-theme-cyan-orange-light .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-display-small,.survey-theme-cyan-orange-light .mat-typography .mat-display-small,.survey-theme-cyan-orange-light .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-headline-large,.survey-theme-cyan-orange-light .mat-typography .mat-headline-large,.survey-theme-cyan-orange-light .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-headline-medium,.survey-theme-cyan-orange-light .mat-typography .mat-headline-medium,.survey-theme-cyan-orange-light .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-headline-small,.survey-theme-cyan-orange-light .mat-typography .mat-headline-small,.survey-theme-cyan-orange-light .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-title-large,.survey-theme-cyan-orange-light .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-cyan-orange-light .mat-title-medium,.survey-theme-cyan-orange-light .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-cyan-orange-light .mat-title-small,.survey-theme-cyan-orange-light .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-light .mat-body-large,.survey-theme-cyan-orange-light .mat-typography .mat-body-large,.survey-theme-cyan-orange-light .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-light .mat-body-large p,.survey-theme-cyan-orange-light .mat-typography .mat-body-large p,.survey-theme-cyan-orange-light .mat-typography p{margin:0 0 .75em}.survey-theme-cyan-orange-light .mat-body-medium,.survey-theme-cyan-orange-light .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-cyan-orange-light .mat-body-small,.survey-theme-cyan-orange-light .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-cyan-orange-light .mat-label-large,.survey-theme-cyan-orange-light .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-light .mat-label-medium,.survey-theme-cyan-orange-light .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-light .mat-label-small,.survey-theme-cyan-orange-light .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-light.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-cyan-orange-light ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-cyan-orange-light.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#ffdcc7}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#311300}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#ffdcc7}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#311300}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#cce8e7;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-cyan-orange-light.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-cyan-orange-dark{--mat-app-background-color: #191c1c;--mat-app-text-color: #e0e3e2;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(224, 227, 226, .1);--mat-option-selected-state-label-text-color: #cce8e7;--mat-option-label-text-color: #e0e3e2;--mat-option-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-option-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-option-selected-state-layer-color: #324b4b;--mat-optgroup-label-text-color: #bec9c8;--mat-full-pseudo-checkbox-selected-icon-color: #00dddd;--mat-full-pseudo-checkbox-selected-checkmark-color: #003737;--mat-full-pseudo-checkbox-unselected-icon-color: #bec9c8;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #191c1c;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(224, 227, 226, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(224, 227, 226, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #00dddd;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(224, 227, 226, .38);--mdc-elevated-card-container-color: #191c1c;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #191c1c;--mdc-outlined-card-outline-color: #3f4948;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #e0e3e2;--mdc-linear-progress-active-indicator-color: #00dddd;--mdc-linear-progress-track-color: #3f4948;--mdc-plain-tooltip-container-color: #e0e3e2;--mdc-plain-tooltip-supporting-text-color: #2d3131;--mdc-filled-text-field-caret-color: #00dddd;--mdc-filled-text-field-focus-active-indicator-color: #00dddd;--mdc-filled-text-field-focus-label-text-color: #00dddd;--mdc-filled-text-field-container-color: #3f4948;--mdc-filled-text-field-disabled-container-color: rgba(224, 227, 226, .04);--mdc-filled-text-field-label-text-color: #bec9c8;--mdc-filled-text-field-hover-label-text-color: #bec9c8;--mdc-filled-text-field-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-filled-text-field-input-text-color: #e0e3e2;--mdc-filled-text-field-disabled-input-text-color: rgba(224, 227, 226, .38);--mdc-filled-text-field-input-text-placeholder-color: #bec9c8;--mdc-filled-text-field-error-hover-label-text-color: #ffdad6;--mdc-filled-text-field-error-focus-label-text-color: #ffb4ab;--mdc-filled-text-field-error-label-text-color: #ffb4ab;--mdc-filled-text-field-active-indicator-color: #bec9c8;--mdc-filled-text-field-disabled-active-indicator-color: rgba(224, 227, 226, .38);--mdc-filled-text-field-hover-active-indicator-color: #e0e3e2;--mdc-filled-text-field-error-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-focus-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-hover-active-indicator-color: #ffdad6;--mdc-outlined-text-field-caret-color: #00dddd;--mdc-outlined-text-field-focus-outline-color: #00dddd;--mdc-outlined-text-field-focus-label-text-color: #00dddd;--mdc-outlined-text-field-label-text-color: #bec9c8;--mdc-outlined-text-field-hover-label-text-color: #e0e3e2;--mdc-outlined-text-field-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-outlined-text-field-input-text-color: #e0e3e2;--mdc-outlined-text-field-disabled-input-text-color: rgba(224, 227, 226, .38);--mdc-outlined-text-field-input-text-placeholder-color: #bec9c8;--mdc-outlined-text-field-error-focus-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-hover-label-text-color: #ffdad6;--mdc-outlined-text-field-outline-color: #889392;--mdc-outlined-text-field-disabled-outline-color: rgba(224, 227, 226, .12);--mdc-outlined-text-field-hover-outline-color: #e0e3e2;--mdc-outlined-text-field-error-focus-outline-color: #ffb4ab;--mdc-outlined-text-field-error-hover-outline-color: #ffdad6;--mdc-outlined-text-field-error-outline-color: #ffb4ab;--mat-form-field-focus-select-arrow-color: #00dddd;--mat-form-field-disabled-input-text-placeholder-color: rgba(224, 227, 226, .38);--mat-form-field-state-layer-color: #e0e3e2;--mat-form-field-error-text-color: #ffb4ab;--mat-form-field-select-option-text-color: #191c1c;--mat-form-field-select-disabled-option-text-color: rgba(25, 28, 28, .38);--mat-form-field-leading-icon-color: #bec9c8;--mat-form-field-disabled-leading-icon-color: rgba(224, 227, 226, .38);--mat-form-field-trailing-icon-color: #bec9c8;--mat-form-field-disabled-trailing-icon-color: rgba(224, 227, 226, .38);--mat-form-field-error-focus-trailing-icon-color: #ffb4ab;--mat-form-field-error-hover-trailing-icon-color: #ffdad6;--mat-form-field-error-trailing-icon-color: #ffb4ab;--mat-form-field-enabled-select-arrow-color: #bec9c8;--mat-form-field-disabled-select-arrow-color: rgba(224, 227, 226, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #1d2020;--mat-select-enabled-trigger-text-color: #e0e3e2;--mat-select-disabled-trigger-text-color: rgba(224, 227, 226, .38);--mat-select-placeholder-text-color: #bec9c8;--mat-select-enabled-arrow-color: #bec9c8;--mat-select-disabled-arrow-color: rgba(224, 227, 226, .38);--mat-select-focused-arrow-color: #00dddd;--mat-select-invalid-arrow-color: #ffb4ab;--mat-autocomplete-background-color: #1d2020;--mdc-dialog-container-color: #191c1c;--mdc-dialog-subhead-color: #e0e3e2;--mdc-dialog-supporting-text-color: #bec9c8;--mdc-chip-outline-color: #889392;--mdc-chip-disabled-outline-color: rgba(224, 227, 226, .12);--mdc-chip-focus-outline-color: #bec9c8;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-chip-elevated-selected-container-color: #324b4b;--mdc-chip-flat-disabled-selected-container-color: rgba(224, 227, 226, .12);--mdc-chip-focus-state-layer-color: #bec9c8;--mdc-chip-hover-state-layer-color: #bec9c8;--mdc-chip-selected-hover-state-layer-color: #cce8e7;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #cce8e7;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #bec9c8;--mdc-chip-selected-label-text-color: #cce8e7;--mdc-chip-with-icon-icon-color: #bec9c8;--mdc-chip-with-icon-disabled-icon-color: #e0e3e2;--mdc-chip-with-icon-selected-icon-color: #cce8e7;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #e0e3e2;--mdc-chip-with-trailing-icon-trailing-icon-color: #bec9c8;--mat-chip-trailing-action-state-layer-color: #bec9c8;--mat-chip-selected-trailing-action-state-layer-color: #cce8e7;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #e0e3e2;--mat-chip-selected-trailing-icon-color: #cce8e7;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #00dddd;--mdc-switch-selected-handle-color: #003737;--mdc-switch-selected-hover-state-layer-color: #00dddd;--mdc-switch-selected-pressed-state-layer-color: #00dddd;--mdc-switch-selected-focus-handle-color: #004f4f;--mdc-switch-selected-hover-handle-color: #004f4f;--mdc-switch-selected-pressed-handle-color: #004f4f;--mdc-switch-selected-focus-track-color: #00dddd;--mdc-switch-selected-hover-track-color: #00dddd;--mdc-switch-selected-pressed-track-color: #00dddd;--mdc-switch-selected-track-color: #00dddd;--mdc-switch-disabled-selected-handle-color: #191c1c;--mdc-switch-disabled-selected-icon-color: #e0e3e2;--mdc-switch-disabled-selected-track-color: #e0e3e2;--mdc-switch-disabled-unselected-handle-color: #e0e3e2;--mdc-switch-disabled-unselected-icon-color: #3f4948;--mdc-switch-disabled-unselected-track-color: #3f4948;--mdc-switch-selected-icon-color: #00fbfb;--mdc-switch-unselected-focus-handle-color: #bec9c8;--mdc-switch-unselected-focus-state-layer-color: #e0e3e2;--mdc-switch-unselected-focus-track-color: #3f4948;--mdc-switch-unselected-handle-color: #889392;--mdc-switch-unselected-hover-handle-color: #bec9c8;--mdc-switch-unselected-hover-state-layer-color: #e0e3e2;--mdc-switch-unselected-hover-track-color: #3f4948;--mdc-switch-unselected-icon-color: #3f4948;--mdc-switch-unselected-pressed-handle-color: #bec9c8;--mdc-switch-unselected-pressed-state-layer-color: #e0e3e2;--mdc-switch-unselected-pressed-track-color: #3f4948;--mdc-switch-unselected-track-color: #3f4948;--mat-switch-track-outline-color: #889392;--mat-switch-disabled-unselected-track-outline-color: #e0e3e2;--mat-switch-label-text-color: #e0e3e2;--mdc-radio-disabled-selected-icon-color: #e0e3e2;--mdc-radio-disabled-unselected-icon-color: #e0e3e2;--mdc-radio-unselected-hover-icon-color: #e0e3e2;--mdc-radio-unselected-icon-color: #bec9c8;--mdc-radio-unselected-pressed-icon-color: #e0e3e2;--mdc-radio-selected-focus-icon-color: #00dddd;--mdc-radio-selected-hover-icon-color: #00dddd;--mdc-radio-selected-icon-color: #00dddd;--mdc-radio-selected-pressed-icon-color: #00dddd;--mat-radio-ripple-color: #e0e3e2;--mat-radio-checked-ripple-color: #00dddd;--mat-radio-disabled-label-color: rgba(224, 227, 226, .38);--mat-radio-label-text-color: #e0e3e2;--mdc-slider-handle-color: #00dddd;--mdc-slider-focus-handle-color: #00dddd;--mdc-slider-hover-handle-color: #00dddd;--mdc-slider-active-track-color: #00dddd;--mdc-slider-inactive-track-color: #3f4948;--mdc-slider-with-tick-marks-inactive-container-color: #bec9c8;--mdc-slider-with-tick-marks-active-container-color: #003737;--mdc-slider-disabled-active-track-color: #e0e3e2;--mdc-slider-disabled-handle-color: #e0e3e2;--mdc-slider-disabled-inactive-track-color: #e0e3e2;--mdc-slider-label-container-color: #00dddd;--mdc-slider-label-label-text-color: #003737;--mdc-slider-with-overlap-handle-outline-color: #003737;--mdc-slider-with-tick-marks-disabled-container-color: #e0e3e2;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #00dddd;--mat-slider-hover-state-layer-color: rgba(0, 221, 221, .05);--mat-slider-focus-state-layer-color: rgba(0, 221, 221, .2);--mat-menu-item-label-text-color: #e0e3e2;--mat-menu-item-icon-color: #bec9c8;--mat-menu-item-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-menu-item-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-menu-container-color: #1d2020;--mat-menu-divider-color: #3f4948;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #004f4f;--mdc-list-list-item-disabled-state-layer-color: #e0e3e2;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #e0e3e2;--mdc-list-list-item-supporting-text-color: #bec9c8;--mdc-list-list-item-leading-icon-color: #bec9c8;--mdc-list-list-item-trailing-supporting-text-color: #bec9c8;--mdc-list-list-item-trailing-icon-color: #bec9c8;--mdc-list-list-item-selected-trailing-icon-color: #00dddd;--mdc-list-list-item-disabled-label-text-color: #e0e3e2;--mdc-list-list-item-disabled-leading-icon-color: #e0e3e2;--mdc-list-list-item-disabled-trailing-icon-color: #e0e3e2;--mdc-list-list-item-hover-label-text-color: #e0e3e2;--mdc-list-list-item-focus-label-text-color: #e0e3e2;--mdc-list-list-item-hover-state-layer-color: #e0e3e2;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #e0e3e2;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #324b4b;--mat-paginator-container-text-color: #e0e3e2;--mat-paginator-container-background-color: #191c1c;--mat-paginator-enabled-icon-color: #bec9c8;--mat-paginator-disabled-icon-color: rgba(224, 227, 226, .38);--mdc-tab-indicator-active-indicator-color: #00dddd;--mat-tab-header-divider-color: #3f4948;--mat-tab-header-pagination-icon-color: #e0e3e2;--mat-tab-header-inactive-label-text-color: #e0e3e2;--mat-tab-header-active-label-text-color: #e0e3e2;--mat-tab-header-active-ripple-color: #e0e3e2;--mat-tab-header-inactive-ripple-color: #e0e3e2;--mat-tab-header-inactive-focus-label-text-color: #e0e3e2;--mat-tab-header-inactive-hover-label-text-color: #e0e3e2;--mat-tab-header-active-focus-label-text-color: #e0e3e2;--mat-tab-header-active-hover-label-text-color: #e0e3e2;--mat-tab-header-active-focus-indicator-color: #00dddd;--mat-tab-header-active-hover-indicator-color: #00dddd;--mdc-checkbox-disabled-selected-checkmark-color: #191c1c;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(224, 227, 226, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(224, 227, 226, .38);--mdc-checkbox-selected-checkmark-color: #003737;--mdc-checkbox-selected-focus-icon-color: #00dddd;--mdc-checkbox-selected-hover-icon-color: #00dddd;--mdc-checkbox-selected-icon-color: #00dddd;--mdc-checkbox-unselected-focus-icon-color: #e0e3e2;--mdc-checkbox-unselected-hover-icon-color: #e0e3e2;--mdc-checkbox-unselected-icon-color: #bec9c8;--mdc-checkbox-selected-focus-state-layer-color: #00dddd;--mdc-checkbox-selected-hover-state-layer-color: #00dddd;--mdc-checkbox-selected-pressed-state-layer-color: #e0e3e2;--mdc-checkbox-unselected-focus-state-layer-color: #e0e3e2;--mdc-checkbox-unselected-hover-state-layer-color: #e0e3e2;--mdc-checkbox-unselected-pressed-state-layer-color: #00dddd;--mat-checkbox-disabled-label-color: rgba(224, 227, 226, .38);--mat-checkbox-label-text-color: #e0e3e2;--mdc-text-button-label-text-color: #00dddd;--mdc-text-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-protected-button-container-color: #191c1c;--mdc-protected-button-label-text-color: #00dddd;--mdc-protected-button-disabled-container-color: rgba(224, 227, 226, .12);--mdc-protected-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #00dddd;--mdc-filled-button-label-text-color: #003737;--mdc-filled-button-disabled-container-color: rgba(224, 227, 226, .12);--mdc-filled-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-outlined-button-disabled-outline-color: rgba(224, 227, 226, .12);--mdc-outlined-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-outlined-button-label-text-color: #00dddd;--mdc-outlined-button-outline-color: #889392;--mat-text-button-state-layer-color: #00dddd;--mat-text-button-disabled-state-layer-color: #bec9c8;--mat-text-button-ripple-color: rgba(0, 221, 221, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #00dddd;--mat-protected-button-disabled-state-layer-color: #bec9c8;--mat-protected-button-ripple-color: rgba(0, 221, 221, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #003737;--mat-filled-button-disabled-state-layer-color: #bec9c8;--mat-filled-button-ripple-color: rgba(0, 55, 55, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #00dddd;--mat-outlined-button-disabled-state-layer-color: #bec9c8;--mat-outlined-button-ripple-color: rgba(0, 221, 221, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #bec9c8;--mdc-icon-button-disabled-icon-color: rgba(224, 227, 226, .38);--mat-icon-button-state-layer-color: #bec9c8;--mat-icon-button-disabled-state-layer-color: #bec9c8;--mat-icon-button-ripple-color: rgba(190, 201, 200, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #004f4f;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #004f4f;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #00fbfb;--mat-fab-state-layer-color: #00fbfb;--mat-fab-ripple-color: rgba(0, 251, 251, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(224, 227, 226, .12);--mat-fab-disabled-state-foreground-color: rgba(224, 227, 226, .38);--mat-fab-small-foreground-color: #00fbfb;--mat-fab-small-state-layer-color: #00fbfb;--mat-fab-small-ripple-color: rgba(0, 251, 251, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(224, 227, 226, .12);--mat-fab-small-disabled-state-foreground-color: rgba(224, 227, 226, .38);--mdc-snackbar-container-color: #e0e3e2;--mdc-snackbar-supporting-text-color: #2d3131;--mat-snack-bar-button-color: #006a6a;--mat-table-background-color: #191c1c;--mat-table-header-headline-color: #e0e3e2;--mat-table-row-item-label-text-color: #e0e3e2;--mat-table-row-item-outline-color: #3f4948;--mdc-circular-progress-active-indicator-color: #00dddd;--mat-badge-background-color: #ffb4ab;--mat-badge-text-color: #690005;--mat-badge-disabled-state-background-color: rgba(255, 180, 171, .38);--mat-badge-disabled-state-text-color: #690005;--mat-bottom-sheet-container-text-color: #e0e3e2;--mat-bottom-sheet-container-background-color: #191c1c;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #e0e3e2;--mat-standard-button-toggle-state-layer-color: #e0e3e2;--mat-standard-button-toggle-selected-state-background-color: #324b4b;--mat-standard-button-toggle-selected-state-text-color: #cce8e7;--mat-standard-button-toggle-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(224, 227, 226, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(224, 227, 226, .12);--mat-standard-button-toggle-divider-color: #889392;--mat-datepicker-calendar-date-selected-state-text-color: #003737;--mat-datepicker-calendar-date-selected-state-background-color: #00dddd;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #00dddd;--mat-datepicker-calendar-date-focus-state-background-color: rgba(224, 227, 226, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(224, 227, 226, .08);--mat-datepicker-toggle-active-state-icon-color: #bec9c8;--mat-datepicker-calendar-date-in-range-state-background-color: #004f4f;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #723600;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #324b4b;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #b0cccb;--mat-datepicker-toggle-icon-color: #bec9c8;--mat-datepicker-calendar-body-label-text-color: #e0e3e2;--mat-datepicker-calendar-period-button-text-color: #bec9c8;--mat-datepicker-calendar-period-button-icon-color: #bec9c8;--mat-datepicker-calendar-navigation-button-icon-color: #bec9c8;--mat-datepicker-calendar-header-text-color: #bec9c8;--mat-datepicker-calendar-date-today-outline-color: #00dddd;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-date-text-color: #e0e3e2;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #00dddd;--mat-datepicker-range-input-separator-color: #e0e3e2;--mat-datepicker-range-input-disabled-state-separator-color: rgba(224, 227, 226, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-container-background-color: #272b2b;--mat-datepicker-calendar-container-text-color: #e0e3e2;--mat-divider-color: #3f4948;--mat-expansion-container-background-color: #191c1c;--mat-expansion-container-text-color: #e0e3e2;--mat-expansion-actions-divider-color: #3f4948;--mat-expansion-header-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-expansion-header-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-expansion-header-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-expansion-header-text-color: #e0e3e2;--mat-expansion-header-description-color: #bec9c8;--mat-expansion-header-indicator-color: #bec9c8;--mat-sidenav-container-background-color: #191c1c;--mat-sidenav-container-text-color: #bec9c8;--mat-sidenav-content-background-color: #191c1c;--mat-sidenav-content-text-color: #e0e3e2;--mat-sidenav-scrim-color: rgba(41, 50, 50, .4);--mat-stepper-header-icon-foreground-color: #191c1c;--mat-stepper-header-selected-state-icon-background-color: #00dddd;--mat-stepper-header-selected-state-icon-foreground-color: #003737;--mat-stepper-header-edit-state-icon-background-color: #00dddd;--mat-stepper-header-edit-state-icon-foreground-color: #003737;--mat-stepper-container-color: #191c1c;--mat-stepper-line-color: #3f4948;--mat-stepper-header-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-stepper-header-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-stepper-header-label-text-color: #bec9c8;--mat-stepper-header-optional-label-text-color: #bec9c8;--mat-stepper-header-selected-state-label-text-color: #bec9c8;--mat-stepper-header-error-state-label-text-color: #ffb4ab;--mat-stepper-header-icon-background-color: #bec9c8;--mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;--mat-sort-arrow-color: #e0e3e2;--mat-toolbar-container-background-color: #191c1c;--mat-toolbar-container-text-color: #e0e3e2;--mat-tree-container-background-color: #191c1c;--mat-tree-node-text-color: #e0e3e2}.survey-theme-cyan-orange-dark .mat-display-large,.survey-theme-cyan-orange-dark .mat-typography .mat-display-large,.survey-theme-cyan-orange-dark .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-display-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-display-medium,.survey-theme-cyan-orange-dark .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-display-small,.survey-theme-cyan-orange-dark .mat-typography .mat-display-small,.survey-theme-cyan-orange-dark .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-headline-large,.survey-theme-cyan-orange-dark .mat-typography .mat-headline-large,.survey-theme-cyan-orange-dark .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-headline-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-headline-medium,.survey-theme-cyan-orange-dark .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-headline-small,.survey-theme-cyan-orange-dark .mat-typography .mat-headline-small,.survey-theme-cyan-orange-dark .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-title-large,.survey-theme-cyan-orange-dark .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-cyan-orange-dark .mat-title-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-cyan-orange-dark .mat-title-small,.survey-theme-cyan-orange-dark .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-dark .mat-body-large,.survey-theme-cyan-orange-dark .mat-typography .mat-body-large,.survey-theme-cyan-orange-dark .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-dark .mat-body-large p,.survey-theme-cyan-orange-dark .mat-typography .mat-body-large p,.survey-theme-cyan-orange-dark .mat-typography p{margin:0 0 .75em}.survey-theme-cyan-orange-dark .mat-body-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-cyan-orange-dark .mat-body-small,.survey-theme-cyan-orange-dark .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-cyan-orange-dark .mat-label-large,.survey-theme-cyan-orange-dark .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-dark .mat-label-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-dark .mat-label-small,.survey-theme-cyan-orange-dark .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-dark.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-cyan-orange-dark ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-cyan-orange-dark.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#723600}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#ffdcc7}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#723600}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#ffdcc7}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#324b4b;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-cyan-orange-dark.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-rose-red-light{--mat-app-background-color: #fffbff;--mat-app-text-color: #201a1b;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(32, 26, 27, .1);--mat-option-selected-state-label-text-color: #2b151b;--mat-option-label-text-color: #201a1b;--mat-option-hover-state-layer-color: rgba(32, 26, 27, .08);--mat-option-focus-state-layer-color: rgba(32, 26, 27, .12);--mat-option-selected-state-layer-color: #ffd9e1;--mat-optgroup-label-text-color: #514346;--mat-full-pseudo-checkbox-selected-icon-color: #ba005c;--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;--mat-full-pseudo-checkbox-unselected-icon-color: #514346;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fffbff;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(32, 26, 27, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(32, 26, 27, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ba005c;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(32, 26, 27, .38);--mdc-elevated-card-container-color: #fffbff;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #fffbff;--mdc-outlined-card-outline-color: #d6c2c5;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #201a1b;--mdc-linear-progress-active-indicator-color: #ba005c;--mdc-linear-progress-track-color: #f3dde1;--mdc-plain-tooltip-container-color: #352f30;--mdc-plain-tooltip-supporting-text-color: #faeeef;--mdc-filled-text-field-caret-color: #ba005c;--mdc-filled-text-field-focus-active-indicator-color: #ba005c;--mdc-filled-text-field-focus-label-text-color: #ba005c;--mdc-filled-text-field-container-color: #f3dde1;--mdc-filled-text-field-disabled-container-color: rgba(32, 26, 27, .04);--mdc-filled-text-field-label-text-color: #514346;--mdc-filled-text-field-hover-label-text-color: #514346;--mdc-filled-text-field-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-filled-text-field-input-text-color: #201a1b;--mdc-filled-text-field-disabled-input-text-color: rgba(32, 26, 27, .38);--mdc-filled-text-field-input-text-placeholder-color: #514346;--mdc-filled-text-field-error-hover-label-text-color: #410002;--mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;--mdc-filled-text-field-error-label-text-color: #ba1a1a;--mdc-filled-text-field-active-indicator-color: #514346;--mdc-filled-text-field-disabled-active-indicator-color: rgba(32, 26, 27, .38);--mdc-filled-text-field-hover-active-indicator-color: #201a1b;--mdc-filled-text-field-error-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-hover-active-indicator-color: #410002;--mdc-outlined-text-field-caret-color: #ba005c;--mdc-outlined-text-field-focus-outline-color: #ba005c;--mdc-outlined-text-field-focus-label-text-color: #ba005c;--mdc-outlined-text-field-label-text-color: #514346;--mdc-outlined-text-field-hover-label-text-color: #201a1b;--mdc-outlined-text-field-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-outlined-text-field-input-text-color: #201a1b;--mdc-outlined-text-field-disabled-input-text-color: rgba(32, 26, 27, .38);--mdc-outlined-text-field-input-text-placeholder-color: #514346;--mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-hover-label-text-color: #410002;--mdc-outlined-text-field-outline-color: #847376;--mdc-outlined-text-field-disabled-outline-color: rgba(32, 26, 27, .12);--mdc-outlined-text-field-hover-outline-color: #201a1b;--mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;--mdc-outlined-text-field-error-hover-outline-color: #410002;--mdc-outlined-text-field-error-outline-color: #ba1a1a;--mat-form-field-focus-select-arrow-color: #ba005c;--mat-form-field-disabled-input-text-placeholder-color: rgba(32, 26, 27, .38);--mat-form-field-state-layer-color: #201a1b;--mat-form-field-error-text-color: #ba1a1a;--mat-form-field-select-option-text-color: #201a1b;--mat-form-field-select-disabled-option-text-color: rgba(32, 26, 27, .38);--mat-form-field-leading-icon-color: #514346;--mat-form-field-disabled-leading-icon-color: rgba(32, 26, 27, .38);--mat-form-field-trailing-icon-color: #514346;--mat-form-field-disabled-trailing-icon-color: rgba(32, 26, 27, .38);--mat-form-field-error-focus-trailing-icon-color: #ba1a1a;--mat-form-field-error-hover-trailing-icon-color: #410002;--mat-form-field-error-trailing-icon-color: #ba1a1a;--mat-form-field-enabled-select-arrow-color: #514346;--mat-form-field-disabled-select-arrow-color: rgba(32, 26, 27, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #f7ebec;--mat-select-enabled-trigger-text-color: #201a1b;--mat-select-disabled-trigger-text-color: rgba(32, 26, 27, .38);--mat-select-placeholder-text-color: #514346;--mat-select-enabled-arrow-color: #514346;--mat-select-disabled-arrow-color: rgba(32, 26, 27, .38);--mat-select-focused-arrow-color: #ba005c;--mat-select-invalid-arrow-color: #ba1a1a;--mat-autocomplete-background-color: #f7ebec;--mdc-dialog-container-color: #fffbff;--mdc-dialog-subhead-color: #201a1b;--mdc-dialog-supporting-text-color: #514346;--mdc-chip-outline-color: #847376;--mdc-chip-disabled-outline-color: rgba(32, 26, 27, .12);--mdc-chip-focus-outline-color: #514346;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-chip-elevated-selected-container-color: #ffd9e1;--mdc-chip-flat-disabled-selected-container-color: rgba(32, 26, 27, .12);--mdc-chip-focus-state-layer-color: #514346;--mdc-chip-hover-state-layer-color: #514346;--mdc-chip-selected-hover-state-layer-color: #2b151b;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #2b151b;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #514346;--mdc-chip-selected-label-text-color: #2b151b;--mdc-chip-with-icon-icon-color: #514346;--mdc-chip-with-icon-disabled-icon-color: #201a1b;--mdc-chip-with-icon-selected-icon-color: #2b151b;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #201a1b;--mdc-chip-with-trailing-icon-trailing-icon-color: #514346;--mat-chip-trailing-action-state-layer-color: #514346;--mat-chip-selected-trailing-action-state-layer-color: #2b151b;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #201a1b;--mat-chip-selected-trailing-icon-color: #2b151b;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #ba005c;--mdc-switch-selected-handle-color: #ffffff;--mdc-switch-selected-hover-state-layer-color: #ba005c;--mdc-switch-selected-pressed-state-layer-color: #ba005c;--mdc-switch-selected-focus-handle-color: #ffd9e1;--mdc-switch-selected-hover-handle-color: #ffd9e1;--mdc-switch-selected-pressed-handle-color: #ffd9e1;--mdc-switch-selected-focus-track-color: #ba005c;--mdc-switch-selected-hover-track-color: #ba005c;--mdc-switch-selected-pressed-track-color: #ba005c;--mdc-switch-selected-track-color: #ba005c;--mdc-switch-disabled-selected-handle-color: #fffbff;--mdc-switch-disabled-selected-icon-color: #201a1b;--mdc-switch-disabled-selected-track-color: #201a1b;--mdc-switch-disabled-unselected-handle-color: #201a1b;--mdc-switch-disabled-unselected-icon-color: #f3dde1;--mdc-switch-disabled-unselected-track-color: #f3dde1;--mdc-switch-selected-icon-color: #3f001b;--mdc-switch-unselected-focus-handle-color: #514346;--mdc-switch-unselected-focus-state-layer-color: #201a1b;--mdc-switch-unselected-focus-track-color: #f3dde1;--mdc-switch-unselected-handle-color: #847376;--mdc-switch-unselected-hover-handle-color: #514346;--mdc-switch-unselected-hover-state-layer-color: #201a1b;--mdc-switch-unselected-hover-track-color: #f3dde1;--mdc-switch-unselected-icon-color: #f3dde1;--mdc-switch-unselected-pressed-handle-color: #514346;--mdc-switch-unselected-pressed-state-layer-color: #201a1b;--mdc-switch-unselected-pressed-track-color: #f3dde1;--mdc-switch-unselected-track-color: #f3dde1;--mat-switch-track-outline-color: #847376;--mat-switch-disabled-unselected-track-outline-color: #201a1b;--mat-switch-label-text-color: #201a1b;--mdc-radio-disabled-selected-icon-color: #201a1b;--mdc-radio-disabled-unselected-icon-color: #201a1b;--mdc-radio-unselected-hover-icon-color: #201a1b;--mdc-radio-unselected-icon-color: #514346;--mdc-radio-unselected-pressed-icon-color: #201a1b;--mdc-radio-selected-focus-icon-color: #ba005c;--mdc-radio-selected-hover-icon-color: #ba005c;--mdc-radio-selected-icon-color: #ba005c;--mdc-radio-selected-pressed-icon-color: #ba005c;--mat-radio-ripple-color: #201a1b;--mat-radio-checked-ripple-color: #ba005c;--mat-radio-disabled-label-color: rgba(32, 26, 27, .38);--mat-radio-label-text-color: #201a1b;--mdc-slider-handle-color: #ba005c;--mdc-slider-focus-handle-color: #ba005c;--mdc-slider-hover-handle-color: #ba005c;--mdc-slider-active-track-color: #ba005c;--mdc-slider-inactive-track-color: #f3dde1;--mdc-slider-with-tick-marks-inactive-container-color: #514346;--mdc-slider-with-tick-marks-active-container-color: #ffffff;--mdc-slider-disabled-active-track-color: #201a1b;--mdc-slider-disabled-handle-color: #201a1b;--mdc-slider-disabled-inactive-track-color: #201a1b;--mdc-slider-label-container-color: #ba005c;--mdc-slider-label-label-text-color: #ffffff;--mdc-slider-with-overlap-handle-outline-color: #ffffff;--mdc-slider-with-tick-marks-disabled-container-color: #201a1b;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #ba005c;--mat-slider-hover-state-layer-color: rgba(186, 0, 92, .05);--mat-slider-focus-state-layer-color: rgba(186, 0, 92, .2);--mat-menu-item-label-text-color: #201a1b;--mat-menu-item-icon-color: #514346;--mat-menu-item-hover-state-layer-color: rgba(32, 26, 27, .08);--mat-menu-item-focus-state-layer-color: rgba(32, 26, 27, .12);--mat-menu-container-color: #f7ebec;--mat-menu-divider-color: #f3dde1;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #ffd9e1;--mdc-list-list-item-disabled-state-layer-color: #201a1b;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #201a1b;--mdc-list-list-item-supporting-text-color: #514346;--mdc-list-list-item-leading-icon-color: #514346;--mdc-list-list-item-trailing-supporting-text-color: #514346;--mdc-list-list-item-trailing-icon-color: #514346;--mdc-list-list-item-selected-trailing-icon-color: #ba005c;--mdc-list-list-item-disabled-label-text-color: #201a1b;--mdc-list-list-item-disabled-leading-icon-color: #201a1b;--mdc-list-list-item-disabled-trailing-icon-color: #201a1b;--mdc-list-list-item-hover-label-text-color: #201a1b;--mdc-list-list-item-focus-label-text-color: #201a1b;--mdc-list-list-item-hover-state-layer-color: #201a1b;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #201a1b;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #ffd9e1;--mat-paginator-container-text-color: #201a1b;--mat-paginator-container-background-color: #fffbff;--mat-paginator-enabled-icon-color: #514346;--mat-paginator-disabled-icon-color: rgba(32, 26, 27, .38);--mdc-tab-indicator-active-indicator-color: #ba005c;--mat-tab-header-divider-color: #f3dde1;--mat-tab-header-pagination-icon-color: #201a1b;--mat-tab-header-inactive-label-text-color: #201a1b;--mat-tab-header-active-label-text-color: #201a1b;--mat-tab-header-active-ripple-color: #201a1b;--mat-tab-header-inactive-ripple-color: #201a1b;--mat-tab-header-inactive-focus-label-text-color: #201a1b;--mat-tab-header-inactive-hover-label-text-color: #201a1b;--mat-tab-header-active-focus-label-text-color: #201a1b;--mat-tab-header-active-hover-label-text-color: #201a1b;--mat-tab-header-active-focus-indicator-color: #ba005c;--mat-tab-header-active-hover-indicator-color: #ba005c;--mdc-checkbox-disabled-selected-checkmark-color: #fffbff;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(32, 26, 27, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(32, 26, 27, .38);--mdc-checkbox-selected-checkmark-color: #ffffff;--mdc-checkbox-selected-focus-icon-color: #ba005c;--mdc-checkbox-selected-hover-icon-color: #ba005c;--mdc-checkbox-selected-icon-color: #ba005c;--mdc-checkbox-unselected-focus-icon-color: #201a1b;--mdc-checkbox-unselected-hover-icon-color: #201a1b;--mdc-checkbox-unselected-icon-color: #514346;--mdc-checkbox-selected-focus-state-layer-color: #ba005c;--mdc-checkbox-selected-hover-state-layer-color: #ba005c;--mdc-checkbox-selected-pressed-state-layer-color: #201a1b;--mdc-checkbox-unselected-focus-state-layer-color: #201a1b;--mdc-checkbox-unselected-hover-state-layer-color: #201a1b;--mdc-checkbox-unselected-pressed-state-layer-color: #ba005c;--mat-checkbox-disabled-label-color: rgba(32, 26, 27, .38);--mat-checkbox-label-text-color: #201a1b;--mdc-text-button-label-text-color: #ba005c;--mdc-text-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-protected-button-container-color: #fffbff;--mdc-protected-button-label-text-color: #ba005c;--mdc-protected-button-disabled-container-color: rgba(32, 26, 27, .12);--mdc-protected-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #ba005c;--mdc-filled-button-label-text-color: #ffffff;--mdc-filled-button-disabled-container-color: rgba(32, 26, 27, .12);--mdc-filled-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-outlined-button-disabled-outline-color: rgba(32, 26, 27, .12);--mdc-outlined-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-outlined-button-label-text-color: #ba005c;--mdc-outlined-button-outline-color: #847376;--mat-text-button-state-layer-color: #ba005c;--mat-text-button-disabled-state-layer-color: #514346;--mat-text-button-ripple-color: rgba(186, 0, 92, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #ba005c;--mat-protected-button-disabled-state-layer-color: #514346;--mat-protected-button-ripple-color: rgba(186, 0, 92, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #ffffff;--mat-filled-button-disabled-state-layer-color: #514346;--mat-filled-button-ripple-color: rgba(255, 255, 255, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #ba005c;--mat-outlined-button-disabled-state-layer-color: #514346;--mat-outlined-button-ripple-color: rgba(186, 0, 92, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #514346;--mdc-icon-button-disabled-icon-color: rgba(32, 26, 27, .38);--mat-icon-button-state-layer-color: #514346;--mat-icon-button-disabled-state-layer-color: #514346;--mat-icon-button-ripple-color: rgba(81, 67, 70, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #ffd9e1;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #ffd9e1;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #3f001b;--mat-fab-state-layer-color: #3f001b;--mat-fab-ripple-color: rgba(63, 0, 27, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(32, 26, 27, .12);--mat-fab-disabled-state-foreground-color: rgba(32, 26, 27, .38);--mat-fab-small-foreground-color: #3f001b;--mat-fab-small-state-layer-color: #3f001b;--mat-fab-small-ripple-color: rgba(63, 0, 27, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(32, 26, 27, .12);--mat-fab-small-disabled-state-foreground-color: rgba(32, 26, 27, .38);--mdc-snackbar-container-color: #352f30;--mdc-snackbar-supporting-text-color: #faeeef;--mat-snack-bar-button-color: #ffb1c5;--mat-table-background-color: #fffbff;--mat-table-header-headline-color: #201a1b;--mat-table-row-item-label-text-color: #201a1b;--mat-table-row-item-outline-color: #d6c2c5;--mdc-circular-progress-active-indicator-color: #ba005c;--mat-badge-background-color: #ba1a1a;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: rgba(186, 26, 26, .38);--mat-badge-disabled-state-text-color: #ffffff;--mat-bottom-sheet-container-text-color: #201a1b;--mat-bottom-sheet-container-background-color: #fcf1f2;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #201a1b;--mat-standard-button-toggle-state-layer-color: #201a1b;--mat-standard-button-toggle-selected-state-background-color: #ffd9e1;--mat-standard-button-toggle-selected-state-text-color: #2b151b;--mat-standard-button-toggle-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(32, 26, 27, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(32, 26, 27, .12);--mat-standard-button-toggle-divider-color: #847376;--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #ba005c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ba005c;--mat-datepicker-calendar-date-focus-state-background-color: rgba(32, 26, 27, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(32, 26, 27, .08);--mat-datepicker-toggle-active-state-icon-color: #514346;--mat-datepicker-calendar-date-in-range-state-background-color: #ffd9e1;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #ffdad4;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #ffd9e1;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #74565d;--mat-datepicker-toggle-icon-color: #514346;--mat-datepicker-calendar-body-label-text-color: #201a1b;--mat-datepicker-calendar-period-button-text-color: #514346;--mat-datepicker-calendar-period-button-icon-color: #514346;--mat-datepicker-calendar-navigation-button-icon-color: #514346;--mat-datepicker-calendar-header-text-color: #514346;--mat-datepicker-calendar-date-today-outline-color: #ba005c;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-date-text-color: #201a1b;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #ba005c;--mat-datepicker-range-input-separator-color: #201a1b;--mat-datepicker-range-input-disabled-state-separator-color: rgba(32, 26, 27, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-container-background-color: #f2e6e7;--mat-datepicker-calendar-container-text-color: #201a1b;--mat-divider-color: #d6c2c5;--mat-expansion-container-background-color: #fffbff;--mat-expansion-container-text-color: #201a1b;--mat-expansion-actions-divider-color: #d6c2c5;--mat-expansion-header-hover-state-layer-color: rgba(32, 26, 27, .08);--mat-expansion-header-focus-state-layer-color: rgba(32, 26, 27, .12);--mat-expansion-header-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-expansion-header-text-color: #201a1b;--mat-expansion-header-description-color: #514346;--mat-expansion-header-indicator-color: #514346;--mat-sidenav-container-background-color: #fffbff;--mat-sidenav-container-text-color: #514346;--mat-sidenav-content-background-color: #fffbff;--mat-sidenav-content-text-color: #201a1b;--mat-sidenav-scrim-color: rgba(58, 45, 48, .4);--mat-stepper-header-icon-foreground-color: #fffbff;--mat-stepper-header-selected-state-icon-background-color: #ba005c;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #ba005c;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #fffbff;--mat-stepper-line-color: #d6c2c5;--mat-stepper-header-hover-state-layer-color: rgba(53, 47, 48, .08);--mat-stepper-header-focus-state-layer-color: rgba(53, 47, 48, .12);--mat-stepper-header-label-text-color: #514346;--mat-stepper-header-optional-label-text-color: #514346;--mat-stepper-header-selected-state-label-text-color: #514346;--mat-stepper-header-error-state-label-text-color: #ba1a1a;--mat-stepper-header-icon-background-color: #514346;--mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;--mat-sort-arrow-color: #201a1b;--mat-toolbar-container-background-color: #fffbff;--mat-toolbar-container-text-color: #201a1b;--mat-tree-container-background-color: #fffbff;--mat-tree-node-text-color: #201a1b}.survey-theme-rose-red-light .mat-display-large,.survey-theme-rose-red-light .mat-typography .mat-display-large,.survey-theme-rose-red-light .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-display-medium,.survey-theme-rose-red-light .mat-typography .mat-display-medium,.survey-theme-rose-red-light .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-display-small,.survey-theme-rose-red-light .mat-typography .mat-display-small,.survey-theme-rose-red-light .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-headline-large,.survey-theme-rose-red-light .mat-typography .mat-headline-large,.survey-theme-rose-red-light .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-headline-medium,.survey-theme-rose-red-light .mat-typography .mat-headline-medium,.survey-theme-rose-red-light .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-headline-small,.survey-theme-rose-red-light .mat-typography .mat-headline-small,.survey-theme-rose-red-light .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-title-large,.survey-theme-rose-red-light .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-rose-red-light .mat-title-medium,.survey-theme-rose-red-light .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-rose-red-light .mat-title-small,.survey-theme-rose-red-light .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-light .mat-body-large,.survey-theme-rose-red-light .mat-typography .mat-body-large,.survey-theme-rose-red-light .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-light .mat-body-large p,.survey-theme-rose-red-light .mat-typography .mat-body-large p,.survey-theme-rose-red-light .mat-typography p{margin:0 0 .75em}.survey-theme-rose-red-light .mat-body-medium,.survey-theme-rose-red-light .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-rose-red-light .mat-body-small,.survey-theme-rose-red-light .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-rose-red-light .mat-label-large,.survey-theme-rose-red-light .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-light .mat-label-medium,.survey-theme-rose-red-light .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-light .mat-label-small,.survey-theme-rose-red-light .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-light.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-rose-red-light ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-rose-red-light.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#ffdad4}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#410000}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#ffdad4}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#410000}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#ffd9e1;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-rose-red-light.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-rose-red-dark{--mat-app-background-color: #201a1b;--mat-app-text-color: #ece0e1;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(236, 224, 225, .1);--mat-option-selected-state-label-text-color: #ffd9e1;--mat-option-label-text-color: #ece0e1;--mat-option-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-option-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-option-selected-state-layer-color: #5b3f46;--mat-optgroup-label-text-color: #d6c2c5;--mat-full-pseudo-checkbox-selected-icon-color: #ffb1c5;--mat-full-pseudo-checkbox-selected-checkmark-color: #65002f;--mat-full-pseudo-checkbox-unselected-icon-color: #d6c2c5;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #201a1b;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(236, 224, 225, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(236, 224, 225, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ffb1c5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(236, 224, 225, .38);--mdc-elevated-card-container-color: #201a1b;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #201a1b;--mdc-outlined-card-outline-color: #514346;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #ece0e1;--mdc-linear-progress-active-indicator-color: #ffb1c5;--mdc-linear-progress-track-color: #514346;--mdc-plain-tooltip-container-color: #ece0e1;--mdc-plain-tooltip-supporting-text-color: #352f30;--mdc-filled-text-field-caret-color: #ffb1c5;--mdc-filled-text-field-focus-active-indicator-color: #ffb1c5;--mdc-filled-text-field-focus-label-text-color: #ffb1c5;--mdc-filled-text-field-container-color: #514346;--mdc-filled-text-field-disabled-container-color: rgba(236, 224, 225, .04);--mdc-filled-text-field-label-text-color: #d6c2c5;--mdc-filled-text-field-hover-label-text-color: #d6c2c5;--mdc-filled-text-field-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-filled-text-field-input-text-color: #ece0e1;--mdc-filled-text-field-disabled-input-text-color: rgba(236, 224, 225, .38);--mdc-filled-text-field-input-text-placeholder-color: #d6c2c5;--mdc-filled-text-field-error-hover-label-text-color: #ffdad6;--mdc-filled-text-field-error-focus-label-text-color: #ffb4ab;--mdc-filled-text-field-error-label-text-color: #ffb4ab;--mdc-filled-text-field-active-indicator-color: #d6c2c5;--mdc-filled-text-field-disabled-active-indicator-color: rgba(236, 224, 225, .38);--mdc-filled-text-field-hover-active-indicator-color: #ece0e1;--mdc-filled-text-field-error-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-focus-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-hover-active-indicator-color: #ffdad6;--mdc-outlined-text-field-caret-color: #ffb1c5;--mdc-outlined-text-field-focus-outline-color: #ffb1c5;--mdc-outlined-text-field-focus-label-text-color: #ffb1c5;--mdc-outlined-text-field-label-text-color: #d6c2c5;--mdc-outlined-text-field-hover-label-text-color: #ece0e1;--mdc-outlined-text-field-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-outlined-text-field-input-text-color: #ece0e1;--mdc-outlined-text-field-disabled-input-text-color: rgba(236, 224, 225, .38);--mdc-outlined-text-field-input-text-placeholder-color: #d6c2c5;--mdc-outlined-text-field-error-focus-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-hover-label-text-color: #ffdad6;--mdc-outlined-text-field-outline-color: #9e8c90;--mdc-outlined-text-field-disabled-outline-color: rgba(236, 224, 225, .12);--mdc-outlined-text-field-hover-outline-color: #ece0e1;--mdc-outlined-text-field-error-focus-outline-color: #ffb4ab;--mdc-outlined-text-field-error-hover-outline-color: #ffdad6;--mdc-outlined-text-field-error-outline-color: #ffb4ab;--mat-form-field-focus-select-arrow-color: #ffb1c5;--mat-form-field-disabled-input-text-placeholder-color: rgba(236, 224, 225, .38);--mat-form-field-state-layer-color: #ece0e1;--mat-form-field-error-text-color: #ffb4ab;--mat-form-field-select-option-text-color: #201a1b;--mat-form-field-select-disabled-option-text-color: rgba(32, 26, 27, .38);--mat-form-field-leading-icon-color: #d6c2c5;--mat-form-field-disabled-leading-icon-color: rgba(236, 224, 225, .38);--mat-form-field-trailing-icon-color: #d6c2c5;--mat-form-field-disabled-trailing-icon-color: rgba(236, 224, 225, .38);--mat-form-field-error-focus-trailing-icon-color: #ffb4ab;--mat-form-field-error-hover-trailing-icon-color: #ffdad6;--mat-form-field-error-trailing-icon-color: #ffb4ab;--mat-form-field-enabled-select-arrow-color: #d6c2c5;--mat-form-field-disabled-select-arrow-color: rgba(236, 224, 225, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #241e1f;--mat-select-enabled-trigger-text-color: #ece0e1;--mat-select-disabled-trigger-text-color: rgba(236, 224, 225, .38);--mat-select-placeholder-text-color: #d6c2c5;--mat-select-enabled-arrow-color: #d6c2c5;--mat-select-disabled-arrow-color: rgba(236, 224, 225, .38);--mat-select-focused-arrow-color: #ffb1c5;--mat-select-invalid-arrow-color: #ffb4ab;--mat-autocomplete-background-color: #241e1f;--mdc-dialog-container-color: #201a1b;--mdc-dialog-subhead-color: #ece0e1;--mdc-dialog-supporting-text-color: #d6c2c5;--mdc-chip-outline-color: #9e8c90;--mdc-chip-disabled-outline-color: rgba(236, 224, 225, .12);--mdc-chip-focus-outline-color: #d6c2c5;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-chip-elevated-selected-container-color: #5b3f46;--mdc-chip-flat-disabled-selected-container-color: rgba(236, 224, 225, .12);--mdc-chip-focus-state-layer-color: #d6c2c5;--mdc-chip-hover-state-layer-color: #d6c2c5;--mdc-chip-selected-hover-state-layer-color: #ffd9e1;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #ffd9e1;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #d6c2c5;--mdc-chip-selected-label-text-color: #ffd9e1;--mdc-chip-with-icon-icon-color: #d6c2c5;--mdc-chip-with-icon-disabled-icon-color: #ece0e1;--mdc-chip-with-icon-selected-icon-color: #ffd9e1;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #ece0e1;--mdc-chip-with-trailing-icon-trailing-icon-color: #d6c2c5;--mat-chip-trailing-action-state-layer-color: #d6c2c5;--mat-chip-selected-trailing-action-state-layer-color: #ffd9e1;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #ece0e1;--mat-chip-selected-trailing-icon-color: #ffd9e1;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #ffb1c5;--mdc-switch-selected-handle-color: #65002f;--mdc-switch-selected-hover-state-layer-color: #ffb1c5;--mdc-switch-selected-pressed-state-layer-color: #ffb1c5;--mdc-switch-selected-focus-handle-color: #8f0045;--mdc-switch-selected-hover-handle-color: #8f0045;--mdc-switch-selected-pressed-handle-color: #8f0045;--mdc-switch-selected-focus-track-color: #ffb1c5;--mdc-switch-selected-hover-track-color: #ffb1c5;--mdc-switch-selected-pressed-track-color: #ffb1c5;--mdc-switch-selected-track-color: #ffb1c5;--mdc-switch-disabled-selected-handle-color: #201a1b;--mdc-switch-disabled-selected-icon-color: #ece0e1;--mdc-switch-disabled-selected-track-color: #ece0e1;--mdc-switch-disabled-unselected-handle-color: #ece0e1;--mdc-switch-disabled-unselected-icon-color: #514346;--mdc-switch-disabled-unselected-track-color: #514346;--mdc-switch-selected-icon-color: #ffd9e1;--mdc-switch-unselected-focus-handle-color: #d6c2c5;--mdc-switch-unselected-focus-state-layer-color: #ece0e1;--mdc-switch-unselected-focus-track-color: #514346;--mdc-switch-unselected-handle-color: #9e8c90;--mdc-switch-unselected-hover-handle-color: #d6c2c5;--mdc-switch-unselected-hover-state-layer-color: #ece0e1;--mdc-switch-unselected-hover-track-color: #514346;--mdc-switch-unselected-icon-color: #514346;--mdc-switch-unselected-pressed-handle-color: #d6c2c5;--mdc-switch-unselected-pressed-state-layer-color: #ece0e1;--mdc-switch-unselected-pressed-track-color: #514346;--mdc-switch-unselected-track-color: #514346;--mat-switch-track-outline-color: #9e8c90;--mat-switch-disabled-unselected-track-outline-color: #ece0e1;--mat-switch-label-text-color: #ece0e1;--mdc-radio-disabled-selected-icon-color: #ece0e1;--mdc-radio-disabled-unselected-icon-color: #ece0e1;--mdc-radio-unselected-hover-icon-color: #ece0e1;--mdc-radio-unselected-icon-color: #d6c2c5;--mdc-radio-unselected-pressed-icon-color: #ece0e1;--mdc-radio-selected-focus-icon-color: #ffb1c5;--mdc-radio-selected-hover-icon-color: #ffb1c5;--mdc-radio-selected-icon-color: #ffb1c5;--mdc-radio-selected-pressed-icon-color: #ffb1c5;--mat-radio-ripple-color: #ece0e1;--mat-radio-checked-ripple-color: #ffb1c5;--mat-radio-disabled-label-color: rgba(236, 224, 225, .38);--mat-radio-label-text-color: #ece0e1;--mdc-slider-handle-color: #ffb1c5;--mdc-slider-focus-handle-color: #ffb1c5;--mdc-slider-hover-handle-color: #ffb1c5;--mdc-slider-active-track-color: #ffb1c5;--mdc-slider-inactive-track-color: #514346;--mdc-slider-with-tick-marks-inactive-container-color: #d6c2c5;--mdc-slider-with-tick-marks-active-container-color: #65002f;--mdc-slider-disabled-active-track-color: #ece0e1;--mdc-slider-disabled-handle-color: #ece0e1;--mdc-slider-disabled-inactive-track-color: #ece0e1;--mdc-slider-label-container-color: #ffb1c5;--mdc-slider-label-label-text-color: #65002f;--mdc-slider-with-overlap-handle-outline-color: #65002f;--mdc-slider-with-tick-marks-disabled-container-color: #ece0e1;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #ffb1c5;--mat-slider-hover-state-layer-color: rgba(255, 177, 197, .05);--mat-slider-focus-state-layer-color: rgba(255, 177, 197, .2);--mat-menu-item-label-text-color: #ece0e1;--mat-menu-item-icon-color: #d6c2c5;--mat-menu-item-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-menu-item-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-menu-container-color: #241e1f;--mat-menu-divider-color: #514346;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #8f0045;--mdc-list-list-item-disabled-state-layer-color: #ece0e1;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #ece0e1;--mdc-list-list-item-supporting-text-color: #d6c2c5;--mdc-list-list-item-leading-icon-color: #d6c2c5;--mdc-list-list-item-trailing-supporting-text-color: #d6c2c5;--mdc-list-list-item-trailing-icon-color: #d6c2c5;--mdc-list-list-item-selected-trailing-icon-color: #ffb1c5;--mdc-list-list-item-disabled-label-text-color: #ece0e1;--mdc-list-list-item-disabled-leading-icon-color: #ece0e1;--mdc-list-list-item-disabled-trailing-icon-color: #ece0e1;--mdc-list-list-item-hover-label-text-color: #ece0e1;--mdc-list-list-item-focus-label-text-color: #ece0e1;--mdc-list-list-item-hover-state-layer-color: #ece0e1;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #ece0e1;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #5b3f46;--mat-paginator-container-text-color: #ece0e1;--mat-paginator-container-background-color: #201a1b;--mat-paginator-enabled-icon-color: #d6c2c5;--mat-paginator-disabled-icon-color: rgba(236, 224, 225, .38);--mdc-tab-indicator-active-indicator-color: #ffb1c5;--mat-tab-header-divider-color: #514346;--mat-tab-header-pagination-icon-color: #ece0e1;--mat-tab-header-inactive-label-text-color: #ece0e1;--mat-tab-header-active-label-text-color: #ece0e1;--mat-tab-header-active-ripple-color: #ece0e1;--mat-tab-header-inactive-ripple-color: #ece0e1;--mat-tab-header-inactive-focus-label-text-color: #ece0e1;--mat-tab-header-inactive-hover-label-text-color: #ece0e1;--mat-tab-header-active-focus-label-text-color: #ece0e1;--mat-tab-header-active-hover-label-text-color: #ece0e1;--mat-tab-header-active-focus-indicator-color: #ffb1c5;--mat-tab-header-active-hover-indicator-color: #ffb1c5;--mdc-checkbox-disabled-selected-checkmark-color: #201a1b;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(236, 224, 225, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(236, 224, 225, .38);--mdc-checkbox-selected-checkmark-color: #65002f;--mdc-checkbox-selected-focus-icon-color: #ffb1c5;--mdc-checkbox-selected-hover-icon-color: #ffb1c5;--mdc-checkbox-selected-icon-color: #ffb1c5;--mdc-checkbox-unselected-focus-icon-color: #ece0e1;--mdc-checkbox-unselected-hover-icon-color: #ece0e1;--mdc-checkbox-unselected-icon-color: #d6c2c5;--mdc-checkbox-selected-focus-state-layer-color: #ffb1c5;--mdc-checkbox-selected-hover-state-layer-color: #ffb1c5;--mdc-checkbox-selected-pressed-state-layer-color: #ece0e1;--mdc-checkbox-unselected-focus-state-layer-color: #ece0e1;--mdc-checkbox-unselected-hover-state-layer-color: #ece0e1;--mdc-checkbox-unselected-pressed-state-layer-color: #ffb1c5;--mat-checkbox-disabled-label-color: rgba(236, 224, 225, .38);--mat-checkbox-label-text-color: #ece0e1;--mdc-text-button-label-text-color: #ffb1c5;--mdc-text-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-protected-button-container-color: #201a1b;--mdc-protected-button-label-text-color: #ffb1c5;--mdc-protected-button-disabled-container-color: rgba(236, 224, 225, .12);--mdc-protected-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #ffb1c5;--mdc-filled-button-label-text-color: #65002f;--mdc-filled-button-disabled-container-color: rgba(236, 224, 225, .12);--mdc-filled-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-outlined-button-disabled-outline-color: rgba(236, 224, 225, .12);--mdc-outlined-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-outlined-button-label-text-color: #ffb1c5;--mdc-outlined-button-outline-color: #9e8c90;--mat-text-button-state-layer-color: #ffb1c5;--mat-text-button-disabled-state-layer-color: #d6c2c5;--mat-text-button-ripple-color: rgba(255, 177, 197, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #ffb1c5;--mat-protected-button-disabled-state-layer-color: #d6c2c5;--mat-protected-button-ripple-color: rgba(255, 177, 197, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #65002f;--mat-filled-button-disabled-state-layer-color: #d6c2c5;--mat-filled-button-ripple-color: rgba(101, 0, 47, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #ffb1c5;--mat-outlined-button-disabled-state-layer-color: #d6c2c5;--mat-outlined-button-ripple-color: rgba(255, 177, 197, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #d6c2c5;--mdc-icon-button-disabled-icon-color: rgba(236, 224, 225, .38);--mat-icon-button-state-layer-color: #d6c2c5;--mat-icon-button-disabled-state-layer-color: #d6c2c5;--mat-icon-button-ripple-color: rgba(214, 194, 197, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #8f0045;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #8f0045;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #ffd9e1;--mat-fab-state-layer-color: #ffd9e1;--mat-fab-ripple-color: rgba(255, 217, 225, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(236, 224, 225, .12);--mat-fab-disabled-state-foreground-color: rgba(236, 224, 225, .38);--mat-fab-small-foreground-color: #ffd9e1;--mat-fab-small-state-layer-color: #ffd9e1;--mat-fab-small-ripple-color: rgba(255, 217, 225, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(236, 224, 225, .12);--mat-fab-small-disabled-state-foreground-color: rgba(236, 224, 225, .38);--mdc-snackbar-container-color: #ece0e1;--mdc-snackbar-supporting-text-color: #352f30;--mat-snack-bar-button-color: #ba005c;--mat-table-background-color: #201a1b;--mat-table-header-headline-color: #ece0e1;--mat-table-row-item-label-text-color: #ece0e1;--mat-table-row-item-outline-color: #514346;--mdc-circular-progress-active-indicator-color: #ffb1c5;--mat-badge-background-color: #ffb4ab;--mat-badge-text-color: #690005;--mat-badge-disabled-state-background-color: rgba(255, 180, 171, .38);--mat-badge-disabled-state-text-color: #690005;--mat-bottom-sheet-container-text-color: #ece0e1;--mat-bottom-sheet-container-background-color: #201a1b;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #ece0e1;--mat-standard-button-toggle-state-layer-color: #ece0e1;--mat-standard-button-toggle-selected-state-background-color: #5b3f46;--mat-standard-button-toggle-selected-state-text-color: #ffd9e1;--mat-standard-button-toggle-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(236, 224, 225, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(236, 224, 225, .12);--mat-standard-button-toggle-divider-color: #9e8c90;--mat-datepicker-calendar-date-selected-state-text-color: #65002f;--mat-datepicker-calendar-date-selected-state-background-color: #ffb1c5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffb1c5;--mat-datepicker-calendar-date-focus-state-background-color: rgba(236, 224, 225, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(236, 224, 225, .08);--mat-datepicker-toggle-active-state-icon-color: #d6c2c5;--mat-datepicker-calendar-date-in-range-state-background-color: #8f0045;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #930100;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #5b3f46;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #e3bdc5;--mat-datepicker-toggle-icon-color: #d6c2c5;--mat-datepicker-calendar-body-label-text-color: #ece0e1;--mat-datepicker-calendar-period-button-text-color: #d6c2c5;--mat-datepicker-calendar-period-button-icon-color: #d6c2c5;--mat-datepicker-calendar-navigation-button-icon-color: #d6c2c5;--mat-datepicker-calendar-header-text-color: #d6c2c5;--mat-datepicker-calendar-date-today-outline-color: #ffb1c5;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-date-text-color: #ece0e1;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #ffb1c5;--mat-datepicker-range-input-separator-color: #ece0e1;--mat-datepicker-range-input-disabled-state-separator-color: rgba(236, 224, 225, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-container-background-color: #2f292a;--mat-datepicker-calendar-container-text-color: #ece0e1;--mat-divider-color: #514346;--mat-expansion-container-background-color: #201a1b;--mat-expansion-container-text-color: #ece0e1;--mat-expansion-actions-divider-color: #514346;--mat-expansion-header-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-expansion-header-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-expansion-header-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-expansion-header-text-color: #ece0e1;--mat-expansion-header-description-color: #d6c2c5;--mat-expansion-header-indicator-color: #d6c2c5;--mat-sidenav-container-background-color: #201a1b;--mat-sidenav-container-text-color: #d6c2c5;--mat-sidenav-content-background-color: #201a1b;--mat-sidenav-content-text-color: #ece0e1;--mat-sidenav-scrim-color: rgba(58, 45, 48, .4);--mat-stepper-header-icon-foreground-color: #201a1b;--mat-stepper-header-selected-state-icon-background-color: #ffb1c5;--mat-stepper-header-selected-state-icon-foreground-color: #65002f;--mat-stepper-header-edit-state-icon-background-color: #ffb1c5;--mat-stepper-header-edit-state-icon-foreground-color: #65002f;--mat-stepper-container-color: #201a1b;--mat-stepper-line-color: #514346;--mat-stepper-header-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-stepper-header-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-stepper-header-label-text-color: #d6c2c5;--mat-stepper-header-optional-label-text-color: #d6c2c5;--mat-stepper-header-selected-state-label-text-color: #d6c2c5;--mat-stepper-header-error-state-label-text-color: #ffb4ab;--mat-stepper-header-icon-background-color: #d6c2c5;--mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;--mat-sort-arrow-color: #ece0e1;--mat-toolbar-container-background-color: #201a1b;--mat-toolbar-container-text-color: #ece0e1;--mat-tree-container-background-color: #201a1b;--mat-tree-node-text-color: #ece0e1}.survey-theme-rose-red-dark .mat-display-large,.survey-theme-rose-red-dark .mat-typography .mat-display-large,.survey-theme-rose-red-dark .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-display-medium,.survey-theme-rose-red-dark .mat-typography .mat-display-medium,.survey-theme-rose-red-dark .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-display-small,.survey-theme-rose-red-dark .mat-typography .mat-display-small,.survey-theme-rose-red-dark .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-headline-large,.survey-theme-rose-red-dark .mat-typography .mat-headline-large,.survey-theme-rose-red-dark .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-headline-medium,.survey-theme-rose-red-dark .mat-typography .mat-headline-medium,.survey-theme-rose-red-dark .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-headline-small,.survey-theme-rose-red-dark .mat-typography .mat-headline-small,.survey-theme-rose-red-dark .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-title-large,.survey-theme-rose-red-dark .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-rose-red-dark .mat-title-medium,.survey-theme-rose-red-dark .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-rose-red-dark .mat-title-small,.survey-theme-rose-red-dark .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-dark .mat-body-large,.survey-theme-rose-red-dark .mat-typography .mat-body-large,.survey-theme-rose-red-dark .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-dark .mat-body-large p,.survey-theme-rose-red-dark .mat-typography .mat-body-large p,.survey-theme-rose-red-dark .mat-typography p{margin:0 0 .75em}.survey-theme-rose-red-dark .mat-body-medium,.survey-theme-rose-red-dark .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-rose-red-dark .mat-body-small,.survey-theme-rose-red-dark .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-rose-red-dark .mat-label-large,.survey-theme-rose-red-dark .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-dark .mat-label-medium,.survey-theme-rose-red-dark .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-dark .mat-label-small,.survey-theme-rose-red-dark .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-dark.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-rose-red-dark ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-rose-red-dark.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#930100}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#ffdad4}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#930100}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#ffdad4}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#5b3f46;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-rose-red-dark.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-container-main{-webkit-text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tp-view-tablet{width:100%;height:100%;margin:0;display:flex;flex-flow:column nowrap;font-size:16px;overflow:hidden}.tp-view-tablet tp-survey-container-answer{flex:1}.tp-view-desktop .container-navigation{display:flex;gap:2em;padding:1em}.tp-view-desktop .container-navigation>div{flex:1}.tp-view-desktop .container-navigation>div:first-child{text-align:right}.tp-view-desktop .container-navigation tp-survey-navigation-button:first-child{text-align:end}.tp-view-tablet .container-navigation{display:flex;gap:2em;padding:.5em}.tp-view-tablet .container-navigation>div{flex:1}.tp-view-tablet .container-navigation .container-navigation-back{text-align:left}.tp-view-tablet .container-navigation .container-navigation-next{text-align:end}\n"], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "component", type: QuestionCaptionComponent, selector: "tp-survey-question-caption", inputs: ["caption", "captionHelp"] }, { kind: "component", type: NavigationButtonComponent, selector: "tp-survey-navigation-button", inputs: ["direction", "caption"], outputs: ["onClick"] }, { kind: "component", type: ContainerAnswerComponent, selector: "tp-survey-container-answer", inputs: ["question", "language", "viewModel", "answers", "developerMode", "languageList"], outputs: ["logicChanged", "answerChanged", "onLanguageChange"] }, { kind: "pipe", type: GetActiveLanguagePipe, name: "getActiveLanguage" }, { kind: "directive", type: UpdateFontSizeDirective, selector: "[tpSurveyUpdateFontSize]", inputs: ["tpSurveyUpdateFontSize"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: MultiLangObjectToHtmlPipe, name: "multiLangObjectToHtml" }, { kind: "directive", type: SurveyThemeDirective, selector: "[tpSurveyTheme]", inputs: ["tpSurveyTheme"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2141
+ }
2142
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: SurveyPlayComponent, decorators: [{
2143
+ type: Component,
2144
+ args: [{ selector: 'tp-survey-play', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
2145
+ AsyncPipe,
2146
+ QuestionCaptionComponent,
2147
+ NavigationButtonComponent,
2148
+ ContainerAnswerComponent,
2149
+ GetActiveLanguagePipe,
2150
+ UpdateFontSizeDirective,
2151
+ NgTemplateOutlet,
2152
+ MultiLangObjectToHtmlPipe,
2153
+ SurveyThemeDirective,
2154
+ ], providers: [
2155
+ // {
2156
+ // provide: TpSurveyCoreService,
2157
+ // deps: [
2158
+ // PLATFORM_ID,
2159
+ // TpSurveyLogicService,
2160
+ // TpSurveyInterviewService
2161
+ // ]
2162
+ // },
2163
+ // TpSurveyLogicService,
2164
+ // TpSurveyInterviewService
2165
+ ], template: "<div\r\n class=\"survey-container-main survey-typography\"\r\n [tpSurveyUpdateFontSize]=\"viewModel()\"\r\n [tpSurveyTheme]=\"theme()\"\r\n [class.tp-view-desktop]=\"viewModel() === viewModelE.vmDesktop\"\r\n [class.tp-view-tablet]=\"viewModel() === viewModelE.vmTablet\">\r\n\r\n @if (currentQuestionViewData$ | async; as currentQuestionViewData) {\r\n @if (currentQuestionViewData.question; as question) {\r\n <tp-survey-question-caption\r\n [caption]=\"question.MultiLangCaptions | multiLangObjectToHtml:activeLanguage()\"\r\n [captionHelp]=\"question.MultiLangCaptionsHelper | multiLangObjectToHtml:activeLanguage()\"/>\r\n\r\n <tp-survey-container-answer\r\n [question]=\"question\"\r\n [language]=\"activeLanguage()\"\r\n [viewModel]=\"viewModel()\"\r\n [answers]=\"currentQuestionViewData.answers\"\r\n [languageList]=\"questionary().BaseParams.LanguageList\"\r\n (logicChanged)=\"onLogicChanged($event)\"\r\n (onLanguageChange)=\"onLanguageChange($event)\"\r\n (answerChanged)=\"onAnswerChanged($event)\"/>\r\n }\r\n }\r\n\r\n <div class=\"container-navigation\">\r\n <div class=\"container-navigation-back\">\r\n @if (backButtonAvailable()) {\r\n <tp-survey-navigation-button\r\n direction=\"back\"\r\n [caption]=\"(questionary().BaseParams.LanguageList | getActiveLanguage: activeLanguage())?.back_button_caption\"\r\n (click)=\"onNavigationButtonClick('back')\"/>\r\n }\r\n </div>\r\n\r\n <ng-container\r\n [ngTemplateOutlet]=\"templateNavigationRef() ?? null\">\r\n </ng-container>\r\n\r\n <div class=\"container-navigation-next\">\r\n @if (nextButtonAvailable()){\r\n <tp-survey-navigation-button\r\n [caption]=\"(questionary().BaseParams.LanguageList | getActiveLanguage: activeLanguage())?.next_button_caption\"\r\n direction=\"next\"\r\n (onClick)=\"onNavigationButtonClick('next')\"/>\r\n }\r\n </div>\r\n </div>\r\n</div>\r\n\r\n\r\n", styles: [".mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale3d(0,0,0);background-color:var(--mat-ripple-color, rgba(0, 0, 0, .1))}.cdk-high-contrast-active .mat-ripple-element,.cdk-drag-preview .mat-ripple-element,.cdk-drag-placeholder .mat-ripple-element{display:none}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}.cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.cdk-overlay-backdrop{position:absolute;inset:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.cdk-overlay-dark-backdrop{background:#00000052}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0!important;box-sizing:content-box!important;height:0!important}@keyframes cdk-text-field-autofill-start{}@keyframes cdk-text-field-autofill-end{}.cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.mat-focus-indicator{position:relative}.mat-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border:var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.mat-focus-indicator:focus:before{content:\"\"}.cdk-high-contrast-active{--mat-focus-indicator-display: block}.mat-mdc-focus-indicator{position:relative}.mat-mdc-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-mdc-focus-indicator-display, none);border:var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius, 4px)}.mat-mdc-focus-indicator:focus:before{content:\"\"}.cdk-high-contrast-active{--mat-mdc-focus-indicator-display: block}.mat-app-background{background-color:var(--mat-app-background-color, transparent);color:var(--mat-app-text-color, inherit)}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:var(--mat-app-elevation-shadow-level-0, none)}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:var(--mat-app-elevation-shadow-level-1, none)}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:var(--mat-app-elevation-shadow-level-2, none)}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:var(--mat-app-elevation-shadow-level-3, none)}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:var(--mat-app-elevation-shadow-level-4, none)}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:var(--mat-app-elevation-shadow-level-5, none)}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:var(--mat-app-elevation-shadow-level-6, none)}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:var(--mat-app-elevation-shadow-level-7, none)}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:var(--mat-app-elevation-shadow-level-8, none)}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:var(--mat-app-elevation-shadow-level-9, none)}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:var(--mat-app-elevation-shadow-level-10, none)}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:var(--mat-app-elevation-shadow-level-11, none)}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:var(--mat-app-elevation-shadow-level-12, none)}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:var(--mat-app-elevation-shadow-level-13, none)}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:var(--mat-app-elevation-shadow-level-14, none)}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:var(--mat-app-elevation-shadow-level-15, none)}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:var(--mat-app-elevation-shadow-level-16, none)}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:var(--mat-app-elevation-shadow-level-17, none)}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:var(--mat-app-elevation-shadow-level-18, none)}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:var(--mat-app-elevation-shadow-level-19, none)}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:var(--mat-app-elevation-shadow-level-20, none)}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:var(--mat-app-elevation-shadow-level-21, none)}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:var(--mat-app-elevation-shadow-level-22, none)}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:var(--mat-app-elevation-shadow-level-23, none)}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:var(--mat-app-elevation-shadow-level-24, none)}.survey-container-main{--mat-app-background-color: #fdfbff;--mat-app-text-color: #1a1b1f;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(26, 27, 31, .1);--mat-option-selected-state-label-text-color: #131c2b;--mat-option-label-text-color: #1a1b1f;--mat-option-hover-state-layer-color: rgba(26, 27, 31, .08);--mat-option-focus-state-layer-color: rgba(26, 27, 31, .12);--mat-option-selected-state-layer-color: #dae2f9;--mat-option-label-text-font: Roboto, sans-serif;--mat-option-label-text-line-height: 1.25rem;--mat-option-label-text-size: 1rem;--mat-option-label-text-tracking: .006rem;--mat-option-label-text-weight: 400;--mat-optgroup-label-text-color: #44474e;--mat-optgroup-label-text-font: Roboto, sans-serif;--mat-optgroup-label-text-line-height: 1.25rem;--mat-optgroup-label-text-size: .875rem;--mat-optgroup-label-text-tracking: .006rem;--mat-optgroup-label-text-weight: 500;--mat-full-pseudo-checkbox-selected-icon-color: #005cbb;--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;--mat-full-pseudo-checkbox-unselected-icon-color: #44474e;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fdfbff;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(26, 27, 31, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(26, 27, 31, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #005cbb;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(26, 27, 31, .38);--mdc-elevated-card-container-color: #fdfbff;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-elevated-card-container-shape: 12px;--mdc-outlined-card-container-color: #fdfbff;--mdc-outlined-card-outline-color: #c4c6d0;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-shape: 12px;--mdc-outlined-card-outline-width: 1px;--mat-card-subtitle-text-color: #1a1b1f;--mat-card-title-text-font: Roboto;--mat-card-title-text-line-height: 1.75rem;--mat-card-title-text-size: 1.375rem;--mat-card-title-text-tracking: 0rem;--mat-card-title-text-weight: 400;--mat-card-subtitle-text-font: Roboto, sans-serif;--mat-card-subtitle-text-line-height: 1.5rem;--mat-card-subtitle-text-size: 1rem;--mat-card-subtitle-text-tracking: .009rem;--mat-card-subtitle-text-weight: 500;--mdc-linear-progress-active-indicator-color: #005cbb;--mdc-linear-progress-track-color: #e0e2ec;--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0px;--mdc-plain-tooltip-container-color: #2f3033;--mdc-plain-tooltip-supporting-text-color: #f2f0f4;--mdc-plain-tooltip-supporting-text-line-height: 1rem;--mdc-plain-tooltip-supporting-text-font: Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size: .75rem;--mdc-plain-tooltip-supporting-text-weight: 400;--mdc-plain-tooltip-supporting-text-tracking: .025rem;--mdc-plain-tooltip-container-shape: 4px;--mdc-filled-text-field-caret-color: #005cbb;--mdc-filled-text-field-focus-active-indicator-color: #005cbb;--mdc-filled-text-field-focus-label-text-color: #005cbb;--mdc-filled-text-field-container-color: #e0e2ec;--mdc-filled-text-field-disabled-container-color: rgba(26, 27, 31, .04);--mdc-filled-text-field-label-text-color: #44474e;--mdc-filled-text-field-hover-label-text-color: #44474e;--mdc-filled-text-field-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-filled-text-field-input-text-color: #1a1b1f;--mdc-filled-text-field-disabled-input-text-color: rgba(26, 27, 31, .38);--mdc-filled-text-field-input-text-placeholder-color: #44474e;--mdc-filled-text-field-error-hover-label-text-color: #410002;--mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;--mdc-filled-text-field-error-label-text-color: #ba1a1a;--mdc-filled-text-field-active-indicator-color: #44474e;--mdc-filled-text-field-disabled-active-indicator-color: rgba(26, 27, 31, .38);--mdc-filled-text-field-hover-active-indicator-color: #1a1b1f;--mdc-filled-text-field-error-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-hover-active-indicator-color: #410002;--mdc-filled-text-field-label-text-font: Roboto, sans-serif;--mdc-filled-text-field-label-text-size: 1rem;--mdc-filled-text-field-label-text-tracking: .031rem;--mdc-filled-text-field-label-text-weight: 400;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-caret-color: #005cbb;--mdc-outlined-text-field-focus-outline-color: #005cbb;--mdc-outlined-text-field-focus-label-text-color: #005cbb;--mdc-outlined-text-field-label-text-color: #44474e;--mdc-outlined-text-field-hover-label-text-color: #1a1b1f;--mdc-outlined-text-field-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-outlined-text-field-input-text-color: #1a1b1f;--mdc-outlined-text-field-disabled-input-text-color: rgba(26, 27, 31, .38);--mdc-outlined-text-field-input-text-placeholder-color: #44474e;--mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-hover-label-text-color: #410002;--mdc-outlined-text-field-outline-color: #74777f;--mdc-outlined-text-field-disabled-outline-color: rgba(26, 27, 31, .12);--mdc-outlined-text-field-hover-outline-color: #1a1b1f;--mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;--mdc-outlined-text-field-error-hover-outline-color: #410002;--mdc-outlined-text-field-error-outline-color: #ba1a1a;--mdc-outlined-text-field-label-text-font: Roboto, sans-serif;--mdc-outlined-text-field-label-text-size: 1rem;--mdc-outlined-text-field-label-text-tracking: .031rem;--mdc-outlined-text-field-label-text-weight: 400;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mat-form-field-focus-select-arrow-color: #005cbb;--mat-form-field-disabled-input-text-placeholder-color: rgba(26, 27, 31, .38);--mat-form-field-state-layer-color: #1a1b1f;--mat-form-field-error-text-color: #ba1a1a;--mat-form-field-select-option-text-color: #1a1b1f;--mat-form-field-select-disabled-option-text-color: rgba(26, 27, 31, .38);--mat-form-field-leading-icon-color: #44474e;--mat-form-field-disabled-leading-icon-color: rgba(26, 27, 31, .38);--mat-form-field-trailing-icon-color: #44474e;--mat-form-field-disabled-trailing-icon-color: rgba(26, 27, 31, .38);--mat-form-field-error-focus-trailing-icon-color: #ba1a1a;--mat-form-field-error-hover-trailing-icon-color: #410002;--mat-form-field-error-trailing-icon-color: #ba1a1a;--mat-form-field-enabled-select-arrow-color: #44474e;--mat-form-field-disabled-select-arrow-color: rgba(26, 27, 31, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-container-text-font: Roboto, sans-serif;--mat-form-field-container-text-line-height: 1.5rem;--mat-form-field-container-text-size: 1rem;--mat-form-field-container-text-tracking: .031rem;--mat-form-field-container-text-weight: 400;--mat-form-field-subscript-text-font: Roboto, sans-serif;--mat-form-field-subscript-text-line-height: 1rem;--mat-form-field-subscript-text-size: .75rem;--mat-form-field-subscript-text-tracking: .025rem;--mat-form-field-subscript-text-weight: 400;--mat-form-field-container-height: 52px;--mat-form-field-filled-label-display: block;--mat-form-field-container-vertical-padding: 14px;--mat-form-field-filled-with-label-container-padding-top: 22px;--mat-form-field-filled-with-label-container-padding-bottom: 6px;--mat-form-field-focus-state-layer-opacity: 0;--mat-select-panel-background-color: #efedf1;--mat-select-enabled-trigger-text-color: #1a1b1f;--mat-select-disabled-trigger-text-color: rgba(26, 27, 31, .38);--mat-select-placeholder-text-color: #44474e;--mat-select-enabled-arrow-color: #44474e;--mat-select-disabled-arrow-color: rgba(26, 27, 31, .38);--mat-select-focused-arrow-color: #005cbb;--mat-select-invalid-arrow-color: #ba1a1a;--mat-select-trigger-text-font: Roboto, sans-serif;--mat-select-trigger-text-line-height: 1.5rem;--mat-select-trigger-text-size: 1rem;--mat-select-trigger-text-tracking: .031rem;--mat-select-trigger-text-weight: 400;--mat-select-arrow-transform: translateY(-8px);--mat-select-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #efedf1;--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-dialog-container-color: #fdfbff;--mdc-dialog-subhead-color: #1a1b1f;--mdc-dialog-supporting-text-color: #44474e;--mdc-dialog-subhead-font: Roboto;--mdc-dialog-subhead-line-height: 2rem;--mdc-dialog-subhead-size: 1.5rem;--mdc-dialog-subhead-weight: 400;--mdc-dialog-subhead-tracking: 0rem;--mdc-dialog-supporting-text-font: Roboto, sans-serif;--mdc-dialog-supporting-text-line-height: 1.25rem;--mdc-dialog-supporting-text-size: .875rem;--mdc-dialog-supporting-text-weight: 400;--mdc-dialog-supporting-text-tracking: .016rem;--mdc-dialog-container-shape: 28px;--mat-dialog-container-elevation-shadow: none;--mat-dialog-container-max-width: 560px;--mat-dialog-container-small-max-width: calc(100vw - 32px) ;--mat-dialog-container-min-width: 280px;--mat-dialog-actions-alignment: flex-end;--mat-dialog-actions-padding: 16px 24px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px 0;--mat-dialog-headline-padding: 6px 24px 13px;--mdc-chip-outline-color: #74777f;--mdc-chip-disabled-outline-color: rgba(26, 27, 31, .12);--mdc-chip-focus-outline-color: #44474e;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-chip-elevated-selected-container-color: #dae2f9;--mdc-chip-flat-disabled-selected-container-color: rgba(26, 27, 31, .12);--mdc-chip-focus-state-layer-color: #44474e;--mdc-chip-hover-state-layer-color: #44474e;--mdc-chip-selected-hover-state-layer-color: #131c2b;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #131c2b;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #44474e;--mdc-chip-selected-label-text-color: #131c2b;--mdc-chip-with-icon-icon-color: #44474e;--mdc-chip-with-icon-disabled-icon-color: #1a1b1f;--mdc-chip-with-icon-selected-icon-color: #131c2b;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #1a1b1f;--mdc-chip-with-trailing-icon-trailing-icon-color: #44474e;--mdc-chip-label-text-font: Roboto, sans-serif;--mdc-chip-label-text-line-height: 1.25rem;--mdc-chip-label-text-size: .875rem;--mdc-chip-label-text-tracking: .006rem;--mdc-chip-label-text-weight: 500;--mdc-chip-container-height: 28px;--mdc-chip-container-shape-radius: 8px;--mdc-chip-with-avatar-avatar-size: 24px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 1px;--mdc-chip-with-avatar-disabled-avatar-opacity: .38;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: .38;--mdc-chip-with-icon-disabled-icon-opacity: .38;--mat-chip-trailing-action-state-layer-color: #44474e;--mat-chip-selected-trailing-action-state-layer-color: #131c2b;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #1a1b1f;--mat-chip-selected-trailing-icon-color: #131c2b;--mat-chip-disabled-container-opacity: 1;--mat-chip-trailing-action-opacity: 1;--mat-chip-trailing-action-focus-opacity: 1;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #005cbb;--mdc-switch-selected-handle-color: #ffffff;--mdc-switch-selected-hover-state-layer-color: #005cbb;--mdc-switch-selected-pressed-state-layer-color: #005cbb;--mdc-switch-selected-focus-handle-color: #d7e3ff;--mdc-switch-selected-hover-handle-color: #d7e3ff;--mdc-switch-selected-pressed-handle-color: #d7e3ff;--mdc-switch-selected-focus-track-color: #005cbb;--mdc-switch-selected-hover-track-color: #005cbb;--mdc-switch-selected-pressed-track-color: #005cbb;--mdc-switch-selected-track-color: #005cbb;--mdc-switch-disabled-selected-handle-color: #fdfbff;--mdc-switch-disabled-selected-icon-color: #1a1b1f;--mdc-switch-disabled-selected-track-color: #1a1b1f;--mdc-switch-disabled-unselected-handle-color: #1a1b1f;--mdc-switch-disabled-unselected-icon-color: #e0e2ec;--mdc-switch-disabled-unselected-track-color: #e0e2ec;--mdc-switch-selected-icon-color: #001b3f;--mdc-switch-unselected-focus-handle-color: #44474e;--mdc-switch-unselected-focus-state-layer-color: #1a1b1f;--mdc-switch-unselected-focus-track-color: #e0e2ec;--mdc-switch-unselected-handle-color: #74777f;--mdc-switch-unselected-hover-handle-color: #44474e;--mdc-switch-unselected-hover-state-layer-color: #1a1b1f;--mdc-switch-unselected-hover-track-color: #e0e2ec;--mdc-switch-unselected-icon-color: #e0e2ec;--mdc-switch-unselected-pressed-handle-color: #44474e;--mdc-switch-unselected-pressed-state-layer-color: #1a1b1f;--mdc-switch-unselected-pressed-track-color: #e0e2ec;--mdc-switch-unselected-track-color: #e0e2ec;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-shape: 9999px;--mdc-switch-selected-icon-size: 16px;--mdc-switch-track-height: 32px;--mdc-switch-track-shape: 9999px;--mdc-switch-track-width: 52px;--mdc-switch-unselected-icon-size: 16px;--mdc-switch-state-layer-size: 40px;--mat-switch-track-outline-color: #74777f;--mat-switch-disabled-unselected-track-outline-color: #1a1b1f;--mat-switch-label-text-color: #1a1b1f;--mat-switch-label-text-font: Roboto, sans-serif;--mat-switch-label-text-line-height: 1.25rem;--mat-switch-label-text-size: .875rem;--mat-switch-label-text-tracking: .016rem;--mat-switch-label-text-weight: 400;--mat-switch-disabled-selected-handle-opacity: 1;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 16px;--mat-switch-selected-handle-size: 24px;--mat-switch-pressed-handle-size: 28px;--mat-switch-with-icon-handle-size: 24px;--mat-switch-selected-handle-horizontal-margin: 0 24px;--mat-switch-selected-with-icon-handle-horizontal-margin: 0 24px;--mat-switch-selected-pressed-handle-horizontal-margin: 0 22px;--mat-switch-unselected-handle-horizontal-margin: 0 8px;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0 4px;--mat-switch-unselected-pressed-handle-horizontal-margin: 0 2px;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 0;--mat-switch-visible-track-transition: opacity 75ms;--mat-switch-hidden-track-transition: opacity 75ms;--mat-switch-track-outline-width: 2px;--mat-switch-selected-track-outline-width: 2px;--mat-switch-selected-track-outline-color: transparent;--mat-switch-disabled-unselected-track-outline-width: 2px;--mdc-radio-disabled-selected-icon-color: #1a1b1f;--mdc-radio-disabled-unselected-icon-color: #1a1b1f;--mdc-radio-unselected-hover-icon-color: #1a1b1f;--mdc-radio-unselected-icon-color: #44474e;--mdc-radio-unselected-pressed-icon-color: #1a1b1f;--mdc-radio-selected-focus-icon-color: #005cbb;--mdc-radio-selected-hover-icon-color: #005cbb;--mdc-radio-selected-icon-color: #005cbb;--mdc-radio-selected-pressed-icon-color: #005cbb;--mdc-radio-state-layer-size: 36px;--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mat-radio-ripple-color: #1a1b1f;--mat-radio-checked-ripple-color: #005cbb;--mat-radio-disabled-label-color: rgba(26, 27, 31, .38);--mat-radio-label-text-color: #1a1b1f;--mat-radio-label-text-font: Roboto, sans-serif;--mat-radio-label-text-line-height: 1.25rem;--mat-radio-label-text-size: .875rem;--mat-radio-label-text-tracking: .016rem;--mat-radio-label-text-weight: 400;--mat-radio-touch-target-display: block;--mdc-slider-handle-color: #005cbb;--mdc-slider-focus-handle-color: #005cbb;--mdc-slider-hover-handle-color: #005cbb;--mdc-slider-active-track-color: #005cbb;--mdc-slider-inactive-track-color: #e0e2ec;--mdc-slider-with-tick-marks-inactive-container-color: #44474e;--mdc-slider-with-tick-marks-active-container-color: #ffffff;--mdc-slider-disabled-active-track-color: #1a1b1f;--mdc-slider-disabled-handle-color: #1a1b1f;--mdc-slider-disabled-inactive-track-color: #1a1b1f;--mdc-slider-label-container-color: #005cbb;--mdc-slider-label-label-text-color: #ffffff;--mdc-slider-with-overlap-handle-outline-color: #ffffff;--mdc-slider-with-tick-marks-disabled-container-color: #1a1b1f;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mdc-slider-label-label-text-font: Roboto, sans-serif;--mdc-slider-label-label-text-size: .75rem;--mdc-slider-label-label-text-line-height: 1rem;--mdc-slider-label-label-text-tracking: .031rem;--mdc-slider-label-label-text-weight: 500;--mdc-slider-active-track-height: 4px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 9999px;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .38;--mdc-slider-with-tick-marks-container-shape: 9999px;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .38;--mat-slider-ripple-color: #005cbb;--mat-slider-hover-state-layer-color: rgba(0, 92, 187, .05);--mat-slider-focus-state-layer-color: rgba(0, 92, 187, .2);--mat-slider-value-indicator-width: 28px;--mat-slider-value-indicator-height: 28px;--mat-slider-value-indicator-caret-display: none;--mat-slider-value-indicator-border-radius: 50% 50% 50% 0;--mat-slider-value-indicator-padding: 0;--mat-slider-value-indicator-text-transform: rotate(45deg);--mat-slider-value-indicator-container-transform: translateX(-50%) rotate(-45deg);--mat-slider-value-indicator-opacity: 1;--mat-menu-item-label-text-color: #1a1b1f;--mat-menu-item-icon-color: #44474e;--mat-menu-item-hover-state-layer-color: rgba(26, 27, 31, .08);--mat-menu-item-focus-state-layer-color: rgba(26, 27, 31, .12);--mat-menu-container-color: #efedf1;--mat-menu-divider-color: #e0e2ec;--mat-menu-item-label-text-font: Roboto, sans-serif;--mat-menu-item-label-text-size: .875rem;--mat-menu-item-label-text-tracking: .006rem;--mat-menu-item-label-text-line-height: 1.25rem;--mat-menu-item-label-text-weight: 500;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 8px;--mat-menu-divider-top-spacing: 8px;--mat-menu-item-spacing: 12px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 12px;--mat-menu-item-trailing-spacing: 12px;--mat-menu-item-with-icon-leading-spacing: 12px;--mat-menu-item-with-icon-trailing-spacing: 12px;--mat-menu-base-elevation-level: 2;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #d7e3ff;--mdc-list-list-item-disabled-state-layer-color: #1a1b1f;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #1a1b1f;--mdc-list-list-item-supporting-text-color: #44474e;--mdc-list-list-item-leading-icon-color: #44474e;--mdc-list-list-item-trailing-supporting-text-color: #44474e;--mdc-list-list-item-trailing-icon-color: #44474e;--mdc-list-list-item-selected-trailing-icon-color: #005cbb;--mdc-list-list-item-disabled-label-text-color: #1a1b1f;--mdc-list-list-item-disabled-leading-icon-color: #1a1b1f;--mdc-list-list-item-disabled-trailing-icon-color: #1a1b1f;--mdc-list-list-item-hover-label-text-color: #1a1b1f;--mdc-list-list-item-focus-label-text-color: #1a1b1f;--mdc-list-list-item-hover-state-layer-color: #1a1b1f;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #1a1b1f;--mdc-list-list-item-focus-state-layer-opacity: .12;--mdc-list-list-item-label-text-font: Roboto, sans-serif;--mdc-list-list-item-label-text-line-height: 1.5rem;--mdc-list-list-item-label-text-size: 1rem;--mdc-list-list-item-label-text-tracking: .031rem;--mdc-list-list-item-label-text-weight: 400;--mdc-list-list-item-supporting-text-font: Roboto, sans-serif;--mdc-list-list-item-supporting-text-line-height: 1.25rem;--mdc-list-list-item-supporting-text-size: .875rem;--mdc-list-list-item-supporting-text-tracking: .016rem;--mdc-list-list-item-supporting-text-weight: 400;--mdc-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;--mdc-list-list-item-trailing-supporting-text-line-height: 1rem;--mdc-list-list-item-trailing-supporting-text-size: .688rem;--mdc-list-list-item-trailing-supporting-text-tracking: .031rem;--mdc-list-list-item-trailing-supporting-text-weight: 500;--mdc-list-list-item-one-line-container-height: 44px;--mdc-list-list-item-two-line-container-height: 60px;--mdc-list-list-item-three-line-container-height: 84px;--mdc-list-list-item-container-shape: 0px;--mdc-list-list-item-leading-avatar-shape: 9999px;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-label-text-opacity: .3;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: #dae2f9;--mat-list-list-item-leading-icon-start-space: 12px;--mat-list-list-item-leading-icon-end-space: 12px;--mat-list-active-indicator-shape: 9999px;--mat-paginator-container-text-color: #1a1b1f;--mat-paginator-container-background-color: #fdfbff;--mat-paginator-enabled-icon-color: #44474e;--mat-paginator-disabled-icon-color: rgba(26, 27, 31, .38);--mat-paginator-container-text-font: Roboto, sans-serif;--mat-paginator-container-text-line-height: 1rem;--mat-paginator-container-text-size: .75rem;--mat-paginator-container-text-tracking: .025rem;--mat-paginator-container-text-weight: 400;--mat-paginator-select-trigger-text-size: .75rem;--mat-paginator-container-size: 52px;--mat-paginator-form-field-container-height: 40px;--mat-paginator-form-field-container-vertical-padding: 8px;--mat-paginator-touch-target-display: block;--mdc-secondary-navigation-tab-container-height: 44px;--mdc-tab-indicator-active-indicator-color: #005cbb;--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mat-tab-header-divider-color: #e0e2ec;--mat-tab-header-pagination-icon-color: #1a1b1f;--mat-tab-header-inactive-label-text-color: #1a1b1f;--mat-tab-header-active-label-text-color: #1a1b1f;--mat-tab-header-active-ripple-color: #1a1b1f;--mat-tab-header-inactive-ripple-color: #1a1b1f;--mat-tab-header-inactive-focus-label-text-color: #1a1b1f;--mat-tab-header-inactive-hover-label-text-color: #1a1b1f;--mat-tab-header-active-focus-label-text-color: #1a1b1f;--mat-tab-header-active-hover-label-text-color: #1a1b1f;--mat-tab-header-active-focus-indicator-color: #005cbb;--mat-tab-header-active-hover-indicator-color: #005cbb;--mat-tab-header-label-text-font: Roboto, sans-serif;--mat-tab-header-label-text-size: .875rem;--mat-tab-header-label-text-tracking: .006rem;--mat-tab-header-label-text-line-height: 1.25rem;--mat-tab-header-label-text-weight: 500;--mat-tab-header-divider-height: 1px;--mdc-checkbox-disabled-selected-checkmark-color: #fdfbff;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(26, 27, 31, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(26, 27, 31, .38);--mdc-checkbox-selected-checkmark-color: #ffffff;--mdc-checkbox-selected-focus-icon-color: #005cbb;--mdc-checkbox-selected-hover-icon-color: #005cbb;--mdc-checkbox-selected-icon-color: #005cbb;--mdc-checkbox-unselected-focus-icon-color: #1a1b1f;--mdc-checkbox-unselected-hover-icon-color: #1a1b1f;--mdc-checkbox-unselected-icon-color: #44474e;--mdc-checkbox-selected-focus-state-layer-color: #005cbb;--mdc-checkbox-selected-hover-state-layer-color: #005cbb;--mdc-checkbox-selected-pressed-state-layer-color: #1a1b1f;--mdc-checkbox-unselected-focus-state-layer-color: #1a1b1f;--mdc-checkbox-unselected-hover-state-layer-color: #1a1b1f;--mdc-checkbox-unselected-pressed-state-layer-color: #005cbb;--mdc-checkbox-state-layer-size: 36px;--mat-checkbox-disabled-label-color: rgba(26, 27, 31, .38);--mat-checkbox-label-text-color: #1a1b1f;--mat-checkbox-label-text-font: Roboto, sans-serif;--mat-checkbox-label-text-line-height: 1.25rem;--mat-checkbox-label-text-size: .875rem;--mat-checkbox-label-text-tracking: .016rem;--mat-checkbox-label-text-weight: 400;--mat-checkbox-touch-target-display: block;--mdc-text-button-label-text-color: #005cbb;--mdc-text-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-text-button-label-text-font: Roboto, sans-serif;--mdc-text-button-label-text-size: .875rem;--mdc-text-button-label-text-tracking: .006rem;--mdc-text-button-label-text-weight: 500;--mdc-text-button-container-height: 36px;--mdc-text-button-container-shape: 9999px;--mdc-protected-button-container-color: #fdfbff;--mdc-protected-button-label-text-color: #005cbb;--mdc-protected-button-disabled-container-color: rgba(26, 27, 31, .12);--mdc-protected-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-protected-button-label-text-font: Roboto, sans-serif;--mdc-protected-button-label-text-size: .875rem;--mdc-protected-button-label-text-tracking: .006rem;--mdc-protected-button-label-text-weight: 500;--mdc-protected-button-container-height: 36px;--mdc-protected-button-container-shape: 9999px;--mdc-filled-button-container-color: #005cbb;--mdc-filled-button-label-text-color: #ffffff;--mdc-filled-button-disabled-container-color: rgba(26, 27, 31, .12);--mdc-filled-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-filled-button-label-text-font: Roboto, sans-serif;--mdc-filled-button-label-text-size: .875rem;--mdc-filled-button-label-text-tracking: .006rem;--mdc-filled-button-label-text-weight: 500;--mdc-filled-button-container-height: 36px;--mdc-filled-button-container-shape: 9999px;--mdc-outlined-button-disabled-outline-color: rgba(26, 27, 31, .12);--mdc-outlined-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-outlined-button-label-text-color: #005cbb;--mdc-outlined-button-outline-color: #74777f;--mdc-outlined-button-label-text-font: Roboto, sans-serif;--mdc-outlined-button-label-text-size: .875rem;--mdc-outlined-button-label-text-tracking: .006rem;--mdc-outlined-button-label-text-weight: 500;--mdc-outlined-button-container-height: 36px;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 9999px;--mat-text-button-state-layer-color: #005cbb;--mat-text-button-disabled-state-layer-color: #44474e;--mat-text-button-ripple-color: rgba(0, 92, 187, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-text-button-touch-target-display: block;--mat-text-button-horizontal-padding: 12px;--mat-text-button-with-icon-horizontal-padding: 16px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: -4px;--mat-protected-button-state-layer-color: #005cbb;--mat-protected-button-disabled-state-layer-color: #44474e;--mat-protected-button-ripple-color: rgba(0, 92, 187, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-protected-button-touch-target-display: block;--mat-protected-button-horizontal-padding: 24px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -8px;--mat-filled-button-state-layer-color: #ffffff;--mat-filled-button-disabled-state-layer-color: #44474e;--mat-filled-button-ripple-color: rgba(255, 255, 255, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-filled-button-touch-target-display: block;--mat-filled-button-horizontal-padding: 24px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -8px;--mat-outlined-button-state-layer-color: #005cbb;--mat-outlined-button-disabled-state-layer-color: #44474e;--mat-outlined-button-ripple-color: rgba(0, 92, 187, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mat-outlined-button-touch-target-display: block;--mat-outlined-button-horizontal-padding: 24px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -8px;--mdc-icon-button-icon-color: #44474e;--mdc-icon-button-disabled-icon-color: rgba(26, 27, 31, .38);--mdc-icon-button-state-layer-size: 36px;--mdc-icon-button-icon-size: 24px;--mat-icon-button-state-layer-color: #44474e;--mat-icon-button-disabled-state-layer-color: #44474e;--mat-icon-button-ripple-color: rgba(68, 71, 78, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-touch-target-display: block;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-label-text-font: Roboto, sans-serif;--mdc-extended-fab-label-text-size: .875rem;--mdc-extended-fab-label-text-tracking: .006rem;--mdc-extended-fab-label-text-weight: 500;--mdc-extended-fab-container-height: 56px;--mdc-extended-fab-container-shape: 16px;--mdc-fab-container-color: #d7e3ff;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-shape: 16px;--mdc-fab-small-container-color: #d7e3ff;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-shape: 12px;--mat-fab-foreground-color: #001b3f;--mat-fab-state-layer-color: #001b3f;--mat-fab-ripple-color: rgba(0, 27, 63, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(26, 27, 31, .12);--mat-fab-disabled-state-foreground-color: rgba(26, 27, 31, .38);--mat-fab-touch-target-display: block;--mat-fab-small-foreground-color: #001b3f;--mat-fab-small-state-layer-color: #001b3f;--mat-fab-small-ripple-color: rgba(0, 27, 63, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(26, 27, 31, .12);--mat-fab-small-disabled-state-foreground-color: rgba(26, 27, 31, .38);--mdc-snackbar-container-color: #2f3033;--mdc-snackbar-supporting-text-color: #f2f0f4;--mdc-snackbar-supporting-text-font: Roboto, sans-serif;--mdc-snackbar-supporting-text-line-height: 1.25rem;--mdc-snackbar-supporting-text-size: .875rem;--mdc-snackbar-supporting-text-weight: 400;--mdc-snackbar-container-shape: 4px;--mat-snack-bar-button-color: #abc7ff;--mat-table-background-color: #fdfbff;--mat-table-header-headline-color: #1a1b1f;--mat-table-row-item-label-text-color: #1a1b1f;--mat-table-row-item-outline-color: #c4c6d0;--mat-table-header-headline-font: Roboto, sans-serif;--mat-table-header-headline-line-height: 1.25rem;--mat-table-header-headline-size: .875rem;--mat-table-header-headline-weight: 500;--mat-table-header-headline-tracking: .006rem;--mat-table-row-item-label-text-font: Roboto, sans-serif;--mat-table-row-item-label-text-line-height: 1.25rem;--mat-table-row-item-label-text-size: .875rem;--mat-table-row-item-label-text-weight: 400;--mat-table-row-item-label-text-tracking: .016rem;--mat-table-footer-supporting-text-font: Roboto, sans-serif;--mat-table-footer-supporting-text-line-height: 1.25rem;--mat-table-footer-supporting-text-size: .875rem;--mat-table-footer-supporting-text-weight: 400;--mat-table-footer-supporting-text-tracking: .016rem;--mat-table-header-container-height: 52px;--mat-table-footer-container-height: 48px;--mat-table-row-item-container-height: 48px;--mat-table-row-item-outline-width: 1px;--mdc-circular-progress-active-indicator-color: #005cbb;--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mat-badge-background-color: #ba1a1a;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: rgba(186, 26, 26, .38);--mat-badge-disabled-state-text-color: #ffffff;--mat-badge-text-font: Roboto, sans-serif;--mat-badge-text-size: .688rem;--mat-badge-text-weight: 500;--mat-badge-large-size-text-size: .688rem;--mat-badge-container-shape: 9999px;--mat-badge-container-size: 16px;--mat-badge-small-size-container-size: 6px;--mat-badge-large-size-container-size: 16px;--mat-badge-legacy-container-size: unset;--mat-badge-legacy-small-size-container-size: unset;--mat-badge-legacy-large-size-container-size: unset;--mat-badge-container-offset: -12px 0;--mat-badge-small-size-container-offset: -6px 0;--mat-badge-large-size-container-offset: -12px 0;--mat-badge-container-overlap-offset: -12px;--mat-badge-small-size-container-overlap-offset: -6px;--mat-badge-large-size-container-overlap-offset: -12px;--mat-badge-container-padding: 0 4px;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0 4px;--mat-badge-small-size-text-size: 0;--mat-bottom-sheet-container-text-color: #1a1b1f;--mat-bottom-sheet-container-background-color: #f5f3f7;--mat-bottom-sheet-container-text-font: Roboto, sans-serif;--mat-bottom-sheet-container-text-line-height: 1.5rem;--mat-bottom-sheet-container-text-size: 1rem;--mat-bottom-sheet-container-text-tracking: .031rem;--mat-bottom-sheet-container-text-weight: 400;--mat-bottom-sheet-container-shape: 28px;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #1a1b1f;--mat-standard-button-toggle-state-layer-color: #1a1b1f;--mat-standard-button-toggle-selected-state-background-color: #dae2f9;--mat-standard-button-toggle-selected-state-text-color: #131c2b;--mat-standard-button-toggle-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(26, 27, 31, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(26, 27, 31, .12);--mat-standard-button-toggle-divider-color: #74777f;--mat-standard-button-toggle-label-text-font: Roboto, sans-serif;--mat-standard-button-toggle-label-text-line-height: 1.25rem;--mat-standard-button-toggle-label-text-size: .875rem;--mat-standard-button-toggle-label-text-tracking: .006rem;--mat-standard-button-toggle-label-text-weight: 500;--mat-standard-button-toggle-height: 40px;--mat-standard-button-toggle-shape: 9999px;--mat-standard-button-toggle-background-color: transparent;--mat-standard-button-toggle-disabled-state-background-color: transparent;--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #005cbb;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #005cbb;--mat-datepicker-calendar-date-focus-state-background-color: rgba(26, 27, 31, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(26, 27, 31, .08);--mat-datepicker-toggle-active-state-icon-color: #44474e;--mat-datepicker-calendar-date-in-range-state-background-color: #d7e3ff;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #e0e0ff;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #dae2f9;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #565e71;--mat-datepicker-toggle-icon-color: #44474e;--mat-datepicker-calendar-body-label-text-color: #1a1b1f;--mat-datepicker-calendar-period-button-text-color: #44474e;--mat-datepicker-calendar-period-button-icon-color: #44474e;--mat-datepicker-calendar-navigation-button-icon-color: #44474e;--mat-datepicker-calendar-header-text-color: #44474e;--mat-datepicker-calendar-date-today-outline-color: #005cbb;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-date-text-color: #1a1b1f;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #005cbb;--mat-datepicker-range-input-separator-color: #1a1b1f;--mat-datepicker-range-input-disabled-state-separator-color: rgba(26, 27, 31, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-container-background-color: #e9e8ec;--mat-datepicker-calendar-container-text-color: #1a1b1f;--mat-datepicker-calendar-text-font: Roboto, sans-serif;--mat-datepicker-calendar-text-size: 1rem;--mat-datepicker-calendar-body-label-text-size: .875rem;--mat-datepicker-calendar-body-label-text-weight: 500;--mat-datepicker-calendar-period-button-text-size: .875rem;--mat-datepicker-calendar-period-button-text-weight: 500;--mat-datepicker-calendar-header-text-size: .875rem;--mat-datepicker-calendar-header-text-weight: 500;--mat-datepicker-calendar-container-shape: 16px;--mat-datepicker-calendar-container-touch-shape: 28px;--mat-datepicker-calendar-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-divider-color: transparent;--mat-datepicker-calendar-date-outline-color: transparent;--mat-divider-color: #c4c6d0;--mat-divider-width: 1px;--mat-expansion-container-background-color: #fdfbff;--mat-expansion-container-text-color: #1a1b1f;--mat-expansion-actions-divider-color: #c4c6d0;--mat-expansion-header-hover-state-layer-color: rgba(26, 27, 31, .08);--mat-expansion-header-focus-state-layer-color: rgba(26, 27, 31, .12);--mat-expansion-header-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-expansion-header-text-color: #1a1b1f;--mat-expansion-header-description-color: #44474e;--mat-expansion-header-indicator-color: #44474e;--mat-expansion-header-text-font: Roboto, sans-serif;--mat-expansion-header-text-size: 1rem;--mat-expansion-header-text-weight: 500;--mat-expansion-header-text-line-height: 1.5rem;--mat-expansion-header-text-tracking: .009rem;--mat-expansion-container-text-font: Roboto, sans-serif;--mat-expansion-container-text-line-height: 1.5rem;--mat-expansion-container-text-size: 1rem;--mat-expansion-container-text-tracking: .031rem;--mat-expansion-container-text-weight: 400;--mat-expansion-header-collapsed-state-height: 44px;--mat-expansion-header-expanded-state-height: 60px;--mat-expansion-container-shape: 12px;--mat-expansion-legacy-header-indicator-display: none;--mat-expansion-header-indicator-display: inline-block;--mat-grid-list-tile-header-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;--mat-grid-list-tile-header-secondary-text-size: 400 .875rem / 1.25rem Roboto, sans-serif;--mat-grid-list-tile-footer-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;--mat-grid-list-tile-footer-secondary-text-size: 400 .875rem / 1.25rem Roboto, sans-serif;--mat-icon-color: inherit;--mat-sidenav-container-background-color: #fdfbff;--mat-sidenav-container-text-color: #44474e;--mat-sidenav-content-background-color: #fdfbff;--mat-sidenav-content-text-color: #1a1b1f;--mat-sidenav-scrim-color: rgba(45, 48, 56, .4);--mat-sidenav-container-shape: 16px;--mat-sidenav-container-elevation-shadow: none;--mat-sidenav-container-width: 360px;--mat-sidenav-container-divider-color: transparent;--mat-stepper-header-icon-foreground-color: #fdfbff;--mat-stepper-header-selected-state-icon-background-color: #005cbb;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #005cbb;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #fdfbff;--mat-stepper-line-color: #c4c6d0;--mat-stepper-header-hover-state-layer-color: rgba(47, 48, 51, .08);--mat-stepper-header-focus-state-layer-color: rgba(47, 48, 51, .12);--mat-stepper-header-label-text-color: #44474e;--mat-stepper-header-optional-label-text-color: #44474e;--mat-stepper-header-selected-state-label-text-color: #44474e;--mat-stepper-header-error-state-label-text-color: #ba1a1a;--mat-stepper-header-icon-background-color: #44474e;--mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;--mat-stepper-container-text-font: Roboto, sans-serif;--mat-stepper-header-label-text-font: Roboto, sans-serif;--mat-stepper-header-label-text-size: .875rem;--mat-stepper-header-label-text-weight: 500;--mat-stepper-header-error-state-label-text-size: .875rem;--mat-stepper-header-selected-state-label-text-size: .875rem;--mat-stepper-header-selected-state-label-text-weight: 500;--mat-stepper-header-height: 68px;--mat-stepper-header-focus-state-layer-shape: 12px;--mat-stepper-header-hover-state-layer-shape: 12px;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #1a1b1f;--mat-toolbar-container-background-color: #fdfbff;--mat-toolbar-container-text-color: #1a1b1f;--mat-toolbar-title-text-font: Roboto;--mat-toolbar-title-text-line-height: 1.75rem;--mat-toolbar-title-text-size: 1.375rem;--mat-toolbar-title-text-tracking: 0rem;--mat-toolbar-title-text-weight: 400;--mat-toolbar-standard-height: 60px;--mat-toolbar-mobile-height: 52px;--mat-tree-container-background-color: #fdfbff;--mat-tree-node-text-color: #1a1b1f;--mat-tree-node-text-font: Roboto, sans-serif;--mat-tree-node-text-size: 1rem;--mat-tree-node-text-weight: 400;--mat-tree-node-min-height: 44px;font-family:Roboto,Helvetica Neue,sans-serif}.mat-theme-loaded-marker{display:none}.survey-container-main p{margin:0}.survey-theme-azure-blue-light .mat-display-large,.survey-theme-azure-blue-light .mat-typography .mat-display-large,.survey-theme-azure-blue-light .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-display-medium,.survey-theme-azure-blue-light .mat-typography .mat-display-medium,.survey-theme-azure-blue-light .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-display-small,.survey-theme-azure-blue-light .mat-typography .mat-display-small,.survey-theme-azure-blue-light .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-headline-large,.survey-theme-azure-blue-light .mat-typography .mat-headline-large,.survey-theme-azure-blue-light .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-headline-medium,.survey-theme-azure-blue-light .mat-typography .mat-headline-medium,.survey-theme-azure-blue-light .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-headline-small,.survey-theme-azure-blue-light .mat-typography .mat-headline-small,.survey-theme-azure-blue-light .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-title-large,.survey-theme-azure-blue-light .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-azure-blue-light .mat-title-medium,.survey-theme-azure-blue-light .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-azure-blue-light .mat-title-small,.survey-theme-azure-blue-light .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-light .mat-body-large,.survey-theme-azure-blue-light .mat-typography .mat-body-large,.survey-theme-azure-blue-light .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-light .mat-body-large p,.survey-theme-azure-blue-light .mat-typography .mat-body-large p,.survey-theme-azure-blue-light .mat-typography p{margin:0 0 .75em}.survey-theme-azure-blue-light .mat-body-medium,.survey-theme-azure-blue-light .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-azure-blue-light .mat-body-small,.survey-theme-azure-blue-light .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-azure-blue-light .mat-label-large,.survey-theme-azure-blue-light .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-light .mat-label-medium,.survey-theme-azure-blue-light .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-light .mat-label-small,.survey-theme-azure-blue-light .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-light.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-azure-blue-light ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-azure-blue-light.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#e0e0ff}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#00006e}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#e0e0ff}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#00006e}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#dae2f9;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-azure-blue-light.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-azure-blue-dark{--mat-app-background-color: #1a1b1f;--mat-app-text-color: #e3e2e6;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(227, 226, 230, .1);--mat-option-selected-state-label-text-color: #dae2f9;--mat-option-label-text-color: #e3e2e6;--mat-option-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-option-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-option-selected-state-layer-color: #3e4759;--mat-optgroup-label-text-color: #c4c6d0;--mat-full-pseudo-checkbox-selected-icon-color: #abc7ff;--mat-full-pseudo-checkbox-selected-checkmark-color: #002f65;--mat-full-pseudo-checkbox-unselected-icon-color: #c4c6d0;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #1a1b1f;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(227, 226, 230, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(227, 226, 230, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #abc7ff;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(227, 226, 230, .38);--mdc-elevated-card-container-color: #1a1b1f;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #1a1b1f;--mdc-outlined-card-outline-color: #44474e;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #e3e2e6;--mdc-linear-progress-active-indicator-color: #abc7ff;--mdc-linear-progress-track-color: #44474e;--mdc-plain-tooltip-container-color: #e3e2e6;--mdc-plain-tooltip-supporting-text-color: #2f3033;--mdc-filled-text-field-caret-color: #abc7ff;--mdc-filled-text-field-focus-active-indicator-color: #abc7ff;--mdc-filled-text-field-focus-label-text-color: #abc7ff;--mdc-filled-text-field-container-color: #44474e;--mdc-filled-text-field-disabled-container-color: rgba(227, 226, 230, .04);--mdc-filled-text-field-label-text-color: #c4c6d0;--mdc-filled-text-field-hover-label-text-color: #c4c6d0;--mdc-filled-text-field-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-filled-text-field-input-text-color: #e3e2e6;--mdc-filled-text-field-disabled-input-text-color: rgba(227, 226, 230, .38);--mdc-filled-text-field-input-text-placeholder-color: #c4c6d0;--mdc-filled-text-field-error-hover-label-text-color: #ffdad6;--mdc-filled-text-field-error-focus-label-text-color: #ffb4ab;--mdc-filled-text-field-error-label-text-color: #ffb4ab;--mdc-filled-text-field-active-indicator-color: #c4c6d0;--mdc-filled-text-field-disabled-active-indicator-color: rgba(227, 226, 230, .38);--mdc-filled-text-field-hover-active-indicator-color: #e3e2e6;--mdc-filled-text-field-error-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-focus-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-hover-active-indicator-color: #ffdad6;--mdc-outlined-text-field-caret-color: #abc7ff;--mdc-outlined-text-field-focus-outline-color: #abc7ff;--mdc-outlined-text-field-focus-label-text-color: #abc7ff;--mdc-outlined-text-field-label-text-color: #c4c6d0;--mdc-outlined-text-field-hover-label-text-color: #e3e2e6;--mdc-outlined-text-field-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-outlined-text-field-input-text-color: #e3e2e6;--mdc-outlined-text-field-disabled-input-text-color: rgba(227, 226, 230, .38);--mdc-outlined-text-field-input-text-placeholder-color: #c4c6d0;--mdc-outlined-text-field-error-focus-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-hover-label-text-color: #ffdad6;--mdc-outlined-text-field-outline-color: #8e9099;--mdc-outlined-text-field-disabled-outline-color: rgba(227, 226, 230, .12);--mdc-outlined-text-field-hover-outline-color: #e3e2e6;--mdc-outlined-text-field-error-focus-outline-color: #ffb4ab;--mdc-outlined-text-field-error-hover-outline-color: #ffdad6;--mdc-outlined-text-field-error-outline-color: #ffb4ab;--mat-form-field-focus-select-arrow-color: #abc7ff;--mat-form-field-disabled-input-text-placeholder-color: rgba(227, 226, 230, .38);--mat-form-field-state-layer-color: #e3e2e6;--mat-form-field-error-text-color: #ffb4ab;--mat-form-field-select-option-text-color: #1a1b1f;--mat-form-field-select-disabled-option-text-color: rgba(26, 27, 31, .38);--mat-form-field-leading-icon-color: #c4c6d0;--mat-form-field-disabled-leading-icon-color: rgba(227, 226, 230, .38);--mat-form-field-trailing-icon-color: #c4c6d0;--mat-form-field-disabled-trailing-icon-color: rgba(227, 226, 230, .38);--mat-form-field-error-focus-trailing-icon-color: #ffb4ab;--mat-form-field-error-hover-trailing-icon-color: #ffdad6;--mat-form-field-error-trailing-icon-color: #ffb4ab;--mat-form-field-enabled-select-arrow-color: #c4c6d0;--mat-form-field-disabled-select-arrow-color: rgba(227, 226, 230, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #1e1f23;--mat-select-enabled-trigger-text-color: #e3e2e6;--mat-select-disabled-trigger-text-color: rgba(227, 226, 230, .38);--mat-select-placeholder-text-color: #c4c6d0;--mat-select-enabled-arrow-color: #c4c6d0;--mat-select-disabled-arrow-color: rgba(227, 226, 230, .38);--mat-select-focused-arrow-color: #abc7ff;--mat-select-invalid-arrow-color: #ffb4ab;--mat-autocomplete-background-color: #1e1f23;--mdc-dialog-container-color: #1a1b1f;--mdc-dialog-subhead-color: #e3e2e6;--mdc-dialog-supporting-text-color: #c4c6d0;--mdc-chip-outline-color: #8e9099;--mdc-chip-disabled-outline-color: rgba(227, 226, 230, .12);--mdc-chip-focus-outline-color: #c4c6d0;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-chip-elevated-selected-container-color: #3e4759;--mdc-chip-flat-disabled-selected-container-color: rgba(227, 226, 230, .12);--mdc-chip-focus-state-layer-color: #c4c6d0;--mdc-chip-hover-state-layer-color: #c4c6d0;--mdc-chip-selected-hover-state-layer-color: #dae2f9;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #dae2f9;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #c4c6d0;--mdc-chip-selected-label-text-color: #dae2f9;--mdc-chip-with-icon-icon-color: #c4c6d0;--mdc-chip-with-icon-disabled-icon-color: #e3e2e6;--mdc-chip-with-icon-selected-icon-color: #dae2f9;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #e3e2e6;--mdc-chip-with-trailing-icon-trailing-icon-color: #c4c6d0;--mat-chip-trailing-action-state-layer-color: #c4c6d0;--mat-chip-selected-trailing-action-state-layer-color: #dae2f9;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #e3e2e6;--mat-chip-selected-trailing-icon-color: #dae2f9;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #abc7ff;--mdc-switch-selected-handle-color: #002f65;--mdc-switch-selected-hover-state-layer-color: #abc7ff;--mdc-switch-selected-pressed-state-layer-color: #abc7ff;--mdc-switch-selected-focus-handle-color: #00458f;--mdc-switch-selected-hover-handle-color: #00458f;--mdc-switch-selected-pressed-handle-color: #00458f;--mdc-switch-selected-focus-track-color: #abc7ff;--mdc-switch-selected-hover-track-color: #abc7ff;--mdc-switch-selected-pressed-track-color: #abc7ff;--mdc-switch-selected-track-color: #abc7ff;--mdc-switch-disabled-selected-handle-color: #1a1b1f;--mdc-switch-disabled-selected-icon-color: #e3e2e6;--mdc-switch-disabled-selected-track-color: #e3e2e6;--mdc-switch-disabled-unselected-handle-color: #e3e2e6;--mdc-switch-disabled-unselected-icon-color: #44474e;--mdc-switch-disabled-unselected-track-color: #44474e;--mdc-switch-selected-icon-color: #d7e3ff;--mdc-switch-unselected-focus-handle-color: #c4c6d0;--mdc-switch-unselected-focus-state-layer-color: #e3e2e6;--mdc-switch-unselected-focus-track-color: #44474e;--mdc-switch-unselected-handle-color: #8e9099;--mdc-switch-unselected-hover-handle-color: #c4c6d0;--mdc-switch-unselected-hover-state-layer-color: #e3e2e6;--mdc-switch-unselected-hover-track-color: #44474e;--mdc-switch-unselected-icon-color: #44474e;--mdc-switch-unselected-pressed-handle-color: #c4c6d0;--mdc-switch-unselected-pressed-state-layer-color: #e3e2e6;--mdc-switch-unselected-pressed-track-color: #44474e;--mdc-switch-unselected-track-color: #44474e;--mat-switch-track-outline-color: #8e9099;--mat-switch-disabled-unselected-track-outline-color: #e3e2e6;--mat-switch-label-text-color: #e3e2e6;--mdc-radio-disabled-selected-icon-color: #e3e2e6;--mdc-radio-disabled-unselected-icon-color: #e3e2e6;--mdc-radio-unselected-hover-icon-color: #e3e2e6;--mdc-radio-unselected-icon-color: #c4c6d0;--mdc-radio-unselected-pressed-icon-color: #e3e2e6;--mdc-radio-selected-focus-icon-color: #abc7ff;--mdc-radio-selected-hover-icon-color: #abc7ff;--mdc-radio-selected-icon-color: #abc7ff;--mdc-radio-selected-pressed-icon-color: #abc7ff;--mat-radio-ripple-color: #e3e2e6;--mat-radio-checked-ripple-color: #abc7ff;--mat-radio-disabled-label-color: rgba(227, 226, 230, .38);--mat-radio-label-text-color: #e3e2e6;--mdc-slider-handle-color: #abc7ff;--mdc-slider-focus-handle-color: #abc7ff;--mdc-slider-hover-handle-color: #abc7ff;--mdc-slider-active-track-color: #abc7ff;--mdc-slider-inactive-track-color: #44474e;--mdc-slider-with-tick-marks-inactive-container-color: #c4c6d0;--mdc-slider-with-tick-marks-active-container-color: #002f65;--mdc-slider-disabled-active-track-color: #e3e2e6;--mdc-slider-disabled-handle-color: #e3e2e6;--mdc-slider-disabled-inactive-track-color: #e3e2e6;--mdc-slider-label-container-color: #abc7ff;--mdc-slider-label-label-text-color: #002f65;--mdc-slider-with-overlap-handle-outline-color: #002f65;--mdc-slider-with-tick-marks-disabled-container-color: #e3e2e6;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #abc7ff;--mat-slider-hover-state-layer-color: rgba(171, 199, 255, .05);--mat-slider-focus-state-layer-color: rgba(171, 199, 255, .2);--mat-menu-item-label-text-color: #e3e2e6;--mat-menu-item-icon-color: #c4c6d0;--mat-menu-item-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-menu-item-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-menu-container-color: #1e1f23;--mat-menu-divider-color: #44474e;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #00458f;--mdc-list-list-item-disabled-state-layer-color: #e3e2e6;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #e3e2e6;--mdc-list-list-item-supporting-text-color: #c4c6d0;--mdc-list-list-item-leading-icon-color: #c4c6d0;--mdc-list-list-item-trailing-supporting-text-color: #c4c6d0;--mdc-list-list-item-trailing-icon-color: #c4c6d0;--mdc-list-list-item-selected-trailing-icon-color: #abc7ff;--mdc-list-list-item-disabled-label-text-color: #e3e2e6;--mdc-list-list-item-disabled-leading-icon-color: #e3e2e6;--mdc-list-list-item-disabled-trailing-icon-color: #e3e2e6;--mdc-list-list-item-hover-label-text-color: #e3e2e6;--mdc-list-list-item-focus-label-text-color: #e3e2e6;--mdc-list-list-item-hover-state-layer-color: #e3e2e6;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #e3e2e6;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #3e4759;--mat-paginator-container-text-color: #e3e2e6;--mat-paginator-container-background-color: #1a1b1f;--mat-paginator-enabled-icon-color: #c4c6d0;--mat-paginator-disabled-icon-color: rgba(227, 226, 230, .38);--mdc-tab-indicator-active-indicator-color: #abc7ff;--mat-tab-header-divider-color: #44474e;--mat-tab-header-pagination-icon-color: #e3e2e6;--mat-tab-header-inactive-label-text-color: #e3e2e6;--mat-tab-header-active-label-text-color: #e3e2e6;--mat-tab-header-active-ripple-color: #e3e2e6;--mat-tab-header-inactive-ripple-color: #e3e2e6;--mat-tab-header-inactive-focus-label-text-color: #e3e2e6;--mat-tab-header-inactive-hover-label-text-color: #e3e2e6;--mat-tab-header-active-focus-label-text-color: #e3e2e6;--mat-tab-header-active-hover-label-text-color: #e3e2e6;--mat-tab-header-active-focus-indicator-color: #abc7ff;--mat-tab-header-active-hover-indicator-color: #abc7ff;--mdc-checkbox-disabled-selected-checkmark-color: #1a1b1f;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(227, 226, 230, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(227, 226, 230, .38);--mdc-checkbox-selected-checkmark-color: #002f65;--mdc-checkbox-selected-focus-icon-color: #abc7ff;--mdc-checkbox-selected-hover-icon-color: #abc7ff;--mdc-checkbox-selected-icon-color: #abc7ff;--mdc-checkbox-unselected-focus-icon-color: #e3e2e6;--mdc-checkbox-unselected-hover-icon-color: #e3e2e6;--mdc-checkbox-unselected-icon-color: #c4c6d0;--mdc-checkbox-selected-focus-state-layer-color: #abc7ff;--mdc-checkbox-selected-hover-state-layer-color: #abc7ff;--mdc-checkbox-selected-pressed-state-layer-color: #e3e2e6;--mdc-checkbox-unselected-focus-state-layer-color: #e3e2e6;--mdc-checkbox-unselected-hover-state-layer-color: #e3e2e6;--mdc-checkbox-unselected-pressed-state-layer-color: #abc7ff;--mat-checkbox-disabled-label-color: rgba(227, 226, 230, .38);--mat-checkbox-label-text-color: #e3e2e6;--mdc-text-button-label-text-color: #abc7ff;--mdc-text-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-protected-button-container-color: #1a1b1f;--mdc-protected-button-label-text-color: #abc7ff;--mdc-protected-button-disabled-container-color: rgba(227, 226, 230, .12);--mdc-protected-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #abc7ff;--mdc-filled-button-label-text-color: #002f65;--mdc-filled-button-disabled-container-color: rgba(227, 226, 230, .12);--mdc-filled-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-outlined-button-disabled-outline-color: rgba(227, 226, 230, .12);--mdc-outlined-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-outlined-button-label-text-color: #abc7ff;--mdc-outlined-button-outline-color: #8e9099;--mat-text-button-state-layer-color: #abc7ff;--mat-text-button-disabled-state-layer-color: #c4c6d0;--mat-text-button-ripple-color: rgba(171, 199, 255, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #abc7ff;--mat-protected-button-disabled-state-layer-color: #c4c6d0;--mat-protected-button-ripple-color: rgba(171, 199, 255, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #002f65;--mat-filled-button-disabled-state-layer-color: #c4c6d0;--mat-filled-button-ripple-color: rgba(0, 47, 101, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #abc7ff;--mat-outlined-button-disabled-state-layer-color: #c4c6d0;--mat-outlined-button-ripple-color: rgba(171, 199, 255, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #c4c6d0;--mdc-icon-button-disabled-icon-color: rgba(227, 226, 230, .38);--mat-icon-button-state-layer-color: #c4c6d0;--mat-icon-button-disabled-state-layer-color: #c4c6d0;--mat-icon-button-ripple-color: rgba(196, 198, 208, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #00458f;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #00458f;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #d7e3ff;--mat-fab-state-layer-color: #d7e3ff;--mat-fab-ripple-color: rgba(215, 227, 255, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(227, 226, 230, .12);--mat-fab-disabled-state-foreground-color: rgba(227, 226, 230, .38);--mat-fab-small-foreground-color: #d7e3ff;--mat-fab-small-state-layer-color: #d7e3ff;--mat-fab-small-ripple-color: rgba(215, 227, 255, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(227, 226, 230, .12);--mat-fab-small-disabled-state-foreground-color: rgba(227, 226, 230, .38);--mdc-snackbar-container-color: #e3e2e6;--mdc-snackbar-supporting-text-color: #2f3033;--mat-snack-bar-button-color: #005cbb;--mat-table-background-color: #1a1b1f;--mat-table-header-headline-color: #e3e2e6;--mat-table-row-item-label-text-color: #e3e2e6;--mat-table-row-item-outline-color: #44474e;--mdc-circular-progress-active-indicator-color: #abc7ff;--mat-badge-background-color: #ffb4ab;--mat-badge-text-color: #690005;--mat-badge-disabled-state-background-color: rgba(255, 180, 171, .38);--mat-badge-disabled-state-text-color: #690005;--mat-bottom-sheet-container-text-color: #e3e2e6;--mat-bottom-sheet-container-background-color: #1a1b1f;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #e3e2e6;--mat-standard-button-toggle-state-layer-color: #e3e2e6;--mat-standard-button-toggle-selected-state-background-color: #3e4759;--mat-standard-button-toggle-selected-state-text-color: #dae2f9;--mat-standard-button-toggle-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(227, 226, 230, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(227, 226, 230, .12);--mat-standard-button-toggle-divider-color: #8e9099;--mat-datepicker-calendar-date-selected-state-text-color: #002f65;--mat-datepicker-calendar-date-selected-state-background-color: #abc7ff;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #abc7ff;--mat-datepicker-calendar-date-focus-state-background-color: rgba(227, 226, 230, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(227, 226, 230, .08);--mat-datepicker-toggle-active-state-icon-color: #c4c6d0;--mat-datepicker-calendar-date-in-range-state-background-color: #00458f;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #0000ef;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #3e4759;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #bec6dc;--mat-datepicker-toggle-icon-color: #c4c6d0;--mat-datepicker-calendar-body-label-text-color: #e3e2e6;--mat-datepicker-calendar-period-button-text-color: #c4c6d0;--mat-datepicker-calendar-period-button-icon-color: #c4c6d0;--mat-datepicker-calendar-navigation-button-icon-color: #c4c6d0;--mat-datepicker-calendar-header-text-color: #c4c6d0;--mat-datepicker-calendar-date-today-outline-color: #abc7ff;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-date-text-color: #e3e2e6;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #abc7ff;--mat-datepicker-range-input-separator-color: #e3e2e6;--mat-datepicker-range-input-disabled-state-separator-color: rgba(227, 226, 230, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-container-background-color: #292a2d;--mat-datepicker-calendar-container-text-color: #e3e2e6;--mat-divider-color: #44474e;--mat-expansion-container-background-color: #1a1b1f;--mat-expansion-container-text-color: #e3e2e6;--mat-expansion-actions-divider-color: #44474e;--mat-expansion-header-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-expansion-header-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-expansion-header-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-expansion-header-text-color: #e3e2e6;--mat-expansion-header-description-color: #c4c6d0;--mat-expansion-header-indicator-color: #c4c6d0;--mat-sidenav-container-background-color: #1a1b1f;--mat-sidenav-container-text-color: #c4c6d0;--mat-sidenav-content-background-color: #1a1b1f;--mat-sidenav-content-text-color: #e3e2e6;--mat-sidenav-scrim-color: rgba(45, 48, 56, .4);--mat-stepper-header-icon-foreground-color: #1a1b1f;--mat-stepper-header-selected-state-icon-background-color: #abc7ff;--mat-stepper-header-selected-state-icon-foreground-color: #002f65;--mat-stepper-header-edit-state-icon-background-color: #abc7ff;--mat-stepper-header-edit-state-icon-foreground-color: #002f65;--mat-stepper-container-color: #1a1b1f;--mat-stepper-line-color: #44474e;--mat-stepper-header-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-stepper-header-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-stepper-header-label-text-color: #c4c6d0;--mat-stepper-header-optional-label-text-color: #c4c6d0;--mat-stepper-header-selected-state-label-text-color: #c4c6d0;--mat-stepper-header-error-state-label-text-color: #ffb4ab;--mat-stepper-header-icon-background-color: #c4c6d0;--mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;--mat-sort-arrow-color: #e3e2e6;--mat-toolbar-container-background-color: #1a1b1f;--mat-toolbar-container-text-color: #e3e2e6;--mat-tree-container-background-color: #1a1b1f;--mat-tree-node-text-color: #e3e2e6}.survey-theme-azure-blue-dark .mat-display-large,.survey-theme-azure-blue-dark .mat-typography .mat-display-large,.survey-theme-azure-blue-dark .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-display-medium,.survey-theme-azure-blue-dark .mat-typography .mat-display-medium,.survey-theme-azure-blue-dark .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-display-small,.survey-theme-azure-blue-dark .mat-typography .mat-display-small,.survey-theme-azure-blue-dark .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-headline-large,.survey-theme-azure-blue-dark .mat-typography .mat-headline-large,.survey-theme-azure-blue-dark .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-headline-medium,.survey-theme-azure-blue-dark .mat-typography .mat-headline-medium,.survey-theme-azure-blue-dark .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-headline-small,.survey-theme-azure-blue-dark .mat-typography .mat-headline-small,.survey-theme-azure-blue-dark .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-title-large,.survey-theme-azure-blue-dark .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-azure-blue-dark .mat-title-medium,.survey-theme-azure-blue-dark .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-azure-blue-dark .mat-title-small,.survey-theme-azure-blue-dark .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-dark .mat-body-large,.survey-theme-azure-blue-dark .mat-typography .mat-body-large,.survey-theme-azure-blue-dark .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-dark .mat-body-large p,.survey-theme-azure-blue-dark .mat-typography .mat-body-large p,.survey-theme-azure-blue-dark .mat-typography p{margin:0 0 .75em}.survey-theme-azure-blue-dark .mat-body-medium,.survey-theme-azure-blue-dark .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-azure-blue-dark .mat-body-small,.survey-theme-azure-blue-dark .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-azure-blue-dark .mat-label-large,.survey-theme-azure-blue-dark .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-dark .mat-label-medium,.survey-theme-azure-blue-dark .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-dark .mat-label-small,.survey-theme-azure-blue-dark .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-dark.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-azure-blue-dark ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-azure-blue-dark.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#0000ef}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#e0e0ff}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#0000ef}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#e0e0ff}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#3e4759;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-azure-blue-dark.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-cyan-orange-light{--mat-app-background-color: #fafdfc;--mat-app-text-color: #191c1c;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(25, 28, 28, .1);--mat-option-selected-state-label-text-color: #051f1f;--mat-option-label-text-color: #191c1c;--mat-option-hover-state-layer-color: rgba(25, 28, 28, .08);--mat-option-focus-state-layer-color: rgba(25, 28, 28, .12);--mat-option-selected-state-layer-color: #cce8e7;--mat-optgroup-label-text-color: #3f4948;--mat-full-pseudo-checkbox-selected-icon-color: #006a6a;--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;--mat-full-pseudo-checkbox-unselected-icon-color: #3f4948;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafdfc;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(25, 28, 28, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(25, 28, 28, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #006a6a;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(25, 28, 28, .38);--mdc-elevated-card-container-color: #fafdfc;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #fafdfc;--mdc-outlined-card-outline-color: #bec9c8;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #191c1c;--mdc-linear-progress-active-indicator-color: #006a6a;--mdc-linear-progress-track-color: #dae5e4;--mdc-plain-tooltip-container-color: #2d3131;--mdc-plain-tooltip-supporting-text-color: #eff1f0;--mdc-filled-text-field-caret-color: #006a6a;--mdc-filled-text-field-focus-active-indicator-color: #006a6a;--mdc-filled-text-field-focus-label-text-color: #006a6a;--mdc-filled-text-field-container-color: #dae5e4;--mdc-filled-text-field-disabled-container-color: rgba(25, 28, 28, .04);--mdc-filled-text-field-label-text-color: #3f4948;--mdc-filled-text-field-hover-label-text-color: #3f4948;--mdc-filled-text-field-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-filled-text-field-input-text-color: #191c1c;--mdc-filled-text-field-disabled-input-text-color: rgba(25, 28, 28, .38);--mdc-filled-text-field-input-text-placeholder-color: #3f4948;--mdc-filled-text-field-error-hover-label-text-color: #410002;--mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;--mdc-filled-text-field-error-label-text-color: #ba1a1a;--mdc-filled-text-field-active-indicator-color: #3f4948;--mdc-filled-text-field-disabled-active-indicator-color: rgba(25, 28, 28, .38);--mdc-filled-text-field-hover-active-indicator-color: #191c1c;--mdc-filled-text-field-error-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-hover-active-indicator-color: #410002;--mdc-outlined-text-field-caret-color: #006a6a;--mdc-outlined-text-field-focus-outline-color: #006a6a;--mdc-outlined-text-field-focus-label-text-color: #006a6a;--mdc-outlined-text-field-label-text-color: #3f4948;--mdc-outlined-text-field-hover-label-text-color: #191c1c;--mdc-outlined-text-field-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-outlined-text-field-input-text-color: #191c1c;--mdc-outlined-text-field-disabled-input-text-color: rgba(25, 28, 28, .38);--mdc-outlined-text-field-input-text-placeholder-color: #3f4948;--mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-hover-label-text-color: #410002;--mdc-outlined-text-field-outline-color: #6f7979;--mdc-outlined-text-field-disabled-outline-color: rgba(25, 28, 28, .12);--mdc-outlined-text-field-hover-outline-color: #191c1c;--mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;--mdc-outlined-text-field-error-hover-outline-color: #410002;--mdc-outlined-text-field-error-outline-color: #ba1a1a;--mat-form-field-focus-select-arrow-color: #006a6a;--mat-form-field-disabled-input-text-placeholder-color: rgba(25, 28, 28, .38);--mat-form-field-state-layer-color: #191c1c;--mat-form-field-error-text-color: #ba1a1a;--mat-form-field-select-option-text-color: #191c1c;--mat-form-field-select-disabled-option-text-color: rgba(25, 28, 28, .38);--mat-form-field-leading-icon-color: #3f4948;--mat-form-field-disabled-leading-icon-color: rgba(25, 28, 28, .38);--mat-form-field-trailing-icon-color: #3f4948;--mat-form-field-disabled-trailing-icon-color: rgba(25, 28, 28, .38);--mat-form-field-error-focus-trailing-icon-color: #ba1a1a;--mat-form-field-error-hover-trailing-icon-color: #410002;--mat-form-field-error-trailing-icon-color: #ba1a1a;--mat-form-field-enabled-select-arrow-color: #3f4948;--mat-form-field-disabled-select-arrow-color: rgba(25, 28, 28, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #eceeed;--mat-select-enabled-trigger-text-color: #191c1c;--mat-select-disabled-trigger-text-color: rgba(25, 28, 28, .38);--mat-select-placeholder-text-color: #3f4948;--mat-select-enabled-arrow-color: #3f4948;--mat-select-disabled-arrow-color: rgba(25, 28, 28, .38);--mat-select-focused-arrow-color: #006a6a;--mat-select-invalid-arrow-color: #ba1a1a;--mat-autocomplete-background-color: #eceeed;--mdc-dialog-container-color: #fafdfc;--mdc-dialog-subhead-color: #191c1c;--mdc-dialog-supporting-text-color: #3f4948;--mdc-chip-outline-color: #6f7979;--mdc-chip-disabled-outline-color: rgba(25, 28, 28, .12);--mdc-chip-focus-outline-color: #3f4948;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-chip-elevated-selected-container-color: #cce8e7;--mdc-chip-flat-disabled-selected-container-color: rgba(25, 28, 28, .12);--mdc-chip-focus-state-layer-color: #3f4948;--mdc-chip-hover-state-layer-color: #3f4948;--mdc-chip-selected-hover-state-layer-color: #051f1f;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #051f1f;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #3f4948;--mdc-chip-selected-label-text-color: #051f1f;--mdc-chip-with-icon-icon-color: #3f4948;--mdc-chip-with-icon-disabled-icon-color: #191c1c;--mdc-chip-with-icon-selected-icon-color: #051f1f;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #191c1c;--mdc-chip-with-trailing-icon-trailing-icon-color: #3f4948;--mat-chip-trailing-action-state-layer-color: #3f4948;--mat-chip-selected-trailing-action-state-layer-color: #051f1f;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #191c1c;--mat-chip-selected-trailing-icon-color: #051f1f;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #006a6a;--mdc-switch-selected-handle-color: #ffffff;--mdc-switch-selected-hover-state-layer-color: #006a6a;--mdc-switch-selected-pressed-state-layer-color: #006a6a;--mdc-switch-selected-focus-handle-color: #00fbfb;--mdc-switch-selected-hover-handle-color: #00fbfb;--mdc-switch-selected-pressed-handle-color: #00fbfb;--mdc-switch-selected-focus-track-color: #006a6a;--mdc-switch-selected-hover-track-color: #006a6a;--mdc-switch-selected-pressed-track-color: #006a6a;--mdc-switch-selected-track-color: #006a6a;--mdc-switch-disabled-selected-handle-color: #fafdfc;--mdc-switch-disabled-selected-icon-color: #191c1c;--mdc-switch-disabled-selected-track-color: #191c1c;--mdc-switch-disabled-unselected-handle-color: #191c1c;--mdc-switch-disabled-unselected-icon-color: #dae5e4;--mdc-switch-disabled-unselected-track-color: #dae5e4;--mdc-switch-selected-icon-color: #002020;--mdc-switch-unselected-focus-handle-color: #3f4948;--mdc-switch-unselected-focus-state-layer-color: #191c1c;--mdc-switch-unselected-focus-track-color: #dae5e4;--mdc-switch-unselected-handle-color: #6f7979;--mdc-switch-unselected-hover-handle-color: #3f4948;--mdc-switch-unselected-hover-state-layer-color: #191c1c;--mdc-switch-unselected-hover-track-color: #dae5e4;--mdc-switch-unselected-icon-color: #dae5e4;--mdc-switch-unselected-pressed-handle-color: #3f4948;--mdc-switch-unselected-pressed-state-layer-color: #191c1c;--mdc-switch-unselected-pressed-track-color: #dae5e4;--mdc-switch-unselected-track-color: #dae5e4;--mat-switch-track-outline-color: #6f7979;--mat-switch-disabled-unselected-track-outline-color: #191c1c;--mat-switch-label-text-color: #191c1c;--mdc-radio-disabled-selected-icon-color: #191c1c;--mdc-radio-disabled-unselected-icon-color: #191c1c;--mdc-radio-unselected-hover-icon-color: #191c1c;--mdc-radio-unselected-icon-color: #3f4948;--mdc-radio-unselected-pressed-icon-color: #191c1c;--mdc-radio-selected-focus-icon-color: #006a6a;--mdc-radio-selected-hover-icon-color: #006a6a;--mdc-radio-selected-icon-color: #006a6a;--mdc-radio-selected-pressed-icon-color: #006a6a;--mat-radio-ripple-color: #191c1c;--mat-radio-checked-ripple-color: #006a6a;--mat-radio-disabled-label-color: rgba(25, 28, 28, .38);--mat-radio-label-text-color: #191c1c;--mdc-slider-handle-color: #006a6a;--mdc-slider-focus-handle-color: #006a6a;--mdc-slider-hover-handle-color: #006a6a;--mdc-slider-active-track-color: #006a6a;--mdc-slider-inactive-track-color: #dae5e4;--mdc-slider-with-tick-marks-inactive-container-color: #3f4948;--mdc-slider-with-tick-marks-active-container-color: #ffffff;--mdc-slider-disabled-active-track-color: #191c1c;--mdc-slider-disabled-handle-color: #191c1c;--mdc-slider-disabled-inactive-track-color: #191c1c;--mdc-slider-label-container-color: #006a6a;--mdc-slider-label-label-text-color: #ffffff;--mdc-slider-with-overlap-handle-outline-color: #ffffff;--mdc-slider-with-tick-marks-disabled-container-color: #191c1c;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #006a6a;--mat-slider-hover-state-layer-color: rgba(0, 106, 106, .05);--mat-slider-focus-state-layer-color: rgba(0, 106, 106, .2);--mat-menu-item-label-text-color: #191c1c;--mat-menu-item-icon-color: #3f4948;--mat-menu-item-hover-state-layer-color: rgba(25, 28, 28, .08);--mat-menu-item-focus-state-layer-color: rgba(25, 28, 28, .12);--mat-menu-container-color: #eceeed;--mat-menu-divider-color: #dae5e4;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #00fbfb;--mdc-list-list-item-disabled-state-layer-color: #191c1c;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #191c1c;--mdc-list-list-item-supporting-text-color: #3f4948;--mdc-list-list-item-leading-icon-color: #3f4948;--mdc-list-list-item-trailing-supporting-text-color: #3f4948;--mdc-list-list-item-trailing-icon-color: #3f4948;--mdc-list-list-item-selected-trailing-icon-color: #006a6a;--mdc-list-list-item-disabled-label-text-color: #191c1c;--mdc-list-list-item-disabled-leading-icon-color: #191c1c;--mdc-list-list-item-disabled-trailing-icon-color: #191c1c;--mdc-list-list-item-hover-label-text-color: #191c1c;--mdc-list-list-item-focus-label-text-color: #191c1c;--mdc-list-list-item-hover-state-layer-color: #191c1c;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #191c1c;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #cce8e7;--mat-paginator-container-text-color: #191c1c;--mat-paginator-container-background-color: #fafdfc;--mat-paginator-enabled-icon-color: #3f4948;--mat-paginator-disabled-icon-color: rgba(25, 28, 28, .38);--mdc-tab-indicator-active-indicator-color: #006a6a;--mat-tab-header-divider-color: #dae5e4;--mat-tab-header-pagination-icon-color: #191c1c;--mat-tab-header-inactive-label-text-color: #191c1c;--mat-tab-header-active-label-text-color: #191c1c;--mat-tab-header-active-ripple-color: #191c1c;--mat-tab-header-inactive-ripple-color: #191c1c;--mat-tab-header-inactive-focus-label-text-color: #191c1c;--mat-tab-header-inactive-hover-label-text-color: #191c1c;--mat-tab-header-active-focus-label-text-color: #191c1c;--mat-tab-header-active-hover-label-text-color: #191c1c;--mat-tab-header-active-focus-indicator-color: #006a6a;--mat-tab-header-active-hover-indicator-color: #006a6a;--mdc-checkbox-disabled-selected-checkmark-color: #fafdfc;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(25, 28, 28, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(25, 28, 28, .38);--mdc-checkbox-selected-checkmark-color: #ffffff;--mdc-checkbox-selected-focus-icon-color: #006a6a;--mdc-checkbox-selected-hover-icon-color: #006a6a;--mdc-checkbox-selected-icon-color: #006a6a;--mdc-checkbox-unselected-focus-icon-color: #191c1c;--mdc-checkbox-unselected-hover-icon-color: #191c1c;--mdc-checkbox-unselected-icon-color: #3f4948;--mdc-checkbox-selected-focus-state-layer-color: #006a6a;--mdc-checkbox-selected-hover-state-layer-color: #006a6a;--mdc-checkbox-selected-pressed-state-layer-color: #191c1c;--mdc-checkbox-unselected-focus-state-layer-color: #191c1c;--mdc-checkbox-unselected-hover-state-layer-color: #191c1c;--mdc-checkbox-unselected-pressed-state-layer-color: #006a6a;--mat-checkbox-disabled-label-color: rgba(25, 28, 28, .38);--mat-checkbox-label-text-color: #191c1c;--mdc-text-button-label-text-color: #006a6a;--mdc-text-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-protected-button-container-color: #fafdfc;--mdc-protected-button-label-text-color: #006a6a;--mdc-protected-button-disabled-container-color: rgba(25, 28, 28, .12);--mdc-protected-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #006a6a;--mdc-filled-button-label-text-color: #ffffff;--mdc-filled-button-disabled-container-color: rgba(25, 28, 28, .12);--mdc-filled-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-outlined-button-disabled-outline-color: rgba(25, 28, 28, .12);--mdc-outlined-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-outlined-button-label-text-color: #006a6a;--mdc-outlined-button-outline-color: #6f7979;--mat-text-button-state-layer-color: #006a6a;--mat-text-button-disabled-state-layer-color: #3f4948;--mat-text-button-ripple-color: rgba(0, 106, 106, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #006a6a;--mat-protected-button-disabled-state-layer-color: #3f4948;--mat-protected-button-ripple-color: rgba(0, 106, 106, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #ffffff;--mat-filled-button-disabled-state-layer-color: #3f4948;--mat-filled-button-ripple-color: rgba(255, 255, 255, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #006a6a;--mat-outlined-button-disabled-state-layer-color: #3f4948;--mat-outlined-button-ripple-color: rgba(0, 106, 106, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #3f4948;--mdc-icon-button-disabled-icon-color: rgba(25, 28, 28, .38);--mat-icon-button-state-layer-color: #3f4948;--mat-icon-button-disabled-state-layer-color: #3f4948;--mat-icon-button-ripple-color: rgba(63, 73, 72, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #00fbfb;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #00fbfb;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #002020;--mat-fab-state-layer-color: #002020;--mat-fab-ripple-color: rgba(0, 32, 32, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(25, 28, 28, .12);--mat-fab-disabled-state-foreground-color: rgba(25, 28, 28, .38);--mat-fab-small-foreground-color: #002020;--mat-fab-small-state-layer-color: #002020;--mat-fab-small-ripple-color: rgba(0, 32, 32, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(25, 28, 28, .12);--mat-fab-small-disabled-state-foreground-color: rgba(25, 28, 28, .38);--mdc-snackbar-container-color: #2d3131;--mdc-snackbar-supporting-text-color: #eff1f0;--mat-snack-bar-button-color: #00dddd;--mat-table-background-color: #fafdfc;--mat-table-header-headline-color: #191c1c;--mat-table-row-item-label-text-color: #191c1c;--mat-table-row-item-outline-color: #bec9c8;--mdc-circular-progress-active-indicator-color: #006a6a;--mat-badge-background-color: #ba1a1a;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: rgba(186, 26, 26, .38);--mat-badge-disabled-state-text-color: #ffffff;--mat-bottom-sheet-container-text-color: #191c1c;--mat-bottom-sheet-container-background-color: #f2f4f3;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #191c1c;--mat-standard-button-toggle-state-layer-color: #191c1c;--mat-standard-button-toggle-selected-state-background-color: #cce8e7;--mat-standard-button-toggle-selected-state-text-color: #051f1f;--mat-standard-button-toggle-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(25, 28, 28, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(25, 28, 28, .12);--mat-standard-button-toggle-divider-color: #6f7979;--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #006a6a;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #006a6a;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 28, 28, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 28, 28, .08);--mat-datepicker-toggle-active-state-icon-color: #3f4948;--mat-datepicker-calendar-date-in-range-state-background-color: #00fbfb;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #ffdcc7;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #cce8e7;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #4a6363;--mat-datepicker-toggle-icon-color: #3f4948;--mat-datepicker-calendar-body-label-text-color: #191c1c;--mat-datepicker-calendar-period-button-text-color: #3f4948;--mat-datepicker-calendar-period-button-icon-color: #3f4948;--mat-datepicker-calendar-navigation-button-icon-color: #3f4948;--mat-datepicker-calendar-header-text-color: #3f4948;--mat-datepicker-calendar-date-today-outline-color: #006a6a;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-date-text-color: #191c1c;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #006a6a;--mat-datepicker-range-input-separator-color: #191c1c;--mat-datepicker-range-input-disabled-state-separator-color: rgba(25, 28, 28, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-container-background-color: #e6e9e8;--mat-datepicker-calendar-container-text-color: #191c1c;--mat-divider-color: #bec9c8;--mat-expansion-container-background-color: #fafdfc;--mat-expansion-container-text-color: #191c1c;--mat-expansion-actions-divider-color: #bec9c8;--mat-expansion-header-hover-state-layer-color: rgba(25, 28, 28, .08);--mat-expansion-header-focus-state-layer-color: rgba(25, 28, 28, .12);--mat-expansion-header-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-expansion-header-text-color: #191c1c;--mat-expansion-header-description-color: #3f4948;--mat-expansion-header-indicator-color: #3f4948;--mat-sidenav-container-background-color: #fafdfc;--mat-sidenav-container-text-color: #3f4948;--mat-sidenav-content-background-color: #fafdfc;--mat-sidenav-content-text-color: #191c1c;--mat-sidenav-scrim-color: rgba(41, 50, 50, .4);--mat-stepper-header-icon-foreground-color: #fafdfc;--mat-stepper-header-selected-state-icon-background-color: #006a6a;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #006a6a;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #fafdfc;--mat-stepper-line-color: #bec9c8;--mat-stepper-header-hover-state-layer-color: rgba(45, 49, 49, .08);--mat-stepper-header-focus-state-layer-color: rgba(45, 49, 49, .12);--mat-stepper-header-label-text-color: #3f4948;--mat-stepper-header-optional-label-text-color: #3f4948;--mat-stepper-header-selected-state-label-text-color: #3f4948;--mat-stepper-header-error-state-label-text-color: #ba1a1a;--mat-stepper-header-icon-background-color: #3f4948;--mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;--mat-sort-arrow-color: #191c1c;--mat-toolbar-container-background-color: #fafdfc;--mat-toolbar-container-text-color: #191c1c;--mat-tree-container-background-color: #fafdfc;--mat-tree-node-text-color: #191c1c}.survey-theme-cyan-orange-light .mat-display-large,.survey-theme-cyan-orange-light .mat-typography .mat-display-large,.survey-theme-cyan-orange-light .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-display-medium,.survey-theme-cyan-orange-light .mat-typography .mat-display-medium,.survey-theme-cyan-orange-light .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-display-small,.survey-theme-cyan-orange-light .mat-typography .mat-display-small,.survey-theme-cyan-orange-light .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-headline-large,.survey-theme-cyan-orange-light .mat-typography .mat-headline-large,.survey-theme-cyan-orange-light .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-headline-medium,.survey-theme-cyan-orange-light .mat-typography .mat-headline-medium,.survey-theme-cyan-orange-light .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-headline-small,.survey-theme-cyan-orange-light .mat-typography .mat-headline-small,.survey-theme-cyan-orange-light .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-title-large,.survey-theme-cyan-orange-light .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-cyan-orange-light .mat-title-medium,.survey-theme-cyan-orange-light .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-cyan-orange-light .mat-title-small,.survey-theme-cyan-orange-light .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-light .mat-body-large,.survey-theme-cyan-orange-light .mat-typography .mat-body-large,.survey-theme-cyan-orange-light .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-light .mat-body-large p,.survey-theme-cyan-orange-light .mat-typography .mat-body-large p,.survey-theme-cyan-orange-light .mat-typography p{margin:0 0 .75em}.survey-theme-cyan-orange-light .mat-body-medium,.survey-theme-cyan-orange-light .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-cyan-orange-light .mat-body-small,.survey-theme-cyan-orange-light .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-cyan-orange-light .mat-label-large,.survey-theme-cyan-orange-light .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-light .mat-label-medium,.survey-theme-cyan-orange-light .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-light .mat-label-small,.survey-theme-cyan-orange-light .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-light.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-cyan-orange-light ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-cyan-orange-light.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#ffdcc7}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#311300}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#ffdcc7}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#311300}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#cce8e7;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-cyan-orange-light.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-cyan-orange-dark{--mat-app-background-color: #191c1c;--mat-app-text-color: #e0e3e2;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(224, 227, 226, .1);--mat-option-selected-state-label-text-color: #cce8e7;--mat-option-label-text-color: #e0e3e2;--mat-option-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-option-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-option-selected-state-layer-color: #324b4b;--mat-optgroup-label-text-color: #bec9c8;--mat-full-pseudo-checkbox-selected-icon-color: #00dddd;--mat-full-pseudo-checkbox-selected-checkmark-color: #003737;--mat-full-pseudo-checkbox-unselected-icon-color: #bec9c8;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #191c1c;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(224, 227, 226, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(224, 227, 226, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #00dddd;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(224, 227, 226, .38);--mdc-elevated-card-container-color: #191c1c;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #191c1c;--mdc-outlined-card-outline-color: #3f4948;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #e0e3e2;--mdc-linear-progress-active-indicator-color: #00dddd;--mdc-linear-progress-track-color: #3f4948;--mdc-plain-tooltip-container-color: #e0e3e2;--mdc-plain-tooltip-supporting-text-color: #2d3131;--mdc-filled-text-field-caret-color: #00dddd;--mdc-filled-text-field-focus-active-indicator-color: #00dddd;--mdc-filled-text-field-focus-label-text-color: #00dddd;--mdc-filled-text-field-container-color: #3f4948;--mdc-filled-text-field-disabled-container-color: rgba(224, 227, 226, .04);--mdc-filled-text-field-label-text-color: #bec9c8;--mdc-filled-text-field-hover-label-text-color: #bec9c8;--mdc-filled-text-field-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-filled-text-field-input-text-color: #e0e3e2;--mdc-filled-text-field-disabled-input-text-color: rgba(224, 227, 226, .38);--mdc-filled-text-field-input-text-placeholder-color: #bec9c8;--mdc-filled-text-field-error-hover-label-text-color: #ffdad6;--mdc-filled-text-field-error-focus-label-text-color: #ffb4ab;--mdc-filled-text-field-error-label-text-color: #ffb4ab;--mdc-filled-text-field-active-indicator-color: #bec9c8;--mdc-filled-text-field-disabled-active-indicator-color: rgba(224, 227, 226, .38);--mdc-filled-text-field-hover-active-indicator-color: #e0e3e2;--mdc-filled-text-field-error-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-focus-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-hover-active-indicator-color: #ffdad6;--mdc-outlined-text-field-caret-color: #00dddd;--mdc-outlined-text-field-focus-outline-color: #00dddd;--mdc-outlined-text-field-focus-label-text-color: #00dddd;--mdc-outlined-text-field-label-text-color: #bec9c8;--mdc-outlined-text-field-hover-label-text-color: #e0e3e2;--mdc-outlined-text-field-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-outlined-text-field-input-text-color: #e0e3e2;--mdc-outlined-text-field-disabled-input-text-color: rgba(224, 227, 226, .38);--mdc-outlined-text-field-input-text-placeholder-color: #bec9c8;--mdc-outlined-text-field-error-focus-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-hover-label-text-color: #ffdad6;--mdc-outlined-text-field-outline-color: #889392;--mdc-outlined-text-field-disabled-outline-color: rgba(224, 227, 226, .12);--mdc-outlined-text-field-hover-outline-color: #e0e3e2;--mdc-outlined-text-field-error-focus-outline-color: #ffb4ab;--mdc-outlined-text-field-error-hover-outline-color: #ffdad6;--mdc-outlined-text-field-error-outline-color: #ffb4ab;--mat-form-field-focus-select-arrow-color: #00dddd;--mat-form-field-disabled-input-text-placeholder-color: rgba(224, 227, 226, .38);--mat-form-field-state-layer-color: #e0e3e2;--mat-form-field-error-text-color: #ffb4ab;--mat-form-field-select-option-text-color: #191c1c;--mat-form-field-select-disabled-option-text-color: rgba(25, 28, 28, .38);--mat-form-field-leading-icon-color: #bec9c8;--mat-form-field-disabled-leading-icon-color: rgba(224, 227, 226, .38);--mat-form-field-trailing-icon-color: #bec9c8;--mat-form-field-disabled-trailing-icon-color: rgba(224, 227, 226, .38);--mat-form-field-error-focus-trailing-icon-color: #ffb4ab;--mat-form-field-error-hover-trailing-icon-color: #ffdad6;--mat-form-field-error-trailing-icon-color: #ffb4ab;--mat-form-field-enabled-select-arrow-color: #bec9c8;--mat-form-field-disabled-select-arrow-color: rgba(224, 227, 226, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #1d2020;--mat-select-enabled-trigger-text-color: #e0e3e2;--mat-select-disabled-trigger-text-color: rgba(224, 227, 226, .38);--mat-select-placeholder-text-color: #bec9c8;--mat-select-enabled-arrow-color: #bec9c8;--mat-select-disabled-arrow-color: rgba(224, 227, 226, .38);--mat-select-focused-arrow-color: #00dddd;--mat-select-invalid-arrow-color: #ffb4ab;--mat-autocomplete-background-color: #1d2020;--mdc-dialog-container-color: #191c1c;--mdc-dialog-subhead-color: #e0e3e2;--mdc-dialog-supporting-text-color: #bec9c8;--mdc-chip-outline-color: #889392;--mdc-chip-disabled-outline-color: rgba(224, 227, 226, .12);--mdc-chip-focus-outline-color: #bec9c8;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-chip-elevated-selected-container-color: #324b4b;--mdc-chip-flat-disabled-selected-container-color: rgba(224, 227, 226, .12);--mdc-chip-focus-state-layer-color: #bec9c8;--mdc-chip-hover-state-layer-color: #bec9c8;--mdc-chip-selected-hover-state-layer-color: #cce8e7;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #cce8e7;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #bec9c8;--mdc-chip-selected-label-text-color: #cce8e7;--mdc-chip-with-icon-icon-color: #bec9c8;--mdc-chip-with-icon-disabled-icon-color: #e0e3e2;--mdc-chip-with-icon-selected-icon-color: #cce8e7;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #e0e3e2;--mdc-chip-with-trailing-icon-trailing-icon-color: #bec9c8;--mat-chip-trailing-action-state-layer-color: #bec9c8;--mat-chip-selected-trailing-action-state-layer-color: #cce8e7;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #e0e3e2;--mat-chip-selected-trailing-icon-color: #cce8e7;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #00dddd;--mdc-switch-selected-handle-color: #003737;--mdc-switch-selected-hover-state-layer-color: #00dddd;--mdc-switch-selected-pressed-state-layer-color: #00dddd;--mdc-switch-selected-focus-handle-color: #004f4f;--mdc-switch-selected-hover-handle-color: #004f4f;--mdc-switch-selected-pressed-handle-color: #004f4f;--mdc-switch-selected-focus-track-color: #00dddd;--mdc-switch-selected-hover-track-color: #00dddd;--mdc-switch-selected-pressed-track-color: #00dddd;--mdc-switch-selected-track-color: #00dddd;--mdc-switch-disabled-selected-handle-color: #191c1c;--mdc-switch-disabled-selected-icon-color: #e0e3e2;--mdc-switch-disabled-selected-track-color: #e0e3e2;--mdc-switch-disabled-unselected-handle-color: #e0e3e2;--mdc-switch-disabled-unselected-icon-color: #3f4948;--mdc-switch-disabled-unselected-track-color: #3f4948;--mdc-switch-selected-icon-color: #00fbfb;--mdc-switch-unselected-focus-handle-color: #bec9c8;--mdc-switch-unselected-focus-state-layer-color: #e0e3e2;--mdc-switch-unselected-focus-track-color: #3f4948;--mdc-switch-unselected-handle-color: #889392;--mdc-switch-unselected-hover-handle-color: #bec9c8;--mdc-switch-unselected-hover-state-layer-color: #e0e3e2;--mdc-switch-unselected-hover-track-color: #3f4948;--mdc-switch-unselected-icon-color: #3f4948;--mdc-switch-unselected-pressed-handle-color: #bec9c8;--mdc-switch-unselected-pressed-state-layer-color: #e0e3e2;--mdc-switch-unselected-pressed-track-color: #3f4948;--mdc-switch-unselected-track-color: #3f4948;--mat-switch-track-outline-color: #889392;--mat-switch-disabled-unselected-track-outline-color: #e0e3e2;--mat-switch-label-text-color: #e0e3e2;--mdc-radio-disabled-selected-icon-color: #e0e3e2;--mdc-radio-disabled-unselected-icon-color: #e0e3e2;--mdc-radio-unselected-hover-icon-color: #e0e3e2;--mdc-radio-unselected-icon-color: #bec9c8;--mdc-radio-unselected-pressed-icon-color: #e0e3e2;--mdc-radio-selected-focus-icon-color: #00dddd;--mdc-radio-selected-hover-icon-color: #00dddd;--mdc-radio-selected-icon-color: #00dddd;--mdc-radio-selected-pressed-icon-color: #00dddd;--mat-radio-ripple-color: #e0e3e2;--mat-radio-checked-ripple-color: #00dddd;--mat-radio-disabled-label-color: rgba(224, 227, 226, .38);--mat-radio-label-text-color: #e0e3e2;--mdc-slider-handle-color: #00dddd;--mdc-slider-focus-handle-color: #00dddd;--mdc-slider-hover-handle-color: #00dddd;--mdc-slider-active-track-color: #00dddd;--mdc-slider-inactive-track-color: #3f4948;--mdc-slider-with-tick-marks-inactive-container-color: #bec9c8;--mdc-slider-with-tick-marks-active-container-color: #003737;--mdc-slider-disabled-active-track-color: #e0e3e2;--mdc-slider-disabled-handle-color: #e0e3e2;--mdc-slider-disabled-inactive-track-color: #e0e3e2;--mdc-slider-label-container-color: #00dddd;--mdc-slider-label-label-text-color: #003737;--mdc-slider-with-overlap-handle-outline-color: #003737;--mdc-slider-with-tick-marks-disabled-container-color: #e0e3e2;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #00dddd;--mat-slider-hover-state-layer-color: rgba(0, 221, 221, .05);--mat-slider-focus-state-layer-color: rgba(0, 221, 221, .2);--mat-menu-item-label-text-color: #e0e3e2;--mat-menu-item-icon-color: #bec9c8;--mat-menu-item-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-menu-item-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-menu-container-color: #1d2020;--mat-menu-divider-color: #3f4948;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #004f4f;--mdc-list-list-item-disabled-state-layer-color: #e0e3e2;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #e0e3e2;--mdc-list-list-item-supporting-text-color: #bec9c8;--mdc-list-list-item-leading-icon-color: #bec9c8;--mdc-list-list-item-trailing-supporting-text-color: #bec9c8;--mdc-list-list-item-trailing-icon-color: #bec9c8;--mdc-list-list-item-selected-trailing-icon-color: #00dddd;--mdc-list-list-item-disabled-label-text-color: #e0e3e2;--mdc-list-list-item-disabled-leading-icon-color: #e0e3e2;--mdc-list-list-item-disabled-trailing-icon-color: #e0e3e2;--mdc-list-list-item-hover-label-text-color: #e0e3e2;--mdc-list-list-item-focus-label-text-color: #e0e3e2;--mdc-list-list-item-hover-state-layer-color: #e0e3e2;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #e0e3e2;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #324b4b;--mat-paginator-container-text-color: #e0e3e2;--mat-paginator-container-background-color: #191c1c;--mat-paginator-enabled-icon-color: #bec9c8;--mat-paginator-disabled-icon-color: rgba(224, 227, 226, .38);--mdc-tab-indicator-active-indicator-color: #00dddd;--mat-tab-header-divider-color: #3f4948;--mat-tab-header-pagination-icon-color: #e0e3e2;--mat-tab-header-inactive-label-text-color: #e0e3e2;--mat-tab-header-active-label-text-color: #e0e3e2;--mat-tab-header-active-ripple-color: #e0e3e2;--mat-tab-header-inactive-ripple-color: #e0e3e2;--mat-tab-header-inactive-focus-label-text-color: #e0e3e2;--mat-tab-header-inactive-hover-label-text-color: #e0e3e2;--mat-tab-header-active-focus-label-text-color: #e0e3e2;--mat-tab-header-active-hover-label-text-color: #e0e3e2;--mat-tab-header-active-focus-indicator-color: #00dddd;--mat-tab-header-active-hover-indicator-color: #00dddd;--mdc-checkbox-disabled-selected-checkmark-color: #191c1c;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(224, 227, 226, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(224, 227, 226, .38);--mdc-checkbox-selected-checkmark-color: #003737;--mdc-checkbox-selected-focus-icon-color: #00dddd;--mdc-checkbox-selected-hover-icon-color: #00dddd;--mdc-checkbox-selected-icon-color: #00dddd;--mdc-checkbox-unselected-focus-icon-color: #e0e3e2;--mdc-checkbox-unselected-hover-icon-color: #e0e3e2;--mdc-checkbox-unselected-icon-color: #bec9c8;--mdc-checkbox-selected-focus-state-layer-color: #00dddd;--mdc-checkbox-selected-hover-state-layer-color: #00dddd;--mdc-checkbox-selected-pressed-state-layer-color: #e0e3e2;--mdc-checkbox-unselected-focus-state-layer-color: #e0e3e2;--mdc-checkbox-unselected-hover-state-layer-color: #e0e3e2;--mdc-checkbox-unselected-pressed-state-layer-color: #00dddd;--mat-checkbox-disabled-label-color: rgba(224, 227, 226, .38);--mat-checkbox-label-text-color: #e0e3e2;--mdc-text-button-label-text-color: #00dddd;--mdc-text-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-protected-button-container-color: #191c1c;--mdc-protected-button-label-text-color: #00dddd;--mdc-protected-button-disabled-container-color: rgba(224, 227, 226, .12);--mdc-protected-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #00dddd;--mdc-filled-button-label-text-color: #003737;--mdc-filled-button-disabled-container-color: rgba(224, 227, 226, .12);--mdc-filled-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-outlined-button-disabled-outline-color: rgba(224, 227, 226, .12);--mdc-outlined-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-outlined-button-label-text-color: #00dddd;--mdc-outlined-button-outline-color: #889392;--mat-text-button-state-layer-color: #00dddd;--mat-text-button-disabled-state-layer-color: #bec9c8;--mat-text-button-ripple-color: rgba(0, 221, 221, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #00dddd;--mat-protected-button-disabled-state-layer-color: #bec9c8;--mat-protected-button-ripple-color: rgba(0, 221, 221, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #003737;--mat-filled-button-disabled-state-layer-color: #bec9c8;--mat-filled-button-ripple-color: rgba(0, 55, 55, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #00dddd;--mat-outlined-button-disabled-state-layer-color: #bec9c8;--mat-outlined-button-ripple-color: rgba(0, 221, 221, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #bec9c8;--mdc-icon-button-disabled-icon-color: rgba(224, 227, 226, .38);--mat-icon-button-state-layer-color: #bec9c8;--mat-icon-button-disabled-state-layer-color: #bec9c8;--mat-icon-button-ripple-color: rgba(190, 201, 200, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #004f4f;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #004f4f;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #00fbfb;--mat-fab-state-layer-color: #00fbfb;--mat-fab-ripple-color: rgba(0, 251, 251, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(224, 227, 226, .12);--mat-fab-disabled-state-foreground-color: rgba(224, 227, 226, .38);--mat-fab-small-foreground-color: #00fbfb;--mat-fab-small-state-layer-color: #00fbfb;--mat-fab-small-ripple-color: rgba(0, 251, 251, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(224, 227, 226, .12);--mat-fab-small-disabled-state-foreground-color: rgba(224, 227, 226, .38);--mdc-snackbar-container-color: #e0e3e2;--mdc-snackbar-supporting-text-color: #2d3131;--mat-snack-bar-button-color: #006a6a;--mat-table-background-color: #191c1c;--mat-table-header-headline-color: #e0e3e2;--mat-table-row-item-label-text-color: #e0e3e2;--mat-table-row-item-outline-color: #3f4948;--mdc-circular-progress-active-indicator-color: #00dddd;--mat-badge-background-color: #ffb4ab;--mat-badge-text-color: #690005;--mat-badge-disabled-state-background-color: rgba(255, 180, 171, .38);--mat-badge-disabled-state-text-color: #690005;--mat-bottom-sheet-container-text-color: #e0e3e2;--mat-bottom-sheet-container-background-color: #191c1c;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #e0e3e2;--mat-standard-button-toggle-state-layer-color: #e0e3e2;--mat-standard-button-toggle-selected-state-background-color: #324b4b;--mat-standard-button-toggle-selected-state-text-color: #cce8e7;--mat-standard-button-toggle-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(224, 227, 226, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(224, 227, 226, .12);--mat-standard-button-toggle-divider-color: #889392;--mat-datepicker-calendar-date-selected-state-text-color: #003737;--mat-datepicker-calendar-date-selected-state-background-color: #00dddd;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #00dddd;--mat-datepicker-calendar-date-focus-state-background-color: rgba(224, 227, 226, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(224, 227, 226, .08);--mat-datepicker-toggle-active-state-icon-color: #bec9c8;--mat-datepicker-calendar-date-in-range-state-background-color: #004f4f;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #723600;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #324b4b;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #b0cccb;--mat-datepicker-toggle-icon-color: #bec9c8;--mat-datepicker-calendar-body-label-text-color: #e0e3e2;--mat-datepicker-calendar-period-button-text-color: #bec9c8;--mat-datepicker-calendar-period-button-icon-color: #bec9c8;--mat-datepicker-calendar-navigation-button-icon-color: #bec9c8;--mat-datepicker-calendar-header-text-color: #bec9c8;--mat-datepicker-calendar-date-today-outline-color: #00dddd;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-date-text-color: #e0e3e2;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #00dddd;--mat-datepicker-range-input-separator-color: #e0e3e2;--mat-datepicker-range-input-disabled-state-separator-color: rgba(224, 227, 226, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-container-background-color: #272b2b;--mat-datepicker-calendar-container-text-color: #e0e3e2;--mat-divider-color: #3f4948;--mat-expansion-container-background-color: #191c1c;--mat-expansion-container-text-color: #e0e3e2;--mat-expansion-actions-divider-color: #3f4948;--mat-expansion-header-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-expansion-header-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-expansion-header-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-expansion-header-text-color: #e0e3e2;--mat-expansion-header-description-color: #bec9c8;--mat-expansion-header-indicator-color: #bec9c8;--mat-sidenav-container-background-color: #191c1c;--mat-sidenav-container-text-color: #bec9c8;--mat-sidenav-content-background-color: #191c1c;--mat-sidenav-content-text-color: #e0e3e2;--mat-sidenav-scrim-color: rgba(41, 50, 50, .4);--mat-stepper-header-icon-foreground-color: #191c1c;--mat-stepper-header-selected-state-icon-background-color: #00dddd;--mat-stepper-header-selected-state-icon-foreground-color: #003737;--mat-stepper-header-edit-state-icon-background-color: #00dddd;--mat-stepper-header-edit-state-icon-foreground-color: #003737;--mat-stepper-container-color: #191c1c;--mat-stepper-line-color: #3f4948;--mat-stepper-header-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-stepper-header-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-stepper-header-label-text-color: #bec9c8;--mat-stepper-header-optional-label-text-color: #bec9c8;--mat-stepper-header-selected-state-label-text-color: #bec9c8;--mat-stepper-header-error-state-label-text-color: #ffb4ab;--mat-stepper-header-icon-background-color: #bec9c8;--mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;--mat-sort-arrow-color: #e0e3e2;--mat-toolbar-container-background-color: #191c1c;--mat-toolbar-container-text-color: #e0e3e2;--mat-tree-container-background-color: #191c1c;--mat-tree-node-text-color: #e0e3e2}.survey-theme-cyan-orange-dark .mat-display-large,.survey-theme-cyan-orange-dark .mat-typography .mat-display-large,.survey-theme-cyan-orange-dark .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-display-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-display-medium,.survey-theme-cyan-orange-dark .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-display-small,.survey-theme-cyan-orange-dark .mat-typography .mat-display-small,.survey-theme-cyan-orange-dark .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-headline-large,.survey-theme-cyan-orange-dark .mat-typography .mat-headline-large,.survey-theme-cyan-orange-dark .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-headline-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-headline-medium,.survey-theme-cyan-orange-dark .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-headline-small,.survey-theme-cyan-orange-dark .mat-typography .mat-headline-small,.survey-theme-cyan-orange-dark .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-title-large,.survey-theme-cyan-orange-dark .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-cyan-orange-dark .mat-title-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-cyan-orange-dark .mat-title-small,.survey-theme-cyan-orange-dark .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-dark .mat-body-large,.survey-theme-cyan-orange-dark .mat-typography .mat-body-large,.survey-theme-cyan-orange-dark .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-dark .mat-body-large p,.survey-theme-cyan-orange-dark .mat-typography .mat-body-large p,.survey-theme-cyan-orange-dark .mat-typography p{margin:0 0 .75em}.survey-theme-cyan-orange-dark .mat-body-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-cyan-orange-dark .mat-body-small,.survey-theme-cyan-orange-dark .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-cyan-orange-dark .mat-label-large,.survey-theme-cyan-orange-dark .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-dark .mat-label-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-dark .mat-label-small,.survey-theme-cyan-orange-dark .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-dark.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-cyan-orange-dark ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-cyan-orange-dark.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#723600}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#ffdcc7}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#723600}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#ffdcc7}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#324b4b;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-cyan-orange-dark.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-rose-red-light{--mat-app-background-color: #fffbff;--mat-app-text-color: #201a1b;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(32, 26, 27, .1);--mat-option-selected-state-label-text-color: #2b151b;--mat-option-label-text-color: #201a1b;--mat-option-hover-state-layer-color: rgba(32, 26, 27, .08);--mat-option-focus-state-layer-color: rgba(32, 26, 27, .12);--mat-option-selected-state-layer-color: #ffd9e1;--mat-optgroup-label-text-color: #514346;--mat-full-pseudo-checkbox-selected-icon-color: #ba005c;--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;--mat-full-pseudo-checkbox-unselected-icon-color: #514346;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fffbff;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(32, 26, 27, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(32, 26, 27, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ba005c;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(32, 26, 27, .38);--mdc-elevated-card-container-color: #fffbff;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #fffbff;--mdc-outlined-card-outline-color: #d6c2c5;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #201a1b;--mdc-linear-progress-active-indicator-color: #ba005c;--mdc-linear-progress-track-color: #f3dde1;--mdc-plain-tooltip-container-color: #352f30;--mdc-plain-tooltip-supporting-text-color: #faeeef;--mdc-filled-text-field-caret-color: #ba005c;--mdc-filled-text-field-focus-active-indicator-color: #ba005c;--mdc-filled-text-field-focus-label-text-color: #ba005c;--mdc-filled-text-field-container-color: #f3dde1;--mdc-filled-text-field-disabled-container-color: rgba(32, 26, 27, .04);--mdc-filled-text-field-label-text-color: #514346;--mdc-filled-text-field-hover-label-text-color: #514346;--mdc-filled-text-field-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-filled-text-field-input-text-color: #201a1b;--mdc-filled-text-field-disabled-input-text-color: rgba(32, 26, 27, .38);--mdc-filled-text-field-input-text-placeholder-color: #514346;--mdc-filled-text-field-error-hover-label-text-color: #410002;--mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;--mdc-filled-text-field-error-label-text-color: #ba1a1a;--mdc-filled-text-field-active-indicator-color: #514346;--mdc-filled-text-field-disabled-active-indicator-color: rgba(32, 26, 27, .38);--mdc-filled-text-field-hover-active-indicator-color: #201a1b;--mdc-filled-text-field-error-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-hover-active-indicator-color: #410002;--mdc-outlined-text-field-caret-color: #ba005c;--mdc-outlined-text-field-focus-outline-color: #ba005c;--mdc-outlined-text-field-focus-label-text-color: #ba005c;--mdc-outlined-text-field-label-text-color: #514346;--mdc-outlined-text-field-hover-label-text-color: #201a1b;--mdc-outlined-text-field-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-outlined-text-field-input-text-color: #201a1b;--mdc-outlined-text-field-disabled-input-text-color: rgba(32, 26, 27, .38);--mdc-outlined-text-field-input-text-placeholder-color: #514346;--mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-hover-label-text-color: #410002;--mdc-outlined-text-field-outline-color: #847376;--mdc-outlined-text-field-disabled-outline-color: rgba(32, 26, 27, .12);--mdc-outlined-text-field-hover-outline-color: #201a1b;--mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;--mdc-outlined-text-field-error-hover-outline-color: #410002;--mdc-outlined-text-field-error-outline-color: #ba1a1a;--mat-form-field-focus-select-arrow-color: #ba005c;--mat-form-field-disabled-input-text-placeholder-color: rgba(32, 26, 27, .38);--mat-form-field-state-layer-color: #201a1b;--mat-form-field-error-text-color: #ba1a1a;--mat-form-field-select-option-text-color: #201a1b;--mat-form-field-select-disabled-option-text-color: rgba(32, 26, 27, .38);--mat-form-field-leading-icon-color: #514346;--mat-form-field-disabled-leading-icon-color: rgba(32, 26, 27, .38);--mat-form-field-trailing-icon-color: #514346;--mat-form-field-disabled-trailing-icon-color: rgba(32, 26, 27, .38);--mat-form-field-error-focus-trailing-icon-color: #ba1a1a;--mat-form-field-error-hover-trailing-icon-color: #410002;--mat-form-field-error-trailing-icon-color: #ba1a1a;--mat-form-field-enabled-select-arrow-color: #514346;--mat-form-field-disabled-select-arrow-color: rgba(32, 26, 27, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #f7ebec;--mat-select-enabled-trigger-text-color: #201a1b;--mat-select-disabled-trigger-text-color: rgba(32, 26, 27, .38);--mat-select-placeholder-text-color: #514346;--mat-select-enabled-arrow-color: #514346;--mat-select-disabled-arrow-color: rgba(32, 26, 27, .38);--mat-select-focused-arrow-color: #ba005c;--mat-select-invalid-arrow-color: #ba1a1a;--mat-autocomplete-background-color: #f7ebec;--mdc-dialog-container-color: #fffbff;--mdc-dialog-subhead-color: #201a1b;--mdc-dialog-supporting-text-color: #514346;--mdc-chip-outline-color: #847376;--mdc-chip-disabled-outline-color: rgba(32, 26, 27, .12);--mdc-chip-focus-outline-color: #514346;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-chip-elevated-selected-container-color: #ffd9e1;--mdc-chip-flat-disabled-selected-container-color: rgba(32, 26, 27, .12);--mdc-chip-focus-state-layer-color: #514346;--mdc-chip-hover-state-layer-color: #514346;--mdc-chip-selected-hover-state-layer-color: #2b151b;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #2b151b;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #514346;--mdc-chip-selected-label-text-color: #2b151b;--mdc-chip-with-icon-icon-color: #514346;--mdc-chip-with-icon-disabled-icon-color: #201a1b;--mdc-chip-with-icon-selected-icon-color: #2b151b;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #201a1b;--mdc-chip-with-trailing-icon-trailing-icon-color: #514346;--mat-chip-trailing-action-state-layer-color: #514346;--mat-chip-selected-trailing-action-state-layer-color: #2b151b;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #201a1b;--mat-chip-selected-trailing-icon-color: #2b151b;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #ba005c;--mdc-switch-selected-handle-color: #ffffff;--mdc-switch-selected-hover-state-layer-color: #ba005c;--mdc-switch-selected-pressed-state-layer-color: #ba005c;--mdc-switch-selected-focus-handle-color: #ffd9e1;--mdc-switch-selected-hover-handle-color: #ffd9e1;--mdc-switch-selected-pressed-handle-color: #ffd9e1;--mdc-switch-selected-focus-track-color: #ba005c;--mdc-switch-selected-hover-track-color: #ba005c;--mdc-switch-selected-pressed-track-color: #ba005c;--mdc-switch-selected-track-color: #ba005c;--mdc-switch-disabled-selected-handle-color: #fffbff;--mdc-switch-disabled-selected-icon-color: #201a1b;--mdc-switch-disabled-selected-track-color: #201a1b;--mdc-switch-disabled-unselected-handle-color: #201a1b;--mdc-switch-disabled-unselected-icon-color: #f3dde1;--mdc-switch-disabled-unselected-track-color: #f3dde1;--mdc-switch-selected-icon-color: #3f001b;--mdc-switch-unselected-focus-handle-color: #514346;--mdc-switch-unselected-focus-state-layer-color: #201a1b;--mdc-switch-unselected-focus-track-color: #f3dde1;--mdc-switch-unselected-handle-color: #847376;--mdc-switch-unselected-hover-handle-color: #514346;--mdc-switch-unselected-hover-state-layer-color: #201a1b;--mdc-switch-unselected-hover-track-color: #f3dde1;--mdc-switch-unselected-icon-color: #f3dde1;--mdc-switch-unselected-pressed-handle-color: #514346;--mdc-switch-unselected-pressed-state-layer-color: #201a1b;--mdc-switch-unselected-pressed-track-color: #f3dde1;--mdc-switch-unselected-track-color: #f3dde1;--mat-switch-track-outline-color: #847376;--mat-switch-disabled-unselected-track-outline-color: #201a1b;--mat-switch-label-text-color: #201a1b;--mdc-radio-disabled-selected-icon-color: #201a1b;--mdc-radio-disabled-unselected-icon-color: #201a1b;--mdc-radio-unselected-hover-icon-color: #201a1b;--mdc-radio-unselected-icon-color: #514346;--mdc-radio-unselected-pressed-icon-color: #201a1b;--mdc-radio-selected-focus-icon-color: #ba005c;--mdc-radio-selected-hover-icon-color: #ba005c;--mdc-radio-selected-icon-color: #ba005c;--mdc-radio-selected-pressed-icon-color: #ba005c;--mat-radio-ripple-color: #201a1b;--mat-radio-checked-ripple-color: #ba005c;--mat-radio-disabled-label-color: rgba(32, 26, 27, .38);--mat-radio-label-text-color: #201a1b;--mdc-slider-handle-color: #ba005c;--mdc-slider-focus-handle-color: #ba005c;--mdc-slider-hover-handle-color: #ba005c;--mdc-slider-active-track-color: #ba005c;--mdc-slider-inactive-track-color: #f3dde1;--mdc-slider-with-tick-marks-inactive-container-color: #514346;--mdc-slider-with-tick-marks-active-container-color: #ffffff;--mdc-slider-disabled-active-track-color: #201a1b;--mdc-slider-disabled-handle-color: #201a1b;--mdc-slider-disabled-inactive-track-color: #201a1b;--mdc-slider-label-container-color: #ba005c;--mdc-slider-label-label-text-color: #ffffff;--mdc-slider-with-overlap-handle-outline-color: #ffffff;--mdc-slider-with-tick-marks-disabled-container-color: #201a1b;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #ba005c;--mat-slider-hover-state-layer-color: rgba(186, 0, 92, .05);--mat-slider-focus-state-layer-color: rgba(186, 0, 92, .2);--mat-menu-item-label-text-color: #201a1b;--mat-menu-item-icon-color: #514346;--mat-menu-item-hover-state-layer-color: rgba(32, 26, 27, .08);--mat-menu-item-focus-state-layer-color: rgba(32, 26, 27, .12);--mat-menu-container-color: #f7ebec;--mat-menu-divider-color: #f3dde1;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #ffd9e1;--mdc-list-list-item-disabled-state-layer-color: #201a1b;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #201a1b;--mdc-list-list-item-supporting-text-color: #514346;--mdc-list-list-item-leading-icon-color: #514346;--mdc-list-list-item-trailing-supporting-text-color: #514346;--mdc-list-list-item-trailing-icon-color: #514346;--mdc-list-list-item-selected-trailing-icon-color: #ba005c;--mdc-list-list-item-disabled-label-text-color: #201a1b;--mdc-list-list-item-disabled-leading-icon-color: #201a1b;--mdc-list-list-item-disabled-trailing-icon-color: #201a1b;--mdc-list-list-item-hover-label-text-color: #201a1b;--mdc-list-list-item-focus-label-text-color: #201a1b;--mdc-list-list-item-hover-state-layer-color: #201a1b;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #201a1b;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #ffd9e1;--mat-paginator-container-text-color: #201a1b;--mat-paginator-container-background-color: #fffbff;--mat-paginator-enabled-icon-color: #514346;--mat-paginator-disabled-icon-color: rgba(32, 26, 27, .38);--mdc-tab-indicator-active-indicator-color: #ba005c;--mat-tab-header-divider-color: #f3dde1;--mat-tab-header-pagination-icon-color: #201a1b;--mat-tab-header-inactive-label-text-color: #201a1b;--mat-tab-header-active-label-text-color: #201a1b;--mat-tab-header-active-ripple-color: #201a1b;--mat-tab-header-inactive-ripple-color: #201a1b;--mat-tab-header-inactive-focus-label-text-color: #201a1b;--mat-tab-header-inactive-hover-label-text-color: #201a1b;--mat-tab-header-active-focus-label-text-color: #201a1b;--mat-tab-header-active-hover-label-text-color: #201a1b;--mat-tab-header-active-focus-indicator-color: #ba005c;--mat-tab-header-active-hover-indicator-color: #ba005c;--mdc-checkbox-disabled-selected-checkmark-color: #fffbff;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(32, 26, 27, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(32, 26, 27, .38);--mdc-checkbox-selected-checkmark-color: #ffffff;--mdc-checkbox-selected-focus-icon-color: #ba005c;--mdc-checkbox-selected-hover-icon-color: #ba005c;--mdc-checkbox-selected-icon-color: #ba005c;--mdc-checkbox-unselected-focus-icon-color: #201a1b;--mdc-checkbox-unselected-hover-icon-color: #201a1b;--mdc-checkbox-unselected-icon-color: #514346;--mdc-checkbox-selected-focus-state-layer-color: #ba005c;--mdc-checkbox-selected-hover-state-layer-color: #ba005c;--mdc-checkbox-selected-pressed-state-layer-color: #201a1b;--mdc-checkbox-unselected-focus-state-layer-color: #201a1b;--mdc-checkbox-unselected-hover-state-layer-color: #201a1b;--mdc-checkbox-unselected-pressed-state-layer-color: #ba005c;--mat-checkbox-disabled-label-color: rgba(32, 26, 27, .38);--mat-checkbox-label-text-color: #201a1b;--mdc-text-button-label-text-color: #ba005c;--mdc-text-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-protected-button-container-color: #fffbff;--mdc-protected-button-label-text-color: #ba005c;--mdc-protected-button-disabled-container-color: rgba(32, 26, 27, .12);--mdc-protected-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #ba005c;--mdc-filled-button-label-text-color: #ffffff;--mdc-filled-button-disabled-container-color: rgba(32, 26, 27, .12);--mdc-filled-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-outlined-button-disabled-outline-color: rgba(32, 26, 27, .12);--mdc-outlined-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-outlined-button-label-text-color: #ba005c;--mdc-outlined-button-outline-color: #847376;--mat-text-button-state-layer-color: #ba005c;--mat-text-button-disabled-state-layer-color: #514346;--mat-text-button-ripple-color: rgba(186, 0, 92, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #ba005c;--mat-protected-button-disabled-state-layer-color: #514346;--mat-protected-button-ripple-color: rgba(186, 0, 92, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #ffffff;--mat-filled-button-disabled-state-layer-color: #514346;--mat-filled-button-ripple-color: rgba(255, 255, 255, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #ba005c;--mat-outlined-button-disabled-state-layer-color: #514346;--mat-outlined-button-ripple-color: rgba(186, 0, 92, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #514346;--mdc-icon-button-disabled-icon-color: rgba(32, 26, 27, .38);--mat-icon-button-state-layer-color: #514346;--mat-icon-button-disabled-state-layer-color: #514346;--mat-icon-button-ripple-color: rgba(81, 67, 70, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #ffd9e1;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #ffd9e1;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #3f001b;--mat-fab-state-layer-color: #3f001b;--mat-fab-ripple-color: rgba(63, 0, 27, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(32, 26, 27, .12);--mat-fab-disabled-state-foreground-color: rgba(32, 26, 27, .38);--mat-fab-small-foreground-color: #3f001b;--mat-fab-small-state-layer-color: #3f001b;--mat-fab-small-ripple-color: rgba(63, 0, 27, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(32, 26, 27, .12);--mat-fab-small-disabled-state-foreground-color: rgba(32, 26, 27, .38);--mdc-snackbar-container-color: #352f30;--mdc-snackbar-supporting-text-color: #faeeef;--mat-snack-bar-button-color: #ffb1c5;--mat-table-background-color: #fffbff;--mat-table-header-headline-color: #201a1b;--mat-table-row-item-label-text-color: #201a1b;--mat-table-row-item-outline-color: #d6c2c5;--mdc-circular-progress-active-indicator-color: #ba005c;--mat-badge-background-color: #ba1a1a;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: rgba(186, 26, 26, .38);--mat-badge-disabled-state-text-color: #ffffff;--mat-bottom-sheet-container-text-color: #201a1b;--mat-bottom-sheet-container-background-color: #fcf1f2;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #201a1b;--mat-standard-button-toggle-state-layer-color: #201a1b;--mat-standard-button-toggle-selected-state-background-color: #ffd9e1;--mat-standard-button-toggle-selected-state-text-color: #2b151b;--mat-standard-button-toggle-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(32, 26, 27, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(32, 26, 27, .12);--mat-standard-button-toggle-divider-color: #847376;--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #ba005c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ba005c;--mat-datepicker-calendar-date-focus-state-background-color: rgba(32, 26, 27, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(32, 26, 27, .08);--mat-datepicker-toggle-active-state-icon-color: #514346;--mat-datepicker-calendar-date-in-range-state-background-color: #ffd9e1;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #ffdad4;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #ffd9e1;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #74565d;--mat-datepicker-toggle-icon-color: #514346;--mat-datepicker-calendar-body-label-text-color: #201a1b;--mat-datepicker-calendar-period-button-text-color: #514346;--mat-datepicker-calendar-period-button-icon-color: #514346;--mat-datepicker-calendar-navigation-button-icon-color: #514346;--mat-datepicker-calendar-header-text-color: #514346;--mat-datepicker-calendar-date-today-outline-color: #ba005c;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-date-text-color: #201a1b;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #ba005c;--mat-datepicker-range-input-separator-color: #201a1b;--mat-datepicker-range-input-disabled-state-separator-color: rgba(32, 26, 27, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-container-background-color: #f2e6e7;--mat-datepicker-calendar-container-text-color: #201a1b;--mat-divider-color: #d6c2c5;--mat-expansion-container-background-color: #fffbff;--mat-expansion-container-text-color: #201a1b;--mat-expansion-actions-divider-color: #d6c2c5;--mat-expansion-header-hover-state-layer-color: rgba(32, 26, 27, .08);--mat-expansion-header-focus-state-layer-color: rgba(32, 26, 27, .12);--mat-expansion-header-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-expansion-header-text-color: #201a1b;--mat-expansion-header-description-color: #514346;--mat-expansion-header-indicator-color: #514346;--mat-sidenav-container-background-color: #fffbff;--mat-sidenav-container-text-color: #514346;--mat-sidenav-content-background-color: #fffbff;--mat-sidenav-content-text-color: #201a1b;--mat-sidenav-scrim-color: rgba(58, 45, 48, .4);--mat-stepper-header-icon-foreground-color: #fffbff;--mat-stepper-header-selected-state-icon-background-color: #ba005c;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #ba005c;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #fffbff;--mat-stepper-line-color: #d6c2c5;--mat-stepper-header-hover-state-layer-color: rgba(53, 47, 48, .08);--mat-stepper-header-focus-state-layer-color: rgba(53, 47, 48, .12);--mat-stepper-header-label-text-color: #514346;--mat-stepper-header-optional-label-text-color: #514346;--mat-stepper-header-selected-state-label-text-color: #514346;--mat-stepper-header-error-state-label-text-color: #ba1a1a;--mat-stepper-header-icon-background-color: #514346;--mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;--mat-sort-arrow-color: #201a1b;--mat-toolbar-container-background-color: #fffbff;--mat-toolbar-container-text-color: #201a1b;--mat-tree-container-background-color: #fffbff;--mat-tree-node-text-color: #201a1b}.survey-theme-rose-red-light .mat-display-large,.survey-theme-rose-red-light .mat-typography .mat-display-large,.survey-theme-rose-red-light .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-display-medium,.survey-theme-rose-red-light .mat-typography .mat-display-medium,.survey-theme-rose-red-light .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-display-small,.survey-theme-rose-red-light .mat-typography .mat-display-small,.survey-theme-rose-red-light .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-headline-large,.survey-theme-rose-red-light .mat-typography .mat-headline-large,.survey-theme-rose-red-light .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-headline-medium,.survey-theme-rose-red-light .mat-typography .mat-headline-medium,.survey-theme-rose-red-light .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-headline-small,.survey-theme-rose-red-light .mat-typography .mat-headline-small,.survey-theme-rose-red-light .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-title-large,.survey-theme-rose-red-light .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-rose-red-light .mat-title-medium,.survey-theme-rose-red-light .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-rose-red-light .mat-title-small,.survey-theme-rose-red-light .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-light .mat-body-large,.survey-theme-rose-red-light .mat-typography .mat-body-large,.survey-theme-rose-red-light .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-light .mat-body-large p,.survey-theme-rose-red-light .mat-typography .mat-body-large p,.survey-theme-rose-red-light .mat-typography p{margin:0 0 .75em}.survey-theme-rose-red-light .mat-body-medium,.survey-theme-rose-red-light .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-rose-red-light .mat-body-small,.survey-theme-rose-red-light .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-rose-red-light .mat-label-large,.survey-theme-rose-red-light .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-light .mat-label-medium,.survey-theme-rose-red-light .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-light .mat-label-small,.survey-theme-rose-red-light .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-light.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-rose-red-light ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-rose-red-light.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#ffdad4}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#410000}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#ffdad4}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#410000}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#ffd9e1;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-rose-red-light.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-rose-red-dark{--mat-app-background-color: #201a1b;--mat-app-text-color: #ece0e1;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(236, 224, 225, .1);--mat-option-selected-state-label-text-color: #ffd9e1;--mat-option-label-text-color: #ece0e1;--mat-option-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-option-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-option-selected-state-layer-color: #5b3f46;--mat-optgroup-label-text-color: #d6c2c5;--mat-full-pseudo-checkbox-selected-icon-color: #ffb1c5;--mat-full-pseudo-checkbox-selected-checkmark-color: #65002f;--mat-full-pseudo-checkbox-unselected-icon-color: #d6c2c5;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #201a1b;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(236, 224, 225, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(236, 224, 225, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ffb1c5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(236, 224, 225, .38);--mdc-elevated-card-container-color: #201a1b;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #201a1b;--mdc-outlined-card-outline-color: #514346;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #ece0e1;--mdc-linear-progress-active-indicator-color: #ffb1c5;--mdc-linear-progress-track-color: #514346;--mdc-plain-tooltip-container-color: #ece0e1;--mdc-plain-tooltip-supporting-text-color: #352f30;--mdc-filled-text-field-caret-color: #ffb1c5;--mdc-filled-text-field-focus-active-indicator-color: #ffb1c5;--mdc-filled-text-field-focus-label-text-color: #ffb1c5;--mdc-filled-text-field-container-color: #514346;--mdc-filled-text-field-disabled-container-color: rgba(236, 224, 225, .04);--mdc-filled-text-field-label-text-color: #d6c2c5;--mdc-filled-text-field-hover-label-text-color: #d6c2c5;--mdc-filled-text-field-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-filled-text-field-input-text-color: #ece0e1;--mdc-filled-text-field-disabled-input-text-color: rgba(236, 224, 225, .38);--mdc-filled-text-field-input-text-placeholder-color: #d6c2c5;--mdc-filled-text-field-error-hover-label-text-color: #ffdad6;--mdc-filled-text-field-error-focus-label-text-color: #ffb4ab;--mdc-filled-text-field-error-label-text-color: #ffb4ab;--mdc-filled-text-field-active-indicator-color: #d6c2c5;--mdc-filled-text-field-disabled-active-indicator-color: rgba(236, 224, 225, .38);--mdc-filled-text-field-hover-active-indicator-color: #ece0e1;--mdc-filled-text-field-error-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-focus-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-hover-active-indicator-color: #ffdad6;--mdc-outlined-text-field-caret-color: #ffb1c5;--mdc-outlined-text-field-focus-outline-color: #ffb1c5;--mdc-outlined-text-field-focus-label-text-color: #ffb1c5;--mdc-outlined-text-field-label-text-color: #d6c2c5;--mdc-outlined-text-field-hover-label-text-color: #ece0e1;--mdc-outlined-text-field-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-outlined-text-field-input-text-color: #ece0e1;--mdc-outlined-text-field-disabled-input-text-color: rgba(236, 224, 225, .38);--mdc-outlined-text-field-input-text-placeholder-color: #d6c2c5;--mdc-outlined-text-field-error-focus-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-hover-label-text-color: #ffdad6;--mdc-outlined-text-field-outline-color: #9e8c90;--mdc-outlined-text-field-disabled-outline-color: rgba(236, 224, 225, .12);--mdc-outlined-text-field-hover-outline-color: #ece0e1;--mdc-outlined-text-field-error-focus-outline-color: #ffb4ab;--mdc-outlined-text-field-error-hover-outline-color: #ffdad6;--mdc-outlined-text-field-error-outline-color: #ffb4ab;--mat-form-field-focus-select-arrow-color: #ffb1c5;--mat-form-field-disabled-input-text-placeholder-color: rgba(236, 224, 225, .38);--mat-form-field-state-layer-color: #ece0e1;--mat-form-field-error-text-color: #ffb4ab;--mat-form-field-select-option-text-color: #201a1b;--mat-form-field-select-disabled-option-text-color: rgba(32, 26, 27, .38);--mat-form-field-leading-icon-color: #d6c2c5;--mat-form-field-disabled-leading-icon-color: rgba(236, 224, 225, .38);--mat-form-field-trailing-icon-color: #d6c2c5;--mat-form-field-disabled-trailing-icon-color: rgba(236, 224, 225, .38);--mat-form-field-error-focus-trailing-icon-color: #ffb4ab;--mat-form-field-error-hover-trailing-icon-color: #ffdad6;--mat-form-field-error-trailing-icon-color: #ffb4ab;--mat-form-field-enabled-select-arrow-color: #d6c2c5;--mat-form-field-disabled-select-arrow-color: rgba(236, 224, 225, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #241e1f;--mat-select-enabled-trigger-text-color: #ece0e1;--mat-select-disabled-trigger-text-color: rgba(236, 224, 225, .38);--mat-select-placeholder-text-color: #d6c2c5;--mat-select-enabled-arrow-color: #d6c2c5;--mat-select-disabled-arrow-color: rgba(236, 224, 225, .38);--mat-select-focused-arrow-color: #ffb1c5;--mat-select-invalid-arrow-color: #ffb4ab;--mat-autocomplete-background-color: #241e1f;--mdc-dialog-container-color: #201a1b;--mdc-dialog-subhead-color: #ece0e1;--mdc-dialog-supporting-text-color: #d6c2c5;--mdc-chip-outline-color: #9e8c90;--mdc-chip-disabled-outline-color: rgba(236, 224, 225, .12);--mdc-chip-focus-outline-color: #d6c2c5;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-chip-elevated-selected-container-color: #5b3f46;--mdc-chip-flat-disabled-selected-container-color: rgba(236, 224, 225, .12);--mdc-chip-focus-state-layer-color: #d6c2c5;--mdc-chip-hover-state-layer-color: #d6c2c5;--mdc-chip-selected-hover-state-layer-color: #ffd9e1;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #ffd9e1;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #d6c2c5;--mdc-chip-selected-label-text-color: #ffd9e1;--mdc-chip-with-icon-icon-color: #d6c2c5;--mdc-chip-with-icon-disabled-icon-color: #ece0e1;--mdc-chip-with-icon-selected-icon-color: #ffd9e1;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #ece0e1;--mdc-chip-with-trailing-icon-trailing-icon-color: #d6c2c5;--mat-chip-trailing-action-state-layer-color: #d6c2c5;--mat-chip-selected-trailing-action-state-layer-color: #ffd9e1;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #ece0e1;--mat-chip-selected-trailing-icon-color: #ffd9e1;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #ffb1c5;--mdc-switch-selected-handle-color: #65002f;--mdc-switch-selected-hover-state-layer-color: #ffb1c5;--mdc-switch-selected-pressed-state-layer-color: #ffb1c5;--mdc-switch-selected-focus-handle-color: #8f0045;--mdc-switch-selected-hover-handle-color: #8f0045;--mdc-switch-selected-pressed-handle-color: #8f0045;--mdc-switch-selected-focus-track-color: #ffb1c5;--mdc-switch-selected-hover-track-color: #ffb1c5;--mdc-switch-selected-pressed-track-color: #ffb1c5;--mdc-switch-selected-track-color: #ffb1c5;--mdc-switch-disabled-selected-handle-color: #201a1b;--mdc-switch-disabled-selected-icon-color: #ece0e1;--mdc-switch-disabled-selected-track-color: #ece0e1;--mdc-switch-disabled-unselected-handle-color: #ece0e1;--mdc-switch-disabled-unselected-icon-color: #514346;--mdc-switch-disabled-unselected-track-color: #514346;--mdc-switch-selected-icon-color: #ffd9e1;--mdc-switch-unselected-focus-handle-color: #d6c2c5;--mdc-switch-unselected-focus-state-layer-color: #ece0e1;--mdc-switch-unselected-focus-track-color: #514346;--mdc-switch-unselected-handle-color: #9e8c90;--mdc-switch-unselected-hover-handle-color: #d6c2c5;--mdc-switch-unselected-hover-state-layer-color: #ece0e1;--mdc-switch-unselected-hover-track-color: #514346;--mdc-switch-unselected-icon-color: #514346;--mdc-switch-unselected-pressed-handle-color: #d6c2c5;--mdc-switch-unselected-pressed-state-layer-color: #ece0e1;--mdc-switch-unselected-pressed-track-color: #514346;--mdc-switch-unselected-track-color: #514346;--mat-switch-track-outline-color: #9e8c90;--mat-switch-disabled-unselected-track-outline-color: #ece0e1;--mat-switch-label-text-color: #ece0e1;--mdc-radio-disabled-selected-icon-color: #ece0e1;--mdc-radio-disabled-unselected-icon-color: #ece0e1;--mdc-radio-unselected-hover-icon-color: #ece0e1;--mdc-radio-unselected-icon-color: #d6c2c5;--mdc-radio-unselected-pressed-icon-color: #ece0e1;--mdc-radio-selected-focus-icon-color: #ffb1c5;--mdc-radio-selected-hover-icon-color: #ffb1c5;--mdc-radio-selected-icon-color: #ffb1c5;--mdc-radio-selected-pressed-icon-color: #ffb1c5;--mat-radio-ripple-color: #ece0e1;--mat-radio-checked-ripple-color: #ffb1c5;--mat-radio-disabled-label-color: rgba(236, 224, 225, .38);--mat-radio-label-text-color: #ece0e1;--mdc-slider-handle-color: #ffb1c5;--mdc-slider-focus-handle-color: #ffb1c5;--mdc-slider-hover-handle-color: #ffb1c5;--mdc-slider-active-track-color: #ffb1c5;--mdc-slider-inactive-track-color: #514346;--mdc-slider-with-tick-marks-inactive-container-color: #d6c2c5;--mdc-slider-with-tick-marks-active-container-color: #65002f;--mdc-slider-disabled-active-track-color: #ece0e1;--mdc-slider-disabled-handle-color: #ece0e1;--mdc-slider-disabled-inactive-track-color: #ece0e1;--mdc-slider-label-container-color: #ffb1c5;--mdc-slider-label-label-text-color: #65002f;--mdc-slider-with-overlap-handle-outline-color: #65002f;--mdc-slider-with-tick-marks-disabled-container-color: #ece0e1;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #ffb1c5;--mat-slider-hover-state-layer-color: rgba(255, 177, 197, .05);--mat-slider-focus-state-layer-color: rgba(255, 177, 197, .2);--mat-menu-item-label-text-color: #ece0e1;--mat-menu-item-icon-color: #d6c2c5;--mat-menu-item-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-menu-item-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-menu-container-color: #241e1f;--mat-menu-divider-color: #514346;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #8f0045;--mdc-list-list-item-disabled-state-layer-color: #ece0e1;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #ece0e1;--mdc-list-list-item-supporting-text-color: #d6c2c5;--mdc-list-list-item-leading-icon-color: #d6c2c5;--mdc-list-list-item-trailing-supporting-text-color: #d6c2c5;--mdc-list-list-item-trailing-icon-color: #d6c2c5;--mdc-list-list-item-selected-trailing-icon-color: #ffb1c5;--mdc-list-list-item-disabled-label-text-color: #ece0e1;--mdc-list-list-item-disabled-leading-icon-color: #ece0e1;--mdc-list-list-item-disabled-trailing-icon-color: #ece0e1;--mdc-list-list-item-hover-label-text-color: #ece0e1;--mdc-list-list-item-focus-label-text-color: #ece0e1;--mdc-list-list-item-hover-state-layer-color: #ece0e1;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #ece0e1;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #5b3f46;--mat-paginator-container-text-color: #ece0e1;--mat-paginator-container-background-color: #201a1b;--mat-paginator-enabled-icon-color: #d6c2c5;--mat-paginator-disabled-icon-color: rgba(236, 224, 225, .38);--mdc-tab-indicator-active-indicator-color: #ffb1c5;--mat-tab-header-divider-color: #514346;--mat-tab-header-pagination-icon-color: #ece0e1;--mat-tab-header-inactive-label-text-color: #ece0e1;--mat-tab-header-active-label-text-color: #ece0e1;--mat-tab-header-active-ripple-color: #ece0e1;--mat-tab-header-inactive-ripple-color: #ece0e1;--mat-tab-header-inactive-focus-label-text-color: #ece0e1;--mat-tab-header-inactive-hover-label-text-color: #ece0e1;--mat-tab-header-active-focus-label-text-color: #ece0e1;--mat-tab-header-active-hover-label-text-color: #ece0e1;--mat-tab-header-active-focus-indicator-color: #ffb1c5;--mat-tab-header-active-hover-indicator-color: #ffb1c5;--mdc-checkbox-disabled-selected-checkmark-color: #201a1b;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(236, 224, 225, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(236, 224, 225, .38);--mdc-checkbox-selected-checkmark-color: #65002f;--mdc-checkbox-selected-focus-icon-color: #ffb1c5;--mdc-checkbox-selected-hover-icon-color: #ffb1c5;--mdc-checkbox-selected-icon-color: #ffb1c5;--mdc-checkbox-unselected-focus-icon-color: #ece0e1;--mdc-checkbox-unselected-hover-icon-color: #ece0e1;--mdc-checkbox-unselected-icon-color: #d6c2c5;--mdc-checkbox-selected-focus-state-layer-color: #ffb1c5;--mdc-checkbox-selected-hover-state-layer-color: #ffb1c5;--mdc-checkbox-selected-pressed-state-layer-color: #ece0e1;--mdc-checkbox-unselected-focus-state-layer-color: #ece0e1;--mdc-checkbox-unselected-hover-state-layer-color: #ece0e1;--mdc-checkbox-unselected-pressed-state-layer-color: #ffb1c5;--mat-checkbox-disabled-label-color: rgba(236, 224, 225, .38);--mat-checkbox-label-text-color: #ece0e1;--mdc-text-button-label-text-color: #ffb1c5;--mdc-text-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-protected-button-container-color: #201a1b;--mdc-protected-button-label-text-color: #ffb1c5;--mdc-protected-button-disabled-container-color: rgba(236, 224, 225, .12);--mdc-protected-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #ffb1c5;--mdc-filled-button-label-text-color: #65002f;--mdc-filled-button-disabled-container-color: rgba(236, 224, 225, .12);--mdc-filled-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-outlined-button-disabled-outline-color: rgba(236, 224, 225, .12);--mdc-outlined-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-outlined-button-label-text-color: #ffb1c5;--mdc-outlined-button-outline-color: #9e8c90;--mat-text-button-state-layer-color: #ffb1c5;--mat-text-button-disabled-state-layer-color: #d6c2c5;--mat-text-button-ripple-color: rgba(255, 177, 197, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #ffb1c5;--mat-protected-button-disabled-state-layer-color: #d6c2c5;--mat-protected-button-ripple-color: rgba(255, 177, 197, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #65002f;--mat-filled-button-disabled-state-layer-color: #d6c2c5;--mat-filled-button-ripple-color: rgba(101, 0, 47, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #ffb1c5;--mat-outlined-button-disabled-state-layer-color: #d6c2c5;--mat-outlined-button-ripple-color: rgba(255, 177, 197, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #d6c2c5;--mdc-icon-button-disabled-icon-color: rgba(236, 224, 225, .38);--mat-icon-button-state-layer-color: #d6c2c5;--mat-icon-button-disabled-state-layer-color: #d6c2c5;--mat-icon-button-ripple-color: rgba(214, 194, 197, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #8f0045;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #8f0045;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #ffd9e1;--mat-fab-state-layer-color: #ffd9e1;--mat-fab-ripple-color: rgba(255, 217, 225, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(236, 224, 225, .12);--mat-fab-disabled-state-foreground-color: rgba(236, 224, 225, .38);--mat-fab-small-foreground-color: #ffd9e1;--mat-fab-small-state-layer-color: #ffd9e1;--mat-fab-small-ripple-color: rgba(255, 217, 225, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(236, 224, 225, .12);--mat-fab-small-disabled-state-foreground-color: rgba(236, 224, 225, .38);--mdc-snackbar-container-color: #ece0e1;--mdc-snackbar-supporting-text-color: #352f30;--mat-snack-bar-button-color: #ba005c;--mat-table-background-color: #201a1b;--mat-table-header-headline-color: #ece0e1;--mat-table-row-item-label-text-color: #ece0e1;--mat-table-row-item-outline-color: #514346;--mdc-circular-progress-active-indicator-color: #ffb1c5;--mat-badge-background-color: #ffb4ab;--mat-badge-text-color: #690005;--mat-badge-disabled-state-background-color: rgba(255, 180, 171, .38);--mat-badge-disabled-state-text-color: #690005;--mat-bottom-sheet-container-text-color: #ece0e1;--mat-bottom-sheet-container-background-color: #201a1b;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #ece0e1;--mat-standard-button-toggle-state-layer-color: #ece0e1;--mat-standard-button-toggle-selected-state-background-color: #5b3f46;--mat-standard-button-toggle-selected-state-text-color: #ffd9e1;--mat-standard-button-toggle-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(236, 224, 225, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(236, 224, 225, .12);--mat-standard-button-toggle-divider-color: #9e8c90;--mat-datepicker-calendar-date-selected-state-text-color: #65002f;--mat-datepicker-calendar-date-selected-state-background-color: #ffb1c5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffb1c5;--mat-datepicker-calendar-date-focus-state-background-color: rgba(236, 224, 225, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(236, 224, 225, .08);--mat-datepicker-toggle-active-state-icon-color: #d6c2c5;--mat-datepicker-calendar-date-in-range-state-background-color: #8f0045;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #930100;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #5b3f46;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #e3bdc5;--mat-datepicker-toggle-icon-color: #d6c2c5;--mat-datepicker-calendar-body-label-text-color: #ece0e1;--mat-datepicker-calendar-period-button-text-color: #d6c2c5;--mat-datepicker-calendar-period-button-icon-color: #d6c2c5;--mat-datepicker-calendar-navigation-button-icon-color: #d6c2c5;--mat-datepicker-calendar-header-text-color: #d6c2c5;--mat-datepicker-calendar-date-today-outline-color: #ffb1c5;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-date-text-color: #ece0e1;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #ffb1c5;--mat-datepicker-range-input-separator-color: #ece0e1;--mat-datepicker-range-input-disabled-state-separator-color: rgba(236, 224, 225, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-container-background-color: #2f292a;--mat-datepicker-calendar-container-text-color: #ece0e1;--mat-divider-color: #514346;--mat-expansion-container-background-color: #201a1b;--mat-expansion-container-text-color: #ece0e1;--mat-expansion-actions-divider-color: #514346;--mat-expansion-header-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-expansion-header-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-expansion-header-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-expansion-header-text-color: #ece0e1;--mat-expansion-header-description-color: #d6c2c5;--mat-expansion-header-indicator-color: #d6c2c5;--mat-sidenav-container-background-color: #201a1b;--mat-sidenav-container-text-color: #d6c2c5;--mat-sidenav-content-background-color: #201a1b;--mat-sidenav-content-text-color: #ece0e1;--mat-sidenav-scrim-color: rgba(58, 45, 48, .4);--mat-stepper-header-icon-foreground-color: #201a1b;--mat-stepper-header-selected-state-icon-background-color: #ffb1c5;--mat-stepper-header-selected-state-icon-foreground-color: #65002f;--mat-stepper-header-edit-state-icon-background-color: #ffb1c5;--mat-stepper-header-edit-state-icon-foreground-color: #65002f;--mat-stepper-container-color: #201a1b;--mat-stepper-line-color: #514346;--mat-stepper-header-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-stepper-header-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-stepper-header-label-text-color: #d6c2c5;--mat-stepper-header-optional-label-text-color: #d6c2c5;--mat-stepper-header-selected-state-label-text-color: #d6c2c5;--mat-stepper-header-error-state-label-text-color: #ffb4ab;--mat-stepper-header-icon-background-color: #d6c2c5;--mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;--mat-sort-arrow-color: #ece0e1;--mat-toolbar-container-background-color: #201a1b;--mat-toolbar-container-text-color: #ece0e1;--mat-tree-container-background-color: #201a1b;--mat-tree-node-text-color: #ece0e1}.survey-theme-rose-red-dark .mat-display-large,.survey-theme-rose-red-dark .mat-typography .mat-display-large,.survey-theme-rose-red-dark .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-display-medium,.survey-theme-rose-red-dark .mat-typography .mat-display-medium,.survey-theme-rose-red-dark .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-display-small,.survey-theme-rose-red-dark .mat-typography .mat-display-small,.survey-theme-rose-red-dark .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-headline-large,.survey-theme-rose-red-dark .mat-typography .mat-headline-large,.survey-theme-rose-red-dark .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-headline-medium,.survey-theme-rose-red-dark .mat-typography .mat-headline-medium,.survey-theme-rose-red-dark .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-headline-small,.survey-theme-rose-red-dark .mat-typography .mat-headline-small,.survey-theme-rose-red-dark .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-title-large,.survey-theme-rose-red-dark .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-rose-red-dark .mat-title-medium,.survey-theme-rose-red-dark .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-rose-red-dark .mat-title-small,.survey-theme-rose-red-dark .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-dark .mat-body-large,.survey-theme-rose-red-dark .mat-typography .mat-body-large,.survey-theme-rose-red-dark .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-dark .mat-body-large p,.survey-theme-rose-red-dark .mat-typography .mat-body-large p,.survey-theme-rose-red-dark .mat-typography p{margin:0 0 .75em}.survey-theme-rose-red-dark .mat-body-medium,.survey-theme-rose-red-dark .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-rose-red-dark .mat-body-small,.survey-theme-rose-red-dark .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-rose-red-dark .mat-label-large,.survey-theme-rose-red-dark .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-dark .mat-label-medium,.survey-theme-rose-red-dark .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-dark .mat-label-small,.survey-theme-rose-red-dark .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-dark.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-rose-red-dark ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-rose-red-dark.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#930100}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#ffdad4}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#930100}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#ffdad4}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#5b3f46;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-rose-red-dark.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-container-main{-webkit-text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tp-view-tablet{width:100%;height:100%;margin:0;display:flex;flex-flow:column nowrap;font-size:16px;overflow:hidden}.tp-view-tablet tp-survey-container-answer{flex:1}.tp-view-desktop .container-navigation{display:flex;gap:2em;padding:1em}.tp-view-desktop .container-navigation>div{flex:1}.tp-view-desktop .container-navigation>div:first-child{text-align:right}.tp-view-desktop .container-navigation tp-survey-navigation-button:first-child{text-align:end}.tp-view-tablet .container-navigation{display:flex;gap:2em;padding:.5em}.tp-view-tablet .container-navigation>div{flex:1}.tp-view-tablet .container-navigation .container-navigation-back{text-align:left}.tp-view-tablet .container-navigation .container-navigation-next{text-align:end}\n"] }]
2166
+ }], ctorParameters: () => [] });
2167
+
2168
+ class SurveyQuestionPreviewComponent {
2169
+ constructor() {
2170
+ this.question = input.required();
2171
+ this.language = input.required();
2172
+ this.viewModel = input.required();
2173
+ this.languageList = input.required();
2174
+ this.theme = input('cyan-orange-light');
2175
+ this.templateNavigationRef = input();
2176
+ this.ViewModel = ViewModel;
2177
+ }
2178
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: SurveyQuestionPreviewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
2179
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.6", type: SurveyQuestionPreviewComponent, isStandalone: true, selector: "tp-survey-question-preview", inputs: { question: { classPropertyName: "question", publicName: "question", isSignal: true, isRequired: true, transformFunction: null }, language: { classPropertyName: "language", publicName: "language", isSignal: true, isRequired: true, transformFunction: null }, viewModel: { classPropertyName: "viewModel", publicName: "viewModel", isSignal: true, isRequired: true, transformFunction: null }, languageList: { classPropertyName: "languageList", publicName: "languageList", isSignal: true, isRequired: true, transformFunction: null }, theme: { classPropertyName: "theme", publicName: "theme", isSignal: true, isRequired: false, transformFunction: null }, templateNavigationRef: { classPropertyName: "templateNavigationRef", publicName: "templateNavigationRef", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
2180
+ TpSurveyLogicService,
2181
+ ], ngImport: i0, template: "<div\r\n class=\"survey-container-main survey-typography\"\r\n [tpSurveyUpdateFontSize]=\"viewModel()\"\r\n [tpSurveyTheme]=\"theme()\"\r\n [class.tp-view-desktop]=\"viewModel() === ViewModel.vmDesktop\"\r\n [class.tp-view-tablet]=\"viewModel() === ViewModel.vmTablet\">\r\n\r\n @if (question(); as question) {\r\n <tp-survey-question-caption\r\n [caption]=\"question.MultiLangCaptions | multiLangObjectToHtml:language()\"\r\n [captionHelp]=\"question.MultiLangCaptionsHelper | multiLangObjectToHtml:language()\"/>\r\n\r\n <tp-survey-container-answer\r\n [question]=\"question\"\r\n [language]=\"language()\"\r\n [developerMode]=\"true\"\r\n [viewModel]=\"viewModel()\"\r\n [languageList]=\"languageList()\"/>\r\n }\r\n</div>\r\n", styles: [".mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale3d(0,0,0);background-color:var(--mat-ripple-color, rgba(0, 0, 0, .1))}.cdk-high-contrast-active .mat-ripple-element,.cdk-drag-preview .mat-ripple-element,.cdk-drag-placeholder .mat-ripple-element{display:none}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}.cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.cdk-overlay-backdrop{position:absolute;inset:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.cdk-overlay-dark-backdrop{background:#00000052}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0!important;box-sizing:content-box!important;height:0!important}@keyframes cdk-text-field-autofill-start{}@keyframes cdk-text-field-autofill-end{}.cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.mat-focus-indicator{position:relative}.mat-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border:var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.mat-focus-indicator:focus:before{content:\"\"}.cdk-high-contrast-active{--mat-focus-indicator-display: block}.mat-mdc-focus-indicator{position:relative}.mat-mdc-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-mdc-focus-indicator-display, none);border:var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius, 4px)}.mat-mdc-focus-indicator:focus:before{content:\"\"}.cdk-high-contrast-active{--mat-mdc-focus-indicator-display: block}.mat-app-background{background-color:var(--mat-app-background-color, transparent);color:var(--mat-app-text-color, inherit)}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:var(--mat-app-elevation-shadow-level-0, none)}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:var(--mat-app-elevation-shadow-level-1, none)}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:var(--mat-app-elevation-shadow-level-2, none)}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:var(--mat-app-elevation-shadow-level-3, none)}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:var(--mat-app-elevation-shadow-level-4, none)}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:var(--mat-app-elevation-shadow-level-5, none)}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:var(--mat-app-elevation-shadow-level-6, none)}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:var(--mat-app-elevation-shadow-level-7, none)}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:var(--mat-app-elevation-shadow-level-8, none)}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:var(--mat-app-elevation-shadow-level-9, none)}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:var(--mat-app-elevation-shadow-level-10, none)}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:var(--mat-app-elevation-shadow-level-11, none)}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:var(--mat-app-elevation-shadow-level-12, none)}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:var(--mat-app-elevation-shadow-level-13, none)}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:var(--mat-app-elevation-shadow-level-14, none)}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:var(--mat-app-elevation-shadow-level-15, none)}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:var(--mat-app-elevation-shadow-level-16, none)}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:var(--mat-app-elevation-shadow-level-17, none)}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:var(--mat-app-elevation-shadow-level-18, none)}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:var(--mat-app-elevation-shadow-level-19, none)}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:var(--mat-app-elevation-shadow-level-20, none)}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:var(--mat-app-elevation-shadow-level-21, none)}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:var(--mat-app-elevation-shadow-level-22, none)}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:var(--mat-app-elevation-shadow-level-23, none)}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:var(--mat-app-elevation-shadow-level-24, none)}.survey-container-main{--mat-app-background-color: #fdfbff;--mat-app-text-color: #1a1b1f;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(26, 27, 31, .1);--mat-option-selected-state-label-text-color: #131c2b;--mat-option-label-text-color: #1a1b1f;--mat-option-hover-state-layer-color: rgba(26, 27, 31, .08);--mat-option-focus-state-layer-color: rgba(26, 27, 31, .12);--mat-option-selected-state-layer-color: #dae2f9;--mat-option-label-text-font: Roboto, sans-serif;--mat-option-label-text-line-height: 1.25rem;--mat-option-label-text-size: 1rem;--mat-option-label-text-tracking: .006rem;--mat-option-label-text-weight: 400;--mat-optgroup-label-text-color: #44474e;--mat-optgroup-label-text-font: Roboto, sans-serif;--mat-optgroup-label-text-line-height: 1.25rem;--mat-optgroup-label-text-size: .875rem;--mat-optgroup-label-text-tracking: .006rem;--mat-optgroup-label-text-weight: 500;--mat-full-pseudo-checkbox-selected-icon-color: #005cbb;--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;--mat-full-pseudo-checkbox-unselected-icon-color: #44474e;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fdfbff;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(26, 27, 31, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(26, 27, 31, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #005cbb;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(26, 27, 31, .38);--mdc-elevated-card-container-color: #fdfbff;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-elevated-card-container-shape: 12px;--mdc-outlined-card-container-color: #fdfbff;--mdc-outlined-card-outline-color: #c4c6d0;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-shape: 12px;--mdc-outlined-card-outline-width: 1px;--mat-card-subtitle-text-color: #1a1b1f;--mat-card-title-text-font: Roboto;--mat-card-title-text-line-height: 1.75rem;--mat-card-title-text-size: 1.375rem;--mat-card-title-text-tracking: 0rem;--mat-card-title-text-weight: 400;--mat-card-subtitle-text-font: Roboto, sans-serif;--mat-card-subtitle-text-line-height: 1.5rem;--mat-card-subtitle-text-size: 1rem;--mat-card-subtitle-text-tracking: .009rem;--mat-card-subtitle-text-weight: 500;--mdc-linear-progress-active-indicator-color: #005cbb;--mdc-linear-progress-track-color: #e0e2ec;--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0px;--mdc-plain-tooltip-container-color: #2f3033;--mdc-plain-tooltip-supporting-text-color: #f2f0f4;--mdc-plain-tooltip-supporting-text-line-height: 1rem;--mdc-plain-tooltip-supporting-text-font: Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size: .75rem;--mdc-plain-tooltip-supporting-text-weight: 400;--mdc-plain-tooltip-supporting-text-tracking: .025rem;--mdc-plain-tooltip-container-shape: 4px;--mdc-filled-text-field-caret-color: #005cbb;--mdc-filled-text-field-focus-active-indicator-color: #005cbb;--mdc-filled-text-field-focus-label-text-color: #005cbb;--mdc-filled-text-field-container-color: #e0e2ec;--mdc-filled-text-field-disabled-container-color: rgba(26, 27, 31, .04);--mdc-filled-text-field-label-text-color: #44474e;--mdc-filled-text-field-hover-label-text-color: #44474e;--mdc-filled-text-field-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-filled-text-field-input-text-color: #1a1b1f;--mdc-filled-text-field-disabled-input-text-color: rgba(26, 27, 31, .38);--mdc-filled-text-field-input-text-placeholder-color: #44474e;--mdc-filled-text-field-error-hover-label-text-color: #410002;--mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;--mdc-filled-text-field-error-label-text-color: #ba1a1a;--mdc-filled-text-field-active-indicator-color: #44474e;--mdc-filled-text-field-disabled-active-indicator-color: rgba(26, 27, 31, .38);--mdc-filled-text-field-hover-active-indicator-color: #1a1b1f;--mdc-filled-text-field-error-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-hover-active-indicator-color: #410002;--mdc-filled-text-field-label-text-font: Roboto, sans-serif;--mdc-filled-text-field-label-text-size: 1rem;--mdc-filled-text-field-label-text-tracking: .031rem;--mdc-filled-text-field-label-text-weight: 400;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-caret-color: #005cbb;--mdc-outlined-text-field-focus-outline-color: #005cbb;--mdc-outlined-text-field-focus-label-text-color: #005cbb;--mdc-outlined-text-field-label-text-color: #44474e;--mdc-outlined-text-field-hover-label-text-color: #1a1b1f;--mdc-outlined-text-field-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-outlined-text-field-input-text-color: #1a1b1f;--mdc-outlined-text-field-disabled-input-text-color: rgba(26, 27, 31, .38);--mdc-outlined-text-field-input-text-placeholder-color: #44474e;--mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-hover-label-text-color: #410002;--mdc-outlined-text-field-outline-color: #74777f;--mdc-outlined-text-field-disabled-outline-color: rgba(26, 27, 31, .12);--mdc-outlined-text-field-hover-outline-color: #1a1b1f;--mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;--mdc-outlined-text-field-error-hover-outline-color: #410002;--mdc-outlined-text-field-error-outline-color: #ba1a1a;--mdc-outlined-text-field-label-text-font: Roboto, sans-serif;--mdc-outlined-text-field-label-text-size: 1rem;--mdc-outlined-text-field-label-text-tracking: .031rem;--mdc-outlined-text-field-label-text-weight: 400;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mat-form-field-focus-select-arrow-color: #005cbb;--mat-form-field-disabled-input-text-placeholder-color: rgba(26, 27, 31, .38);--mat-form-field-state-layer-color: #1a1b1f;--mat-form-field-error-text-color: #ba1a1a;--mat-form-field-select-option-text-color: #1a1b1f;--mat-form-field-select-disabled-option-text-color: rgba(26, 27, 31, .38);--mat-form-field-leading-icon-color: #44474e;--mat-form-field-disabled-leading-icon-color: rgba(26, 27, 31, .38);--mat-form-field-trailing-icon-color: #44474e;--mat-form-field-disabled-trailing-icon-color: rgba(26, 27, 31, .38);--mat-form-field-error-focus-trailing-icon-color: #ba1a1a;--mat-form-field-error-hover-trailing-icon-color: #410002;--mat-form-field-error-trailing-icon-color: #ba1a1a;--mat-form-field-enabled-select-arrow-color: #44474e;--mat-form-field-disabled-select-arrow-color: rgba(26, 27, 31, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-container-text-font: Roboto, sans-serif;--mat-form-field-container-text-line-height: 1.5rem;--mat-form-field-container-text-size: 1rem;--mat-form-field-container-text-tracking: .031rem;--mat-form-field-container-text-weight: 400;--mat-form-field-subscript-text-font: Roboto, sans-serif;--mat-form-field-subscript-text-line-height: 1rem;--mat-form-field-subscript-text-size: .75rem;--mat-form-field-subscript-text-tracking: .025rem;--mat-form-field-subscript-text-weight: 400;--mat-form-field-container-height: 52px;--mat-form-field-filled-label-display: block;--mat-form-field-container-vertical-padding: 14px;--mat-form-field-filled-with-label-container-padding-top: 22px;--mat-form-field-filled-with-label-container-padding-bottom: 6px;--mat-form-field-focus-state-layer-opacity: 0;--mat-select-panel-background-color: #efedf1;--mat-select-enabled-trigger-text-color: #1a1b1f;--mat-select-disabled-trigger-text-color: rgba(26, 27, 31, .38);--mat-select-placeholder-text-color: #44474e;--mat-select-enabled-arrow-color: #44474e;--mat-select-disabled-arrow-color: rgba(26, 27, 31, .38);--mat-select-focused-arrow-color: #005cbb;--mat-select-invalid-arrow-color: #ba1a1a;--mat-select-trigger-text-font: Roboto, sans-serif;--mat-select-trigger-text-line-height: 1.5rem;--mat-select-trigger-text-size: 1rem;--mat-select-trigger-text-tracking: .031rem;--mat-select-trigger-text-weight: 400;--mat-select-arrow-transform: translateY(-8px);--mat-select-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #efedf1;--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-dialog-container-color: #fdfbff;--mdc-dialog-subhead-color: #1a1b1f;--mdc-dialog-supporting-text-color: #44474e;--mdc-dialog-subhead-font: Roboto;--mdc-dialog-subhead-line-height: 2rem;--mdc-dialog-subhead-size: 1.5rem;--mdc-dialog-subhead-weight: 400;--mdc-dialog-subhead-tracking: 0rem;--mdc-dialog-supporting-text-font: Roboto, sans-serif;--mdc-dialog-supporting-text-line-height: 1.25rem;--mdc-dialog-supporting-text-size: .875rem;--mdc-dialog-supporting-text-weight: 400;--mdc-dialog-supporting-text-tracking: .016rem;--mdc-dialog-container-shape: 28px;--mat-dialog-container-elevation-shadow: none;--mat-dialog-container-max-width: 560px;--mat-dialog-container-small-max-width: calc(100vw - 32px) ;--mat-dialog-container-min-width: 280px;--mat-dialog-actions-alignment: flex-end;--mat-dialog-actions-padding: 16px 24px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px 0;--mat-dialog-headline-padding: 6px 24px 13px;--mdc-chip-outline-color: #74777f;--mdc-chip-disabled-outline-color: rgba(26, 27, 31, .12);--mdc-chip-focus-outline-color: #44474e;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-chip-elevated-selected-container-color: #dae2f9;--mdc-chip-flat-disabled-selected-container-color: rgba(26, 27, 31, .12);--mdc-chip-focus-state-layer-color: #44474e;--mdc-chip-hover-state-layer-color: #44474e;--mdc-chip-selected-hover-state-layer-color: #131c2b;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #131c2b;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #44474e;--mdc-chip-selected-label-text-color: #131c2b;--mdc-chip-with-icon-icon-color: #44474e;--mdc-chip-with-icon-disabled-icon-color: #1a1b1f;--mdc-chip-with-icon-selected-icon-color: #131c2b;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #1a1b1f;--mdc-chip-with-trailing-icon-trailing-icon-color: #44474e;--mdc-chip-label-text-font: Roboto, sans-serif;--mdc-chip-label-text-line-height: 1.25rem;--mdc-chip-label-text-size: .875rem;--mdc-chip-label-text-tracking: .006rem;--mdc-chip-label-text-weight: 500;--mdc-chip-container-height: 28px;--mdc-chip-container-shape-radius: 8px;--mdc-chip-with-avatar-avatar-size: 24px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 1px;--mdc-chip-with-avatar-disabled-avatar-opacity: .38;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: .38;--mdc-chip-with-icon-disabled-icon-opacity: .38;--mat-chip-trailing-action-state-layer-color: #44474e;--mat-chip-selected-trailing-action-state-layer-color: #131c2b;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #1a1b1f;--mat-chip-selected-trailing-icon-color: #131c2b;--mat-chip-disabled-container-opacity: 1;--mat-chip-trailing-action-opacity: 1;--mat-chip-trailing-action-focus-opacity: 1;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #005cbb;--mdc-switch-selected-handle-color: #ffffff;--mdc-switch-selected-hover-state-layer-color: #005cbb;--mdc-switch-selected-pressed-state-layer-color: #005cbb;--mdc-switch-selected-focus-handle-color: #d7e3ff;--mdc-switch-selected-hover-handle-color: #d7e3ff;--mdc-switch-selected-pressed-handle-color: #d7e3ff;--mdc-switch-selected-focus-track-color: #005cbb;--mdc-switch-selected-hover-track-color: #005cbb;--mdc-switch-selected-pressed-track-color: #005cbb;--mdc-switch-selected-track-color: #005cbb;--mdc-switch-disabled-selected-handle-color: #fdfbff;--mdc-switch-disabled-selected-icon-color: #1a1b1f;--mdc-switch-disabled-selected-track-color: #1a1b1f;--mdc-switch-disabled-unselected-handle-color: #1a1b1f;--mdc-switch-disabled-unselected-icon-color: #e0e2ec;--mdc-switch-disabled-unselected-track-color: #e0e2ec;--mdc-switch-selected-icon-color: #001b3f;--mdc-switch-unselected-focus-handle-color: #44474e;--mdc-switch-unselected-focus-state-layer-color: #1a1b1f;--mdc-switch-unselected-focus-track-color: #e0e2ec;--mdc-switch-unselected-handle-color: #74777f;--mdc-switch-unselected-hover-handle-color: #44474e;--mdc-switch-unselected-hover-state-layer-color: #1a1b1f;--mdc-switch-unselected-hover-track-color: #e0e2ec;--mdc-switch-unselected-icon-color: #e0e2ec;--mdc-switch-unselected-pressed-handle-color: #44474e;--mdc-switch-unselected-pressed-state-layer-color: #1a1b1f;--mdc-switch-unselected-pressed-track-color: #e0e2ec;--mdc-switch-unselected-track-color: #e0e2ec;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-shape: 9999px;--mdc-switch-selected-icon-size: 16px;--mdc-switch-track-height: 32px;--mdc-switch-track-shape: 9999px;--mdc-switch-track-width: 52px;--mdc-switch-unselected-icon-size: 16px;--mdc-switch-state-layer-size: 40px;--mat-switch-track-outline-color: #74777f;--mat-switch-disabled-unselected-track-outline-color: #1a1b1f;--mat-switch-label-text-color: #1a1b1f;--mat-switch-label-text-font: Roboto, sans-serif;--mat-switch-label-text-line-height: 1.25rem;--mat-switch-label-text-size: .875rem;--mat-switch-label-text-tracking: .016rem;--mat-switch-label-text-weight: 400;--mat-switch-disabled-selected-handle-opacity: 1;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 16px;--mat-switch-selected-handle-size: 24px;--mat-switch-pressed-handle-size: 28px;--mat-switch-with-icon-handle-size: 24px;--mat-switch-selected-handle-horizontal-margin: 0 24px;--mat-switch-selected-with-icon-handle-horizontal-margin: 0 24px;--mat-switch-selected-pressed-handle-horizontal-margin: 0 22px;--mat-switch-unselected-handle-horizontal-margin: 0 8px;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0 4px;--mat-switch-unselected-pressed-handle-horizontal-margin: 0 2px;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 0;--mat-switch-visible-track-transition: opacity 75ms;--mat-switch-hidden-track-transition: opacity 75ms;--mat-switch-track-outline-width: 2px;--mat-switch-selected-track-outline-width: 2px;--mat-switch-selected-track-outline-color: transparent;--mat-switch-disabled-unselected-track-outline-width: 2px;--mdc-radio-disabled-selected-icon-color: #1a1b1f;--mdc-radio-disabled-unselected-icon-color: #1a1b1f;--mdc-radio-unselected-hover-icon-color: #1a1b1f;--mdc-radio-unselected-icon-color: #44474e;--mdc-radio-unselected-pressed-icon-color: #1a1b1f;--mdc-radio-selected-focus-icon-color: #005cbb;--mdc-radio-selected-hover-icon-color: #005cbb;--mdc-radio-selected-icon-color: #005cbb;--mdc-radio-selected-pressed-icon-color: #005cbb;--mdc-radio-state-layer-size: 36px;--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mat-radio-ripple-color: #1a1b1f;--mat-radio-checked-ripple-color: #005cbb;--mat-radio-disabled-label-color: rgba(26, 27, 31, .38);--mat-radio-label-text-color: #1a1b1f;--mat-radio-label-text-font: Roboto, sans-serif;--mat-radio-label-text-line-height: 1.25rem;--mat-radio-label-text-size: .875rem;--mat-radio-label-text-tracking: .016rem;--mat-radio-label-text-weight: 400;--mat-radio-touch-target-display: block;--mdc-slider-handle-color: #005cbb;--mdc-slider-focus-handle-color: #005cbb;--mdc-slider-hover-handle-color: #005cbb;--mdc-slider-active-track-color: #005cbb;--mdc-slider-inactive-track-color: #e0e2ec;--mdc-slider-with-tick-marks-inactive-container-color: #44474e;--mdc-slider-with-tick-marks-active-container-color: #ffffff;--mdc-slider-disabled-active-track-color: #1a1b1f;--mdc-slider-disabled-handle-color: #1a1b1f;--mdc-slider-disabled-inactive-track-color: #1a1b1f;--mdc-slider-label-container-color: #005cbb;--mdc-slider-label-label-text-color: #ffffff;--mdc-slider-with-overlap-handle-outline-color: #ffffff;--mdc-slider-with-tick-marks-disabled-container-color: #1a1b1f;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mdc-slider-label-label-text-font: Roboto, sans-serif;--mdc-slider-label-label-text-size: .75rem;--mdc-slider-label-label-text-line-height: 1rem;--mdc-slider-label-label-text-tracking: .031rem;--mdc-slider-label-label-text-weight: 500;--mdc-slider-active-track-height: 4px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 9999px;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .38;--mdc-slider-with-tick-marks-container-shape: 9999px;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .38;--mat-slider-ripple-color: #005cbb;--mat-slider-hover-state-layer-color: rgba(0, 92, 187, .05);--mat-slider-focus-state-layer-color: rgba(0, 92, 187, .2);--mat-slider-value-indicator-width: 28px;--mat-slider-value-indicator-height: 28px;--mat-slider-value-indicator-caret-display: none;--mat-slider-value-indicator-border-radius: 50% 50% 50% 0;--mat-slider-value-indicator-padding: 0;--mat-slider-value-indicator-text-transform: rotate(45deg);--mat-slider-value-indicator-container-transform: translateX(-50%) rotate(-45deg);--mat-slider-value-indicator-opacity: 1;--mat-menu-item-label-text-color: #1a1b1f;--mat-menu-item-icon-color: #44474e;--mat-menu-item-hover-state-layer-color: rgba(26, 27, 31, .08);--mat-menu-item-focus-state-layer-color: rgba(26, 27, 31, .12);--mat-menu-container-color: #efedf1;--mat-menu-divider-color: #e0e2ec;--mat-menu-item-label-text-font: Roboto, sans-serif;--mat-menu-item-label-text-size: .875rem;--mat-menu-item-label-text-tracking: .006rem;--mat-menu-item-label-text-line-height: 1.25rem;--mat-menu-item-label-text-weight: 500;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 8px;--mat-menu-divider-top-spacing: 8px;--mat-menu-item-spacing: 12px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 12px;--mat-menu-item-trailing-spacing: 12px;--mat-menu-item-with-icon-leading-spacing: 12px;--mat-menu-item-with-icon-trailing-spacing: 12px;--mat-menu-base-elevation-level: 2;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #d7e3ff;--mdc-list-list-item-disabled-state-layer-color: #1a1b1f;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #1a1b1f;--mdc-list-list-item-supporting-text-color: #44474e;--mdc-list-list-item-leading-icon-color: #44474e;--mdc-list-list-item-trailing-supporting-text-color: #44474e;--mdc-list-list-item-trailing-icon-color: #44474e;--mdc-list-list-item-selected-trailing-icon-color: #005cbb;--mdc-list-list-item-disabled-label-text-color: #1a1b1f;--mdc-list-list-item-disabled-leading-icon-color: #1a1b1f;--mdc-list-list-item-disabled-trailing-icon-color: #1a1b1f;--mdc-list-list-item-hover-label-text-color: #1a1b1f;--mdc-list-list-item-focus-label-text-color: #1a1b1f;--mdc-list-list-item-hover-state-layer-color: #1a1b1f;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #1a1b1f;--mdc-list-list-item-focus-state-layer-opacity: .12;--mdc-list-list-item-label-text-font: Roboto, sans-serif;--mdc-list-list-item-label-text-line-height: 1.5rem;--mdc-list-list-item-label-text-size: 1rem;--mdc-list-list-item-label-text-tracking: .031rem;--mdc-list-list-item-label-text-weight: 400;--mdc-list-list-item-supporting-text-font: Roboto, sans-serif;--mdc-list-list-item-supporting-text-line-height: 1.25rem;--mdc-list-list-item-supporting-text-size: .875rem;--mdc-list-list-item-supporting-text-tracking: .016rem;--mdc-list-list-item-supporting-text-weight: 400;--mdc-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;--mdc-list-list-item-trailing-supporting-text-line-height: 1rem;--mdc-list-list-item-trailing-supporting-text-size: .688rem;--mdc-list-list-item-trailing-supporting-text-tracking: .031rem;--mdc-list-list-item-trailing-supporting-text-weight: 500;--mdc-list-list-item-one-line-container-height: 44px;--mdc-list-list-item-two-line-container-height: 60px;--mdc-list-list-item-three-line-container-height: 84px;--mdc-list-list-item-container-shape: 0px;--mdc-list-list-item-leading-avatar-shape: 9999px;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-label-text-opacity: .3;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: #dae2f9;--mat-list-list-item-leading-icon-start-space: 12px;--mat-list-list-item-leading-icon-end-space: 12px;--mat-list-active-indicator-shape: 9999px;--mat-paginator-container-text-color: #1a1b1f;--mat-paginator-container-background-color: #fdfbff;--mat-paginator-enabled-icon-color: #44474e;--mat-paginator-disabled-icon-color: rgba(26, 27, 31, .38);--mat-paginator-container-text-font: Roboto, sans-serif;--mat-paginator-container-text-line-height: 1rem;--mat-paginator-container-text-size: .75rem;--mat-paginator-container-text-tracking: .025rem;--mat-paginator-container-text-weight: 400;--mat-paginator-select-trigger-text-size: .75rem;--mat-paginator-container-size: 52px;--mat-paginator-form-field-container-height: 40px;--mat-paginator-form-field-container-vertical-padding: 8px;--mat-paginator-touch-target-display: block;--mdc-secondary-navigation-tab-container-height: 44px;--mdc-tab-indicator-active-indicator-color: #005cbb;--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mat-tab-header-divider-color: #e0e2ec;--mat-tab-header-pagination-icon-color: #1a1b1f;--mat-tab-header-inactive-label-text-color: #1a1b1f;--mat-tab-header-active-label-text-color: #1a1b1f;--mat-tab-header-active-ripple-color: #1a1b1f;--mat-tab-header-inactive-ripple-color: #1a1b1f;--mat-tab-header-inactive-focus-label-text-color: #1a1b1f;--mat-tab-header-inactive-hover-label-text-color: #1a1b1f;--mat-tab-header-active-focus-label-text-color: #1a1b1f;--mat-tab-header-active-hover-label-text-color: #1a1b1f;--mat-tab-header-active-focus-indicator-color: #005cbb;--mat-tab-header-active-hover-indicator-color: #005cbb;--mat-tab-header-label-text-font: Roboto, sans-serif;--mat-tab-header-label-text-size: .875rem;--mat-tab-header-label-text-tracking: .006rem;--mat-tab-header-label-text-line-height: 1.25rem;--mat-tab-header-label-text-weight: 500;--mat-tab-header-divider-height: 1px;--mdc-checkbox-disabled-selected-checkmark-color: #fdfbff;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(26, 27, 31, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(26, 27, 31, .38);--mdc-checkbox-selected-checkmark-color: #ffffff;--mdc-checkbox-selected-focus-icon-color: #005cbb;--mdc-checkbox-selected-hover-icon-color: #005cbb;--mdc-checkbox-selected-icon-color: #005cbb;--mdc-checkbox-unselected-focus-icon-color: #1a1b1f;--mdc-checkbox-unselected-hover-icon-color: #1a1b1f;--mdc-checkbox-unselected-icon-color: #44474e;--mdc-checkbox-selected-focus-state-layer-color: #005cbb;--mdc-checkbox-selected-hover-state-layer-color: #005cbb;--mdc-checkbox-selected-pressed-state-layer-color: #1a1b1f;--mdc-checkbox-unselected-focus-state-layer-color: #1a1b1f;--mdc-checkbox-unselected-hover-state-layer-color: #1a1b1f;--mdc-checkbox-unselected-pressed-state-layer-color: #005cbb;--mdc-checkbox-state-layer-size: 36px;--mat-checkbox-disabled-label-color: rgba(26, 27, 31, .38);--mat-checkbox-label-text-color: #1a1b1f;--mat-checkbox-label-text-font: Roboto, sans-serif;--mat-checkbox-label-text-line-height: 1.25rem;--mat-checkbox-label-text-size: .875rem;--mat-checkbox-label-text-tracking: .016rem;--mat-checkbox-label-text-weight: 400;--mat-checkbox-touch-target-display: block;--mdc-text-button-label-text-color: #005cbb;--mdc-text-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-text-button-label-text-font: Roboto, sans-serif;--mdc-text-button-label-text-size: .875rem;--mdc-text-button-label-text-tracking: .006rem;--mdc-text-button-label-text-weight: 500;--mdc-text-button-container-height: 36px;--mdc-text-button-container-shape: 9999px;--mdc-protected-button-container-color: #fdfbff;--mdc-protected-button-label-text-color: #005cbb;--mdc-protected-button-disabled-container-color: rgba(26, 27, 31, .12);--mdc-protected-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-protected-button-label-text-font: Roboto, sans-serif;--mdc-protected-button-label-text-size: .875rem;--mdc-protected-button-label-text-tracking: .006rem;--mdc-protected-button-label-text-weight: 500;--mdc-protected-button-container-height: 36px;--mdc-protected-button-container-shape: 9999px;--mdc-filled-button-container-color: #005cbb;--mdc-filled-button-label-text-color: #ffffff;--mdc-filled-button-disabled-container-color: rgba(26, 27, 31, .12);--mdc-filled-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-filled-button-label-text-font: Roboto, sans-serif;--mdc-filled-button-label-text-size: .875rem;--mdc-filled-button-label-text-tracking: .006rem;--mdc-filled-button-label-text-weight: 500;--mdc-filled-button-container-height: 36px;--mdc-filled-button-container-shape: 9999px;--mdc-outlined-button-disabled-outline-color: rgba(26, 27, 31, .12);--mdc-outlined-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-outlined-button-label-text-color: #005cbb;--mdc-outlined-button-outline-color: #74777f;--mdc-outlined-button-label-text-font: Roboto, sans-serif;--mdc-outlined-button-label-text-size: .875rem;--mdc-outlined-button-label-text-tracking: .006rem;--mdc-outlined-button-label-text-weight: 500;--mdc-outlined-button-container-height: 36px;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 9999px;--mat-text-button-state-layer-color: #005cbb;--mat-text-button-disabled-state-layer-color: #44474e;--mat-text-button-ripple-color: rgba(0, 92, 187, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-text-button-touch-target-display: block;--mat-text-button-horizontal-padding: 12px;--mat-text-button-with-icon-horizontal-padding: 16px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: -4px;--mat-protected-button-state-layer-color: #005cbb;--mat-protected-button-disabled-state-layer-color: #44474e;--mat-protected-button-ripple-color: rgba(0, 92, 187, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-protected-button-touch-target-display: block;--mat-protected-button-horizontal-padding: 24px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -8px;--mat-filled-button-state-layer-color: #ffffff;--mat-filled-button-disabled-state-layer-color: #44474e;--mat-filled-button-ripple-color: rgba(255, 255, 255, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-filled-button-touch-target-display: block;--mat-filled-button-horizontal-padding: 24px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -8px;--mat-outlined-button-state-layer-color: #005cbb;--mat-outlined-button-disabled-state-layer-color: #44474e;--mat-outlined-button-ripple-color: rgba(0, 92, 187, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mat-outlined-button-touch-target-display: block;--mat-outlined-button-horizontal-padding: 24px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -8px;--mdc-icon-button-icon-color: #44474e;--mdc-icon-button-disabled-icon-color: rgba(26, 27, 31, .38);--mdc-icon-button-state-layer-size: 36px;--mdc-icon-button-icon-size: 24px;--mat-icon-button-state-layer-color: #44474e;--mat-icon-button-disabled-state-layer-color: #44474e;--mat-icon-button-ripple-color: rgba(68, 71, 78, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-touch-target-display: block;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-label-text-font: Roboto, sans-serif;--mdc-extended-fab-label-text-size: .875rem;--mdc-extended-fab-label-text-tracking: .006rem;--mdc-extended-fab-label-text-weight: 500;--mdc-extended-fab-container-height: 56px;--mdc-extended-fab-container-shape: 16px;--mdc-fab-container-color: #d7e3ff;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-shape: 16px;--mdc-fab-small-container-color: #d7e3ff;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-shape: 12px;--mat-fab-foreground-color: #001b3f;--mat-fab-state-layer-color: #001b3f;--mat-fab-ripple-color: rgba(0, 27, 63, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(26, 27, 31, .12);--mat-fab-disabled-state-foreground-color: rgba(26, 27, 31, .38);--mat-fab-touch-target-display: block;--mat-fab-small-foreground-color: #001b3f;--mat-fab-small-state-layer-color: #001b3f;--mat-fab-small-ripple-color: rgba(0, 27, 63, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(26, 27, 31, .12);--mat-fab-small-disabled-state-foreground-color: rgba(26, 27, 31, .38);--mdc-snackbar-container-color: #2f3033;--mdc-snackbar-supporting-text-color: #f2f0f4;--mdc-snackbar-supporting-text-font: Roboto, sans-serif;--mdc-snackbar-supporting-text-line-height: 1.25rem;--mdc-snackbar-supporting-text-size: .875rem;--mdc-snackbar-supporting-text-weight: 400;--mdc-snackbar-container-shape: 4px;--mat-snack-bar-button-color: #abc7ff;--mat-table-background-color: #fdfbff;--mat-table-header-headline-color: #1a1b1f;--mat-table-row-item-label-text-color: #1a1b1f;--mat-table-row-item-outline-color: #c4c6d0;--mat-table-header-headline-font: Roboto, sans-serif;--mat-table-header-headline-line-height: 1.25rem;--mat-table-header-headline-size: .875rem;--mat-table-header-headline-weight: 500;--mat-table-header-headline-tracking: .006rem;--mat-table-row-item-label-text-font: Roboto, sans-serif;--mat-table-row-item-label-text-line-height: 1.25rem;--mat-table-row-item-label-text-size: .875rem;--mat-table-row-item-label-text-weight: 400;--mat-table-row-item-label-text-tracking: .016rem;--mat-table-footer-supporting-text-font: Roboto, sans-serif;--mat-table-footer-supporting-text-line-height: 1.25rem;--mat-table-footer-supporting-text-size: .875rem;--mat-table-footer-supporting-text-weight: 400;--mat-table-footer-supporting-text-tracking: .016rem;--mat-table-header-container-height: 52px;--mat-table-footer-container-height: 48px;--mat-table-row-item-container-height: 48px;--mat-table-row-item-outline-width: 1px;--mdc-circular-progress-active-indicator-color: #005cbb;--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mat-badge-background-color: #ba1a1a;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: rgba(186, 26, 26, .38);--mat-badge-disabled-state-text-color: #ffffff;--mat-badge-text-font: Roboto, sans-serif;--mat-badge-text-size: .688rem;--mat-badge-text-weight: 500;--mat-badge-large-size-text-size: .688rem;--mat-badge-container-shape: 9999px;--mat-badge-container-size: 16px;--mat-badge-small-size-container-size: 6px;--mat-badge-large-size-container-size: 16px;--mat-badge-legacy-container-size: unset;--mat-badge-legacy-small-size-container-size: unset;--mat-badge-legacy-large-size-container-size: unset;--mat-badge-container-offset: -12px 0;--mat-badge-small-size-container-offset: -6px 0;--mat-badge-large-size-container-offset: -12px 0;--mat-badge-container-overlap-offset: -12px;--mat-badge-small-size-container-overlap-offset: -6px;--mat-badge-large-size-container-overlap-offset: -12px;--mat-badge-container-padding: 0 4px;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0 4px;--mat-badge-small-size-text-size: 0;--mat-bottom-sheet-container-text-color: #1a1b1f;--mat-bottom-sheet-container-background-color: #f5f3f7;--mat-bottom-sheet-container-text-font: Roboto, sans-serif;--mat-bottom-sheet-container-text-line-height: 1.5rem;--mat-bottom-sheet-container-text-size: 1rem;--mat-bottom-sheet-container-text-tracking: .031rem;--mat-bottom-sheet-container-text-weight: 400;--mat-bottom-sheet-container-shape: 28px;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #1a1b1f;--mat-standard-button-toggle-state-layer-color: #1a1b1f;--mat-standard-button-toggle-selected-state-background-color: #dae2f9;--mat-standard-button-toggle-selected-state-text-color: #131c2b;--mat-standard-button-toggle-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(26, 27, 31, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(26, 27, 31, .12);--mat-standard-button-toggle-divider-color: #74777f;--mat-standard-button-toggle-label-text-font: Roboto, sans-serif;--mat-standard-button-toggle-label-text-line-height: 1.25rem;--mat-standard-button-toggle-label-text-size: .875rem;--mat-standard-button-toggle-label-text-tracking: .006rem;--mat-standard-button-toggle-label-text-weight: 500;--mat-standard-button-toggle-height: 40px;--mat-standard-button-toggle-shape: 9999px;--mat-standard-button-toggle-background-color: transparent;--mat-standard-button-toggle-disabled-state-background-color: transparent;--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #005cbb;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #005cbb;--mat-datepicker-calendar-date-focus-state-background-color: rgba(26, 27, 31, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(26, 27, 31, .08);--mat-datepicker-toggle-active-state-icon-color: #44474e;--mat-datepicker-calendar-date-in-range-state-background-color: #d7e3ff;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #e0e0ff;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #dae2f9;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #565e71;--mat-datepicker-toggle-icon-color: #44474e;--mat-datepicker-calendar-body-label-text-color: #1a1b1f;--mat-datepicker-calendar-period-button-text-color: #44474e;--mat-datepicker-calendar-period-button-icon-color: #44474e;--mat-datepicker-calendar-navigation-button-icon-color: #44474e;--mat-datepicker-calendar-header-text-color: #44474e;--mat-datepicker-calendar-date-today-outline-color: #005cbb;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-date-text-color: #1a1b1f;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #005cbb;--mat-datepicker-range-input-separator-color: #1a1b1f;--mat-datepicker-range-input-disabled-state-separator-color: rgba(26, 27, 31, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-container-background-color: #e9e8ec;--mat-datepicker-calendar-container-text-color: #1a1b1f;--mat-datepicker-calendar-text-font: Roboto, sans-serif;--mat-datepicker-calendar-text-size: 1rem;--mat-datepicker-calendar-body-label-text-size: .875rem;--mat-datepicker-calendar-body-label-text-weight: 500;--mat-datepicker-calendar-period-button-text-size: .875rem;--mat-datepicker-calendar-period-button-text-weight: 500;--mat-datepicker-calendar-header-text-size: .875rem;--mat-datepicker-calendar-header-text-weight: 500;--mat-datepicker-calendar-container-shape: 16px;--mat-datepicker-calendar-container-touch-shape: 28px;--mat-datepicker-calendar-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-divider-color: transparent;--mat-datepicker-calendar-date-outline-color: transparent;--mat-divider-color: #c4c6d0;--mat-divider-width: 1px;--mat-expansion-container-background-color: #fdfbff;--mat-expansion-container-text-color: #1a1b1f;--mat-expansion-actions-divider-color: #c4c6d0;--mat-expansion-header-hover-state-layer-color: rgba(26, 27, 31, .08);--mat-expansion-header-focus-state-layer-color: rgba(26, 27, 31, .12);--mat-expansion-header-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-expansion-header-text-color: #1a1b1f;--mat-expansion-header-description-color: #44474e;--mat-expansion-header-indicator-color: #44474e;--mat-expansion-header-text-font: Roboto, sans-serif;--mat-expansion-header-text-size: 1rem;--mat-expansion-header-text-weight: 500;--mat-expansion-header-text-line-height: 1.5rem;--mat-expansion-header-text-tracking: .009rem;--mat-expansion-container-text-font: Roboto, sans-serif;--mat-expansion-container-text-line-height: 1.5rem;--mat-expansion-container-text-size: 1rem;--mat-expansion-container-text-tracking: .031rem;--mat-expansion-container-text-weight: 400;--mat-expansion-header-collapsed-state-height: 44px;--mat-expansion-header-expanded-state-height: 60px;--mat-expansion-container-shape: 12px;--mat-expansion-legacy-header-indicator-display: none;--mat-expansion-header-indicator-display: inline-block;--mat-grid-list-tile-header-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;--mat-grid-list-tile-header-secondary-text-size: 400 .875rem / 1.25rem Roboto, sans-serif;--mat-grid-list-tile-footer-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;--mat-grid-list-tile-footer-secondary-text-size: 400 .875rem / 1.25rem Roboto, sans-serif;--mat-icon-color: inherit;--mat-sidenav-container-background-color: #fdfbff;--mat-sidenav-container-text-color: #44474e;--mat-sidenav-content-background-color: #fdfbff;--mat-sidenav-content-text-color: #1a1b1f;--mat-sidenav-scrim-color: rgba(45, 48, 56, .4);--mat-sidenav-container-shape: 16px;--mat-sidenav-container-elevation-shadow: none;--mat-sidenav-container-width: 360px;--mat-sidenav-container-divider-color: transparent;--mat-stepper-header-icon-foreground-color: #fdfbff;--mat-stepper-header-selected-state-icon-background-color: #005cbb;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #005cbb;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #fdfbff;--mat-stepper-line-color: #c4c6d0;--mat-stepper-header-hover-state-layer-color: rgba(47, 48, 51, .08);--mat-stepper-header-focus-state-layer-color: rgba(47, 48, 51, .12);--mat-stepper-header-label-text-color: #44474e;--mat-stepper-header-optional-label-text-color: #44474e;--mat-stepper-header-selected-state-label-text-color: #44474e;--mat-stepper-header-error-state-label-text-color: #ba1a1a;--mat-stepper-header-icon-background-color: #44474e;--mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;--mat-stepper-container-text-font: Roboto, sans-serif;--mat-stepper-header-label-text-font: Roboto, sans-serif;--mat-stepper-header-label-text-size: .875rem;--mat-stepper-header-label-text-weight: 500;--mat-stepper-header-error-state-label-text-size: .875rem;--mat-stepper-header-selected-state-label-text-size: .875rem;--mat-stepper-header-selected-state-label-text-weight: 500;--mat-stepper-header-height: 68px;--mat-stepper-header-focus-state-layer-shape: 12px;--mat-stepper-header-hover-state-layer-shape: 12px;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #1a1b1f;--mat-toolbar-container-background-color: #fdfbff;--mat-toolbar-container-text-color: #1a1b1f;--mat-toolbar-title-text-font: Roboto;--mat-toolbar-title-text-line-height: 1.75rem;--mat-toolbar-title-text-size: 1.375rem;--mat-toolbar-title-text-tracking: 0rem;--mat-toolbar-title-text-weight: 400;--mat-toolbar-standard-height: 60px;--mat-toolbar-mobile-height: 52px;--mat-tree-container-background-color: #fdfbff;--mat-tree-node-text-color: #1a1b1f;--mat-tree-node-text-font: Roboto, sans-serif;--mat-tree-node-text-size: 1rem;--mat-tree-node-text-weight: 400;--mat-tree-node-min-height: 44px;font-family:Roboto,Helvetica Neue,sans-serif}.mat-theme-loaded-marker{display:none}.survey-container-main p{margin:0}.survey-theme-azure-blue-light .mat-display-large,.survey-theme-azure-blue-light .mat-typography .mat-display-large,.survey-theme-azure-blue-light .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-display-medium,.survey-theme-azure-blue-light .mat-typography .mat-display-medium,.survey-theme-azure-blue-light .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-display-small,.survey-theme-azure-blue-light .mat-typography .mat-display-small,.survey-theme-azure-blue-light .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-headline-large,.survey-theme-azure-blue-light .mat-typography .mat-headline-large,.survey-theme-azure-blue-light .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-headline-medium,.survey-theme-azure-blue-light .mat-typography .mat-headline-medium,.survey-theme-azure-blue-light .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-headline-small,.survey-theme-azure-blue-light .mat-typography .mat-headline-small,.survey-theme-azure-blue-light .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-title-large,.survey-theme-azure-blue-light .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-azure-blue-light .mat-title-medium,.survey-theme-azure-blue-light .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-azure-blue-light .mat-title-small,.survey-theme-azure-blue-light .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-light .mat-body-large,.survey-theme-azure-blue-light .mat-typography .mat-body-large,.survey-theme-azure-blue-light .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-light .mat-body-large p,.survey-theme-azure-blue-light .mat-typography .mat-body-large p,.survey-theme-azure-blue-light .mat-typography p{margin:0 0 .75em}.survey-theme-azure-blue-light .mat-body-medium,.survey-theme-azure-blue-light .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-azure-blue-light .mat-body-small,.survey-theme-azure-blue-light .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-azure-blue-light .mat-label-large,.survey-theme-azure-blue-light .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-light .mat-label-medium,.survey-theme-azure-blue-light .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-light .mat-label-small,.survey-theme-azure-blue-light .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-light.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-azure-blue-light ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-azure-blue-light.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#e0e0ff}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#00006e}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#e0e0ff}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#00006e}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#dae2f9;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-azure-blue-light.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-azure-blue-dark{--mat-app-background-color: #1a1b1f;--mat-app-text-color: #e3e2e6;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(227, 226, 230, .1);--mat-option-selected-state-label-text-color: #dae2f9;--mat-option-label-text-color: #e3e2e6;--mat-option-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-option-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-option-selected-state-layer-color: #3e4759;--mat-optgroup-label-text-color: #c4c6d0;--mat-full-pseudo-checkbox-selected-icon-color: #abc7ff;--mat-full-pseudo-checkbox-selected-checkmark-color: #002f65;--mat-full-pseudo-checkbox-unselected-icon-color: #c4c6d0;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #1a1b1f;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(227, 226, 230, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(227, 226, 230, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #abc7ff;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(227, 226, 230, .38);--mdc-elevated-card-container-color: #1a1b1f;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #1a1b1f;--mdc-outlined-card-outline-color: #44474e;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #e3e2e6;--mdc-linear-progress-active-indicator-color: #abc7ff;--mdc-linear-progress-track-color: #44474e;--mdc-plain-tooltip-container-color: #e3e2e6;--mdc-plain-tooltip-supporting-text-color: #2f3033;--mdc-filled-text-field-caret-color: #abc7ff;--mdc-filled-text-field-focus-active-indicator-color: #abc7ff;--mdc-filled-text-field-focus-label-text-color: #abc7ff;--mdc-filled-text-field-container-color: #44474e;--mdc-filled-text-field-disabled-container-color: rgba(227, 226, 230, .04);--mdc-filled-text-field-label-text-color: #c4c6d0;--mdc-filled-text-field-hover-label-text-color: #c4c6d0;--mdc-filled-text-field-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-filled-text-field-input-text-color: #e3e2e6;--mdc-filled-text-field-disabled-input-text-color: rgba(227, 226, 230, .38);--mdc-filled-text-field-input-text-placeholder-color: #c4c6d0;--mdc-filled-text-field-error-hover-label-text-color: #ffdad6;--mdc-filled-text-field-error-focus-label-text-color: #ffb4ab;--mdc-filled-text-field-error-label-text-color: #ffb4ab;--mdc-filled-text-field-active-indicator-color: #c4c6d0;--mdc-filled-text-field-disabled-active-indicator-color: rgba(227, 226, 230, .38);--mdc-filled-text-field-hover-active-indicator-color: #e3e2e6;--mdc-filled-text-field-error-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-focus-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-hover-active-indicator-color: #ffdad6;--mdc-outlined-text-field-caret-color: #abc7ff;--mdc-outlined-text-field-focus-outline-color: #abc7ff;--mdc-outlined-text-field-focus-label-text-color: #abc7ff;--mdc-outlined-text-field-label-text-color: #c4c6d0;--mdc-outlined-text-field-hover-label-text-color: #e3e2e6;--mdc-outlined-text-field-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-outlined-text-field-input-text-color: #e3e2e6;--mdc-outlined-text-field-disabled-input-text-color: rgba(227, 226, 230, .38);--mdc-outlined-text-field-input-text-placeholder-color: #c4c6d0;--mdc-outlined-text-field-error-focus-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-hover-label-text-color: #ffdad6;--mdc-outlined-text-field-outline-color: #8e9099;--mdc-outlined-text-field-disabled-outline-color: rgba(227, 226, 230, .12);--mdc-outlined-text-field-hover-outline-color: #e3e2e6;--mdc-outlined-text-field-error-focus-outline-color: #ffb4ab;--mdc-outlined-text-field-error-hover-outline-color: #ffdad6;--mdc-outlined-text-field-error-outline-color: #ffb4ab;--mat-form-field-focus-select-arrow-color: #abc7ff;--mat-form-field-disabled-input-text-placeholder-color: rgba(227, 226, 230, .38);--mat-form-field-state-layer-color: #e3e2e6;--mat-form-field-error-text-color: #ffb4ab;--mat-form-field-select-option-text-color: #1a1b1f;--mat-form-field-select-disabled-option-text-color: rgba(26, 27, 31, .38);--mat-form-field-leading-icon-color: #c4c6d0;--mat-form-field-disabled-leading-icon-color: rgba(227, 226, 230, .38);--mat-form-field-trailing-icon-color: #c4c6d0;--mat-form-field-disabled-trailing-icon-color: rgba(227, 226, 230, .38);--mat-form-field-error-focus-trailing-icon-color: #ffb4ab;--mat-form-field-error-hover-trailing-icon-color: #ffdad6;--mat-form-field-error-trailing-icon-color: #ffb4ab;--mat-form-field-enabled-select-arrow-color: #c4c6d0;--mat-form-field-disabled-select-arrow-color: rgba(227, 226, 230, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #1e1f23;--mat-select-enabled-trigger-text-color: #e3e2e6;--mat-select-disabled-trigger-text-color: rgba(227, 226, 230, .38);--mat-select-placeholder-text-color: #c4c6d0;--mat-select-enabled-arrow-color: #c4c6d0;--mat-select-disabled-arrow-color: rgba(227, 226, 230, .38);--mat-select-focused-arrow-color: #abc7ff;--mat-select-invalid-arrow-color: #ffb4ab;--mat-autocomplete-background-color: #1e1f23;--mdc-dialog-container-color: #1a1b1f;--mdc-dialog-subhead-color: #e3e2e6;--mdc-dialog-supporting-text-color: #c4c6d0;--mdc-chip-outline-color: #8e9099;--mdc-chip-disabled-outline-color: rgba(227, 226, 230, .12);--mdc-chip-focus-outline-color: #c4c6d0;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-chip-elevated-selected-container-color: #3e4759;--mdc-chip-flat-disabled-selected-container-color: rgba(227, 226, 230, .12);--mdc-chip-focus-state-layer-color: #c4c6d0;--mdc-chip-hover-state-layer-color: #c4c6d0;--mdc-chip-selected-hover-state-layer-color: #dae2f9;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #dae2f9;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #c4c6d0;--mdc-chip-selected-label-text-color: #dae2f9;--mdc-chip-with-icon-icon-color: #c4c6d0;--mdc-chip-with-icon-disabled-icon-color: #e3e2e6;--mdc-chip-with-icon-selected-icon-color: #dae2f9;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #e3e2e6;--mdc-chip-with-trailing-icon-trailing-icon-color: #c4c6d0;--mat-chip-trailing-action-state-layer-color: #c4c6d0;--mat-chip-selected-trailing-action-state-layer-color: #dae2f9;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #e3e2e6;--mat-chip-selected-trailing-icon-color: #dae2f9;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #abc7ff;--mdc-switch-selected-handle-color: #002f65;--mdc-switch-selected-hover-state-layer-color: #abc7ff;--mdc-switch-selected-pressed-state-layer-color: #abc7ff;--mdc-switch-selected-focus-handle-color: #00458f;--mdc-switch-selected-hover-handle-color: #00458f;--mdc-switch-selected-pressed-handle-color: #00458f;--mdc-switch-selected-focus-track-color: #abc7ff;--mdc-switch-selected-hover-track-color: #abc7ff;--mdc-switch-selected-pressed-track-color: #abc7ff;--mdc-switch-selected-track-color: #abc7ff;--mdc-switch-disabled-selected-handle-color: #1a1b1f;--mdc-switch-disabled-selected-icon-color: #e3e2e6;--mdc-switch-disabled-selected-track-color: #e3e2e6;--mdc-switch-disabled-unselected-handle-color: #e3e2e6;--mdc-switch-disabled-unselected-icon-color: #44474e;--mdc-switch-disabled-unselected-track-color: #44474e;--mdc-switch-selected-icon-color: #d7e3ff;--mdc-switch-unselected-focus-handle-color: #c4c6d0;--mdc-switch-unselected-focus-state-layer-color: #e3e2e6;--mdc-switch-unselected-focus-track-color: #44474e;--mdc-switch-unselected-handle-color: #8e9099;--mdc-switch-unselected-hover-handle-color: #c4c6d0;--mdc-switch-unselected-hover-state-layer-color: #e3e2e6;--mdc-switch-unselected-hover-track-color: #44474e;--mdc-switch-unselected-icon-color: #44474e;--mdc-switch-unselected-pressed-handle-color: #c4c6d0;--mdc-switch-unselected-pressed-state-layer-color: #e3e2e6;--mdc-switch-unselected-pressed-track-color: #44474e;--mdc-switch-unselected-track-color: #44474e;--mat-switch-track-outline-color: #8e9099;--mat-switch-disabled-unselected-track-outline-color: #e3e2e6;--mat-switch-label-text-color: #e3e2e6;--mdc-radio-disabled-selected-icon-color: #e3e2e6;--mdc-radio-disabled-unselected-icon-color: #e3e2e6;--mdc-radio-unselected-hover-icon-color: #e3e2e6;--mdc-radio-unselected-icon-color: #c4c6d0;--mdc-radio-unselected-pressed-icon-color: #e3e2e6;--mdc-radio-selected-focus-icon-color: #abc7ff;--mdc-radio-selected-hover-icon-color: #abc7ff;--mdc-radio-selected-icon-color: #abc7ff;--mdc-radio-selected-pressed-icon-color: #abc7ff;--mat-radio-ripple-color: #e3e2e6;--mat-radio-checked-ripple-color: #abc7ff;--mat-radio-disabled-label-color: rgba(227, 226, 230, .38);--mat-radio-label-text-color: #e3e2e6;--mdc-slider-handle-color: #abc7ff;--mdc-slider-focus-handle-color: #abc7ff;--mdc-slider-hover-handle-color: #abc7ff;--mdc-slider-active-track-color: #abc7ff;--mdc-slider-inactive-track-color: #44474e;--mdc-slider-with-tick-marks-inactive-container-color: #c4c6d0;--mdc-slider-with-tick-marks-active-container-color: #002f65;--mdc-slider-disabled-active-track-color: #e3e2e6;--mdc-slider-disabled-handle-color: #e3e2e6;--mdc-slider-disabled-inactive-track-color: #e3e2e6;--mdc-slider-label-container-color: #abc7ff;--mdc-slider-label-label-text-color: #002f65;--mdc-slider-with-overlap-handle-outline-color: #002f65;--mdc-slider-with-tick-marks-disabled-container-color: #e3e2e6;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #abc7ff;--mat-slider-hover-state-layer-color: rgba(171, 199, 255, .05);--mat-slider-focus-state-layer-color: rgba(171, 199, 255, .2);--mat-menu-item-label-text-color: #e3e2e6;--mat-menu-item-icon-color: #c4c6d0;--mat-menu-item-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-menu-item-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-menu-container-color: #1e1f23;--mat-menu-divider-color: #44474e;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #00458f;--mdc-list-list-item-disabled-state-layer-color: #e3e2e6;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #e3e2e6;--mdc-list-list-item-supporting-text-color: #c4c6d0;--mdc-list-list-item-leading-icon-color: #c4c6d0;--mdc-list-list-item-trailing-supporting-text-color: #c4c6d0;--mdc-list-list-item-trailing-icon-color: #c4c6d0;--mdc-list-list-item-selected-trailing-icon-color: #abc7ff;--mdc-list-list-item-disabled-label-text-color: #e3e2e6;--mdc-list-list-item-disabled-leading-icon-color: #e3e2e6;--mdc-list-list-item-disabled-trailing-icon-color: #e3e2e6;--mdc-list-list-item-hover-label-text-color: #e3e2e6;--mdc-list-list-item-focus-label-text-color: #e3e2e6;--mdc-list-list-item-hover-state-layer-color: #e3e2e6;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #e3e2e6;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #3e4759;--mat-paginator-container-text-color: #e3e2e6;--mat-paginator-container-background-color: #1a1b1f;--mat-paginator-enabled-icon-color: #c4c6d0;--mat-paginator-disabled-icon-color: rgba(227, 226, 230, .38);--mdc-tab-indicator-active-indicator-color: #abc7ff;--mat-tab-header-divider-color: #44474e;--mat-tab-header-pagination-icon-color: #e3e2e6;--mat-tab-header-inactive-label-text-color: #e3e2e6;--mat-tab-header-active-label-text-color: #e3e2e6;--mat-tab-header-active-ripple-color: #e3e2e6;--mat-tab-header-inactive-ripple-color: #e3e2e6;--mat-tab-header-inactive-focus-label-text-color: #e3e2e6;--mat-tab-header-inactive-hover-label-text-color: #e3e2e6;--mat-tab-header-active-focus-label-text-color: #e3e2e6;--mat-tab-header-active-hover-label-text-color: #e3e2e6;--mat-tab-header-active-focus-indicator-color: #abc7ff;--mat-tab-header-active-hover-indicator-color: #abc7ff;--mdc-checkbox-disabled-selected-checkmark-color: #1a1b1f;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(227, 226, 230, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(227, 226, 230, .38);--mdc-checkbox-selected-checkmark-color: #002f65;--mdc-checkbox-selected-focus-icon-color: #abc7ff;--mdc-checkbox-selected-hover-icon-color: #abc7ff;--mdc-checkbox-selected-icon-color: #abc7ff;--mdc-checkbox-unselected-focus-icon-color: #e3e2e6;--mdc-checkbox-unselected-hover-icon-color: #e3e2e6;--mdc-checkbox-unselected-icon-color: #c4c6d0;--mdc-checkbox-selected-focus-state-layer-color: #abc7ff;--mdc-checkbox-selected-hover-state-layer-color: #abc7ff;--mdc-checkbox-selected-pressed-state-layer-color: #e3e2e6;--mdc-checkbox-unselected-focus-state-layer-color: #e3e2e6;--mdc-checkbox-unselected-hover-state-layer-color: #e3e2e6;--mdc-checkbox-unselected-pressed-state-layer-color: #abc7ff;--mat-checkbox-disabled-label-color: rgba(227, 226, 230, .38);--mat-checkbox-label-text-color: #e3e2e6;--mdc-text-button-label-text-color: #abc7ff;--mdc-text-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-protected-button-container-color: #1a1b1f;--mdc-protected-button-label-text-color: #abc7ff;--mdc-protected-button-disabled-container-color: rgba(227, 226, 230, .12);--mdc-protected-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #abc7ff;--mdc-filled-button-label-text-color: #002f65;--mdc-filled-button-disabled-container-color: rgba(227, 226, 230, .12);--mdc-filled-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-outlined-button-disabled-outline-color: rgba(227, 226, 230, .12);--mdc-outlined-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-outlined-button-label-text-color: #abc7ff;--mdc-outlined-button-outline-color: #8e9099;--mat-text-button-state-layer-color: #abc7ff;--mat-text-button-disabled-state-layer-color: #c4c6d0;--mat-text-button-ripple-color: rgba(171, 199, 255, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #abc7ff;--mat-protected-button-disabled-state-layer-color: #c4c6d0;--mat-protected-button-ripple-color: rgba(171, 199, 255, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #002f65;--mat-filled-button-disabled-state-layer-color: #c4c6d0;--mat-filled-button-ripple-color: rgba(0, 47, 101, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #abc7ff;--mat-outlined-button-disabled-state-layer-color: #c4c6d0;--mat-outlined-button-ripple-color: rgba(171, 199, 255, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #c4c6d0;--mdc-icon-button-disabled-icon-color: rgba(227, 226, 230, .38);--mat-icon-button-state-layer-color: #c4c6d0;--mat-icon-button-disabled-state-layer-color: #c4c6d0;--mat-icon-button-ripple-color: rgba(196, 198, 208, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #00458f;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #00458f;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #d7e3ff;--mat-fab-state-layer-color: #d7e3ff;--mat-fab-ripple-color: rgba(215, 227, 255, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(227, 226, 230, .12);--mat-fab-disabled-state-foreground-color: rgba(227, 226, 230, .38);--mat-fab-small-foreground-color: #d7e3ff;--mat-fab-small-state-layer-color: #d7e3ff;--mat-fab-small-ripple-color: rgba(215, 227, 255, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(227, 226, 230, .12);--mat-fab-small-disabled-state-foreground-color: rgba(227, 226, 230, .38);--mdc-snackbar-container-color: #e3e2e6;--mdc-snackbar-supporting-text-color: #2f3033;--mat-snack-bar-button-color: #005cbb;--mat-table-background-color: #1a1b1f;--mat-table-header-headline-color: #e3e2e6;--mat-table-row-item-label-text-color: #e3e2e6;--mat-table-row-item-outline-color: #44474e;--mdc-circular-progress-active-indicator-color: #abc7ff;--mat-badge-background-color: #ffb4ab;--mat-badge-text-color: #690005;--mat-badge-disabled-state-background-color: rgba(255, 180, 171, .38);--mat-badge-disabled-state-text-color: #690005;--mat-bottom-sheet-container-text-color: #e3e2e6;--mat-bottom-sheet-container-background-color: #1a1b1f;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #e3e2e6;--mat-standard-button-toggle-state-layer-color: #e3e2e6;--mat-standard-button-toggle-selected-state-background-color: #3e4759;--mat-standard-button-toggle-selected-state-text-color: #dae2f9;--mat-standard-button-toggle-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(227, 226, 230, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(227, 226, 230, .12);--mat-standard-button-toggle-divider-color: #8e9099;--mat-datepicker-calendar-date-selected-state-text-color: #002f65;--mat-datepicker-calendar-date-selected-state-background-color: #abc7ff;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #abc7ff;--mat-datepicker-calendar-date-focus-state-background-color: rgba(227, 226, 230, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(227, 226, 230, .08);--mat-datepicker-toggle-active-state-icon-color: #c4c6d0;--mat-datepicker-calendar-date-in-range-state-background-color: #00458f;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #0000ef;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #3e4759;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #bec6dc;--mat-datepicker-toggle-icon-color: #c4c6d0;--mat-datepicker-calendar-body-label-text-color: #e3e2e6;--mat-datepicker-calendar-period-button-text-color: #c4c6d0;--mat-datepicker-calendar-period-button-icon-color: #c4c6d0;--mat-datepicker-calendar-navigation-button-icon-color: #c4c6d0;--mat-datepicker-calendar-header-text-color: #c4c6d0;--mat-datepicker-calendar-date-today-outline-color: #abc7ff;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-date-text-color: #e3e2e6;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #abc7ff;--mat-datepicker-range-input-separator-color: #e3e2e6;--mat-datepicker-range-input-disabled-state-separator-color: rgba(227, 226, 230, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-container-background-color: #292a2d;--mat-datepicker-calendar-container-text-color: #e3e2e6;--mat-divider-color: #44474e;--mat-expansion-container-background-color: #1a1b1f;--mat-expansion-container-text-color: #e3e2e6;--mat-expansion-actions-divider-color: #44474e;--mat-expansion-header-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-expansion-header-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-expansion-header-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-expansion-header-text-color: #e3e2e6;--mat-expansion-header-description-color: #c4c6d0;--mat-expansion-header-indicator-color: #c4c6d0;--mat-sidenav-container-background-color: #1a1b1f;--mat-sidenav-container-text-color: #c4c6d0;--mat-sidenav-content-background-color: #1a1b1f;--mat-sidenav-content-text-color: #e3e2e6;--mat-sidenav-scrim-color: rgba(45, 48, 56, .4);--mat-stepper-header-icon-foreground-color: #1a1b1f;--mat-stepper-header-selected-state-icon-background-color: #abc7ff;--mat-stepper-header-selected-state-icon-foreground-color: #002f65;--mat-stepper-header-edit-state-icon-background-color: #abc7ff;--mat-stepper-header-edit-state-icon-foreground-color: #002f65;--mat-stepper-container-color: #1a1b1f;--mat-stepper-line-color: #44474e;--mat-stepper-header-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-stepper-header-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-stepper-header-label-text-color: #c4c6d0;--mat-stepper-header-optional-label-text-color: #c4c6d0;--mat-stepper-header-selected-state-label-text-color: #c4c6d0;--mat-stepper-header-error-state-label-text-color: #ffb4ab;--mat-stepper-header-icon-background-color: #c4c6d0;--mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;--mat-sort-arrow-color: #e3e2e6;--mat-toolbar-container-background-color: #1a1b1f;--mat-toolbar-container-text-color: #e3e2e6;--mat-tree-container-background-color: #1a1b1f;--mat-tree-node-text-color: #e3e2e6}.survey-theme-azure-blue-dark .mat-display-large,.survey-theme-azure-blue-dark .mat-typography .mat-display-large,.survey-theme-azure-blue-dark .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-display-medium,.survey-theme-azure-blue-dark .mat-typography .mat-display-medium,.survey-theme-azure-blue-dark .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-display-small,.survey-theme-azure-blue-dark .mat-typography .mat-display-small,.survey-theme-azure-blue-dark .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-headline-large,.survey-theme-azure-blue-dark .mat-typography .mat-headline-large,.survey-theme-azure-blue-dark .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-headline-medium,.survey-theme-azure-blue-dark .mat-typography .mat-headline-medium,.survey-theme-azure-blue-dark .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-headline-small,.survey-theme-azure-blue-dark .mat-typography .mat-headline-small,.survey-theme-azure-blue-dark .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-title-large,.survey-theme-azure-blue-dark .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-azure-blue-dark .mat-title-medium,.survey-theme-azure-blue-dark .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-azure-blue-dark .mat-title-small,.survey-theme-azure-blue-dark .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-dark .mat-body-large,.survey-theme-azure-blue-dark .mat-typography .mat-body-large,.survey-theme-azure-blue-dark .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-dark .mat-body-large p,.survey-theme-azure-blue-dark .mat-typography .mat-body-large p,.survey-theme-azure-blue-dark .mat-typography p{margin:0 0 .75em}.survey-theme-azure-blue-dark .mat-body-medium,.survey-theme-azure-blue-dark .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-azure-blue-dark .mat-body-small,.survey-theme-azure-blue-dark .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-azure-blue-dark .mat-label-large,.survey-theme-azure-blue-dark .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-dark .mat-label-medium,.survey-theme-azure-blue-dark .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-dark .mat-label-small,.survey-theme-azure-blue-dark .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-dark.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-azure-blue-dark ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-azure-blue-dark.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#0000ef}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#e0e0ff}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#0000ef}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#e0e0ff}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#3e4759;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-azure-blue-dark.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-cyan-orange-light{--mat-app-background-color: #fafdfc;--mat-app-text-color: #191c1c;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(25, 28, 28, .1);--mat-option-selected-state-label-text-color: #051f1f;--mat-option-label-text-color: #191c1c;--mat-option-hover-state-layer-color: rgba(25, 28, 28, .08);--mat-option-focus-state-layer-color: rgba(25, 28, 28, .12);--mat-option-selected-state-layer-color: #cce8e7;--mat-optgroup-label-text-color: #3f4948;--mat-full-pseudo-checkbox-selected-icon-color: #006a6a;--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;--mat-full-pseudo-checkbox-unselected-icon-color: #3f4948;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafdfc;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(25, 28, 28, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(25, 28, 28, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #006a6a;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(25, 28, 28, .38);--mdc-elevated-card-container-color: #fafdfc;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #fafdfc;--mdc-outlined-card-outline-color: #bec9c8;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #191c1c;--mdc-linear-progress-active-indicator-color: #006a6a;--mdc-linear-progress-track-color: #dae5e4;--mdc-plain-tooltip-container-color: #2d3131;--mdc-plain-tooltip-supporting-text-color: #eff1f0;--mdc-filled-text-field-caret-color: #006a6a;--mdc-filled-text-field-focus-active-indicator-color: #006a6a;--mdc-filled-text-field-focus-label-text-color: #006a6a;--mdc-filled-text-field-container-color: #dae5e4;--mdc-filled-text-field-disabled-container-color: rgba(25, 28, 28, .04);--mdc-filled-text-field-label-text-color: #3f4948;--mdc-filled-text-field-hover-label-text-color: #3f4948;--mdc-filled-text-field-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-filled-text-field-input-text-color: #191c1c;--mdc-filled-text-field-disabled-input-text-color: rgba(25, 28, 28, .38);--mdc-filled-text-field-input-text-placeholder-color: #3f4948;--mdc-filled-text-field-error-hover-label-text-color: #410002;--mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;--mdc-filled-text-field-error-label-text-color: #ba1a1a;--mdc-filled-text-field-active-indicator-color: #3f4948;--mdc-filled-text-field-disabled-active-indicator-color: rgba(25, 28, 28, .38);--mdc-filled-text-field-hover-active-indicator-color: #191c1c;--mdc-filled-text-field-error-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-hover-active-indicator-color: #410002;--mdc-outlined-text-field-caret-color: #006a6a;--mdc-outlined-text-field-focus-outline-color: #006a6a;--mdc-outlined-text-field-focus-label-text-color: #006a6a;--mdc-outlined-text-field-label-text-color: #3f4948;--mdc-outlined-text-field-hover-label-text-color: #191c1c;--mdc-outlined-text-field-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-outlined-text-field-input-text-color: #191c1c;--mdc-outlined-text-field-disabled-input-text-color: rgba(25, 28, 28, .38);--mdc-outlined-text-field-input-text-placeholder-color: #3f4948;--mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-hover-label-text-color: #410002;--mdc-outlined-text-field-outline-color: #6f7979;--mdc-outlined-text-field-disabled-outline-color: rgba(25, 28, 28, .12);--mdc-outlined-text-field-hover-outline-color: #191c1c;--mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;--mdc-outlined-text-field-error-hover-outline-color: #410002;--mdc-outlined-text-field-error-outline-color: #ba1a1a;--mat-form-field-focus-select-arrow-color: #006a6a;--mat-form-field-disabled-input-text-placeholder-color: rgba(25, 28, 28, .38);--mat-form-field-state-layer-color: #191c1c;--mat-form-field-error-text-color: #ba1a1a;--mat-form-field-select-option-text-color: #191c1c;--mat-form-field-select-disabled-option-text-color: rgba(25, 28, 28, .38);--mat-form-field-leading-icon-color: #3f4948;--mat-form-field-disabled-leading-icon-color: rgba(25, 28, 28, .38);--mat-form-field-trailing-icon-color: #3f4948;--mat-form-field-disabled-trailing-icon-color: rgba(25, 28, 28, .38);--mat-form-field-error-focus-trailing-icon-color: #ba1a1a;--mat-form-field-error-hover-trailing-icon-color: #410002;--mat-form-field-error-trailing-icon-color: #ba1a1a;--mat-form-field-enabled-select-arrow-color: #3f4948;--mat-form-field-disabled-select-arrow-color: rgba(25, 28, 28, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #eceeed;--mat-select-enabled-trigger-text-color: #191c1c;--mat-select-disabled-trigger-text-color: rgba(25, 28, 28, .38);--mat-select-placeholder-text-color: #3f4948;--mat-select-enabled-arrow-color: #3f4948;--mat-select-disabled-arrow-color: rgba(25, 28, 28, .38);--mat-select-focused-arrow-color: #006a6a;--mat-select-invalid-arrow-color: #ba1a1a;--mat-autocomplete-background-color: #eceeed;--mdc-dialog-container-color: #fafdfc;--mdc-dialog-subhead-color: #191c1c;--mdc-dialog-supporting-text-color: #3f4948;--mdc-chip-outline-color: #6f7979;--mdc-chip-disabled-outline-color: rgba(25, 28, 28, .12);--mdc-chip-focus-outline-color: #3f4948;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-chip-elevated-selected-container-color: #cce8e7;--mdc-chip-flat-disabled-selected-container-color: rgba(25, 28, 28, .12);--mdc-chip-focus-state-layer-color: #3f4948;--mdc-chip-hover-state-layer-color: #3f4948;--mdc-chip-selected-hover-state-layer-color: #051f1f;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #051f1f;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #3f4948;--mdc-chip-selected-label-text-color: #051f1f;--mdc-chip-with-icon-icon-color: #3f4948;--mdc-chip-with-icon-disabled-icon-color: #191c1c;--mdc-chip-with-icon-selected-icon-color: #051f1f;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #191c1c;--mdc-chip-with-trailing-icon-trailing-icon-color: #3f4948;--mat-chip-trailing-action-state-layer-color: #3f4948;--mat-chip-selected-trailing-action-state-layer-color: #051f1f;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #191c1c;--mat-chip-selected-trailing-icon-color: #051f1f;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #006a6a;--mdc-switch-selected-handle-color: #ffffff;--mdc-switch-selected-hover-state-layer-color: #006a6a;--mdc-switch-selected-pressed-state-layer-color: #006a6a;--mdc-switch-selected-focus-handle-color: #00fbfb;--mdc-switch-selected-hover-handle-color: #00fbfb;--mdc-switch-selected-pressed-handle-color: #00fbfb;--mdc-switch-selected-focus-track-color: #006a6a;--mdc-switch-selected-hover-track-color: #006a6a;--mdc-switch-selected-pressed-track-color: #006a6a;--mdc-switch-selected-track-color: #006a6a;--mdc-switch-disabled-selected-handle-color: #fafdfc;--mdc-switch-disabled-selected-icon-color: #191c1c;--mdc-switch-disabled-selected-track-color: #191c1c;--mdc-switch-disabled-unselected-handle-color: #191c1c;--mdc-switch-disabled-unselected-icon-color: #dae5e4;--mdc-switch-disabled-unselected-track-color: #dae5e4;--mdc-switch-selected-icon-color: #002020;--mdc-switch-unselected-focus-handle-color: #3f4948;--mdc-switch-unselected-focus-state-layer-color: #191c1c;--mdc-switch-unselected-focus-track-color: #dae5e4;--mdc-switch-unselected-handle-color: #6f7979;--mdc-switch-unselected-hover-handle-color: #3f4948;--mdc-switch-unselected-hover-state-layer-color: #191c1c;--mdc-switch-unselected-hover-track-color: #dae5e4;--mdc-switch-unselected-icon-color: #dae5e4;--mdc-switch-unselected-pressed-handle-color: #3f4948;--mdc-switch-unselected-pressed-state-layer-color: #191c1c;--mdc-switch-unselected-pressed-track-color: #dae5e4;--mdc-switch-unselected-track-color: #dae5e4;--mat-switch-track-outline-color: #6f7979;--mat-switch-disabled-unselected-track-outline-color: #191c1c;--mat-switch-label-text-color: #191c1c;--mdc-radio-disabled-selected-icon-color: #191c1c;--mdc-radio-disabled-unselected-icon-color: #191c1c;--mdc-radio-unselected-hover-icon-color: #191c1c;--mdc-radio-unselected-icon-color: #3f4948;--mdc-radio-unselected-pressed-icon-color: #191c1c;--mdc-radio-selected-focus-icon-color: #006a6a;--mdc-radio-selected-hover-icon-color: #006a6a;--mdc-radio-selected-icon-color: #006a6a;--mdc-radio-selected-pressed-icon-color: #006a6a;--mat-radio-ripple-color: #191c1c;--mat-radio-checked-ripple-color: #006a6a;--mat-radio-disabled-label-color: rgba(25, 28, 28, .38);--mat-radio-label-text-color: #191c1c;--mdc-slider-handle-color: #006a6a;--mdc-slider-focus-handle-color: #006a6a;--mdc-slider-hover-handle-color: #006a6a;--mdc-slider-active-track-color: #006a6a;--mdc-slider-inactive-track-color: #dae5e4;--mdc-slider-with-tick-marks-inactive-container-color: #3f4948;--mdc-slider-with-tick-marks-active-container-color: #ffffff;--mdc-slider-disabled-active-track-color: #191c1c;--mdc-slider-disabled-handle-color: #191c1c;--mdc-slider-disabled-inactive-track-color: #191c1c;--mdc-slider-label-container-color: #006a6a;--mdc-slider-label-label-text-color: #ffffff;--mdc-slider-with-overlap-handle-outline-color: #ffffff;--mdc-slider-with-tick-marks-disabled-container-color: #191c1c;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #006a6a;--mat-slider-hover-state-layer-color: rgba(0, 106, 106, .05);--mat-slider-focus-state-layer-color: rgba(0, 106, 106, .2);--mat-menu-item-label-text-color: #191c1c;--mat-menu-item-icon-color: #3f4948;--mat-menu-item-hover-state-layer-color: rgba(25, 28, 28, .08);--mat-menu-item-focus-state-layer-color: rgba(25, 28, 28, .12);--mat-menu-container-color: #eceeed;--mat-menu-divider-color: #dae5e4;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #00fbfb;--mdc-list-list-item-disabled-state-layer-color: #191c1c;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #191c1c;--mdc-list-list-item-supporting-text-color: #3f4948;--mdc-list-list-item-leading-icon-color: #3f4948;--mdc-list-list-item-trailing-supporting-text-color: #3f4948;--mdc-list-list-item-trailing-icon-color: #3f4948;--mdc-list-list-item-selected-trailing-icon-color: #006a6a;--mdc-list-list-item-disabled-label-text-color: #191c1c;--mdc-list-list-item-disabled-leading-icon-color: #191c1c;--mdc-list-list-item-disabled-trailing-icon-color: #191c1c;--mdc-list-list-item-hover-label-text-color: #191c1c;--mdc-list-list-item-focus-label-text-color: #191c1c;--mdc-list-list-item-hover-state-layer-color: #191c1c;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #191c1c;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #cce8e7;--mat-paginator-container-text-color: #191c1c;--mat-paginator-container-background-color: #fafdfc;--mat-paginator-enabled-icon-color: #3f4948;--mat-paginator-disabled-icon-color: rgba(25, 28, 28, .38);--mdc-tab-indicator-active-indicator-color: #006a6a;--mat-tab-header-divider-color: #dae5e4;--mat-tab-header-pagination-icon-color: #191c1c;--mat-tab-header-inactive-label-text-color: #191c1c;--mat-tab-header-active-label-text-color: #191c1c;--mat-tab-header-active-ripple-color: #191c1c;--mat-tab-header-inactive-ripple-color: #191c1c;--mat-tab-header-inactive-focus-label-text-color: #191c1c;--mat-tab-header-inactive-hover-label-text-color: #191c1c;--mat-tab-header-active-focus-label-text-color: #191c1c;--mat-tab-header-active-hover-label-text-color: #191c1c;--mat-tab-header-active-focus-indicator-color: #006a6a;--mat-tab-header-active-hover-indicator-color: #006a6a;--mdc-checkbox-disabled-selected-checkmark-color: #fafdfc;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(25, 28, 28, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(25, 28, 28, .38);--mdc-checkbox-selected-checkmark-color: #ffffff;--mdc-checkbox-selected-focus-icon-color: #006a6a;--mdc-checkbox-selected-hover-icon-color: #006a6a;--mdc-checkbox-selected-icon-color: #006a6a;--mdc-checkbox-unselected-focus-icon-color: #191c1c;--mdc-checkbox-unselected-hover-icon-color: #191c1c;--mdc-checkbox-unselected-icon-color: #3f4948;--mdc-checkbox-selected-focus-state-layer-color: #006a6a;--mdc-checkbox-selected-hover-state-layer-color: #006a6a;--mdc-checkbox-selected-pressed-state-layer-color: #191c1c;--mdc-checkbox-unselected-focus-state-layer-color: #191c1c;--mdc-checkbox-unselected-hover-state-layer-color: #191c1c;--mdc-checkbox-unselected-pressed-state-layer-color: #006a6a;--mat-checkbox-disabled-label-color: rgba(25, 28, 28, .38);--mat-checkbox-label-text-color: #191c1c;--mdc-text-button-label-text-color: #006a6a;--mdc-text-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-protected-button-container-color: #fafdfc;--mdc-protected-button-label-text-color: #006a6a;--mdc-protected-button-disabled-container-color: rgba(25, 28, 28, .12);--mdc-protected-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #006a6a;--mdc-filled-button-label-text-color: #ffffff;--mdc-filled-button-disabled-container-color: rgba(25, 28, 28, .12);--mdc-filled-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-outlined-button-disabled-outline-color: rgba(25, 28, 28, .12);--mdc-outlined-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-outlined-button-label-text-color: #006a6a;--mdc-outlined-button-outline-color: #6f7979;--mat-text-button-state-layer-color: #006a6a;--mat-text-button-disabled-state-layer-color: #3f4948;--mat-text-button-ripple-color: rgba(0, 106, 106, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #006a6a;--mat-protected-button-disabled-state-layer-color: #3f4948;--mat-protected-button-ripple-color: rgba(0, 106, 106, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #ffffff;--mat-filled-button-disabled-state-layer-color: #3f4948;--mat-filled-button-ripple-color: rgba(255, 255, 255, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #006a6a;--mat-outlined-button-disabled-state-layer-color: #3f4948;--mat-outlined-button-ripple-color: rgba(0, 106, 106, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #3f4948;--mdc-icon-button-disabled-icon-color: rgba(25, 28, 28, .38);--mat-icon-button-state-layer-color: #3f4948;--mat-icon-button-disabled-state-layer-color: #3f4948;--mat-icon-button-ripple-color: rgba(63, 73, 72, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #00fbfb;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #00fbfb;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #002020;--mat-fab-state-layer-color: #002020;--mat-fab-ripple-color: rgba(0, 32, 32, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(25, 28, 28, .12);--mat-fab-disabled-state-foreground-color: rgba(25, 28, 28, .38);--mat-fab-small-foreground-color: #002020;--mat-fab-small-state-layer-color: #002020;--mat-fab-small-ripple-color: rgba(0, 32, 32, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(25, 28, 28, .12);--mat-fab-small-disabled-state-foreground-color: rgba(25, 28, 28, .38);--mdc-snackbar-container-color: #2d3131;--mdc-snackbar-supporting-text-color: #eff1f0;--mat-snack-bar-button-color: #00dddd;--mat-table-background-color: #fafdfc;--mat-table-header-headline-color: #191c1c;--mat-table-row-item-label-text-color: #191c1c;--mat-table-row-item-outline-color: #bec9c8;--mdc-circular-progress-active-indicator-color: #006a6a;--mat-badge-background-color: #ba1a1a;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: rgba(186, 26, 26, .38);--mat-badge-disabled-state-text-color: #ffffff;--mat-bottom-sheet-container-text-color: #191c1c;--mat-bottom-sheet-container-background-color: #f2f4f3;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #191c1c;--mat-standard-button-toggle-state-layer-color: #191c1c;--mat-standard-button-toggle-selected-state-background-color: #cce8e7;--mat-standard-button-toggle-selected-state-text-color: #051f1f;--mat-standard-button-toggle-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(25, 28, 28, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(25, 28, 28, .12);--mat-standard-button-toggle-divider-color: #6f7979;--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #006a6a;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #006a6a;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 28, 28, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 28, 28, .08);--mat-datepicker-toggle-active-state-icon-color: #3f4948;--mat-datepicker-calendar-date-in-range-state-background-color: #00fbfb;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #ffdcc7;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #cce8e7;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #4a6363;--mat-datepicker-toggle-icon-color: #3f4948;--mat-datepicker-calendar-body-label-text-color: #191c1c;--mat-datepicker-calendar-period-button-text-color: #3f4948;--mat-datepicker-calendar-period-button-icon-color: #3f4948;--mat-datepicker-calendar-navigation-button-icon-color: #3f4948;--mat-datepicker-calendar-header-text-color: #3f4948;--mat-datepicker-calendar-date-today-outline-color: #006a6a;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-date-text-color: #191c1c;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #006a6a;--mat-datepicker-range-input-separator-color: #191c1c;--mat-datepicker-range-input-disabled-state-separator-color: rgba(25, 28, 28, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-container-background-color: #e6e9e8;--mat-datepicker-calendar-container-text-color: #191c1c;--mat-divider-color: #bec9c8;--mat-expansion-container-background-color: #fafdfc;--mat-expansion-container-text-color: #191c1c;--mat-expansion-actions-divider-color: #bec9c8;--mat-expansion-header-hover-state-layer-color: rgba(25, 28, 28, .08);--mat-expansion-header-focus-state-layer-color: rgba(25, 28, 28, .12);--mat-expansion-header-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-expansion-header-text-color: #191c1c;--mat-expansion-header-description-color: #3f4948;--mat-expansion-header-indicator-color: #3f4948;--mat-sidenav-container-background-color: #fafdfc;--mat-sidenav-container-text-color: #3f4948;--mat-sidenav-content-background-color: #fafdfc;--mat-sidenav-content-text-color: #191c1c;--mat-sidenav-scrim-color: rgba(41, 50, 50, .4);--mat-stepper-header-icon-foreground-color: #fafdfc;--mat-stepper-header-selected-state-icon-background-color: #006a6a;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #006a6a;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #fafdfc;--mat-stepper-line-color: #bec9c8;--mat-stepper-header-hover-state-layer-color: rgba(45, 49, 49, .08);--mat-stepper-header-focus-state-layer-color: rgba(45, 49, 49, .12);--mat-stepper-header-label-text-color: #3f4948;--mat-stepper-header-optional-label-text-color: #3f4948;--mat-stepper-header-selected-state-label-text-color: #3f4948;--mat-stepper-header-error-state-label-text-color: #ba1a1a;--mat-stepper-header-icon-background-color: #3f4948;--mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;--mat-sort-arrow-color: #191c1c;--mat-toolbar-container-background-color: #fafdfc;--mat-toolbar-container-text-color: #191c1c;--mat-tree-container-background-color: #fafdfc;--mat-tree-node-text-color: #191c1c}.survey-theme-cyan-orange-light .mat-display-large,.survey-theme-cyan-orange-light .mat-typography .mat-display-large,.survey-theme-cyan-orange-light .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-display-medium,.survey-theme-cyan-orange-light .mat-typography .mat-display-medium,.survey-theme-cyan-orange-light .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-display-small,.survey-theme-cyan-orange-light .mat-typography .mat-display-small,.survey-theme-cyan-orange-light .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-headline-large,.survey-theme-cyan-orange-light .mat-typography .mat-headline-large,.survey-theme-cyan-orange-light .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-headline-medium,.survey-theme-cyan-orange-light .mat-typography .mat-headline-medium,.survey-theme-cyan-orange-light .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-headline-small,.survey-theme-cyan-orange-light .mat-typography .mat-headline-small,.survey-theme-cyan-orange-light .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-title-large,.survey-theme-cyan-orange-light .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-cyan-orange-light .mat-title-medium,.survey-theme-cyan-orange-light .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-cyan-orange-light .mat-title-small,.survey-theme-cyan-orange-light .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-light .mat-body-large,.survey-theme-cyan-orange-light .mat-typography .mat-body-large,.survey-theme-cyan-orange-light .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-light .mat-body-large p,.survey-theme-cyan-orange-light .mat-typography .mat-body-large p,.survey-theme-cyan-orange-light .mat-typography p{margin:0 0 .75em}.survey-theme-cyan-orange-light .mat-body-medium,.survey-theme-cyan-orange-light .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-cyan-orange-light .mat-body-small,.survey-theme-cyan-orange-light .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-cyan-orange-light .mat-label-large,.survey-theme-cyan-orange-light .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-light .mat-label-medium,.survey-theme-cyan-orange-light .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-light .mat-label-small,.survey-theme-cyan-orange-light .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-light.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-cyan-orange-light ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-cyan-orange-light.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#ffdcc7}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#311300}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#ffdcc7}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#311300}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#cce8e7;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-cyan-orange-light.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-cyan-orange-dark{--mat-app-background-color: #191c1c;--mat-app-text-color: #e0e3e2;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(224, 227, 226, .1);--mat-option-selected-state-label-text-color: #cce8e7;--mat-option-label-text-color: #e0e3e2;--mat-option-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-option-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-option-selected-state-layer-color: #324b4b;--mat-optgroup-label-text-color: #bec9c8;--mat-full-pseudo-checkbox-selected-icon-color: #00dddd;--mat-full-pseudo-checkbox-selected-checkmark-color: #003737;--mat-full-pseudo-checkbox-unselected-icon-color: #bec9c8;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #191c1c;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(224, 227, 226, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(224, 227, 226, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #00dddd;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(224, 227, 226, .38);--mdc-elevated-card-container-color: #191c1c;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #191c1c;--mdc-outlined-card-outline-color: #3f4948;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #e0e3e2;--mdc-linear-progress-active-indicator-color: #00dddd;--mdc-linear-progress-track-color: #3f4948;--mdc-plain-tooltip-container-color: #e0e3e2;--mdc-plain-tooltip-supporting-text-color: #2d3131;--mdc-filled-text-field-caret-color: #00dddd;--mdc-filled-text-field-focus-active-indicator-color: #00dddd;--mdc-filled-text-field-focus-label-text-color: #00dddd;--mdc-filled-text-field-container-color: #3f4948;--mdc-filled-text-field-disabled-container-color: rgba(224, 227, 226, .04);--mdc-filled-text-field-label-text-color: #bec9c8;--mdc-filled-text-field-hover-label-text-color: #bec9c8;--mdc-filled-text-field-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-filled-text-field-input-text-color: #e0e3e2;--mdc-filled-text-field-disabled-input-text-color: rgba(224, 227, 226, .38);--mdc-filled-text-field-input-text-placeholder-color: #bec9c8;--mdc-filled-text-field-error-hover-label-text-color: #ffdad6;--mdc-filled-text-field-error-focus-label-text-color: #ffb4ab;--mdc-filled-text-field-error-label-text-color: #ffb4ab;--mdc-filled-text-field-active-indicator-color: #bec9c8;--mdc-filled-text-field-disabled-active-indicator-color: rgba(224, 227, 226, .38);--mdc-filled-text-field-hover-active-indicator-color: #e0e3e2;--mdc-filled-text-field-error-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-focus-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-hover-active-indicator-color: #ffdad6;--mdc-outlined-text-field-caret-color: #00dddd;--mdc-outlined-text-field-focus-outline-color: #00dddd;--mdc-outlined-text-field-focus-label-text-color: #00dddd;--mdc-outlined-text-field-label-text-color: #bec9c8;--mdc-outlined-text-field-hover-label-text-color: #e0e3e2;--mdc-outlined-text-field-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-outlined-text-field-input-text-color: #e0e3e2;--mdc-outlined-text-field-disabled-input-text-color: rgba(224, 227, 226, .38);--mdc-outlined-text-field-input-text-placeholder-color: #bec9c8;--mdc-outlined-text-field-error-focus-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-hover-label-text-color: #ffdad6;--mdc-outlined-text-field-outline-color: #889392;--mdc-outlined-text-field-disabled-outline-color: rgba(224, 227, 226, .12);--mdc-outlined-text-field-hover-outline-color: #e0e3e2;--mdc-outlined-text-field-error-focus-outline-color: #ffb4ab;--mdc-outlined-text-field-error-hover-outline-color: #ffdad6;--mdc-outlined-text-field-error-outline-color: #ffb4ab;--mat-form-field-focus-select-arrow-color: #00dddd;--mat-form-field-disabled-input-text-placeholder-color: rgba(224, 227, 226, .38);--mat-form-field-state-layer-color: #e0e3e2;--mat-form-field-error-text-color: #ffb4ab;--mat-form-field-select-option-text-color: #191c1c;--mat-form-field-select-disabled-option-text-color: rgba(25, 28, 28, .38);--mat-form-field-leading-icon-color: #bec9c8;--mat-form-field-disabled-leading-icon-color: rgba(224, 227, 226, .38);--mat-form-field-trailing-icon-color: #bec9c8;--mat-form-field-disabled-trailing-icon-color: rgba(224, 227, 226, .38);--mat-form-field-error-focus-trailing-icon-color: #ffb4ab;--mat-form-field-error-hover-trailing-icon-color: #ffdad6;--mat-form-field-error-trailing-icon-color: #ffb4ab;--mat-form-field-enabled-select-arrow-color: #bec9c8;--mat-form-field-disabled-select-arrow-color: rgba(224, 227, 226, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #1d2020;--mat-select-enabled-trigger-text-color: #e0e3e2;--mat-select-disabled-trigger-text-color: rgba(224, 227, 226, .38);--mat-select-placeholder-text-color: #bec9c8;--mat-select-enabled-arrow-color: #bec9c8;--mat-select-disabled-arrow-color: rgba(224, 227, 226, .38);--mat-select-focused-arrow-color: #00dddd;--mat-select-invalid-arrow-color: #ffb4ab;--mat-autocomplete-background-color: #1d2020;--mdc-dialog-container-color: #191c1c;--mdc-dialog-subhead-color: #e0e3e2;--mdc-dialog-supporting-text-color: #bec9c8;--mdc-chip-outline-color: #889392;--mdc-chip-disabled-outline-color: rgba(224, 227, 226, .12);--mdc-chip-focus-outline-color: #bec9c8;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-chip-elevated-selected-container-color: #324b4b;--mdc-chip-flat-disabled-selected-container-color: rgba(224, 227, 226, .12);--mdc-chip-focus-state-layer-color: #bec9c8;--mdc-chip-hover-state-layer-color: #bec9c8;--mdc-chip-selected-hover-state-layer-color: #cce8e7;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #cce8e7;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #bec9c8;--mdc-chip-selected-label-text-color: #cce8e7;--mdc-chip-with-icon-icon-color: #bec9c8;--mdc-chip-with-icon-disabled-icon-color: #e0e3e2;--mdc-chip-with-icon-selected-icon-color: #cce8e7;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #e0e3e2;--mdc-chip-with-trailing-icon-trailing-icon-color: #bec9c8;--mat-chip-trailing-action-state-layer-color: #bec9c8;--mat-chip-selected-trailing-action-state-layer-color: #cce8e7;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #e0e3e2;--mat-chip-selected-trailing-icon-color: #cce8e7;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #00dddd;--mdc-switch-selected-handle-color: #003737;--mdc-switch-selected-hover-state-layer-color: #00dddd;--mdc-switch-selected-pressed-state-layer-color: #00dddd;--mdc-switch-selected-focus-handle-color: #004f4f;--mdc-switch-selected-hover-handle-color: #004f4f;--mdc-switch-selected-pressed-handle-color: #004f4f;--mdc-switch-selected-focus-track-color: #00dddd;--mdc-switch-selected-hover-track-color: #00dddd;--mdc-switch-selected-pressed-track-color: #00dddd;--mdc-switch-selected-track-color: #00dddd;--mdc-switch-disabled-selected-handle-color: #191c1c;--mdc-switch-disabled-selected-icon-color: #e0e3e2;--mdc-switch-disabled-selected-track-color: #e0e3e2;--mdc-switch-disabled-unselected-handle-color: #e0e3e2;--mdc-switch-disabled-unselected-icon-color: #3f4948;--mdc-switch-disabled-unselected-track-color: #3f4948;--mdc-switch-selected-icon-color: #00fbfb;--mdc-switch-unselected-focus-handle-color: #bec9c8;--mdc-switch-unselected-focus-state-layer-color: #e0e3e2;--mdc-switch-unselected-focus-track-color: #3f4948;--mdc-switch-unselected-handle-color: #889392;--mdc-switch-unselected-hover-handle-color: #bec9c8;--mdc-switch-unselected-hover-state-layer-color: #e0e3e2;--mdc-switch-unselected-hover-track-color: #3f4948;--mdc-switch-unselected-icon-color: #3f4948;--mdc-switch-unselected-pressed-handle-color: #bec9c8;--mdc-switch-unselected-pressed-state-layer-color: #e0e3e2;--mdc-switch-unselected-pressed-track-color: #3f4948;--mdc-switch-unselected-track-color: #3f4948;--mat-switch-track-outline-color: #889392;--mat-switch-disabled-unselected-track-outline-color: #e0e3e2;--mat-switch-label-text-color: #e0e3e2;--mdc-radio-disabled-selected-icon-color: #e0e3e2;--mdc-radio-disabled-unselected-icon-color: #e0e3e2;--mdc-radio-unselected-hover-icon-color: #e0e3e2;--mdc-radio-unselected-icon-color: #bec9c8;--mdc-radio-unselected-pressed-icon-color: #e0e3e2;--mdc-radio-selected-focus-icon-color: #00dddd;--mdc-radio-selected-hover-icon-color: #00dddd;--mdc-radio-selected-icon-color: #00dddd;--mdc-radio-selected-pressed-icon-color: #00dddd;--mat-radio-ripple-color: #e0e3e2;--mat-radio-checked-ripple-color: #00dddd;--mat-radio-disabled-label-color: rgba(224, 227, 226, .38);--mat-radio-label-text-color: #e0e3e2;--mdc-slider-handle-color: #00dddd;--mdc-slider-focus-handle-color: #00dddd;--mdc-slider-hover-handle-color: #00dddd;--mdc-slider-active-track-color: #00dddd;--mdc-slider-inactive-track-color: #3f4948;--mdc-slider-with-tick-marks-inactive-container-color: #bec9c8;--mdc-slider-with-tick-marks-active-container-color: #003737;--mdc-slider-disabled-active-track-color: #e0e3e2;--mdc-slider-disabled-handle-color: #e0e3e2;--mdc-slider-disabled-inactive-track-color: #e0e3e2;--mdc-slider-label-container-color: #00dddd;--mdc-slider-label-label-text-color: #003737;--mdc-slider-with-overlap-handle-outline-color: #003737;--mdc-slider-with-tick-marks-disabled-container-color: #e0e3e2;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #00dddd;--mat-slider-hover-state-layer-color: rgba(0, 221, 221, .05);--mat-slider-focus-state-layer-color: rgba(0, 221, 221, .2);--mat-menu-item-label-text-color: #e0e3e2;--mat-menu-item-icon-color: #bec9c8;--mat-menu-item-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-menu-item-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-menu-container-color: #1d2020;--mat-menu-divider-color: #3f4948;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #004f4f;--mdc-list-list-item-disabled-state-layer-color: #e0e3e2;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #e0e3e2;--mdc-list-list-item-supporting-text-color: #bec9c8;--mdc-list-list-item-leading-icon-color: #bec9c8;--mdc-list-list-item-trailing-supporting-text-color: #bec9c8;--mdc-list-list-item-trailing-icon-color: #bec9c8;--mdc-list-list-item-selected-trailing-icon-color: #00dddd;--mdc-list-list-item-disabled-label-text-color: #e0e3e2;--mdc-list-list-item-disabled-leading-icon-color: #e0e3e2;--mdc-list-list-item-disabled-trailing-icon-color: #e0e3e2;--mdc-list-list-item-hover-label-text-color: #e0e3e2;--mdc-list-list-item-focus-label-text-color: #e0e3e2;--mdc-list-list-item-hover-state-layer-color: #e0e3e2;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #e0e3e2;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #324b4b;--mat-paginator-container-text-color: #e0e3e2;--mat-paginator-container-background-color: #191c1c;--mat-paginator-enabled-icon-color: #bec9c8;--mat-paginator-disabled-icon-color: rgba(224, 227, 226, .38);--mdc-tab-indicator-active-indicator-color: #00dddd;--mat-tab-header-divider-color: #3f4948;--mat-tab-header-pagination-icon-color: #e0e3e2;--mat-tab-header-inactive-label-text-color: #e0e3e2;--mat-tab-header-active-label-text-color: #e0e3e2;--mat-tab-header-active-ripple-color: #e0e3e2;--mat-tab-header-inactive-ripple-color: #e0e3e2;--mat-tab-header-inactive-focus-label-text-color: #e0e3e2;--mat-tab-header-inactive-hover-label-text-color: #e0e3e2;--mat-tab-header-active-focus-label-text-color: #e0e3e2;--mat-tab-header-active-hover-label-text-color: #e0e3e2;--mat-tab-header-active-focus-indicator-color: #00dddd;--mat-tab-header-active-hover-indicator-color: #00dddd;--mdc-checkbox-disabled-selected-checkmark-color: #191c1c;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(224, 227, 226, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(224, 227, 226, .38);--mdc-checkbox-selected-checkmark-color: #003737;--mdc-checkbox-selected-focus-icon-color: #00dddd;--mdc-checkbox-selected-hover-icon-color: #00dddd;--mdc-checkbox-selected-icon-color: #00dddd;--mdc-checkbox-unselected-focus-icon-color: #e0e3e2;--mdc-checkbox-unselected-hover-icon-color: #e0e3e2;--mdc-checkbox-unselected-icon-color: #bec9c8;--mdc-checkbox-selected-focus-state-layer-color: #00dddd;--mdc-checkbox-selected-hover-state-layer-color: #00dddd;--mdc-checkbox-selected-pressed-state-layer-color: #e0e3e2;--mdc-checkbox-unselected-focus-state-layer-color: #e0e3e2;--mdc-checkbox-unselected-hover-state-layer-color: #e0e3e2;--mdc-checkbox-unselected-pressed-state-layer-color: #00dddd;--mat-checkbox-disabled-label-color: rgba(224, 227, 226, .38);--mat-checkbox-label-text-color: #e0e3e2;--mdc-text-button-label-text-color: #00dddd;--mdc-text-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-protected-button-container-color: #191c1c;--mdc-protected-button-label-text-color: #00dddd;--mdc-protected-button-disabled-container-color: rgba(224, 227, 226, .12);--mdc-protected-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #00dddd;--mdc-filled-button-label-text-color: #003737;--mdc-filled-button-disabled-container-color: rgba(224, 227, 226, .12);--mdc-filled-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-outlined-button-disabled-outline-color: rgba(224, 227, 226, .12);--mdc-outlined-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-outlined-button-label-text-color: #00dddd;--mdc-outlined-button-outline-color: #889392;--mat-text-button-state-layer-color: #00dddd;--mat-text-button-disabled-state-layer-color: #bec9c8;--mat-text-button-ripple-color: rgba(0, 221, 221, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #00dddd;--mat-protected-button-disabled-state-layer-color: #bec9c8;--mat-protected-button-ripple-color: rgba(0, 221, 221, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #003737;--mat-filled-button-disabled-state-layer-color: #bec9c8;--mat-filled-button-ripple-color: rgba(0, 55, 55, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #00dddd;--mat-outlined-button-disabled-state-layer-color: #bec9c8;--mat-outlined-button-ripple-color: rgba(0, 221, 221, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #bec9c8;--mdc-icon-button-disabled-icon-color: rgba(224, 227, 226, .38);--mat-icon-button-state-layer-color: #bec9c8;--mat-icon-button-disabled-state-layer-color: #bec9c8;--mat-icon-button-ripple-color: rgba(190, 201, 200, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #004f4f;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #004f4f;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #00fbfb;--mat-fab-state-layer-color: #00fbfb;--mat-fab-ripple-color: rgba(0, 251, 251, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(224, 227, 226, .12);--mat-fab-disabled-state-foreground-color: rgba(224, 227, 226, .38);--mat-fab-small-foreground-color: #00fbfb;--mat-fab-small-state-layer-color: #00fbfb;--mat-fab-small-ripple-color: rgba(0, 251, 251, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(224, 227, 226, .12);--mat-fab-small-disabled-state-foreground-color: rgba(224, 227, 226, .38);--mdc-snackbar-container-color: #e0e3e2;--mdc-snackbar-supporting-text-color: #2d3131;--mat-snack-bar-button-color: #006a6a;--mat-table-background-color: #191c1c;--mat-table-header-headline-color: #e0e3e2;--mat-table-row-item-label-text-color: #e0e3e2;--mat-table-row-item-outline-color: #3f4948;--mdc-circular-progress-active-indicator-color: #00dddd;--mat-badge-background-color: #ffb4ab;--mat-badge-text-color: #690005;--mat-badge-disabled-state-background-color: rgba(255, 180, 171, .38);--mat-badge-disabled-state-text-color: #690005;--mat-bottom-sheet-container-text-color: #e0e3e2;--mat-bottom-sheet-container-background-color: #191c1c;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #e0e3e2;--mat-standard-button-toggle-state-layer-color: #e0e3e2;--mat-standard-button-toggle-selected-state-background-color: #324b4b;--mat-standard-button-toggle-selected-state-text-color: #cce8e7;--mat-standard-button-toggle-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(224, 227, 226, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(224, 227, 226, .12);--mat-standard-button-toggle-divider-color: #889392;--mat-datepicker-calendar-date-selected-state-text-color: #003737;--mat-datepicker-calendar-date-selected-state-background-color: #00dddd;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #00dddd;--mat-datepicker-calendar-date-focus-state-background-color: rgba(224, 227, 226, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(224, 227, 226, .08);--mat-datepicker-toggle-active-state-icon-color: #bec9c8;--mat-datepicker-calendar-date-in-range-state-background-color: #004f4f;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #723600;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #324b4b;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #b0cccb;--mat-datepicker-toggle-icon-color: #bec9c8;--mat-datepicker-calendar-body-label-text-color: #e0e3e2;--mat-datepicker-calendar-period-button-text-color: #bec9c8;--mat-datepicker-calendar-period-button-icon-color: #bec9c8;--mat-datepicker-calendar-navigation-button-icon-color: #bec9c8;--mat-datepicker-calendar-header-text-color: #bec9c8;--mat-datepicker-calendar-date-today-outline-color: #00dddd;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-date-text-color: #e0e3e2;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #00dddd;--mat-datepicker-range-input-separator-color: #e0e3e2;--mat-datepicker-range-input-disabled-state-separator-color: rgba(224, 227, 226, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-container-background-color: #272b2b;--mat-datepicker-calendar-container-text-color: #e0e3e2;--mat-divider-color: #3f4948;--mat-expansion-container-background-color: #191c1c;--mat-expansion-container-text-color: #e0e3e2;--mat-expansion-actions-divider-color: #3f4948;--mat-expansion-header-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-expansion-header-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-expansion-header-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-expansion-header-text-color: #e0e3e2;--mat-expansion-header-description-color: #bec9c8;--mat-expansion-header-indicator-color: #bec9c8;--mat-sidenav-container-background-color: #191c1c;--mat-sidenav-container-text-color: #bec9c8;--mat-sidenav-content-background-color: #191c1c;--mat-sidenav-content-text-color: #e0e3e2;--mat-sidenav-scrim-color: rgba(41, 50, 50, .4);--mat-stepper-header-icon-foreground-color: #191c1c;--mat-stepper-header-selected-state-icon-background-color: #00dddd;--mat-stepper-header-selected-state-icon-foreground-color: #003737;--mat-stepper-header-edit-state-icon-background-color: #00dddd;--mat-stepper-header-edit-state-icon-foreground-color: #003737;--mat-stepper-container-color: #191c1c;--mat-stepper-line-color: #3f4948;--mat-stepper-header-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-stepper-header-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-stepper-header-label-text-color: #bec9c8;--mat-stepper-header-optional-label-text-color: #bec9c8;--mat-stepper-header-selected-state-label-text-color: #bec9c8;--mat-stepper-header-error-state-label-text-color: #ffb4ab;--mat-stepper-header-icon-background-color: #bec9c8;--mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;--mat-sort-arrow-color: #e0e3e2;--mat-toolbar-container-background-color: #191c1c;--mat-toolbar-container-text-color: #e0e3e2;--mat-tree-container-background-color: #191c1c;--mat-tree-node-text-color: #e0e3e2}.survey-theme-cyan-orange-dark .mat-display-large,.survey-theme-cyan-orange-dark .mat-typography .mat-display-large,.survey-theme-cyan-orange-dark .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-display-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-display-medium,.survey-theme-cyan-orange-dark .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-display-small,.survey-theme-cyan-orange-dark .mat-typography .mat-display-small,.survey-theme-cyan-orange-dark .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-headline-large,.survey-theme-cyan-orange-dark .mat-typography .mat-headline-large,.survey-theme-cyan-orange-dark .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-headline-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-headline-medium,.survey-theme-cyan-orange-dark .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-headline-small,.survey-theme-cyan-orange-dark .mat-typography .mat-headline-small,.survey-theme-cyan-orange-dark .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-title-large,.survey-theme-cyan-orange-dark .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-cyan-orange-dark .mat-title-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-cyan-orange-dark .mat-title-small,.survey-theme-cyan-orange-dark .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-dark .mat-body-large,.survey-theme-cyan-orange-dark .mat-typography .mat-body-large,.survey-theme-cyan-orange-dark .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-dark .mat-body-large p,.survey-theme-cyan-orange-dark .mat-typography .mat-body-large p,.survey-theme-cyan-orange-dark .mat-typography p{margin:0 0 .75em}.survey-theme-cyan-orange-dark .mat-body-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-cyan-orange-dark .mat-body-small,.survey-theme-cyan-orange-dark .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-cyan-orange-dark .mat-label-large,.survey-theme-cyan-orange-dark .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-dark .mat-label-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-dark .mat-label-small,.survey-theme-cyan-orange-dark .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-dark.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-cyan-orange-dark ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-cyan-orange-dark.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#723600}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#ffdcc7}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#723600}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#ffdcc7}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#324b4b;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-cyan-orange-dark.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-rose-red-light{--mat-app-background-color: #fffbff;--mat-app-text-color: #201a1b;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(32, 26, 27, .1);--mat-option-selected-state-label-text-color: #2b151b;--mat-option-label-text-color: #201a1b;--mat-option-hover-state-layer-color: rgba(32, 26, 27, .08);--mat-option-focus-state-layer-color: rgba(32, 26, 27, .12);--mat-option-selected-state-layer-color: #ffd9e1;--mat-optgroup-label-text-color: #514346;--mat-full-pseudo-checkbox-selected-icon-color: #ba005c;--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;--mat-full-pseudo-checkbox-unselected-icon-color: #514346;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fffbff;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(32, 26, 27, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(32, 26, 27, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ba005c;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(32, 26, 27, .38);--mdc-elevated-card-container-color: #fffbff;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #fffbff;--mdc-outlined-card-outline-color: #d6c2c5;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #201a1b;--mdc-linear-progress-active-indicator-color: #ba005c;--mdc-linear-progress-track-color: #f3dde1;--mdc-plain-tooltip-container-color: #352f30;--mdc-plain-tooltip-supporting-text-color: #faeeef;--mdc-filled-text-field-caret-color: #ba005c;--mdc-filled-text-field-focus-active-indicator-color: #ba005c;--mdc-filled-text-field-focus-label-text-color: #ba005c;--mdc-filled-text-field-container-color: #f3dde1;--mdc-filled-text-field-disabled-container-color: rgba(32, 26, 27, .04);--mdc-filled-text-field-label-text-color: #514346;--mdc-filled-text-field-hover-label-text-color: #514346;--mdc-filled-text-field-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-filled-text-field-input-text-color: #201a1b;--mdc-filled-text-field-disabled-input-text-color: rgba(32, 26, 27, .38);--mdc-filled-text-field-input-text-placeholder-color: #514346;--mdc-filled-text-field-error-hover-label-text-color: #410002;--mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;--mdc-filled-text-field-error-label-text-color: #ba1a1a;--mdc-filled-text-field-active-indicator-color: #514346;--mdc-filled-text-field-disabled-active-indicator-color: rgba(32, 26, 27, .38);--mdc-filled-text-field-hover-active-indicator-color: #201a1b;--mdc-filled-text-field-error-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-hover-active-indicator-color: #410002;--mdc-outlined-text-field-caret-color: #ba005c;--mdc-outlined-text-field-focus-outline-color: #ba005c;--mdc-outlined-text-field-focus-label-text-color: #ba005c;--mdc-outlined-text-field-label-text-color: #514346;--mdc-outlined-text-field-hover-label-text-color: #201a1b;--mdc-outlined-text-field-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-outlined-text-field-input-text-color: #201a1b;--mdc-outlined-text-field-disabled-input-text-color: rgba(32, 26, 27, .38);--mdc-outlined-text-field-input-text-placeholder-color: #514346;--mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-hover-label-text-color: #410002;--mdc-outlined-text-field-outline-color: #847376;--mdc-outlined-text-field-disabled-outline-color: rgba(32, 26, 27, .12);--mdc-outlined-text-field-hover-outline-color: #201a1b;--mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;--mdc-outlined-text-field-error-hover-outline-color: #410002;--mdc-outlined-text-field-error-outline-color: #ba1a1a;--mat-form-field-focus-select-arrow-color: #ba005c;--mat-form-field-disabled-input-text-placeholder-color: rgba(32, 26, 27, .38);--mat-form-field-state-layer-color: #201a1b;--mat-form-field-error-text-color: #ba1a1a;--mat-form-field-select-option-text-color: #201a1b;--mat-form-field-select-disabled-option-text-color: rgba(32, 26, 27, .38);--mat-form-field-leading-icon-color: #514346;--mat-form-field-disabled-leading-icon-color: rgba(32, 26, 27, .38);--mat-form-field-trailing-icon-color: #514346;--mat-form-field-disabled-trailing-icon-color: rgba(32, 26, 27, .38);--mat-form-field-error-focus-trailing-icon-color: #ba1a1a;--mat-form-field-error-hover-trailing-icon-color: #410002;--mat-form-field-error-trailing-icon-color: #ba1a1a;--mat-form-field-enabled-select-arrow-color: #514346;--mat-form-field-disabled-select-arrow-color: rgba(32, 26, 27, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #f7ebec;--mat-select-enabled-trigger-text-color: #201a1b;--mat-select-disabled-trigger-text-color: rgba(32, 26, 27, .38);--mat-select-placeholder-text-color: #514346;--mat-select-enabled-arrow-color: #514346;--mat-select-disabled-arrow-color: rgba(32, 26, 27, .38);--mat-select-focused-arrow-color: #ba005c;--mat-select-invalid-arrow-color: #ba1a1a;--mat-autocomplete-background-color: #f7ebec;--mdc-dialog-container-color: #fffbff;--mdc-dialog-subhead-color: #201a1b;--mdc-dialog-supporting-text-color: #514346;--mdc-chip-outline-color: #847376;--mdc-chip-disabled-outline-color: rgba(32, 26, 27, .12);--mdc-chip-focus-outline-color: #514346;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-chip-elevated-selected-container-color: #ffd9e1;--mdc-chip-flat-disabled-selected-container-color: rgba(32, 26, 27, .12);--mdc-chip-focus-state-layer-color: #514346;--mdc-chip-hover-state-layer-color: #514346;--mdc-chip-selected-hover-state-layer-color: #2b151b;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #2b151b;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #514346;--mdc-chip-selected-label-text-color: #2b151b;--mdc-chip-with-icon-icon-color: #514346;--mdc-chip-with-icon-disabled-icon-color: #201a1b;--mdc-chip-with-icon-selected-icon-color: #2b151b;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #201a1b;--mdc-chip-with-trailing-icon-trailing-icon-color: #514346;--mat-chip-trailing-action-state-layer-color: #514346;--mat-chip-selected-trailing-action-state-layer-color: #2b151b;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #201a1b;--mat-chip-selected-trailing-icon-color: #2b151b;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #ba005c;--mdc-switch-selected-handle-color: #ffffff;--mdc-switch-selected-hover-state-layer-color: #ba005c;--mdc-switch-selected-pressed-state-layer-color: #ba005c;--mdc-switch-selected-focus-handle-color: #ffd9e1;--mdc-switch-selected-hover-handle-color: #ffd9e1;--mdc-switch-selected-pressed-handle-color: #ffd9e1;--mdc-switch-selected-focus-track-color: #ba005c;--mdc-switch-selected-hover-track-color: #ba005c;--mdc-switch-selected-pressed-track-color: #ba005c;--mdc-switch-selected-track-color: #ba005c;--mdc-switch-disabled-selected-handle-color: #fffbff;--mdc-switch-disabled-selected-icon-color: #201a1b;--mdc-switch-disabled-selected-track-color: #201a1b;--mdc-switch-disabled-unselected-handle-color: #201a1b;--mdc-switch-disabled-unselected-icon-color: #f3dde1;--mdc-switch-disabled-unselected-track-color: #f3dde1;--mdc-switch-selected-icon-color: #3f001b;--mdc-switch-unselected-focus-handle-color: #514346;--mdc-switch-unselected-focus-state-layer-color: #201a1b;--mdc-switch-unselected-focus-track-color: #f3dde1;--mdc-switch-unselected-handle-color: #847376;--mdc-switch-unselected-hover-handle-color: #514346;--mdc-switch-unselected-hover-state-layer-color: #201a1b;--mdc-switch-unselected-hover-track-color: #f3dde1;--mdc-switch-unselected-icon-color: #f3dde1;--mdc-switch-unselected-pressed-handle-color: #514346;--mdc-switch-unselected-pressed-state-layer-color: #201a1b;--mdc-switch-unselected-pressed-track-color: #f3dde1;--mdc-switch-unselected-track-color: #f3dde1;--mat-switch-track-outline-color: #847376;--mat-switch-disabled-unselected-track-outline-color: #201a1b;--mat-switch-label-text-color: #201a1b;--mdc-radio-disabled-selected-icon-color: #201a1b;--mdc-radio-disabled-unselected-icon-color: #201a1b;--mdc-radio-unselected-hover-icon-color: #201a1b;--mdc-radio-unselected-icon-color: #514346;--mdc-radio-unselected-pressed-icon-color: #201a1b;--mdc-radio-selected-focus-icon-color: #ba005c;--mdc-radio-selected-hover-icon-color: #ba005c;--mdc-radio-selected-icon-color: #ba005c;--mdc-radio-selected-pressed-icon-color: #ba005c;--mat-radio-ripple-color: #201a1b;--mat-radio-checked-ripple-color: #ba005c;--mat-radio-disabled-label-color: rgba(32, 26, 27, .38);--mat-radio-label-text-color: #201a1b;--mdc-slider-handle-color: #ba005c;--mdc-slider-focus-handle-color: #ba005c;--mdc-slider-hover-handle-color: #ba005c;--mdc-slider-active-track-color: #ba005c;--mdc-slider-inactive-track-color: #f3dde1;--mdc-slider-with-tick-marks-inactive-container-color: #514346;--mdc-slider-with-tick-marks-active-container-color: #ffffff;--mdc-slider-disabled-active-track-color: #201a1b;--mdc-slider-disabled-handle-color: #201a1b;--mdc-slider-disabled-inactive-track-color: #201a1b;--mdc-slider-label-container-color: #ba005c;--mdc-slider-label-label-text-color: #ffffff;--mdc-slider-with-overlap-handle-outline-color: #ffffff;--mdc-slider-with-tick-marks-disabled-container-color: #201a1b;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #ba005c;--mat-slider-hover-state-layer-color: rgba(186, 0, 92, .05);--mat-slider-focus-state-layer-color: rgba(186, 0, 92, .2);--mat-menu-item-label-text-color: #201a1b;--mat-menu-item-icon-color: #514346;--mat-menu-item-hover-state-layer-color: rgba(32, 26, 27, .08);--mat-menu-item-focus-state-layer-color: rgba(32, 26, 27, .12);--mat-menu-container-color: #f7ebec;--mat-menu-divider-color: #f3dde1;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #ffd9e1;--mdc-list-list-item-disabled-state-layer-color: #201a1b;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #201a1b;--mdc-list-list-item-supporting-text-color: #514346;--mdc-list-list-item-leading-icon-color: #514346;--mdc-list-list-item-trailing-supporting-text-color: #514346;--mdc-list-list-item-trailing-icon-color: #514346;--mdc-list-list-item-selected-trailing-icon-color: #ba005c;--mdc-list-list-item-disabled-label-text-color: #201a1b;--mdc-list-list-item-disabled-leading-icon-color: #201a1b;--mdc-list-list-item-disabled-trailing-icon-color: #201a1b;--mdc-list-list-item-hover-label-text-color: #201a1b;--mdc-list-list-item-focus-label-text-color: #201a1b;--mdc-list-list-item-hover-state-layer-color: #201a1b;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #201a1b;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #ffd9e1;--mat-paginator-container-text-color: #201a1b;--mat-paginator-container-background-color: #fffbff;--mat-paginator-enabled-icon-color: #514346;--mat-paginator-disabled-icon-color: rgba(32, 26, 27, .38);--mdc-tab-indicator-active-indicator-color: #ba005c;--mat-tab-header-divider-color: #f3dde1;--mat-tab-header-pagination-icon-color: #201a1b;--mat-tab-header-inactive-label-text-color: #201a1b;--mat-tab-header-active-label-text-color: #201a1b;--mat-tab-header-active-ripple-color: #201a1b;--mat-tab-header-inactive-ripple-color: #201a1b;--mat-tab-header-inactive-focus-label-text-color: #201a1b;--mat-tab-header-inactive-hover-label-text-color: #201a1b;--mat-tab-header-active-focus-label-text-color: #201a1b;--mat-tab-header-active-hover-label-text-color: #201a1b;--mat-tab-header-active-focus-indicator-color: #ba005c;--mat-tab-header-active-hover-indicator-color: #ba005c;--mdc-checkbox-disabled-selected-checkmark-color: #fffbff;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(32, 26, 27, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(32, 26, 27, .38);--mdc-checkbox-selected-checkmark-color: #ffffff;--mdc-checkbox-selected-focus-icon-color: #ba005c;--mdc-checkbox-selected-hover-icon-color: #ba005c;--mdc-checkbox-selected-icon-color: #ba005c;--mdc-checkbox-unselected-focus-icon-color: #201a1b;--mdc-checkbox-unselected-hover-icon-color: #201a1b;--mdc-checkbox-unselected-icon-color: #514346;--mdc-checkbox-selected-focus-state-layer-color: #ba005c;--mdc-checkbox-selected-hover-state-layer-color: #ba005c;--mdc-checkbox-selected-pressed-state-layer-color: #201a1b;--mdc-checkbox-unselected-focus-state-layer-color: #201a1b;--mdc-checkbox-unselected-hover-state-layer-color: #201a1b;--mdc-checkbox-unselected-pressed-state-layer-color: #ba005c;--mat-checkbox-disabled-label-color: rgba(32, 26, 27, .38);--mat-checkbox-label-text-color: #201a1b;--mdc-text-button-label-text-color: #ba005c;--mdc-text-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-protected-button-container-color: #fffbff;--mdc-protected-button-label-text-color: #ba005c;--mdc-protected-button-disabled-container-color: rgba(32, 26, 27, .12);--mdc-protected-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #ba005c;--mdc-filled-button-label-text-color: #ffffff;--mdc-filled-button-disabled-container-color: rgba(32, 26, 27, .12);--mdc-filled-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-outlined-button-disabled-outline-color: rgba(32, 26, 27, .12);--mdc-outlined-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-outlined-button-label-text-color: #ba005c;--mdc-outlined-button-outline-color: #847376;--mat-text-button-state-layer-color: #ba005c;--mat-text-button-disabled-state-layer-color: #514346;--mat-text-button-ripple-color: rgba(186, 0, 92, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #ba005c;--mat-protected-button-disabled-state-layer-color: #514346;--mat-protected-button-ripple-color: rgba(186, 0, 92, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #ffffff;--mat-filled-button-disabled-state-layer-color: #514346;--mat-filled-button-ripple-color: rgba(255, 255, 255, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #ba005c;--mat-outlined-button-disabled-state-layer-color: #514346;--mat-outlined-button-ripple-color: rgba(186, 0, 92, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #514346;--mdc-icon-button-disabled-icon-color: rgba(32, 26, 27, .38);--mat-icon-button-state-layer-color: #514346;--mat-icon-button-disabled-state-layer-color: #514346;--mat-icon-button-ripple-color: rgba(81, 67, 70, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #ffd9e1;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #ffd9e1;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #3f001b;--mat-fab-state-layer-color: #3f001b;--mat-fab-ripple-color: rgba(63, 0, 27, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(32, 26, 27, .12);--mat-fab-disabled-state-foreground-color: rgba(32, 26, 27, .38);--mat-fab-small-foreground-color: #3f001b;--mat-fab-small-state-layer-color: #3f001b;--mat-fab-small-ripple-color: rgba(63, 0, 27, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(32, 26, 27, .12);--mat-fab-small-disabled-state-foreground-color: rgba(32, 26, 27, .38);--mdc-snackbar-container-color: #352f30;--mdc-snackbar-supporting-text-color: #faeeef;--mat-snack-bar-button-color: #ffb1c5;--mat-table-background-color: #fffbff;--mat-table-header-headline-color: #201a1b;--mat-table-row-item-label-text-color: #201a1b;--mat-table-row-item-outline-color: #d6c2c5;--mdc-circular-progress-active-indicator-color: #ba005c;--mat-badge-background-color: #ba1a1a;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: rgba(186, 26, 26, .38);--mat-badge-disabled-state-text-color: #ffffff;--mat-bottom-sheet-container-text-color: #201a1b;--mat-bottom-sheet-container-background-color: #fcf1f2;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #201a1b;--mat-standard-button-toggle-state-layer-color: #201a1b;--mat-standard-button-toggle-selected-state-background-color: #ffd9e1;--mat-standard-button-toggle-selected-state-text-color: #2b151b;--mat-standard-button-toggle-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(32, 26, 27, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(32, 26, 27, .12);--mat-standard-button-toggle-divider-color: #847376;--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #ba005c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ba005c;--mat-datepicker-calendar-date-focus-state-background-color: rgba(32, 26, 27, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(32, 26, 27, .08);--mat-datepicker-toggle-active-state-icon-color: #514346;--mat-datepicker-calendar-date-in-range-state-background-color: #ffd9e1;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #ffdad4;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #ffd9e1;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #74565d;--mat-datepicker-toggle-icon-color: #514346;--mat-datepicker-calendar-body-label-text-color: #201a1b;--mat-datepicker-calendar-period-button-text-color: #514346;--mat-datepicker-calendar-period-button-icon-color: #514346;--mat-datepicker-calendar-navigation-button-icon-color: #514346;--mat-datepicker-calendar-header-text-color: #514346;--mat-datepicker-calendar-date-today-outline-color: #ba005c;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-date-text-color: #201a1b;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #ba005c;--mat-datepicker-range-input-separator-color: #201a1b;--mat-datepicker-range-input-disabled-state-separator-color: rgba(32, 26, 27, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-container-background-color: #f2e6e7;--mat-datepicker-calendar-container-text-color: #201a1b;--mat-divider-color: #d6c2c5;--mat-expansion-container-background-color: #fffbff;--mat-expansion-container-text-color: #201a1b;--mat-expansion-actions-divider-color: #d6c2c5;--mat-expansion-header-hover-state-layer-color: rgba(32, 26, 27, .08);--mat-expansion-header-focus-state-layer-color: rgba(32, 26, 27, .12);--mat-expansion-header-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-expansion-header-text-color: #201a1b;--mat-expansion-header-description-color: #514346;--mat-expansion-header-indicator-color: #514346;--mat-sidenav-container-background-color: #fffbff;--mat-sidenav-container-text-color: #514346;--mat-sidenav-content-background-color: #fffbff;--mat-sidenav-content-text-color: #201a1b;--mat-sidenav-scrim-color: rgba(58, 45, 48, .4);--mat-stepper-header-icon-foreground-color: #fffbff;--mat-stepper-header-selected-state-icon-background-color: #ba005c;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #ba005c;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #fffbff;--mat-stepper-line-color: #d6c2c5;--mat-stepper-header-hover-state-layer-color: rgba(53, 47, 48, .08);--mat-stepper-header-focus-state-layer-color: rgba(53, 47, 48, .12);--mat-stepper-header-label-text-color: #514346;--mat-stepper-header-optional-label-text-color: #514346;--mat-stepper-header-selected-state-label-text-color: #514346;--mat-stepper-header-error-state-label-text-color: #ba1a1a;--mat-stepper-header-icon-background-color: #514346;--mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;--mat-sort-arrow-color: #201a1b;--mat-toolbar-container-background-color: #fffbff;--mat-toolbar-container-text-color: #201a1b;--mat-tree-container-background-color: #fffbff;--mat-tree-node-text-color: #201a1b}.survey-theme-rose-red-light .mat-display-large,.survey-theme-rose-red-light .mat-typography .mat-display-large,.survey-theme-rose-red-light .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-display-medium,.survey-theme-rose-red-light .mat-typography .mat-display-medium,.survey-theme-rose-red-light .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-display-small,.survey-theme-rose-red-light .mat-typography .mat-display-small,.survey-theme-rose-red-light .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-headline-large,.survey-theme-rose-red-light .mat-typography .mat-headline-large,.survey-theme-rose-red-light .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-headline-medium,.survey-theme-rose-red-light .mat-typography .mat-headline-medium,.survey-theme-rose-red-light .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-headline-small,.survey-theme-rose-red-light .mat-typography .mat-headline-small,.survey-theme-rose-red-light .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-title-large,.survey-theme-rose-red-light .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-rose-red-light .mat-title-medium,.survey-theme-rose-red-light .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-rose-red-light .mat-title-small,.survey-theme-rose-red-light .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-light .mat-body-large,.survey-theme-rose-red-light .mat-typography .mat-body-large,.survey-theme-rose-red-light .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-light .mat-body-large p,.survey-theme-rose-red-light .mat-typography .mat-body-large p,.survey-theme-rose-red-light .mat-typography p{margin:0 0 .75em}.survey-theme-rose-red-light .mat-body-medium,.survey-theme-rose-red-light .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-rose-red-light .mat-body-small,.survey-theme-rose-red-light .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-rose-red-light .mat-label-large,.survey-theme-rose-red-light .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-light .mat-label-medium,.survey-theme-rose-red-light .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-light .mat-label-small,.survey-theme-rose-red-light .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-light.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-rose-red-light ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-rose-red-light.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#ffdad4}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#410000}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#ffdad4}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#410000}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#ffd9e1;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-rose-red-light.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-rose-red-dark{--mat-app-background-color: #201a1b;--mat-app-text-color: #ece0e1;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(236, 224, 225, .1);--mat-option-selected-state-label-text-color: #ffd9e1;--mat-option-label-text-color: #ece0e1;--mat-option-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-option-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-option-selected-state-layer-color: #5b3f46;--mat-optgroup-label-text-color: #d6c2c5;--mat-full-pseudo-checkbox-selected-icon-color: #ffb1c5;--mat-full-pseudo-checkbox-selected-checkmark-color: #65002f;--mat-full-pseudo-checkbox-unselected-icon-color: #d6c2c5;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #201a1b;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(236, 224, 225, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(236, 224, 225, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ffb1c5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(236, 224, 225, .38);--mdc-elevated-card-container-color: #201a1b;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #201a1b;--mdc-outlined-card-outline-color: #514346;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #ece0e1;--mdc-linear-progress-active-indicator-color: #ffb1c5;--mdc-linear-progress-track-color: #514346;--mdc-plain-tooltip-container-color: #ece0e1;--mdc-plain-tooltip-supporting-text-color: #352f30;--mdc-filled-text-field-caret-color: #ffb1c5;--mdc-filled-text-field-focus-active-indicator-color: #ffb1c5;--mdc-filled-text-field-focus-label-text-color: #ffb1c5;--mdc-filled-text-field-container-color: #514346;--mdc-filled-text-field-disabled-container-color: rgba(236, 224, 225, .04);--mdc-filled-text-field-label-text-color: #d6c2c5;--mdc-filled-text-field-hover-label-text-color: #d6c2c5;--mdc-filled-text-field-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-filled-text-field-input-text-color: #ece0e1;--mdc-filled-text-field-disabled-input-text-color: rgba(236, 224, 225, .38);--mdc-filled-text-field-input-text-placeholder-color: #d6c2c5;--mdc-filled-text-field-error-hover-label-text-color: #ffdad6;--mdc-filled-text-field-error-focus-label-text-color: #ffb4ab;--mdc-filled-text-field-error-label-text-color: #ffb4ab;--mdc-filled-text-field-active-indicator-color: #d6c2c5;--mdc-filled-text-field-disabled-active-indicator-color: rgba(236, 224, 225, .38);--mdc-filled-text-field-hover-active-indicator-color: #ece0e1;--mdc-filled-text-field-error-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-focus-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-hover-active-indicator-color: #ffdad6;--mdc-outlined-text-field-caret-color: #ffb1c5;--mdc-outlined-text-field-focus-outline-color: #ffb1c5;--mdc-outlined-text-field-focus-label-text-color: #ffb1c5;--mdc-outlined-text-field-label-text-color: #d6c2c5;--mdc-outlined-text-field-hover-label-text-color: #ece0e1;--mdc-outlined-text-field-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-outlined-text-field-input-text-color: #ece0e1;--mdc-outlined-text-field-disabled-input-text-color: rgba(236, 224, 225, .38);--mdc-outlined-text-field-input-text-placeholder-color: #d6c2c5;--mdc-outlined-text-field-error-focus-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-hover-label-text-color: #ffdad6;--mdc-outlined-text-field-outline-color: #9e8c90;--mdc-outlined-text-field-disabled-outline-color: rgba(236, 224, 225, .12);--mdc-outlined-text-field-hover-outline-color: #ece0e1;--mdc-outlined-text-field-error-focus-outline-color: #ffb4ab;--mdc-outlined-text-field-error-hover-outline-color: #ffdad6;--mdc-outlined-text-field-error-outline-color: #ffb4ab;--mat-form-field-focus-select-arrow-color: #ffb1c5;--mat-form-field-disabled-input-text-placeholder-color: rgba(236, 224, 225, .38);--mat-form-field-state-layer-color: #ece0e1;--mat-form-field-error-text-color: #ffb4ab;--mat-form-field-select-option-text-color: #201a1b;--mat-form-field-select-disabled-option-text-color: rgba(32, 26, 27, .38);--mat-form-field-leading-icon-color: #d6c2c5;--mat-form-field-disabled-leading-icon-color: rgba(236, 224, 225, .38);--mat-form-field-trailing-icon-color: #d6c2c5;--mat-form-field-disabled-trailing-icon-color: rgba(236, 224, 225, .38);--mat-form-field-error-focus-trailing-icon-color: #ffb4ab;--mat-form-field-error-hover-trailing-icon-color: #ffdad6;--mat-form-field-error-trailing-icon-color: #ffb4ab;--mat-form-field-enabled-select-arrow-color: #d6c2c5;--mat-form-field-disabled-select-arrow-color: rgba(236, 224, 225, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #241e1f;--mat-select-enabled-trigger-text-color: #ece0e1;--mat-select-disabled-trigger-text-color: rgba(236, 224, 225, .38);--mat-select-placeholder-text-color: #d6c2c5;--mat-select-enabled-arrow-color: #d6c2c5;--mat-select-disabled-arrow-color: rgba(236, 224, 225, .38);--mat-select-focused-arrow-color: #ffb1c5;--mat-select-invalid-arrow-color: #ffb4ab;--mat-autocomplete-background-color: #241e1f;--mdc-dialog-container-color: #201a1b;--mdc-dialog-subhead-color: #ece0e1;--mdc-dialog-supporting-text-color: #d6c2c5;--mdc-chip-outline-color: #9e8c90;--mdc-chip-disabled-outline-color: rgba(236, 224, 225, .12);--mdc-chip-focus-outline-color: #d6c2c5;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-chip-elevated-selected-container-color: #5b3f46;--mdc-chip-flat-disabled-selected-container-color: rgba(236, 224, 225, .12);--mdc-chip-focus-state-layer-color: #d6c2c5;--mdc-chip-hover-state-layer-color: #d6c2c5;--mdc-chip-selected-hover-state-layer-color: #ffd9e1;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #ffd9e1;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #d6c2c5;--mdc-chip-selected-label-text-color: #ffd9e1;--mdc-chip-with-icon-icon-color: #d6c2c5;--mdc-chip-with-icon-disabled-icon-color: #ece0e1;--mdc-chip-with-icon-selected-icon-color: #ffd9e1;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #ece0e1;--mdc-chip-with-trailing-icon-trailing-icon-color: #d6c2c5;--mat-chip-trailing-action-state-layer-color: #d6c2c5;--mat-chip-selected-trailing-action-state-layer-color: #ffd9e1;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #ece0e1;--mat-chip-selected-trailing-icon-color: #ffd9e1;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #ffb1c5;--mdc-switch-selected-handle-color: #65002f;--mdc-switch-selected-hover-state-layer-color: #ffb1c5;--mdc-switch-selected-pressed-state-layer-color: #ffb1c5;--mdc-switch-selected-focus-handle-color: #8f0045;--mdc-switch-selected-hover-handle-color: #8f0045;--mdc-switch-selected-pressed-handle-color: #8f0045;--mdc-switch-selected-focus-track-color: #ffb1c5;--mdc-switch-selected-hover-track-color: #ffb1c5;--mdc-switch-selected-pressed-track-color: #ffb1c5;--mdc-switch-selected-track-color: #ffb1c5;--mdc-switch-disabled-selected-handle-color: #201a1b;--mdc-switch-disabled-selected-icon-color: #ece0e1;--mdc-switch-disabled-selected-track-color: #ece0e1;--mdc-switch-disabled-unselected-handle-color: #ece0e1;--mdc-switch-disabled-unselected-icon-color: #514346;--mdc-switch-disabled-unselected-track-color: #514346;--mdc-switch-selected-icon-color: #ffd9e1;--mdc-switch-unselected-focus-handle-color: #d6c2c5;--mdc-switch-unselected-focus-state-layer-color: #ece0e1;--mdc-switch-unselected-focus-track-color: #514346;--mdc-switch-unselected-handle-color: #9e8c90;--mdc-switch-unselected-hover-handle-color: #d6c2c5;--mdc-switch-unselected-hover-state-layer-color: #ece0e1;--mdc-switch-unselected-hover-track-color: #514346;--mdc-switch-unselected-icon-color: #514346;--mdc-switch-unselected-pressed-handle-color: #d6c2c5;--mdc-switch-unselected-pressed-state-layer-color: #ece0e1;--mdc-switch-unselected-pressed-track-color: #514346;--mdc-switch-unselected-track-color: #514346;--mat-switch-track-outline-color: #9e8c90;--mat-switch-disabled-unselected-track-outline-color: #ece0e1;--mat-switch-label-text-color: #ece0e1;--mdc-radio-disabled-selected-icon-color: #ece0e1;--mdc-radio-disabled-unselected-icon-color: #ece0e1;--mdc-radio-unselected-hover-icon-color: #ece0e1;--mdc-radio-unselected-icon-color: #d6c2c5;--mdc-radio-unselected-pressed-icon-color: #ece0e1;--mdc-radio-selected-focus-icon-color: #ffb1c5;--mdc-radio-selected-hover-icon-color: #ffb1c5;--mdc-radio-selected-icon-color: #ffb1c5;--mdc-radio-selected-pressed-icon-color: #ffb1c5;--mat-radio-ripple-color: #ece0e1;--mat-radio-checked-ripple-color: #ffb1c5;--mat-radio-disabled-label-color: rgba(236, 224, 225, .38);--mat-radio-label-text-color: #ece0e1;--mdc-slider-handle-color: #ffb1c5;--mdc-slider-focus-handle-color: #ffb1c5;--mdc-slider-hover-handle-color: #ffb1c5;--mdc-slider-active-track-color: #ffb1c5;--mdc-slider-inactive-track-color: #514346;--mdc-slider-with-tick-marks-inactive-container-color: #d6c2c5;--mdc-slider-with-tick-marks-active-container-color: #65002f;--mdc-slider-disabled-active-track-color: #ece0e1;--mdc-slider-disabled-handle-color: #ece0e1;--mdc-slider-disabled-inactive-track-color: #ece0e1;--mdc-slider-label-container-color: #ffb1c5;--mdc-slider-label-label-text-color: #65002f;--mdc-slider-with-overlap-handle-outline-color: #65002f;--mdc-slider-with-tick-marks-disabled-container-color: #ece0e1;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #ffb1c5;--mat-slider-hover-state-layer-color: rgba(255, 177, 197, .05);--mat-slider-focus-state-layer-color: rgba(255, 177, 197, .2);--mat-menu-item-label-text-color: #ece0e1;--mat-menu-item-icon-color: #d6c2c5;--mat-menu-item-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-menu-item-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-menu-container-color: #241e1f;--mat-menu-divider-color: #514346;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #8f0045;--mdc-list-list-item-disabled-state-layer-color: #ece0e1;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #ece0e1;--mdc-list-list-item-supporting-text-color: #d6c2c5;--mdc-list-list-item-leading-icon-color: #d6c2c5;--mdc-list-list-item-trailing-supporting-text-color: #d6c2c5;--mdc-list-list-item-trailing-icon-color: #d6c2c5;--mdc-list-list-item-selected-trailing-icon-color: #ffb1c5;--mdc-list-list-item-disabled-label-text-color: #ece0e1;--mdc-list-list-item-disabled-leading-icon-color: #ece0e1;--mdc-list-list-item-disabled-trailing-icon-color: #ece0e1;--mdc-list-list-item-hover-label-text-color: #ece0e1;--mdc-list-list-item-focus-label-text-color: #ece0e1;--mdc-list-list-item-hover-state-layer-color: #ece0e1;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #ece0e1;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #5b3f46;--mat-paginator-container-text-color: #ece0e1;--mat-paginator-container-background-color: #201a1b;--mat-paginator-enabled-icon-color: #d6c2c5;--mat-paginator-disabled-icon-color: rgba(236, 224, 225, .38);--mdc-tab-indicator-active-indicator-color: #ffb1c5;--mat-tab-header-divider-color: #514346;--mat-tab-header-pagination-icon-color: #ece0e1;--mat-tab-header-inactive-label-text-color: #ece0e1;--mat-tab-header-active-label-text-color: #ece0e1;--mat-tab-header-active-ripple-color: #ece0e1;--mat-tab-header-inactive-ripple-color: #ece0e1;--mat-tab-header-inactive-focus-label-text-color: #ece0e1;--mat-tab-header-inactive-hover-label-text-color: #ece0e1;--mat-tab-header-active-focus-label-text-color: #ece0e1;--mat-tab-header-active-hover-label-text-color: #ece0e1;--mat-tab-header-active-focus-indicator-color: #ffb1c5;--mat-tab-header-active-hover-indicator-color: #ffb1c5;--mdc-checkbox-disabled-selected-checkmark-color: #201a1b;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(236, 224, 225, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(236, 224, 225, .38);--mdc-checkbox-selected-checkmark-color: #65002f;--mdc-checkbox-selected-focus-icon-color: #ffb1c5;--mdc-checkbox-selected-hover-icon-color: #ffb1c5;--mdc-checkbox-selected-icon-color: #ffb1c5;--mdc-checkbox-unselected-focus-icon-color: #ece0e1;--mdc-checkbox-unselected-hover-icon-color: #ece0e1;--mdc-checkbox-unselected-icon-color: #d6c2c5;--mdc-checkbox-selected-focus-state-layer-color: #ffb1c5;--mdc-checkbox-selected-hover-state-layer-color: #ffb1c5;--mdc-checkbox-selected-pressed-state-layer-color: #ece0e1;--mdc-checkbox-unselected-focus-state-layer-color: #ece0e1;--mdc-checkbox-unselected-hover-state-layer-color: #ece0e1;--mdc-checkbox-unselected-pressed-state-layer-color: #ffb1c5;--mat-checkbox-disabled-label-color: rgba(236, 224, 225, .38);--mat-checkbox-label-text-color: #ece0e1;--mdc-text-button-label-text-color: #ffb1c5;--mdc-text-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-protected-button-container-color: #201a1b;--mdc-protected-button-label-text-color: #ffb1c5;--mdc-protected-button-disabled-container-color: rgba(236, 224, 225, .12);--mdc-protected-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #ffb1c5;--mdc-filled-button-label-text-color: #65002f;--mdc-filled-button-disabled-container-color: rgba(236, 224, 225, .12);--mdc-filled-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-outlined-button-disabled-outline-color: rgba(236, 224, 225, .12);--mdc-outlined-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-outlined-button-label-text-color: #ffb1c5;--mdc-outlined-button-outline-color: #9e8c90;--mat-text-button-state-layer-color: #ffb1c5;--mat-text-button-disabled-state-layer-color: #d6c2c5;--mat-text-button-ripple-color: rgba(255, 177, 197, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #ffb1c5;--mat-protected-button-disabled-state-layer-color: #d6c2c5;--mat-protected-button-ripple-color: rgba(255, 177, 197, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #65002f;--mat-filled-button-disabled-state-layer-color: #d6c2c5;--mat-filled-button-ripple-color: rgba(101, 0, 47, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #ffb1c5;--mat-outlined-button-disabled-state-layer-color: #d6c2c5;--mat-outlined-button-ripple-color: rgba(255, 177, 197, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #d6c2c5;--mdc-icon-button-disabled-icon-color: rgba(236, 224, 225, .38);--mat-icon-button-state-layer-color: #d6c2c5;--mat-icon-button-disabled-state-layer-color: #d6c2c5;--mat-icon-button-ripple-color: rgba(214, 194, 197, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #8f0045;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #8f0045;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #ffd9e1;--mat-fab-state-layer-color: #ffd9e1;--mat-fab-ripple-color: rgba(255, 217, 225, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(236, 224, 225, .12);--mat-fab-disabled-state-foreground-color: rgba(236, 224, 225, .38);--mat-fab-small-foreground-color: #ffd9e1;--mat-fab-small-state-layer-color: #ffd9e1;--mat-fab-small-ripple-color: rgba(255, 217, 225, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(236, 224, 225, .12);--mat-fab-small-disabled-state-foreground-color: rgba(236, 224, 225, .38);--mdc-snackbar-container-color: #ece0e1;--mdc-snackbar-supporting-text-color: #352f30;--mat-snack-bar-button-color: #ba005c;--mat-table-background-color: #201a1b;--mat-table-header-headline-color: #ece0e1;--mat-table-row-item-label-text-color: #ece0e1;--mat-table-row-item-outline-color: #514346;--mdc-circular-progress-active-indicator-color: #ffb1c5;--mat-badge-background-color: #ffb4ab;--mat-badge-text-color: #690005;--mat-badge-disabled-state-background-color: rgba(255, 180, 171, .38);--mat-badge-disabled-state-text-color: #690005;--mat-bottom-sheet-container-text-color: #ece0e1;--mat-bottom-sheet-container-background-color: #201a1b;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #ece0e1;--mat-standard-button-toggle-state-layer-color: #ece0e1;--mat-standard-button-toggle-selected-state-background-color: #5b3f46;--mat-standard-button-toggle-selected-state-text-color: #ffd9e1;--mat-standard-button-toggle-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(236, 224, 225, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(236, 224, 225, .12);--mat-standard-button-toggle-divider-color: #9e8c90;--mat-datepicker-calendar-date-selected-state-text-color: #65002f;--mat-datepicker-calendar-date-selected-state-background-color: #ffb1c5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffb1c5;--mat-datepicker-calendar-date-focus-state-background-color: rgba(236, 224, 225, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(236, 224, 225, .08);--mat-datepicker-toggle-active-state-icon-color: #d6c2c5;--mat-datepicker-calendar-date-in-range-state-background-color: #8f0045;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #930100;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #5b3f46;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #e3bdc5;--mat-datepicker-toggle-icon-color: #d6c2c5;--mat-datepicker-calendar-body-label-text-color: #ece0e1;--mat-datepicker-calendar-period-button-text-color: #d6c2c5;--mat-datepicker-calendar-period-button-icon-color: #d6c2c5;--mat-datepicker-calendar-navigation-button-icon-color: #d6c2c5;--mat-datepicker-calendar-header-text-color: #d6c2c5;--mat-datepicker-calendar-date-today-outline-color: #ffb1c5;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-date-text-color: #ece0e1;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #ffb1c5;--mat-datepicker-range-input-separator-color: #ece0e1;--mat-datepicker-range-input-disabled-state-separator-color: rgba(236, 224, 225, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-container-background-color: #2f292a;--mat-datepicker-calendar-container-text-color: #ece0e1;--mat-divider-color: #514346;--mat-expansion-container-background-color: #201a1b;--mat-expansion-container-text-color: #ece0e1;--mat-expansion-actions-divider-color: #514346;--mat-expansion-header-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-expansion-header-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-expansion-header-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-expansion-header-text-color: #ece0e1;--mat-expansion-header-description-color: #d6c2c5;--mat-expansion-header-indicator-color: #d6c2c5;--mat-sidenav-container-background-color: #201a1b;--mat-sidenav-container-text-color: #d6c2c5;--mat-sidenav-content-background-color: #201a1b;--mat-sidenav-content-text-color: #ece0e1;--mat-sidenav-scrim-color: rgba(58, 45, 48, .4);--mat-stepper-header-icon-foreground-color: #201a1b;--mat-stepper-header-selected-state-icon-background-color: #ffb1c5;--mat-stepper-header-selected-state-icon-foreground-color: #65002f;--mat-stepper-header-edit-state-icon-background-color: #ffb1c5;--mat-stepper-header-edit-state-icon-foreground-color: #65002f;--mat-stepper-container-color: #201a1b;--mat-stepper-line-color: #514346;--mat-stepper-header-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-stepper-header-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-stepper-header-label-text-color: #d6c2c5;--mat-stepper-header-optional-label-text-color: #d6c2c5;--mat-stepper-header-selected-state-label-text-color: #d6c2c5;--mat-stepper-header-error-state-label-text-color: #ffb4ab;--mat-stepper-header-icon-background-color: #d6c2c5;--mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;--mat-sort-arrow-color: #ece0e1;--mat-toolbar-container-background-color: #201a1b;--mat-toolbar-container-text-color: #ece0e1;--mat-tree-container-background-color: #201a1b;--mat-tree-node-text-color: #ece0e1}.survey-theme-rose-red-dark .mat-display-large,.survey-theme-rose-red-dark .mat-typography .mat-display-large,.survey-theme-rose-red-dark .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-display-medium,.survey-theme-rose-red-dark .mat-typography .mat-display-medium,.survey-theme-rose-red-dark .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-display-small,.survey-theme-rose-red-dark .mat-typography .mat-display-small,.survey-theme-rose-red-dark .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-headline-large,.survey-theme-rose-red-dark .mat-typography .mat-headline-large,.survey-theme-rose-red-dark .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-headline-medium,.survey-theme-rose-red-dark .mat-typography .mat-headline-medium,.survey-theme-rose-red-dark .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-headline-small,.survey-theme-rose-red-dark .mat-typography .mat-headline-small,.survey-theme-rose-red-dark .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-title-large,.survey-theme-rose-red-dark .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-rose-red-dark .mat-title-medium,.survey-theme-rose-red-dark .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-rose-red-dark .mat-title-small,.survey-theme-rose-red-dark .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-dark .mat-body-large,.survey-theme-rose-red-dark .mat-typography .mat-body-large,.survey-theme-rose-red-dark .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-dark .mat-body-large p,.survey-theme-rose-red-dark .mat-typography .mat-body-large p,.survey-theme-rose-red-dark .mat-typography p{margin:0 0 .75em}.survey-theme-rose-red-dark .mat-body-medium,.survey-theme-rose-red-dark .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-rose-red-dark .mat-body-small,.survey-theme-rose-red-dark .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-rose-red-dark .mat-label-large,.survey-theme-rose-red-dark .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-dark .mat-label-medium,.survey-theme-rose-red-dark .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-dark .mat-label-small,.survey-theme-rose-red-dark .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-dark.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-rose-red-dark ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-rose-red-dark.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#930100}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#ffdad4}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#930100}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#ffdad4}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#5b3f46;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-rose-red-dark.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-container-main{-webkit-text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tp-view-tablet{width:100%;height:100%;margin:0;display:flex;flex-flow:column nowrap;font-size:16px;overflow:hidden}.tp-view-tablet tp-survey-container-answer{flex:1}.tp-view-desktop tp-survey-navigation-button:first-child{text-align:end}.tp-view-desktop .container-navigation{display:grid;grid-template-columns:minmax(150px,auto) minmax(150px,auto) minmax(150px,auto);padding:1em}.tp-view-tablet .container-navigation{display:grid;height:40px;grid-template-columns:minmax(150px,auto) minmax(150px,auto) minmax(150px,auto);padding:1em}\n"], dependencies: [{ kind: "component", type: ContainerAnswerComponent, selector: "tp-survey-container-answer", inputs: ["question", "language", "viewModel", "answers", "developerMode", "languageList"], outputs: ["logicChanged", "answerChanged", "onLanguageChange"] }, { kind: "component", type: QuestionCaptionComponent, selector: "tp-survey-question-caption", inputs: ["caption", "captionHelp"] }, { kind: "directive", type: UpdateFontSizeDirective, selector: "[tpSurveyUpdateFontSize]", inputs: ["tpSurveyUpdateFontSize"] }, { kind: "pipe", type: MultiLangObjectToHtmlPipe, name: "multiLangObjectToHtml" }, { kind: "directive", type: SurveyThemeDirective, selector: "[tpSurveyTheme]", inputs: ["tpSurveyTheme"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2182
+ }
2183
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: SurveyQuestionPreviewComponent, decorators: [{
2184
+ type: Component,
2185
+ args: [{ selector: 'tp-survey-question-preview', standalone: true, imports: [
2186
+ AsyncPipe,
2187
+ ContainerAnswerComponent,
2188
+ GetActiveLanguagePipe,
2189
+ NavigationButtonComponent,
2190
+ QuestionCaptionComponent,
2191
+ UpdateFontSizeDirective,
2192
+ NgTemplateOutlet,
2193
+ MultiLangObjectToHtmlPipe,
2194
+ SurveyThemeDirective
2195
+ ], changeDetection: ChangeDetectionStrategy.OnPush, providers: [
2196
+ TpSurveyLogicService,
2197
+ ], template: "<div\r\n class=\"survey-container-main survey-typography\"\r\n [tpSurveyUpdateFontSize]=\"viewModel()\"\r\n [tpSurveyTheme]=\"theme()\"\r\n [class.tp-view-desktop]=\"viewModel() === ViewModel.vmDesktop\"\r\n [class.tp-view-tablet]=\"viewModel() === ViewModel.vmTablet\">\r\n\r\n @if (question(); as question) {\r\n <tp-survey-question-caption\r\n [caption]=\"question.MultiLangCaptions | multiLangObjectToHtml:language()\"\r\n [captionHelp]=\"question.MultiLangCaptionsHelper | multiLangObjectToHtml:language()\"/>\r\n\r\n <tp-survey-container-answer\r\n [question]=\"question\"\r\n [language]=\"language()\"\r\n [developerMode]=\"true\"\r\n [viewModel]=\"viewModel()\"\r\n [languageList]=\"languageList()\"/>\r\n }\r\n</div>\r\n", styles: [".mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale3d(0,0,0);background-color:var(--mat-ripple-color, rgba(0, 0, 0, .1))}.cdk-high-contrast-active .mat-ripple-element,.cdk-drag-preview .mat-ripple-element,.cdk-drag-placeholder .mat-ripple-element{display:none}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}.cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.cdk-overlay-backdrop{position:absolute;inset:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.cdk-overlay-dark-backdrop{background:#00000052}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0!important;box-sizing:content-box!important;height:0!important}@keyframes cdk-text-field-autofill-start{}@keyframes cdk-text-field-autofill-end{}.cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.mat-focus-indicator{position:relative}.mat-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border:var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.mat-focus-indicator:focus:before{content:\"\"}.cdk-high-contrast-active{--mat-focus-indicator-display: block}.mat-mdc-focus-indicator{position:relative}.mat-mdc-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-mdc-focus-indicator-display, none);border:var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius, 4px)}.mat-mdc-focus-indicator:focus:before{content:\"\"}.cdk-high-contrast-active{--mat-mdc-focus-indicator-display: block}.mat-app-background{background-color:var(--mat-app-background-color, transparent);color:var(--mat-app-text-color, inherit)}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:var(--mat-app-elevation-shadow-level-0, none)}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:var(--mat-app-elevation-shadow-level-1, none)}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:var(--mat-app-elevation-shadow-level-2, none)}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:var(--mat-app-elevation-shadow-level-3, none)}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:var(--mat-app-elevation-shadow-level-4, none)}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:var(--mat-app-elevation-shadow-level-5, none)}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:var(--mat-app-elevation-shadow-level-6, none)}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:var(--mat-app-elevation-shadow-level-7, none)}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:var(--mat-app-elevation-shadow-level-8, none)}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:var(--mat-app-elevation-shadow-level-9, none)}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:var(--mat-app-elevation-shadow-level-10, none)}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:var(--mat-app-elevation-shadow-level-11, none)}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:var(--mat-app-elevation-shadow-level-12, none)}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:var(--mat-app-elevation-shadow-level-13, none)}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:var(--mat-app-elevation-shadow-level-14, none)}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:var(--mat-app-elevation-shadow-level-15, none)}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:var(--mat-app-elevation-shadow-level-16, none)}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:var(--mat-app-elevation-shadow-level-17, none)}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:var(--mat-app-elevation-shadow-level-18, none)}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:var(--mat-app-elevation-shadow-level-19, none)}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:var(--mat-app-elevation-shadow-level-20, none)}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:var(--mat-app-elevation-shadow-level-21, none)}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:var(--mat-app-elevation-shadow-level-22, none)}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:var(--mat-app-elevation-shadow-level-23, none)}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:var(--mat-app-elevation-shadow-level-24, none)}.survey-container-main{--mat-app-background-color: #fdfbff;--mat-app-text-color: #1a1b1f;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(26, 27, 31, .1);--mat-option-selected-state-label-text-color: #131c2b;--mat-option-label-text-color: #1a1b1f;--mat-option-hover-state-layer-color: rgba(26, 27, 31, .08);--mat-option-focus-state-layer-color: rgba(26, 27, 31, .12);--mat-option-selected-state-layer-color: #dae2f9;--mat-option-label-text-font: Roboto, sans-serif;--mat-option-label-text-line-height: 1.25rem;--mat-option-label-text-size: 1rem;--mat-option-label-text-tracking: .006rem;--mat-option-label-text-weight: 400;--mat-optgroup-label-text-color: #44474e;--mat-optgroup-label-text-font: Roboto, sans-serif;--mat-optgroup-label-text-line-height: 1.25rem;--mat-optgroup-label-text-size: .875rem;--mat-optgroup-label-text-tracking: .006rem;--mat-optgroup-label-text-weight: 500;--mat-full-pseudo-checkbox-selected-icon-color: #005cbb;--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;--mat-full-pseudo-checkbox-unselected-icon-color: #44474e;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fdfbff;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(26, 27, 31, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(26, 27, 31, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #005cbb;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(26, 27, 31, .38);--mdc-elevated-card-container-color: #fdfbff;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-elevated-card-container-shape: 12px;--mdc-outlined-card-container-color: #fdfbff;--mdc-outlined-card-outline-color: #c4c6d0;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-shape: 12px;--mdc-outlined-card-outline-width: 1px;--mat-card-subtitle-text-color: #1a1b1f;--mat-card-title-text-font: Roboto;--mat-card-title-text-line-height: 1.75rem;--mat-card-title-text-size: 1.375rem;--mat-card-title-text-tracking: 0rem;--mat-card-title-text-weight: 400;--mat-card-subtitle-text-font: Roboto, sans-serif;--mat-card-subtitle-text-line-height: 1.5rem;--mat-card-subtitle-text-size: 1rem;--mat-card-subtitle-text-tracking: .009rem;--mat-card-subtitle-text-weight: 500;--mdc-linear-progress-active-indicator-color: #005cbb;--mdc-linear-progress-track-color: #e0e2ec;--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0px;--mdc-plain-tooltip-container-color: #2f3033;--mdc-plain-tooltip-supporting-text-color: #f2f0f4;--mdc-plain-tooltip-supporting-text-line-height: 1rem;--mdc-plain-tooltip-supporting-text-font: Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size: .75rem;--mdc-plain-tooltip-supporting-text-weight: 400;--mdc-plain-tooltip-supporting-text-tracking: .025rem;--mdc-plain-tooltip-container-shape: 4px;--mdc-filled-text-field-caret-color: #005cbb;--mdc-filled-text-field-focus-active-indicator-color: #005cbb;--mdc-filled-text-field-focus-label-text-color: #005cbb;--mdc-filled-text-field-container-color: #e0e2ec;--mdc-filled-text-field-disabled-container-color: rgba(26, 27, 31, .04);--mdc-filled-text-field-label-text-color: #44474e;--mdc-filled-text-field-hover-label-text-color: #44474e;--mdc-filled-text-field-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-filled-text-field-input-text-color: #1a1b1f;--mdc-filled-text-field-disabled-input-text-color: rgba(26, 27, 31, .38);--mdc-filled-text-field-input-text-placeholder-color: #44474e;--mdc-filled-text-field-error-hover-label-text-color: #410002;--mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;--mdc-filled-text-field-error-label-text-color: #ba1a1a;--mdc-filled-text-field-active-indicator-color: #44474e;--mdc-filled-text-field-disabled-active-indicator-color: rgba(26, 27, 31, .38);--mdc-filled-text-field-hover-active-indicator-color: #1a1b1f;--mdc-filled-text-field-error-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-hover-active-indicator-color: #410002;--mdc-filled-text-field-label-text-font: Roboto, sans-serif;--mdc-filled-text-field-label-text-size: 1rem;--mdc-filled-text-field-label-text-tracking: .031rem;--mdc-filled-text-field-label-text-weight: 400;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-caret-color: #005cbb;--mdc-outlined-text-field-focus-outline-color: #005cbb;--mdc-outlined-text-field-focus-label-text-color: #005cbb;--mdc-outlined-text-field-label-text-color: #44474e;--mdc-outlined-text-field-hover-label-text-color: #1a1b1f;--mdc-outlined-text-field-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-outlined-text-field-input-text-color: #1a1b1f;--mdc-outlined-text-field-disabled-input-text-color: rgba(26, 27, 31, .38);--mdc-outlined-text-field-input-text-placeholder-color: #44474e;--mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-hover-label-text-color: #410002;--mdc-outlined-text-field-outline-color: #74777f;--mdc-outlined-text-field-disabled-outline-color: rgba(26, 27, 31, .12);--mdc-outlined-text-field-hover-outline-color: #1a1b1f;--mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;--mdc-outlined-text-field-error-hover-outline-color: #410002;--mdc-outlined-text-field-error-outline-color: #ba1a1a;--mdc-outlined-text-field-label-text-font: Roboto, sans-serif;--mdc-outlined-text-field-label-text-size: 1rem;--mdc-outlined-text-field-label-text-tracking: .031rem;--mdc-outlined-text-field-label-text-weight: 400;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mat-form-field-focus-select-arrow-color: #005cbb;--mat-form-field-disabled-input-text-placeholder-color: rgba(26, 27, 31, .38);--mat-form-field-state-layer-color: #1a1b1f;--mat-form-field-error-text-color: #ba1a1a;--mat-form-field-select-option-text-color: #1a1b1f;--mat-form-field-select-disabled-option-text-color: rgba(26, 27, 31, .38);--mat-form-field-leading-icon-color: #44474e;--mat-form-field-disabled-leading-icon-color: rgba(26, 27, 31, .38);--mat-form-field-trailing-icon-color: #44474e;--mat-form-field-disabled-trailing-icon-color: rgba(26, 27, 31, .38);--mat-form-field-error-focus-trailing-icon-color: #ba1a1a;--mat-form-field-error-hover-trailing-icon-color: #410002;--mat-form-field-error-trailing-icon-color: #ba1a1a;--mat-form-field-enabled-select-arrow-color: #44474e;--mat-form-field-disabled-select-arrow-color: rgba(26, 27, 31, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-container-text-font: Roboto, sans-serif;--mat-form-field-container-text-line-height: 1.5rem;--mat-form-field-container-text-size: 1rem;--mat-form-field-container-text-tracking: .031rem;--mat-form-field-container-text-weight: 400;--mat-form-field-subscript-text-font: Roboto, sans-serif;--mat-form-field-subscript-text-line-height: 1rem;--mat-form-field-subscript-text-size: .75rem;--mat-form-field-subscript-text-tracking: .025rem;--mat-form-field-subscript-text-weight: 400;--mat-form-field-container-height: 52px;--mat-form-field-filled-label-display: block;--mat-form-field-container-vertical-padding: 14px;--mat-form-field-filled-with-label-container-padding-top: 22px;--mat-form-field-filled-with-label-container-padding-bottom: 6px;--mat-form-field-focus-state-layer-opacity: 0;--mat-select-panel-background-color: #efedf1;--mat-select-enabled-trigger-text-color: #1a1b1f;--mat-select-disabled-trigger-text-color: rgba(26, 27, 31, .38);--mat-select-placeholder-text-color: #44474e;--mat-select-enabled-arrow-color: #44474e;--mat-select-disabled-arrow-color: rgba(26, 27, 31, .38);--mat-select-focused-arrow-color: #005cbb;--mat-select-invalid-arrow-color: #ba1a1a;--mat-select-trigger-text-font: Roboto, sans-serif;--mat-select-trigger-text-line-height: 1.5rem;--mat-select-trigger-text-size: 1rem;--mat-select-trigger-text-tracking: .031rem;--mat-select-trigger-text-weight: 400;--mat-select-arrow-transform: translateY(-8px);--mat-select-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #efedf1;--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-dialog-container-color: #fdfbff;--mdc-dialog-subhead-color: #1a1b1f;--mdc-dialog-supporting-text-color: #44474e;--mdc-dialog-subhead-font: Roboto;--mdc-dialog-subhead-line-height: 2rem;--mdc-dialog-subhead-size: 1.5rem;--mdc-dialog-subhead-weight: 400;--mdc-dialog-subhead-tracking: 0rem;--mdc-dialog-supporting-text-font: Roboto, sans-serif;--mdc-dialog-supporting-text-line-height: 1.25rem;--mdc-dialog-supporting-text-size: .875rem;--mdc-dialog-supporting-text-weight: 400;--mdc-dialog-supporting-text-tracking: .016rem;--mdc-dialog-container-shape: 28px;--mat-dialog-container-elevation-shadow: none;--mat-dialog-container-max-width: 560px;--mat-dialog-container-small-max-width: calc(100vw - 32px) ;--mat-dialog-container-min-width: 280px;--mat-dialog-actions-alignment: flex-end;--mat-dialog-actions-padding: 16px 24px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px 0;--mat-dialog-headline-padding: 6px 24px 13px;--mdc-chip-outline-color: #74777f;--mdc-chip-disabled-outline-color: rgba(26, 27, 31, .12);--mdc-chip-focus-outline-color: #44474e;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-chip-elevated-selected-container-color: #dae2f9;--mdc-chip-flat-disabled-selected-container-color: rgba(26, 27, 31, .12);--mdc-chip-focus-state-layer-color: #44474e;--mdc-chip-hover-state-layer-color: #44474e;--mdc-chip-selected-hover-state-layer-color: #131c2b;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #131c2b;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #44474e;--mdc-chip-selected-label-text-color: #131c2b;--mdc-chip-with-icon-icon-color: #44474e;--mdc-chip-with-icon-disabled-icon-color: #1a1b1f;--mdc-chip-with-icon-selected-icon-color: #131c2b;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #1a1b1f;--mdc-chip-with-trailing-icon-trailing-icon-color: #44474e;--mdc-chip-label-text-font: Roboto, sans-serif;--mdc-chip-label-text-line-height: 1.25rem;--mdc-chip-label-text-size: .875rem;--mdc-chip-label-text-tracking: .006rem;--mdc-chip-label-text-weight: 500;--mdc-chip-container-height: 28px;--mdc-chip-container-shape-radius: 8px;--mdc-chip-with-avatar-avatar-size: 24px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 1px;--mdc-chip-with-avatar-disabled-avatar-opacity: .38;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: .38;--mdc-chip-with-icon-disabled-icon-opacity: .38;--mat-chip-trailing-action-state-layer-color: #44474e;--mat-chip-selected-trailing-action-state-layer-color: #131c2b;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #1a1b1f;--mat-chip-selected-trailing-icon-color: #131c2b;--mat-chip-disabled-container-opacity: 1;--mat-chip-trailing-action-opacity: 1;--mat-chip-trailing-action-focus-opacity: 1;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #005cbb;--mdc-switch-selected-handle-color: #ffffff;--mdc-switch-selected-hover-state-layer-color: #005cbb;--mdc-switch-selected-pressed-state-layer-color: #005cbb;--mdc-switch-selected-focus-handle-color: #d7e3ff;--mdc-switch-selected-hover-handle-color: #d7e3ff;--mdc-switch-selected-pressed-handle-color: #d7e3ff;--mdc-switch-selected-focus-track-color: #005cbb;--mdc-switch-selected-hover-track-color: #005cbb;--mdc-switch-selected-pressed-track-color: #005cbb;--mdc-switch-selected-track-color: #005cbb;--mdc-switch-disabled-selected-handle-color: #fdfbff;--mdc-switch-disabled-selected-icon-color: #1a1b1f;--mdc-switch-disabled-selected-track-color: #1a1b1f;--mdc-switch-disabled-unselected-handle-color: #1a1b1f;--mdc-switch-disabled-unselected-icon-color: #e0e2ec;--mdc-switch-disabled-unselected-track-color: #e0e2ec;--mdc-switch-selected-icon-color: #001b3f;--mdc-switch-unselected-focus-handle-color: #44474e;--mdc-switch-unselected-focus-state-layer-color: #1a1b1f;--mdc-switch-unselected-focus-track-color: #e0e2ec;--mdc-switch-unselected-handle-color: #74777f;--mdc-switch-unselected-hover-handle-color: #44474e;--mdc-switch-unselected-hover-state-layer-color: #1a1b1f;--mdc-switch-unselected-hover-track-color: #e0e2ec;--mdc-switch-unselected-icon-color: #e0e2ec;--mdc-switch-unselected-pressed-handle-color: #44474e;--mdc-switch-unselected-pressed-state-layer-color: #1a1b1f;--mdc-switch-unselected-pressed-track-color: #e0e2ec;--mdc-switch-unselected-track-color: #e0e2ec;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-shape: 9999px;--mdc-switch-selected-icon-size: 16px;--mdc-switch-track-height: 32px;--mdc-switch-track-shape: 9999px;--mdc-switch-track-width: 52px;--mdc-switch-unselected-icon-size: 16px;--mdc-switch-state-layer-size: 40px;--mat-switch-track-outline-color: #74777f;--mat-switch-disabled-unselected-track-outline-color: #1a1b1f;--mat-switch-label-text-color: #1a1b1f;--mat-switch-label-text-font: Roboto, sans-serif;--mat-switch-label-text-line-height: 1.25rem;--mat-switch-label-text-size: .875rem;--mat-switch-label-text-tracking: .016rem;--mat-switch-label-text-weight: 400;--mat-switch-disabled-selected-handle-opacity: 1;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 16px;--mat-switch-selected-handle-size: 24px;--mat-switch-pressed-handle-size: 28px;--mat-switch-with-icon-handle-size: 24px;--mat-switch-selected-handle-horizontal-margin: 0 24px;--mat-switch-selected-with-icon-handle-horizontal-margin: 0 24px;--mat-switch-selected-pressed-handle-horizontal-margin: 0 22px;--mat-switch-unselected-handle-horizontal-margin: 0 8px;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0 4px;--mat-switch-unselected-pressed-handle-horizontal-margin: 0 2px;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 0;--mat-switch-visible-track-transition: opacity 75ms;--mat-switch-hidden-track-transition: opacity 75ms;--mat-switch-track-outline-width: 2px;--mat-switch-selected-track-outline-width: 2px;--mat-switch-selected-track-outline-color: transparent;--mat-switch-disabled-unselected-track-outline-width: 2px;--mdc-radio-disabled-selected-icon-color: #1a1b1f;--mdc-radio-disabled-unselected-icon-color: #1a1b1f;--mdc-radio-unselected-hover-icon-color: #1a1b1f;--mdc-radio-unselected-icon-color: #44474e;--mdc-radio-unselected-pressed-icon-color: #1a1b1f;--mdc-radio-selected-focus-icon-color: #005cbb;--mdc-radio-selected-hover-icon-color: #005cbb;--mdc-radio-selected-icon-color: #005cbb;--mdc-radio-selected-pressed-icon-color: #005cbb;--mdc-radio-state-layer-size: 36px;--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mat-radio-ripple-color: #1a1b1f;--mat-radio-checked-ripple-color: #005cbb;--mat-radio-disabled-label-color: rgba(26, 27, 31, .38);--mat-radio-label-text-color: #1a1b1f;--mat-radio-label-text-font: Roboto, sans-serif;--mat-radio-label-text-line-height: 1.25rem;--mat-radio-label-text-size: .875rem;--mat-radio-label-text-tracking: .016rem;--mat-radio-label-text-weight: 400;--mat-radio-touch-target-display: block;--mdc-slider-handle-color: #005cbb;--mdc-slider-focus-handle-color: #005cbb;--mdc-slider-hover-handle-color: #005cbb;--mdc-slider-active-track-color: #005cbb;--mdc-slider-inactive-track-color: #e0e2ec;--mdc-slider-with-tick-marks-inactive-container-color: #44474e;--mdc-slider-with-tick-marks-active-container-color: #ffffff;--mdc-slider-disabled-active-track-color: #1a1b1f;--mdc-slider-disabled-handle-color: #1a1b1f;--mdc-slider-disabled-inactive-track-color: #1a1b1f;--mdc-slider-label-container-color: #005cbb;--mdc-slider-label-label-text-color: #ffffff;--mdc-slider-with-overlap-handle-outline-color: #ffffff;--mdc-slider-with-tick-marks-disabled-container-color: #1a1b1f;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mdc-slider-label-label-text-font: Roboto, sans-serif;--mdc-slider-label-label-text-size: .75rem;--mdc-slider-label-label-text-line-height: 1rem;--mdc-slider-label-label-text-tracking: .031rem;--mdc-slider-label-label-text-weight: 500;--mdc-slider-active-track-height: 4px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 9999px;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .38;--mdc-slider-with-tick-marks-container-shape: 9999px;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .38;--mat-slider-ripple-color: #005cbb;--mat-slider-hover-state-layer-color: rgba(0, 92, 187, .05);--mat-slider-focus-state-layer-color: rgba(0, 92, 187, .2);--mat-slider-value-indicator-width: 28px;--mat-slider-value-indicator-height: 28px;--mat-slider-value-indicator-caret-display: none;--mat-slider-value-indicator-border-radius: 50% 50% 50% 0;--mat-slider-value-indicator-padding: 0;--mat-slider-value-indicator-text-transform: rotate(45deg);--mat-slider-value-indicator-container-transform: translateX(-50%) rotate(-45deg);--mat-slider-value-indicator-opacity: 1;--mat-menu-item-label-text-color: #1a1b1f;--mat-menu-item-icon-color: #44474e;--mat-menu-item-hover-state-layer-color: rgba(26, 27, 31, .08);--mat-menu-item-focus-state-layer-color: rgba(26, 27, 31, .12);--mat-menu-container-color: #efedf1;--mat-menu-divider-color: #e0e2ec;--mat-menu-item-label-text-font: Roboto, sans-serif;--mat-menu-item-label-text-size: .875rem;--mat-menu-item-label-text-tracking: .006rem;--mat-menu-item-label-text-line-height: 1.25rem;--mat-menu-item-label-text-weight: 500;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 8px;--mat-menu-divider-top-spacing: 8px;--mat-menu-item-spacing: 12px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 12px;--mat-menu-item-trailing-spacing: 12px;--mat-menu-item-with-icon-leading-spacing: 12px;--mat-menu-item-with-icon-trailing-spacing: 12px;--mat-menu-base-elevation-level: 2;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #d7e3ff;--mdc-list-list-item-disabled-state-layer-color: #1a1b1f;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #1a1b1f;--mdc-list-list-item-supporting-text-color: #44474e;--mdc-list-list-item-leading-icon-color: #44474e;--mdc-list-list-item-trailing-supporting-text-color: #44474e;--mdc-list-list-item-trailing-icon-color: #44474e;--mdc-list-list-item-selected-trailing-icon-color: #005cbb;--mdc-list-list-item-disabled-label-text-color: #1a1b1f;--mdc-list-list-item-disabled-leading-icon-color: #1a1b1f;--mdc-list-list-item-disabled-trailing-icon-color: #1a1b1f;--mdc-list-list-item-hover-label-text-color: #1a1b1f;--mdc-list-list-item-focus-label-text-color: #1a1b1f;--mdc-list-list-item-hover-state-layer-color: #1a1b1f;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #1a1b1f;--mdc-list-list-item-focus-state-layer-opacity: .12;--mdc-list-list-item-label-text-font: Roboto, sans-serif;--mdc-list-list-item-label-text-line-height: 1.5rem;--mdc-list-list-item-label-text-size: 1rem;--mdc-list-list-item-label-text-tracking: .031rem;--mdc-list-list-item-label-text-weight: 400;--mdc-list-list-item-supporting-text-font: Roboto, sans-serif;--mdc-list-list-item-supporting-text-line-height: 1.25rem;--mdc-list-list-item-supporting-text-size: .875rem;--mdc-list-list-item-supporting-text-tracking: .016rem;--mdc-list-list-item-supporting-text-weight: 400;--mdc-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;--mdc-list-list-item-trailing-supporting-text-line-height: 1rem;--mdc-list-list-item-trailing-supporting-text-size: .688rem;--mdc-list-list-item-trailing-supporting-text-tracking: .031rem;--mdc-list-list-item-trailing-supporting-text-weight: 500;--mdc-list-list-item-one-line-container-height: 44px;--mdc-list-list-item-two-line-container-height: 60px;--mdc-list-list-item-three-line-container-height: 84px;--mdc-list-list-item-container-shape: 0px;--mdc-list-list-item-leading-avatar-shape: 9999px;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-label-text-opacity: .3;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: #dae2f9;--mat-list-list-item-leading-icon-start-space: 12px;--mat-list-list-item-leading-icon-end-space: 12px;--mat-list-active-indicator-shape: 9999px;--mat-paginator-container-text-color: #1a1b1f;--mat-paginator-container-background-color: #fdfbff;--mat-paginator-enabled-icon-color: #44474e;--mat-paginator-disabled-icon-color: rgba(26, 27, 31, .38);--mat-paginator-container-text-font: Roboto, sans-serif;--mat-paginator-container-text-line-height: 1rem;--mat-paginator-container-text-size: .75rem;--mat-paginator-container-text-tracking: .025rem;--mat-paginator-container-text-weight: 400;--mat-paginator-select-trigger-text-size: .75rem;--mat-paginator-container-size: 52px;--mat-paginator-form-field-container-height: 40px;--mat-paginator-form-field-container-vertical-padding: 8px;--mat-paginator-touch-target-display: block;--mdc-secondary-navigation-tab-container-height: 44px;--mdc-tab-indicator-active-indicator-color: #005cbb;--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mat-tab-header-divider-color: #e0e2ec;--mat-tab-header-pagination-icon-color: #1a1b1f;--mat-tab-header-inactive-label-text-color: #1a1b1f;--mat-tab-header-active-label-text-color: #1a1b1f;--mat-tab-header-active-ripple-color: #1a1b1f;--mat-tab-header-inactive-ripple-color: #1a1b1f;--mat-tab-header-inactive-focus-label-text-color: #1a1b1f;--mat-tab-header-inactive-hover-label-text-color: #1a1b1f;--mat-tab-header-active-focus-label-text-color: #1a1b1f;--mat-tab-header-active-hover-label-text-color: #1a1b1f;--mat-tab-header-active-focus-indicator-color: #005cbb;--mat-tab-header-active-hover-indicator-color: #005cbb;--mat-tab-header-label-text-font: Roboto, sans-serif;--mat-tab-header-label-text-size: .875rem;--mat-tab-header-label-text-tracking: .006rem;--mat-tab-header-label-text-line-height: 1.25rem;--mat-tab-header-label-text-weight: 500;--mat-tab-header-divider-height: 1px;--mdc-checkbox-disabled-selected-checkmark-color: #fdfbff;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(26, 27, 31, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(26, 27, 31, .38);--mdc-checkbox-selected-checkmark-color: #ffffff;--mdc-checkbox-selected-focus-icon-color: #005cbb;--mdc-checkbox-selected-hover-icon-color: #005cbb;--mdc-checkbox-selected-icon-color: #005cbb;--mdc-checkbox-unselected-focus-icon-color: #1a1b1f;--mdc-checkbox-unselected-hover-icon-color: #1a1b1f;--mdc-checkbox-unselected-icon-color: #44474e;--mdc-checkbox-selected-focus-state-layer-color: #005cbb;--mdc-checkbox-selected-hover-state-layer-color: #005cbb;--mdc-checkbox-selected-pressed-state-layer-color: #1a1b1f;--mdc-checkbox-unselected-focus-state-layer-color: #1a1b1f;--mdc-checkbox-unselected-hover-state-layer-color: #1a1b1f;--mdc-checkbox-unselected-pressed-state-layer-color: #005cbb;--mdc-checkbox-state-layer-size: 36px;--mat-checkbox-disabled-label-color: rgba(26, 27, 31, .38);--mat-checkbox-label-text-color: #1a1b1f;--mat-checkbox-label-text-font: Roboto, sans-serif;--mat-checkbox-label-text-line-height: 1.25rem;--mat-checkbox-label-text-size: .875rem;--mat-checkbox-label-text-tracking: .016rem;--mat-checkbox-label-text-weight: 400;--mat-checkbox-touch-target-display: block;--mdc-text-button-label-text-color: #005cbb;--mdc-text-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-text-button-label-text-font: Roboto, sans-serif;--mdc-text-button-label-text-size: .875rem;--mdc-text-button-label-text-tracking: .006rem;--mdc-text-button-label-text-weight: 500;--mdc-text-button-container-height: 36px;--mdc-text-button-container-shape: 9999px;--mdc-protected-button-container-color: #fdfbff;--mdc-protected-button-label-text-color: #005cbb;--mdc-protected-button-disabled-container-color: rgba(26, 27, 31, .12);--mdc-protected-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-protected-button-label-text-font: Roboto, sans-serif;--mdc-protected-button-label-text-size: .875rem;--mdc-protected-button-label-text-tracking: .006rem;--mdc-protected-button-label-text-weight: 500;--mdc-protected-button-container-height: 36px;--mdc-protected-button-container-shape: 9999px;--mdc-filled-button-container-color: #005cbb;--mdc-filled-button-label-text-color: #ffffff;--mdc-filled-button-disabled-container-color: rgba(26, 27, 31, .12);--mdc-filled-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-filled-button-label-text-font: Roboto, sans-serif;--mdc-filled-button-label-text-size: .875rem;--mdc-filled-button-label-text-tracking: .006rem;--mdc-filled-button-label-text-weight: 500;--mdc-filled-button-container-height: 36px;--mdc-filled-button-container-shape: 9999px;--mdc-outlined-button-disabled-outline-color: rgba(26, 27, 31, .12);--mdc-outlined-button-disabled-label-text-color: rgba(26, 27, 31, .38);--mdc-outlined-button-label-text-color: #005cbb;--mdc-outlined-button-outline-color: #74777f;--mdc-outlined-button-label-text-font: Roboto, sans-serif;--mdc-outlined-button-label-text-size: .875rem;--mdc-outlined-button-label-text-tracking: .006rem;--mdc-outlined-button-label-text-weight: 500;--mdc-outlined-button-container-height: 36px;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 9999px;--mat-text-button-state-layer-color: #005cbb;--mat-text-button-disabled-state-layer-color: #44474e;--mat-text-button-ripple-color: rgba(0, 92, 187, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-text-button-touch-target-display: block;--mat-text-button-horizontal-padding: 12px;--mat-text-button-with-icon-horizontal-padding: 16px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: -4px;--mat-protected-button-state-layer-color: #005cbb;--mat-protected-button-disabled-state-layer-color: #44474e;--mat-protected-button-ripple-color: rgba(0, 92, 187, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-protected-button-touch-target-display: block;--mat-protected-button-horizontal-padding: 24px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -8px;--mat-filled-button-state-layer-color: #ffffff;--mat-filled-button-disabled-state-layer-color: #44474e;--mat-filled-button-ripple-color: rgba(255, 255, 255, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-filled-button-touch-target-display: block;--mat-filled-button-horizontal-padding: 24px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -8px;--mat-outlined-button-state-layer-color: #005cbb;--mat-outlined-button-disabled-state-layer-color: #44474e;--mat-outlined-button-ripple-color: rgba(0, 92, 187, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mat-outlined-button-touch-target-display: block;--mat-outlined-button-horizontal-padding: 24px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -8px;--mdc-icon-button-icon-color: #44474e;--mdc-icon-button-disabled-icon-color: rgba(26, 27, 31, .38);--mdc-icon-button-state-layer-size: 36px;--mdc-icon-button-icon-size: 24px;--mat-icon-button-state-layer-color: #44474e;--mat-icon-button-disabled-state-layer-color: #44474e;--mat-icon-button-ripple-color: rgba(68, 71, 78, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-touch-target-display: block;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-label-text-font: Roboto, sans-serif;--mdc-extended-fab-label-text-size: .875rem;--mdc-extended-fab-label-text-tracking: .006rem;--mdc-extended-fab-label-text-weight: 500;--mdc-extended-fab-container-height: 56px;--mdc-extended-fab-container-shape: 16px;--mdc-fab-container-color: #d7e3ff;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-shape: 16px;--mdc-fab-small-container-color: #d7e3ff;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-shape: 12px;--mat-fab-foreground-color: #001b3f;--mat-fab-state-layer-color: #001b3f;--mat-fab-ripple-color: rgba(0, 27, 63, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(26, 27, 31, .12);--mat-fab-disabled-state-foreground-color: rgba(26, 27, 31, .38);--mat-fab-touch-target-display: block;--mat-fab-small-foreground-color: #001b3f;--mat-fab-small-state-layer-color: #001b3f;--mat-fab-small-ripple-color: rgba(0, 27, 63, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(26, 27, 31, .12);--mat-fab-small-disabled-state-foreground-color: rgba(26, 27, 31, .38);--mdc-snackbar-container-color: #2f3033;--mdc-snackbar-supporting-text-color: #f2f0f4;--mdc-snackbar-supporting-text-font: Roboto, sans-serif;--mdc-snackbar-supporting-text-line-height: 1.25rem;--mdc-snackbar-supporting-text-size: .875rem;--mdc-snackbar-supporting-text-weight: 400;--mdc-snackbar-container-shape: 4px;--mat-snack-bar-button-color: #abc7ff;--mat-table-background-color: #fdfbff;--mat-table-header-headline-color: #1a1b1f;--mat-table-row-item-label-text-color: #1a1b1f;--mat-table-row-item-outline-color: #c4c6d0;--mat-table-header-headline-font: Roboto, sans-serif;--mat-table-header-headline-line-height: 1.25rem;--mat-table-header-headline-size: .875rem;--mat-table-header-headline-weight: 500;--mat-table-header-headline-tracking: .006rem;--mat-table-row-item-label-text-font: Roboto, sans-serif;--mat-table-row-item-label-text-line-height: 1.25rem;--mat-table-row-item-label-text-size: .875rem;--mat-table-row-item-label-text-weight: 400;--mat-table-row-item-label-text-tracking: .016rem;--mat-table-footer-supporting-text-font: Roboto, sans-serif;--mat-table-footer-supporting-text-line-height: 1.25rem;--mat-table-footer-supporting-text-size: .875rem;--mat-table-footer-supporting-text-weight: 400;--mat-table-footer-supporting-text-tracking: .016rem;--mat-table-header-container-height: 52px;--mat-table-footer-container-height: 48px;--mat-table-row-item-container-height: 48px;--mat-table-row-item-outline-width: 1px;--mdc-circular-progress-active-indicator-color: #005cbb;--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mat-badge-background-color: #ba1a1a;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: rgba(186, 26, 26, .38);--mat-badge-disabled-state-text-color: #ffffff;--mat-badge-text-font: Roboto, sans-serif;--mat-badge-text-size: .688rem;--mat-badge-text-weight: 500;--mat-badge-large-size-text-size: .688rem;--mat-badge-container-shape: 9999px;--mat-badge-container-size: 16px;--mat-badge-small-size-container-size: 6px;--mat-badge-large-size-container-size: 16px;--mat-badge-legacy-container-size: unset;--mat-badge-legacy-small-size-container-size: unset;--mat-badge-legacy-large-size-container-size: unset;--mat-badge-container-offset: -12px 0;--mat-badge-small-size-container-offset: -6px 0;--mat-badge-large-size-container-offset: -12px 0;--mat-badge-container-overlap-offset: -12px;--mat-badge-small-size-container-overlap-offset: -6px;--mat-badge-large-size-container-overlap-offset: -12px;--mat-badge-container-padding: 0 4px;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0 4px;--mat-badge-small-size-text-size: 0;--mat-bottom-sheet-container-text-color: #1a1b1f;--mat-bottom-sheet-container-background-color: #f5f3f7;--mat-bottom-sheet-container-text-font: Roboto, sans-serif;--mat-bottom-sheet-container-text-line-height: 1.5rem;--mat-bottom-sheet-container-text-size: 1rem;--mat-bottom-sheet-container-text-tracking: .031rem;--mat-bottom-sheet-container-text-weight: 400;--mat-bottom-sheet-container-shape: 28px;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #1a1b1f;--mat-standard-button-toggle-state-layer-color: #1a1b1f;--mat-standard-button-toggle-selected-state-background-color: #dae2f9;--mat-standard-button-toggle-selected-state-text-color: #131c2b;--mat-standard-button-toggle-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(26, 27, 31, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(26, 27, 31, .12);--mat-standard-button-toggle-divider-color: #74777f;--mat-standard-button-toggle-label-text-font: Roboto, sans-serif;--mat-standard-button-toggle-label-text-line-height: 1.25rem;--mat-standard-button-toggle-label-text-size: .875rem;--mat-standard-button-toggle-label-text-tracking: .006rem;--mat-standard-button-toggle-label-text-weight: 500;--mat-standard-button-toggle-height: 40px;--mat-standard-button-toggle-shape: 9999px;--mat-standard-button-toggle-background-color: transparent;--mat-standard-button-toggle-disabled-state-background-color: transparent;--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #005cbb;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #005cbb;--mat-datepicker-calendar-date-focus-state-background-color: rgba(26, 27, 31, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(26, 27, 31, .08);--mat-datepicker-toggle-active-state-icon-color: #44474e;--mat-datepicker-calendar-date-in-range-state-background-color: #d7e3ff;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #e0e0ff;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #dae2f9;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #565e71;--mat-datepicker-toggle-icon-color: #44474e;--mat-datepicker-calendar-body-label-text-color: #1a1b1f;--mat-datepicker-calendar-period-button-text-color: #44474e;--mat-datepicker-calendar-period-button-icon-color: #44474e;--mat-datepicker-calendar-navigation-button-icon-color: #44474e;--mat-datepicker-calendar-header-text-color: #44474e;--mat-datepicker-calendar-date-today-outline-color: #005cbb;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-date-text-color: #1a1b1f;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #005cbb;--mat-datepicker-range-input-separator-color: #1a1b1f;--mat-datepicker-range-input-disabled-state-separator-color: rgba(26, 27, 31, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-datepicker-calendar-container-background-color: #e9e8ec;--mat-datepicker-calendar-container-text-color: #1a1b1f;--mat-datepicker-calendar-text-font: Roboto, sans-serif;--mat-datepicker-calendar-text-size: 1rem;--mat-datepicker-calendar-body-label-text-size: .875rem;--mat-datepicker-calendar-body-label-text-weight: 500;--mat-datepicker-calendar-period-button-text-size: .875rem;--mat-datepicker-calendar-period-button-text-weight: 500;--mat-datepicker-calendar-header-text-size: .875rem;--mat-datepicker-calendar-header-text-weight: 500;--mat-datepicker-calendar-container-shape: 16px;--mat-datepicker-calendar-container-touch-shape: 28px;--mat-datepicker-calendar-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-divider-color: transparent;--mat-datepicker-calendar-date-outline-color: transparent;--mat-divider-color: #c4c6d0;--mat-divider-width: 1px;--mat-expansion-container-background-color: #fdfbff;--mat-expansion-container-text-color: #1a1b1f;--mat-expansion-actions-divider-color: #c4c6d0;--mat-expansion-header-hover-state-layer-color: rgba(26, 27, 31, .08);--mat-expansion-header-focus-state-layer-color: rgba(26, 27, 31, .12);--mat-expansion-header-disabled-state-text-color: rgba(26, 27, 31, .38);--mat-expansion-header-text-color: #1a1b1f;--mat-expansion-header-description-color: #44474e;--mat-expansion-header-indicator-color: #44474e;--mat-expansion-header-text-font: Roboto, sans-serif;--mat-expansion-header-text-size: 1rem;--mat-expansion-header-text-weight: 500;--mat-expansion-header-text-line-height: 1.5rem;--mat-expansion-header-text-tracking: .009rem;--mat-expansion-container-text-font: Roboto, sans-serif;--mat-expansion-container-text-line-height: 1.5rem;--mat-expansion-container-text-size: 1rem;--mat-expansion-container-text-tracking: .031rem;--mat-expansion-container-text-weight: 400;--mat-expansion-header-collapsed-state-height: 44px;--mat-expansion-header-expanded-state-height: 60px;--mat-expansion-container-shape: 12px;--mat-expansion-legacy-header-indicator-display: none;--mat-expansion-header-indicator-display: inline-block;--mat-grid-list-tile-header-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;--mat-grid-list-tile-header-secondary-text-size: 400 .875rem / 1.25rem Roboto, sans-serif;--mat-grid-list-tile-footer-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;--mat-grid-list-tile-footer-secondary-text-size: 400 .875rem / 1.25rem Roboto, sans-serif;--mat-icon-color: inherit;--mat-sidenav-container-background-color: #fdfbff;--mat-sidenav-container-text-color: #44474e;--mat-sidenav-content-background-color: #fdfbff;--mat-sidenav-content-text-color: #1a1b1f;--mat-sidenav-scrim-color: rgba(45, 48, 56, .4);--mat-sidenav-container-shape: 16px;--mat-sidenav-container-elevation-shadow: none;--mat-sidenav-container-width: 360px;--mat-sidenav-container-divider-color: transparent;--mat-stepper-header-icon-foreground-color: #fdfbff;--mat-stepper-header-selected-state-icon-background-color: #005cbb;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #005cbb;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #fdfbff;--mat-stepper-line-color: #c4c6d0;--mat-stepper-header-hover-state-layer-color: rgba(47, 48, 51, .08);--mat-stepper-header-focus-state-layer-color: rgba(47, 48, 51, .12);--mat-stepper-header-label-text-color: #44474e;--mat-stepper-header-optional-label-text-color: #44474e;--mat-stepper-header-selected-state-label-text-color: #44474e;--mat-stepper-header-error-state-label-text-color: #ba1a1a;--mat-stepper-header-icon-background-color: #44474e;--mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;--mat-stepper-container-text-font: Roboto, sans-serif;--mat-stepper-header-label-text-font: Roboto, sans-serif;--mat-stepper-header-label-text-size: .875rem;--mat-stepper-header-label-text-weight: 500;--mat-stepper-header-error-state-label-text-size: .875rem;--mat-stepper-header-selected-state-label-text-size: .875rem;--mat-stepper-header-selected-state-label-text-weight: 500;--mat-stepper-header-height: 68px;--mat-stepper-header-focus-state-layer-shape: 12px;--mat-stepper-header-hover-state-layer-shape: 12px;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #1a1b1f;--mat-toolbar-container-background-color: #fdfbff;--mat-toolbar-container-text-color: #1a1b1f;--mat-toolbar-title-text-font: Roboto;--mat-toolbar-title-text-line-height: 1.75rem;--mat-toolbar-title-text-size: 1.375rem;--mat-toolbar-title-text-tracking: 0rem;--mat-toolbar-title-text-weight: 400;--mat-toolbar-standard-height: 60px;--mat-toolbar-mobile-height: 52px;--mat-tree-container-background-color: #fdfbff;--mat-tree-node-text-color: #1a1b1f;--mat-tree-node-text-font: Roboto, sans-serif;--mat-tree-node-text-size: 1rem;--mat-tree-node-text-weight: 400;--mat-tree-node-min-height: 44px;font-family:Roboto,Helvetica Neue,sans-serif}.mat-theme-loaded-marker{display:none}.survey-container-main p{margin:0}.survey-theme-azure-blue-light .mat-display-large,.survey-theme-azure-blue-light .mat-typography .mat-display-large,.survey-theme-azure-blue-light .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-display-medium,.survey-theme-azure-blue-light .mat-typography .mat-display-medium,.survey-theme-azure-blue-light .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-display-small,.survey-theme-azure-blue-light .mat-typography .mat-display-small,.survey-theme-azure-blue-light .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-headline-large,.survey-theme-azure-blue-light .mat-typography .mat-headline-large,.survey-theme-azure-blue-light .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-headline-medium,.survey-theme-azure-blue-light .mat-typography .mat-headline-medium,.survey-theme-azure-blue-light .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-headline-small,.survey-theme-azure-blue-light .mat-typography .mat-headline-small,.survey-theme-azure-blue-light .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-light .mat-title-large,.survey-theme-azure-blue-light .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-azure-blue-light .mat-title-medium,.survey-theme-azure-blue-light .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-azure-blue-light .mat-title-small,.survey-theme-azure-blue-light .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-light .mat-body-large,.survey-theme-azure-blue-light .mat-typography .mat-body-large,.survey-theme-azure-blue-light .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-light .mat-body-large p,.survey-theme-azure-blue-light .mat-typography .mat-body-large p,.survey-theme-azure-blue-light .mat-typography p{margin:0 0 .75em}.survey-theme-azure-blue-light .mat-body-medium,.survey-theme-azure-blue-light .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-azure-blue-light .mat-body-small,.survey-theme-azure-blue-light .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-azure-blue-light .mat-label-large,.survey-theme-azure-blue-light .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-light .mat-label-medium,.survey-theme-azure-blue-light .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-light .mat-label-small,.survey-theme-azure-blue-light .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-light.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-azure-blue-light ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-azure-blue-light.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-azure-blue-light.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#e0e0ff}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#00006e}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#e0e0ff}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#00006e}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#dae2f9;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-azure-blue-light.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-azure-blue-light.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-azure-blue-dark{--mat-app-background-color: #1a1b1f;--mat-app-text-color: #e3e2e6;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(227, 226, 230, .1);--mat-option-selected-state-label-text-color: #dae2f9;--mat-option-label-text-color: #e3e2e6;--mat-option-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-option-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-option-selected-state-layer-color: #3e4759;--mat-optgroup-label-text-color: #c4c6d0;--mat-full-pseudo-checkbox-selected-icon-color: #abc7ff;--mat-full-pseudo-checkbox-selected-checkmark-color: #002f65;--mat-full-pseudo-checkbox-unselected-icon-color: #c4c6d0;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #1a1b1f;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(227, 226, 230, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(227, 226, 230, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #abc7ff;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(227, 226, 230, .38);--mdc-elevated-card-container-color: #1a1b1f;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #1a1b1f;--mdc-outlined-card-outline-color: #44474e;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #e3e2e6;--mdc-linear-progress-active-indicator-color: #abc7ff;--mdc-linear-progress-track-color: #44474e;--mdc-plain-tooltip-container-color: #e3e2e6;--mdc-plain-tooltip-supporting-text-color: #2f3033;--mdc-filled-text-field-caret-color: #abc7ff;--mdc-filled-text-field-focus-active-indicator-color: #abc7ff;--mdc-filled-text-field-focus-label-text-color: #abc7ff;--mdc-filled-text-field-container-color: #44474e;--mdc-filled-text-field-disabled-container-color: rgba(227, 226, 230, .04);--mdc-filled-text-field-label-text-color: #c4c6d0;--mdc-filled-text-field-hover-label-text-color: #c4c6d0;--mdc-filled-text-field-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-filled-text-field-input-text-color: #e3e2e6;--mdc-filled-text-field-disabled-input-text-color: rgba(227, 226, 230, .38);--mdc-filled-text-field-input-text-placeholder-color: #c4c6d0;--mdc-filled-text-field-error-hover-label-text-color: #ffdad6;--mdc-filled-text-field-error-focus-label-text-color: #ffb4ab;--mdc-filled-text-field-error-label-text-color: #ffb4ab;--mdc-filled-text-field-active-indicator-color: #c4c6d0;--mdc-filled-text-field-disabled-active-indicator-color: rgba(227, 226, 230, .38);--mdc-filled-text-field-hover-active-indicator-color: #e3e2e6;--mdc-filled-text-field-error-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-focus-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-hover-active-indicator-color: #ffdad6;--mdc-outlined-text-field-caret-color: #abc7ff;--mdc-outlined-text-field-focus-outline-color: #abc7ff;--mdc-outlined-text-field-focus-label-text-color: #abc7ff;--mdc-outlined-text-field-label-text-color: #c4c6d0;--mdc-outlined-text-field-hover-label-text-color: #e3e2e6;--mdc-outlined-text-field-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-outlined-text-field-input-text-color: #e3e2e6;--mdc-outlined-text-field-disabled-input-text-color: rgba(227, 226, 230, .38);--mdc-outlined-text-field-input-text-placeholder-color: #c4c6d0;--mdc-outlined-text-field-error-focus-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-hover-label-text-color: #ffdad6;--mdc-outlined-text-field-outline-color: #8e9099;--mdc-outlined-text-field-disabled-outline-color: rgba(227, 226, 230, .12);--mdc-outlined-text-field-hover-outline-color: #e3e2e6;--mdc-outlined-text-field-error-focus-outline-color: #ffb4ab;--mdc-outlined-text-field-error-hover-outline-color: #ffdad6;--mdc-outlined-text-field-error-outline-color: #ffb4ab;--mat-form-field-focus-select-arrow-color: #abc7ff;--mat-form-field-disabled-input-text-placeholder-color: rgba(227, 226, 230, .38);--mat-form-field-state-layer-color: #e3e2e6;--mat-form-field-error-text-color: #ffb4ab;--mat-form-field-select-option-text-color: #1a1b1f;--mat-form-field-select-disabled-option-text-color: rgba(26, 27, 31, .38);--mat-form-field-leading-icon-color: #c4c6d0;--mat-form-field-disabled-leading-icon-color: rgba(227, 226, 230, .38);--mat-form-field-trailing-icon-color: #c4c6d0;--mat-form-field-disabled-trailing-icon-color: rgba(227, 226, 230, .38);--mat-form-field-error-focus-trailing-icon-color: #ffb4ab;--mat-form-field-error-hover-trailing-icon-color: #ffdad6;--mat-form-field-error-trailing-icon-color: #ffb4ab;--mat-form-field-enabled-select-arrow-color: #c4c6d0;--mat-form-field-disabled-select-arrow-color: rgba(227, 226, 230, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #1e1f23;--mat-select-enabled-trigger-text-color: #e3e2e6;--mat-select-disabled-trigger-text-color: rgba(227, 226, 230, .38);--mat-select-placeholder-text-color: #c4c6d0;--mat-select-enabled-arrow-color: #c4c6d0;--mat-select-disabled-arrow-color: rgba(227, 226, 230, .38);--mat-select-focused-arrow-color: #abc7ff;--mat-select-invalid-arrow-color: #ffb4ab;--mat-autocomplete-background-color: #1e1f23;--mdc-dialog-container-color: #1a1b1f;--mdc-dialog-subhead-color: #e3e2e6;--mdc-dialog-supporting-text-color: #c4c6d0;--mdc-chip-outline-color: #8e9099;--mdc-chip-disabled-outline-color: rgba(227, 226, 230, .12);--mdc-chip-focus-outline-color: #c4c6d0;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-chip-elevated-selected-container-color: #3e4759;--mdc-chip-flat-disabled-selected-container-color: rgba(227, 226, 230, .12);--mdc-chip-focus-state-layer-color: #c4c6d0;--mdc-chip-hover-state-layer-color: #c4c6d0;--mdc-chip-selected-hover-state-layer-color: #dae2f9;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #dae2f9;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #c4c6d0;--mdc-chip-selected-label-text-color: #dae2f9;--mdc-chip-with-icon-icon-color: #c4c6d0;--mdc-chip-with-icon-disabled-icon-color: #e3e2e6;--mdc-chip-with-icon-selected-icon-color: #dae2f9;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #e3e2e6;--mdc-chip-with-trailing-icon-trailing-icon-color: #c4c6d0;--mat-chip-trailing-action-state-layer-color: #c4c6d0;--mat-chip-selected-trailing-action-state-layer-color: #dae2f9;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #e3e2e6;--mat-chip-selected-trailing-icon-color: #dae2f9;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #abc7ff;--mdc-switch-selected-handle-color: #002f65;--mdc-switch-selected-hover-state-layer-color: #abc7ff;--mdc-switch-selected-pressed-state-layer-color: #abc7ff;--mdc-switch-selected-focus-handle-color: #00458f;--mdc-switch-selected-hover-handle-color: #00458f;--mdc-switch-selected-pressed-handle-color: #00458f;--mdc-switch-selected-focus-track-color: #abc7ff;--mdc-switch-selected-hover-track-color: #abc7ff;--mdc-switch-selected-pressed-track-color: #abc7ff;--mdc-switch-selected-track-color: #abc7ff;--mdc-switch-disabled-selected-handle-color: #1a1b1f;--mdc-switch-disabled-selected-icon-color: #e3e2e6;--mdc-switch-disabled-selected-track-color: #e3e2e6;--mdc-switch-disabled-unselected-handle-color: #e3e2e6;--mdc-switch-disabled-unselected-icon-color: #44474e;--mdc-switch-disabled-unselected-track-color: #44474e;--mdc-switch-selected-icon-color: #d7e3ff;--mdc-switch-unselected-focus-handle-color: #c4c6d0;--mdc-switch-unselected-focus-state-layer-color: #e3e2e6;--mdc-switch-unselected-focus-track-color: #44474e;--mdc-switch-unselected-handle-color: #8e9099;--mdc-switch-unselected-hover-handle-color: #c4c6d0;--mdc-switch-unselected-hover-state-layer-color: #e3e2e6;--mdc-switch-unselected-hover-track-color: #44474e;--mdc-switch-unselected-icon-color: #44474e;--mdc-switch-unselected-pressed-handle-color: #c4c6d0;--mdc-switch-unselected-pressed-state-layer-color: #e3e2e6;--mdc-switch-unselected-pressed-track-color: #44474e;--mdc-switch-unselected-track-color: #44474e;--mat-switch-track-outline-color: #8e9099;--mat-switch-disabled-unselected-track-outline-color: #e3e2e6;--mat-switch-label-text-color: #e3e2e6;--mdc-radio-disabled-selected-icon-color: #e3e2e6;--mdc-radio-disabled-unselected-icon-color: #e3e2e6;--mdc-radio-unselected-hover-icon-color: #e3e2e6;--mdc-radio-unselected-icon-color: #c4c6d0;--mdc-radio-unselected-pressed-icon-color: #e3e2e6;--mdc-radio-selected-focus-icon-color: #abc7ff;--mdc-radio-selected-hover-icon-color: #abc7ff;--mdc-radio-selected-icon-color: #abc7ff;--mdc-radio-selected-pressed-icon-color: #abc7ff;--mat-radio-ripple-color: #e3e2e6;--mat-radio-checked-ripple-color: #abc7ff;--mat-radio-disabled-label-color: rgba(227, 226, 230, .38);--mat-radio-label-text-color: #e3e2e6;--mdc-slider-handle-color: #abc7ff;--mdc-slider-focus-handle-color: #abc7ff;--mdc-slider-hover-handle-color: #abc7ff;--mdc-slider-active-track-color: #abc7ff;--mdc-slider-inactive-track-color: #44474e;--mdc-slider-with-tick-marks-inactive-container-color: #c4c6d0;--mdc-slider-with-tick-marks-active-container-color: #002f65;--mdc-slider-disabled-active-track-color: #e3e2e6;--mdc-slider-disabled-handle-color: #e3e2e6;--mdc-slider-disabled-inactive-track-color: #e3e2e6;--mdc-slider-label-container-color: #abc7ff;--mdc-slider-label-label-text-color: #002f65;--mdc-slider-with-overlap-handle-outline-color: #002f65;--mdc-slider-with-tick-marks-disabled-container-color: #e3e2e6;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #abc7ff;--mat-slider-hover-state-layer-color: rgba(171, 199, 255, .05);--mat-slider-focus-state-layer-color: rgba(171, 199, 255, .2);--mat-menu-item-label-text-color: #e3e2e6;--mat-menu-item-icon-color: #c4c6d0;--mat-menu-item-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-menu-item-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-menu-container-color: #1e1f23;--mat-menu-divider-color: #44474e;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #00458f;--mdc-list-list-item-disabled-state-layer-color: #e3e2e6;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #e3e2e6;--mdc-list-list-item-supporting-text-color: #c4c6d0;--mdc-list-list-item-leading-icon-color: #c4c6d0;--mdc-list-list-item-trailing-supporting-text-color: #c4c6d0;--mdc-list-list-item-trailing-icon-color: #c4c6d0;--mdc-list-list-item-selected-trailing-icon-color: #abc7ff;--mdc-list-list-item-disabled-label-text-color: #e3e2e6;--mdc-list-list-item-disabled-leading-icon-color: #e3e2e6;--mdc-list-list-item-disabled-trailing-icon-color: #e3e2e6;--mdc-list-list-item-hover-label-text-color: #e3e2e6;--mdc-list-list-item-focus-label-text-color: #e3e2e6;--mdc-list-list-item-hover-state-layer-color: #e3e2e6;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #e3e2e6;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #3e4759;--mat-paginator-container-text-color: #e3e2e6;--mat-paginator-container-background-color: #1a1b1f;--mat-paginator-enabled-icon-color: #c4c6d0;--mat-paginator-disabled-icon-color: rgba(227, 226, 230, .38);--mdc-tab-indicator-active-indicator-color: #abc7ff;--mat-tab-header-divider-color: #44474e;--mat-tab-header-pagination-icon-color: #e3e2e6;--mat-tab-header-inactive-label-text-color: #e3e2e6;--mat-tab-header-active-label-text-color: #e3e2e6;--mat-tab-header-active-ripple-color: #e3e2e6;--mat-tab-header-inactive-ripple-color: #e3e2e6;--mat-tab-header-inactive-focus-label-text-color: #e3e2e6;--mat-tab-header-inactive-hover-label-text-color: #e3e2e6;--mat-tab-header-active-focus-label-text-color: #e3e2e6;--mat-tab-header-active-hover-label-text-color: #e3e2e6;--mat-tab-header-active-focus-indicator-color: #abc7ff;--mat-tab-header-active-hover-indicator-color: #abc7ff;--mdc-checkbox-disabled-selected-checkmark-color: #1a1b1f;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(227, 226, 230, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(227, 226, 230, .38);--mdc-checkbox-selected-checkmark-color: #002f65;--mdc-checkbox-selected-focus-icon-color: #abc7ff;--mdc-checkbox-selected-hover-icon-color: #abc7ff;--mdc-checkbox-selected-icon-color: #abc7ff;--mdc-checkbox-unselected-focus-icon-color: #e3e2e6;--mdc-checkbox-unselected-hover-icon-color: #e3e2e6;--mdc-checkbox-unselected-icon-color: #c4c6d0;--mdc-checkbox-selected-focus-state-layer-color: #abc7ff;--mdc-checkbox-selected-hover-state-layer-color: #abc7ff;--mdc-checkbox-selected-pressed-state-layer-color: #e3e2e6;--mdc-checkbox-unselected-focus-state-layer-color: #e3e2e6;--mdc-checkbox-unselected-hover-state-layer-color: #e3e2e6;--mdc-checkbox-unselected-pressed-state-layer-color: #abc7ff;--mat-checkbox-disabled-label-color: rgba(227, 226, 230, .38);--mat-checkbox-label-text-color: #e3e2e6;--mdc-text-button-label-text-color: #abc7ff;--mdc-text-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-protected-button-container-color: #1a1b1f;--mdc-protected-button-label-text-color: #abc7ff;--mdc-protected-button-disabled-container-color: rgba(227, 226, 230, .12);--mdc-protected-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #abc7ff;--mdc-filled-button-label-text-color: #002f65;--mdc-filled-button-disabled-container-color: rgba(227, 226, 230, .12);--mdc-filled-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-outlined-button-disabled-outline-color: rgba(227, 226, 230, .12);--mdc-outlined-button-disabled-label-text-color: rgba(227, 226, 230, .38);--mdc-outlined-button-label-text-color: #abc7ff;--mdc-outlined-button-outline-color: #8e9099;--mat-text-button-state-layer-color: #abc7ff;--mat-text-button-disabled-state-layer-color: #c4c6d0;--mat-text-button-ripple-color: rgba(171, 199, 255, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #abc7ff;--mat-protected-button-disabled-state-layer-color: #c4c6d0;--mat-protected-button-ripple-color: rgba(171, 199, 255, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #002f65;--mat-filled-button-disabled-state-layer-color: #c4c6d0;--mat-filled-button-ripple-color: rgba(0, 47, 101, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #abc7ff;--mat-outlined-button-disabled-state-layer-color: #c4c6d0;--mat-outlined-button-ripple-color: rgba(171, 199, 255, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #c4c6d0;--mdc-icon-button-disabled-icon-color: rgba(227, 226, 230, .38);--mat-icon-button-state-layer-color: #c4c6d0;--mat-icon-button-disabled-state-layer-color: #c4c6d0;--mat-icon-button-ripple-color: rgba(196, 198, 208, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #00458f;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #00458f;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #d7e3ff;--mat-fab-state-layer-color: #d7e3ff;--mat-fab-ripple-color: rgba(215, 227, 255, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(227, 226, 230, .12);--mat-fab-disabled-state-foreground-color: rgba(227, 226, 230, .38);--mat-fab-small-foreground-color: #d7e3ff;--mat-fab-small-state-layer-color: #d7e3ff;--mat-fab-small-ripple-color: rgba(215, 227, 255, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(227, 226, 230, .12);--mat-fab-small-disabled-state-foreground-color: rgba(227, 226, 230, .38);--mdc-snackbar-container-color: #e3e2e6;--mdc-snackbar-supporting-text-color: #2f3033;--mat-snack-bar-button-color: #005cbb;--mat-table-background-color: #1a1b1f;--mat-table-header-headline-color: #e3e2e6;--mat-table-row-item-label-text-color: #e3e2e6;--mat-table-row-item-outline-color: #44474e;--mdc-circular-progress-active-indicator-color: #abc7ff;--mat-badge-background-color: #ffb4ab;--mat-badge-text-color: #690005;--mat-badge-disabled-state-background-color: rgba(255, 180, 171, .38);--mat-badge-disabled-state-text-color: #690005;--mat-bottom-sheet-container-text-color: #e3e2e6;--mat-bottom-sheet-container-background-color: #1a1b1f;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #e3e2e6;--mat-standard-button-toggle-state-layer-color: #e3e2e6;--mat-standard-button-toggle-selected-state-background-color: #3e4759;--mat-standard-button-toggle-selected-state-text-color: #dae2f9;--mat-standard-button-toggle-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(227, 226, 230, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(227, 226, 230, .12);--mat-standard-button-toggle-divider-color: #8e9099;--mat-datepicker-calendar-date-selected-state-text-color: #002f65;--mat-datepicker-calendar-date-selected-state-background-color: #abc7ff;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #abc7ff;--mat-datepicker-calendar-date-focus-state-background-color: rgba(227, 226, 230, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(227, 226, 230, .08);--mat-datepicker-toggle-active-state-icon-color: #c4c6d0;--mat-datepicker-calendar-date-in-range-state-background-color: #00458f;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #0000ef;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #3e4759;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #bec6dc;--mat-datepicker-toggle-icon-color: #c4c6d0;--mat-datepicker-calendar-body-label-text-color: #e3e2e6;--mat-datepicker-calendar-period-button-text-color: #c4c6d0;--mat-datepicker-calendar-period-button-icon-color: #c4c6d0;--mat-datepicker-calendar-navigation-button-icon-color: #c4c6d0;--mat-datepicker-calendar-header-text-color: #c4c6d0;--mat-datepicker-calendar-date-today-outline-color: #abc7ff;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-date-text-color: #e3e2e6;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #abc7ff;--mat-datepicker-range-input-separator-color: #e3e2e6;--mat-datepicker-range-input-disabled-state-separator-color: rgba(227, 226, 230, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-datepicker-calendar-container-background-color: #292a2d;--mat-datepicker-calendar-container-text-color: #e3e2e6;--mat-divider-color: #44474e;--mat-expansion-container-background-color: #1a1b1f;--mat-expansion-container-text-color: #e3e2e6;--mat-expansion-actions-divider-color: #44474e;--mat-expansion-header-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-expansion-header-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-expansion-header-disabled-state-text-color: rgba(227, 226, 230, .38);--mat-expansion-header-text-color: #e3e2e6;--mat-expansion-header-description-color: #c4c6d0;--mat-expansion-header-indicator-color: #c4c6d0;--mat-sidenav-container-background-color: #1a1b1f;--mat-sidenav-container-text-color: #c4c6d0;--mat-sidenav-content-background-color: #1a1b1f;--mat-sidenav-content-text-color: #e3e2e6;--mat-sidenav-scrim-color: rgba(45, 48, 56, .4);--mat-stepper-header-icon-foreground-color: #1a1b1f;--mat-stepper-header-selected-state-icon-background-color: #abc7ff;--mat-stepper-header-selected-state-icon-foreground-color: #002f65;--mat-stepper-header-edit-state-icon-background-color: #abc7ff;--mat-stepper-header-edit-state-icon-foreground-color: #002f65;--mat-stepper-container-color: #1a1b1f;--mat-stepper-line-color: #44474e;--mat-stepper-header-hover-state-layer-color: rgba(227, 226, 230, .08);--mat-stepper-header-focus-state-layer-color: rgba(227, 226, 230, .12);--mat-stepper-header-label-text-color: #c4c6d0;--mat-stepper-header-optional-label-text-color: #c4c6d0;--mat-stepper-header-selected-state-label-text-color: #c4c6d0;--mat-stepper-header-error-state-label-text-color: #ffb4ab;--mat-stepper-header-icon-background-color: #c4c6d0;--mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;--mat-sort-arrow-color: #e3e2e6;--mat-toolbar-container-background-color: #1a1b1f;--mat-toolbar-container-text-color: #e3e2e6;--mat-tree-container-background-color: #1a1b1f;--mat-tree-node-text-color: #e3e2e6}.survey-theme-azure-blue-dark .mat-display-large,.survey-theme-azure-blue-dark .mat-typography .mat-display-large,.survey-theme-azure-blue-dark .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-display-medium,.survey-theme-azure-blue-dark .mat-typography .mat-display-medium,.survey-theme-azure-blue-dark .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-display-small,.survey-theme-azure-blue-dark .mat-typography .mat-display-small,.survey-theme-azure-blue-dark .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-headline-large,.survey-theme-azure-blue-dark .mat-typography .mat-headline-large,.survey-theme-azure-blue-dark .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-headline-medium,.survey-theme-azure-blue-dark .mat-typography .mat-headline-medium,.survey-theme-azure-blue-dark .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-headline-small,.survey-theme-azure-blue-dark .mat-typography .mat-headline-small,.survey-theme-azure-blue-dark .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-azure-blue-dark .mat-title-large,.survey-theme-azure-blue-dark .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-azure-blue-dark .mat-title-medium,.survey-theme-azure-blue-dark .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-azure-blue-dark .mat-title-small,.survey-theme-azure-blue-dark .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-dark .mat-body-large,.survey-theme-azure-blue-dark .mat-typography .mat-body-large,.survey-theme-azure-blue-dark .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-dark .mat-body-large p,.survey-theme-azure-blue-dark .mat-typography .mat-body-large p,.survey-theme-azure-blue-dark .mat-typography p{margin:0 0 .75em}.survey-theme-azure-blue-dark .mat-body-medium,.survey-theme-azure-blue-dark .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-azure-blue-dark .mat-body-small,.survey-theme-azure-blue-dark .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-azure-blue-dark .mat-label-large,.survey-theme-azure-blue-dark .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-azure-blue-dark .mat-label-medium,.survey-theme-azure-blue-dark .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-dark .mat-label-small,.survey-theme-azure-blue-dark .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-azure-blue-dark.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-azure-blue-dark ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-azure-blue-dark.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-azure-blue-dark.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#0000ef}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#e0e0ff}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#0000ef}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#e0e0ff}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#3e4759;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-azure-blue-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-azure-blue-dark.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-cyan-orange-light{--mat-app-background-color: #fafdfc;--mat-app-text-color: #191c1c;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(25, 28, 28, .1);--mat-option-selected-state-label-text-color: #051f1f;--mat-option-label-text-color: #191c1c;--mat-option-hover-state-layer-color: rgba(25, 28, 28, .08);--mat-option-focus-state-layer-color: rgba(25, 28, 28, .12);--mat-option-selected-state-layer-color: #cce8e7;--mat-optgroup-label-text-color: #3f4948;--mat-full-pseudo-checkbox-selected-icon-color: #006a6a;--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;--mat-full-pseudo-checkbox-unselected-icon-color: #3f4948;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafdfc;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(25, 28, 28, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(25, 28, 28, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #006a6a;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(25, 28, 28, .38);--mdc-elevated-card-container-color: #fafdfc;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #fafdfc;--mdc-outlined-card-outline-color: #bec9c8;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #191c1c;--mdc-linear-progress-active-indicator-color: #006a6a;--mdc-linear-progress-track-color: #dae5e4;--mdc-plain-tooltip-container-color: #2d3131;--mdc-plain-tooltip-supporting-text-color: #eff1f0;--mdc-filled-text-field-caret-color: #006a6a;--mdc-filled-text-field-focus-active-indicator-color: #006a6a;--mdc-filled-text-field-focus-label-text-color: #006a6a;--mdc-filled-text-field-container-color: #dae5e4;--mdc-filled-text-field-disabled-container-color: rgba(25, 28, 28, .04);--mdc-filled-text-field-label-text-color: #3f4948;--mdc-filled-text-field-hover-label-text-color: #3f4948;--mdc-filled-text-field-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-filled-text-field-input-text-color: #191c1c;--mdc-filled-text-field-disabled-input-text-color: rgba(25, 28, 28, .38);--mdc-filled-text-field-input-text-placeholder-color: #3f4948;--mdc-filled-text-field-error-hover-label-text-color: #410002;--mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;--mdc-filled-text-field-error-label-text-color: #ba1a1a;--mdc-filled-text-field-active-indicator-color: #3f4948;--mdc-filled-text-field-disabled-active-indicator-color: rgba(25, 28, 28, .38);--mdc-filled-text-field-hover-active-indicator-color: #191c1c;--mdc-filled-text-field-error-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-hover-active-indicator-color: #410002;--mdc-outlined-text-field-caret-color: #006a6a;--mdc-outlined-text-field-focus-outline-color: #006a6a;--mdc-outlined-text-field-focus-label-text-color: #006a6a;--mdc-outlined-text-field-label-text-color: #3f4948;--mdc-outlined-text-field-hover-label-text-color: #191c1c;--mdc-outlined-text-field-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-outlined-text-field-input-text-color: #191c1c;--mdc-outlined-text-field-disabled-input-text-color: rgba(25, 28, 28, .38);--mdc-outlined-text-field-input-text-placeholder-color: #3f4948;--mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-hover-label-text-color: #410002;--mdc-outlined-text-field-outline-color: #6f7979;--mdc-outlined-text-field-disabled-outline-color: rgba(25, 28, 28, .12);--mdc-outlined-text-field-hover-outline-color: #191c1c;--mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;--mdc-outlined-text-field-error-hover-outline-color: #410002;--mdc-outlined-text-field-error-outline-color: #ba1a1a;--mat-form-field-focus-select-arrow-color: #006a6a;--mat-form-field-disabled-input-text-placeholder-color: rgba(25, 28, 28, .38);--mat-form-field-state-layer-color: #191c1c;--mat-form-field-error-text-color: #ba1a1a;--mat-form-field-select-option-text-color: #191c1c;--mat-form-field-select-disabled-option-text-color: rgba(25, 28, 28, .38);--mat-form-field-leading-icon-color: #3f4948;--mat-form-field-disabled-leading-icon-color: rgba(25, 28, 28, .38);--mat-form-field-trailing-icon-color: #3f4948;--mat-form-field-disabled-trailing-icon-color: rgba(25, 28, 28, .38);--mat-form-field-error-focus-trailing-icon-color: #ba1a1a;--mat-form-field-error-hover-trailing-icon-color: #410002;--mat-form-field-error-trailing-icon-color: #ba1a1a;--mat-form-field-enabled-select-arrow-color: #3f4948;--mat-form-field-disabled-select-arrow-color: rgba(25, 28, 28, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #eceeed;--mat-select-enabled-trigger-text-color: #191c1c;--mat-select-disabled-trigger-text-color: rgba(25, 28, 28, .38);--mat-select-placeholder-text-color: #3f4948;--mat-select-enabled-arrow-color: #3f4948;--mat-select-disabled-arrow-color: rgba(25, 28, 28, .38);--mat-select-focused-arrow-color: #006a6a;--mat-select-invalid-arrow-color: #ba1a1a;--mat-autocomplete-background-color: #eceeed;--mdc-dialog-container-color: #fafdfc;--mdc-dialog-subhead-color: #191c1c;--mdc-dialog-supporting-text-color: #3f4948;--mdc-chip-outline-color: #6f7979;--mdc-chip-disabled-outline-color: rgba(25, 28, 28, .12);--mdc-chip-focus-outline-color: #3f4948;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-chip-elevated-selected-container-color: #cce8e7;--mdc-chip-flat-disabled-selected-container-color: rgba(25, 28, 28, .12);--mdc-chip-focus-state-layer-color: #3f4948;--mdc-chip-hover-state-layer-color: #3f4948;--mdc-chip-selected-hover-state-layer-color: #051f1f;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #051f1f;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #3f4948;--mdc-chip-selected-label-text-color: #051f1f;--mdc-chip-with-icon-icon-color: #3f4948;--mdc-chip-with-icon-disabled-icon-color: #191c1c;--mdc-chip-with-icon-selected-icon-color: #051f1f;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #191c1c;--mdc-chip-with-trailing-icon-trailing-icon-color: #3f4948;--mat-chip-trailing-action-state-layer-color: #3f4948;--mat-chip-selected-trailing-action-state-layer-color: #051f1f;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #191c1c;--mat-chip-selected-trailing-icon-color: #051f1f;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #006a6a;--mdc-switch-selected-handle-color: #ffffff;--mdc-switch-selected-hover-state-layer-color: #006a6a;--mdc-switch-selected-pressed-state-layer-color: #006a6a;--mdc-switch-selected-focus-handle-color: #00fbfb;--mdc-switch-selected-hover-handle-color: #00fbfb;--mdc-switch-selected-pressed-handle-color: #00fbfb;--mdc-switch-selected-focus-track-color: #006a6a;--mdc-switch-selected-hover-track-color: #006a6a;--mdc-switch-selected-pressed-track-color: #006a6a;--mdc-switch-selected-track-color: #006a6a;--mdc-switch-disabled-selected-handle-color: #fafdfc;--mdc-switch-disabled-selected-icon-color: #191c1c;--mdc-switch-disabled-selected-track-color: #191c1c;--mdc-switch-disabled-unselected-handle-color: #191c1c;--mdc-switch-disabled-unselected-icon-color: #dae5e4;--mdc-switch-disabled-unselected-track-color: #dae5e4;--mdc-switch-selected-icon-color: #002020;--mdc-switch-unselected-focus-handle-color: #3f4948;--mdc-switch-unselected-focus-state-layer-color: #191c1c;--mdc-switch-unselected-focus-track-color: #dae5e4;--mdc-switch-unselected-handle-color: #6f7979;--mdc-switch-unselected-hover-handle-color: #3f4948;--mdc-switch-unselected-hover-state-layer-color: #191c1c;--mdc-switch-unselected-hover-track-color: #dae5e4;--mdc-switch-unselected-icon-color: #dae5e4;--mdc-switch-unselected-pressed-handle-color: #3f4948;--mdc-switch-unselected-pressed-state-layer-color: #191c1c;--mdc-switch-unselected-pressed-track-color: #dae5e4;--mdc-switch-unselected-track-color: #dae5e4;--mat-switch-track-outline-color: #6f7979;--mat-switch-disabled-unselected-track-outline-color: #191c1c;--mat-switch-label-text-color: #191c1c;--mdc-radio-disabled-selected-icon-color: #191c1c;--mdc-radio-disabled-unselected-icon-color: #191c1c;--mdc-radio-unselected-hover-icon-color: #191c1c;--mdc-radio-unselected-icon-color: #3f4948;--mdc-radio-unselected-pressed-icon-color: #191c1c;--mdc-radio-selected-focus-icon-color: #006a6a;--mdc-radio-selected-hover-icon-color: #006a6a;--mdc-radio-selected-icon-color: #006a6a;--mdc-radio-selected-pressed-icon-color: #006a6a;--mat-radio-ripple-color: #191c1c;--mat-radio-checked-ripple-color: #006a6a;--mat-radio-disabled-label-color: rgba(25, 28, 28, .38);--mat-radio-label-text-color: #191c1c;--mdc-slider-handle-color: #006a6a;--mdc-slider-focus-handle-color: #006a6a;--mdc-slider-hover-handle-color: #006a6a;--mdc-slider-active-track-color: #006a6a;--mdc-slider-inactive-track-color: #dae5e4;--mdc-slider-with-tick-marks-inactive-container-color: #3f4948;--mdc-slider-with-tick-marks-active-container-color: #ffffff;--mdc-slider-disabled-active-track-color: #191c1c;--mdc-slider-disabled-handle-color: #191c1c;--mdc-slider-disabled-inactive-track-color: #191c1c;--mdc-slider-label-container-color: #006a6a;--mdc-slider-label-label-text-color: #ffffff;--mdc-slider-with-overlap-handle-outline-color: #ffffff;--mdc-slider-with-tick-marks-disabled-container-color: #191c1c;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #006a6a;--mat-slider-hover-state-layer-color: rgba(0, 106, 106, .05);--mat-slider-focus-state-layer-color: rgba(0, 106, 106, .2);--mat-menu-item-label-text-color: #191c1c;--mat-menu-item-icon-color: #3f4948;--mat-menu-item-hover-state-layer-color: rgba(25, 28, 28, .08);--mat-menu-item-focus-state-layer-color: rgba(25, 28, 28, .12);--mat-menu-container-color: #eceeed;--mat-menu-divider-color: #dae5e4;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #00fbfb;--mdc-list-list-item-disabled-state-layer-color: #191c1c;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #191c1c;--mdc-list-list-item-supporting-text-color: #3f4948;--mdc-list-list-item-leading-icon-color: #3f4948;--mdc-list-list-item-trailing-supporting-text-color: #3f4948;--mdc-list-list-item-trailing-icon-color: #3f4948;--mdc-list-list-item-selected-trailing-icon-color: #006a6a;--mdc-list-list-item-disabled-label-text-color: #191c1c;--mdc-list-list-item-disabled-leading-icon-color: #191c1c;--mdc-list-list-item-disabled-trailing-icon-color: #191c1c;--mdc-list-list-item-hover-label-text-color: #191c1c;--mdc-list-list-item-focus-label-text-color: #191c1c;--mdc-list-list-item-hover-state-layer-color: #191c1c;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #191c1c;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #cce8e7;--mat-paginator-container-text-color: #191c1c;--mat-paginator-container-background-color: #fafdfc;--mat-paginator-enabled-icon-color: #3f4948;--mat-paginator-disabled-icon-color: rgba(25, 28, 28, .38);--mdc-tab-indicator-active-indicator-color: #006a6a;--mat-tab-header-divider-color: #dae5e4;--mat-tab-header-pagination-icon-color: #191c1c;--mat-tab-header-inactive-label-text-color: #191c1c;--mat-tab-header-active-label-text-color: #191c1c;--mat-tab-header-active-ripple-color: #191c1c;--mat-tab-header-inactive-ripple-color: #191c1c;--mat-tab-header-inactive-focus-label-text-color: #191c1c;--mat-tab-header-inactive-hover-label-text-color: #191c1c;--mat-tab-header-active-focus-label-text-color: #191c1c;--mat-tab-header-active-hover-label-text-color: #191c1c;--mat-tab-header-active-focus-indicator-color: #006a6a;--mat-tab-header-active-hover-indicator-color: #006a6a;--mdc-checkbox-disabled-selected-checkmark-color: #fafdfc;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(25, 28, 28, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(25, 28, 28, .38);--mdc-checkbox-selected-checkmark-color: #ffffff;--mdc-checkbox-selected-focus-icon-color: #006a6a;--mdc-checkbox-selected-hover-icon-color: #006a6a;--mdc-checkbox-selected-icon-color: #006a6a;--mdc-checkbox-unselected-focus-icon-color: #191c1c;--mdc-checkbox-unselected-hover-icon-color: #191c1c;--mdc-checkbox-unselected-icon-color: #3f4948;--mdc-checkbox-selected-focus-state-layer-color: #006a6a;--mdc-checkbox-selected-hover-state-layer-color: #006a6a;--mdc-checkbox-selected-pressed-state-layer-color: #191c1c;--mdc-checkbox-unselected-focus-state-layer-color: #191c1c;--mdc-checkbox-unselected-hover-state-layer-color: #191c1c;--mdc-checkbox-unselected-pressed-state-layer-color: #006a6a;--mat-checkbox-disabled-label-color: rgba(25, 28, 28, .38);--mat-checkbox-label-text-color: #191c1c;--mdc-text-button-label-text-color: #006a6a;--mdc-text-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-protected-button-container-color: #fafdfc;--mdc-protected-button-label-text-color: #006a6a;--mdc-protected-button-disabled-container-color: rgba(25, 28, 28, .12);--mdc-protected-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #006a6a;--mdc-filled-button-label-text-color: #ffffff;--mdc-filled-button-disabled-container-color: rgba(25, 28, 28, .12);--mdc-filled-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-outlined-button-disabled-outline-color: rgba(25, 28, 28, .12);--mdc-outlined-button-disabled-label-text-color: rgba(25, 28, 28, .38);--mdc-outlined-button-label-text-color: #006a6a;--mdc-outlined-button-outline-color: #6f7979;--mat-text-button-state-layer-color: #006a6a;--mat-text-button-disabled-state-layer-color: #3f4948;--mat-text-button-ripple-color: rgba(0, 106, 106, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #006a6a;--mat-protected-button-disabled-state-layer-color: #3f4948;--mat-protected-button-ripple-color: rgba(0, 106, 106, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #ffffff;--mat-filled-button-disabled-state-layer-color: #3f4948;--mat-filled-button-ripple-color: rgba(255, 255, 255, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #006a6a;--mat-outlined-button-disabled-state-layer-color: #3f4948;--mat-outlined-button-ripple-color: rgba(0, 106, 106, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #3f4948;--mdc-icon-button-disabled-icon-color: rgba(25, 28, 28, .38);--mat-icon-button-state-layer-color: #3f4948;--mat-icon-button-disabled-state-layer-color: #3f4948;--mat-icon-button-ripple-color: rgba(63, 73, 72, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #00fbfb;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #00fbfb;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #002020;--mat-fab-state-layer-color: #002020;--mat-fab-ripple-color: rgba(0, 32, 32, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(25, 28, 28, .12);--mat-fab-disabled-state-foreground-color: rgba(25, 28, 28, .38);--mat-fab-small-foreground-color: #002020;--mat-fab-small-state-layer-color: #002020;--mat-fab-small-ripple-color: rgba(0, 32, 32, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(25, 28, 28, .12);--mat-fab-small-disabled-state-foreground-color: rgba(25, 28, 28, .38);--mdc-snackbar-container-color: #2d3131;--mdc-snackbar-supporting-text-color: #eff1f0;--mat-snack-bar-button-color: #00dddd;--mat-table-background-color: #fafdfc;--mat-table-header-headline-color: #191c1c;--mat-table-row-item-label-text-color: #191c1c;--mat-table-row-item-outline-color: #bec9c8;--mdc-circular-progress-active-indicator-color: #006a6a;--mat-badge-background-color: #ba1a1a;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: rgba(186, 26, 26, .38);--mat-badge-disabled-state-text-color: #ffffff;--mat-bottom-sheet-container-text-color: #191c1c;--mat-bottom-sheet-container-background-color: #f2f4f3;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #191c1c;--mat-standard-button-toggle-state-layer-color: #191c1c;--mat-standard-button-toggle-selected-state-background-color: #cce8e7;--mat-standard-button-toggle-selected-state-text-color: #051f1f;--mat-standard-button-toggle-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(25, 28, 28, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(25, 28, 28, .12);--mat-standard-button-toggle-divider-color: #6f7979;--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #006a6a;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #006a6a;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 28, 28, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 28, 28, .08);--mat-datepicker-toggle-active-state-icon-color: #3f4948;--mat-datepicker-calendar-date-in-range-state-background-color: #00fbfb;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #ffdcc7;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #cce8e7;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #4a6363;--mat-datepicker-toggle-icon-color: #3f4948;--mat-datepicker-calendar-body-label-text-color: #191c1c;--mat-datepicker-calendar-period-button-text-color: #3f4948;--mat-datepicker-calendar-period-button-icon-color: #3f4948;--mat-datepicker-calendar-navigation-button-icon-color: #3f4948;--mat-datepicker-calendar-header-text-color: #3f4948;--mat-datepicker-calendar-date-today-outline-color: #006a6a;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-date-text-color: #191c1c;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #006a6a;--mat-datepicker-range-input-separator-color: #191c1c;--mat-datepicker-range-input-disabled-state-separator-color: rgba(25, 28, 28, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-datepicker-calendar-container-background-color: #e6e9e8;--mat-datepicker-calendar-container-text-color: #191c1c;--mat-divider-color: #bec9c8;--mat-expansion-container-background-color: #fafdfc;--mat-expansion-container-text-color: #191c1c;--mat-expansion-actions-divider-color: #bec9c8;--mat-expansion-header-hover-state-layer-color: rgba(25, 28, 28, .08);--mat-expansion-header-focus-state-layer-color: rgba(25, 28, 28, .12);--mat-expansion-header-disabled-state-text-color: rgba(25, 28, 28, .38);--mat-expansion-header-text-color: #191c1c;--mat-expansion-header-description-color: #3f4948;--mat-expansion-header-indicator-color: #3f4948;--mat-sidenav-container-background-color: #fafdfc;--mat-sidenav-container-text-color: #3f4948;--mat-sidenav-content-background-color: #fafdfc;--mat-sidenav-content-text-color: #191c1c;--mat-sidenav-scrim-color: rgba(41, 50, 50, .4);--mat-stepper-header-icon-foreground-color: #fafdfc;--mat-stepper-header-selected-state-icon-background-color: #006a6a;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #006a6a;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #fafdfc;--mat-stepper-line-color: #bec9c8;--mat-stepper-header-hover-state-layer-color: rgba(45, 49, 49, .08);--mat-stepper-header-focus-state-layer-color: rgba(45, 49, 49, .12);--mat-stepper-header-label-text-color: #3f4948;--mat-stepper-header-optional-label-text-color: #3f4948;--mat-stepper-header-selected-state-label-text-color: #3f4948;--mat-stepper-header-error-state-label-text-color: #ba1a1a;--mat-stepper-header-icon-background-color: #3f4948;--mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;--mat-sort-arrow-color: #191c1c;--mat-toolbar-container-background-color: #fafdfc;--mat-toolbar-container-text-color: #191c1c;--mat-tree-container-background-color: #fafdfc;--mat-tree-node-text-color: #191c1c}.survey-theme-cyan-orange-light .mat-display-large,.survey-theme-cyan-orange-light .mat-typography .mat-display-large,.survey-theme-cyan-orange-light .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-display-medium,.survey-theme-cyan-orange-light .mat-typography .mat-display-medium,.survey-theme-cyan-orange-light .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-display-small,.survey-theme-cyan-orange-light .mat-typography .mat-display-small,.survey-theme-cyan-orange-light .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-headline-large,.survey-theme-cyan-orange-light .mat-typography .mat-headline-large,.survey-theme-cyan-orange-light .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-headline-medium,.survey-theme-cyan-orange-light .mat-typography .mat-headline-medium,.survey-theme-cyan-orange-light .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-headline-small,.survey-theme-cyan-orange-light .mat-typography .mat-headline-small,.survey-theme-cyan-orange-light .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-light .mat-title-large,.survey-theme-cyan-orange-light .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-cyan-orange-light .mat-title-medium,.survey-theme-cyan-orange-light .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-cyan-orange-light .mat-title-small,.survey-theme-cyan-orange-light .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-light .mat-body-large,.survey-theme-cyan-orange-light .mat-typography .mat-body-large,.survey-theme-cyan-orange-light .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-light .mat-body-large p,.survey-theme-cyan-orange-light .mat-typography .mat-body-large p,.survey-theme-cyan-orange-light .mat-typography p{margin:0 0 .75em}.survey-theme-cyan-orange-light .mat-body-medium,.survey-theme-cyan-orange-light .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-cyan-orange-light .mat-body-small,.survey-theme-cyan-orange-light .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-cyan-orange-light .mat-label-large,.survey-theme-cyan-orange-light .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-light .mat-label-medium,.survey-theme-cyan-orange-light .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-light .mat-label-small,.survey-theme-cyan-orange-light .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-light.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-cyan-orange-light ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-cyan-orange-light.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-cyan-orange-light.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#ffdcc7}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#311300}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#ffdcc7}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#311300}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#cce8e7;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-cyan-orange-light.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-cyan-orange-light.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-cyan-orange-dark{--mat-app-background-color: #191c1c;--mat-app-text-color: #e0e3e2;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(224, 227, 226, .1);--mat-option-selected-state-label-text-color: #cce8e7;--mat-option-label-text-color: #e0e3e2;--mat-option-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-option-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-option-selected-state-layer-color: #324b4b;--mat-optgroup-label-text-color: #bec9c8;--mat-full-pseudo-checkbox-selected-icon-color: #00dddd;--mat-full-pseudo-checkbox-selected-checkmark-color: #003737;--mat-full-pseudo-checkbox-unselected-icon-color: #bec9c8;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #191c1c;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(224, 227, 226, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(224, 227, 226, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #00dddd;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(224, 227, 226, .38);--mdc-elevated-card-container-color: #191c1c;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #191c1c;--mdc-outlined-card-outline-color: #3f4948;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #e0e3e2;--mdc-linear-progress-active-indicator-color: #00dddd;--mdc-linear-progress-track-color: #3f4948;--mdc-plain-tooltip-container-color: #e0e3e2;--mdc-plain-tooltip-supporting-text-color: #2d3131;--mdc-filled-text-field-caret-color: #00dddd;--mdc-filled-text-field-focus-active-indicator-color: #00dddd;--mdc-filled-text-field-focus-label-text-color: #00dddd;--mdc-filled-text-field-container-color: #3f4948;--mdc-filled-text-field-disabled-container-color: rgba(224, 227, 226, .04);--mdc-filled-text-field-label-text-color: #bec9c8;--mdc-filled-text-field-hover-label-text-color: #bec9c8;--mdc-filled-text-field-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-filled-text-field-input-text-color: #e0e3e2;--mdc-filled-text-field-disabled-input-text-color: rgba(224, 227, 226, .38);--mdc-filled-text-field-input-text-placeholder-color: #bec9c8;--mdc-filled-text-field-error-hover-label-text-color: #ffdad6;--mdc-filled-text-field-error-focus-label-text-color: #ffb4ab;--mdc-filled-text-field-error-label-text-color: #ffb4ab;--mdc-filled-text-field-active-indicator-color: #bec9c8;--mdc-filled-text-field-disabled-active-indicator-color: rgba(224, 227, 226, .38);--mdc-filled-text-field-hover-active-indicator-color: #e0e3e2;--mdc-filled-text-field-error-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-focus-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-hover-active-indicator-color: #ffdad6;--mdc-outlined-text-field-caret-color: #00dddd;--mdc-outlined-text-field-focus-outline-color: #00dddd;--mdc-outlined-text-field-focus-label-text-color: #00dddd;--mdc-outlined-text-field-label-text-color: #bec9c8;--mdc-outlined-text-field-hover-label-text-color: #e0e3e2;--mdc-outlined-text-field-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-outlined-text-field-input-text-color: #e0e3e2;--mdc-outlined-text-field-disabled-input-text-color: rgba(224, 227, 226, .38);--mdc-outlined-text-field-input-text-placeholder-color: #bec9c8;--mdc-outlined-text-field-error-focus-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-hover-label-text-color: #ffdad6;--mdc-outlined-text-field-outline-color: #889392;--mdc-outlined-text-field-disabled-outline-color: rgba(224, 227, 226, .12);--mdc-outlined-text-field-hover-outline-color: #e0e3e2;--mdc-outlined-text-field-error-focus-outline-color: #ffb4ab;--mdc-outlined-text-field-error-hover-outline-color: #ffdad6;--mdc-outlined-text-field-error-outline-color: #ffb4ab;--mat-form-field-focus-select-arrow-color: #00dddd;--mat-form-field-disabled-input-text-placeholder-color: rgba(224, 227, 226, .38);--mat-form-field-state-layer-color: #e0e3e2;--mat-form-field-error-text-color: #ffb4ab;--mat-form-field-select-option-text-color: #191c1c;--mat-form-field-select-disabled-option-text-color: rgba(25, 28, 28, .38);--mat-form-field-leading-icon-color: #bec9c8;--mat-form-field-disabled-leading-icon-color: rgba(224, 227, 226, .38);--mat-form-field-trailing-icon-color: #bec9c8;--mat-form-field-disabled-trailing-icon-color: rgba(224, 227, 226, .38);--mat-form-field-error-focus-trailing-icon-color: #ffb4ab;--mat-form-field-error-hover-trailing-icon-color: #ffdad6;--mat-form-field-error-trailing-icon-color: #ffb4ab;--mat-form-field-enabled-select-arrow-color: #bec9c8;--mat-form-field-disabled-select-arrow-color: rgba(224, 227, 226, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #1d2020;--mat-select-enabled-trigger-text-color: #e0e3e2;--mat-select-disabled-trigger-text-color: rgba(224, 227, 226, .38);--mat-select-placeholder-text-color: #bec9c8;--mat-select-enabled-arrow-color: #bec9c8;--mat-select-disabled-arrow-color: rgba(224, 227, 226, .38);--mat-select-focused-arrow-color: #00dddd;--mat-select-invalid-arrow-color: #ffb4ab;--mat-autocomplete-background-color: #1d2020;--mdc-dialog-container-color: #191c1c;--mdc-dialog-subhead-color: #e0e3e2;--mdc-dialog-supporting-text-color: #bec9c8;--mdc-chip-outline-color: #889392;--mdc-chip-disabled-outline-color: rgba(224, 227, 226, .12);--mdc-chip-focus-outline-color: #bec9c8;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-chip-elevated-selected-container-color: #324b4b;--mdc-chip-flat-disabled-selected-container-color: rgba(224, 227, 226, .12);--mdc-chip-focus-state-layer-color: #bec9c8;--mdc-chip-hover-state-layer-color: #bec9c8;--mdc-chip-selected-hover-state-layer-color: #cce8e7;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #cce8e7;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #bec9c8;--mdc-chip-selected-label-text-color: #cce8e7;--mdc-chip-with-icon-icon-color: #bec9c8;--mdc-chip-with-icon-disabled-icon-color: #e0e3e2;--mdc-chip-with-icon-selected-icon-color: #cce8e7;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #e0e3e2;--mdc-chip-with-trailing-icon-trailing-icon-color: #bec9c8;--mat-chip-trailing-action-state-layer-color: #bec9c8;--mat-chip-selected-trailing-action-state-layer-color: #cce8e7;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #e0e3e2;--mat-chip-selected-trailing-icon-color: #cce8e7;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #00dddd;--mdc-switch-selected-handle-color: #003737;--mdc-switch-selected-hover-state-layer-color: #00dddd;--mdc-switch-selected-pressed-state-layer-color: #00dddd;--mdc-switch-selected-focus-handle-color: #004f4f;--mdc-switch-selected-hover-handle-color: #004f4f;--mdc-switch-selected-pressed-handle-color: #004f4f;--mdc-switch-selected-focus-track-color: #00dddd;--mdc-switch-selected-hover-track-color: #00dddd;--mdc-switch-selected-pressed-track-color: #00dddd;--mdc-switch-selected-track-color: #00dddd;--mdc-switch-disabled-selected-handle-color: #191c1c;--mdc-switch-disabled-selected-icon-color: #e0e3e2;--mdc-switch-disabled-selected-track-color: #e0e3e2;--mdc-switch-disabled-unselected-handle-color: #e0e3e2;--mdc-switch-disabled-unselected-icon-color: #3f4948;--mdc-switch-disabled-unselected-track-color: #3f4948;--mdc-switch-selected-icon-color: #00fbfb;--mdc-switch-unselected-focus-handle-color: #bec9c8;--mdc-switch-unselected-focus-state-layer-color: #e0e3e2;--mdc-switch-unselected-focus-track-color: #3f4948;--mdc-switch-unselected-handle-color: #889392;--mdc-switch-unselected-hover-handle-color: #bec9c8;--mdc-switch-unselected-hover-state-layer-color: #e0e3e2;--mdc-switch-unselected-hover-track-color: #3f4948;--mdc-switch-unselected-icon-color: #3f4948;--mdc-switch-unselected-pressed-handle-color: #bec9c8;--mdc-switch-unselected-pressed-state-layer-color: #e0e3e2;--mdc-switch-unselected-pressed-track-color: #3f4948;--mdc-switch-unselected-track-color: #3f4948;--mat-switch-track-outline-color: #889392;--mat-switch-disabled-unselected-track-outline-color: #e0e3e2;--mat-switch-label-text-color: #e0e3e2;--mdc-radio-disabled-selected-icon-color: #e0e3e2;--mdc-radio-disabled-unselected-icon-color: #e0e3e2;--mdc-radio-unselected-hover-icon-color: #e0e3e2;--mdc-radio-unselected-icon-color: #bec9c8;--mdc-radio-unselected-pressed-icon-color: #e0e3e2;--mdc-radio-selected-focus-icon-color: #00dddd;--mdc-radio-selected-hover-icon-color: #00dddd;--mdc-radio-selected-icon-color: #00dddd;--mdc-radio-selected-pressed-icon-color: #00dddd;--mat-radio-ripple-color: #e0e3e2;--mat-radio-checked-ripple-color: #00dddd;--mat-radio-disabled-label-color: rgba(224, 227, 226, .38);--mat-radio-label-text-color: #e0e3e2;--mdc-slider-handle-color: #00dddd;--mdc-slider-focus-handle-color: #00dddd;--mdc-slider-hover-handle-color: #00dddd;--mdc-slider-active-track-color: #00dddd;--mdc-slider-inactive-track-color: #3f4948;--mdc-slider-with-tick-marks-inactive-container-color: #bec9c8;--mdc-slider-with-tick-marks-active-container-color: #003737;--mdc-slider-disabled-active-track-color: #e0e3e2;--mdc-slider-disabled-handle-color: #e0e3e2;--mdc-slider-disabled-inactive-track-color: #e0e3e2;--mdc-slider-label-container-color: #00dddd;--mdc-slider-label-label-text-color: #003737;--mdc-slider-with-overlap-handle-outline-color: #003737;--mdc-slider-with-tick-marks-disabled-container-color: #e0e3e2;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #00dddd;--mat-slider-hover-state-layer-color: rgba(0, 221, 221, .05);--mat-slider-focus-state-layer-color: rgba(0, 221, 221, .2);--mat-menu-item-label-text-color: #e0e3e2;--mat-menu-item-icon-color: #bec9c8;--mat-menu-item-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-menu-item-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-menu-container-color: #1d2020;--mat-menu-divider-color: #3f4948;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #004f4f;--mdc-list-list-item-disabled-state-layer-color: #e0e3e2;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #e0e3e2;--mdc-list-list-item-supporting-text-color: #bec9c8;--mdc-list-list-item-leading-icon-color: #bec9c8;--mdc-list-list-item-trailing-supporting-text-color: #bec9c8;--mdc-list-list-item-trailing-icon-color: #bec9c8;--mdc-list-list-item-selected-trailing-icon-color: #00dddd;--mdc-list-list-item-disabled-label-text-color: #e0e3e2;--mdc-list-list-item-disabled-leading-icon-color: #e0e3e2;--mdc-list-list-item-disabled-trailing-icon-color: #e0e3e2;--mdc-list-list-item-hover-label-text-color: #e0e3e2;--mdc-list-list-item-focus-label-text-color: #e0e3e2;--mdc-list-list-item-hover-state-layer-color: #e0e3e2;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #e0e3e2;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #324b4b;--mat-paginator-container-text-color: #e0e3e2;--mat-paginator-container-background-color: #191c1c;--mat-paginator-enabled-icon-color: #bec9c8;--mat-paginator-disabled-icon-color: rgba(224, 227, 226, .38);--mdc-tab-indicator-active-indicator-color: #00dddd;--mat-tab-header-divider-color: #3f4948;--mat-tab-header-pagination-icon-color: #e0e3e2;--mat-tab-header-inactive-label-text-color: #e0e3e2;--mat-tab-header-active-label-text-color: #e0e3e2;--mat-tab-header-active-ripple-color: #e0e3e2;--mat-tab-header-inactive-ripple-color: #e0e3e2;--mat-tab-header-inactive-focus-label-text-color: #e0e3e2;--mat-tab-header-inactive-hover-label-text-color: #e0e3e2;--mat-tab-header-active-focus-label-text-color: #e0e3e2;--mat-tab-header-active-hover-label-text-color: #e0e3e2;--mat-tab-header-active-focus-indicator-color: #00dddd;--mat-tab-header-active-hover-indicator-color: #00dddd;--mdc-checkbox-disabled-selected-checkmark-color: #191c1c;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(224, 227, 226, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(224, 227, 226, .38);--mdc-checkbox-selected-checkmark-color: #003737;--mdc-checkbox-selected-focus-icon-color: #00dddd;--mdc-checkbox-selected-hover-icon-color: #00dddd;--mdc-checkbox-selected-icon-color: #00dddd;--mdc-checkbox-unselected-focus-icon-color: #e0e3e2;--mdc-checkbox-unselected-hover-icon-color: #e0e3e2;--mdc-checkbox-unselected-icon-color: #bec9c8;--mdc-checkbox-selected-focus-state-layer-color: #00dddd;--mdc-checkbox-selected-hover-state-layer-color: #00dddd;--mdc-checkbox-selected-pressed-state-layer-color: #e0e3e2;--mdc-checkbox-unselected-focus-state-layer-color: #e0e3e2;--mdc-checkbox-unselected-hover-state-layer-color: #e0e3e2;--mdc-checkbox-unselected-pressed-state-layer-color: #00dddd;--mat-checkbox-disabled-label-color: rgba(224, 227, 226, .38);--mat-checkbox-label-text-color: #e0e3e2;--mdc-text-button-label-text-color: #00dddd;--mdc-text-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-protected-button-container-color: #191c1c;--mdc-protected-button-label-text-color: #00dddd;--mdc-protected-button-disabled-container-color: rgba(224, 227, 226, .12);--mdc-protected-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #00dddd;--mdc-filled-button-label-text-color: #003737;--mdc-filled-button-disabled-container-color: rgba(224, 227, 226, .12);--mdc-filled-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-outlined-button-disabled-outline-color: rgba(224, 227, 226, .12);--mdc-outlined-button-disabled-label-text-color: rgba(224, 227, 226, .38);--mdc-outlined-button-label-text-color: #00dddd;--mdc-outlined-button-outline-color: #889392;--mat-text-button-state-layer-color: #00dddd;--mat-text-button-disabled-state-layer-color: #bec9c8;--mat-text-button-ripple-color: rgba(0, 221, 221, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #00dddd;--mat-protected-button-disabled-state-layer-color: #bec9c8;--mat-protected-button-ripple-color: rgba(0, 221, 221, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #003737;--mat-filled-button-disabled-state-layer-color: #bec9c8;--mat-filled-button-ripple-color: rgba(0, 55, 55, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #00dddd;--mat-outlined-button-disabled-state-layer-color: #bec9c8;--mat-outlined-button-ripple-color: rgba(0, 221, 221, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #bec9c8;--mdc-icon-button-disabled-icon-color: rgba(224, 227, 226, .38);--mat-icon-button-state-layer-color: #bec9c8;--mat-icon-button-disabled-state-layer-color: #bec9c8;--mat-icon-button-ripple-color: rgba(190, 201, 200, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #004f4f;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #004f4f;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #00fbfb;--mat-fab-state-layer-color: #00fbfb;--mat-fab-ripple-color: rgba(0, 251, 251, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(224, 227, 226, .12);--mat-fab-disabled-state-foreground-color: rgba(224, 227, 226, .38);--mat-fab-small-foreground-color: #00fbfb;--mat-fab-small-state-layer-color: #00fbfb;--mat-fab-small-ripple-color: rgba(0, 251, 251, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(224, 227, 226, .12);--mat-fab-small-disabled-state-foreground-color: rgba(224, 227, 226, .38);--mdc-snackbar-container-color: #e0e3e2;--mdc-snackbar-supporting-text-color: #2d3131;--mat-snack-bar-button-color: #006a6a;--mat-table-background-color: #191c1c;--mat-table-header-headline-color: #e0e3e2;--mat-table-row-item-label-text-color: #e0e3e2;--mat-table-row-item-outline-color: #3f4948;--mdc-circular-progress-active-indicator-color: #00dddd;--mat-badge-background-color: #ffb4ab;--mat-badge-text-color: #690005;--mat-badge-disabled-state-background-color: rgba(255, 180, 171, .38);--mat-badge-disabled-state-text-color: #690005;--mat-bottom-sheet-container-text-color: #e0e3e2;--mat-bottom-sheet-container-background-color: #191c1c;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #e0e3e2;--mat-standard-button-toggle-state-layer-color: #e0e3e2;--mat-standard-button-toggle-selected-state-background-color: #324b4b;--mat-standard-button-toggle-selected-state-text-color: #cce8e7;--mat-standard-button-toggle-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(224, 227, 226, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(224, 227, 226, .12);--mat-standard-button-toggle-divider-color: #889392;--mat-datepicker-calendar-date-selected-state-text-color: #003737;--mat-datepicker-calendar-date-selected-state-background-color: #00dddd;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #00dddd;--mat-datepicker-calendar-date-focus-state-background-color: rgba(224, 227, 226, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(224, 227, 226, .08);--mat-datepicker-toggle-active-state-icon-color: #bec9c8;--mat-datepicker-calendar-date-in-range-state-background-color: #004f4f;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #723600;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #324b4b;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #b0cccb;--mat-datepicker-toggle-icon-color: #bec9c8;--mat-datepicker-calendar-body-label-text-color: #e0e3e2;--mat-datepicker-calendar-period-button-text-color: #bec9c8;--mat-datepicker-calendar-period-button-icon-color: #bec9c8;--mat-datepicker-calendar-navigation-button-icon-color: #bec9c8;--mat-datepicker-calendar-header-text-color: #bec9c8;--mat-datepicker-calendar-date-today-outline-color: #00dddd;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-date-text-color: #e0e3e2;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #00dddd;--mat-datepicker-range-input-separator-color: #e0e3e2;--mat-datepicker-range-input-disabled-state-separator-color: rgba(224, 227, 226, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-datepicker-calendar-container-background-color: #272b2b;--mat-datepicker-calendar-container-text-color: #e0e3e2;--mat-divider-color: #3f4948;--mat-expansion-container-background-color: #191c1c;--mat-expansion-container-text-color: #e0e3e2;--mat-expansion-actions-divider-color: #3f4948;--mat-expansion-header-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-expansion-header-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-expansion-header-disabled-state-text-color: rgba(224, 227, 226, .38);--mat-expansion-header-text-color: #e0e3e2;--mat-expansion-header-description-color: #bec9c8;--mat-expansion-header-indicator-color: #bec9c8;--mat-sidenav-container-background-color: #191c1c;--mat-sidenav-container-text-color: #bec9c8;--mat-sidenav-content-background-color: #191c1c;--mat-sidenav-content-text-color: #e0e3e2;--mat-sidenav-scrim-color: rgba(41, 50, 50, .4);--mat-stepper-header-icon-foreground-color: #191c1c;--mat-stepper-header-selected-state-icon-background-color: #00dddd;--mat-stepper-header-selected-state-icon-foreground-color: #003737;--mat-stepper-header-edit-state-icon-background-color: #00dddd;--mat-stepper-header-edit-state-icon-foreground-color: #003737;--mat-stepper-container-color: #191c1c;--mat-stepper-line-color: #3f4948;--mat-stepper-header-hover-state-layer-color: rgba(224, 227, 226, .08);--mat-stepper-header-focus-state-layer-color: rgba(224, 227, 226, .12);--mat-stepper-header-label-text-color: #bec9c8;--mat-stepper-header-optional-label-text-color: #bec9c8;--mat-stepper-header-selected-state-label-text-color: #bec9c8;--mat-stepper-header-error-state-label-text-color: #ffb4ab;--mat-stepper-header-icon-background-color: #bec9c8;--mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;--mat-sort-arrow-color: #e0e3e2;--mat-toolbar-container-background-color: #191c1c;--mat-toolbar-container-text-color: #e0e3e2;--mat-tree-container-background-color: #191c1c;--mat-tree-node-text-color: #e0e3e2}.survey-theme-cyan-orange-dark .mat-display-large,.survey-theme-cyan-orange-dark .mat-typography .mat-display-large,.survey-theme-cyan-orange-dark .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-display-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-display-medium,.survey-theme-cyan-orange-dark .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-display-small,.survey-theme-cyan-orange-dark .mat-typography .mat-display-small,.survey-theme-cyan-orange-dark .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-headline-large,.survey-theme-cyan-orange-dark .mat-typography .mat-headline-large,.survey-theme-cyan-orange-dark .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-headline-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-headline-medium,.survey-theme-cyan-orange-dark .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-headline-small,.survey-theme-cyan-orange-dark .mat-typography .mat-headline-small,.survey-theme-cyan-orange-dark .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-cyan-orange-dark .mat-title-large,.survey-theme-cyan-orange-dark .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-cyan-orange-dark .mat-title-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-cyan-orange-dark .mat-title-small,.survey-theme-cyan-orange-dark .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-dark .mat-body-large,.survey-theme-cyan-orange-dark .mat-typography .mat-body-large,.survey-theme-cyan-orange-dark .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-dark .mat-body-large p,.survey-theme-cyan-orange-dark .mat-typography .mat-body-large p,.survey-theme-cyan-orange-dark .mat-typography p{margin:0 0 .75em}.survey-theme-cyan-orange-dark .mat-body-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-cyan-orange-dark .mat-body-small,.survey-theme-cyan-orange-dark .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-cyan-orange-dark .mat-label-large,.survey-theme-cyan-orange-dark .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-cyan-orange-dark .mat-label-medium,.survey-theme-cyan-orange-dark .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-dark .mat-label-small,.survey-theme-cyan-orange-dark .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-cyan-orange-dark.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-cyan-orange-dark ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-cyan-orange-dark.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-cyan-orange-dark.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#723600}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#ffdcc7}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#723600}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#ffdcc7}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#324b4b;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-cyan-orange-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-cyan-orange-dark.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-rose-red-light{--mat-app-background-color: #fffbff;--mat-app-text-color: #201a1b;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(32, 26, 27, .1);--mat-option-selected-state-label-text-color: #2b151b;--mat-option-label-text-color: #201a1b;--mat-option-hover-state-layer-color: rgba(32, 26, 27, .08);--mat-option-focus-state-layer-color: rgba(32, 26, 27, .12);--mat-option-selected-state-layer-color: #ffd9e1;--mat-optgroup-label-text-color: #514346;--mat-full-pseudo-checkbox-selected-icon-color: #ba005c;--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;--mat-full-pseudo-checkbox-unselected-icon-color: #514346;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fffbff;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(32, 26, 27, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(32, 26, 27, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ba005c;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(32, 26, 27, .38);--mdc-elevated-card-container-color: #fffbff;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #fffbff;--mdc-outlined-card-outline-color: #d6c2c5;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #201a1b;--mdc-linear-progress-active-indicator-color: #ba005c;--mdc-linear-progress-track-color: #f3dde1;--mdc-plain-tooltip-container-color: #352f30;--mdc-plain-tooltip-supporting-text-color: #faeeef;--mdc-filled-text-field-caret-color: #ba005c;--mdc-filled-text-field-focus-active-indicator-color: #ba005c;--mdc-filled-text-field-focus-label-text-color: #ba005c;--mdc-filled-text-field-container-color: #f3dde1;--mdc-filled-text-field-disabled-container-color: rgba(32, 26, 27, .04);--mdc-filled-text-field-label-text-color: #514346;--mdc-filled-text-field-hover-label-text-color: #514346;--mdc-filled-text-field-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-filled-text-field-input-text-color: #201a1b;--mdc-filled-text-field-disabled-input-text-color: rgba(32, 26, 27, .38);--mdc-filled-text-field-input-text-placeholder-color: #514346;--mdc-filled-text-field-error-hover-label-text-color: #410002;--mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;--mdc-filled-text-field-error-label-text-color: #ba1a1a;--mdc-filled-text-field-active-indicator-color: #514346;--mdc-filled-text-field-disabled-active-indicator-color: rgba(32, 26, 27, .38);--mdc-filled-text-field-hover-active-indicator-color: #201a1b;--mdc-filled-text-field-error-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;--mdc-filled-text-field-error-hover-active-indicator-color: #410002;--mdc-outlined-text-field-caret-color: #ba005c;--mdc-outlined-text-field-focus-outline-color: #ba005c;--mdc-outlined-text-field-focus-label-text-color: #ba005c;--mdc-outlined-text-field-label-text-color: #514346;--mdc-outlined-text-field-hover-label-text-color: #201a1b;--mdc-outlined-text-field-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-outlined-text-field-input-text-color: #201a1b;--mdc-outlined-text-field-disabled-input-text-color: rgba(32, 26, 27, .38);--mdc-outlined-text-field-input-text-placeholder-color: #514346;--mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-label-text-color: #ba1a1a;--mdc-outlined-text-field-error-hover-label-text-color: #410002;--mdc-outlined-text-field-outline-color: #847376;--mdc-outlined-text-field-disabled-outline-color: rgba(32, 26, 27, .12);--mdc-outlined-text-field-hover-outline-color: #201a1b;--mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;--mdc-outlined-text-field-error-hover-outline-color: #410002;--mdc-outlined-text-field-error-outline-color: #ba1a1a;--mat-form-field-focus-select-arrow-color: #ba005c;--mat-form-field-disabled-input-text-placeholder-color: rgba(32, 26, 27, .38);--mat-form-field-state-layer-color: #201a1b;--mat-form-field-error-text-color: #ba1a1a;--mat-form-field-select-option-text-color: #201a1b;--mat-form-field-select-disabled-option-text-color: rgba(32, 26, 27, .38);--mat-form-field-leading-icon-color: #514346;--mat-form-field-disabled-leading-icon-color: rgba(32, 26, 27, .38);--mat-form-field-trailing-icon-color: #514346;--mat-form-field-disabled-trailing-icon-color: rgba(32, 26, 27, .38);--mat-form-field-error-focus-trailing-icon-color: #ba1a1a;--mat-form-field-error-hover-trailing-icon-color: #410002;--mat-form-field-error-trailing-icon-color: #ba1a1a;--mat-form-field-enabled-select-arrow-color: #514346;--mat-form-field-disabled-select-arrow-color: rgba(32, 26, 27, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #f7ebec;--mat-select-enabled-trigger-text-color: #201a1b;--mat-select-disabled-trigger-text-color: rgba(32, 26, 27, .38);--mat-select-placeholder-text-color: #514346;--mat-select-enabled-arrow-color: #514346;--mat-select-disabled-arrow-color: rgba(32, 26, 27, .38);--mat-select-focused-arrow-color: #ba005c;--mat-select-invalid-arrow-color: #ba1a1a;--mat-autocomplete-background-color: #f7ebec;--mdc-dialog-container-color: #fffbff;--mdc-dialog-subhead-color: #201a1b;--mdc-dialog-supporting-text-color: #514346;--mdc-chip-outline-color: #847376;--mdc-chip-disabled-outline-color: rgba(32, 26, 27, .12);--mdc-chip-focus-outline-color: #514346;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-chip-elevated-selected-container-color: #ffd9e1;--mdc-chip-flat-disabled-selected-container-color: rgba(32, 26, 27, .12);--mdc-chip-focus-state-layer-color: #514346;--mdc-chip-hover-state-layer-color: #514346;--mdc-chip-selected-hover-state-layer-color: #2b151b;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #2b151b;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #514346;--mdc-chip-selected-label-text-color: #2b151b;--mdc-chip-with-icon-icon-color: #514346;--mdc-chip-with-icon-disabled-icon-color: #201a1b;--mdc-chip-with-icon-selected-icon-color: #2b151b;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #201a1b;--mdc-chip-with-trailing-icon-trailing-icon-color: #514346;--mat-chip-trailing-action-state-layer-color: #514346;--mat-chip-selected-trailing-action-state-layer-color: #2b151b;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #201a1b;--mat-chip-selected-trailing-icon-color: #2b151b;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #ba005c;--mdc-switch-selected-handle-color: #ffffff;--mdc-switch-selected-hover-state-layer-color: #ba005c;--mdc-switch-selected-pressed-state-layer-color: #ba005c;--mdc-switch-selected-focus-handle-color: #ffd9e1;--mdc-switch-selected-hover-handle-color: #ffd9e1;--mdc-switch-selected-pressed-handle-color: #ffd9e1;--mdc-switch-selected-focus-track-color: #ba005c;--mdc-switch-selected-hover-track-color: #ba005c;--mdc-switch-selected-pressed-track-color: #ba005c;--mdc-switch-selected-track-color: #ba005c;--mdc-switch-disabled-selected-handle-color: #fffbff;--mdc-switch-disabled-selected-icon-color: #201a1b;--mdc-switch-disabled-selected-track-color: #201a1b;--mdc-switch-disabled-unselected-handle-color: #201a1b;--mdc-switch-disabled-unselected-icon-color: #f3dde1;--mdc-switch-disabled-unselected-track-color: #f3dde1;--mdc-switch-selected-icon-color: #3f001b;--mdc-switch-unselected-focus-handle-color: #514346;--mdc-switch-unselected-focus-state-layer-color: #201a1b;--mdc-switch-unselected-focus-track-color: #f3dde1;--mdc-switch-unselected-handle-color: #847376;--mdc-switch-unselected-hover-handle-color: #514346;--mdc-switch-unselected-hover-state-layer-color: #201a1b;--mdc-switch-unselected-hover-track-color: #f3dde1;--mdc-switch-unselected-icon-color: #f3dde1;--mdc-switch-unselected-pressed-handle-color: #514346;--mdc-switch-unselected-pressed-state-layer-color: #201a1b;--mdc-switch-unselected-pressed-track-color: #f3dde1;--mdc-switch-unselected-track-color: #f3dde1;--mat-switch-track-outline-color: #847376;--mat-switch-disabled-unselected-track-outline-color: #201a1b;--mat-switch-label-text-color: #201a1b;--mdc-radio-disabled-selected-icon-color: #201a1b;--mdc-radio-disabled-unselected-icon-color: #201a1b;--mdc-radio-unselected-hover-icon-color: #201a1b;--mdc-radio-unselected-icon-color: #514346;--mdc-radio-unselected-pressed-icon-color: #201a1b;--mdc-radio-selected-focus-icon-color: #ba005c;--mdc-radio-selected-hover-icon-color: #ba005c;--mdc-radio-selected-icon-color: #ba005c;--mdc-radio-selected-pressed-icon-color: #ba005c;--mat-radio-ripple-color: #201a1b;--mat-radio-checked-ripple-color: #ba005c;--mat-radio-disabled-label-color: rgba(32, 26, 27, .38);--mat-radio-label-text-color: #201a1b;--mdc-slider-handle-color: #ba005c;--mdc-slider-focus-handle-color: #ba005c;--mdc-slider-hover-handle-color: #ba005c;--mdc-slider-active-track-color: #ba005c;--mdc-slider-inactive-track-color: #f3dde1;--mdc-slider-with-tick-marks-inactive-container-color: #514346;--mdc-slider-with-tick-marks-active-container-color: #ffffff;--mdc-slider-disabled-active-track-color: #201a1b;--mdc-slider-disabled-handle-color: #201a1b;--mdc-slider-disabled-inactive-track-color: #201a1b;--mdc-slider-label-container-color: #ba005c;--mdc-slider-label-label-text-color: #ffffff;--mdc-slider-with-overlap-handle-outline-color: #ffffff;--mdc-slider-with-tick-marks-disabled-container-color: #201a1b;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #ba005c;--mat-slider-hover-state-layer-color: rgba(186, 0, 92, .05);--mat-slider-focus-state-layer-color: rgba(186, 0, 92, .2);--mat-menu-item-label-text-color: #201a1b;--mat-menu-item-icon-color: #514346;--mat-menu-item-hover-state-layer-color: rgba(32, 26, 27, .08);--mat-menu-item-focus-state-layer-color: rgba(32, 26, 27, .12);--mat-menu-container-color: #f7ebec;--mat-menu-divider-color: #f3dde1;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #ffd9e1;--mdc-list-list-item-disabled-state-layer-color: #201a1b;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #201a1b;--mdc-list-list-item-supporting-text-color: #514346;--mdc-list-list-item-leading-icon-color: #514346;--mdc-list-list-item-trailing-supporting-text-color: #514346;--mdc-list-list-item-trailing-icon-color: #514346;--mdc-list-list-item-selected-trailing-icon-color: #ba005c;--mdc-list-list-item-disabled-label-text-color: #201a1b;--mdc-list-list-item-disabled-leading-icon-color: #201a1b;--mdc-list-list-item-disabled-trailing-icon-color: #201a1b;--mdc-list-list-item-hover-label-text-color: #201a1b;--mdc-list-list-item-focus-label-text-color: #201a1b;--mdc-list-list-item-hover-state-layer-color: #201a1b;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #201a1b;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #ffd9e1;--mat-paginator-container-text-color: #201a1b;--mat-paginator-container-background-color: #fffbff;--mat-paginator-enabled-icon-color: #514346;--mat-paginator-disabled-icon-color: rgba(32, 26, 27, .38);--mdc-tab-indicator-active-indicator-color: #ba005c;--mat-tab-header-divider-color: #f3dde1;--mat-tab-header-pagination-icon-color: #201a1b;--mat-tab-header-inactive-label-text-color: #201a1b;--mat-tab-header-active-label-text-color: #201a1b;--mat-tab-header-active-ripple-color: #201a1b;--mat-tab-header-inactive-ripple-color: #201a1b;--mat-tab-header-inactive-focus-label-text-color: #201a1b;--mat-tab-header-inactive-hover-label-text-color: #201a1b;--mat-tab-header-active-focus-label-text-color: #201a1b;--mat-tab-header-active-hover-label-text-color: #201a1b;--mat-tab-header-active-focus-indicator-color: #ba005c;--mat-tab-header-active-hover-indicator-color: #ba005c;--mdc-checkbox-disabled-selected-checkmark-color: #fffbff;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(32, 26, 27, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(32, 26, 27, .38);--mdc-checkbox-selected-checkmark-color: #ffffff;--mdc-checkbox-selected-focus-icon-color: #ba005c;--mdc-checkbox-selected-hover-icon-color: #ba005c;--mdc-checkbox-selected-icon-color: #ba005c;--mdc-checkbox-unselected-focus-icon-color: #201a1b;--mdc-checkbox-unselected-hover-icon-color: #201a1b;--mdc-checkbox-unselected-icon-color: #514346;--mdc-checkbox-selected-focus-state-layer-color: #ba005c;--mdc-checkbox-selected-hover-state-layer-color: #ba005c;--mdc-checkbox-selected-pressed-state-layer-color: #201a1b;--mdc-checkbox-unselected-focus-state-layer-color: #201a1b;--mdc-checkbox-unselected-hover-state-layer-color: #201a1b;--mdc-checkbox-unselected-pressed-state-layer-color: #ba005c;--mat-checkbox-disabled-label-color: rgba(32, 26, 27, .38);--mat-checkbox-label-text-color: #201a1b;--mdc-text-button-label-text-color: #ba005c;--mdc-text-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-protected-button-container-color: #fffbff;--mdc-protected-button-label-text-color: #ba005c;--mdc-protected-button-disabled-container-color: rgba(32, 26, 27, .12);--mdc-protected-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #ba005c;--mdc-filled-button-label-text-color: #ffffff;--mdc-filled-button-disabled-container-color: rgba(32, 26, 27, .12);--mdc-filled-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-outlined-button-disabled-outline-color: rgba(32, 26, 27, .12);--mdc-outlined-button-disabled-label-text-color: rgba(32, 26, 27, .38);--mdc-outlined-button-label-text-color: #ba005c;--mdc-outlined-button-outline-color: #847376;--mat-text-button-state-layer-color: #ba005c;--mat-text-button-disabled-state-layer-color: #514346;--mat-text-button-ripple-color: rgba(186, 0, 92, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #ba005c;--mat-protected-button-disabled-state-layer-color: #514346;--mat-protected-button-ripple-color: rgba(186, 0, 92, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #ffffff;--mat-filled-button-disabled-state-layer-color: #514346;--mat-filled-button-ripple-color: rgba(255, 255, 255, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #ba005c;--mat-outlined-button-disabled-state-layer-color: #514346;--mat-outlined-button-ripple-color: rgba(186, 0, 92, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #514346;--mdc-icon-button-disabled-icon-color: rgba(32, 26, 27, .38);--mat-icon-button-state-layer-color: #514346;--mat-icon-button-disabled-state-layer-color: #514346;--mat-icon-button-ripple-color: rgba(81, 67, 70, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #ffd9e1;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #ffd9e1;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #3f001b;--mat-fab-state-layer-color: #3f001b;--mat-fab-ripple-color: rgba(63, 0, 27, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(32, 26, 27, .12);--mat-fab-disabled-state-foreground-color: rgba(32, 26, 27, .38);--mat-fab-small-foreground-color: #3f001b;--mat-fab-small-state-layer-color: #3f001b;--mat-fab-small-ripple-color: rgba(63, 0, 27, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(32, 26, 27, .12);--mat-fab-small-disabled-state-foreground-color: rgba(32, 26, 27, .38);--mdc-snackbar-container-color: #352f30;--mdc-snackbar-supporting-text-color: #faeeef;--mat-snack-bar-button-color: #ffb1c5;--mat-table-background-color: #fffbff;--mat-table-header-headline-color: #201a1b;--mat-table-row-item-label-text-color: #201a1b;--mat-table-row-item-outline-color: #d6c2c5;--mdc-circular-progress-active-indicator-color: #ba005c;--mat-badge-background-color: #ba1a1a;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: rgba(186, 26, 26, .38);--mat-badge-disabled-state-text-color: #ffffff;--mat-bottom-sheet-container-text-color: #201a1b;--mat-bottom-sheet-container-background-color: #fcf1f2;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #201a1b;--mat-standard-button-toggle-state-layer-color: #201a1b;--mat-standard-button-toggle-selected-state-background-color: #ffd9e1;--mat-standard-button-toggle-selected-state-text-color: #2b151b;--mat-standard-button-toggle-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(32, 26, 27, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(32, 26, 27, .12);--mat-standard-button-toggle-divider-color: #847376;--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #ba005c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ba005c;--mat-datepicker-calendar-date-focus-state-background-color: rgba(32, 26, 27, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(32, 26, 27, .08);--mat-datepicker-toggle-active-state-icon-color: #514346;--mat-datepicker-calendar-date-in-range-state-background-color: #ffd9e1;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #ffdad4;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #ffd9e1;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #74565d;--mat-datepicker-toggle-icon-color: #514346;--mat-datepicker-calendar-body-label-text-color: #201a1b;--mat-datepicker-calendar-period-button-text-color: #514346;--mat-datepicker-calendar-period-button-icon-color: #514346;--mat-datepicker-calendar-navigation-button-icon-color: #514346;--mat-datepicker-calendar-header-text-color: #514346;--mat-datepicker-calendar-date-today-outline-color: #ba005c;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-date-text-color: #201a1b;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #ba005c;--mat-datepicker-range-input-separator-color: #201a1b;--mat-datepicker-range-input-disabled-state-separator-color: rgba(32, 26, 27, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-datepicker-calendar-container-background-color: #f2e6e7;--mat-datepicker-calendar-container-text-color: #201a1b;--mat-divider-color: #d6c2c5;--mat-expansion-container-background-color: #fffbff;--mat-expansion-container-text-color: #201a1b;--mat-expansion-actions-divider-color: #d6c2c5;--mat-expansion-header-hover-state-layer-color: rgba(32, 26, 27, .08);--mat-expansion-header-focus-state-layer-color: rgba(32, 26, 27, .12);--mat-expansion-header-disabled-state-text-color: rgba(32, 26, 27, .38);--mat-expansion-header-text-color: #201a1b;--mat-expansion-header-description-color: #514346;--mat-expansion-header-indicator-color: #514346;--mat-sidenav-container-background-color: #fffbff;--mat-sidenav-container-text-color: #514346;--mat-sidenav-content-background-color: #fffbff;--mat-sidenav-content-text-color: #201a1b;--mat-sidenav-scrim-color: rgba(58, 45, 48, .4);--mat-stepper-header-icon-foreground-color: #fffbff;--mat-stepper-header-selected-state-icon-background-color: #ba005c;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #ba005c;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #fffbff;--mat-stepper-line-color: #d6c2c5;--mat-stepper-header-hover-state-layer-color: rgba(53, 47, 48, .08);--mat-stepper-header-focus-state-layer-color: rgba(53, 47, 48, .12);--mat-stepper-header-label-text-color: #514346;--mat-stepper-header-optional-label-text-color: #514346;--mat-stepper-header-selected-state-label-text-color: #514346;--mat-stepper-header-error-state-label-text-color: #ba1a1a;--mat-stepper-header-icon-background-color: #514346;--mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;--mat-sort-arrow-color: #201a1b;--mat-toolbar-container-background-color: #fffbff;--mat-toolbar-container-text-color: #201a1b;--mat-tree-container-background-color: #fffbff;--mat-tree-node-text-color: #201a1b}.survey-theme-rose-red-light .mat-display-large,.survey-theme-rose-red-light .mat-typography .mat-display-large,.survey-theme-rose-red-light .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-display-medium,.survey-theme-rose-red-light .mat-typography .mat-display-medium,.survey-theme-rose-red-light .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-display-small,.survey-theme-rose-red-light .mat-typography .mat-display-small,.survey-theme-rose-red-light .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-headline-large,.survey-theme-rose-red-light .mat-typography .mat-headline-large,.survey-theme-rose-red-light .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-headline-medium,.survey-theme-rose-red-light .mat-typography .mat-headline-medium,.survey-theme-rose-red-light .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-headline-small,.survey-theme-rose-red-light .mat-typography .mat-headline-small,.survey-theme-rose-red-light .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-light .mat-title-large,.survey-theme-rose-red-light .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-rose-red-light .mat-title-medium,.survey-theme-rose-red-light .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-rose-red-light .mat-title-small,.survey-theme-rose-red-light .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-light .mat-body-large,.survey-theme-rose-red-light .mat-typography .mat-body-large,.survey-theme-rose-red-light .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-light .mat-body-large p,.survey-theme-rose-red-light .mat-typography .mat-body-large p,.survey-theme-rose-red-light .mat-typography p{margin:0 0 .75em}.survey-theme-rose-red-light .mat-body-medium,.survey-theme-rose-red-light .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-rose-red-light .mat-body-small,.survey-theme-rose-red-light .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-rose-red-light .mat-label-large,.survey-theme-rose-red-light .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-light .mat-label-medium,.survey-theme-rose-red-light .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-light .mat-label-small,.survey-theme-rose-red-light .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-light.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-rose-red-light ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-rose-red-light.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-rose-red-light.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#ffdad4}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#410000}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#ffdad4}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#410000}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#ffd9e1;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-rose-red-light.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-rose-red-light.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-theme-rose-red-dark{--mat-app-background-color: #201a1b;--mat-app-text-color: #ece0e1;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: rgba(236, 224, 225, .1);--mat-option-selected-state-label-text-color: #ffd9e1;--mat-option-label-text-color: #ece0e1;--mat-option-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-option-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-option-selected-state-layer-color: #5b3f46;--mat-optgroup-label-text-color: #d6c2c5;--mat-full-pseudo-checkbox-selected-icon-color: #ffb1c5;--mat-full-pseudo-checkbox-selected-checkmark-color: #65002f;--mat-full-pseudo-checkbox-unselected-icon-color: #d6c2c5;--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #201a1b;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(236, 224, 225, .38);--mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(236, 224, 225, .38);--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ffb1c5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(236, 224, 225, .38);--mdc-elevated-card-container-color: #201a1b;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #201a1b;--mdc-outlined-card-outline-color: #514346;--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: #ece0e1;--mdc-linear-progress-active-indicator-color: #ffb1c5;--mdc-linear-progress-track-color: #514346;--mdc-plain-tooltip-container-color: #ece0e1;--mdc-plain-tooltip-supporting-text-color: #352f30;--mdc-filled-text-field-caret-color: #ffb1c5;--mdc-filled-text-field-focus-active-indicator-color: #ffb1c5;--mdc-filled-text-field-focus-label-text-color: #ffb1c5;--mdc-filled-text-field-container-color: #514346;--mdc-filled-text-field-disabled-container-color: rgba(236, 224, 225, .04);--mdc-filled-text-field-label-text-color: #d6c2c5;--mdc-filled-text-field-hover-label-text-color: #d6c2c5;--mdc-filled-text-field-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-filled-text-field-input-text-color: #ece0e1;--mdc-filled-text-field-disabled-input-text-color: rgba(236, 224, 225, .38);--mdc-filled-text-field-input-text-placeholder-color: #d6c2c5;--mdc-filled-text-field-error-hover-label-text-color: #ffdad6;--mdc-filled-text-field-error-focus-label-text-color: #ffb4ab;--mdc-filled-text-field-error-label-text-color: #ffb4ab;--mdc-filled-text-field-active-indicator-color: #d6c2c5;--mdc-filled-text-field-disabled-active-indicator-color: rgba(236, 224, 225, .38);--mdc-filled-text-field-hover-active-indicator-color: #ece0e1;--mdc-filled-text-field-error-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-focus-active-indicator-color: #ffb4ab;--mdc-filled-text-field-error-hover-active-indicator-color: #ffdad6;--mdc-outlined-text-field-caret-color: #ffb1c5;--mdc-outlined-text-field-focus-outline-color: #ffb1c5;--mdc-outlined-text-field-focus-label-text-color: #ffb1c5;--mdc-outlined-text-field-label-text-color: #d6c2c5;--mdc-outlined-text-field-hover-label-text-color: #ece0e1;--mdc-outlined-text-field-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-outlined-text-field-input-text-color: #ece0e1;--mdc-outlined-text-field-disabled-input-text-color: rgba(236, 224, 225, .38);--mdc-outlined-text-field-input-text-placeholder-color: #d6c2c5;--mdc-outlined-text-field-error-focus-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-label-text-color: #ffb4ab;--mdc-outlined-text-field-error-hover-label-text-color: #ffdad6;--mdc-outlined-text-field-outline-color: #9e8c90;--mdc-outlined-text-field-disabled-outline-color: rgba(236, 224, 225, .12);--mdc-outlined-text-field-hover-outline-color: #ece0e1;--mdc-outlined-text-field-error-focus-outline-color: #ffb4ab;--mdc-outlined-text-field-error-hover-outline-color: #ffdad6;--mdc-outlined-text-field-error-outline-color: #ffb4ab;--mat-form-field-focus-select-arrow-color: #ffb1c5;--mat-form-field-disabled-input-text-placeholder-color: rgba(236, 224, 225, .38);--mat-form-field-state-layer-color: #ece0e1;--mat-form-field-error-text-color: #ffb4ab;--mat-form-field-select-option-text-color: #201a1b;--mat-form-field-select-disabled-option-text-color: rgba(32, 26, 27, .38);--mat-form-field-leading-icon-color: #d6c2c5;--mat-form-field-disabled-leading-icon-color: rgba(236, 224, 225, .38);--mat-form-field-trailing-icon-color: #d6c2c5;--mat-form-field-disabled-trailing-icon-color: rgba(236, 224, 225, .38);--mat-form-field-error-focus-trailing-icon-color: #ffb4ab;--mat-form-field-error-hover-trailing-icon-color: #ffdad6;--mat-form-field-error-trailing-icon-color: #ffb4ab;--mat-form-field-enabled-select-arrow-color: #d6c2c5;--mat-form-field-disabled-select-arrow-color: rgba(236, 224, 225, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-select-panel-background-color: #241e1f;--mat-select-enabled-trigger-text-color: #ece0e1;--mat-select-disabled-trigger-text-color: rgba(236, 224, 225, .38);--mat-select-placeholder-text-color: #d6c2c5;--mat-select-enabled-arrow-color: #d6c2c5;--mat-select-disabled-arrow-color: rgba(236, 224, 225, .38);--mat-select-focused-arrow-color: #ffb1c5;--mat-select-invalid-arrow-color: #ffb4ab;--mat-autocomplete-background-color: #241e1f;--mdc-dialog-container-color: #201a1b;--mdc-dialog-subhead-color: #ece0e1;--mdc-dialog-supporting-text-color: #d6c2c5;--mdc-chip-outline-color: #9e8c90;--mdc-chip-disabled-outline-color: rgba(236, 224, 225, .12);--mdc-chip-focus-outline-color: #d6c2c5;--mdc-chip-hover-state-layer-opacity: .08;--mdc-chip-selected-hover-state-layer-opacity: .08;--mdc-chip-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-chip-elevated-selected-container-color: #5b3f46;--mdc-chip-flat-disabled-selected-container-color: rgba(236, 224, 225, .12);--mdc-chip-focus-state-layer-color: #d6c2c5;--mdc-chip-hover-state-layer-color: #d6c2c5;--mdc-chip-selected-hover-state-layer-color: #ffd9e1;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: #ffd9e1;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #d6c2c5;--mdc-chip-selected-label-text-color: #ffd9e1;--mdc-chip-with-icon-icon-color: #d6c2c5;--mdc-chip-with-icon-disabled-icon-color: #ece0e1;--mdc-chip-with-icon-selected-icon-color: #ffd9e1;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #ece0e1;--mdc-chip-with-trailing-icon-trailing-icon-color: #d6c2c5;--mat-chip-trailing-action-state-layer-color: #d6c2c5;--mat-chip-selected-trailing-action-state-layer-color: #ffd9e1;--mat-chip-trailing-action-hover-state-layer-opacity: .08;--mat-chip-trailing-action-focus-state-layer-opacity: .12;--mat-chip-selected-disabled-trailing-icon-color: #ece0e1;--mat-chip-selected-trailing-icon-color: #ffd9e1;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .08;--mdc-switch-selected-pressed-state-layer-opacity: .12;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .08;--mdc-switch-unselected-pressed-state-layer-opacity: .12;--mdc-switch-selected-focus-state-layer-color: #ffb1c5;--mdc-switch-selected-handle-color: #65002f;--mdc-switch-selected-hover-state-layer-color: #ffb1c5;--mdc-switch-selected-pressed-state-layer-color: #ffb1c5;--mdc-switch-selected-focus-handle-color: #8f0045;--mdc-switch-selected-hover-handle-color: #8f0045;--mdc-switch-selected-pressed-handle-color: #8f0045;--mdc-switch-selected-focus-track-color: #ffb1c5;--mdc-switch-selected-hover-track-color: #ffb1c5;--mdc-switch-selected-pressed-track-color: #ffb1c5;--mdc-switch-selected-track-color: #ffb1c5;--mdc-switch-disabled-selected-handle-color: #201a1b;--mdc-switch-disabled-selected-icon-color: #ece0e1;--mdc-switch-disabled-selected-track-color: #ece0e1;--mdc-switch-disabled-unselected-handle-color: #ece0e1;--mdc-switch-disabled-unselected-icon-color: #514346;--mdc-switch-disabled-unselected-track-color: #514346;--mdc-switch-selected-icon-color: #ffd9e1;--mdc-switch-unselected-focus-handle-color: #d6c2c5;--mdc-switch-unselected-focus-state-layer-color: #ece0e1;--mdc-switch-unselected-focus-track-color: #514346;--mdc-switch-unselected-handle-color: #9e8c90;--mdc-switch-unselected-hover-handle-color: #d6c2c5;--mdc-switch-unselected-hover-state-layer-color: #ece0e1;--mdc-switch-unselected-hover-track-color: #514346;--mdc-switch-unselected-icon-color: #514346;--mdc-switch-unselected-pressed-handle-color: #d6c2c5;--mdc-switch-unselected-pressed-state-layer-color: #ece0e1;--mdc-switch-unselected-pressed-track-color: #514346;--mdc-switch-unselected-track-color: #514346;--mat-switch-track-outline-color: #9e8c90;--mat-switch-disabled-unselected-track-outline-color: #ece0e1;--mat-switch-label-text-color: #ece0e1;--mdc-radio-disabled-selected-icon-color: #ece0e1;--mdc-radio-disabled-unselected-icon-color: #ece0e1;--mdc-radio-unselected-hover-icon-color: #ece0e1;--mdc-radio-unselected-icon-color: #d6c2c5;--mdc-radio-unselected-pressed-icon-color: #ece0e1;--mdc-radio-selected-focus-icon-color: #ffb1c5;--mdc-radio-selected-hover-icon-color: #ffb1c5;--mdc-radio-selected-icon-color: #ffb1c5;--mdc-radio-selected-pressed-icon-color: #ffb1c5;--mat-radio-ripple-color: #ece0e1;--mat-radio-checked-ripple-color: #ffb1c5;--mat-radio-disabled-label-color: rgba(236, 224, 225, .38);--mat-radio-label-text-color: #ece0e1;--mdc-slider-handle-color: #ffb1c5;--mdc-slider-focus-handle-color: #ffb1c5;--mdc-slider-hover-handle-color: #ffb1c5;--mdc-slider-active-track-color: #ffb1c5;--mdc-slider-inactive-track-color: #514346;--mdc-slider-with-tick-marks-inactive-container-color: #d6c2c5;--mdc-slider-with-tick-marks-active-container-color: #65002f;--mdc-slider-disabled-active-track-color: #ece0e1;--mdc-slider-disabled-handle-color: #ece0e1;--mdc-slider-disabled-inactive-track-color: #ece0e1;--mdc-slider-label-container-color: #ffb1c5;--mdc-slider-label-label-text-color: #65002f;--mdc-slider-with-overlap-handle-outline-color: #65002f;--mdc-slider-with-tick-marks-disabled-container-color: #ece0e1;--mdc-slider-handle-elevation: 1;--mdc-slider-handle-shadow-color: #000000;--mat-slider-ripple-color: #ffb1c5;--mat-slider-hover-state-layer-color: rgba(255, 177, 197, .05);--mat-slider-focus-state-layer-color: rgba(255, 177, 197, .2);--mat-menu-item-label-text-color: #ece0e1;--mat-menu-item-icon-color: #d6c2c5;--mat-menu-item-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-menu-item-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-menu-container-color: #241e1f;--mat-menu-divider-color: #514346;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-leading-avatar-color: #8f0045;--mdc-list-list-item-disabled-state-layer-color: #ece0e1;--mdc-list-list-item-disabled-state-layer-opacity: .12;--mdc-list-list-item-label-text-color: #ece0e1;--mdc-list-list-item-supporting-text-color: #d6c2c5;--mdc-list-list-item-leading-icon-color: #d6c2c5;--mdc-list-list-item-trailing-supporting-text-color: #d6c2c5;--mdc-list-list-item-trailing-icon-color: #d6c2c5;--mdc-list-list-item-selected-trailing-icon-color: #ffb1c5;--mdc-list-list-item-disabled-label-text-color: #ece0e1;--mdc-list-list-item-disabled-leading-icon-color: #ece0e1;--mdc-list-list-item-disabled-trailing-icon-color: #ece0e1;--mdc-list-list-item-hover-label-text-color: #ece0e1;--mdc-list-list-item-focus-label-text-color: #ece0e1;--mdc-list-list-item-hover-state-layer-color: #ece0e1;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: #ece0e1;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-list-active-indicator-color: #5b3f46;--mat-paginator-container-text-color: #ece0e1;--mat-paginator-container-background-color: #201a1b;--mat-paginator-enabled-icon-color: #d6c2c5;--mat-paginator-disabled-icon-color: rgba(236, 224, 225, .38);--mdc-tab-indicator-active-indicator-color: #ffb1c5;--mat-tab-header-divider-color: #514346;--mat-tab-header-pagination-icon-color: #ece0e1;--mat-tab-header-inactive-label-text-color: #ece0e1;--mat-tab-header-active-label-text-color: #ece0e1;--mat-tab-header-active-ripple-color: #ece0e1;--mat-tab-header-inactive-ripple-color: #ece0e1;--mat-tab-header-inactive-focus-label-text-color: #ece0e1;--mat-tab-header-inactive-hover-label-text-color: #ece0e1;--mat-tab-header-active-focus-label-text-color: #ece0e1;--mat-tab-header-active-hover-label-text-color: #ece0e1;--mat-tab-header-active-focus-indicator-color: #ffb1c5;--mat-tab-header-active-hover-indicator-color: #ffb1c5;--mdc-checkbox-disabled-selected-checkmark-color: #201a1b;--mdc-checkbox-selected-focus-state-layer-opacity: .12;--mdc-checkbox-selected-hover-state-layer-opacity: .08;--mdc-checkbox-selected-pressed-state-layer-opacity: .12;--mdc-checkbox-unselected-focus-state-layer-opacity: .12;--mdc-checkbox-unselected-hover-state-layer-opacity: .08;--mdc-checkbox-unselected-pressed-state-layer-opacity: .12;--mdc-checkbox-disabled-selected-icon-color: rgba(236, 224, 225, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(236, 224, 225, .38);--mdc-checkbox-selected-checkmark-color: #65002f;--mdc-checkbox-selected-focus-icon-color: #ffb1c5;--mdc-checkbox-selected-hover-icon-color: #ffb1c5;--mdc-checkbox-selected-icon-color: #ffb1c5;--mdc-checkbox-unselected-focus-icon-color: #ece0e1;--mdc-checkbox-unselected-hover-icon-color: #ece0e1;--mdc-checkbox-unselected-icon-color: #d6c2c5;--mdc-checkbox-selected-focus-state-layer-color: #ffb1c5;--mdc-checkbox-selected-hover-state-layer-color: #ffb1c5;--mdc-checkbox-selected-pressed-state-layer-color: #ece0e1;--mdc-checkbox-unselected-focus-state-layer-color: #ece0e1;--mdc-checkbox-unselected-hover-state-layer-color: #ece0e1;--mdc-checkbox-unselected-pressed-state-layer-color: #ffb1c5;--mat-checkbox-disabled-label-color: rgba(236, 224, 225, .38);--mat-checkbox-label-text-color: #ece0e1;--mdc-text-button-label-text-color: #ffb1c5;--mdc-text-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-protected-button-container-color: #201a1b;--mdc-protected-button-label-text-color: #ffb1c5;--mdc-protected-button-disabled-container-color: rgba(236, 224, 225, .12);--mdc-protected-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-protected-button-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000000;--mdc-filled-button-container-color: #ffb1c5;--mdc-filled-button-label-text-color: #65002f;--mdc-filled-button-disabled-container-color: rgba(236, 224, 225, .12);--mdc-filled-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-outlined-button-disabled-outline-color: rgba(236, 224, 225, .12);--mdc-outlined-button-disabled-label-text-color: rgba(236, 224, 225, .38);--mdc-outlined-button-label-text-color: #ffb1c5;--mdc-outlined-button-outline-color: #9e8c90;--mat-text-button-state-layer-color: #ffb1c5;--mat-text-button-disabled-state-layer-color: #d6c2c5;--mat-text-button-ripple-color: rgba(255, 177, 197, .12);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mat-protected-button-state-layer-color: #ffb1c5;--mat-protected-button-disabled-state-layer-color: #d6c2c5;--mat-protected-button-ripple-color: rgba(255, 177, 197, .12);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mat-filled-button-state-layer-color: #65002f;--mat-filled-button-disabled-state-layer-color: #d6c2c5;--mat-filled-button-ripple-color: rgba(101, 0, 47, .12);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mat-outlined-button-state-layer-color: #ffb1c5;--mat-outlined-button-disabled-state-layer-color: #d6c2c5;--mat-outlined-button-ripple-color: rgba(255, 177, 197, .12);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-color: #d6c2c5;--mdc-icon-button-disabled-icon-color: rgba(236, 224, 225, .38);--mat-icon-button-state-layer-color: #d6c2c5;--mat-icon-button-disabled-state-layer-color: #d6c2c5;--mat-icon-button-ripple-color: rgba(214, 194, 197, .12);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-container-color: #8f0045;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-container-color: #8f0045;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-foreground-color: #ffd9e1;--mat-fab-state-layer-color: #ffd9e1;--mat-fab-ripple-color: rgba(255, 217, 225, .12);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(236, 224, 225, .12);--mat-fab-disabled-state-foreground-color: rgba(236, 224, 225, .38);--mat-fab-small-foreground-color: #ffd9e1;--mat-fab-small-state-layer-color: #ffd9e1;--mat-fab-small-ripple-color: rgba(255, 217, 225, .12);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(236, 224, 225, .12);--mat-fab-small-disabled-state-foreground-color: rgba(236, 224, 225, .38);--mdc-snackbar-container-color: #ece0e1;--mdc-snackbar-supporting-text-color: #352f30;--mat-snack-bar-button-color: #ba005c;--mat-table-background-color: #201a1b;--mat-table-header-headline-color: #ece0e1;--mat-table-row-item-label-text-color: #ece0e1;--mat-table-row-item-outline-color: #514346;--mdc-circular-progress-active-indicator-color: #ffb1c5;--mat-badge-background-color: #ffb4ab;--mat-badge-text-color: #690005;--mat-badge-disabled-state-background-color: rgba(255, 180, 171, .38);--mat-badge-disabled-state-text-color: #690005;--mat-bottom-sheet-container-text-color: #ece0e1;--mat-bottom-sheet-container-background-color: #201a1b;--mat-standard-button-toggle-hover-state-layer-opacity: .08;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-standard-button-toggle-text-color: #ece0e1;--mat-standard-button-toggle-state-layer-color: #ece0e1;--mat-standard-button-toggle-selected-state-background-color: #5b3f46;--mat-standard-button-toggle-selected-state-text-color: #ffd9e1;--mat-standard-button-toggle-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(236, 224, 225, .38);--mat-standard-button-toggle-disabled-selected-state-background-color: rgba(236, 224, 225, .12);--mat-standard-button-toggle-divider-color: #9e8c90;--mat-datepicker-calendar-date-selected-state-text-color: #65002f;--mat-datepicker-calendar-date-selected-state-background-color: #ffb1c5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffb1c5;--mat-datepicker-calendar-date-focus-state-background-color: rgba(236, 224, 225, .12);--mat-datepicker-calendar-date-hover-state-background-color: rgba(236, 224, 225, .08);--mat-datepicker-toggle-active-state-icon-color: #d6c2c5;--mat-datepicker-calendar-date-in-range-state-background-color: #8f0045;--mat-datepicker-calendar-date-in-comparison-range-state-background-color: #930100;--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #5b3f46;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #e3bdc5;--mat-datepicker-toggle-icon-color: #d6c2c5;--mat-datepicker-calendar-body-label-text-color: #ece0e1;--mat-datepicker-calendar-period-button-text-color: #d6c2c5;--mat-datepicker-calendar-period-button-icon-color: #d6c2c5;--mat-datepicker-calendar-navigation-button-icon-color: #d6c2c5;--mat-datepicker-calendar-header-text-color: #d6c2c5;--mat-datepicker-calendar-date-today-outline-color: #ffb1c5;--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-date-text-color: #ece0e1;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-date-preview-state-outline-color: #ffb1c5;--mat-datepicker-range-input-separator-color: #ece0e1;--mat-datepicker-range-input-disabled-state-separator-color: rgba(236, 224, 225, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-datepicker-calendar-container-background-color: #2f292a;--mat-datepicker-calendar-container-text-color: #ece0e1;--mat-divider-color: #514346;--mat-expansion-container-background-color: #201a1b;--mat-expansion-container-text-color: #ece0e1;--mat-expansion-actions-divider-color: #514346;--mat-expansion-header-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-expansion-header-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-expansion-header-disabled-state-text-color: rgba(236, 224, 225, .38);--mat-expansion-header-text-color: #ece0e1;--mat-expansion-header-description-color: #d6c2c5;--mat-expansion-header-indicator-color: #d6c2c5;--mat-sidenav-container-background-color: #201a1b;--mat-sidenav-container-text-color: #d6c2c5;--mat-sidenav-content-background-color: #201a1b;--mat-sidenav-content-text-color: #ece0e1;--mat-sidenav-scrim-color: rgba(58, 45, 48, .4);--mat-stepper-header-icon-foreground-color: #201a1b;--mat-stepper-header-selected-state-icon-background-color: #ffb1c5;--mat-stepper-header-selected-state-icon-foreground-color: #65002f;--mat-stepper-header-edit-state-icon-background-color: #ffb1c5;--mat-stepper-header-edit-state-icon-foreground-color: #65002f;--mat-stepper-container-color: #201a1b;--mat-stepper-line-color: #514346;--mat-stepper-header-hover-state-layer-color: rgba(236, 224, 225, .08);--mat-stepper-header-focus-state-layer-color: rgba(236, 224, 225, .12);--mat-stepper-header-label-text-color: #d6c2c5;--mat-stepper-header-optional-label-text-color: #d6c2c5;--mat-stepper-header-selected-state-label-text-color: #d6c2c5;--mat-stepper-header-error-state-label-text-color: #ffb4ab;--mat-stepper-header-icon-background-color: #d6c2c5;--mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;--mat-sort-arrow-color: #ece0e1;--mat-toolbar-container-background-color: #201a1b;--mat-toolbar-container-text-color: #ece0e1;--mat-tree-container-background-color: #201a1b;--mat-tree-node-text-color: #ece0e1}.survey-theme-rose-red-dark .mat-display-large,.survey-theme-rose-red-dark .mat-typography .mat-display-large,.survey-theme-rose-red-dark .mat-typography h1{font:400 3.562rem/4rem Roboto;letter-spacing:-.016rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-display-medium,.survey-theme-rose-red-dark .mat-typography .mat-display-medium,.survey-theme-rose-red-dark .mat-typography h2{font:400 2.812rem/3.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-display-small,.survey-theme-rose-red-dark .mat-typography .mat-display-small,.survey-theme-rose-red-dark .mat-typography h3{font:400 2.25rem/2.75rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-headline-large,.survey-theme-rose-red-dark .mat-typography .mat-headline-large,.survey-theme-rose-red-dark .mat-typography h4{font:400 2rem/2.5rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-headline-medium,.survey-theme-rose-red-dark .mat-typography .mat-headline-medium,.survey-theme-rose-red-dark .mat-typography h5{font:400 1.75rem/2.25rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-headline-small,.survey-theme-rose-red-dark .mat-typography .mat-headline-small,.survey-theme-rose-red-dark .mat-typography h6{font:400 1.5rem/2rem Roboto;letter-spacing:0rem;margin:0 0 .5em}.survey-theme-rose-red-dark .mat-title-large,.survey-theme-rose-red-dark .mat-typography .mat-title-large{font:400 1.375rem/1.75rem Roboto;letter-spacing:0rem}.survey-theme-rose-red-dark .mat-title-medium,.survey-theme-rose-red-dark .mat-typography .mat-title-medium{font:500 1rem/1.5rem Roboto,sans-serif;letter-spacing:.009rem}.survey-theme-rose-red-dark .mat-title-small,.survey-theme-rose-red-dark .mat-typography .mat-title-small{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-dark .mat-body-large,.survey-theme-rose-red-dark .mat-typography .mat-body-large,.survey-theme-rose-red-dark .mat-typography{font:400 1rem/1.5rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-dark .mat-body-large p,.survey-theme-rose-red-dark .mat-typography .mat-body-large p,.survey-theme-rose-red-dark .mat-typography p{margin:0 0 .75em}.survey-theme-rose-red-dark .mat-body-medium,.survey-theme-rose-red-dark .mat-typography .mat-body-medium{font:400 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.016rem}.survey-theme-rose-red-dark .mat-body-small,.survey-theme-rose-red-dark .mat-typography .mat-body-small{font:400 .75rem/1rem Roboto,sans-serif;letter-spacing:.025rem}.survey-theme-rose-red-dark .mat-label-large,.survey-theme-rose-red-dark .mat-typography .mat-label-large{font:500 .875rem/1.25rem Roboto,sans-serif;letter-spacing:.006rem}.survey-theme-rose-red-dark .mat-label-medium,.survey-theme-rose-red-dark .mat-typography .mat-label-medium{font:500 .75rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-dark .mat-label-small,.survey-theme-rose-red-dark .mat-typography .mat-label-small{font:500 .688rem/1rem Roboto,sans-serif;letter-spacing:.031rem}.survey-theme-rose-red-dark.survey-container-main{background-color:var(--mat-app-background-color);color:var(--mat-app-text-color)}.survey-theme-rose-red-dark ::ng-deep .question-caption-helper-font{color:#f26030}.survey-theme-rose-red-dark.tp-view-desktop{width:100%;height:100%;overflow:auto}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep p{margin:0}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .container-captions{min-height:75px;padding:20px 0}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .navigation-button .navigation-button-label{font-size:1.3em}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives{display:grid;justify-content:center;gap:.5em}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .container-ms-ss-alternatives .alternative-ss-ms-caption{color:var(--mat-app-text-color);font-size:1.1em}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .alternative-sl-caption{color:var(--mat-app-text-color)}.survey-theme-rose-red-dark.tp-view-desktop ::ng-deep .mobile-view-section-caption{border-bottom-color:#26292936}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-sl .mdc-label{display:none}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .container-ms-ss-alternatives{width:100%;height:100%;box-sizing:border-box;overflow:hidden;position:relative;display:block}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mdc-checkbox--disabled{background-color:var(--mdc-checkbox-disabled-unselected-icon-color);opacity:.5}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled){background-color:#930100}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-checkbox-checked:not(.mdc-checkbox--disabled) .alternative-ss-ms-caption{color:#ffdad4}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked{background-color:#930100}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms.mat-mdc-radio-checked .alternative-ss-ms-caption{color:#ffdad4}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms{position:absolute;display:inline-flex;justify-content:center;align-items:center;min-height:2.5em;background-color:#5b3f46;-webkit-border-radius:.5em;-moz-border-radius:.5em;border-radius:.5em;-webkit-box-shadow:0 10px 2px rgba(0,0,0,.2);-moz-box-shadow:0 10px 2px rgba(0,0,0,.2);box-shadow:0 2px 2px #0003;border:solid 2px #000;overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;word-break:break-word;cursor:pointer}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio{width:0;height:0;padding:0}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-label{width:100%;height:100%;justify-content:center;padding:0;box-sizing:border-box}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{width:100%;height:100%}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-radio__background{display:none}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-form-field{font-size:100%;align-items:unset}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .mdc-checkbox{display:none}.survey-theme-rose-red-dark.tp-view-tablet ::ng-deep .alternative-ss-ms .alternative-ss-ms-caption{display:flex;justify-content:center;align-items:center;color:var(--mat-app-text-color);text-align:center;font-size:1.1em;width:100%;height:100%;box-sizing:border-box;padding:.5em;line-height:1.1}.survey-theme-rose-red-dark.survey-theme-cyan-orange-dark ::ng-deep .question-caption-font{background-image:linear-gradient(to right,#ed2224,#f35b22,#f99621,#f5c11e,#f1eb1b 27%,#f1eb1b,#f1eb1b 33%,#63c720,#0c9b49,#21878d,#3954a5,#61379b,#93288e);background-size:100%;background-repeat:repeat;-webkit-background-clip:text;-webkit-text-fill-color:transparent;-moz-background-clip:text;-moz-text-fill-color:transparent}.survey-container-main{-webkit-text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tp-view-tablet{width:100%;height:100%;margin:0;display:flex;flex-flow:column nowrap;font-size:16px;overflow:hidden}.tp-view-tablet tp-survey-container-answer{flex:1}.tp-view-desktop tp-survey-navigation-button:first-child{text-align:end}.tp-view-desktop .container-navigation{display:grid;grid-template-columns:minmax(150px,auto) minmax(150px,auto) minmax(150px,auto);padding:1em}.tp-view-tablet .container-navigation{display:grid;height:40px;grid-template-columns:minmax(150px,auto) minmax(150px,auto) minmax(150px,auto);padding:1em}\n"] }]
2198
+ }] });
2199
+
2200
+ /*
2201
+ * Public API Surface of tp.survey
2202
+ */
2203
+ // export * from './lib/tp.survey.service';
2204
+
2205
+ /**
2206
+ * Generated bundle index. Do not edit.
2207
+ */
2208
+
2209
+ export { AdditionalAnswerType, BASE_HEIGHT, BASE_WIDTH, EInterviewStatus, LOGIC_FUNC_TEXT, MISSING_VALUE, QuestionsType, ResultativeStatus, SurveyEvents, SurveyPlayComponent, SurveyQuestionPreviewComponent, TP_SURVEY_CONFIGURATION, TpSurveyModule, ValidStatus, ViewModel, executeLogicExpression };
2210
+ //# sourceMappingURL=touchpoll-tp-survey.mjs.map