@touchpoll/tp-survey 0.0.13 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/component/answer/answer.master/answer.master.component.mjs +4 -2
- package/esm2022/lib/component/answer/answer.ss/answer.ss.component.mjs +3 -3
- package/esm2022/lib/component/answer/container.answer/container.answer.component.mjs +5 -3
- package/esm2022/lib/component/survey.play/survey.play.component.mjs +20 -3
- package/esm2022/lib/component/survey.question.preview/survey.question.preview.component.mjs +2 -2
- package/esm2022/lib/core/tp.survey.core/tp.survey.core.service.mjs +19 -1
- package/esm2022/lib/core/tp.survey.logic/tp.survey.logic.service.mjs +5 -6
- package/esm2022/lib/pipe/multi.lang.object.to.html/multi.lang.object.to.html.pipe.mjs +12 -4
- package/esm2022/lib/tp.survey.interface.mjs +1 -1
- package/esm2022/lib/tp.survey.type.mjs +1 -1
- package/fesm2022/touchpoll-tp-survey.mjs +62 -16
- package/fesm2022/touchpoll-tp-survey.mjs.map +1 -1
- package/lib/component/answer/answer.master/answer.master.component.d.ts +4 -2
- package/lib/component/answer/container.answer/container.answer.component.d.ts +4 -2
- package/lib/component/survey.play/survey.play.component.d.ts +1 -0
- package/lib/core/tp.survey.core/tp.survey.core.service.d.ts +1 -0
- package/lib/core/tp.survey.logic/tp.survey.logic.service.d.ts +2 -2
- package/lib/pipe/multi.lang.object.to.html/multi.lang.object.to.html.pipe.d.ts +2 -1
- package/lib/tp.survey.interface.d.ts +2 -0
- package/lib/tp.survey.type.d.ts +1 -0
- package/package.json +1 -1
|
@@ -287,7 +287,8 @@ class TpSurveyLogicService {
|
|
|
287
287
|
}
|
|
288
288
|
executeLogic(expression) {
|
|
289
289
|
try {
|
|
290
|
-
|
|
290
|
+
const textExpression = typeof expression !== 'string' ? '' : expression.trim();
|
|
291
|
+
return !textExpression ? true : new Function(`${LOGIC_FUNC_TEXT} return ${textExpression}`).call(this.#vars);
|
|
291
292
|
}
|
|
292
293
|
catch (e) {
|
|
293
294
|
return false;
|
|
@@ -295,10 +296,8 @@ class TpSurveyLogicService {
|
|
|
295
296
|
}
|
|
296
297
|
executePostScript(expression) {
|
|
297
298
|
try {
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
}
|
|
301
|
-
new Function(`${LOGIC_FUNC_TEXT} ${expression}`).call(this.#vars);
|
|
299
|
+
const textExpression = typeof expression !== 'string' ? '' : expression.trim();
|
|
300
|
+
new Function(`${LOGIC_FUNC_TEXT} ${textExpression}`).call(this.#vars);
|
|
302
301
|
}
|
|
303
302
|
catch (e) {
|
|
304
303
|
console.log(e);
|
|
@@ -319,7 +318,7 @@ class MultiLangObjectToHtmlPipe {
|
|
|
319
318
|
this._sanitizer = _sanitizer;
|
|
320
319
|
this._logic = _logic;
|
|
321
320
|
}
|
|
322
|
-
transform(caption, language, logicCaptions) {
|
|
321
|
+
transform(caption, language, logicCaptions, findVariable) {
|
|
323
322
|
//сначала проверим есть ли текст у которого выполняется Expression.
|
|
324
323
|
if (Array.isArray(logicCaptions)) {
|
|
325
324
|
const correctLogicCaption = logicCaptions.find(logicCaption => this._logic.executeLogic(logicCaption.Expression));
|
|
@@ -336,8 +335,16 @@ class MultiLangObjectToHtmlPipe {
|
|
|
336
335
|
}
|
|
337
336
|
//ищем основной текс с нужным языком
|
|
338
337
|
const langObj = caption.find(capt => capt.lang === language);
|
|
339
|
-
const
|
|
340
|
-
|
|
338
|
+
const dirtyHtmlText = langObj?._SYS_CaptionHTML ?? langObj?.CaptionHtml ?? '';
|
|
339
|
+
const normalizeHtmlText = dirtyHtmlText.replace(/(q_\w{16}_A_\w{3}|q_\w{16}|v_\w{16})/gmi, sysName => {
|
|
340
|
+
const caption = !!findVariable ? findVariable(sysName) : 'unknown';
|
|
341
|
+
const newDiv = document.createElement("div");
|
|
342
|
+
newDiv.innerHTML = caption;
|
|
343
|
+
newDiv.textContent;
|
|
344
|
+
return newDiv.textContent ?? '';
|
|
345
|
+
});
|
|
346
|
+
const res = this._sanitizer.bypassSecurityTrustHtml(normalizeHtmlText);
|
|
347
|
+
return res;
|
|
341
348
|
}
|
|
342
349
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: MultiLangObjectToHtmlPipe, deps: [{ token: i1.DomSanitizer }, { token: TpSurveyLogicService }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
343
350
|
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.0.1", ngImport: i0, type: MultiLangObjectToHtmlPipe, isStandalone: true, name: "multiLangObjectToHtml" }); }
|
|
@@ -404,6 +411,8 @@ class AnswerMasterComponent {
|
|
|
404
411
|
constructor() {
|
|
405
412
|
this.language = input.required();
|
|
406
413
|
this.viewModel = input.required();
|
|
414
|
+
this.findVariable = input.required();
|
|
415
|
+
this.repositoryPath = input('');
|
|
407
416
|
this.viewModelE = ViewModel;
|
|
408
417
|
this.onModelChange = (data) => { };
|
|
409
418
|
this.onModelTouched = () => { };
|
|
@@ -425,7 +434,7 @@ class AnswerMasterComponent {
|
|
|
425
434
|
this.control.patchValue(value, { emitEvent: false });
|
|
426
435
|
}
|
|
427
436
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: AnswerMasterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
428
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.0.1", 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: [
|
|
437
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.0.1", 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 }, findVariable: { classPropertyName: "findVariable", publicName: "findVariable", isSignal: true, isRequired: true, transformFunction: null }, repositoryPath: { classPropertyName: "repositoryPath", publicName: "repositoryPath", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
429
438
|
{
|
|
430
439
|
provide: NG_VALUE_ACCESSOR,
|
|
431
440
|
useExisting: forwardRef(() => AnswerMasterComponent),
|
|
@@ -587,7 +596,7 @@ class AnswerSSComponent extends AnswerMasterComponent {
|
|
|
587
596
|
useExisting: forwardRef(() => AnswerSSComponent),
|
|
588
597
|
multi: true
|
|
589
598
|
},
|
|
590
|
-
], 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 survey-object-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 }); }
|
|
599
|
+
], 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 <div class=\"container-caption\">\r\n @if (alt.BackGround.Image) {\r\n <img alt=\"answer logo\" [style.height.px]=\"alt.BackGround.ImageHeight ?? 30\" [src]=\"repositoryPath()+'/' + alt.BackGround.Image\" importance=\"low\" loading=\"lazy\">\r\n }\r\n <span class=\"alternative-ss-ms-caption survey-object-caption\" [innerHTML]= \"alt.MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </div>\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 }); }
|
|
591
600
|
}
|
|
592
601
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: AnswerSSComponent, decorators: [{
|
|
593
602
|
type: Component,
|
|
@@ -608,7 +617,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImpor
|
|
|
608
617
|
useExisting: forwardRef(() => AnswerSSComponent),
|
|
609
618
|
multi: true
|
|
610
619
|
},
|
|
611
|
-
], 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 survey-object-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"] }]
|
|
620
|
+
], 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 <div class=\"container-caption\">\r\n @if (alt.BackGround.Image) {\r\n <img alt=\"answer logo\" [style.height.px]=\"alt.BackGround.ImageHeight ?? 30\" [src]=\"repositoryPath()+'/' + alt.BackGround.Image\" importance=\"low\" loading=\"lazy\">\r\n }\r\n <span class=\"alternative-ss-ms-caption survey-object-caption\" [innerHTML]= \"alt.MultiLangCaptions | multiLangObjectToHtml:language()\"></span>\r\n </div>\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"] }]
|
|
612
621
|
}] });
|
|
613
622
|
|
|
614
623
|
class AnswerInfoComponent extends AnswerMasterComponent {
|
|
@@ -1143,12 +1152,14 @@ class ContainerAnswerComponent {
|
|
|
1143
1152
|
#logic;
|
|
1144
1153
|
#destroyRef;
|
|
1145
1154
|
constructor() {
|
|
1155
|
+
this.findVariable = input.required();
|
|
1146
1156
|
this.question = input.required();
|
|
1147
1157
|
this.language = input.required();
|
|
1148
1158
|
this.viewModel = input.required();
|
|
1149
1159
|
this.answers = input();
|
|
1150
1160
|
this.developerMode = input(false);
|
|
1151
1161
|
this.languageList = input.required();
|
|
1162
|
+
this.repositoryPath = input('');
|
|
1152
1163
|
this.visibleAlternativeList = signal([]);
|
|
1153
1164
|
this.visibleSectionList = signal([]);
|
|
1154
1165
|
this.visibleAdditionalAnswerList = signal([]);
|
|
@@ -1409,7 +1420,7 @@ class ContainerAnswerComponent {
|
|
|
1409
1420
|
return resArray;
|
|
1410
1421
|
}
|
|
1411
1422
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: ContainerAnswerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1412
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.1", 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\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:auto}:host-context(.tp-view-tablet) .container-additional-answer{padding:1em;display:flex;flex-flow:column;align-items:baseline;gap:2em}@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 }); }
|
|
1423
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.1", type: ContainerAnswerComponent, isStandalone: true, selector: "tp-survey-container-answer", inputs: { findVariable: { classPropertyName: "findVariable", publicName: "findVariable", isSignal: true, isRequired: true, transformFunction: null }, 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 }, repositoryPath: { classPropertyName: "repositoryPath", publicName: "repositoryPath", isSignal: true, isRequired: false, 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\r\n @case (questionsType.eqLANG) {\r\n <tp-survey-answer-lang\r\n [languageList]=\"languageList()\"\r\n [findVariable]=\"findVariable()\"\r\n [repositoryPath]=\"repositoryPath()\"\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 [repositoryPath]=\"repositoryPath()\"\r\n [findVariable]=\"findVariable()\"\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 [findVariable]=\"findVariable()\"\r\n [repositoryPath]=\"repositoryPath()\"\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 [findVariable]=\"findVariable()\"\r\n [repositoryPath]=\"repositoryPath()\"\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 [findVariable]=\"findVariable()\"\r\n [repositoryPath]=\"repositoryPath()\"\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 [repositoryPath]=\"repositoryPath()\"\r\n [findVariable]=\"findVariable()\"\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 [repositoryPath]=\"repositoryPath()\"\r\n [findVariable]=\"findVariable()\"\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 [findVariable]=\"findVariable()\"\r\n [repositoryPath]=\"repositoryPath()\"\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:auto}:host-context(.tp-view-tablet) .container-additional-answer{padding:1em;display:flex;flex-flow:column;align-items:baseline;gap:2em}@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 }); }
|
|
1413
1424
|
}
|
|
1414
1425
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: ContainerAnswerComponent, decorators: [{
|
|
1415
1426
|
type: Component,
|
|
@@ -1428,7 +1439,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImpor
|
|
|
1428
1439
|
GetAdditionalValueByValuePipe,
|
|
1429
1440
|
KeyValuesPipe,
|
|
1430
1441
|
AnswerLangComponent
|
|
1431
|
-
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"container-main\" [formGroup]=\"answerForm\">\r\n @switch (question().QuestionType) {\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:auto}:host-context(.tp-view-tablet) .container-additional-answer{padding:1em;display:flex;flex-flow:column;align-items:baseline;gap:2em}@media (max-width: 480px){:host-context(.tp-view-desktop) .container-additional-answer{width:100%}}\n"] }]
|
|
1442
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"container-main\" [formGroup]=\"answerForm\">\r\n @switch (question().QuestionType) {\r\n\r\n @case (questionsType.eqLANG) {\r\n <tp-survey-answer-lang\r\n [languageList]=\"languageList()\"\r\n [findVariable]=\"findVariable()\"\r\n [repositoryPath]=\"repositoryPath()\"\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 [repositoryPath]=\"repositoryPath()\"\r\n [findVariable]=\"findVariable()\"\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 [findVariable]=\"findVariable()\"\r\n [repositoryPath]=\"repositoryPath()\"\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 [findVariable]=\"findVariable()\"\r\n [repositoryPath]=\"repositoryPath()\"\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 [findVariable]=\"findVariable()\"\r\n [repositoryPath]=\"repositoryPath()\"\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 [repositoryPath]=\"repositoryPath()\"\r\n [findVariable]=\"findVariable()\"\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 [repositoryPath]=\"repositoryPath()\"\r\n [findVariable]=\"findVariable()\"\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 [findVariable]=\"findVariable()\"\r\n [repositoryPath]=\"repositoryPath()\"\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:auto}:host-context(.tp-view-tablet) .container-additional-answer{padding:1em;display:flex;flex-flow:column;align-items:baseline;gap:2em}@media (max-width: 480px){:host-context(.tp-view-desktop) .container-additional-answer{width:100%}}\n"] }]
|
|
1432
1443
|
}], ctorParameters: () => [] });
|
|
1433
1444
|
|
|
1434
1445
|
class GetActiveLanguagePipe {
|
|
@@ -1756,6 +1767,24 @@ class TpSurveyCoreService {
|
|
|
1756
1767
|
const answer = this._interview.findAnswerByGuid(guid);
|
|
1757
1768
|
return answer?.answerIsComplete ?? false;
|
|
1758
1769
|
}
|
|
1770
|
+
guidToTextAnswer(guid, languageId) {
|
|
1771
|
+
const answer = this.findAnswerByGuid(guid);
|
|
1772
|
+
const question = this.#findQuestionByGuid(guid);
|
|
1773
|
+
if (!question || !answer || answer.AnswerValue === -97) {
|
|
1774
|
+
return '';
|
|
1775
|
+
}
|
|
1776
|
+
debugger;
|
|
1777
|
+
const questionType = question.QuestionType;
|
|
1778
|
+
switch (questionType) {
|
|
1779
|
+
case QuestionsType.eqOL: return answer.AnswerValue;
|
|
1780
|
+
case QuestionsType.eqSS: {
|
|
1781
|
+
const alternative = question.Alternativelist.find(alt => alt.Value === answer.AnswerValue);
|
|
1782
|
+
const altText = alternative?.MultiLangCaptions.find(obj => obj.lang === languageId);
|
|
1783
|
+
return altText?.CaptionHtml ?? '';
|
|
1784
|
+
}
|
|
1785
|
+
default: return '';
|
|
1786
|
+
}
|
|
1787
|
+
}
|
|
1759
1788
|
#fillOldInterviewData(logicVars, answerList) {
|
|
1760
1789
|
//пропишем старые логические переменные
|
|
1761
1790
|
if (Array.isArray(logicVars)) {
|
|
@@ -2183,8 +2212,25 @@ class SurveyPlayComponent {
|
|
|
2183
2212
|
this.activeLanguage.set(language);
|
|
2184
2213
|
this.#core.goToNextQuestion();
|
|
2185
2214
|
}
|
|
2215
|
+
findVariable(sysName) {
|
|
2216
|
+
//Сюда могут заехать как переменные логические, типа Q_00000000000391A9, так и Q_00000000000391A9_A_001, так и "переменные для ответов" типа V_00000000000391A9
|
|
2217
|
+
//Переменные для ответов ищут ответ на данный вопрос, а потом подставляют туда значения (это всё пока только для SS, MS, OL вопросов)
|
|
2218
|
+
// мы можем брать значения только из заголовка вопроса, альтернативы или секции т.е. на вход могут прийти только Q1 или q1A1 или q1r1 в системном формате
|
|
2219
|
+
try {
|
|
2220
|
+
if (sysName.search(/^v_/gmi) >= 0) { // переменные для ответов типа V1
|
|
2221
|
+
// const qSysName = `Q_${sysName.replace(/^v_/gmi, '')}` ;
|
|
2222
|
+
const guid = Number(`0x${sysName.replace(/^v_/gmi, '')}`);
|
|
2223
|
+
return this.#core.guidToTextAnswer(guid, this.language());
|
|
2224
|
+
}
|
|
2225
|
+
//todo q_var
|
|
2226
|
+
return '';
|
|
2227
|
+
}
|
|
2228
|
+
catch (e) {
|
|
2229
|
+
return '';
|
|
2230
|
+
}
|
|
2231
|
+
}
|
|
2186
2232
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: SurveyPlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2187
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.1", 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" }, 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():question.LogicCaptionsList\"\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{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)}.survey-container-main{--mat-app-background-color: #fdfbff;--mat-app-text-color: #1a1b1f;--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-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-family: rounded;--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;--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;--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-selected-pressed-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-unselected-pressed-icon-color: #1a1b1f;--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-container-shadow-color: #000000;--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-shadow-color: #000000;--mdc-fab-container-shape: 16px;--mdc-fab-icon-size: 24px;--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-shadow-color: #000000;--mdc-fab-small-container-shape: 12px;--mdc-fab-small-icon-size: 24px;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #e3e2e6;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #191c1c;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #e0e3e2;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #201a1b;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #ece0e1;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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;overflow:auto}.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 }); }
|
|
2233
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.1", 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" }, 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():question.LogicCaptionsList: findVariable.bind(this)\"\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 [findVariable]=\"findVariable.bind(this)\"\r\n [answers]=\"currentQuestionViewData.answers\"\r\n [languageList]=\"questionary().BaseParams.LanguageList\"\r\n [repositoryPath]=\"questionary().Info.repository_path\"\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{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)}.survey-container-main{--mat-app-background-color: #fdfbff;--mat-app-text-color: #1a1b1f;--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-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-family: rounded;--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;--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;--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-selected-pressed-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-unselected-pressed-icon-color: #1a1b1f;--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-container-shadow-color: #000000;--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-shadow-color: #000000;--mdc-fab-container-shape: 16px;--mdc-fab-icon-size: 24px;--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-shadow-color: #000000;--mdc-fab-small-container-shape: 12px;--mdc-fab-small-icon-size: 24px;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #e3e2e6;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #191c1c;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #e0e3e2;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #201a1b;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #ece0e1;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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;overflow:auto}.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: ["findVariable", "question", "language", "viewModel", "answers", "developerMode", "languageList", "repositoryPath"], 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 }); }
|
|
2188
2234
|
}
|
|
2189
2235
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: SurveyPlayComponent, decorators: [{
|
|
2190
2236
|
type: Component,
|
|
@@ -2198,7 +2244,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImpor
|
|
|
2198
2244
|
NgTemplateOutlet,
|
|
2199
2245
|
MultiLangObjectToHtmlPipe,
|
|
2200
2246
|
SurveyThemeDirective,
|
|
2201
|
-
], 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():question.LogicCaptionsList\"\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{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)}.survey-container-main{--mat-app-background-color: #fdfbff;--mat-app-text-color: #1a1b1f;--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-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-family: rounded;--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;--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;--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-selected-pressed-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-unselected-pressed-icon-color: #1a1b1f;--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-container-shadow-color: #000000;--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-shadow-color: #000000;--mdc-fab-container-shape: 16px;--mdc-fab-icon-size: 24px;--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-shadow-color: #000000;--mdc-fab-small-container-shape: 12px;--mdc-fab-small-icon-size: 24px;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #e3e2e6;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #191c1c;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #e0e3e2;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #201a1b;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #ece0e1;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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;overflow:auto}.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"] }]
|
|
2247
|
+
], 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():question.LogicCaptionsList: findVariable.bind(this)\"\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 [findVariable]=\"findVariable.bind(this)\"\r\n [answers]=\"currentQuestionViewData.answers\"\r\n [languageList]=\"questionary().BaseParams.LanguageList\"\r\n [repositoryPath]=\"questionary().Info.repository_path\"\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{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)}.survey-container-main{--mat-app-background-color: #fdfbff;--mat-app-text-color: #1a1b1f;--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-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-family: rounded;--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;--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;--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-selected-pressed-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-unselected-pressed-icon-color: #1a1b1f;--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-container-shadow-color: #000000;--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-shadow-color: #000000;--mdc-fab-container-shape: 16px;--mdc-fab-icon-size: 24px;--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-shadow-color: #000000;--mdc-fab-small-container-shape: 12px;--mdc-fab-small-icon-size: 24px;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #e3e2e6;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #191c1c;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #e0e3e2;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #201a1b;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #ece0e1;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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;overflow:auto}.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"] }]
|
|
2202
2248
|
}], ctorParameters: () => [] });
|
|
2203
2249
|
|
|
2204
2250
|
class SurveyQuestionPreviewComponent {
|
|
@@ -2214,7 +2260,7 @@ class SurveyQuestionPreviewComponent {
|
|
|
2214
2260
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: SurveyQuestionPreviewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2215
2261
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.1", 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: [
|
|
2216
2262
|
TpSurveyLogicService,
|
|
2217
|
-
], 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{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)}.survey-container-main{--mat-app-background-color: #fdfbff;--mat-app-text-color: #1a1b1f;--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-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-family: rounded;--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;--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;--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-selected-pressed-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-unselected-pressed-icon-color: #1a1b1f;--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-container-shadow-color: #000000;--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-shadow-color: #000000;--mdc-fab-container-shape: 16px;--mdc-fab-icon-size: 24px;--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-shadow-color: #000000;--mdc-fab-small-container-shape: 12px;--mdc-fab-small-icon-size: 24px;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #e3e2e6;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #191c1c;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #e0e3e2;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #201a1b;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #ece0e1;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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;overflow:auto}.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 }); }
|
|
2263
|
+
], 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{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)}.survey-container-main{--mat-app-background-color: #fdfbff;--mat-app-text-color: #1a1b1f;--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-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-family: rounded;--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;--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;--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-selected-pressed-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-unselected-pressed-icon-color: #1a1b1f;--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-container-shadow-color: #000000;--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-shadow-color: #000000;--mdc-fab-container-shape: 16px;--mdc-fab-icon-size: 24px;--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-shadow-color: #000000;--mdc-fab-small-container-shape: 12px;--mdc-fab-small-icon-size: 24px;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #e3e2e6;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #191c1c;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #e0e3e2;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #201a1b;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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-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-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-selected-pressed-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-unselected-pressed-icon-color: #ece0e1;--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-extended-fab-container-shadow-color: #000000;--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-container-shadow-color: #000000;--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);--mdc-fab-small-container-shadow-color: #000000;--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 .survey-object-caption p:empty{min-height:1em}.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;overflow:auto}.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: ["findVariable", "question", "language", "viewModel", "answers", "developerMode", "languageList", "repositoryPath"], 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 }); }
|
|
2218
2264
|
}
|
|
2219
2265
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.1", ngImport: i0, type: SurveyQuestionPreviewComponent, decorators: [{
|
|
2220
2266
|
type: Component,
|