ngx-wapp-components 1.34.21 → 1.34.22
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/esm2020/lib/misc/w-filter-panel/w-filter-panel.component.mjs +16 -4
- package/fesm2015/ngx-wapp-components.mjs +16 -3
- package/fesm2015/ngx-wapp-components.mjs.map +1 -1
- package/fesm2020/ngx-wapp-components.mjs +15 -3
- package/fesm2020/ngx-wapp-components.mjs.map +1 -1
- package/lib/misc/w-filter-panel/w-filter-panel.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -586,9 +586,21 @@ export class WFilterPanelComponent {
|
|
|
586
586
|
if (type == this.qbDataTypeEnum.BooleanSelect) {
|
|
587
587
|
return 1;
|
|
588
588
|
}
|
|
589
|
+
if (type == this.qbDataTypeEnum.Multiselect) {
|
|
590
|
+
return this.parseStringToNumberArray(value);
|
|
591
|
+
}
|
|
592
|
+
if (type == this.qbDataTypeEnum.TranslatedSelect) {
|
|
593
|
+
return Number(value);
|
|
594
|
+
}
|
|
589
595
|
}
|
|
590
596
|
return value;
|
|
591
597
|
}
|
|
598
|
+
parseStringToNumberArray(input) {
|
|
599
|
+
return input
|
|
600
|
+
.split(',')
|
|
601
|
+
.map(num => Number(num.trim()))
|
|
602
|
+
.filter(num => !isNaN(num));
|
|
603
|
+
}
|
|
592
604
|
getDataType(id) {
|
|
593
605
|
return this.qbDataEnums.find(value => value === id)?.toString() ?? "";
|
|
594
606
|
}
|
|
@@ -654,7 +666,7 @@ export class WFilterPanelComponent {
|
|
|
654
666
|
getTranslatedSelectOptions(options) {
|
|
655
667
|
return options.map((option) => {
|
|
656
668
|
return {
|
|
657
|
-
name: this.translationsObject.translatedSelectOptions[option.name.charAt(0).toLowerCase() + option.name.slice(1)],
|
|
669
|
+
name: this.translationsObject.translatedSelectOptions[option.name.charAt(0).toLowerCase() + option.name.slice(1)] ?? option.name,
|
|
658
670
|
value: option.value
|
|
659
671
|
};
|
|
660
672
|
});
|
|
@@ -685,10 +697,10 @@ export class WFilterPanelComponent {
|
|
|
685
697
|
}
|
|
686
698
|
}
|
|
687
699
|
WFilterPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WFilterPanelComponent, deps: [{ token: i1.FormBuilder }, { token: i2.ApiService }, { token: i3.SessionStorageService }], target: i0.ɵɵFactoryTarget.Component });
|
|
688
|
-
WFilterPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: WFilterPanelComponent, selector: "w-filter-panel", inputs: { authorizationApiUrl: ["apiUrl", "authorizationApiUrl"], commonDataApiUrl: "commonDataApiUrl", notificationApiUrl: "notificationApiUrl", segmentationApiUrl: "segmentationApiUrl", token: "token", commonDataToken: "commonDataToken", segmentationToken: "segmentationToken", filterId: "filterId", dataIsLoadingSearchButton: "dataIsLoadingSearchButton", tenantId: "tenantId", applicationId: "applicationId", fieldsToKeepLocalDate: "fieldsToKeepLocalDate", fieldsForNotificationEvent: "fieldsForNotificationEvent", notificationEventEntity: "notificationEventEntity", translationsObject: "translationsObject" }, outputs: { searchClicked: "searchClicked", clearClicked: "clearClicked", lastQuery: "lastQuery", hasDefaultValues: "hasDefaultValues" }, viewQueries: [{ propertyName: "queryBuilder", first: true, predicate: ["advancedQueryBuilder"], descendants: true }, { propertyName: "basicQueryBuilderObject", first: true, predicate: ["basicQueryBuilderObject"], descendants: true }], ngImport: i0, template: "<!-- TODO: Intentar otra vez pasar los componentes a los de w- porque no se alinena y el w-edit-select no va bien en field. \r\n Ahora se conservan los de p-w con estilos. -->\r\n<p-blockUI styleClass=\"w-filter-panel-blockui\" [autoZIndex]=\"false\" [target]=\"filterPanel\" [blocked]=\"dataIsLoadingSearchButton\"></p-blockUI>\r\n\r\n<p-card styleClass=\"w-filter-panel-no-style-card\" #filterPanel>\r\n <div *ngIf=\"queryConfigReady\" class=\"w-filter-panel-styles\">\r\n <div *ngIf=\"!filterPanelObject.allowAdvancedSearch; else baiscAndAdvanced\">\r\n <div [ngClass]=\"{ 'w-filter-panel-container-advanced' : isAdvancedSearch, 'w-filter-panel-container-basic' : !isAdvancedSearch }\">\r\n <ng-container *ngTemplateOutlet=\"basic\"></ng-container>\r\n <div class=\"w-filter-panel-buttons\">\r\n <w-button icon=\"w-icon closeCircle\" buttonClass=\"cancel-filter-button\" [label]=\"translationsObject.clearButtonLabel\" type=\"tertiary\" size=\"small\" (onClick)=\"onClearClicked()\"></w-button>\r\n <w-button icon=\"pi pi-filter-fill\" buttonClass=\"set-filter-button\" [label]=\"translationsObject.searchButtonLabel\" size=\"small\" (onClick)=\"onSearchClicked()\"></w-button>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <ng-template #baiscAndAdvanced>\r\n <div [ngClass]=\"{ 'w-filter-panel-container-advanced' : isAdvancedSearch, 'w-filter-panel-container-basic' : !isAdvancedSearch }\">\r\n <ng-container *ngIf=\"!isAdvancedSearch; else advancedView\">\r\n <ng-container *ngTemplateOutlet=\"basic\"></ng-container>\r\n </ng-container>\r\n <ng-template #advancedView>\r\n <ng-container *ngTemplateOutlet=\"advanced\"></ng-container>\r\n </ng-template>\r\n\r\n <div class=\"w-filter-panel-buttons\" [class.pt-3]=\"isAdvancedSearch\">\r\n <w-button buttonClass=\"cancel-filter-button\" [label]=\"translationsObject.clearButtonLabel\" icon=\"w-icon closeCircle\" type=\"tertiary\" size=\"small\" (onClick)=\"onClearClicked()\"></w-button>\r\n <w-button buttonClass=\"set-filter-button\" [label]=\"translationsObject.searchButtonLabel\" icon=\"pi pi-filter-fill\" size=\"small\" (onClick)=\"onSearchClicked()\" [loading]=\"dataIsLoadingSearchButton\"></w-button>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </div>\r\n</p-card>\r\n\r\n <ng-template #basic>\r\n <div *ngIf=\"filterPanelObject.allowAdvancedSearch\" class=\"flex justify-content-end flex-wrap\">\r\n <w-button buttonClass=\"change-filter-button\" icon=\"pi pi-sync\" [label]=\"translationsObject.advancedSearchTabLabel\" type=\"text\" (onClick)=\"updateSearchType()\"></w-button>\r\n </div>\r\n <div *ngIf=\"basicQuery.rules.length > 0\" class=\"w-filter-panel-basic query-builder-style fadein animation-duration-500\">\r\n <query-builder #basicQueryBuilderObject [formControl]='queryCtrl' [config]='basicQueryConfig' [allowRuleset]='filterPanelObject.allowRuleSet' [allowRuleset]=\"filterPanelObject.allowRuleSet\" [persistValueOnFieldChange]='persistValueOnFieldChange'>\r\n <ng-container *queryButtonGroup=\"let ruleset;\">\r\n </ng-container>\r\n\r\n <ng-container *queryRemoveButton=\"let rule; let removeRule=removeRule\">\r\n </ng-container>\r\n\r\n <ng-container *querySwitchGroup=\"let ruleset; let onChange=onChange\">\r\n </ng-container>\r\n\r\n <ng-container *queryEntity=\"let rule; let entities=entities; let onChange=onChange\">\r\n <p-dropdown [disabled]=\"true\" class=\" w-edit-select-small\" *ngIf=\"false\" appendTo=\"body\" [options]=\"entities\" [(ngModel)]=\"rule.entity\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </ng-container>\r\n\r\n <ng-container *queryField=\"let rule; let fields=fields; let onChange=onChange; let getFields = getFields; let value=value; let name=name; let index=index\">\r\n <span appendTo=\"body\" class=\"w-filter-panel-input-text-label\" [class.w-filter-panel-boolean-label-width]=\"fieldIsBoolean(rule.field, getFields(rule.entity))\" optionLabel=\"name\" optionValue=\"value\">{{ getQueryFieldName(rule.field, getFields(rule.entity))}}</span>\r\n </ng-container>\r\n\r\n <ng-container *queryOperator=\"let rule; let operators=operators; let onChange=onChange\">\r\n <span class=\"query-builder-operator-width\">\r\n <p-dropdown class=\" w-edit-select-small\" *ngIf=\"isAdvancedSearch\" appendTo=\"body\" [(ngModel)]=\"rule.operator\" [options]=\"operators\" (ngModelChange)=\"onChange(rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Boolean.toString(); let onChange=onChange\">\r\n <span class=\"query-builder-operator-width\">\r\n <w-toggle-button size=\"small\" [(ngModel)]=\"rule.value\" onLabel=\"True\" offLabel=\"False\" (ngModelChange)=\"onChange()\"></w-toggle-button>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Datetime.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <w-edit-calendar appendTo=\"body\" size=\"small\" [showIcon]=\"false\" [dataType]=\"isToKeepLocalDate(rule.field) ? 'date' : 'string'\" [(ngModel)]=\"rule.value\" (onChange)=\"onChange()\" [showTime]=\"true\" [showSeconds]=\"true\" [firstDayOfWeek]=\"translationsObject.firstDayOfWeek ?? 1\" [placeholder]=\"translationsObject.fieldsPlaceholders.datetime\" [showLabel]=\"false\"></w-edit-calendar>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Decimal.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-inputNumber inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"w-edit-input-number-small\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" mode=\"decimal\" [minFractionDigits]=\"2\" [maxFractionDigits]=\"5\" [min]=\"0\" [max]=\"100\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.decimal\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"options\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Number.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-inputNumber [useGrouping]=\"false\" inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"w-edit-input-number-small\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" [min]=\"0\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.number\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Text.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <w-edit-input-text class=\"w-edit-input-text-small-height\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.text\" [showLabel]=\"false\"></w-edit-input-text>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Multiselect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-multiSelect class=\"w-edit-multiselect-small\" [appendTo]=\"'body'\" [options]=\"options\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" display=\"chip\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-multiSelect>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.NullableSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"getNullableSelectOptions(options)\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" \r\n [placeholder]=\"nullableSelectPlaceholder(rule, options)\">\r\n </p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.BooleanSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"getBooleanSelectOptions(options)\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Address.toString(); let onChange=onChange\">\r\n <w-address-field [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [operator]=\"rule.operator\" [segmentationApiUrl]=\"segmentationApiUrl\" [segmentationApiToken]=\"segmentationToken\"></w-address-field>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.TranslatedSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getTranslatedSelectOptions(options)\" [ngModelOptions]=\"{standalone: true}\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.NotificationEventList.toString(); let onChange=onChange\">\r\n <w-notifications-event-field class=\"w-filter-panel-notifications-event-field\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [operator]=\"rule.operator\" [notificationApiUrl]=\"notificationApiUrl\" [notificationApiToken]=\"commonDataToken\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></w-notifications-event-field>\r\n </ng-container>\r\n </query-builder>\r\n </div>\r\n\r\n <ng-container *ngIf=\"!isAdvancedSearch && basicQuery.rules.length==0\" >\r\n <ng-container *ngTemplateOutlet=\"noQueryData\"></ng-container>\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template #advanced>\r\n <div [class.query-builder-style]=\"!filterPanelObject.allowRuleSet\" class=\"w-filter-panel-container fadein animation-duration-500\">\r\n <div *ngIf=\"filterPanelObject.allowRuleSet\" class=\"flex justify-content-end flex-wrap\">\r\n <w-button buttonClass=\"change-filter-button\" icon=\"pi pi-sync\" class=\"mb-2\" [label]=\"translationsObject.basicSearchTabLabel\" type=\"text\" (onClick)=\"updateSearchType()\"></w-button>\r\n </div>\r\n <query-builder class=\"w-filter-panel-advanced query-builder-style\" #advancedQueryBuilder [formControl]='advancedQueryCtrl' [config]='advancedQueryConfig' [allowRuleset]='filterPanelObject.allowRuleSet' [allowCollapse]='filterPanelObject.allowColapse' [allowRuleset]=\"filterPanelObject.allowRuleSet\" [persistValueOnFieldChange]='persistValueOnFieldChange'>\r\n <div *ngIf=\"filterPanelObject.allowRuleSet; else noRuleSet\">\r\n <ng-container *queryButtonGroup=\"let ruleset; let addRule=addRule; let addRuleSet=addRuleSet; let removeRuleSet=removeRuleSet\">\r\n <span class=\"flex gap-3\">\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleButtonLabel\" type=\"secondary\" size=\"small\" (onClick)=\"addRule()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleSetButtonLabel\" type=\"secondary\" icon=\"pi pi-plus\" size=\"small\" *ngIf=\"addRuleSet\" (onClick)=\"addRuleSet()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.removeRuleSetButtonLabel\" type=\"tertiary\" icon=\"pi pi-minus\" size=\"small\" *ngIf=\"removeRuleSet\" (onClick)=\"removeRuleSet()\"></w-button>\r\n </span>\r\n </ng-container>\r\n </div>\r\n\r\n <ng-template #noRuleSet>\r\n <ng-container *queryButtonGroup=\"let ruleset; let addRule=addRule; let addRuleSet=addRuleSet; let removeRuleSet=removeRuleSet\">\r\n <div class=\"flex justify-content-end flex-wrap\">\r\n <w-button [label]=\"translationsObject.basicSearchTabLabel\" type=\"text\" (onClick)=\"updateSearchType()\"></w-button>\r\n </div>\r\n <span class=\"advanced-query-button-group flex gap-3\">\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleButtonLabel\" type=\"secondary\" size=\"small\" (onClick)=\"addRule()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleSetButtonLabel\" type=\"secondary\" icon=\"pi pi-plus\" size=\"small\" *ngIf=\"addRuleSet\" (onClick)=\"addRuleSet()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.removeRuleSetButtonLabel\" type=\"tertiary\" icon=\"pi pi-minus\" size=\"small\" *ngIf=\"removeRuleSet\" (onClick)=\"removeRuleSet()\"></w-button>\r\n </span>\r\n </ng-container>\r\n </ng-template>\r\n <ng-container *queryArrowIcon>\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-angle-right\" class=\"p-button-rounded p-button-text\"></button>\r\n </ng-container>\r\n\r\n <ng-container *queryRemoveButton=\"let rule; let removeRule=removeRule\">\r\n <w-button class=\"\" label=\"\" size=\"small\" type=\"tertiary\" icon=\"pi pi-times\" (onClick)=\"removeRule(rule)\"></w-button>\r\n </ng-container>\r\n\r\n <ng-container *querySwitchGroup=\"let ruleset; let onChange=onChange\">\r\n <div *ngIf=\"ruleset\" class=\"w-filter-panel-switch-group-padding q-inline-block-display inline-flex\">\r\n <w-select-button *ngIf=\"filterPanelObject.allowLogicalRule\" [stateOptions]=\"[{label: 'And', value: 'and'}, {label: 'Or', value: 'or'}]\"\r\n [(ngModel)]=\"ruleset.condition\"\r\n [size]=\"'small'\"\r\n (value)=\"ruleset.condition = $event\">\r\n </w-select-button>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-container *queryEntity=\"let rule; let entities=entities; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width\" [ngClass]=\"{'w-no-entity-mode' : !filterPanelObject.enityMode}\">\r\n <p-dropdown *ngIf=\"filterPanelObject.enityMode\" class=\"field-gap w-edit-select-small w-entity-dropdown\" appendTo=\"body\" [options]=\"entities\" [(ngModel)]=\"rule.entity\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryField=\"let rule; let fields=fields; let onChange=onChange; let getFields = getFields\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-list-field class=\"field-gap\" appendTo=\"body\" [options]=\"getFields(rule.entity)\" [(ngModel)]=\"rule.field\" [operator]=\"'='\" (ngModelChange)=\"onChange($event, rule)\" [onlyDropdown]=\"true\"></w-list-field>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryOperator=\"let rule; let operators=operators; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-operators q-inline-block-display\" [ngClass]=\"{'w-field-nullable' : operators.includes('nullable')}\">\r\n <p-dropdown *ngIf=\"!operators.includes('nullable')\" class=\"field-gap w-edit-select-small\" appendTo=\"body\" [(ngModel)]=\"rule.operator\" [options]=\"operators\" (ngModelChange)=\"onChange(rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Boolean.toString(); let onChange=onChange\">\r\n <w-toggle-button class=\"field-gap toggle-button-align\" size=\"small\" [(ngModel)]=\"rule.value\" onLabel=\"True\" offLabel=\"False\" (ngModelChange)=\"onChange()\"></w-toggle-button>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Datetime.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-edit-calendar class=\"field-gap\" appendTo=\"body\" size=\"small\" [dataType]=\"isToKeepLocalDate(rule.field) ? 'date' : 'string'\" [showIcon]=\"false\" [(ngModel)]=\"rule.value\" (onChange)=\"onChange()\" [showTime]=\"true\" [showSeconds]=\"true\" [firstDayOfWeek]=\"translationsObject.firstDayOfWeek ?? 1\" [placeholder]=\"translationsObject.fieldsPlaceholders.datetime\" [displayInlineBlock]=\"true\" [showLabel]=\"false\"></w-edit-calendar>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Decimal.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"field-gap w-edit-input-number-small w-edit-input-number-small-height\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" mode=\"decimal\" [minFractionDigits]=\"2\" [maxFractionDigits]=\"5\" [min]=\"0\" [max]=\"100\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.decimal\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown *ngIf=\"!isMultiselect(rule)\" class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"options\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n <p-multiSelect *ngIf=\"isMultiselect(rule)\" class=\"w-edit-multiselect-small\" [appendTo]=\"'body'\" [options]=\"options\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" display=\"chip\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-multiSelect>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display field-gap\">\r\n <w-list-field [options]=\"options\" [(ngModel)]=\"rule.value\" [operator]=\"rule.operator\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></w-list-field>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Number.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber [useGrouping]=\"false\" inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"field-gap w-edit-input-number-small w-edit-input-number-small-height\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" [min]=\"0\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.number\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Text.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <input class=\"field-gap w-edit-input-text-small-height w-edit-input-text-small\" type=\"text\" pInputText [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.text\"/>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Multiselect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-multiSelect class=\"w-edit-multiselect-small\" [appendTo]=\"'body'\" [options]=\"options\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" display=\"chip\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-multiSelect>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Address.toString(); let onChange=onChange\">\r\n <w-address-field [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [operator]=\"rule.operator\" [segmentationApiUrl]=\"segmentationApiUrl\" [segmentationApiToken]=\"segmentationToken\" [selectPlaceholder]=\"translationsObject.fieldsPlaceholders.list\"></w-address-field>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.NullableSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display w-entity-nullable\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getNullableSelectOptions(options)\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.BooleanSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getBooleanSelectOptions(options)\" [ngModelOptions]=\"{standalone: true}\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.TranslatedSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getTranslatedSelectOptions(options)\" [ngModelOptions]=\"{standalone: true}\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n </query-builder>\r\n\r\n <ng-container *ngIf=\"isAdvancedSearch && advancedQuery.rules.length==0\" >\r\n <ng-container *ngTemplateOutlet=\"noQueryData\"></ng-container>\r\n </ng-container>\r\n\r\n <!-- Grouped filter -->\r\n <div *ngIf=\"filterPanelObject.allowGrouped\">\r\n <div class=\"py-5\">\r\n <w-view-card-title-text [cardTitle]=\"translationsObject.groupedFilterTitle\"></w-view-card-title-text>\r\n </div>\r\n\r\n <query-builder *ngIf=\"groupedQuery.rules.length > 0\" class=\"w-filter-panel-grouped query-builder-style\" [formControl]='groupedQueryCtrl' [config]='advancedQueryConfig' [allowRuleset]='filterPanelObject.allowRuleSet' [allowCollapse]='filterPanelObject.allowColapse' [allowRuleset]=\"filterPanelObject.allowRuleSet\" [persistValueOnFieldChange]='persistValueOnFieldChange'>\r\n <ng-container *queryButtonGroup=\"let ruleset; let addRule=addRule; let addRuleSet=addRuleSet; let removeRuleSet=removeRuleSet\">\r\n <div class=\"flex gap-3\">\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleButtonLabel\" type=\"secondary\" size=\"small\" (onClick)=\"addRule()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleSetButtonLabel\" type=\"secondary\" icon=\"pi pi-plus\" size=\"small\" *ngIf=\"addRuleSet\" (onClick)=\"addRuleSet()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.removeRuleSetButtonLabel\" type=\"tertiary\" icon=\"pi pi-minus\" size=\"small\" *ngIf=\"removeRuleSet\" (onClick)=\"removeRuleSet()\"></w-button>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-container *queryArrowIcon>\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-angle-right\" class=\"p-button-rounded p-button-text\"></button>\r\n </ng-container>\r\n\r\n <ng-container *queryRemoveButton=\"let rule; let removeRule=removeRule\">\r\n <w-button class=\"\" label=\"\" size=\"small\" type=\"tertiary\" icon=\"pi pi-times\" (onClick)=\"removeRule(rule)\"></w-button>\r\n </ng-container>\r\n\r\n <ng-container *querySwitchGroup=\"let ruleset; let onChange=onChange\">\r\n <div class=\"w-filter-panel-switch-group-padding q-inline-block-display inline-flex\" *ngIf=\"ruleset\">\r\n <w-select-button *ngIf=\"filterPanelObject.allowLogicalRule\" [stateOptions]=\"[{label: 'And', value: 'and'}, {label: 'Or', value: 'or'}]\"\r\n [(ngModel)]=\"ruleset.condition\"\r\n [size]=\"'small'\"\r\n (value)=\"ruleset.condition = $event\">\r\n </w-select-button>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-container *queryEntity=\"let rule; let entities=entities; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width\" [ngClass]=\"{'w-no-entity-mode' : !filterPanelObject.enityMode}\">\r\n <p-dropdown class=\"w-edit-select-small field-gap w-entity-dropdown\" *ngIf=\"filterPanelObject.enityMode\" appendTo=\"body\" [options]=\"entities\" [(ngModel)]=\"rule.entity\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryField=\"let rule; let fields=fields; let onChange=onChange; let getFields = getFields\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"getFields(rule.entity)\" [(ngModel)]=\"rule.field\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryOperator=\"let rule; let operators=operators; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-operators q-inline-block-display\" [ngClass]=\"{'w-field-nullable' : operators.includes('nullable')}\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [(ngModel)]=\"rule.operator\" [options]=\"operators\" (ngModelChange)=\"onChange(rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Boolean.toString(); let onChange=onChange\">\r\n <w-toggle-button class=\"field-gap toggle-button-align\" size=\"small\" [(ngModel)]=\"rule.value\" onLabel=\"True\" offLabel=\"False\" (ngModelChange)=\"onChange()\"></w-toggle-button>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Datetime.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-edit-calendar class=\"field-gap\" appendTo=\"body\" size=\"small\" [dataType]=\"isToKeepLocalDate(rule.field) ? 'date' : 'string'\" [showIcon]=\"false\" [(ngModel)]=\"rule.value\" (onChange)=\"onChange()\" [showTime]=\"true\" [showSeconds]=\"true\" [placeholder]=\"translationsObject.fieldsPlaceholders.datetime\" [displayInlineBlock]=\"true\"></w-edit-calendar>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Decimal.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber class=\"flex flex-1\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" mode=\"decimal\" [minFractionDigits]=\"2\" [maxFractionDigits]=\"5\" [min]=\"0\" [max]=\"100\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.decimal\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-list-field [options]=\"options\" [(ngModel)]=\"rule.value\" [operator]=\"rule.operator\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></w-list-field>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Number.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber [useGrouping]=\"false\" inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"field-gap w-edit-input-number-small w-edit-input-number-small-height\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" [min]=\"0\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.number\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Text.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width\">\r\n <input class=\"field-gap w-edit-input-text-small-height w-edit-input-text-small\" type=\"text\" pInputText [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.text\"/>\r\n </span>\r\n </ng-container>\r\n\r\n </query-builder>\r\n\r\n <ng-container *ngIf=\"isAdvancedSearch && groupedQuery.rules.length==0\" >\r\n <ng-container *ngTemplateOutlet=\"noQueryData\"></ng-container>\r\n </ng-container>\r\n </div>\r\n </div>\r\n </ng-template>\r\n\r\n <ng-template #noQueryData>\r\n <div class=\"flex justify-content-center flex-wrap card-container surface-50\">\r\n <div class=\"flex align-items-center justify-content-center w-full h-4rem text-gray-900 border-round m-2\">\r\n {{translationsObject.noRulesLabel}}\r\n </div>\r\n </div>\r\n </ng-template>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder,:host ::ng-deep .w-edit-select-small .p-dropdown .p-placeholder{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput,:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-focus,:host ::ng-deep .w-edit-select-small .p-dropdown:not(.p-disabled).p-focus,::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput,::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:hover{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,.w-button-small-tertiary-label-text,.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled,:host ::ng-deep .w-edit-select-small .p-disabled,::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:disabled{background-color:#f1f3f4!important;border-color:#e8ebee!important;opacity:1!important}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{color:#1f2224}.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder,:host ::ng-deep .w-edit-select-small .p-dropdown .p-placeholder{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled{color:#5f6468}.w-input-small-placeholder-text-disabled-only-color,:host ::ng-deep .w-edit-select-small .p-disabled .p-inputtext{color:#5f6468}.w-input-small-text-icon,.w-input-small-select-options-text{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,.w-input-medium-placeholder-text-only-color{color:#1f2224}.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text-disabled-only-color{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px;pointer-events:none}::ng-deep .p-tooltip.p-tooltip-left,.p-tooltip.p-tooltip-left{margin-right:6px;width:max-content;transform:translate(-6px)}::ng-deep .p-tooltip.p-tooltip-left .p-tooltip-arrow,.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#fff!important;top:50%;right:-3px;margin-top:-4px;border-width:4px 0 4px 6px!important}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.grid{display:flex;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem;margin-top:-.5rem}.grid>.col,.grid>[class*=col]{box-sizing:border-box}.grid-nogutter{margin-right:0;margin-left:0;margin-top:0}.grid-nogutter>.col,.grid-nogutter>[class*=col-]{padding:0}.col{flex-grow:1;flex-basis:0;padding:.5rem}.col-fixed{flex:0 0 auto;padding:.5rem}.col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.col-3{flex:0 0 auto;padding:.5rem;width:25%}.col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.col-6{flex:0 0 auto;padding:.5rem;width:50%}.col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.col-9{flex:0 0 auto;padding:.5rem;width:75%}.col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.col-12{flex:0 0 auto;padding:.5rem;width:100%}@media screen and (min-width: 576px){.sm\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.sm\\:col-fixed{flex:0 0 auto;padding:.5rem}.sm\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.sm\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.sm\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.sm\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.sm\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.sm\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.sm\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.sm\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.sm\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.sm\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.sm\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.sm\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 768px){.md\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.md\\:col-fixed{flex:0 0 auto;padding:.5rem}.md\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.md\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.md\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.md\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.md\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.md\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.md\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.md\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.md\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.md\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.md\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.md\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 992px){.lg\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.lg\\:col-fixed{flex:0 0 auto;padding:.5rem}.lg\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.lg\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.lg\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.lg\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.lg\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.lg\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.lg\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.lg\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.lg\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.lg\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.lg\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.lg\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 1200px){.xl\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.xl\\:col-fixed{flex:0 0 auto;padding:.5rem}.xl\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.xl\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.xl\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.xl\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.xl\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.xl\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.xl\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.xl\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.xl\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.xl\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.xl\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.xl\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}.col-offset-0{margin-left:0!important}.col-offset-1{margin-left:8.3333%!important}.col-offset-2{margin-left:16.6667%!important}.col-offset-3{margin-left:25%!important}.col-offset-4{margin-left:33.3333%!important}.col-offset-5{margin-left:41.6667%!important}.col-offset-6{margin-left:50%!important}.col-offset-7{margin-left:58.3333%!important}.col-offset-8{margin-left:66.6667%!important}.col-offset-9{margin-left:75%!important}.col-offset-10{margin-left:83.3333%!important}.col-offset-11{margin-left:91.6667%!important}.col-offset-12{margin-left:100%!important}@media screen and (min-width: 576px){.sm\\:col-offset-0{margin-left:0!important}.sm\\:col-offset-1{margin-left:8.3333%!important}.sm\\:col-offset-2{margin-left:16.6667%!important}.sm\\:col-offset-3{margin-left:25%!important}.sm\\:col-offset-4{margin-left:33.3333%!important}.sm\\:col-offset-5{margin-left:41.6667%!important}.sm\\:col-offset-6{margin-left:50%!important}.sm\\:col-offset-7{margin-left:58.3333%!important}.sm\\:col-offset-8{margin-left:66.6667%!important}.sm\\:col-offset-9{margin-left:75%!important}.sm\\:col-offset-10{margin-left:83.3333%!important}.sm\\:col-offset-11{margin-left:91.6667%!important}.sm\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 768px){.md\\:col-offset-0{margin-left:0!important}.md\\:col-offset-1{margin-left:8.3333%!important}.md\\:col-offset-2{margin-left:16.6667%!important}.md\\:col-offset-3{margin-left:25%!important}.md\\:col-offset-4{margin-left:33.3333%!important}.md\\:col-offset-5{margin-left:41.6667%!important}.md\\:col-offset-6{margin-left:50%!important}.md\\:col-offset-7{margin-left:58.3333%!important}.md\\:col-offset-8{margin-left:66.6667%!important}.md\\:col-offset-9{margin-left:75%!important}.md\\:col-offset-10{margin-left:83.3333%!important}.md\\:col-offset-11{margin-left:91.6667%!important}.md\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 992px){.lg\\:col-offset-0{margin-left:0!important}.lg\\:col-offset-1{margin-left:8.3333%!important}.lg\\:col-offset-2{margin-left:16.6667%!important}.lg\\:col-offset-3{margin-left:25%!important}.lg\\:col-offset-4{margin-left:33.3333%!important}.lg\\:col-offset-5{margin-left:41.6667%!important}.lg\\:col-offset-6{margin-left:50%!important}.lg\\:col-offset-7{margin-left:58.3333%!important}.lg\\:col-offset-8{margin-left:66.6667%!important}.lg\\:col-offset-9{margin-left:75%!important}.lg\\:col-offset-10{margin-left:83.3333%!important}.lg\\:col-offset-11{margin-left:91.6667%!important}.lg\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 1200px){.xl\\:col-offset-0{margin-left:0!important}.xl\\:col-offset-1{margin-left:8.3333%!important}.xl\\:col-offset-2{margin-left:16.6667%!important}.xl\\:col-offset-3{margin-left:25%!important}.xl\\:col-offset-4{margin-left:33.3333%!important}.xl\\:col-offset-5{margin-left:41.6667%!important}.xl\\:col-offset-6{margin-left:50%!important}.xl\\:col-offset-7{margin-left:58.3333%!important}.xl\\:col-offset-8{margin-left:66.6667%!important}.xl\\:col-offset-9{margin-left:75%!important}.xl\\:col-offset-10{margin-left:83.3333%!important}.xl\\:col-offset-11{margin-left:91.6667%!important}.xl\\:col-offset-12{margin-left:100%!important}}.text-0{color:var(--surface-0)!important}.text-50{color:var(--surface-50)!important}.text-100{color:var(--surface-100)!important}.text-200{color:var(--surface-200)!important}.text-300{color:var(--surface-300)!important}.text-400{color:var(--surface-400)!important}.text-500{color:var(--surface-500)!important}.text-600{color:var(--surface-600)!important}.text-700{color:var(--surface-700)!important}.text-800{color:var(--surface-800)!important}.text-900{color:var(--surface-900)!important}.focus\\:text-0:focus{color:var(--surface-0)!important}.hover\\:text-0:hover,.active\\:text-0:active{color:var(--surface-0)!important}.focus\\:text-50:focus{color:var(--surface-50)!important}.hover\\:text-50:hover,.active\\:text-50:active{color:var(--surface-50)!important}.focus\\:text-100:focus{color:var(--surface-100)!important}.hover\\:text-100:hover,.active\\:text-100:active{color:var(--surface-100)!important}.focus\\:text-200:focus{color:var(--surface-200)!important}.hover\\:text-200:hover,.active\\:text-200:active{color:var(--surface-200)!important}.focus\\:text-300:focus{color:var(--surface-300)!important}.hover\\:text-300:hover,.active\\:text-300:active{color:var(--surface-300)!important}.focus\\:text-400:focus{color:var(--surface-400)!important}.hover\\:text-400:hover,.active\\:text-400:active{color:var(--surface-400)!important}.focus\\:text-500:focus{color:var(--surface-500)!important}.hover\\:text-500:hover,.active\\:text-500:active{color:var(--surface-500)!important}.focus\\:text-600:focus{color:var(--surface-600)!important}.hover\\:text-600:hover,.active\\:text-600:active{color:var(--surface-600)!important}.focus\\:text-700:focus{color:var(--surface-700)!important}.hover\\:text-700:hover,.active\\:text-700:active{color:var(--surface-700)!important}.focus\\:text-800:focus{color:var(--surface-800)!important}.hover\\:text-800:hover,.active\\:text-800:active{color:var(--surface-800)!important}.focus\\:text-900:focus{color:var(--surface-900)!important}.hover\\:text-900:hover,.active\\:text-900:active{color:var(--surface-900)!important}.surface-0{background-color:var(--surface-0)!important}.surface-50{background-color:var(--surface-50)!important}.surface-100{background-color:var(--surface-100)!important}.surface-200{background-color:var(--surface-200)!important}.surface-300{background-color:var(--surface-300)!important}.surface-400{background-color:var(--surface-400)!important}.surface-500{background-color:var(--surface-500)!important}.surface-600{background-color:var(--surface-600)!important}.surface-700{background-color:var(--surface-700)!important}.surface-800{background-color:var(--surface-800)!important}.surface-900{background-color:var(--surface-900)!important}.focus\\:surface-0:focus{background-color:var(--surface-0)!important}.hover\\:surface-0:hover,.active\\:surface-0:active{background-color:var(--surface-0)!important}.focus\\:surface-50:focus{background-color:var(--surface-50)!important}.hover\\:surface-50:hover,.active\\:surface-50:active{background-color:var(--surface-50)!important}.focus\\:surface-100:focus{background-color:var(--surface-100)!important}.hover\\:surface-100:hover,.active\\:surface-100:active{background-color:var(--surface-100)!important}.focus\\:surface-200:focus{background-color:var(--surface-200)!important}.hover\\:surface-200:hover,.active\\:surface-200:active{background-color:var(--surface-200)!important}.focus\\:surface-300:focus{background-color:var(--surface-300)!important}.hover\\:surface-300:hover,.active\\:surface-300:active{background-color:var(--surface-300)!important}.focus\\:surface-400:focus{background-color:var(--surface-400)!important}.hover\\:surface-400:hover,.active\\:surface-400:active{background-color:var(--surface-400)!important}.focus\\:surface-500:focus{background-color:var(--surface-500)!important}.hover\\:surface-500:hover,.active\\:surface-500:active{background-color:var(--surface-500)!important}.focus\\:surface-600:focus{background-color:var(--surface-600)!important}.hover\\:surface-600:hover,.active\\:surface-600:active{background-color:var(--surface-600)!important}.focus\\:surface-700:focus{background-color:var(--surface-700)!important}.hover\\:surface-700:hover,.active\\:surface-700:active{background-color:var(--surface-700)!important}.focus\\:surface-800:focus{background-color:var(--surface-800)!important}.hover\\:surface-800:hover,.active\\:surface-800:active{background-color:var(--surface-800)!important}.focus\\:surface-900:focus{background-color:var(--surface-900)!important}.hover\\:surface-900:hover,.active\\:surface-900:active{background-color:var(--surface-900)!important}.border-0{border-color:var(--surface-0)!important}.border-50{border-color:var(--surface-50)!important}.border-100{border-color:var(--surface-100)!important}.border-200{border-color:var(--surface-200)!important}.border-300{border-color:var(--surface-300)!important}.border-400{border-color:var(--surface-400)!important}.border-500{border-color:var(--surface-500)!important}.border-600{border-color:var(--surface-600)!important}.border-700{border-color:var(--surface-700)!important}.border-800{border-color:var(--surface-800)!important}.border-900{border-color:var(--surface-900)!important}.focus\\:border-0:focus{border-color:var(--surface-0)!important}.hover\\:border-0:hover,.active\\:border-0:active{border-color:var(--surface-0)!important}.focus\\:border-50:focus{border-color:var(--surface-50)!important}.hover\\:border-50:hover,.active\\:border-50:active{border-color:var(--surface-50)!important}.focus\\:border-100:focus{border-color:var(--surface-100)!important}.hover\\:border-100:hover,.active\\:border-100:active{border-color:var(--surface-100)!important}.focus\\:border-200:focus{border-color:var(--surface-200)!important}.hover\\:border-200:hover,.active\\:border-200:active{border-color:var(--surface-200)!important}.focus\\:border-300:focus{border-color:var(--surface-300)!important}.hover\\:border-300:hover,.active\\:border-300:active{border-color:var(--surface-300)!important}.focus\\:border-400:focus{border-color:var(--surface-400)!important}.hover\\:border-400:hover,.active\\:border-400:active{border-color:var(--surface-400)!important}.focus\\:border-500:focus{border-color:var(--surface-500)!important}.hover\\:border-500:hover,.active\\:border-500:active{border-color:var(--surface-500)!important}.focus\\:border-600:focus{border-color:var(--surface-600)!important}.hover\\:border-600:hover,.active\\:border-600:active{border-color:var(--surface-600)!important}.focus\\:border-700:focus{border-color:var(--surface-700)!important}.hover\\:border-700:hover,.active\\:border-700:active{border-color:var(--surface-700)!important}.focus\\:border-800:focus{border-color:var(--surface-800)!important}.hover\\:border-800:hover,.active\\:border-800:active{border-color:var(--surface-800)!important}.focus\\:border-900:focus{border-color:var(--surface-900)!important}.hover\\:border-900:hover,.active\\:border-900:active{border-color:var(--surface-900)!important}.bg-transparent{background-color:transparent!important}@media screen and (min-width: 576px){.sm\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 768px){.md\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:bg-transparent{background-color:transparent!important}}.border-transparent{border-color:transparent!important}@media screen and (min-width: 576px){.sm\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 768px){.md\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:border-transparent{border-color:transparent!important}}.text-blue-50{color:var(--blue-50)!important}.text-blue-100{color:var(--blue-100)!important}.text-blue-200{color:var(--blue-200)!important}.text-blue-300{color:var(--blue-300)!important}.text-blue-400{color:var(--blue-400)!important}.text-blue-500{color:var(--blue-500)!important}.text-blue-600{color:var(--blue-600)!important}.text-blue-700{color:var(--blue-700)!important}.text-blue-800{color:var(--blue-800)!important}.text-blue-900{color:var(--blue-900)!important}.focus\\:text-blue-50:focus{color:var(--blue-50)!important}.focus\\:text-blue-100:focus{color:var(--blue-100)!important}.focus\\:text-blue-200:focus{color:var(--blue-200)!important}.focus\\:text-blue-300:focus{color:var(--blue-300)!important}.focus\\:text-blue-400:focus{color:var(--blue-400)!important}.focus\\:text-blue-500:focus{color:var(--blue-500)!important}.focus\\:text-blue-600:focus{color:var(--blue-600)!important}.focus\\:text-blue-700:focus{color:var(--blue-700)!important}.focus\\:text-blue-800:focus{color:var(--blue-800)!important}.focus\\:text-blue-900:focus{color:var(--blue-900)!important}.hover\\:text-blue-50:hover{color:var(--blue-50)!important}.hover\\:text-blue-100:hover{color:var(--blue-100)!important}.hover\\:text-blue-200:hover{color:var(--blue-200)!important}.hover\\:text-blue-300:hover{color:var(--blue-300)!important}.hover\\:text-blue-400:hover{color:var(--blue-400)!important}.hover\\:text-blue-500:hover{color:var(--blue-500)!important}.hover\\:text-blue-600:hover{color:var(--blue-600)!important}.hover\\:text-blue-700:hover{color:var(--blue-700)!important}.hover\\:text-blue-800:hover{color:var(--blue-800)!important}.hover\\:text-blue-900:hover{color:var(--blue-900)!important}.active\\:text-blue-50:active{color:var(--blue-50)!important}.active\\:text-blue-100:active{color:var(--blue-100)!important}.active\\:text-blue-200:active{color:var(--blue-200)!important}.active\\:text-blue-300:active{color:var(--blue-300)!important}.active\\:text-blue-400:active{color:var(--blue-400)!important}.active\\:text-blue-500:active{color:var(--blue-500)!important}.active\\:text-blue-600:active{color:var(--blue-600)!important}.active\\:text-blue-700:active{color:var(--blue-700)!important}.active\\:text-blue-800:active{color:var(--blue-800)!important}.active\\:text-blue-900:active{color:var(--blue-900)!important}.text-green-50{color:var(--green-50)!important}.text-green-100{color:var(--green-100)!important}.text-green-200{color:var(--green-200)!important}.text-green-300{color:var(--green-300)!important}.text-green-400{color:var(--green-400)!important}.text-green-500{color:var(--green-500)!important}.text-green-600{color:var(--green-600)!important}.text-green-700{color:var(--green-700)!important}.text-green-800{color:var(--green-800)!important}.text-green-900{color:var(--green-900)!important}.focus\\:text-green-50:focus{color:var(--green-50)!important}.focus\\:text-green-100:focus{color:var(--green-100)!important}.focus\\:text-green-200:focus{color:var(--green-200)!important}.focus\\:text-green-300:focus{color:var(--green-300)!important}.focus\\:text-green-400:focus{color:var(--green-400)!important}.focus\\:text-green-500:focus{color:var(--green-500)!important}.focus\\:text-green-600:focus{color:var(--green-600)!important}.focus\\:text-green-700:focus{color:var(--green-700)!important}.focus\\:text-green-800:focus{color:var(--green-800)!important}.focus\\:text-green-900:focus{color:var(--green-900)!important}.hover\\:text-green-50:hover{color:var(--green-50)!important}.hover\\:text-green-100:hover{color:var(--green-100)!important}.hover\\:text-green-200:hover{color:var(--green-200)!important}.hover\\:text-green-300:hover{color:var(--green-300)!important}.hover\\:text-green-400:hover{color:var(--green-400)!important}.hover\\:text-green-500:hover{color:var(--green-500)!important}.hover\\:text-green-600:hover{color:var(--green-600)!important}.hover\\:text-green-700:hover{color:var(--green-700)!important}.hover\\:text-green-800:hover{color:var(--green-800)!important}.hover\\:text-green-900:hover{color:var(--green-900)!important}.active\\:text-green-50:active{color:var(--green-50)!important}.active\\:text-green-100:active{color:var(--green-100)!important}.active\\:text-green-200:active{color:var(--green-200)!important}.active\\:text-green-300:active{color:var(--green-300)!important}.active\\:text-green-400:active{color:var(--green-400)!important}.active\\:text-green-500:active{color:var(--green-500)!important}.active\\:text-green-600:active{color:var(--green-600)!important}.active\\:text-green-700:active{color:var(--green-700)!important}.active\\:text-green-800:active{color:var(--green-800)!important}.active\\:text-green-900:active{color:var(--green-900)!important}.text-yellow-50{color:var(--yellow-50)!important}.text-yellow-100{color:var(--yellow-100)!important}.text-yellow-200{color:var(--yellow-200)!important}.text-yellow-300{color:var(--yellow-300)!important}.text-yellow-400{color:var(--yellow-400)!important}.text-yellow-500{color:var(--yellow-500)!important}.text-yellow-600{color:var(--yellow-600)!important}.text-yellow-700{color:var(--yellow-700)!important}.text-yellow-800{color:var(--yellow-800)!important}.text-yellow-900{color:var(--yellow-900)!important}.focus\\:text-yellow-50:focus{color:var(--yellow-50)!important}.focus\\:text-yellow-100:focus{color:var(--yellow-100)!important}.focus\\:text-yellow-200:focus{color:var(--yellow-200)!important}.focus\\:text-yellow-300:focus{color:var(--yellow-300)!important}.focus\\:text-yellow-400:focus{color:var(--yellow-400)!important}.focus\\:text-yellow-500:focus{color:var(--yellow-500)!important}.focus\\:text-yellow-600:focus{color:var(--yellow-600)!important}.focus\\:text-yellow-700:focus{color:var(--yellow-700)!important}.focus\\:text-yellow-800:focus{color:var(--yellow-800)!important}.focus\\:text-yellow-900:focus{color:var(--yellow-900)!important}.hover\\:text-yellow-50:hover{color:var(--yellow-50)!important}.hover\\:text-yellow-100:hover{color:var(--yellow-100)!important}.hover\\:text-yellow-200:hover{color:var(--yellow-200)!important}.hover\\:text-yellow-300:hover{color:var(--yellow-300)!important}.hover\\:text-yellow-400:hover{color:var(--yellow-400)!important}.hover\\:text-yellow-500:hover{color:var(--yellow-500)!important}.hover\\:text-yellow-600:hover{color:var(--yellow-600)!important}.hover\\:text-yellow-700:hover{color:var(--yellow-700)!important}.hover\\:text-yellow-800:hover{color:var(--yellow-800)!important}.hover\\:text-yellow-900:hover{color:var(--yellow-900)!important}.active\\:text-yellow-50:active{color:var(--yellow-50)!important}.active\\:text-yellow-100:active{color:var(--yellow-100)!important}.active\\:text-yellow-200:active{color:var(--yellow-200)!important}.active\\:text-yellow-300:active{color:var(--yellow-300)!important}.active\\:text-yellow-400:active{color:var(--yellow-400)!important}.active\\:text-yellow-500:active{color:var(--yellow-500)!important}.active\\:text-yellow-600:active{color:var(--yellow-600)!important}.active\\:text-yellow-700:active{color:var(--yellow-700)!important}.active\\:text-yellow-800:active{color:var(--yellow-800)!important}.active\\:text-yellow-900:active{color:var(--yellow-900)!important}.text-cyan-50{color:var(--cyan-50)!important}.text-cyan-100{color:var(--cyan-100)!important}.text-cyan-200{color:var(--cyan-200)!important}.text-cyan-300{color:var(--cyan-300)!important}.text-cyan-400{color:var(--cyan-400)!important}.text-cyan-500{color:var(--cyan-500)!important}.text-cyan-600{color:var(--cyan-600)!important}.text-cyan-700{color:var(--cyan-700)!important}.text-cyan-800{color:var(--cyan-800)!important}.text-cyan-900{color:var(--cyan-900)!important}.focus\\:text-cyan-50:focus{color:var(--cyan-50)!important}.focus\\:text-cyan-100:focus{color:var(--cyan-100)!important}.focus\\:text-cyan-200:focus{color:var(--cyan-200)!important}.focus\\:text-cyan-300:focus{color:var(--cyan-300)!important}.focus\\:text-cyan-400:focus{color:var(--cyan-400)!important}.focus\\:text-cyan-500:focus{color:var(--cyan-500)!important}.focus\\:text-cyan-600:focus{color:var(--cyan-600)!important}.focus\\:text-cyan-700:focus{color:var(--cyan-700)!important}.focus\\:text-cyan-800:focus{color:var(--cyan-800)!important}.focus\\:text-cyan-900:focus{color:var(--cyan-900)!important}.hover\\:text-cyan-50:hover{color:var(--cyan-50)!important}.hover\\:text-cyan-100:hover{color:var(--cyan-100)!important}.hover\\:text-cyan-200:hover{color:var(--cyan-200)!important}.hover\\:text-cyan-300:hover{color:var(--cyan-300)!important}.hover\\:text-cyan-400:hover{color:var(--cyan-400)!important}.hover\\:text-cyan-500:hover{color:var(--cyan-500)!important}.hover\\:text-cyan-600:hover{color:var(--cyan-600)!important}.hover\\:text-cyan-700:hover{color:var(--cyan-700)!important}.hover\\:text-cyan-800:hover{color:var(--cyan-800)!important}.hover\\:text-cyan-900:hover{color:var(--cyan-900)!important}.active\\:text-cyan-50:active{color:var(--cyan-50)!important}.active\\:text-cyan-100:active{color:var(--cyan-100)!important}.active\\:text-cyan-200:active{color:var(--cyan-200)!important}.active\\:text-cyan-300:active{color:var(--cyan-300)!important}.active\\:text-cyan-400:active{color:var(--cyan-400)!important}.active\\:text-cyan-500:active{color:var(--cyan-500)!important}.active\\:text-cyan-600:active{color:var(--cyan-600)!important}.active\\:text-cyan-700:active{color:var(--cyan-700)!important}.active\\:text-cyan-800:active{color:var(--cyan-800)!important}.active\\:text-cyan-900:active{color:var(--cyan-900)!important}.text-pink-50{color:var(--pink-50)!important}.text-pink-100{color:var(--pink-100)!important}.text-pink-200{color:var(--pink-200)!important}.text-pink-300{color:var(--pink-300)!important}.text-pink-400{color:var(--pink-400)!important}.text-pink-500{color:var(--pink-500)!important}.text-pink-600{color:var(--pink-600)!important}.text-pink-700{color:var(--pink-700)!important}.text-pink-800{color:var(--pink-800)!important}.text-pink-900{color:var(--pink-900)!important}.focus\\:text-pink-50:focus{color:var(--pink-50)!important}.focus\\:text-pink-100:focus{color:var(--pink-100)!important}.focus\\:text-pink-200:focus{color:var(--pink-200)!important}.focus\\:text-pink-300:focus{color:var(--pink-300)!important}.focus\\:text-pink-400:focus{color:var(--pink-400)!important}.focus\\:text-pink-500:focus{color:var(--pink-500)!important}.focus\\:text-pink-600:focus{color:var(--pink-600)!important}.focus\\:text-pink-700:focus{color:var(--pink-700)!important}.focus\\:text-pink-800:focus{color:var(--pink-800)!important}.focus\\:text-pink-900:focus{color:var(--pink-900)!important}.hover\\:text-pink-50:hover{color:var(--pink-50)!important}.hover\\:text-pink-100:hover{color:var(--pink-100)!important}.hover\\:text-pink-200:hover{color:var(--pink-200)!important}.hover\\:text-pink-300:hover{color:var(--pink-300)!important}.hover\\:text-pink-400:hover{color:var(--pink-400)!important}.hover\\:text-pink-500:hover{color:var(--pink-500)!important}.hover\\:text-pink-600:hover{color:var(--pink-600)!important}.hover\\:text-pink-700:hover{color:var(--pink-700)!important}.hover\\:text-pink-800:hover{color:var(--pink-800)!important}.hover\\:text-pink-900:hover{color:var(--pink-900)!important}.active\\:text-pink-50:active{color:var(--pink-50)!important}.active\\:text-pink-100:active{color:var(--pink-100)!important}.active\\:text-pink-200:active{color:var(--pink-200)!important}.active\\:text-pink-300:active{color:var(--pink-300)!important}.active\\:text-pink-400:active{color:var(--pink-400)!important}.active\\:text-pink-500:active{color:var(--pink-500)!important}.active\\:text-pink-600:active{color:var(--pink-600)!important}.active\\:text-pink-700:active{color:var(--pink-700)!important}.active\\:text-pink-800:active{color:var(--pink-800)!important}.active\\:text-pink-900:active{color:var(--pink-900)!important}.text-indigo-50{color:var(--indigo-50)!important}.text-indigo-100{color:var(--indigo-100)!important}.text-indigo-200{color:var(--indigo-200)!important}.text-indigo-300{color:var(--indigo-300)!important}.text-indigo-400{color:var(--indigo-400)!important}.text-indigo-500{color:var(--indigo-500)!important}.text-indigo-600{color:var(--indigo-600)!important}.text-indigo-700{color:var(--indigo-700)!important}.text-indigo-800{color:var(--indigo-800)!important}.text-indigo-900{color:var(--indigo-900)!important}.focus\\:text-indigo-50:focus{color:var(--indigo-50)!important}.focus\\:text-indigo-100:focus{color:var(--indigo-100)!important}.focus\\:text-indigo-200:focus{color:var(--indigo-200)!important}.focus\\:text-indigo-300:focus{color:var(--indigo-300)!important}.focus\\:text-indigo-400:focus{color:var(--indigo-400)!important}.focus\\:text-indigo-500:focus{color:var(--indigo-500)!important}.focus\\:text-indigo-600:focus{color:var(--indigo-600)!important}.focus\\:text-indigo-700:focus{color:var(--indigo-700)!important}.focus\\:text-indigo-800:focus{color:var(--indigo-800)!important}.focus\\:text-indigo-900:focus{color:var(--indigo-900)!important}.hover\\:text-indigo-50:hover{color:var(--indigo-50)!important}.hover\\:text-indigo-100:hover{color:var(--indigo-100)!important}.hover\\:text-indigo-200:hover{color:var(--indigo-200)!important}.hover\\:text-indigo-300:hover{color:var(--indigo-300)!important}.hover\\:text-indigo-400:hover{color:var(--indigo-400)!important}.hover\\:text-indigo-500:hover{color:var(--indigo-500)!important}.hover\\:text-indigo-600:hover{color:var(--indigo-600)!important}.hover\\:text-indigo-700:hover{color:var(--indigo-700)!important}.hover\\:text-indigo-800:hover{color:var(--indigo-800)!important}.hover\\:text-indigo-900:hover{color:var(--indigo-900)!important}.active\\:text-indigo-50:active{color:var(--indigo-50)!important}.active\\:text-indigo-100:active{color:var(--indigo-100)!important}.active\\:text-indigo-200:active{color:var(--indigo-200)!important}.active\\:text-indigo-300:active{color:var(--indigo-300)!important}.active\\:text-indigo-400:active{color:var(--indigo-400)!important}.active\\:text-indigo-500:active{color:var(--indigo-500)!important}.active\\:text-indigo-600:active{color:var(--indigo-600)!important}.active\\:text-indigo-700:active{color:var(--indigo-700)!important}.active\\:text-indigo-800:active{color:var(--indigo-800)!important}.active\\:text-indigo-900:active{color:var(--indigo-900)!important}.text-teal-50{color:var(--teal-50)!important}.text-teal-100{color:var(--teal-100)!important}.text-teal-200{color:var(--teal-200)!important}.text-teal-300{color:var(--teal-300)!important}.text-teal-400{color:var(--teal-400)!important}.text-teal-500{color:var(--teal-500)!important}.text-teal-600{color:var(--teal-600)!important}.text-teal-700{color:var(--teal-700)!important}.text-teal-800{color:var(--teal-800)!important}.text-teal-900{color:var(--teal-900)!important}.focus\\:text-teal-50:focus{color:var(--teal-50)!important}.focus\\:text-teal-100:focus{color:var(--teal-100)!important}.focus\\:text-teal-200:focus{color:var(--teal-200)!important}.focus\\:text-teal-300:focus{color:var(--teal-300)!important}.focus\\:text-teal-400:focus{color:var(--teal-400)!important}.focus\\:text-teal-500:focus{color:var(--teal-500)!important}.focus\\:text-teal-600:focus{color:var(--teal-600)!important}.focus\\:text-teal-700:focus{color:var(--teal-700)!important}.focus\\:text-teal-800:focus{color:var(--teal-800)!important}.focus\\:text-teal-900:focus{color:var(--teal-900)!important}.hover\\:text-teal-50:hover{color:var(--teal-50)!important}.hover\\:text-teal-100:hover{color:var(--teal-100)!important}.hover\\:text-teal-200:hover{color:var(--teal-200)!important}.hover\\:text-teal-300:hover{color:var(--teal-300)!important}.hover\\:text-teal-400:hover{color:var(--teal-400)!important}.hover\\:text-teal-500:hover{color:var(--teal-500)!important}.hover\\:text-teal-600:hover{color:var(--teal-600)!important}.hover\\:text-teal-700:hover{color:var(--teal-700)!important}.hover\\:text-teal-800:hover{color:var(--teal-800)!important}.hover\\:text-teal-900:hover{color:var(--teal-900)!important}.active\\:text-teal-50:active{color:var(--teal-50)!important}.active\\:text-teal-100:active{color:var(--teal-100)!important}.active\\:text-teal-200:active{color:var(--teal-200)!important}.active\\:text-teal-300:active{color:var(--teal-300)!important}.active\\:text-teal-400:active{color:var(--teal-400)!important}.active\\:text-teal-500:active{color:var(--teal-500)!important}.active\\:text-teal-600:active{color:var(--teal-600)!important}.active\\:text-teal-700:active{color:var(--teal-700)!important}.active\\:text-teal-800:active{color:var(--teal-800)!important}.active\\:text-teal-900:active{color:var(--teal-900)!important}.text-orange-50{color:var(--orange-50)!important}.text-orange-100{color:var(--orange-100)!important}.text-orange-200{color:var(--orange-200)!important}.text-orange-300{color:var(--orange-300)!important}.text-orange-400{color:var(--orange-400)!important}.text-orange-500{color:var(--orange-500)!important}.text-orange-600{color:var(--orange-600)!important}.text-orange-700{color:var(--orange-700)!important}.text-orange-800{color:var(--orange-800)!important}.text-orange-900{color:var(--orange-900)!important}.focus\\:text-orange-50:focus{color:var(--orange-50)!important}.focus\\:text-orange-100:focus{color:var(--orange-100)!important}.focus\\:text-orange-200:focus{color:var(--orange-200)!important}.focus\\:text-orange-300:focus{color:var(--orange-300)!important}.focus\\:text-orange-400:focus{color:var(--orange-400)!important}.focus\\:text-orange-500:focus{color:var(--orange-500)!important}.focus\\:text-orange-600:focus{color:var(--orange-600)!important}.focus\\:text-orange-700:focus{color:var(--orange-700)!important}.focus\\:text-orange-800:focus{color:var(--orange-800)!important}.focus\\:text-orange-900:focus{color:var(--orange-900)!important}.hover\\:text-orange-50:hover{color:var(--orange-50)!important}.hover\\:text-orange-100:hover{color:var(--orange-100)!important}.hover\\:text-orange-200:hover{color:var(--orange-200)!important}.hover\\:text-orange-300:hover{color:var(--orange-300)!important}.hover\\:text-orange-400:hover{color:var(--orange-400)!important}.hover\\:text-orange-500:hover{color:var(--orange-500)!important}.hover\\:text-orange-600:hover{color:var(--orange-600)!important}.hover\\:text-orange-700:hover{color:var(--orange-700)!important}.hover\\:text-orange-800:hover{color:var(--orange-800)!important}.hover\\:text-orange-900:hover{color:var(--orange-900)!important}.active\\:text-orange-50:active{color:var(--orange-50)!important}.active\\:text-orange-100:active{color:var(--orange-100)!important}.active\\:text-orange-200:active{color:var(--orange-200)!important}.active\\:text-orange-300:active{color:var(--orange-300)!important}.active\\:text-orange-400:active{color:var(--orange-400)!important}.active\\:text-orange-500:active{color:var(--orange-500)!important}.active\\:text-orange-600:active{color:var(--orange-600)!important}.active\\:text-orange-700:active{color:var(--orange-700)!important}.active\\:text-orange-800:active{color:var(--orange-800)!important}.active\\:text-orange-900:active{color:var(--orange-900)!important}.text-bluegray-50{color:var(--bluegray-50)!important}.text-bluegray-100{color:var(--bluegray-100)!important}.text-bluegray-200{color:var(--bluegray-200)!important}.text-bluegray-300{color:var(--bluegray-300)!important}.text-bluegray-400{color:var(--bluegray-400)!important}.text-bluegray-500{color:var(--bluegray-500)!important}.text-bluegray-600{color:var(--bluegray-600)!important}.text-bluegray-700{color:var(--bluegray-700)!important}.text-bluegray-800{color:var(--bluegray-800)!important}.text-bluegray-900{color:var(--bluegray-900)!important}.focus\\:text-bluegray-50:focus{color:var(--bluegray-50)!important}.focus\\:text-bluegray-100:focus{color:var(--bluegray-100)!important}.focus\\:text-bluegray-200:focus{color:var(--bluegray-200)!important}.focus\\:text-bluegray-300:focus{color:var(--bluegray-300)!important}.focus\\:text-bluegray-400:focus{color:var(--bluegray-400)!important}.focus\\:text-bluegray-500:focus{color:var(--bluegray-500)!important}.focus\\:text-bluegray-600:focus{color:var(--bluegray-600)!important}.focus\\:text-bluegray-700:focus{color:var(--bluegray-700)!important}.focus\\:text-bluegray-800:focus{color:var(--bluegray-800)!important}.focus\\:text-bluegray-900:focus{color:var(--bluegray-900)!important}.hover\\:text-bluegray-50:hover{color:var(--bluegray-50)!important}.hover\\:text-bluegray-100:hover{color:var(--bluegray-100)!important}.hover\\:text-bluegray-200:hover{color:var(--bluegray-200)!important}.hover\\:text-bluegray-300:hover{color:var(--bluegray-300)!important}.hover\\:text-bluegray-400:hover{color:var(--bluegray-400)!important}.hover\\:text-bluegray-500:hover{color:var(--bluegray-500)!important}.hover\\:text-bluegray-600:hover{color:var(--bluegray-600)!important}.hover\\:text-bluegray-700:hover{color:var(--bluegray-700)!important}.hover\\:text-bluegray-800:hover{color:var(--bluegray-800)!important}.hover\\:text-bluegray-900:hover{color:var(--bluegray-900)!important}.active\\:text-bluegray-50:active{color:var(--bluegray-50)!important}.active\\:text-bluegray-100:active{color:var(--bluegray-100)!important}.active\\:text-bluegray-200:active{color:var(--bluegray-200)!important}.active\\:text-bluegray-300:active{color:var(--bluegray-300)!important}.active\\:text-bluegray-400:active{color:var(--bluegray-400)!important}.active\\:text-bluegray-500:active{color:var(--bluegray-500)!important}.active\\:text-bluegray-600:active{color:var(--bluegray-600)!important}.active\\:text-bluegray-700:active{color:var(--bluegray-700)!important}.active\\:text-bluegray-800:active{color:var(--bluegray-800)!important}.active\\:text-bluegray-900:active{color:var(--bluegray-900)!important}.text-purple-50{color:var(--purple-50)!important}.text-purple-100{color:var(--purple-100)!important}.text-purple-200{color:var(--purple-200)!important}.text-purple-300{color:var(--purple-300)!important}.text-purple-400{color:var(--purple-400)!important}.text-purple-500{color:var(--purple-500)!important}.text-purple-600{color:var(--purple-600)!important}.text-purple-700{color:var(--purple-700)!important}.text-purple-800{color:var(--purple-800)!important}.text-purple-900{color:var(--purple-900)!important}.focus\\:text-purple-50:focus{color:var(--purple-50)!important}.focus\\:text-purple-100:focus{color:var(--purple-100)!important}.focus\\:text-purple-200:focus{color:var(--purple-200)!important}.focus\\:text-purple-300:focus{color:var(--purple-300)!important}.focus\\:text-purple-400:focus{color:var(--purple-400)!important}.focus\\:text-purple-500:focus{color:var(--purple-500)!important}.focus\\:text-purple-600:focus{color:var(--purple-600)!important}.focus\\:text-purple-700:focus{color:var(--purple-700)!important}.focus\\:text-purple-800:focus{color:var(--purple-800)!important}.focus\\:text-purple-900:focus{color:var(--purple-900)!important}.hover\\:text-purple-50:hover{color:var(--purple-50)!important}.hover\\:text-purple-100:hover{color:var(--purple-100)!important}.hover\\:text-purple-200:hover{color:var(--purple-200)!important}.hover\\:text-purple-300:hover{color:var(--purple-300)!important}.hover\\:text-purple-400:hover{color:var(--purple-400)!important}.hover\\:text-purple-500:hover{color:var(--purple-500)!important}.hover\\:text-purple-600:hover{color:var(--purple-600)!important}.hover\\:text-purple-700:hover{color:var(--purple-700)!important}.hover\\:text-purple-800:hover{color:var(--purple-800)!important}.hover\\:text-purple-900:hover{color:var(--purple-900)!important}.active\\:text-purple-50:active{color:var(--purple-50)!important}.active\\:text-purple-100:active{color:var(--purple-100)!important}.active\\:text-purple-200:active{color:var(--purple-200)!important}.active\\:text-purple-300:active{color:var(--purple-300)!important}.active\\:text-purple-400:active{color:var(--purple-400)!important}.active\\:text-purple-500:active{color:var(--purple-500)!important}.active\\:text-purple-600:active{color:var(--purple-600)!important}.active\\:text-purple-700:active{color:var(--purple-700)!important}.active\\:text-purple-800:active{color:var(--purple-800)!important}.active\\:text-purple-900:active{color:var(--purple-900)!important}.text-gray-50{color:var(--gray-50)!important}.text-gray-100{color:var(--gray-100)!important}.text-gray-200{color:var(--gray-200)!important}.text-gray-300{color:var(--gray-300)!important}.text-gray-400{color:var(--gray-400)!important}.text-gray-500{color:var(--gray-500)!important}.text-gray-600{color:var(--gray-600)!important}.text-gray-700{color:var(--gray-700)!important}.text-gray-800{color:var(--gray-800)!important}.text-gray-900{color:var(--gray-900)!important}.focus\\:text-gray-50:focus{color:var(--gray-50)!important}.focus\\:text-gray-100:focus{color:var(--gray-100)!important}.focus\\:text-gray-200:focus{color:var(--gray-200)!important}.focus\\:text-gray-300:focus{color:var(--gray-300)!important}.focus\\:text-gray-400:focus{color:var(--gray-400)!important}.focus\\:text-gray-500:focus{color:var(--gray-500)!important}.focus\\:text-gray-600:focus{color:var(--gray-600)!important}.focus\\:text-gray-700:focus{color:var(--gray-700)!important}.focus\\:text-gray-800:focus{color:var(--gray-800)!important}.focus\\:text-gray-900:focus{color:var(--gray-900)!important}.hover\\:text-gray-50:hover{color:var(--gray-50)!important}.hover\\:text-gray-100:hover{color:var(--gray-100)!important}.hover\\:text-gray-200:hover{color:var(--gray-200)!important}.hover\\:text-gray-300:hover{color:var(--gray-300)!important}.hover\\:text-gray-400:hover{color:var(--gray-400)!important}.hover\\:text-gray-500:hover{color:var(--gray-500)!important}.hover\\:text-gray-600:hover{color:var(--gray-600)!important}.hover\\:text-gray-700:hover{color:var(--gray-700)!important}.hover\\:text-gray-800:hover{color:var(--gray-800)!important}.hover\\:text-gray-900:hover{color:var(--gray-900)!important}.active\\:text-gray-50:active{color:var(--gray-50)!important}.active\\:text-gray-100:active{color:var(--gray-100)!important}.active\\:text-gray-200:active{color:var(--gray-200)!important}.active\\:text-gray-300:active{color:var(--gray-300)!important}.active\\:text-gray-400:active{color:var(--gray-400)!important}.active\\:text-gray-500:active{color:var(--gray-500)!important}.active\\:text-gray-600:active{color:var(--gray-600)!important}.active\\:text-gray-700:active{color:var(--gray-700)!important}.active\\:text-gray-800:active{color:var(--gray-800)!important}.active\\:text-gray-900:active{color:var(--gray-900)!important}.text-red-50{color:var(--red-50)!important}.text-red-100{color:var(--red-100)!important}.text-red-200{color:var(--red-200)!important}.text-red-300{color:var(--red-300)!important}.text-red-400{color:var(--red-400)!important}.text-red-500{color:var(--red-500)!important}.text-red-600{color:var(--red-600)!important}.text-red-700{color:var(--red-700)!important}.text-red-800{color:var(--red-800)!important}.text-red-900{color:var(--red-900)!important}.focus\\:text-red-50:focus{color:var(--red-50)!important}.focus\\:text-red-100:focus{color:var(--red-100)!important}.focus\\:text-red-200:focus{color:var(--red-200)!important}.focus\\:text-red-300:focus{color:var(--red-300)!important}.focus\\:text-red-400:focus{color:var(--red-400)!important}.focus\\:text-red-500:focus{color:var(--red-500)!important}.focus\\:text-red-600:focus{color:var(--red-600)!important}.focus\\:text-red-700:focus{color:var(--red-700)!important}.focus\\:text-red-800:focus{color:var(--red-800)!important}.focus\\:text-red-900:focus{color:var(--red-900)!important}.hover\\:text-red-50:hover{color:var(--red-50)!important}.hover\\:text-red-100:hover{color:var(--red-100)!important}.hover\\:text-red-200:hover{color:var(--red-200)!important}.hover\\:text-red-300:hover{color:var(--red-300)!important}.hover\\:text-red-400:hover{color:var(--red-400)!important}.hover\\:text-red-500:hover{color:var(--red-500)!important}.hover\\:text-red-600:hover{color:var(--red-600)!important}.hover\\:text-red-700:hover{color:var(--red-700)!important}.hover\\:text-red-800:hover{color:var(--red-800)!important}.hover\\:text-red-900:hover{color:var(--red-900)!important}.active\\:text-red-50:active{color:var(--red-50)!important}.active\\:text-red-100:active{color:var(--red-100)!important}.active\\:text-red-200:active{color:var(--red-200)!important}.active\\:text-red-300:active{color:var(--red-300)!important}.active\\:text-red-400:active{color:var(--red-400)!important}.active\\:text-red-500:active{color:var(--red-500)!important}.active\\:text-red-600:active{color:var(--red-600)!important}.active\\:text-red-700:active{color:var(--red-700)!important}.active\\:text-red-800:active{color:var(--red-800)!important}.active\\:text-red-900:active{color:var(--red-900)!important}.text-primary-50{color:var(--primary-50)!important}.text-primary-100{color:var(--primary-100)!important}.text-primary-200{color:var(--primary-200)!important}.text-primary-300{color:var(--primary-300)!important}.text-primary-400{color:var(--primary-400)!important}.text-primary-500{color:var(--primary-500)!important}.text-primary-600{color:var(--primary-600)!important}.text-primary-700{color:var(--primary-700)!important}.text-primary-800{color:var(--primary-800)!important}.text-primary-900{color:var(--primary-900)!important}.focus\\:text-primary-50:focus{color:var(--primary-50)!important}.focus\\:text-primary-100:focus{color:var(--primary-100)!important}.focus\\:text-primary-200:focus{color:var(--primary-200)!important}.focus\\:text-primary-300:focus{color:var(--primary-300)!important}.focus\\:text-primary-400:focus{color:var(--primary-400)!important}.focus\\:text-primary-500:focus{color:var(--primary-500)!important}.focus\\:text-primary-600:focus{color:var(--primary-600)!important}.focus\\:text-primary-700:focus{color:var(--primary-700)!important}.focus\\:text-primary-800:focus{color:var(--primary-800)!important}.focus\\:text-primary-900:focus{color:var(--primary-900)!important}.hover\\:text-primary-50:hover{color:var(--primary-50)!important}.hover\\:text-primary-100:hover{color:var(--primary-100)!important}.hover\\:text-primary-200:hover{color:var(--primary-200)!important}.hover\\:text-primary-300:hover{color:var(--primary-300)!important}.hover\\:text-primary-400:hover{color:var(--primary-400)!important}.hover\\:text-primary-500:hover{color:var(--primary-500)!important}.hover\\:text-primary-600:hover{color:var(--primary-600)!important}.hover\\:text-primary-700:hover{color:var(--primary-700)!important}.hover\\:text-primary-800:hover{color:var(--primary-800)!important}.hover\\:text-primary-900:hover{color:var(--primary-900)!important}.active\\:text-primary-50:active{color:var(--primary-50)!important}.active\\:text-primary-100:active{color:var(--primary-100)!important}.active\\:text-primary-200:active{color:var(--primary-200)!important}.active\\:text-primary-300:active{color:var(--primary-300)!important}.active\\:text-primary-400:active{color:var(--primary-400)!important}.active\\:text-primary-500:active{color:var(--primary-500)!important}.active\\:text-primary-600:active{color:var(--primary-600)!important}.active\\:text-primary-700:active{color:var(--primary-700)!important}.active\\:text-primary-800:active{color:var(--primary-800)!important}.active\\:text-primary-900:active{color:var(--primary-900)!important}.bg-blue-50{background-color:var(--blue-50)!important}.bg-blue-100{background-color:var(--blue-100)!important}.bg-blue-200{background-color:var(--blue-200)!important}.bg-blue-300{background-color:var(--blue-300)!important}.bg-blue-400{background-color:var(--blue-400)!important}.bg-blue-500{background-color:var(--blue-500)!important}.bg-blue-600{background-color:var(--blue-600)!important}.bg-blue-700{background-color:var(--blue-700)!important}.bg-blue-800{background-color:var(--blue-800)!important}.bg-blue-900{background-color:var(--blue-900)!important}.focus\\:bg-blue-50:focus{background-color:var(--blue-50)!important}.focus\\:bg-blue-100:focus{background-color:var(--blue-100)!important}.focus\\:bg-blue-200:focus{background-color:var(--blue-200)!important}.focus\\:bg-blue-300:focus{background-color:var(--blue-300)!important}.focus\\:bg-blue-400:focus{background-color:var(--blue-400)!important}.focus\\:bg-blue-500:focus{background-color:var(--blue-500)!important}.focus\\:bg-blue-600:focus{background-color:var(--blue-600)!important}.focus\\:bg-blue-700:focus{background-color:var(--blue-700)!important}.focus\\:bg-blue-800:focus{background-color:var(--blue-800)!important}.focus\\:bg-blue-900:focus{background-color:var(--blue-900)!important}.hover\\:bg-blue-50:hover{background-color:var(--blue-50)!important}.hover\\:bg-blue-100:hover{background-color:var(--blue-100)!important}.hover\\:bg-blue-200:hover{background-color:var(--blue-200)!important}.hover\\:bg-blue-300:hover{background-color:var(--blue-300)!important}.hover\\:bg-blue-400:hover{background-color:var(--blue-400)!important}.hover\\:bg-blue-500:hover{background-color:var(--blue-500)!important}.hover\\:bg-blue-600:hover{background-color:var(--blue-600)!important}.hover\\:bg-blue-700:hover{background-color:var(--blue-700)!important}.hover\\:bg-blue-800:hover{background-color:var(--blue-800)!important}.hover\\:bg-blue-900:hover{background-color:var(--blue-900)!important}.active\\:bg-blue-50:active{background-color:var(--blue-50)!important}.active\\:bg-blue-100:active{background-color:var(--blue-100)!important}.active\\:bg-blue-200:active{background-color:var(--blue-200)!important}.active\\:bg-blue-300:active{background-color:var(--blue-300)!important}.active\\:bg-blue-400:active{background-color:var(--blue-400)!important}.active\\:bg-blue-500:active{background-color:var(--blue-500)!important}.active\\:bg-blue-600:active{background-color:var(--blue-600)!important}.active\\:bg-blue-700:active{background-color:var(--blue-700)!important}.active\\:bg-blue-800:active{background-color:var(--blue-800)!important}.active\\:bg-blue-900:active{background-color:var(--blue-900)!important}.bg-green-50{background-color:var(--green-50)!important}.bg-green-100{background-color:var(--green-100)!important}.bg-green-200{background-color:var(--green-200)!important}.bg-green-300{background-color:var(--green-300)!important}.bg-green-400{background-color:var(--green-400)!important}.bg-green-500{background-color:var(--green-500)!important}.bg-green-600{background-color:var(--green-600)!important}.bg-green-700{background-color:var(--green-700)!important}.bg-green-800{background-color:var(--green-800)!important}.bg-green-900{background-color:var(--green-900)!important}.focus\\:bg-green-50:focus{background-color:var(--green-50)!important}.focus\\:bg-green-100:focus{background-color:var(--green-100)!important}.focus\\:bg-green-200:focus{background-color:var(--green-200)!important}.focus\\:bg-green-300:focus{background-color:var(--green-300)!important}.focus\\:bg-green-400:focus{background-color:var(--green-400)!important}.focus\\:bg-green-500:focus{background-color:var(--green-500)!important}.focus\\:bg-green-600:focus{background-color:var(--green-600)!important}.focus\\:bg-green-700:focus{background-color:var(--green-700)!important}.focus\\:bg-green-800:focus{background-color:var(--green-800)!important}.focus\\:bg-green-900:focus{background-color:var(--green-900)!important}.hover\\:bg-green-50:hover{background-color:var(--green-50)!important}.hover\\:bg-green-100:hover{background-color:var(--green-100)!important}.hover\\:bg-green-200:hover{background-color:var(--green-200)!important}.hover\\:bg-green-300:hover{background-color:var(--green-300)!important}.hover\\:bg-green-400:hover{background-color:var(--green-400)!important}.hover\\:bg-green-500:hover{background-color:var(--green-500)!important}.hover\\:bg-green-600:hover{background-color:var(--green-600)!important}.hover\\:bg-green-700:hover{background-color:var(--green-700)!important}.hover\\:bg-green-800:hover{background-color:var(--green-800)!important}.hover\\:bg-green-900:hover{background-color:var(--green-900)!important}.active\\:bg-green-50:active{background-color:var(--green-50)!important}.active\\:bg-green-100:active{background-color:var(--green-100)!important}.active\\:bg-green-200:active{background-color:var(--green-200)!important}.active\\:bg-green-300:active{background-color:var(--green-300)!important}.active\\:bg-green-400:active{background-color:var(--green-400)!important}.active\\:bg-green-500:active{background-color:var(--green-500)!important}.active\\:bg-green-600:active{background-color:var(--green-600)!important}.active\\:bg-green-700:active{background-color:var(--green-700)!important}.active\\:bg-green-800:active{background-color:var(--green-800)!important}.active\\:bg-green-900:active{background-color:var(--green-900)!important}.bg-yellow-50{background-color:var(--yellow-50)!important}.bg-yellow-100{background-color:var(--yellow-100)!important}.bg-yellow-200{background-color:var(--yellow-200)!important}.bg-yellow-300{background-color:var(--yellow-300)!important}.bg-yellow-400{background-color:var(--yellow-400)!important}.bg-yellow-500{background-color:var(--yellow-500)!important}.bg-yellow-600{background-color:var(--yellow-600)!important}.bg-yellow-700{background-color:var(--yellow-700)!important}.bg-yellow-800{background-color:var(--yellow-800)!important}.bg-yellow-900{background-color:var(--yellow-900)!important}.focus\\:bg-yellow-50:focus{background-color:var(--yellow-50)!important}.focus\\:bg-yellow-100:focus{background-color:var(--yellow-100)!important}.focus\\:bg-yellow-200:focus{background-color:var(--yellow-200)!important}.focus\\:bg-yellow-300:focus{background-color:var(--yellow-300)!important}.focus\\:bg-yellow-400:focus{background-color:var(--yellow-400)!important}.focus\\:bg-yellow-500:focus{background-color:var(--yellow-500)!important}.focus\\:bg-yellow-600:focus{background-color:var(--yellow-600)!important}.focus\\:bg-yellow-700:focus{background-color:var(--yellow-700)!important}.focus\\:bg-yellow-800:focus{background-color:var(--yellow-800)!important}.focus\\:bg-yellow-900:focus{background-color:var(--yellow-900)!important}.hover\\:bg-yellow-50:hover{background-color:var(--yellow-50)!important}.hover\\:bg-yellow-100:hover{background-color:var(--yellow-100)!important}.hover\\:bg-yellow-200:hover{background-color:var(--yellow-200)!important}.hover\\:bg-yellow-300:hover{background-color:var(--yellow-300)!important}.hover\\:bg-yellow-400:hover{background-color:var(--yellow-400)!important}.hover\\:bg-yellow-500:hover{background-color:var(--yellow-500)!important}.hover\\:bg-yellow-600:hover{background-color:var(--yellow-600)!important}.hover\\:bg-yellow-700:hover{background-color:var(--yellow-700)!important}.hover\\:bg-yellow-800:hover{background-color:var(--yellow-800)!important}.hover\\:bg-yellow-900:hover{background-color:var(--yellow-900)!important}.active\\:bg-yellow-50:active{background-color:var(--yellow-50)!important}.active\\:bg-yellow-100:active{background-color:var(--yellow-100)!important}.active\\:bg-yellow-200:active{background-color:var(--yellow-200)!important}.active\\:bg-yellow-300:active{background-color:var(--yellow-300)!important}.active\\:bg-yellow-400:active{background-color:var(--yellow-400)!important}.active\\:bg-yellow-500:active{background-color:var(--yellow-500)!important}.active\\:bg-yellow-600:active{background-color:var(--yellow-600)!important}.active\\:bg-yellow-700:active{background-color:var(--yellow-700)!important}.active\\:bg-yellow-800:active{background-color:var(--yellow-800)!important}.active\\:bg-yellow-900:active{background-color:var(--yellow-900)!important}.bg-cyan-50{background-color:var(--cyan-50)!important}.bg-cyan-100{background-color:var(--cyan-100)!important}.bg-cyan-200{background-color:var(--cyan-200)!important}.bg-cyan-300{background-color:var(--cyan-300)!important}.bg-cyan-400{background-color:var(--cyan-400)!important}.bg-cyan-500{background-color:var(--cyan-500)!important}.bg-cyan-600{background-color:var(--cyan-600)!important}.bg-cyan-700{background-color:var(--cyan-700)!important}.bg-cyan-800{background-color:var(--cyan-800)!important}.bg-cyan-900{background-color:var(--cyan-900)!important}.focus\\:bg-cyan-50:focus{background-color:var(--cyan-50)!important}.focus\\:bg-cyan-100:focus{background-color:var(--cyan-100)!important}.focus\\:bg-cyan-200:focus{background-color:var(--cyan-200)!important}.focus\\:bg-cyan-300:focus{background-color:var(--cyan-300)!important}.focus\\:bg-cyan-400:focus{background-color:var(--cyan-400)!important}.focus\\:bg-cyan-500:focus{background-color:var(--cyan-500)!important}.focus\\:bg-cyan-600:focus{background-color:var(--cyan-600)!important}.focus\\:bg-cyan-700:focus{background-color:var(--cyan-700)!important}.focus\\:bg-cyan-800:focus{background-color:var(--cyan-800)!important}.focus\\:bg-cyan-900:focus{background-color:var(--cyan-900)!important}.hover\\:bg-cyan-50:hover{background-color:var(--cyan-50)!important}.hover\\:bg-cyan-100:hover{background-color:var(--cyan-100)!important}.hover\\:bg-cyan-200:hover{background-color:var(--cyan-200)!important}.hover\\:bg-cyan-300:hover{background-color:var(--cyan-300)!important}.hover\\:bg-cyan-400:hover{background-color:var(--cyan-400)!important}.hover\\:bg-cyan-500:hover{background-color:var(--cyan-500)!important}.hover\\:bg-cyan-600:hover{background-color:var(--cyan-600)!important}.hover\\:bg-cyan-700:hover{background-color:var(--cyan-700)!important}.hover\\:bg-cyan-800:hover{background-color:var(--cyan-800)!important}.hover\\:bg-cyan-900:hover{background-color:var(--cyan-900)!important}.active\\:bg-cyan-50:active{background-color:var(--cyan-50)!important}.active\\:bg-cyan-100:active{background-color:var(--cyan-100)!important}.active\\:bg-cyan-200:active{background-color:var(--cyan-200)!important}.active\\:bg-cyan-300:active{background-color:var(--cyan-300)!important}.active\\:bg-cyan-400:active{background-color:var(--cyan-400)!important}.active\\:bg-cyan-500:active{background-color:var(--cyan-500)!important}.active\\:bg-cyan-600:active{background-color:var(--cyan-600)!important}.active\\:bg-cyan-700:active{background-color:var(--cyan-700)!important}.active\\:bg-cyan-800:active{background-color:var(--cyan-800)!important}.active\\:bg-cyan-900:active{background-color:var(--cyan-900)!important}.bg-pink-50{background-color:var(--pink-50)!important}.bg-pink-100{background-color:var(--pink-100)!important}.bg-pink-200{background-color:var(--pink-200)!important}.bg-pink-300{background-color:var(--pink-300)!important}.bg-pink-400{background-color:var(--pink-400)!important}.bg-pink-500{background-color:var(--pink-500)!important}.bg-pink-600{background-color:var(--pink-600)!important}.bg-pink-700{background-color:var(--pink-700)!important}.bg-pink-800{background-color:var(--pink-800)!important}.bg-pink-900{background-color:var(--pink-900)!important}.focus\\:bg-pink-50:focus{background-color:var(--pink-50)!important}.focus\\:bg-pink-100:focus{background-color:var(--pink-100)!important}.focus\\:bg-pink-200:focus{background-color:var(--pink-200)!important}.focus\\:bg-pink-300:focus{background-color:var(--pink-300)!important}.focus\\:bg-pink-400:focus{background-color:var(--pink-400)!important}.focus\\:bg-pink-500:focus{background-color:var(--pink-500)!important}.focus\\:bg-pink-600:focus{background-color:var(--pink-600)!important}.focus\\:bg-pink-700:focus{background-color:var(--pink-700)!important}.focus\\:bg-pink-800:focus{background-color:var(--pink-800)!important}.focus\\:bg-pink-900:focus{background-color:var(--pink-900)!important}.hover\\:bg-pink-50:hover{background-color:var(--pink-50)!important}.hover\\:bg-pink-100:hover{background-color:var(--pink-100)!important}.hover\\:bg-pink-200:hover{background-color:var(--pink-200)!important}.hover\\:bg-pink-300:hover{background-color:var(--pink-300)!important}.hover\\:bg-pink-400:hover{background-color:var(--pink-400)!important}.hover\\:bg-pink-500:hover{background-color:var(--pink-500)!important}.hover\\:bg-pink-600:hover{background-color:var(--pink-600)!important}.hover\\:bg-pink-700:hover{background-color:var(--pink-700)!important}.hover\\:bg-pink-800:hover{background-color:var(--pink-800)!important}.hover\\:bg-pink-900:hover{background-color:var(--pink-900)!important}.active\\:bg-pink-50:active{background-color:var(--pink-50)!important}.active\\:bg-pink-100:active{background-color:var(--pink-100)!important}.active\\:bg-pink-200:active{background-color:var(--pink-200)!important}.active\\:bg-pink-300:active{background-color:var(--pink-300)!important}.active\\:bg-pink-400:active{background-color:var(--pink-400)!important}.active\\:bg-pink-500:active{background-color:var(--pink-500)!important}.active\\:bg-pink-600:active{background-color:var(--pink-600)!important}.active\\:bg-pink-700:active{background-color:var(--pink-700)!important}.active\\:bg-pink-800:active{background-color:var(--pink-800)!important}.active\\:bg-pink-900:active{background-color:var(--pink-900)!important}.bg-indigo-50{background-color:var(--indigo-50)!important}.bg-indigo-100{background-color:var(--indigo-100)!important}.bg-indigo-200{background-color:var(--indigo-200)!important}.bg-indigo-300{background-color:var(--indigo-300)!important}.bg-indigo-400{background-color:var(--indigo-400)!important}.bg-indigo-500{background-color:var(--indigo-500)!important}.bg-indigo-600{background-color:var(--indigo-600)!important}.bg-indigo-700{background-color:var(--indigo-700)!important}.bg-indigo-800{background-color:var(--indigo-800)!important}.bg-indigo-900{background-color:var(--indigo-900)!important}.focus\\:bg-indigo-50:focus{background-color:var(--indigo-50)!important}.focus\\:bg-indigo-100:focus{background-color:var(--indigo-100)!important}.focus\\:bg-indigo-200:focus{background-color:var(--indigo-200)!important}.focus\\:bg-indigo-300:focus{background-color:var(--indigo-300)!important}.focus\\:bg-indigo-400:focus{background-color:var(--indigo-400)!important}.focus\\:bg-indigo-500:focus{background-color:var(--indigo-500)!important}.focus\\:bg-indigo-600:focus{background-color:var(--indigo-600)!important}.focus\\:bg-indigo-700:focus{background-color:var(--indigo-700)!important}.focus\\:bg-indigo-800:focus{background-color:var(--indigo-800)!important}.focus\\:bg-indigo-900:focus{background-color:var(--indigo-900)!important}.hover\\:bg-indigo-50:hover{background-color:var(--indigo-50)!important}.hover\\:bg-indigo-100:hover{background-color:var(--indigo-100)!important}.hover\\:bg-indigo-200:hover{background-color:var(--indigo-200)!important}.hover\\:bg-indigo-300:hover{background-color:var(--indigo-300)!important}.hover\\:bg-indigo-400:hover{background-color:var(--indigo-400)!important}.hover\\:bg-indigo-500:hover{background-color:var(--indigo-500)!important}.hover\\:bg-indigo-600:hover{background-color:var(--indigo-600)!important}.hover\\:bg-indigo-700:hover{background-color:var(--indigo-700)!important}.hover\\:bg-indigo-800:hover{background-color:var(--indigo-800)!important}.hover\\:bg-indigo-900:hover{background-color:var(--indigo-900)!important}.active\\:bg-indigo-50:active{background-color:var(--indigo-50)!important}.active\\:bg-indigo-100:active{background-color:var(--indigo-100)!important}.active\\:bg-indigo-200:active{background-color:var(--indigo-200)!important}.active\\:bg-indigo-300:active{background-color:var(--indigo-300)!important}.active\\:bg-indigo-400:active{background-color:var(--indigo-400)!important}.active\\:bg-indigo-500:active{background-color:var(--indigo-500)!important}.active\\:bg-indigo-600:active{background-color:var(--indigo-600)!important}.active\\:bg-indigo-700:active{background-color:var(--indigo-700)!important}.active\\:bg-indigo-800:active{background-color:var(--indigo-800)!important}.active\\:bg-indigo-900:active{background-color:var(--indigo-900)!important}.bg-teal-50{background-color:var(--teal-50)!important}.bg-teal-100{background-color:var(--teal-100)!important}.bg-teal-200{background-color:var(--teal-200)!important}.bg-teal-300{background-color:var(--teal-300)!important}.bg-teal-400{background-color:var(--teal-400)!important}.bg-teal-500{background-color:var(--teal-500)!important}.bg-teal-600{background-color:var(--teal-600)!important}.bg-teal-700{background-color:var(--teal-700)!important}.bg-teal-800{background-color:var(--teal-800)!important}.bg-teal-900{background-color:var(--teal-900)!important}.focus\\:bg-teal-50:focus{background-color:var(--teal-50)!important}.focus\\:bg-teal-100:focus{background-color:var(--teal-100)!important}.focus\\:bg-teal-200:focus{background-color:var(--teal-200)!important}.focus\\:bg-teal-300:focus{background-color:var(--teal-300)!important}.focus\\:bg-teal-400:focus{background-color:var(--teal-400)!important}.focus\\:bg-teal-500:focus{background-color:var(--teal-500)!important}.focus\\:bg-teal-600:focus{background-color:var(--teal-600)!important}.focus\\:bg-teal-700:focus{background-color:var(--teal-700)!important}.focus\\:bg-teal-800:focus{background-color:var(--teal-800)!important}.focus\\:bg-teal-900:focus{background-color:var(--teal-900)!important}.hover\\:bg-teal-50:hover{background-color:var(--teal-50)!important}.hover\\:bg-teal-100:hover{background-color:var(--teal-100)!important}.hover\\:bg-teal-200:hover{background-color:var(--teal-200)!important}.hover\\:bg-teal-300:hover{background-color:var(--teal-300)!important}.hover\\:bg-teal-400:hover{background-color:var(--teal-400)!important}.hover\\:bg-teal-500:hover{background-color:var(--teal-500)!important}.hover\\:bg-teal-600:hover{background-color:var(--teal-600)!important}.hover\\:bg-teal-700:hover{background-color:var(--teal-700)!important}.hover\\:bg-teal-800:hover{background-color:var(--teal-800)!important}.hover\\:bg-teal-900:hover{background-color:var(--teal-900)!important}.active\\:bg-teal-50:active{background-color:var(--teal-50)!important}.active\\:bg-teal-100:active{background-color:var(--teal-100)!important}.active\\:bg-teal-200:active{background-color:var(--teal-200)!important}.active\\:bg-teal-300:active{background-color:var(--teal-300)!important}.active\\:bg-teal-400:active{background-color:var(--teal-400)!important}.active\\:bg-teal-500:active{background-color:var(--teal-500)!important}.active\\:bg-teal-600:active{background-color:var(--teal-600)!important}.active\\:bg-teal-700:active{background-color:var(--teal-700)!important}.active\\:bg-teal-800:active{background-color:var(--teal-800)!important}.active\\:bg-teal-900:active{background-color:var(--teal-900)!important}.bg-orange-50{background-color:var(--orange-50)!important}.bg-orange-100{background-color:var(--orange-100)!important}.bg-orange-200{background-color:var(--orange-200)!important}.bg-orange-300{background-color:var(--orange-300)!important}.bg-orange-400{background-color:var(--orange-400)!important}.bg-orange-500{background-color:var(--orange-500)!important}.bg-orange-600{background-color:var(--orange-600)!important}.bg-orange-700{background-color:var(--orange-700)!important}.bg-orange-800{background-color:var(--orange-800)!important}.bg-orange-900{background-color:var(--orange-900)!important}.focus\\:bg-orange-50:focus{background-color:var(--orange-50)!important}.focus\\:bg-orange-100:focus{background-color:var(--orange-100)!important}.focus\\:bg-orange-200:focus{background-color:var(--orange-200)!important}.focus\\:bg-orange-300:focus{background-color:var(--orange-300)!important}.focus\\:bg-orange-400:focus{background-color:var(--orange-400)!important}.focus\\:bg-orange-500:focus{background-color:var(--orange-500)!important}.focus\\:bg-orange-600:focus{background-color:var(--orange-600)!important}.focus\\:bg-orange-700:focus{background-color:var(--orange-700)!important}.focus\\:bg-orange-800:focus{background-color:var(--orange-800)!important}.focus\\:bg-orange-900:focus{background-color:var(--orange-900)!important}.hover\\:bg-orange-50:hover{background-color:var(--orange-50)!important}.hover\\:bg-orange-100:hover{background-color:var(--orange-100)!important}.hover\\:bg-orange-200:hover{background-color:var(--orange-200)!important}.hover\\:bg-orange-300:hover{background-color:var(--orange-300)!important}.hover\\:bg-orange-400:hover{background-color:var(--orange-400)!important}.hover\\:bg-orange-500:hover{background-color:var(--orange-500)!important}.hover\\:bg-orange-600:hover{background-color:var(--orange-600)!important}.hover\\:bg-orange-700:hover{background-color:var(--orange-700)!important}.hover\\:bg-orange-800:hover{background-color:var(--orange-800)!important}.hover\\:bg-orange-900:hover{background-color:var(--orange-900)!important}.active\\:bg-orange-50:active{background-color:var(--orange-50)!important}.active\\:bg-orange-100:active{background-color:var(--orange-100)!important}.active\\:bg-orange-200:active{background-color:var(--orange-200)!important}.active\\:bg-orange-300:active{background-color:var(--orange-300)!important}.active\\:bg-orange-400:active{background-color:var(--orange-400)!important}.active\\:bg-orange-500:active{background-color:var(--orange-500)!important}.active\\:bg-orange-600:active{background-color:var(--orange-600)!important}.active\\:bg-orange-700:active{background-color:var(--orange-700)!important}.active\\:bg-orange-800:active{background-color:var(--orange-800)!important}.active\\:bg-orange-900:active{background-color:var(--orange-900)!important}.bg-bluegray-50{background-color:var(--bluegray-50)!important}.bg-bluegray-100{background-color:var(--bluegray-100)!important}.bg-bluegray-200{background-color:var(--bluegray-200)!important}.bg-bluegray-300{background-color:var(--bluegray-300)!important}.bg-bluegray-400{background-color:var(--bluegray-400)!important}.bg-bluegray-500{background-color:var(--bluegray-500)!important}.bg-bluegray-600{background-color:var(--bluegray-600)!important}.bg-bluegray-700{background-color:var(--bluegray-700)!important}.bg-bluegray-800{background-color:var(--bluegray-800)!important}.bg-bluegray-900{background-color:var(--bluegray-900)!important}.focus\\:bg-bluegray-50:focus{background-color:var(--bluegray-50)!important}.focus\\:bg-bluegray-100:focus{background-color:var(--bluegray-100)!important}.focus\\:bg-bluegray-200:focus{background-color:var(--bluegray-200)!important}.focus\\:bg-bluegray-300:focus{background-color:var(--bluegray-300)!important}.focus\\:bg-bluegray-400:focus{background-color:var(--bluegray-400)!important}.focus\\:bg-bluegray-500:focus{background-color:var(--bluegray-500)!important}.focus\\:bg-bluegray-600:focus{background-color:var(--bluegray-600)!important}.focus\\:bg-bluegray-700:focus{background-color:var(--bluegray-700)!important}.focus\\:bg-bluegray-800:focus{background-color:var(--bluegray-800)!important}.focus\\:bg-bluegray-900:focus{background-color:var(--bluegray-900)!important}.hover\\:bg-bluegray-50:hover{background-color:var(--bluegray-50)!important}.hover\\:bg-bluegray-100:hover{background-color:var(--bluegray-100)!important}.hover\\:bg-bluegray-200:hover{background-color:var(--bluegray-200)!important}.hover\\:bg-bluegray-300:hover{background-color:var(--bluegray-300)!important}.hover\\:bg-bluegray-400:hover{background-color:var(--bluegray-400)!important}.hover\\:bg-bluegray-500:hover{background-color:var(--bluegray-500)!important}.hover\\:bg-bluegray-600:hover{background-color:var(--bluegray-600)!important}.hover\\:bg-bluegray-700:hover{background-color:var(--bluegray-700)!important}.hover\\:bg-bluegray-800:hover{background-color:var(--bluegray-800)!important}.hover\\:bg-bluegray-900:hover{background-color:var(--bluegray-900)!important}.active\\:bg-bluegray-50:active{background-color:var(--bluegray-50)!important}.active\\:bg-bluegray-100:active{background-color:var(--bluegray-100)!important}.active\\:bg-bluegray-200:active{background-color:var(--bluegray-200)!important}.active\\:bg-bluegray-300:active{background-color:var(--bluegray-300)!important}.active\\:bg-bluegray-400:active{background-color:var(--bluegray-400)!important}.active\\:bg-bluegray-500:active{background-color:var(--bluegray-500)!important}.active\\:bg-bluegray-600:active{background-color:var(--bluegray-600)!important}.active\\:bg-bluegray-700:active{background-color:var(--bluegray-700)!important}.active\\:bg-bluegray-800:active{background-color:var(--bluegray-800)!important}.active\\:bg-bluegray-900:active{background-color:var(--bluegray-900)!important}.bg-purple-50{background-color:var(--purple-50)!important}.bg-purple-100{background-color:var(--purple-100)!important}.bg-purple-200{background-color:var(--purple-200)!important}.bg-purple-300{background-color:var(--purple-300)!important}.bg-purple-400{background-color:var(--purple-400)!important}.bg-purple-500{background-color:var(--purple-500)!important}.bg-purple-600{background-color:var(--purple-600)!important}.bg-purple-700{background-color:var(--purple-700)!important}.bg-purple-800{background-color:var(--purple-800)!important}.bg-purple-900{background-color:var(--purple-900)!important}.focus\\:bg-purple-50:focus{background-color:var(--purple-50)!important}.focus\\:bg-purple-100:focus{background-color:var(--purple-100)!important}.focus\\:bg-purple-200:focus{background-color:var(--purple-200)!important}.focus\\:bg-purple-300:focus{background-color:var(--purple-300)!important}.focus\\:bg-purple-400:focus{background-color:var(--purple-400)!important}.focus\\:bg-purple-500:focus{background-color:var(--purple-500)!important}.focus\\:bg-purple-600:focus{background-color:var(--purple-600)!important}.focus\\:bg-purple-700:focus{background-color:var(--purple-700)!important}.focus\\:bg-purple-800:focus{background-color:var(--purple-800)!important}.focus\\:bg-purple-900:focus{background-color:var(--purple-900)!important}.hover\\:bg-purple-50:hover{background-color:var(--purple-50)!important}.hover\\:bg-purple-100:hover{background-color:var(--purple-100)!important}.hover\\:bg-purple-200:hover{background-color:var(--purple-200)!important}.hover\\:bg-purple-300:hover{background-color:var(--purple-300)!important}.hover\\:bg-purple-400:hover{background-color:var(--purple-400)!important}.hover\\:bg-purple-500:hover{background-color:var(--purple-500)!important}.hover\\:bg-purple-600:hover{background-color:var(--purple-600)!important}.hover\\:bg-purple-700:hover{background-color:var(--purple-700)!important}.hover\\:bg-purple-800:hover{background-color:var(--purple-800)!important}.hover\\:bg-purple-900:hover{background-color:var(--purple-900)!important}.active\\:bg-purple-50:active{background-color:var(--purple-50)!important}.active\\:bg-purple-100:active{background-color:var(--purple-100)!important}.active\\:bg-purple-200:active{background-color:var(--purple-200)!important}.active\\:bg-purple-300:active{background-color:var(--purple-300)!important}.active\\:bg-purple-400:active{background-color:var(--purple-400)!important}.active\\:bg-purple-500:active{background-color:var(--purple-500)!important}.active\\:bg-purple-600:active{background-color:var(--purple-600)!important}.active\\:bg-purple-700:active{background-color:var(--purple-700)!important}.active\\:bg-purple-800:active{background-color:var(--purple-800)!important}.active\\:bg-purple-900:active{background-color:var(--purple-900)!important}.bg-gray-50{background-color:var(--gray-50)!important}.bg-gray-100{background-color:var(--gray-100)!important}.bg-gray-200{background-color:var(--gray-200)!important}.bg-gray-300{background-color:var(--gray-300)!important}.bg-gray-400{background-color:var(--gray-400)!important}.bg-gray-500{background-color:var(--gray-500)!important}.bg-gray-600{background-color:var(--gray-600)!important}.bg-gray-700{background-color:var(--gray-700)!important}.bg-gray-800{background-color:var(--gray-800)!important}.bg-gray-900{background-color:var(--gray-900)!important}.focus\\:bg-gray-50:focus{background-color:var(--gray-50)!important}.focus\\:bg-gray-100:focus{background-color:var(--gray-100)!important}.focus\\:bg-gray-200:focus{background-color:var(--gray-200)!important}.focus\\:bg-gray-300:focus{background-color:var(--gray-300)!important}.focus\\:bg-gray-400:focus{background-color:var(--gray-400)!important}.focus\\:bg-gray-500:focus{background-color:var(--gray-500)!important}.focus\\:bg-gray-600:focus{background-color:var(--gray-600)!important}.focus\\:bg-gray-700:focus{background-color:var(--gray-700)!important}.focus\\:bg-gray-800:focus{background-color:var(--gray-800)!important}.focus\\:bg-gray-900:focus{background-color:var(--gray-900)!important}.hover\\:bg-gray-50:hover{background-color:var(--gray-50)!important}.hover\\:bg-gray-100:hover{background-color:var(--gray-100)!important}.hover\\:bg-gray-200:hover{background-color:var(--gray-200)!important}.hover\\:bg-gray-300:hover{background-color:var(--gray-300)!important}.hover\\:bg-gray-400:hover{background-color:var(--gray-400)!important}.hover\\:bg-gray-500:hover{background-color:var(--gray-500)!important}.hover\\:bg-gray-600:hover{background-color:var(--gray-600)!important}.hover\\:bg-gray-700:hover{background-color:var(--gray-700)!important}.hover\\:bg-gray-800:hover{background-color:var(--gray-800)!important}.hover\\:bg-gray-900:hover{background-color:var(--gray-900)!important}.active\\:bg-gray-50:active{background-color:var(--gray-50)!important}.active\\:bg-gray-100:active{background-color:var(--gray-100)!important}.active\\:bg-gray-200:active{background-color:var(--gray-200)!important}.active\\:bg-gray-300:active{background-color:var(--gray-300)!important}.active\\:bg-gray-400:active{background-color:var(--gray-400)!important}.active\\:bg-gray-500:active{background-color:var(--gray-500)!important}.active\\:bg-gray-600:active{background-color:var(--gray-600)!important}.active\\:bg-gray-700:active{background-color:var(--gray-700)!important}.active\\:bg-gray-800:active{background-color:var(--gray-800)!important}.active\\:bg-gray-900:active{background-color:var(--gray-900)!important}.bg-red-50{background-color:var(--red-50)!important}.bg-red-100{background-color:var(--red-100)!important}.bg-red-200{background-color:var(--red-200)!important}.bg-red-300{background-color:var(--red-300)!important}.bg-red-400{background-color:var(--red-400)!important}.bg-red-500{background-color:var(--red-500)!important}.bg-red-600{background-color:var(--red-600)!important}.bg-red-700{background-color:var(--red-700)!important}.bg-red-800{background-color:var(--red-800)!important}.bg-red-900{background-color:var(--red-900)!important}.focus\\:bg-red-50:focus{background-color:var(--red-50)!important}.focus\\:bg-red-100:focus{background-color:var(--red-100)!important}.focus\\:bg-red-200:focus{background-color:var(--red-200)!important}.focus\\:bg-red-300:focus{background-color:var(--red-300)!important}.focus\\:bg-red-400:focus{background-color:var(--red-400)!important}.focus\\:bg-red-500:focus{background-color:var(--red-500)!important}.focus\\:bg-red-600:focus{background-color:var(--red-600)!important}.focus\\:bg-red-700:focus{background-color:var(--red-700)!important}.focus\\:bg-red-800:focus{background-color:var(--red-800)!important}.focus\\:bg-red-900:focus{background-color:var(--red-900)!important}.hover\\:bg-red-50:hover{background-color:var(--red-50)!important}.hover\\:bg-red-100:hover{background-color:var(--red-100)!important}.hover\\:bg-red-200:hover{background-color:var(--red-200)!important}.hover\\:bg-red-300:hover{background-color:var(--red-300)!important}.hover\\:bg-red-400:hover{background-color:var(--red-400)!important}.hover\\:bg-red-500:hover{background-color:var(--red-500)!important}.hover\\:bg-red-600:hover{background-color:var(--red-600)!important}.hover\\:bg-red-700:hover{background-color:var(--red-700)!important}.hover\\:bg-red-800:hover{background-color:var(--red-800)!important}.hover\\:bg-red-900:hover{background-color:var(--red-900)!important}.active\\:bg-red-50:active{background-color:var(--red-50)!important}.active\\:bg-red-100:active{background-color:var(--red-100)!important}.active\\:bg-red-200:active{background-color:var(--red-200)!important}.active\\:bg-red-300:active{background-color:var(--red-300)!important}.active\\:bg-red-400:active{background-color:var(--red-400)!important}.active\\:bg-red-500:active{background-color:var(--red-500)!important}.active\\:bg-red-600:active{background-color:var(--red-600)!important}.active\\:bg-red-700:active{background-color:var(--red-700)!important}.active\\:bg-red-800:active{background-color:var(--red-800)!important}.active\\:bg-red-900:active{background-color:var(--red-900)!important}.bg-primary-50{background-color:var(--primary-50)!important}.bg-primary-100{background-color:var(--primary-100)!important}.bg-primary-200{background-color:var(--primary-200)!important}.bg-primary-300{background-color:var(--primary-300)!important}.bg-primary-400{background-color:var(--primary-400)!important}.bg-primary-500{background-color:var(--primary-500)!important}.bg-primary-600{background-color:var(--primary-600)!important}.bg-primary-700{background-color:var(--primary-700)!important}.bg-primary-800{background-color:var(--primary-800)!important}.bg-primary-900{background-color:var(--primary-900)!important}.focus\\:bg-primary-50:focus{background-color:var(--primary-50)!important}.focus\\:bg-primary-100:focus{background-color:var(--primary-100)!important}.focus\\:bg-primary-200:focus{background-color:var(--primary-200)!important}.focus\\:bg-primary-300:focus{background-color:var(--primary-300)!important}.focus\\:bg-primary-400:focus{background-color:var(--primary-400)!important}.focus\\:bg-primary-500:focus{background-color:var(--primary-500)!important}.focus\\:bg-primary-600:focus{background-color:var(--primary-600)!important}.focus\\:bg-primary-700:focus{background-color:var(--primary-700)!important}.focus\\:bg-primary-800:focus{background-color:var(--primary-800)!important}.focus\\:bg-primary-900:focus{background-color:var(--primary-900)!important}.hover\\:bg-primary-50:hover{background-color:var(--primary-50)!important}.hover\\:bg-primary-100:hover{background-color:var(--primary-100)!important}.hover\\:bg-primary-200:hover{background-color:var(--primary-200)!important}.hover\\:bg-primary-300:hover{background-color:var(--primary-300)!important}.hover\\:bg-primary-400:hover{background-color:var(--primary-400)!important}.hover\\:bg-primary-500:hover{background-color:var(--primary-500)!important}.hover\\:bg-primary-600:hover{background-color:var(--primary-600)!important}.hover\\:bg-primary-700:hover{background-color:var(--primary-700)!important}.hover\\:bg-primary-800:hover{background-color:var(--primary-800)!important}.hover\\:bg-primary-900:hover{background-color:var(--primary-900)!important}.active\\:bg-primary-50:active{background-color:var(--primary-50)!important}.active\\:bg-primary-100:active{background-color:var(--primary-100)!important}.active\\:bg-primary-200:active{background-color:var(--primary-200)!important}.active\\:bg-primary-300:active{background-color:var(--primary-300)!important}.active\\:bg-primary-400:active{background-color:var(--primary-400)!important}.active\\:bg-primary-500:active{background-color:var(--primary-500)!important}.active\\:bg-primary-600:active{background-color:var(--primary-600)!important}.active\\:bg-primary-700:active{background-color:var(--primary-700)!important}.active\\:bg-primary-800:active{background-color:var(--primary-800)!important}.active\\:bg-primary-900:active{background-color:var(--primary-900)!important}.border-blue-50{border-color:var(--blue-50)!important}.border-blue-100{border-color:var(--blue-100)!important}.border-blue-200{border-color:var(--blue-200)!important}.border-blue-300{border-color:var(--blue-300)!important}.border-blue-400{border-color:var(--blue-400)!important}.border-blue-500{border-color:var(--blue-500)!important}.border-blue-600{border-color:var(--blue-600)!important}.border-blue-700{border-color:var(--blue-700)!important}.border-blue-800{border-color:var(--blue-800)!important}.border-blue-900{border-color:var(--blue-900)!important}.focus\\:border-blue-50:focus{border-color:var(--blue-50)!important}.focus\\:border-blue-100:focus{border-color:var(--blue-100)!important}.focus\\:border-blue-200:focus{border-color:var(--blue-200)!important}.focus\\:border-blue-300:focus{border-color:var(--blue-300)!important}.focus\\:border-blue-400:focus{border-color:var(--blue-400)!important}.focus\\:border-blue-500:focus{border-color:var(--blue-500)!important}.focus\\:border-blue-600:focus{border-color:var(--blue-600)!important}.focus\\:border-blue-700:focus{border-color:var(--blue-700)!important}.focus\\:border-blue-800:focus{border-color:var(--blue-800)!important}.focus\\:border-blue-900:focus{border-color:var(--blue-900)!important}.hover\\:border-blue-50:hover{border-color:var(--blue-50)!important}.hover\\:border-blue-100:hover{border-color:var(--blue-100)!important}.hover\\:border-blue-200:hover{border-color:var(--blue-200)!important}.hover\\:border-blue-300:hover{border-color:var(--blue-300)!important}.hover\\:border-blue-400:hover{border-color:var(--blue-400)!important}.hover\\:border-blue-500:hover{border-color:var(--blue-500)!important}.hover\\:border-blue-600:hover{border-color:var(--blue-600)!important}.hover\\:border-blue-700:hover{border-color:var(--blue-700)!important}.hover\\:border-blue-800:hover{border-color:var(--blue-800)!important}.hover\\:border-blue-900:hover{border-color:var(--blue-900)!important}.active\\:border-blue-50:active{border-color:var(--blue-50)!important}.active\\:border-blue-100:active{border-color:var(--blue-100)!important}.active\\:border-blue-200:active{border-color:var(--blue-200)!important}.active\\:border-blue-300:active{border-color:var(--blue-300)!important}.active\\:border-blue-400:active{border-color:var(--blue-400)!important}.active\\:border-blue-500:active{border-color:var(--blue-500)!important}.active\\:border-blue-600:active{border-color:var(--blue-600)!important}.active\\:border-blue-700:active{border-color:var(--blue-700)!important}.active\\:border-blue-800:active{border-color:var(--blue-800)!important}.active\\:border-blue-900:active{border-color:var(--blue-900)!important}.border-green-50{border-color:var(--green-50)!important}.border-green-100{border-color:var(--green-100)!important}.border-green-200{border-color:var(--green-200)!important}.border-green-300{border-color:var(--green-300)!important}.border-green-400{border-color:var(--green-400)!important}.border-green-500{border-color:var(--green-500)!important}.border-green-600{border-color:var(--green-600)!important}.border-green-700{border-color:var(--green-700)!important}.border-green-800{border-color:var(--green-800)!important}.border-green-900{border-color:var(--green-900)!important}.focus\\:border-green-50:focus{border-color:var(--green-50)!important}.focus\\:border-green-100:focus{border-color:var(--green-100)!important}.focus\\:border-green-200:focus{border-color:var(--green-200)!important}.focus\\:border-green-300:focus{border-color:var(--green-300)!important}.focus\\:border-green-400:focus{border-color:var(--green-400)!important}.focus\\:border-green-500:focus{border-color:var(--green-500)!important}.focus\\:border-green-600:focus{border-color:var(--green-600)!important}.focus\\:border-green-700:focus{border-color:var(--green-700)!important}.focus\\:border-green-800:focus{border-color:var(--green-800)!important}.focus\\:border-green-900:focus{border-color:var(--green-900)!important}.hover\\:border-green-50:hover{border-color:var(--green-50)!important}.hover\\:border-green-100:hover{border-color:var(--green-100)!important}.hover\\:border-green-200:hover{border-color:var(--green-200)!important}.hover\\:border-green-300:hover{border-color:var(--green-300)!important}.hover\\:border-green-400:hover{border-color:var(--green-400)!important}.hover\\:border-green-500:hover{border-color:var(--green-500)!important}.hover\\:border-green-600:hover{border-color:var(--green-600)!important}.hover\\:border-green-700:hover{border-color:var(--green-700)!important}.hover\\:border-green-800:hover{border-color:var(--green-800)!important}.hover\\:border-green-900:hover{border-color:var(--green-900)!important}.active\\:border-green-50:active{border-color:var(--green-50)!important}.active\\:border-green-100:active{border-color:var(--green-100)!important}.active\\:border-green-200:active{border-color:var(--green-200)!important}.active\\:border-green-300:active{border-color:var(--green-300)!important}.active\\:border-green-400:active{border-color:var(--green-400)!important}.active\\:border-green-500:active{border-color:var(--green-500)!important}.active\\:border-green-600:active{border-color:var(--green-600)!important}.active\\:border-green-700:active{border-color:var(--green-700)!important}.active\\:border-green-800:active{border-color:var(--green-800)!important}.active\\:border-green-900:active{border-color:var(--green-900)!important}.border-yellow-50{border-color:var(--yellow-50)!important}.border-yellow-100{border-color:var(--yellow-100)!important}.border-yellow-200{border-color:var(--yellow-200)!important}.border-yellow-300{border-color:var(--yellow-300)!important}.border-yellow-400{border-color:var(--yellow-400)!important}.border-yellow-500{border-color:var(--yellow-500)!important}.border-yellow-600{border-color:var(--yellow-600)!important}.border-yellow-700{border-color:var(--yellow-700)!important}.border-yellow-800{border-color:var(--yellow-800)!important}.border-yellow-900{border-color:var(--yellow-900)!important}.focus\\:border-yellow-50:focus{border-color:var(--yellow-50)!important}.focus\\:border-yellow-100:focus{border-color:var(--yellow-100)!important}.focus\\:border-yellow-200:focus{border-color:var(--yellow-200)!important}.focus\\:border-yellow-300:focus{border-color:var(--yellow-300)!important}.focus\\:border-yellow-400:focus{border-color:var(--yellow-400)!important}.focus\\:border-yellow-500:focus{border-color:var(--yellow-500)!important}.focus\\:border-yellow-600:focus{border-color:var(--yellow-600)!important}.focus\\:border-yellow-700:focus{border-color:var(--yellow-700)!important}.focus\\:border-yellow-800:focus{border-color:var(--yellow-800)!important}.focus\\:border-yellow-900:focus{border-color:var(--yellow-900)!important}.hover\\:border-yellow-50:hover{border-color:var(--yellow-50)!important}.hover\\:border-yellow-100:hover{border-color:var(--yellow-100)!important}.hover\\:border-yellow-200:hover{border-color:var(--yellow-200)!important}.hover\\:border-yellow-300:hover{border-color:var(--yellow-300)!important}.hover\\:border-yellow-400:hover{border-color:var(--yellow-400)!important}.hover\\:border-yellow-500:hover{border-color:var(--yellow-500)!important}.hover\\:border-yellow-600:hover{border-color:var(--yellow-600)!important}.hover\\:border-yellow-700:hover{border-color:var(--yellow-700)!important}.hover\\:border-yellow-800:hover{border-color:var(--yellow-800)!important}.hover\\:border-yellow-900:hover{border-color:var(--yellow-900)!important}.active\\:border-yellow-50:active{border-color:var(--yellow-50)!important}.active\\:border-yellow-100:active{border-color:var(--yellow-100)!important}.active\\:border-yellow-200:active{border-color:var(--yellow-200)!important}.active\\:border-yellow-300:active{border-color:var(--yellow-300)!important}.active\\:border-yellow-400:active{border-color:var(--yellow-400)!important}.active\\:border-yellow-500:active{border-color:var(--yellow-500)!important}.active\\:border-yellow-600:active{border-color:var(--yellow-600)!important}.active\\:border-yellow-700:active{border-color:var(--yellow-700)!important}.active\\:border-yellow-800:active{border-color:var(--yellow-800)!important}.active\\:border-yellow-900:active{border-color:var(--yellow-900)!important}.border-cyan-50{border-color:var(--cyan-50)!important}.border-cyan-100{border-color:var(--cyan-100)!important}.border-cyan-200{border-color:var(--cyan-200)!important}.border-cyan-300{border-color:var(--cyan-300)!important}.border-cyan-400{border-color:var(--cyan-400)!important}.border-cyan-500{border-color:var(--cyan-500)!important}.border-cyan-600{border-color:var(--cyan-600)!important}.border-cyan-700{border-color:var(--cyan-700)!important}.border-cyan-800{border-color:var(--cyan-800)!important}.border-cyan-900{border-color:var(--cyan-900)!important}.focus\\:border-cyan-50:focus{border-color:var(--cyan-50)!important}.focus\\:border-cyan-100:focus{border-color:var(--cyan-100)!important}.focus\\:border-cyan-200:focus{border-color:var(--cyan-200)!important}.focus\\:border-cyan-300:focus{border-color:var(--cyan-300)!important}.focus\\:border-cyan-400:focus{border-color:var(--cyan-400)!important}.focus\\:border-cyan-500:focus{border-color:var(--cyan-500)!important}.focus\\:border-cyan-600:focus{border-color:var(--cyan-600)!important}.focus\\:border-cyan-700:focus{border-color:var(--cyan-700)!important}.focus\\:border-cyan-800:focus{border-color:var(--cyan-800)!important}.focus\\:border-cyan-900:focus{border-color:var(--cyan-900)!important}.hover\\:border-cyan-50:hover{border-color:var(--cyan-50)!important}.hover\\:border-cyan-100:hover{border-color:var(--cyan-100)!important}.hover\\:border-cyan-200:hover{border-color:var(--cyan-200)!important}.hover\\:border-cyan-300:hover{border-color:var(--cyan-300)!important}.hover\\:border-cyan-400:hover{border-color:var(--cyan-400)!important}.hover\\:border-cyan-500:hover{border-color:var(--cyan-500)!important}.hover\\:border-cyan-600:hover{border-color:var(--cyan-600)!important}.hover\\:border-cyan-700:hover{border-color:var(--cyan-700)!important}.hover\\:border-cyan-800:hover{border-color:var(--cyan-800)!important}.hover\\:border-cyan-900:hover{border-color:var(--cyan-900)!important}.active\\:border-cyan-50:active{border-color:var(--cyan-50)!important}.active\\:border-cyan-100:active{border-color:var(--cyan-100)!important}.active\\:border-cyan-200:active{border-color:var(--cyan-200)!important}.active\\:border-cyan-300:active{border-color:var(--cyan-300)!important}.active\\:border-cyan-400:active{border-color:var(--cyan-400)!important}.active\\:border-cyan-500:active{border-color:var(--cyan-500)!important}.active\\:border-cyan-600:active{border-color:var(--cyan-600)!important}.active\\:border-cyan-700:active{border-color:var(--cyan-700)!important}.active\\:border-cyan-800:active{border-color:var(--cyan-800)!important}.active\\:border-cyan-900:active{border-color:var(--cyan-900)!important}.border-pink-50{border-color:var(--pink-50)!important}.border-pink-100{border-color:var(--pink-100)!important}.border-pink-200{border-color:var(--pink-200)!important}.border-pink-300{border-color:var(--pink-300)!important}.border-pink-400{border-color:var(--pink-400)!important}.border-pink-500{border-color:var(--pink-500)!important}.border-pink-600{border-color:var(--pink-600)!important}.border-pink-700{border-color:var(--pink-700)!important}.border-pink-800{border-color:var(--pink-800)!important}.border-pink-900{border-color:var(--pink-900)!important}.focus\\:border-pink-50:focus{border-color:var(--pink-50)!important}.focus\\:border-pink-100:focus{border-color:var(--pink-100)!important}.focus\\:border-pink-200:focus{border-color:var(--pink-200)!important}.focus\\:border-pink-300:focus{border-color:var(--pink-300)!important}.focus\\:border-pink-400:focus{border-color:var(--pink-400)!important}.focus\\:border-pink-500:focus{border-color:var(--pink-500)!important}.focus\\:border-pink-600:focus{border-color:var(--pink-600)!important}.focus\\:border-pink-700:focus{border-color:var(--pink-700)!important}.focus\\:border-pink-800:focus{border-color:var(--pink-800)!important}.focus\\:border-pink-900:focus{border-color:var(--pink-900)!important}.hover\\:border-pink-50:hover{border-color:var(--pink-50)!important}.hover\\:border-pink-100:hover{border-color:var(--pink-100)!important}.hover\\:border-pink-200:hover{border-color:var(--pink-200)!important}.hover\\:border-pink-300:hover{border-color:var(--pink-300)!important}.hover\\:border-pink-400:hover{border-color:var(--pink-400)!important}.hover\\:border-pink-500:hover{border-color:var(--pink-500)!important}.hover\\:border-pink-600:hover{border-color:var(--pink-600)!important}.hover\\:border-pink-700:hover{border-color:var(--pink-700)!important}.hover\\:border-pink-800:hover{border-color:var(--pink-800)!important}.hover\\:border-pink-900:hover{border-color:var(--pink-900)!important}.active\\:border-pink-50:active{border-color:var(--pink-50)!important}.active\\:border-pink-100:active{border-color:var(--pink-100)!important}.active\\:border-pink-200:active{border-color:var(--pink-200)!important}.active\\:border-pink-300:active{border-color:var(--pink-300)!important}.active\\:border-pink-400:active{border-color:var(--pink-400)!important}.active\\:border-pink-500:active{border-color:var(--pink-500)!important}.active\\:border-pink-600:active{border-color:var(--pink-600)!important}.active\\:border-pink-700:active{border-color:var(--pink-700)!important}.active\\:border-pink-800:active{border-color:var(--pink-800)!important}.active\\:border-pink-900:active{border-color:var(--pink-900)!important}.border-indigo-50{border-color:var(--indigo-50)!important}.border-indigo-100{border-color:var(--indigo-100)!important}.border-indigo-200{border-color:var(--indigo-200)!important}.border-indigo-300{border-color:var(--indigo-300)!important}.border-indigo-400{border-color:var(--indigo-400)!important}.border-indigo-500{border-color:var(--indigo-500)!important}.border-indigo-600{border-color:var(--indigo-600)!important}.border-indigo-700{border-color:var(--indigo-700)!important}.border-indigo-800{border-color:var(--indigo-800)!important}.border-indigo-900{border-color:var(--indigo-900)!important}.focus\\:border-indigo-50:focus{border-color:var(--indigo-50)!important}.focus\\:border-indigo-100:focus{border-color:var(--indigo-100)!important}.focus\\:border-indigo-200:focus{border-color:var(--indigo-200)!important}.focus\\:border-indigo-300:focus{border-color:var(--indigo-300)!important}.focus\\:border-indigo-400:focus{border-color:var(--indigo-400)!important}.focus\\:border-indigo-500:focus{border-color:var(--indigo-500)!important}.focus\\:border-indigo-600:focus{border-color:var(--indigo-600)!important}.focus\\:border-indigo-700:focus{border-color:var(--indigo-700)!important}.focus\\:border-indigo-800:focus{border-color:var(--indigo-800)!important}.focus\\:border-indigo-900:focus{border-color:var(--indigo-900)!important}.hover\\:border-indigo-50:hover{border-color:var(--indigo-50)!important}.hover\\:border-indigo-100:hover{border-color:var(--indigo-100)!important}.hover\\:border-indigo-200:hover{border-color:var(--indigo-200)!important}.hover\\:border-indigo-300:hover{border-color:var(--indigo-300)!important}.hover\\:border-indigo-400:hover{border-color:var(--indigo-400)!important}.hover\\:border-indigo-500:hover{border-color:var(--indigo-500)!important}.hover\\:border-indigo-600:hover{border-color:var(--indigo-600)!important}.hover\\:border-indigo-700:hover{border-color:var(--indigo-700)!important}.hover\\:border-indigo-800:hover{border-color:var(--indigo-800)!important}.hover\\:border-indigo-900:hover{border-color:var(--indigo-900)!important}.active\\:border-indigo-50:active{border-color:var(--indigo-50)!important}.active\\:border-indigo-100:active{border-color:var(--indigo-100)!important}.active\\:border-indigo-200:active{border-color:var(--indigo-200)!important}.active\\:border-indigo-300:active{border-color:var(--indigo-300)!important}.active\\:border-indigo-400:active{border-color:var(--indigo-400)!important}.active\\:border-indigo-500:active{border-color:var(--indigo-500)!important}.active\\:border-indigo-600:active{border-color:var(--indigo-600)!important}.active\\:border-indigo-700:active{border-color:var(--indigo-700)!important}.active\\:border-indigo-800:active{border-color:var(--indigo-800)!important}.active\\:border-indigo-900:active{border-color:var(--indigo-900)!important}.border-teal-50{border-color:var(--teal-50)!important}.border-teal-100{border-color:var(--teal-100)!important}.border-teal-200{border-color:var(--teal-200)!important}.border-teal-300{border-color:var(--teal-300)!important}.border-teal-400{border-color:var(--teal-400)!important}.border-teal-500{border-color:var(--teal-500)!important}.border-teal-600{border-color:var(--teal-600)!important}.border-teal-700{border-color:var(--teal-700)!important}.border-teal-800{border-color:var(--teal-800)!important}.border-teal-900{border-color:var(--teal-900)!important}.focus\\:border-teal-50:focus{border-color:var(--teal-50)!important}.focus\\:border-teal-100:focus{border-color:var(--teal-100)!important}.focus\\:border-teal-200:focus{border-color:var(--teal-200)!important}.focus\\:border-teal-300:focus{border-color:var(--teal-300)!important}.focus\\:border-teal-400:focus{border-color:var(--teal-400)!important}.focus\\:border-teal-500:focus{border-color:var(--teal-500)!important}.focus\\:border-teal-600:focus{border-color:var(--teal-600)!important}.focus\\:border-teal-700:focus{border-color:var(--teal-700)!important}.focus\\:border-teal-800:focus{border-color:var(--teal-800)!important}.focus\\:border-teal-900:focus{border-color:var(--teal-900)!important}.hover\\:border-teal-50:hover{border-color:var(--teal-50)!important}.hover\\:border-teal-100:hover{border-color:var(--teal-100)!important}.hover\\:border-teal-200:hover{border-color:var(--teal-200)!important}.hover\\:border-teal-300:hover{border-color:var(--teal-300)!important}.hover\\:border-teal-400:hover{border-color:var(--teal-400)!important}.hover\\:border-teal-500:hover{border-color:var(--teal-500)!important}.hover\\:border-teal-600:hover{border-color:var(--teal-600)!important}.hover\\:border-teal-700:hover{border-color:var(--teal-700)!important}.hover\\:border-teal-800:hover{border-color:var(--teal-800)!important}.hover\\:border-teal-900:hover{border-color:var(--teal-900)!important}.active\\:border-teal-50:active{border-color:var(--teal-50)!important}.active\\:border-teal-100:active{border-color:var(--teal-100)!important}.active\\:border-teal-200:active{border-color:var(--teal-200)!important}.active\\:border-teal-300:active{border-color:var(--teal-300)!important}.active\\:border-teal-400:active{border-color:var(--teal-400)!important}.active\\:border-teal-500:active{border-color:var(--teal-500)!important}.active\\:border-teal-600:active{border-color:var(--teal-600)!important}.active\\:border-teal-700:active{border-color:var(--teal-700)!important}.active\\:border-teal-800:active{border-color:var(--teal-800)!important}.active\\:border-teal-900:active{border-color:var(--teal-900)!important}.border-orange-50{border-color:var(--orange-50)!important}.border-orange-100{border-color:var(--orange-100)!important}.border-orange-200{border-color:var(--orange-200)!important}.border-orange-300{border-color:var(--orange-300)!important}.border-orange-400{border-color:var(--orange-400)!important}.border-orange-500{border-color:var(--orange-500)!important}.border-orange-600{border-color:var(--orange-600)!important}.border-orange-700{border-color:var(--orange-700)!important}.border-orange-800{border-color:var(--orange-800)!important}.border-orange-900{border-color:var(--orange-900)!important}.focus\\:border-orange-50:focus{border-color:var(--orange-50)!important}.focus\\:border-orange-100:focus{border-color:var(--orange-100)!important}.focus\\:border-orange-200:focus{border-color:var(--orange-200)!important}.focus\\:border-orange-300:focus{border-color:var(--orange-300)!important}.focus\\:border-orange-400:focus{border-color:var(--orange-400)!important}.focus\\:border-orange-500:focus{border-color:var(--orange-500)!important}.focus\\:border-orange-600:focus{border-color:var(--orange-600)!important}.focus\\:border-orange-700:focus{border-color:var(--orange-700)!important}.focus\\:border-orange-800:focus{border-color:var(--orange-800)!important}.focus\\:border-orange-900:focus{border-color:var(--orange-900)!important}.hover\\:border-orange-50:hover{border-color:var(--orange-50)!important}.hover\\:border-orange-100:hover{border-color:var(--orange-100)!important}.hover\\:border-orange-200:hover{border-color:var(--orange-200)!important}.hover\\:border-orange-300:hover{border-color:var(--orange-300)!important}.hover\\:border-orange-400:hover{border-color:var(--orange-400)!important}.hover\\:border-orange-500:hover{border-color:var(--orange-500)!important}.hover\\:border-orange-600:hover{border-color:var(--orange-600)!important}.hover\\:border-orange-700:hover{border-color:var(--orange-700)!important}.hover\\:border-orange-800:hover{border-color:var(--orange-800)!important}.hover\\:border-orange-900:hover{border-color:var(--orange-900)!important}.active\\:border-orange-50:active{border-color:var(--orange-50)!important}.active\\:border-orange-100:active{border-color:var(--orange-100)!important}.active\\:border-orange-200:active{border-color:var(--orange-200)!important}.active\\:border-orange-300:active{border-color:var(--orange-300)!important}.active\\:border-orange-400:active{border-color:var(--orange-400)!important}.active\\:border-orange-500:active{border-color:var(--orange-500)!important}.active\\:border-orange-600:active{border-color:var(--orange-600)!important}.active\\:border-orange-700:active{border-color:var(--orange-700)!important}.active\\:border-orange-800:active{border-color:var(--orange-800)!important}.active\\:border-orange-900:active{border-color:var(--orange-900)!important}.border-bluegray-50{border-color:var(--bluegray-50)!important}.border-bluegray-100{border-color:var(--bluegray-100)!important}.border-bluegray-200{border-color:var(--bluegray-200)!important}.border-bluegray-300{border-color:var(--bluegray-300)!important}.border-bluegray-400{border-color:var(--bluegray-400)!important}.border-bluegray-500{border-color:var(--bluegray-500)!important}.border-bluegray-600{border-color:var(--bluegray-600)!important}.border-bluegray-700{border-color:var(--bluegray-700)!important}.border-bluegray-800{border-color:var(--bluegray-800)!important}.border-bluegray-900{border-color:var(--bluegray-900)!important}.focus\\:border-bluegray-50:focus{border-color:var(--bluegray-50)!important}.focus\\:border-bluegray-100:focus{border-color:var(--bluegray-100)!important}.focus\\:border-bluegray-200:focus{border-color:var(--bluegray-200)!important}.focus\\:border-bluegray-300:focus{border-color:var(--bluegray-300)!important}.focus\\:border-bluegray-400:focus{border-color:var(--bluegray-400)!important}.focus\\:border-bluegray-500:focus{border-color:var(--bluegray-500)!important}.focus\\:border-bluegray-600:focus{border-color:var(--bluegray-600)!important}.focus\\:border-bluegray-700:focus{border-color:var(--bluegray-700)!important}.focus\\:border-bluegray-800:focus{border-color:var(--bluegray-800)!important}.focus\\:border-bluegray-900:focus{border-color:var(--bluegray-900)!important}.hover\\:border-bluegray-50:hover{border-color:var(--bluegray-50)!important}.hover\\:border-bluegray-100:hover{border-color:var(--bluegray-100)!important}.hover\\:border-bluegray-200:hover{border-color:var(--bluegray-200)!important}.hover\\:border-bluegray-300:hover{border-color:var(--bluegray-300)!important}.hover\\:border-bluegray-400:hover{border-color:var(--bluegray-400)!important}.hover\\:border-bluegray-500:hover{border-color:var(--bluegray-500)!important}.hover\\:border-bluegray-600:hover{border-color:var(--bluegray-600)!important}.hover\\:border-bluegray-700:hover{border-color:var(--bluegray-700)!important}.hover\\:border-bluegray-800:hover{border-color:var(--bluegray-800)!important}.hover\\:border-bluegray-900:hover{border-color:var(--bluegray-900)!important}.active\\:border-bluegray-50:active{border-color:var(--bluegray-50)!important}.active\\:border-bluegray-100:active{border-color:var(--bluegray-100)!important}.active\\:border-bluegray-200:active{border-color:var(--bluegray-200)!important}.active\\:border-bluegray-300:active{border-color:var(--bluegray-300)!important}.active\\:border-bluegray-400:active{border-color:var(--bluegray-400)!important}.active\\:border-bluegray-500:active{border-color:var(--bluegray-500)!important}.active\\:border-bluegray-600:active{border-color:var(--bluegray-600)!important}.active\\:border-bluegray-700:active{border-color:var(--bluegray-700)!important}.active\\:border-bluegray-800:active{border-color:var(--bluegray-800)!important}.active\\:border-bluegray-900:active{border-color:var(--bluegray-900)!important}.border-purple-50{border-color:var(--purple-50)!important}.border-purple-100{border-color:var(--purple-100)!important}.border-purple-200{border-color:var(--purple-200)!important}.border-purple-300{border-color:var(--purple-300)!important}.border-purple-400{border-color:var(--purple-400)!important}.border-purple-500{border-color:var(--purple-500)!important}.border-purple-600{border-color:var(--purple-600)!important}.border-purple-700{border-color:var(--purple-700)!important}.border-purple-800{border-color:var(--purple-800)!important}.border-purple-900{border-color:var(--purple-900)!important}.focus\\:border-purple-50:focus{border-color:var(--purple-50)!important}.focus\\:border-purple-100:focus{border-color:var(--purple-100)!important}.focus\\:border-purple-200:focus{border-color:var(--purple-200)!important}.focus\\:border-purple-300:focus{border-color:var(--purple-300)!important}.focus\\:border-purple-400:focus{border-color:var(--purple-400)!important}.focus\\:border-purple-500:focus{border-color:var(--purple-500)!important}.focus\\:border-purple-600:focus{border-color:var(--purple-600)!important}.focus\\:border-purple-700:focus{border-color:var(--purple-700)!important}.focus\\:border-purple-800:focus{border-color:var(--purple-800)!important}.focus\\:border-purple-900:focus{border-color:var(--purple-900)!important}.hover\\:border-purple-50:hover{border-color:var(--purple-50)!important}.hover\\:border-purple-100:hover{border-color:var(--purple-100)!important}.hover\\:border-purple-200:hover{border-color:var(--purple-200)!important}.hover\\:border-purple-300:hover{border-color:var(--purple-300)!important}.hover\\:border-purple-400:hover{border-color:var(--purple-400)!important}.hover\\:border-purple-500:hover{border-color:var(--purple-500)!important}.hover\\:border-purple-600:hover{border-color:var(--purple-600)!important}.hover\\:border-purple-700:hover{border-color:var(--purple-700)!important}.hover\\:border-purple-800:hover{border-color:var(--purple-800)!important}.hover\\:border-purple-900:hover{border-color:var(--purple-900)!important}.active\\:border-purple-50:active{border-color:var(--purple-50)!important}.active\\:border-purple-100:active{border-color:var(--purple-100)!important}.active\\:border-purple-200:active{border-color:var(--purple-200)!important}.active\\:border-purple-300:active{border-color:var(--purple-300)!important}.active\\:border-purple-400:active{border-color:var(--purple-400)!important}.active\\:border-purple-500:active{border-color:var(--purple-500)!important}.active\\:border-purple-600:active{border-color:var(--purple-600)!important}.active\\:border-purple-700:active{border-color:var(--purple-700)!important}.active\\:border-purple-800:active{border-color:var(--purple-800)!important}.active\\:border-purple-900:active{border-color:var(--purple-900)!important}.border-gray-50{border-color:var(--gray-50)!important}.border-gray-100{border-color:var(--gray-100)!important}.border-gray-200{border-color:var(--gray-200)!important}.border-gray-300{border-color:var(--gray-300)!important}.border-gray-400{border-color:var(--gray-400)!important}.border-gray-500{border-color:var(--gray-500)!important}.border-gray-600{border-color:var(--gray-600)!important}.border-gray-700{border-color:var(--gray-700)!important}.border-gray-800{border-color:var(--gray-800)!important}.border-gray-900{border-color:var(--gray-900)!important}.focus\\:border-gray-50:focus{border-color:var(--gray-50)!important}.focus\\:border-gray-100:focus{border-color:var(--gray-100)!important}.focus\\:border-gray-200:focus{border-color:var(--gray-200)!important}.focus\\:border-gray-300:focus{border-color:var(--gray-300)!important}.focus\\:border-gray-400:focus{border-color:var(--gray-400)!important}.focus\\:border-gray-500:focus{border-color:var(--gray-500)!important}.focus\\:border-gray-600:focus{border-color:var(--gray-600)!important}.focus\\:border-gray-700:focus{border-color:var(--gray-700)!important}.focus\\:border-gray-800:focus{border-color:var(--gray-800)!important}.focus\\:border-gray-900:focus{border-color:var(--gray-900)!important}.hover\\:border-gray-50:hover{border-color:var(--gray-50)!important}.hover\\:border-gray-100:hover{border-color:var(--gray-100)!important}.hover\\:border-gray-200:hover{border-color:var(--gray-200)!important}.hover\\:border-gray-300:hover{border-color:var(--gray-300)!important}.hover\\:border-gray-400:hover{border-color:var(--gray-400)!important}.hover\\:border-gray-500:hover{border-color:var(--gray-500)!important}.hover\\:border-gray-600:hover{border-color:var(--gray-600)!important}.hover\\:border-gray-700:hover{border-color:var(--gray-700)!important}.hover\\:border-gray-800:hover{border-color:var(--gray-800)!important}.hover\\:border-gray-900:hover{border-color:var(--gray-900)!important}.active\\:border-gray-50:active{border-color:var(--gray-50)!important}.active\\:border-gray-100:active{border-color:var(--gray-100)!important}.active\\:border-gray-200:active{border-color:var(--gray-200)!important}.active\\:border-gray-300:active{border-color:var(--gray-300)!important}.active\\:border-gray-400:active{border-color:var(--gray-400)!important}.active\\:border-gray-500:active{border-color:var(--gray-500)!important}.active\\:border-gray-600:active{border-color:var(--gray-600)!important}.active\\:border-gray-700:active{border-color:var(--gray-700)!important}.active\\:border-gray-800:active{border-color:var(--gray-800)!important}.active\\:border-gray-900:active{border-color:var(--gray-900)!important}.border-red-50{border-color:var(--red-50)!important}.border-red-100{border-color:var(--red-100)!important}.border-red-200{border-color:var(--red-200)!important}.border-red-300{border-color:var(--red-300)!important}.border-red-400{border-color:var(--red-400)!important}.border-red-500{border-color:var(--red-500)!important}.border-red-600{border-color:var(--red-600)!important}.border-red-700{border-color:var(--red-700)!important}.border-red-800{border-color:var(--red-800)!important}.border-red-900{border-color:var(--red-900)!important}.focus\\:border-red-50:focus{border-color:var(--red-50)!important}.focus\\:border-red-100:focus{border-color:var(--red-100)!important}.focus\\:border-red-200:focus{border-color:var(--red-200)!important}.focus\\:border-red-300:focus{border-color:var(--red-300)!important}.focus\\:border-red-400:focus{border-color:var(--red-400)!important}.focus\\:border-red-500:focus{border-color:var(--red-500)!important}.focus\\:border-red-600:focus{border-color:var(--red-600)!important}.focus\\:border-red-700:focus{border-color:var(--red-700)!important}.focus\\:border-red-800:focus{border-color:var(--red-800)!important}.focus\\:border-red-900:focus{border-color:var(--red-900)!important}.hover\\:border-red-50:hover{border-color:var(--red-50)!important}.hover\\:border-red-100:hover{border-color:var(--red-100)!important}.hover\\:border-red-200:hover{border-color:var(--red-200)!important}.hover\\:border-red-300:hover{border-color:var(--red-300)!important}.hover\\:border-red-400:hover{border-color:var(--red-400)!important}.hover\\:border-red-500:hover{border-color:var(--red-500)!important}.hover\\:border-red-600:hover{border-color:var(--red-600)!important}.hover\\:border-red-700:hover{border-color:var(--red-700)!important}.hover\\:border-red-800:hover{border-color:var(--red-800)!important}.hover\\:border-red-900:hover{border-color:var(--red-900)!important}.active\\:border-red-50:active{border-color:var(--red-50)!important}.active\\:border-red-100:active{border-color:var(--red-100)!important}.active\\:border-red-200:active{border-color:var(--red-200)!important}.active\\:border-red-300:active{border-color:var(--red-300)!important}.active\\:border-red-400:active{border-color:var(--red-400)!important}.active\\:border-red-500:active{border-color:var(--red-500)!important}.active\\:border-red-600:active{border-color:var(--red-600)!important}.active\\:border-red-700:active{border-color:var(--red-700)!important}.active\\:border-red-800:active{border-color:var(--red-800)!important}.active\\:border-red-900:active{border-color:var(--red-900)!important}.border-primary-50{border-color:var(--primary-50)!important}.border-primary-100{border-color:var(--primary-100)!important}.border-primary-200{border-color:var(--primary-200)!important}.border-primary-300{border-color:var(--primary-300)!important}.border-primary-400{border-color:var(--primary-400)!important}.border-primary-500{border-color:var(--primary-500)!important}.border-primary-600{border-color:var(--primary-600)!important}.border-primary-700{border-color:var(--primary-700)!important}.border-primary-800{border-color:var(--primary-800)!important}.border-primary-900{border-color:var(--primary-900)!important}.focus\\:border-primary-50:focus{border-color:var(--primary-50)!important}.focus\\:border-primary-100:focus{border-color:var(--primary-100)!important}.focus\\:border-primary-200:focus{border-color:var(--primary-200)!important}.focus\\:border-primary-300:focus{border-color:var(--primary-300)!important}.focus\\:border-primary-400:focus{border-color:var(--primary-400)!important}.focus\\:border-primary-500:focus{border-color:var(--primary-500)!important}.focus\\:border-primary-600:focus{border-color:var(--primary-600)!important}.focus\\:border-primary-700:focus{border-color:var(--primary-700)!important}.focus\\:border-primary-800:focus{border-color:var(--primary-800)!important}.focus\\:border-primary-900:focus{border-color:var(--primary-900)!important}.hover\\:border-primary-50:hover{border-color:var(--primary-50)!important}.hover\\:border-primary-100:hover{border-color:var(--primary-100)!important}.hover\\:border-primary-200:hover{border-color:var(--primary-200)!important}.hover\\:border-primary-300:hover{border-color:var(--primary-300)!important}.hover\\:border-primary-400:hover{border-color:var(--primary-400)!important}.hover\\:border-primary-500:hover{border-color:var(--primary-500)!important}.hover\\:border-primary-600:hover{border-color:var(--primary-600)!important}.hover\\:border-primary-700:hover{border-color:var(--primary-700)!important}.hover\\:border-primary-800:hover{border-color:var(--primary-800)!important}.hover\\:border-primary-900:hover{border-color:var(--primary-900)!important}.active\\:border-primary-50:active{border-color:var(--primary-50)!important}.active\\:border-primary-100:active{border-color:var(--primary-100)!important}.active\\:border-primary-200:active{border-color:var(--primary-200)!important}.active\\:border-primary-300:active{border-color:var(--primary-300)!important}.active\\:border-primary-400:active{border-color:var(--primary-400)!important}.active\\:border-primary-500:active{border-color:var(--primary-500)!important}.active\\:border-primary-600:active{border-color:var(--primary-600)!important}.active\\:border-primary-700:active{border-color:var(--primary-700)!important}.active\\:border-primary-800:active{border-color:var(--primary-800)!important}.active\\:border-primary-900:active{border-color:var(--primary-900)!important}.bg-white-alpha-10{background-color:#ffffff1a!important}.bg-white-alpha-20{background-color:#fff3!important}.bg-white-alpha-30{background-color:#ffffff4d!important}.bg-white-alpha-40{background-color:#fff6!important}.bg-white-alpha-50{background-color:#ffffff80!important}.bg-white-alpha-60{background-color:#fff9!important}.bg-white-alpha-70{background-color:#ffffffb3!important}.bg-white-alpha-80{background-color:#fffc!important}.bg-white-alpha-90{background-color:#ffffffe6!important}.hover\\:bg-white-alpha-10:hover{background-color:#ffffff1a!important}.hover\\:bg-white-alpha-20:hover{background-color:#fff3!important}.hover\\:bg-white-alpha-30:hover{background-color:#ffffff4d!important}.hover\\:bg-white-alpha-40:hover{background-color:#fff6!important}.hover\\:bg-white-alpha-50:hover{background-color:#ffffff80!important}.hover\\:bg-white-alpha-60:hover{background-color:#fff9!important}.hover\\:bg-white-alpha-70:hover{background-color:#ffffffb3!important}.hover\\:bg-white-alpha-80:hover{background-color:#fffc!important}.hover\\:bg-white-alpha-90:hover{background-color:#ffffffe6!important}.focus\\:bg-white-alpha-10:focus{background-color:#ffffff1a!important}.focus\\:bg-white-alpha-20:focus{background-color:#fff3!important}.focus\\:bg-white-alpha-30:focus{background-color:#ffffff4d!important}.focus\\:bg-white-alpha-40:focus{background-color:#fff6!important}.focus\\:bg-white-alpha-50:focus{background-color:#ffffff80!important}.focus\\:bg-white-alpha-60:focus{background-color:#fff9!important}.focus\\:bg-white-alpha-70:focus{background-color:#ffffffb3!important}.focus\\:bg-white-alpha-80:focus{background-color:#fffc!important}.focus\\:bg-white-alpha-90:focus{background-color:#ffffffe6!important}.active\\:bg-white-alpha-10:active{background-color:#ffffff1a!important}.active\\:bg-white-alpha-20:active{background-color:#fff3!important}.active\\:bg-white-alpha-30:active{background-color:#ffffff4d!important}.active\\:bg-white-alpha-40:active{background-color:#fff6!important}.active\\:bg-white-alpha-50:active{background-color:#ffffff80!important}.active\\:bg-white-alpha-60:active{background-color:#fff9!important}.active\\:bg-white-alpha-70:active{background-color:#ffffffb3!important}.active\\:bg-white-alpha-80:active{background-color:#fffc!important}.active\\:bg-white-alpha-90:active{background-color:#ffffffe6!important}.bg-black-alpha-10{background-color:#0000001a!important}.bg-black-alpha-20{background-color:#0003!important}.bg-black-alpha-30{background-color:#0000004d!important}.bg-black-alpha-40{background-color:#0006!important}.bg-black-alpha-50{background-color:#00000080!important}.bg-black-alpha-60{background-color:#0009!important}.bg-black-alpha-70{background-color:#000000b3!important}.bg-black-alpha-80{background-color:#000c!important}.bg-black-alpha-90{background-color:#000000e6!important}.hover\\:bg-black-alpha-10:hover{background-color:#0000001a!important}.hover\\:bg-black-alpha-20:hover{background-color:#0003!important}.hover\\:bg-black-alpha-30:hover{background-color:#0000004d!important}.hover\\:bg-black-alpha-40:hover{background-color:#0006!important}.hover\\:bg-black-alpha-50:hover{background-color:#00000080!important}.hover\\:bg-black-alpha-60:hover{background-color:#0009!important}.hover\\:bg-black-alpha-70:hover{background-color:#000000b3!important}.hover\\:bg-black-alpha-80:hover{background-color:#000c!important}.hover\\:bg-black-alpha-90:hover{background-color:#000000e6!important}.focus\\:bg-black-alpha-10:focus{background-color:#0000001a!important}.focus\\:bg-black-alpha-20:focus{background-color:#0003!important}.focus\\:bg-black-alpha-30:focus{background-color:#0000004d!important}.focus\\:bg-black-alpha-40:focus{background-color:#0006!important}.focus\\:bg-black-alpha-50:focus{background-color:#00000080!important}.focus\\:bg-black-alpha-60:focus{background-color:#0009!important}.focus\\:bg-black-alpha-70:focus{background-color:#000000b3!important}.focus\\:bg-black-alpha-80:focus{background-color:#000c!important}.focus\\:bg-black-alpha-90:focus{background-color:#000000e6!important}.active\\:bg-black-alpha-10:active{background-color:#0000001a!important}.active\\:bg-black-alpha-20:active{background-color:#0003!important}.active\\:bg-black-alpha-30:active{background-color:#0000004d!important}.active\\:bg-black-alpha-40:active{background-color:#0006!important}.active\\:bg-black-alpha-50:active{background-color:#00000080!important}.active\\:bg-black-alpha-60:active{background-color:#0009!important}.active\\:bg-black-alpha-70:active{background-color:#000000b3!important}.active\\:bg-black-alpha-80:active{background-color:#000c!important}.active\\:bg-black-alpha-90:active{background-color:#000000e6!important}.border-white-alpha-10{border-color:#ffffff1a!important}.border-white-alpha-20{border-color:#fff3!important}.border-white-alpha-30{border-color:#ffffff4d!important}.border-white-alpha-40{border-color:#fff6!important}.border-white-alpha-50{border-color:#ffffff80!important}.border-white-alpha-60{border-color:#fff9!important}.border-white-alpha-70{border-color:#ffffffb3!important}.border-white-alpha-80{border-color:#fffc!important}.border-white-alpha-90{border-color:#ffffffe6!important}.hover\\:border-white-alpha-10:hover{border-color:#ffffff1a!important}.hover\\:border-white-alpha-20:hover{border-color:#fff3!important}.hover\\:border-white-alpha-30:hover{border-color:#ffffff4d!important}.hover\\:border-white-alpha-40:hover{border-color:#fff6!important}.hover\\:border-white-alpha-50:hover{border-color:#ffffff80!important}.hover\\:border-white-alpha-60:hover{border-color:#fff9!important}.hover\\:border-white-alpha-70:hover{border-color:#ffffffb3!important}.hover\\:border-white-alpha-80:hover{border-color:#fffc!important}.hover\\:border-white-alpha-90:hover{border-color:#ffffffe6!important}.focus\\:border-white-alpha-10:focus{border-color:#ffffff1a!important}.focus\\:border-white-alpha-20:focus{border-color:#fff3!important}.focus\\:border-white-alpha-30:focus{border-color:#ffffff4d!important}.focus\\:border-white-alpha-40:focus{border-color:#fff6!important}.focus\\:border-white-alpha-50:focus{border-color:#ffffff80!important}.focus\\:border-white-alpha-60:focus{border-color:#fff9!important}.focus\\:border-white-alpha-70:focus{border-color:#ffffffb3!important}.focus\\:border-white-alpha-80:focus{border-color:#fffc!important}.focus\\:border-white-alpha-90:focus{border-color:#ffffffe6!important}.active\\:border-white-alpha-10:active{border-color:#ffffff1a!important}.active\\:border-white-alpha-20:active{border-color:#fff3!important}.active\\:border-white-alpha-30:active{border-color:#ffffff4d!important}.active\\:border-white-alpha-40:active{border-color:#fff6!important}.active\\:border-white-alpha-50:active{border-color:#ffffff80!important}.active\\:border-white-alpha-60:active{border-color:#fff9!important}.active\\:border-white-alpha-70:active{border-color:#ffffffb3!important}.active\\:border-white-alpha-80:active{border-color:#fffc!important}.active\\:border-white-alpha-90:active{border-color:#ffffffe6!important}.border-black-alpha-10{border-color:#0000001a!important}.border-black-alpha-20{border-color:#0003!important}.border-black-alpha-30{border-color:#0000004d!important}.border-black-alpha-40{border-color:#0006!important}.border-black-alpha-50{border-color:#00000080!important}.border-black-alpha-60{border-color:#0009!important}.border-black-alpha-70{border-color:#000000b3!important}.border-black-alpha-80{border-color:#000c!important}.border-black-alpha-90{border-color:#000000e6!important}.hover\\:border-black-alpha-10:hover{border-color:#0000001a!important}.hover\\:border-black-alpha-20:hover{border-color:#0003!important}.hover\\:border-black-alpha-30:hover{border-color:#0000004d!important}.hover\\:border-black-alpha-40:hover{border-color:#0006!important}.hover\\:border-black-alpha-50:hover{border-color:#00000080!important}.hover\\:border-black-alpha-60:hover{border-color:#0009!important}.hover\\:border-black-alpha-70:hover{border-color:#000000b3!important}.hover\\:border-black-alpha-80:hover{border-color:#000c!important}.hover\\:border-black-alpha-90:hover{border-color:#000000e6!important}.focus\\:border-black-alpha-10:focus{border-color:#0000001a!important}.focus\\:border-black-alpha-20:focus{border-color:#0003!important}.focus\\:border-black-alpha-30:focus{border-color:#0000004d!important}.focus\\:border-black-alpha-40:focus{border-color:#0006!important}.focus\\:border-black-alpha-50:focus{border-color:#00000080!important}.focus\\:border-black-alpha-60:focus{border-color:#0009!important}.focus\\:border-black-alpha-70:focus{border-color:#000000b3!important}.focus\\:border-black-alpha-80:focus{border-color:#000c!important}.focus\\:border-black-alpha-90:focus{border-color:#000000e6!important}.active\\:border-black-alpha-10:active{border-color:#0000001a!important}.active\\:border-black-alpha-20:active{border-color:#0003!important}.active\\:border-black-alpha-30:active{border-color:#0000004d!important}.active\\:border-black-alpha-40:active{border-color:#0006!important}.active\\:border-black-alpha-50:active{border-color:#00000080!important}.active\\:border-black-alpha-60:active{border-color:#0009!important}.active\\:border-black-alpha-70:active{border-color:#000000b3!important}.active\\:border-black-alpha-80:active{border-color:#000c!important}.active\\:border-black-alpha-90:active{border-color:#000000e6!important}.text-white-alpha-10{color:#ffffff1a!important}.text-white-alpha-20{color:#fff3!important}.text-white-alpha-30{color:#ffffff4d!important}.text-white-alpha-40{color:#fff6!important}.text-white-alpha-50{color:#ffffff80!important}.text-white-alpha-60{color:#fff9!important}.text-white-alpha-70{color:#ffffffb3!important}.text-white-alpha-80{color:#fffc!important}.text-white-alpha-90{color:#ffffffe6!important}.hover\\:text-white-alpha-10:hover{color:#ffffff1a!important}.hover\\:text-white-alpha-20:hover{color:#fff3!important}.hover\\:text-white-alpha-30:hover{color:#ffffff4d!important}.hover\\:text-white-alpha-40:hover{color:#fff6!important}.hover\\:text-white-alpha-50:hover{color:#ffffff80!important}.hover\\:text-white-alpha-60:hover{color:#fff9!important}.hover\\:text-white-alpha-70:hover{color:#ffffffb3!important}.hover\\:text-white-alpha-80:hover{color:#fffc!important}.hover\\:text-white-alpha-90:hover{color:#ffffffe6!important}.focus\\:text-white-alpha-10:focus{color:#ffffff1a!important}.focus\\:text-white-alpha-20:focus{color:#fff3!important}.focus\\:text-white-alpha-30:focus{color:#ffffff4d!important}.focus\\:text-white-alpha-40:focus{color:#fff6!important}.focus\\:text-white-alpha-50:focus{color:#ffffff80!important}.focus\\:text-white-alpha-60:focus{color:#fff9!important}.focus\\:text-white-alpha-70:focus{color:#ffffffb3!important}.focus\\:text-white-alpha-80:focus{color:#fffc!important}.focus\\:text-white-alpha-90:focus{color:#ffffffe6!important}.active\\:text-white-alpha-10:active{color:#ffffff1a!important}.active\\:text-white-alpha-20:active{color:#fff3!important}.active\\:text-white-alpha-30:active{color:#ffffff4d!important}.active\\:text-white-alpha-40:active{color:#fff6!important}.active\\:text-white-alpha-50:active{color:#ffffff80!important}.active\\:text-white-alpha-60:active{color:#fff9!important}.active\\:text-white-alpha-70:active{color:#ffffffb3!important}.active\\:text-white-alpha-80:active{color:#fffc!important}.active\\:text-white-alpha-90:active{color:#ffffffe6!important}.text-black-alpha-10{color:#0000001a!important}.text-black-alpha-20{color:#0003!important}.text-black-alpha-30{color:#0000004d!important}.text-black-alpha-40{color:#0006!important}.text-black-alpha-50{color:#00000080!important}.text-black-alpha-60{color:#0009!important}.text-black-alpha-70{color:#000000b3!important}.text-black-alpha-80{color:#000c!important}.text-black-alpha-90{color:#000000e6!important}.hover\\:text-black-alpha-10:hover{color:#0000001a!important}.hover\\:text-black-alpha-20:hover{color:#0003!important}.hover\\:text-black-alpha-30:hover{color:#0000004d!important}.hover\\:text-black-alpha-40:hover{color:#0006!important}.hover\\:text-black-alpha-50:hover{color:#00000080!important}.hover\\:text-black-alpha-60:hover{color:#0009!important}.hover\\:text-black-alpha-70:hover{color:#000000b3!important}.hover\\:text-black-alpha-80:hover{color:#000c!important}.hover\\:text-black-alpha-90:hover{color:#000000e6!important}.focus\\:text-black-alpha-10:focus{color:#0000001a!important}.focus\\:text-black-alpha-20:focus{color:#0003!important}.focus\\:text-black-alpha-30:focus{color:#0000004d!important}.focus\\:text-black-alpha-40:focus{color:#0006!important}.focus\\:text-black-alpha-50:focus{color:#00000080!important}.focus\\:text-black-alpha-60:focus{color:#0009!important}.focus\\:text-black-alpha-70:focus{color:#000000b3!important}.focus\\:text-black-alpha-80:focus{color:#000c!important}.focus\\:text-black-alpha-90:focus{color:#000000e6!important}.active\\:text-black-alpha-10:active{color:#0000001a!important}.active\\:text-black-alpha-20:active{color:#0003!important}.active\\:text-black-alpha-30:active{color:#0000004d!important}.active\\:text-black-alpha-40:active{color:#0006!important}.active\\:text-black-alpha-50:active{color:#00000080!important}.active\\:text-black-alpha-60:active{color:#0009!important}.active\\:text-black-alpha-70:active{color:#000000b3!important}.active\\:text-black-alpha-80:active{color:#000c!important}.active\\:text-black-alpha-90:active{color:#000000e6!important}.text-primary{color:var(--primary-color)!important}.bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.bg-white{background-color:#fff!important}.border-primary{border-color:var(--primary-color)!important}.text-white{color:#fff!important}.border-white{border-color:#fff!important}.text-color{color:var(--text-color)!important}.text-color-secondary{color:var(--text-color-secondary)!important}.surface-ground{background-color:var(--surface-ground)!important}.surface-section{background-color:var(--surface-section)!important}.surface-card{background-color:var(--surface-card)!important}.surface-overlay{background-color:var(--surface-overlay)!important}.surface-hover{background-color:var(--surface-hover)!important}.surface-border{border-color:var(--surface-border)!important}.focus\\:text-primary:focus{color:var(--primary-color)!important}.hover\\:text-primary:hover,.active\\:text-primary:active{color:var(--primary-color)!important}.focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.hover\\:bg-primary:hover,.active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.hover\\:bg-primary-reverse:hover,.active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.focus\\:bg-white:focus{background-color:#fff!important}.hover\\:bg-white:hover,.active\\:bg-white:active{background-color:#fff!important}.focus\\:border-primary:focus{border-color:var(--primary-color)!important}.hover\\:border-primary:hover,.active\\:border-primary:active{border-color:var(--primary-color)!important}.focus\\:text-white:focus{color:#fff!important}.hover\\:text-white:hover,.active\\:text-white:active{color:#fff!important}.focus\\:border-white:focus{border-color:#fff!important}.hover\\:border-white:hover,.active\\:border-white:active{border-color:#fff!important}.focus\\:text-color:focus{color:var(--text-color)!important}.hover\\:text-color:hover,.active\\:text-color:active{color:var(--text-color)!important}.focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.hover\\:text-color-secondary:hover,.active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.hover\\:surface-ground:hover,.active\\:surface-ground:active{background-color:var(--surface-ground)!important}.focus\\:surface-section:focus{background-color:var(--surface-section)!important}.hover\\:surface-section:hover,.active\\:surface-section:active{background-color:var(--surface-section)!important}.focus\\:surface-card:focus{background-color:var(--surface-card)!important}.hover\\:surface-card:hover,.active\\:surface-card:active{background-color:var(--surface-card)!important}.focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.hover\\:surface-overlay:hover,.active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.hover\\:surface-hover:hover,.active\\:surface-hover:active{background-color:var(--surface-hover)!important}.focus\\:surface-border:focus{border-color:var(--surface-border)!important}.hover\\:surface-border:hover,.active\\:surface-border:active{border-color:var(--surface-border)!important}@media screen and (min-width: 576px){.sm\\:text-primary{color:var(--primary-color)!important}.sm\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:bg-white{background-color:#fff!important}.sm\\:border-primary{border-color:var(--primary-color)!important}.sm\\:text-white{color:#fff!important}.sm\\:border-white{border-color:#fff!important}.sm\\:text-color{color:var(--text-color)!important}.sm\\:text-color-secondary{color:var(--text-color-secondary)!important}.sm\\:surface-ground{background-color:var(--surface-ground)!important}.sm\\:surface-section{background-color:var(--surface-section)!important}.sm\\:surface-card{background-color:var(--surface-card)!important}.sm\\:surface-overlay{background-color:var(--surface-overlay)!important}.sm\\:surface-hover{background-color:var(--surface-hover)!important}.sm\\:surface-border{border-color:var(--surface-border)!important}.sm\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.sm\\:hover\\:text-primary:hover,.sm\\:active\\:text-primary:active{color:var(--primary-color)!important}.sm\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:hover\\:bg-primary:hover,.sm\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:hover\\:bg-primary-reverse:hover,.sm\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:focus\\:bg-white:focus{background-color:#fff!important}.sm\\:hover\\:bg-white:hover,.sm\\:active\\:bg-white:active{background-color:#fff!important}.sm\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.sm\\:hover\\:border-primary:hover,.sm\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.sm\\:focus\\:text-white:focus{color:#fff!important}.sm\\:hover\\:text-white:hover,.sm\\:active\\:text-white:active{color:#fff!important}.sm\\:focus\\:border-white:focus{border-color:#fff!important}.sm\\:hover\\:border-white:hover,.sm\\:active\\:border-white:active{border-color:#fff!important}.sm\\:focus\\:text-color:focus{color:var(--text-color)!important}.sm\\:hover\\:text-color:hover,.sm\\:active\\:text-color:active{color:var(--text-color)!important}.sm\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.sm\\:hover\\:text-color-secondary:hover,.sm\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.sm\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.sm\\:hover\\:surface-ground:hover,.sm\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.sm\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.sm\\:hover\\:surface-section:hover,.sm\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.sm\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.sm\\:hover\\:surface-card:hover,.sm\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.sm\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.sm\\:hover\\:surface-overlay:hover,.sm\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.sm\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.sm\\:hover\\:surface-hover:hover,.sm\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.sm\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.sm\\:hover\\:surface-border:hover,.sm\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 768px){.md\\:text-primary{color:var(--primary-color)!important}.md\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:bg-white{background-color:#fff!important}.md\\:border-primary{border-color:var(--primary-color)!important}.md\\:text-white{color:#fff!important}.md\\:border-white{border-color:#fff!important}.md\\:text-color{color:var(--text-color)!important}.md\\:text-color-secondary{color:var(--text-color-secondary)!important}.md\\:surface-ground{background-color:var(--surface-ground)!important}.md\\:surface-section{background-color:var(--surface-section)!important}.md\\:surface-card{background-color:var(--surface-card)!important}.md\\:surface-overlay{background-color:var(--surface-overlay)!important}.md\\:surface-hover{background-color:var(--surface-hover)!important}.md\\:surface-border{border-color:var(--surface-border)!important}.md\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.md\\:hover\\:text-primary:hover,.md\\:active\\:text-primary:active{color:var(--primary-color)!important}.md\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:hover\\:bg-primary:hover,.md\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:hover\\:bg-primary-reverse:hover,.md\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:focus\\:bg-white:focus{background-color:#fff!important}.md\\:hover\\:bg-white:hover,.md\\:active\\:bg-white:active{background-color:#fff!important}.md\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.md\\:hover\\:border-primary:hover,.md\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.md\\:focus\\:text-white:focus{color:#fff!important}.md\\:hover\\:text-white:hover,.md\\:active\\:text-white:active{color:#fff!important}.md\\:focus\\:border-white:focus{border-color:#fff!important}.md\\:hover\\:border-white:hover,.md\\:active\\:border-white:active{border-color:#fff!important}.md\\:focus\\:text-color:focus{color:var(--text-color)!important}.md\\:hover\\:text-color:hover,.md\\:active\\:text-color:active{color:var(--text-color)!important}.md\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.md\\:hover\\:text-color-secondary:hover,.md\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.md\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.md\\:hover\\:surface-ground:hover,.md\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.md\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.md\\:hover\\:surface-section:hover,.md\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.md\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.md\\:hover\\:surface-card:hover,.md\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.md\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.md\\:hover\\:surface-overlay:hover,.md\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.md\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.md\\:hover\\:surface-hover:hover,.md\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.md\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.md\\:hover\\:surface-border:hover,.md\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 992px){.lg\\:text-primary{color:var(--primary-color)!important}.lg\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:bg-white{background-color:#fff!important}.lg\\:border-primary{border-color:var(--primary-color)!important}.lg\\:text-white{color:#fff!important}.lg\\:border-white{border-color:#fff!important}.lg\\:text-color{color:var(--text-color)!important}.lg\\:text-color-secondary{color:var(--text-color-secondary)!important}.lg\\:surface-ground{background-color:var(--surface-ground)!important}.lg\\:surface-section{background-color:var(--surface-section)!important}.lg\\:surface-card{background-color:var(--surface-card)!important}.lg\\:surface-overlay{background-color:var(--surface-overlay)!important}.lg\\:surface-hover{background-color:var(--surface-hover)!important}.lg\\:surface-border{border-color:var(--surface-border)!important}.lg\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.lg\\:hover\\:text-primary:hover,.lg\\:active\\:text-primary:active{color:var(--primary-color)!important}.lg\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:hover\\:bg-primary:hover,.lg\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:hover\\:bg-primary-reverse:hover,.lg\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:focus\\:bg-white:focus{background-color:#fff!important}.lg\\:hover\\:bg-white:hover,.lg\\:active\\:bg-white:active{background-color:#fff!important}.lg\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.lg\\:hover\\:border-primary:hover,.lg\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.lg\\:focus\\:text-white:focus{color:#fff!important}.lg\\:hover\\:text-white:hover,.lg\\:active\\:text-white:active{color:#fff!important}.lg\\:focus\\:border-white:focus{border-color:#fff!important}.lg\\:hover\\:border-white:hover,.lg\\:active\\:border-white:active{border-color:#fff!important}.lg\\:focus\\:text-color:focus{color:var(--text-color)!important}.lg\\:hover\\:text-color:hover,.lg\\:active\\:text-color:active{color:var(--text-color)!important}.lg\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.lg\\:hover\\:text-color-secondary:hover,.lg\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.lg\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.lg\\:hover\\:surface-ground:hover,.lg\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.lg\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.lg\\:hover\\:surface-section:hover,.lg\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.lg\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.lg\\:hover\\:surface-card:hover,.lg\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.lg\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.lg\\:hover\\:surface-overlay:hover,.lg\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.lg\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.lg\\:hover\\:surface-hover:hover,.lg\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.lg\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.lg\\:hover\\:surface-border:hover,.lg\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 1200px){.xl\\:text-primary{color:var(--primary-color)!important}.xl\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:bg-white{background-color:#fff!important}.xl\\:border-primary{border-color:var(--primary-color)!important}.xl\\:text-white{color:#fff!important}.xl\\:border-white{border-color:#fff!important}.xl\\:text-color{color:var(--text-color)!important}.xl\\:text-color-secondary{color:var(--text-color-secondary)!important}.xl\\:surface-ground{background-color:var(--surface-ground)!important}.xl\\:surface-section{background-color:var(--surface-section)!important}.xl\\:surface-card{background-color:var(--surface-card)!important}.xl\\:surface-overlay{background-color:var(--surface-overlay)!important}.xl\\:surface-hover{background-color:var(--surface-hover)!important}.xl\\:surface-border{border-color:var(--surface-border)!important}.xl\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.xl\\:hover\\:text-primary:hover,.xl\\:active\\:text-primary:active{color:var(--primary-color)!important}.xl\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:hover\\:bg-primary:hover,.xl\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:hover\\:bg-primary-reverse:hover,.xl\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:focus\\:bg-white:focus{background-color:#fff!important}.xl\\:hover\\:bg-white:hover,.xl\\:active\\:bg-white:active{background-color:#fff!important}.xl\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.xl\\:hover\\:border-primary:hover,.xl\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.xl\\:focus\\:text-white:focus{color:#fff!important}.xl\\:hover\\:text-white:hover,.xl\\:active\\:text-white:active{color:#fff!important}.xl\\:focus\\:border-white:focus{border-color:#fff!important}.xl\\:hover\\:border-white:hover,.xl\\:active\\:border-white:active{border-color:#fff!important}.xl\\:focus\\:text-color:focus{color:var(--text-color)!important}.xl\\:hover\\:text-color:hover,.xl\\:active\\:text-color:active{color:var(--text-color)!important}.xl\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.xl\\:hover\\:text-color-secondary:hover,.xl\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.xl\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.xl\\:hover\\:surface-ground:hover,.xl\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.xl\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.xl\\:hover\\:surface-section:hover,.xl\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.xl\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.xl\\:hover\\:surface-card:hover,.xl\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.xl\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.xl\\:hover\\:surface-overlay:hover,.xl\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.xl\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.xl\\:hover\\:surface-hover:hover,.xl\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.xl\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.xl\\:hover\\:surface-border:hover,.xl\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}.field{margin-bottom:1rem}.field>label{display:inline-block;margin-bottom:.5rem}.field.grid>label{display:flex;align-items:center}.field>small{margin-top:.25rem}.field.grid,.formgrid.grid{margin-top:0}.field.grid .col-fixed,.formgrid.grid .col-fixed,.field.grid .col,.formgrid.grid .col,.field.grid .col-1,.formgrid.grid .col-1,.field.grid .col-2,.formgrid.grid .col-2,.field.grid .col-3,.formgrid.grid .col-3,.field.grid .col-4,.formgrid.grid .col-4,.field.grid .col-5,.formgrid.grid .col-5,.field.grid .col-6,.formgrid.grid .col-6,.field.grid .col-7,.formgrid.grid .col-7,.field.grid .col-8,.formgrid.grid .col-8,.field.grid .col-9,.formgrid.grid .col-9,.field.grid .col-10,.formgrid.grid .col-10,.field.grid .col-11,.formgrid.grid .col-11,.field.grid .col-12,.formgrid.grid .col-12{padding-top:0;padding-bottom:0}.formgroup-inline{display:flex;flex-wrap:wrap;align-items:flex-start}.formgroup-inline .field,.formgroup-inline .field-checkbox,.formgroup-inline .field-radiobutton{margin-right:1rem}.formgroup-inline .field>label,.formgroup-inline .field-checkbox>label,.formgroup-inline .field-radiobutton>label{margin-right:.5rem;margin-bottom:0}.field-checkbox,.field-radiobutton{margin-bottom:1rem;display:flex;align-items:center}.field-checkbox>label,.field-radiobutton>label{margin-left:.5rem;line-height:1}.hidden{display:none!important}.block{display:block!important}.inline{display:inline!important}.inline-block{display:inline-block!important}.flex{display:flex!important}.inline-flex{display:inline-flex!important}@media screen and (min-width: 576px){.sm\\:hidden{display:none!important}.sm\\:block{display:block!important}.sm\\:inline{display:inline!important}.sm\\:inline-block{display:inline-block!important}.sm\\:flex{display:flex!important}.sm\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 768px){.md\\:hidden{display:none!important}.md\\:block{display:block!important}.md\\:inline{display:inline!important}.md\\:inline-block{display:inline-block!important}.md\\:flex{display:flex!important}.md\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 992px){.lg\\:hidden{display:none!important}.lg\\:block{display:block!important}.lg\\:inline{display:inline!important}.lg\\:inline-block{display:inline-block!important}.lg\\:flex{display:flex!important}.lg\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 1200px){.xl\\:hidden{display:none!important}.xl\\:block{display:block!important}.xl\\:inline{display:inline!important}.xl\\:inline-block{display:inline-block!important}.xl\\:flex{display:flex!important}.xl\\:inline-flex{display:inline-flex!important}}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-left{text-align:left!important}.text-right{text-align:right!important}@media screen and (min-width: 576px){.sm\\:text-center{text-align:center!important}.sm\\:text-justify{text-align:justify!important}.sm\\:text-left{text-align:left!important}.sm\\:text-right{text-align:right!important}}@media screen and (min-width: 768px){.md\\:text-center{text-align:center!important}.md\\:text-justify{text-align:justify!important}.md\\:text-left{text-align:left!important}.md\\:text-right{text-align:right!important}}@media screen and (min-width: 992px){.lg\\:text-center{text-align:center!important}.lg\\:text-justify{text-align:justify!important}.lg\\:text-left{text-align:left!important}.lg\\:text-right{text-align:right!important}}@media screen and (min-width: 1200px){.xl\\:text-center{text-align:center!important}.xl\\:text-justify{text-align:justify!important}.xl\\:text-left{text-align:left!important}.xl\\:text-right{text-align:right!important}}.underline{text-decoration:underline!important}.line-through{text-decoration:line-through!important}.no-underline{text-decoration:none!important}.focus\\:underline:focus{text-decoration:underline!important}.hover\\:underline:hover,.active\\:underline:active{text-decoration:underline!important}.focus\\:line-through:focus{text-decoration:line-through!important}.hover\\:line-through:hover,.active\\:line-through:active{text-decoration:line-through!important}.focus\\:no-underline:focus{text-decoration:none!important}.hover\\:no-underline:hover,.active\\:no-underline:active{text-decoration:none!important}.lowercase{text-transform:lowercase!important}.uppercase{text-transform:uppercase!important}.capitalize{text-transform:capitalize!important}.text-overflow-clip{text-overflow:clip!important}.text-overflow-ellipsis{text-overflow:ellipsis!important}@media screen and (min-width: 576px){.sm\\:text-overflow-clip{text-overflow:clip!important}.sm\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 768px){.md\\:text-overflow-clip{text-overflow:clip!important}.md\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 992px){.lg\\:text-overflow-clip{text-overflow:clip!important}.lg\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 1200px){.xl\\:text-overflow-clip{text-overflow:clip!important}.xl\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}.font-light{font-weight:300!important}.font-normal{font-weight:400!important}.font-medium{font-weight:500!important}.font-semibold{font-weight:600!important}.font-bold{font-weight:700!important}@media screen and (min-width: 576px){.sm\\:font-light{font-weight:300!important}.sm\\:font-normal{font-weight:400!important}.sm\\:font-medium{font-weight:500!important}.sm\\:font-semibold{font-weight:600!important}.sm\\:font-bold{font-weight:700!important}}@media screen and (min-width: 768px){.md\\:font-light{font-weight:300!important}.md\\:font-normal{font-weight:400!important}.md\\:font-medium{font-weight:500!important}.md\\:font-semibold{font-weight:600!important}.md\\:font-bold{font-weight:700!important}}@media screen and (min-width: 992px){.lg\\:font-light{font-weight:300!important}.lg\\:font-normal{font-weight:400!important}.lg\\:font-medium{font-weight:500!important}.lg\\:font-semibold{font-weight:600!important}.lg\\:font-bold{font-weight:700!important}}@media screen and (min-width: 1200px){.xl\\:font-light{font-weight:300!important}.xl\\:font-normal{font-weight:400!important}.xl\\:font-medium{font-weight:500!important}.xl\\:font-semibold{font-weight:600!important}.xl\\:font-bold{font-weight:700!important}}.font-italic{font-style:italic!important}.text-xs{font-size:.75rem!important}.text-sm{font-size:.875rem!important}.text-base{font-size:1rem!important}.text-lg{font-size:1.125rem!important}.text-xl{font-size:1.25rem!important}.text-2xl{font-size:1.5rem!important}.text-3xl{font-size:1.75rem!important}.text-4xl{font-size:2rem!important}.text-5xl{font-size:2.5rem!important}.text-6xl{font-size:3rem!important}.text-7xl{font-size:4rem!important}.text-8xl{font-size:6rem!important}@media screen and (min-width: 576px){.sm\\:text-xs{font-size:.75rem!important}.sm\\:text-sm{font-size:.875rem!important}.sm\\:text-base{font-size:1rem!important}.sm\\:text-lg{font-size:1.125rem!important}.sm\\:text-xl{font-size:1.25rem!important}.sm\\:text-2xl{font-size:1.5rem!important}.sm\\:text-3xl{font-size:1.75rem!important}.sm\\:text-4xl{font-size:2rem!important}.sm\\:text-5xl{font-size:2.5rem!important}.sm\\:text-6xl{font-size:3rem!important}.sm\\:text-7xl{font-size:4rem!important}.sm\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 768px){.md\\:text-xs{font-size:.75rem!important}.md\\:text-sm{font-size:.875rem!important}.md\\:text-base{font-size:1rem!important}.md\\:text-lg{font-size:1.125rem!important}.md\\:text-xl{font-size:1.25rem!important}.md\\:text-2xl{font-size:1.5rem!important}.md\\:text-3xl{font-size:1.75rem!important}.md\\:text-4xl{font-size:2rem!important}.md\\:text-5xl{font-size:2.5rem!important}.md\\:text-6xl{font-size:3rem!important}.md\\:text-7xl{font-size:4rem!important}.md\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 992px){.lg\\:text-xs{font-size:.75rem!important}.lg\\:text-sm{font-size:.875rem!important}.lg\\:text-base{font-size:1rem!important}.lg\\:text-lg{font-size:1.125rem!important}.lg\\:text-xl{font-size:1.25rem!important}.lg\\:text-2xl{font-size:1.5rem!important}.lg\\:text-3xl{font-size:1.75rem!important}.lg\\:text-4xl{font-size:2rem!important}.lg\\:text-5xl{font-size:2.5rem!important}.lg\\:text-6xl{font-size:3rem!important}.lg\\:text-7xl{font-size:4rem!important}.lg\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 1200px){.xl\\:text-xs{font-size:.75rem!important}.xl\\:text-sm{font-size:.875rem!important}.xl\\:text-base{font-size:1rem!important}.xl\\:text-lg{font-size:1.125rem!important}.xl\\:text-xl{font-size:1.25rem!important}.xl\\:text-2xl{font-size:1.5rem!important}.xl\\:text-3xl{font-size:1.75rem!important}.xl\\:text-4xl{font-size:2rem!important}.xl\\:text-5xl{font-size:2.5rem!important}.xl\\:text-6xl{font-size:3rem!important}.xl\\:text-7xl{font-size:4rem!important}.xl\\:text-8xl{font-size:6rem!important}}.line-height-1{line-height:1!important}.line-height-2{line-height:1.25!important}.line-height-3{line-height:1.5!important}.line-height-4{line-height:2!important}.white-space-normal{white-space:normal!important}.white-space-nowrap{white-space:nowrap!important}.vertical-align-baseline{vertical-align:baseline!important}.vertical-align-top{vertical-align:top!important}.vertical-align-middle{vertical-align:middle!important}.vertical-align-bottom{vertical-align:bottom!important}.vertical-align-text-top{vertical-align:text-top!important}.vertical-align-text-bottom{vertical-align:text-bottom!important}.vertical-align-sub{vertical-align:sub!important}.vertical-align-super{vertical-align:super!important}@media screen and (min-width: 576px){.sm\\:vertical-align-baseline{vertical-align:baseline!important}.sm\\:vertical-align-top{vertical-align:top!important}.sm\\:vertical-align-middle{vertical-align:middle!important}.sm\\:vertical-align-bottom{vertical-align:bottom!important}.sm\\:vertical-align-text-top{vertical-align:text-top!important}.sm\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.sm\\:vertical-align-sub{vertical-align:sub!important}.sm\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 768px){.md\\:vertical-align-baseline{vertical-align:baseline!important}.md\\:vertical-align-top{vertical-align:top!important}.md\\:vertical-align-middle{vertical-align:middle!important}.md\\:vertical-align-bottom{vertical-align:bottom!important}.md\\:vertical-align-text-top{vertical-align:text-top!important}.md\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.md\\:vertical-align-sub{vertical-align:sub!important}.md\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 992px){.lg\\:vertical-align-baseline{vertical-align:baseline!important}.lg\\:vertical-align-top{vertical-align:top!important}.lg\\:vertical-align-middle{vertical-align:middle!important}.lg\\:vertical-align-bottom{vertical-align:bottom!important}.lg\\:vertical-align-text-top{vertical-align:text-top!important}.lg\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.lg\\:vertical-align-sub{vertical-align:sub!important}.lg\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 1200px){.xl\\:vertical-align-baseline{vertical-align:baseline!important}.xl\\:vertical-align-top{vertical-align:top!important}.xl\\:vertical-align-middle{vertical-align:middle!important}.xl\\:vertical-align-bottom{vertical-align:bottom!important}.xl\\:vertical-align-text-top{vertical-align:text-top!important}.xl\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.xl\\:vertical-align-sub{vertical-align:sub!important}.xl\\:vertical-align-super{vertical-align:super!important}}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column{flex-direction:column!important}.flex-column-reverse{flex-direction:column-reverse!important}@media screen and (min-width: 576px){.sm\\:flex-row{flex-direction:row!important}.sm\\:flex-row-reverse{flex-direction:row-reverse!important}.sm\\:flex-column{flex-direction:column!important}.sm\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 768px){.md\\:flex-row{flex-direction:row!important}.md\\:flex-row-reverse{flex-direction:row-reverse!important}.md\\:flex-column{flex-direction:column!important}.md\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 992px){.lg\\:flex-row{flex-direction:row!important}.lg\\:flex-row-reverse{flex-direction:row-reverse!important}.lg\\:flex-column{flex-direction:column!important}.lg\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 1200px){.xl\\:flex-row{flex-direction:row!important}.xl\\:flex-row-reverse{flex-direction:row-reverse!important}.xl\\:flex-column{flex-direction:column!important}.xl\\:flex-column-reverse{flex-direction:column-reverse!important}}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-nowrap{flex-wrap:nowrap!important}@media screen and (min-width: 576px){.sm\\:flex-wrap{flex-wrap:wrap!important}.sm\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.sm\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 768px){.md\\:flex-wrap{flex-wrap:wrap!important}.md\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.md\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 992px){.lg\\:flex-wrap{flex-wrap:wrap!important}.lg\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.lg\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 1200px){.xl\\:flex-wrap{flex-wrap:wrap!important}.xl\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.xl\\:flex-nowrap{flex-wrap:nowrap!important}}.justify-content-start{justify-content:flex-start!important}.justify-content-end,:host ::ng-deep .w-filter-panel-buttons{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:justify-content-start{justify-content:flex-start!important}.sm\\:justify-content-end{justify-content:flex-end!important}.sm\\:justify-content-center{justify-content:center!important}.sm\\:justify-content-between{justify-content:space-between!important}.sm\\:justify-content-around{justify-content:space-around!important}.sm\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:justify-content-start{justify-content:flex-start!important}.md\\:justify-content-end{justify-content:flex-end!important}.md\\:justify-content-center{justify-content:center!important}.md\\:justify-content-between{justify-content:space-between!important}.md\\:justify-content-around{justify-content:space-around!important}.md\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:justify-content-start{justify-content:flex-start!important}.lg\\:justify-content-end{justify-content:flex-end!important}.lg\\:justify-content-center{justify-content:center!important}.lg\\:justify-content-between{justify-content:space-between!important}.lg\\:justify-content-around{justify-content:space-around!important}.lg\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:justify-content-start{justify-content:flex-start!important}.xl\\:justify-content-end{justify-content:flex-end!important}.xl\\:justify-content-center{justify-content:center!important}.xl\\:justify-content-between{justify-content:space-between!important}.xl\\:justify-content-around{justify-content:space-around!important}.xl\\:justify-content-evenly{justify-content:space-evenly!important}}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-evenly{align-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:align-content-start{align-content:flex-start!important}.sm\\:align-content-end{align-content:flex-end!important}.sm\\:align-content-center{align-content:center!important}.sm\\:align-content-between{align-content:space-between!important}.sm\\:align-content-around{align-content:space-around!important}.sm\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:align-content-start{align-content:flex-start!important}.md\\:align-content-end{align-content:flex-end!important}.md\\:align-content-center{align-content:center!important}.md\\:align-content-between{align-content:space-between!important}.md\\:align-content-around{align-content:space-around!important}.md\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:align-content-start{align-content:flex-start!important}.lg\\:align-content-end{align-content:flex-end!important}.lg\\:align-content-center{align-content:center!important}.lg\\:align-content-between{align-content:space-between!important}.lg\\:align-content-around{align-content:space-around!important}.lg\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:align-content-start{align-content:flex-start!important}.xl\\:align-content-end{align-content:flex-end!important}.xl\\:align-content-center{align-content:center!important}.xl\\:align-content-between{align-content:space-between!important}.xl\\:align-content-around{align-content:space-around!important}.xl\\:align-content-evenly{align-content:space-evenly!important}}.align-items-stretch{align-items:stretch!important}.align-items-start{align-items:flex-start!important}.align-items-center{align-items:center!important}.align-items-end,:host ::ng-deep .w-filter-panel-buttons{align-items:flex-end!important}.align-items-baseline{align-items:baseline!important}@media screen and (min-width: 576px){.sm\\:align-items-stretch{align-items:stretch!important}.sm\\:align-items-start{align-items:flex-start!important}.sm\\:align-items-center{align-items:center!important}.sm\\:align-items-end{align-items:flex-end!important}.sm\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 768px){.md\\:align-items-stretch{align-items:stretch!important}.md\\:align-items-start{align-items:flex-start!important}.md\\:align-items-center{align-items:center!important}.md\\:align-items-end{align-items:flex-end!important}.md\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-items-stretch{align-items:stretch!important}.lg\\:align-items-start{align-items:flex-start!important}.lg\\:align-items-center{align-items:center!important}.lg\\:align-items-end{align-items:flex-end!important}.lg\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-items-stretch{align-items:stretch!important}.xl\\:align-items-start{align-items:flex-start!important}.xl\\:align-items-center{align-items:center!important}.xl\\:align-items-end{align-items:flex-end!important}.xl\\:align-items-baseline{align-items:baseline!important}}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-stretch{align-self:stretch!important}.align-self-baseline{align-self:baseline!important}@media screen and (min-width: 576px){.sm\\:align-self-auto{align-self:auto!important}.sm\\:align-self-start{align-self:flex-start!important}.sm\\:align-self-end{align-self:flex-end!important}.sm\\:align-self-center{align-self:center!important}.sm\\:align-self-stretch{align-self:stretch!important}.sm\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 768px){.md\\:align-self-auto{align-self:auto!important}.md\\:align-self-start{align-self:flex-start!important}.md\\:align-self-end{align-self:flex-end!important}.md\\:align-self-center{align-self:center!important}.md\\:align-self-stretch{align-self:stretch!important}.md\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-self-auto{align-self:auto!important}.lg\\:align-self-start{align-self:flex-start!important}.lg\\:align-self-end{align-self:flex-end!important}.lg\\:align-self-center{align-self:center!important}.lg\\:align-self-stretch{align-self:stretch!important}.lg\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-self-auto{align-self:auto!important}.xl\\:align-self-start{align-self:flex-start!important}.xl\\:align-self-end{align-self:flex-end!important}.xl\\:align-self-center{align-self:center!important}.xl\\:align-self-stretch{align-self:stretch!important}.xl\\:align-self-baseline{align-self:baseline!important}}.flex-order-0{order:0!important}.flex-order-1{order:1!important}.flex-order-2{order:2!important}.flex-order-3{order:3!important}.flex-order-4{order:4!important}.flex-order-5{order:5!important}.flex-order-6{order:6!important}@media screen and (min-width: 576px){.sm\\:flex-order-0{order:0!important}.sm\\:flex-order-1{order:1!important}.sm\\:flex-order-2{order:2!important}.sm\\:flex-order-3{order:3!important}.sm\\:flex-order-4{order:4!important}.sm\\:flex-order-5{order:5!important}.sm\\:flex-order-6{order:6!important}}@media screen and (min-width: 768px){.md\\:flex-order-0{order:0!important}.md\\:flex-order-1{order:1!important}.md\\:flex-order-2{order:2!important}.md\\:flex-order-3{order:3!important}.md\\:flex-order-4{order:4!important}.md\\:flex-order-5{order:5!important}.md\\:flex-order-6{order:6!important}}@media screen and (min-width: 992px){.lg\\:flex-order-0{order:0!important}.lg\\:flex-order-1{order:1!important}.lg\\:flex-order-2{order:2!important}.lg\\:flex-order-3{order:3!important}.lg\\:flex-order-4{order:4!important}.lg\\:flex-order-5{order:5!important}.lg\\:flex-order-6{order:6!important}}@media screen and (min-width: 1200px){.xl\\:flex-order-0{order:0!important}.xl\\:flex-order-1{order:1!important}.xl\\:flex-order-2{order:2!important}.xl\\:flex-order-3{order:3!important}.xl\\:flex-order-4{order:4!important}.xl\\:flex-order-5{order:5!important}.xl\\:flex-order-6{order:6!important}}.flex-1{flex:1 1 0%!important}.flex-auto{flex:1 1 auto!important}.flex-initial{flex:0 1 auto!important}.flex-none{flex:none!important}@media screen and (min-width: 576px){.sm\\:flex-1{flex:1 1 0%!important}.sm\\:flex-auto{flex:1 1 auto!important}.sm\\:flex-initial{flex:0 1 auto!important}.sm\\:flex-none{flex:none!important}}@media screen and (min-width: 768px){.md\\:flex-1{flex:1 1 0%!important}.md\\:flex-auto{flex:1 1 auto!important}.md\\:flex-initial{flex:0 1 auto!important}.md\\:flex-none{flex:none!important}}@media screen and (min-width: 992px){.lg\\:flex-1{flex:1 1 0%!important}.lg\\:flex-auto{flex:1 1 auto!important}.lg\\:flex-initial{flex:0 1 auto!important}.lg\\:flex-none{flex:none!important}}@media screen and (min-width: 1200px){.xl\\:flex-1{flex:1 1 0%!important}.xl\\:flex-auto{flex:1 1 auto!important}.xl\\:flex-initial{flex:0 1 auto!important}.xl\\:flex-none{flex:none!important}}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}@media screen and (min-width: 576px){.sm\\:flex-grow-0{flex-grow:0!important}.sm\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 768px){.md\\:flex-grow-0{flex-grow:0!important}.md\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 992px){.lg\\:flex-grow-0{flex-grow:0!important}.lg\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-grow-0{flex-grow:0!important}.xl\\:flex-grow-1{flex-grow:1!important}}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}@media screen and (min-width: 576px){.sm\\:flex-shrink-0{flex-shrink:0!important}.sm\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 768px){.md\\:flex-shrink-0{flex-shrink:0!important}.md\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 992px){.lg\\:flex-shrink-0{flex-shrink:0!important}.lg\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-shrink-0{flex-shrink:0!important}.xl\\:flex-shrink-1{flex-shrink:1!important}}.gap-0{gap:0rem!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:2rem!important}.gap-6{gap:3rem!important}.gap-7{gap:4rem!important}.gap-8{gap:5rem!important}.row-gap-0{row-gap:0rem!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:2rem!important}.row-gap-6{row-gap:3rem!important}.row-gap-7{row-gap:4rem!important}.row-gap-8{row-gap:5rem!important}.column-gap-0{column-gap:0rem!important}.column-gap-1{column-gap:.25rem!important}.column-gap-2{column-gap:.5rem!important}.column-gap-3{column-gap:1rem!important}.column-gap-4{column-gap:1.5rem!important}.column-gap-5{column-gap:2rem!important}.column-gap-6{column-gap:3rem!important}.column-gap-7{column-gap:4rem!important}.column-gap-8{column-gap:5rem!important}@media screen and (min-width: 576px){.sm\\:gap-0{gap:0rem!important}.sm\\:gap-1{gap:.25rem!important}.sm\\:gap-2{gap:.5rem!important}.sm\\:gap-3{gap:1rem!important}.sm\\:gap-4{gap:1.5rem!important}.sm\\:gap-5{gap:2rem!important}.sm\\:gap-6{gap:3rem!important}.sm\\:gap-7{gap:4rem!important}.sm\\:gap-8{gap:5rem!important}.sm\\:row-gap-0{row-gap:0rem!important}.sm\\:row-gap-1{row-gap:.25rem!important}.sm\\:row-gap-2{row-gap:.5rem!important}.sm\\:row-gap-3{row-gap:1rem!important}.sm\\:row-gap-4{row-gap:1.5rem!important}.sm\\:row-gap-5{row-gap:2rem!important}.sm\\:row-gap-6{row-gap:3rem!important}.sm\\:row-gap-7{row-gap:4rem!important}.sm\\:row-gap-8{row-gap:5rem!important}.sm\\:column-gap-0{column-gap:0rem!important}.sm\\:column-gap-1{column-gap:.25rem!important}.sm\\:column-gap-2{column-gap:.5rem!important}.sm\\:column-gap-3{column-gap:1rem!important}.sm\\:column-gap-4{column-gap:1.5rem!important}.sm\\:column-gap-5{column-gap:2rem!important}.sm\\:column-gap-6{column-gap:3rem!important}.sm\\:column-gap-7{column-gap:4rem!important}.sm\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 768px){.md\\:gap-0{gap:0rem!important}.md\\:gap-1{gap:.25rem!important}.md\\:gap-2{gap:.5rem!important}.md\\:gap-3{gap:1rem!important}.md\\:gap-4{gap:1.5rem!important}.md\\:gap-5{gap:2rem!important}.md\\:gap-6{gap:3rem!important}.md\\:gap-7{gap:4rem!important}.md\\:gap-8{gap:5rem!important}.md\\:row-gap-0{row-gap:0rem!important}.md\\:row-gap-1{row-gap:.25rem!important}.md\\:row-gap-2{row-gap:.5rem!important}.md\\:row-gap-3{row-gap:1rem!important}.md\\:row-gap-4{row-gap:1.5rem!important}.md\\:row-gap-5{row-gap:2rem!important}.md\\:row-gap-6{row-gap:3rem!important}.md\\:row-gap-7{row-gap:4rem!important}.md\\:row-gap-8{row-gap:5rem!important}.md\\:column-gap-0{column-gap:0rem!important}.md\\:column-gap-1{column-gap:.25rem!important}.md\\:column-gap-2{column-gap:.5rem!important}.md\\:column-gap-3{column-gap:1rem!important}.md\\:column-gap-4{column-gap:1.5rem!important}.md\\:column-gap-5{column-gap:2rem!important}.md\\:column-gap-6{column-gap:3rem!important}.md\\:column-gap-7{column-gap:4rem!important}.md\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 992px){.lg\\:gap-0{gap:0rem!important}.lg\\:gap-1{gap:.25rem!important}.lg\\:gap-2{gap:.5rem!important}.lg\\:gap-3{gap:1rem!important}.lg\\:gap-4{gap:1.5rem!important}.lg\\:gap-5{gap:2rem!important}.lg\\:gap-6{gap:3rem!important}.lg\\:gap-7{gap:4rem!important}.lg\\:gap-8{gap:5rem!important}.lg\\:row-gap-0{row-gap:0rem!important}.lg\\:row-gap-1{row-gap:.25rem!important}.lg\\:row-gap-2{row-gap:.5rem!important}.lg\\:row-gap-3{row-gap:1rem!important}.lg\\:row-gap-4{row-gap:1.5rem!important}.lg\\:row-gap-5{row-gap:2rem!important}.lg\\:row-gap-6{row-gap:3rem!important}.lg\\:row-gap-7{row-gap:4rem!important}.lg\\:row-gap-8{row-gap:5rem!important}.lg\\:column-gap-0{column-gap:0rem!important}.lg\\:column-gap-1{column-gap:.25rem!important}.lg\\:column-gap-2{column-gap:.5rem!important}.lg\\:column-gap-3{column-gap:1rem!important}.lg\\:column-gap-4{column-gap:1.5rem!important}.lg\\:column-gap-5{column-gap:2rem!important}.lg\\:column-gap-6{column-gap:3rem!important}.lg\\:column-gap-7{column-gap:4rem!important}.lg\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 1200px){.xl\\:gap-0{gap:0rem!important}.xl\\:gap-1{gap:.25rem!important}.xl\\:gap-2{gap:.5rem!important}.xl\\:gap-3{gap:1rem!important}.xl\\:gap-4{gap:1.5rem!important}.xl\\:gap-5{gap:2rem!important}.xl\\:gap-6{gap:3rem!important}.xl\\:gap-7{gap:4rem!important}.xl\\:gap-8{gap:5rem!important}.xl\\:row-gap-0{row-gap:0rem!important}.xl\\:row-gap-1{row-gap:.25rem!important}.xl\\:row-gap-2{row-gap:.5rem!important}.xl\\:row-gap-3{row-gap:1rem!important}.xl\\:row-gap-4{row-gap:1.5rem!important}.xl\\:row-gap-5{row-gap:2rem!important}.xl\\:row-gap-6{row-gap:3rem!important}.xl\\:row-gap-7{row-gap:4rem!important}.xl\\:row-gap-8{row-gap:5rem!important}.xl\\:column-gap-0{column-gap:0rem!important}.xl\\:column-gap-1{column-gap:.25rem!important}.xl\\:column-gap-2{column-gap:.5rem!important}.xl\\:column-gap-3{column-gap:1rem!important}.xl\\:column-gap-4{column-gap:1.5rem!important}.xl\\:column-gap-5{column-gap:2rem!important}.xl\\:column-gap-6{column-gap:3rem!important}.xl\\:column-gap-7{column-gap:4rem!important}.xl\\:column-gap-8{column-gap:5rem!important}}.p-0{padding:0rem!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:2rem!important}.p-6{padding:3rem!important}.p-7{padding:4rem!important}.p-8{padding:5rem!important}.pt-0{padding-top:0rem!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:2rem!important}.pt-6{padding-top:3rem!important}.pt-7{padding-top:4rem!important}.pt-8{padding-top:5rem!important}.pr-0{padding-right:0rem!important}.pr-1{padding-right:.25rem!important}.pr-2{padding-right:.5rem!important}.pr-3{padding-right:1rem!important}.pr-4{padding-right:1.5rem!important}.pr-5{padding-right:2rem!important}.pr-6{padding-right:3rem!important}.pr-7{padding-right:4rem!important}.pr-8{padding-right:5rem!important}.pl-0{padding-left:0rem!important}.pl-1{padding-left:.25rem!important}.pl-2{padding-left:.5rem!important}.pl-3{padding-left:1rem!important}.pl-4{padding-left:1.5rem!important}.pl-5{padding-left:2rem!important}.pl-6{padding-left:3rem!important}.pl-7{padding-left:4rem!important}.pl-8{padding-left:5rem!important}.pb-0{padding-bottom:0rem!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:2rem!important}.pb-6{padding-bottom:3rem!important}.pb-7{padding-bottom:4rem!important}.pb-8{padding-bottom:5rem!important}.px-0{padding-left:0rem!important;padding-right:0rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:2rem!important;padding-right:2rem!important}.px-6{padding-left:3rem!important;padding-right:3rem!important}.px-7{padding-left:4rem!important;padding-right:4rem!important}.px-8{padding-left:5rem!important;padding-right:5rem!important}.py-0{padding-top:0rem!important;padding-bottom:0rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:2rem!important;padding-bottom:2rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.py-7{padding-top:4rem!important;padding-bottom:4rem!important}.py-8{padding-top:5rem!important;padding-bottom:5rem!important}@media screen and (min-width: 576px){.sm\\:p-0{padding:0rem!important}.sm\\:p-1{padding:.25rem!important}.sm\\:p-2{padding:.5rem!important}.sm\\:p-3{padding:1rem!important}.sm\\:p-4{padding:1.5rem!important}.sm\\:p-5{padding:2rem!important}.sm\\:p-6{padding:3rem!important}.sm\\:p-7{padding:4rem!important}.sm\\:p-8{padding:5rem!important}.sm\\:pt-0{padding-top:0rem!important}.sm\\:pt-1{padding-top:.25rem!important}.sm\\:pt-2{padding-top:.5rem!important}.sm\\:pt-3{padding-top:1rem!important}.sm\\:pt-4{padding-top:1.5rem!important}.sm\\:pt-5{padding-top:2rem!important}.sm\\:pt-6{padding-top:3rem!important}.sm\\:pt-7{padding-top:4rem!important}.sm\\:pt-8{padding-top:5rem!important}.sm\\:pr-0{padding-right:0rem!important}.sm\\:pr-1{padding-right:.25rem!important}.sm\\:pr-2{padding-right:.5rem!important}.sm\\:pr-3{padding-right:1rem!important}.sm\\:pr-4{padding-right:1.5rem!important}.sm\\:pr-5{padding-right:2rem!important}.sm\\:pr-6{padding-right:3rem!important}.sm\\:pr-7{padding-right:4rem!important}.sm\\:pr-8{padding-right:5rem!important}.sm\\:pl-0{padding-left:0rem!important}.sm\\:pl-1{padding-left:.25rem!important}.sm\\:pl-2{padding-left:.5rem!important}.sm\\:pl-3{padding-left:1rem!important}.sm\\:pl-4{padding-left:1.5rem!important}.sm\\:pl-5{padding-left:2rem!important}.sm\\:pl-6{padding-left:3rem!important}.sm\\:pl-7{padding-left:4rem!important}.sm\\:pl-8{padding-left:5rem!important}.sm\\:pb-0{padding-bottom:0rem!important}.sm\\:pb-1{padding-bottom:.25rem!important}.sm\\:pb-2{padding-bottom:.5rem!important}.sm\\:pb-3{padding-bottom:1rem!important}.sm\\:pb-4{padding-bottom:1.5rem!important}.sm\\:pb-5{padding-bottom:2rem!important}.sm\\:pb-6{padding-bottom:3rem!important}.sm\\:pb-7{padding-bottom:4rem!important}.sm\\:pb-8{padding-bottom:5rem!important}.sm\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.sm\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.sm\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.sm\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.sm\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.sm\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.sm\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.sm\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.sm\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.sm\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.sm\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.sm\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.sm\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.sm\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.sm\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.sm\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.sm\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.sm\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 768px){.md\\:p-0{padding:0rem!important}.md\\:p-1{padding:.25rem!important}.md\\:p-2{padding:.5rem!important}.md\\:p-3{padding:1rem!important}.md\\:p-4{padding:1.5rem!important}.md\\:p-5{padding:2rem!important}.md\\:p-6{padding:3rem!important}.md\\:p-7{padding:4rem!important}.md\\:p-8{padding:5rem!important}.md\\:pt-0{padding-top:0rem!important}.md\\:pt-1{padding-top:.25rem!important}.md\\:pt-2{padding-top:.5rem!important}.md\\:pt-3{padding-top:1rem!important}.md\\:pt-4{padding-top:1.5rem!important}.md\\:pt-5{padding-top:2rem!important}.md\\:pt-6{padding-top:3rem!important}.md\\:pt-7{padding-top:4rem!important}.md\\:pt-8{padding-top:5rem!important}.md\\:pr-0{padding-right:0rem!important}.md\\:pr-1{padding-right:.25rem!important}.md\\:pr-2{padding-right:.5rem!important}.md\\:pr-3{padding-right:1rem!important}.md\\:pr-4{padding-right:1.5rem!important}.md\\:pr-5{padding-right:2rem!important}.md\\:pr-6{padding-right:3rem!important}.md\\:pr-7{padding-right:4rem!important}.md\\:pr-8{padding-right:5rem!important}.md\\:pl-0{padding-left:0rem!important}.md\\:pl-1{padding-left:.25rem!important}.md\\:pl-2{padding-left:.5rem!important}.md\\:pl-3{padding-left:1rem!important}.md\\:pl-4{padding-left:1.5rem!important}.md\\:pl-5{padding-left:2rem!important}.md\\:pl-6{padding-left:3rem!important}.md\\:pl-7{padding-left:4rem!important}.md\\:pl-8{padding-left:5rem!important}.md\\:pb-0{padding-bottom:0rem!important}.md\\:pb-1{padding-bottom:.25rem!important}.md\\:pb-2{padding-bottom:.5rem!important}.md\\:pb-3{padding-bottom:1rem!important}.md\\:pb-4{padding-bottom:1.5rem!important}.md\\:pb-5{padding-bottom:2rem!important}.md\\:pb-6{padding-bottom:3rem!important}.md\\:pb-7{padding-bottom:4rem!important}.md\\:pb-8{padding-bottom:5rem!important}.md\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.md\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.md\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.md\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.md\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.md\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.md\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.md\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.md\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.md\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.md\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.md\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.md\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.md\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.md\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.md\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.md\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.md\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 992px){.lg\\:p-0{padding:0rem!important}.lg\\:p-1{padding:.25rem!important}.lg\\:p-2{padding:.5rem!important}.lg\\:p-3{padding:1rem!important}.lg\\:p-4{padding:1.5rem!important}.lg\\:p-5{padding:2rem!important}.lg\\:p-6{padding:3rem!important}.lg\\:p-7{padding:4rem!important}.lg\\:p-8{padding:5rem!important}.lg\\:pt-0{padding-top:0rem!important}.lg\\:pt-1{padding-top:.25rem!important}.lg\\:pt-2{padding-top:.5rem!important}.lg\\:pt-3{padding-top:1rem!important}.lg\\:pt-4{padding-top:1.5rem!important}.lg\\:pt-5{padding-top:2rem!important}.lg\\:pt-6{padding-top:3rem!important}.lg\\:pt-7{padding-top:4rem!important}.lg\\:pt-8{padding-top:5rem!important}.lg\\:pr-0{padding-right:0rem!important}.lg\\:pr-1{padding-right:.25rem!important}.lg\\:pr-2{padding-right:.5rem!important}.lg\\:pr-3{padding-right:1rem!important}.lg\\:pr-4{padding-right:1.5rem!important}.lg\\:pr-5{padding-right:2rem!important}.lg\\:pr-6{padding-right:3rem!important}.lg\\:pr-7{padding-right:4rem!important}.lg\\:pr-8{padding-right:5rem!important}.lg\\:pl-0{padding-left:0rem!important}.lg\\:pl-1{padding-left:.25rem!important}.lg\\:pl-2{padding-left:.5rem!important}.lg\\:pl-3{padding-left:1rem!important}.lg\\:pl-4{padding-left:1.5rem!important}.lg\\:pl-5{padding-left:2rem!important}.lg\\:pl-6{padding-left:3rem!important}.lg\\:pl-7{padding-left:4rem!important}.lg\\:pl-8{padding-left:5rem!important}.lg\\:pb-0{padding-bottom:0rem!important}.lg\\:pb-1{padding-bottom:.25rem!important}.lg\\:pb-2{padding-bottom:.5rem!important}.lg\\:pb-3{padding-bottom:1rem!important}.lg\\:pb-4{padding-bottom:1.5rem!important}.lg\\:pb-5{padding-bottom:2rem!important}.lg\\:pb-6{padding-bottom:3rem!important}.lg\\:pb-7{padding-bottom:4rem!important}.lg\\:pb-8{padding-bottom:5rem!important}.lg\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.lg\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.lg\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.lg\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.lg\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.lg\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.lg\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.lg\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.lg\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.lg\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.lg\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.lg\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.lg\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.lg\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.lg\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.lg\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.lg\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.lg\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 1200px){.xl\\:p-0{padding:0rem!important}.xl\\:p-1{padding:.25rem!important}.xl\\:p-2{padding:.5rem!important}.xl\\:p-3{padding:1rem!important}.xl\\:p-4{padding:1.5rem!important}.xl\\:p-5{padding:2rem!important}.xl\\:p-6{padding:3rem!important}.xl\\:p-7{padding:4rem!important}.xl\\:p-8{padding:5rem!important}.xl\\:pt-0{padding-top:0rem!important}.xl\\:pt-1{padding-top:.25rem!important}.xl\\:pt-2{padding-top:.5rem!important}.xl\\:pt-3{padding-top:1rem!important}.xl\\:pt-4{padding-top:1.5rem!important}.xl\\:pt-5{padding-top:2rem!important}.xl\\:pt-6{padding-top:3rem!important}.xl\\:pt-7{padding-top:4rem!important}.xl\\:pt-8{padding-top:5rem!important}.xl\\:pr-0{padding-right:0rem!important}.xl\\:pr-1{padding-right:.25rem!important}.xl\\:pr-2{padding-right:.5rem!important}.xl\\:pr-3{padding-right:1rem!important}.xl\\:pr-4{padding-right:1.5rem!important}.xl\\:pr-5{padding-right:2rem!important}.xl\\:pr-6{padding-right:3rem!important}.xl\\:pr-7{padding-right:4rem!important}.xl\\:pr-8{padding-right:5rem!important}.xl\\:pl-0{padding-left:0rem!important}.xl\\:pl-1{padding-left:.25rem!important}.xl\\:pl-2{padding-left:.5rem!important}.xl\\:pl-3{padding-left:1rem!important}.xl\\:pl-4{padding-left:1.5rem!important}.xl\\:pl-5{padding-left:2rem!important}.xl\\:pl-6{padding-left:3rem!important}.xl\\:pl-7{padding-left:4rem!important}.xl\\:pl-8{padding-left:5rem!important}.xl\\:pb-0{padding-bottom:0rem!important}.xl\\:pb-1{padding-bottom:.25rem!important}.xl\\:pb-2{padding-bottom:.5rem!important}.xl\\:pb-3{padding-bottom:1rem!important}.xl\\:pb-4{padding-bottom:1.5rem!important}.xl\\:pb-5{padding-bottom:2rem!important}.xl\\:pb-6{padding-bottom:3rem!important}.xl\\:pb-7{padding-bottom:4rem!important}.xl\\:pb-8{padding-bottom:5rem!important}.xl\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.xl\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.xl\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.xl\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.xl\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.xl\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.xl\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.xl\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.xl\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.xl\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.xl\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.xl\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.xl\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.xl\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.xl\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.xl\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.xl\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.xl\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}.m-0{margin:0rem!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:2rem!important}.m-6{margin:3rem!important}.m-7{margin:4rem!important}.m-8{margin:5rem!important}.-m-1{margin:-.25rem!important}.-m-2{margin:-.5rem!important}.-m-3{margin:-1rem!important}.-m-4{margin:-1.5rem!important}.-m-5{margin:-2rem!important}.-m-6{margin:-3rem!important}.-m-7{margin:-4rem!important}.-m-8{margin:-5rem!important}.m-auto{margin:auto!important}.mt-0{margin-top:0rem!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:2rem!important}.mt-6{margin-top:3rem!important}.mt-7{margin-top:4rem!important}.mt-8{margin-top:5rem!important}.-mt-1{margin-top:-.25rem!important}.-mt-2{margin-top:-.5rem!important}.-mt-3{margin-top:-1rem!important}.-mt-4{margin-top:-1.5rem!important}.-mt-5{margin-top:-2rem!important}.-mt-6{margin-top:-3rem!important}.-mt-7{margin-top:-4rem!important}.-mt-8{margin-top:-5rem!important}.mt-auto{margin-top:auto!important}.mr-0{margin-right:0rem!important}.mr-1{margin-right:.25rem!important}.mr-2{margin-right:.5rem!important}.mr-3{margin-right:1rem!important}.mr-4{margin-right:1.5rem!important}.mr-5{margin-right:2rem!important}.mr-6{margin-right:3rem!important}.mr-7{margin-right:4rem!important}.mr-8{margin-right:5rem!important}.-mr-1{margin-right:-.25rem!important}.-mr-2{margin-right:-.5rem!important}.-mr-3{margin-right:-1rem!important}.-mr-4{margin-right:-1.5rem!important}.-mr-5{margin-right:-2rem!important}.-mr-6{margin-right:-3rem!important}.-mr-7{margin-right:-4rem!important}.-mr-8{margin-right:-5rem!important}.mr-auto{margin-right:auto!important}.ml-0{margin-left:0rem!important}.ml-1{margin-left:.25rem!important}.ml-2{margin-left:.5rem!important}.ml-3{margin-left:1rem!important}.ml-4{margin-left:1.5rem!important}.ml-5{margin-left:2rem!important}.ml-6{margin-left:3rem!important}.ml-7{margin-left:4rem!important}.ml-8{margin-left:5rem!important}.-ml-1{margin-left:-.25rem!important}.-ml-2{margin-left:-.5rem!important}.-ml-3{margin-left:-1rem!important}.-ml-4{margin-left:-1.5rem!important}.-ml-5{margin-left:-2rem!important}.-ml-6{margin-left:-3rem!important}.-ml-7{margin-left:-4rem!important}.-ml-8{margin-left:-5rem!important}.ml-auto{margin-left:auto!important}.mb-0{margin-bottom:0rem!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:2rem!important}.mb-6{margin-bottom:3rem!important}.mb-7{margin-bottom:4rem!important}.mb-8{margin-bottom:5rem!important}.-mb-1{margin-bottom:-.25rem!important}.-mb-2{margin-bottom:-.5rem!important}.-mb-3{margin-bottom:-1rem!important}.-mb-4{margin-bottom:-1.5rem!important}.-mb-5{margin-bottom:-2rem!important}.-mb-6{margin-bottom:-3rem!important}.-mb-7{margin-bottom:-4rem!important}.-mb-8{margin-bottom:-5rem!important}.mb-auto{margin-bottom:auto!important}.mx-0{margin-left:0rem!important;margin-right:0rem!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:2rem!important;margin-right:2rem!important}.mx-6{margin-left:3rem!important;margin-right:3rem!important}.mx-7{margin-left:4rem!important;margin-right:4rem!important}.mx-8{margin-left:5rem!important;margin-right:5rem!important}.-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0rem!important;margin-bottom:0rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:2rem!important;margin-bottom:2rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.my-7{margin-top:4rem!important;margin-bottom:4rem!important}.my-8{margin-top:5rem!important;margin-bottom:5rem!important}.-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}@media screen and (min-width: 576px){.sm\\:m-0{margin:0rem!important}.sm\\:m-1{margin:.25rem!important}.sm\\:m-2{margin:.5rem!important}.sm\\:m-3{margin:1rem!important}.sm\\:m-4{margin:1.5rem!important}.sm\\:m-5{margin:2rem!important}.sm\\:m-6{margin:3rem!important}.sm\\:m-7{margin:4rem!important}.sm\\:m-8{margin:5rem!important}.sm\\:-m-1{margin:-.25rem!important}.sm\\:-m-2{margin:-.5rem!important}.sm\\:-m-3{margin:-1rem!important}.sm\\:-m-4{margin:-1.5rem!important}.sm\\:-m-5{margin:-2rem!important}.sm\\:-m-6{margin:-3rem!important}.sm\\:-m-7{margin:-4rem!important}.sm\\:-m-8{margin:-5rem!important}.sm\\:m-auto{margin:auto!important}.sm\\:mt-0{margin-top:0rem!important}.sm\\:mt-1{margin-top:.25rem!important}.sm\\:mt-2{margin-top:.5rem!important}.sm\\:mt-3{margin-top:1rem!important}.sm\\:mt-4{margin-top:1.5rem!important}.sm\\:mt-5{margin-top:2rem!important}.sm\\:mt-6{margin-top:3rem!important}.sm\\:mt-7{margin-top:4rem!important}.sm\\:mt-8{margin-top:5rem!important}.sm\\:-mt-1{margin-top:-.25rem!important}.sm\\:-mt-2{margin-top:-.5rem!important}.sm\\:-mt-3{margin-top:-1rem!important}.sm\\:-mt-4{margin-top:-1.5rem!important}.sm\\:-mt-5{margin-top:-2rem!important}.sm\\:-mt-6{margin-top:-3rem!important}.sm\\:-mt-7{margin-top:-4rem!important}.sm\\:-mt-8{margin-top:-5rem!important}.sm\\:mt-auto{margin-top:auto!important}.sm\\:mr-0{margin-right:0rem!important}.sm\\:mr-1{margin-right:.25rem!important}.sm\\:mr-2{margin-right:.5rem!important}.sm\\:mr-3{margin-right:1rem!important}.sm\\:mr-4{margin-right:1.5rem!important}.sm\\:mr-5{margin-right:2rem!important}.sm\\:mr-6{margin-right:3rem!important}.sm\\:mr-7{margin-right:4rem!important}.sm\\:mr-8{margin-right:5rem!important}.sm\\:-mr-1{margin-right:-.25rem!important}.sm\\:-mr-2{margin-right:-.5rem!important}.sm\\:-mr-3{margin-right:-1rem!important}.sm\\:-mr-4{margin-right:-1.5rem!important}.sm\\:-mr-5{margin-right:-2rem!important}.sm\\:-mr-6{margin-right:-3rem!important}.sm\\:-mr-7{margin-right:-4rem!important}.sm\\:-mr-8{margin-right:-5rem!important}.sm\\:mr-auto{margin-right:auto!important}.sm\\:ml-0{margin-left:0rem!important}.sm\\:ml-1{margin-left:.25rem!important}.sm\\:ml-2{margin-left:.5rem!important}.sm\\:ml-3{margin-left:1rem!important}.sm\\:ml-4{margin-left:1.5rem!important}.sm\\:ml-5{margin-left:2rem!important}.sm\\:ml-6{margin-left:3rem!important}.sm\\:ml-7{margin-left:4rem!important}.sm\\:ml-8{margin-left:5rem!important}.sm\\:-ml-1{margin-left:-.25rem!important}.sm\\:-ml-2{margin-left:-.5rem!important}.sm\\:-ml-3{margin-left:-1rem!important}.sm\\:-ml-4{margin-left:-1.5rem!important}.sm\\:-ml-5{margin-left:-2rem!important}.sm\\:-ml-6{margin-left:-3rem!important}.sm\\:-ml-7{margin-left:-4rem!important}.sm\\:-ml-8{margin-left:-5rem!important}.sm\\:ml-auto{margin-left:auto!important}.sm\\:mb-0{margin-bottom:0rem!important}.sm\\:mb-1{margin-bottom:.25rem!important}.sm\\:mb-2{margin-bottom:.5rem!important}.sm\\:mb-3{margin-bottom:1rem!important}.sm\\:mb-4{margin-bottom:1.5rem!important}.sm\\:mb-5{margin-bottom:2rem!important}.sm\\:mb-6{margin-bottom:3rem!important}.sm\\:mb-7{margin-bottom:4rem!important}.sm\\:mb-8{margin-bottom:5rem!important}.sm\\:-mb-1{margin-bottom:-.25rem!important}.sm\\:-mb-2{margin-bottom:-.5rem!important}.sm\\:-mb-3{margin-bottom:-1rem!important}.sm\\:-mb-4{margin-bottom:-1.5rem!important}.sm\\:-mb-5{margin-bottom:-2rem!important}.sm\\:-mb-6{margin-bottom:-3rem!important}.sm\\:-mb-7{margin-bottom:-4rem!important}.sm\\:-mb-8{margin-bottom:-5rem!important}.sm\\:mb-auto{margin-bottom:auto!important}.sm\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.sm\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.sm\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.sm\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.sm\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.sm\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.sm\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.sm\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.sm\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.sm\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.sm\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.sm\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.sm\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.sm\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.sm\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.sm\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.sm\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.sm\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.sm\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.sm\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.sm\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.sm\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.sm\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.sm\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.sm\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.sm\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.sm\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.sm\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.sm\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.sm\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.sm\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.sm\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.sm\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.sm\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.sm\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.sm\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 768px){.md\\:m-0{margin:0rem!important}.md\\:m-1{margin:.25rem!important}.md\\:m-2{margin:.5rem!important}.md\\:m-3{margin:1rem!important}.md\\:m-4{margin:1.5rem!important}.md\\:m-5{margin:2rem!important}.md\\:m-6{margin:3rem!important}.md\\:m-7{margin:4rem!important}.md\\:m-8{margin:5rem!important}.md\\:-m-1{margin:-.25rem!important}.md\\:-m-2{margin:-.5rem!important}.md\\:-m-3{margin:-1rem!important}.md\\:-m-4{margin:-1.5rem!important}.md\\:-m-5{margin:-2rem!important}.md\\:-m-6{margin:-3rem!important}.md\\:-m-7{margin:-4rem!important}.md\\:-m-8{margin:-5rem!important}.md\\:m-auto{margin:auto!important}.md\\:mt-0{margin-top:0rem!important}.md\\:mt-1{margin-top:.25rem!important}.md\\:mt-2{margin-top:.5rem!important}.md\\:mt-3{margin-top:1rem!important}.md\\:mt-4{margin-top:1.5rem!important}.md\\:mt-5{margin-top:2rem!important}.md\\:mt-6{margin-top:3rem!important}.md\\:mt-7{margin-top:4rem!important}.md\\:mt-8{margin-top:5rem!important}.md\\:-mt-1{margin-top:-.25rem!important}.md\\:-mt-2{margin-top:-.5rem!important}.md\\:-mt-3{margin-top:-1rem!important}.md\\:-mt-4{margin-top:-1.5rem!important}.md\\:-mt-5{margin-top:-2rem!important}.md\\:-mt-6{margin-top:-3rem!important}.md\\:-mt-7{margin-top:-4rem!important}.md\\:-mt-8{margin-top:-5rem!important}.md\\:mt-auto{margin-top:auto!important}.md\\:mr-0{margin-right:0rem!important}.md\\:mr-1{margin-right:.25rem!important}.md\\:mr-2{margin-right:.5rem!important}.md\\:mr-3{margin-right:1rem!important}.md\\:mr-4{margin-right:1.5rem!important}.md\\:mr-5{margin-right:2rem!important}.md\\:mr-6{margin-right:3rem!important}.md\\:mr-7{margin-right:4rem!important}.md\\:mr-8{margin-right:5rem!important}.md\\:-mr-1{margin-right:-.25rem!important}.md\\:-mr-2{margin-right:-.5rem!important}.md\\:-mr-3{margin-right:-1rem!important}.md\\:-mr-4{margin-right:-1.5rem!important}.md\\:-mr-5{margin-right:-2rem!important}.md\\:-mr-6{margin-right:-3rem!important}.md\\:-mr-7{margin-right:-4rem!important}.md\\:-mr-8{margin-right:-5rem!important}.md\\:mr-auto{margin-right:auto!important}.md\\:ml-0{margin-left:0rem!important}.md\\:ml-1{margin-left:.25rem!important}.md\\:ml-2{margin-left:.5rem!important}.md\\:ml-3{margin-left:1rem!important}.md\\:ml-4{margin-left:1.5rem!important}.md\\:ml-5{margin-left:2rem!important}.md\\:ml-6{margin-left:3rem!important}.md\\:ml-7{margin-left:4rem!important}.md\\:ml-8{margin-left:5rem!important}.md\\:-ml-1{margin-left:-.25rem!important}.md\\:-ml-2{margin-left:-.5rem!important}.md\\:-ml-3{margin-left:-1rem!important}.md\\:-ml-4{margin-left:-1.5rem!important}.md\\:-ml-5{margin-left:-2rem!important}.md\\:-ml-6{margin-left:-3rem!important}.md\\:-ml-7{margin-left:-4rem!important}.md\\:-ml-8{margin-left:-5rem!important}.md\\:ml-auto{margin-left:auto!important}.md\\:mb-0{margin-bottom:0rem!important}.md\\:mb-1{margin-bottom:.25rem!important}.md\\:mb-2{margin-bottom:.5rem!important}.md\\:mb-3{margin-bottom:1rem!important}.md\\:mb-4{margin-bottom:1.5rem!important}.md\\:mb-5{margin-bottom:2rem!important}.md\\:mb-6{margin-bottom:3rem!important}.md\\:mb-7{margin-bottom:4rem!important}.md\\:mb-8{margin-bottom:5rem!important}.md\\:-mb-1{margin-bottom:-.25rem!important}.md\\:-mb-2{margin-bottom:-.5rem!important}.md\\:-mb-3{margin-bottom:-1rem!important}.md\\:-mb-4{margin-bottom:-1.5rem!important}.md\\:-mb-5{margin-bottom:-2rem!important}.md\\:-mb-6{margin-bottom:-3rem!important}.md\\:-mb-7{margin-bottom:-4rem!important}.md\\:-mb-8{margin-bottom:-5rem!important}.md\\:mb-auto{margin-bottom:auto!important}.md\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.md\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.md\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.md\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.md\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.md\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.md\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.md\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.md\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.md\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.md\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.md\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.md\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.md\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.md\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.md\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.md\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.md\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.md\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.md\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.md\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.md\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.md\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.md\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.md\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.md\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.md\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.md\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.md\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.md\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.md\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.md\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.md\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.md\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.md\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.md\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 992px){.lg\\:m-0{margin:0rem!important}.lg\\:m-1{margin:.25rem!important}.lg\\:m-2{margin:.5rem!important}.lg\\:m-3{margin:1rem!important}.lg\\:m-4{margin:1.5rem!important}.lg\\:m-5{margin:2rem!important}.lg\\:m-6{margin:3rem!important}.lg\\:m-7{margin:4rem!important}.lg\\:m-8{margin:5rem!important}.lg\\:-m-1{margin:-.25rem!important}.lg\\:-m-2{margin:-.5rem!important}.lg\\:-m-3{margin:-1rem!important}.lg\\:-m-4{margin:-1.5rem!important}.lg\\:-m-5{margin:-2rem!important}.lg\\:-m-6{margin:-3rem!important}.lg\\:-m-7{margin:-4rem!important}.lg\\:-m-8{margin:-5rem!important}.lg\\:m-auto{margin:auto!important}.lg\\:mt-0{margin-top:0rem!important}.lg\\:mt-1{margin-top:.25rem!important}.lg\\:mt-2{margin-top:.5rem!important}.lg\\:mt-3{margin-top:1rem!important}.lg\\:mt-4{margin-top:1.5rem!important}.lg\\:mt-5{margin-top:2rem!important}.lg\\:mt-6{margin-top:3rem!important}.lg\\:mt-7{margin-top:4rem!important}.lg\\:mt-8{margin-top:5rem!important}.lg\\:-mt-1{margin-top:-.25rem!important}.lg\\:-mt-2{margin-top:-.5rem!important}.lg\\:-mt-3{margin-top:-1rem!important}.lg\\:-mt-4{margin-top:-1.5rem!important}.lg\\:-mt-5{margin-top:-2rem!important}.lg\\:-mt-6{margin-top:-3rem!important}.lg\\:-mt-7{margin-top:-4rem!important}.lg\\:-mt-8{margin-top:-5rem!important}.lg\\:mt-auto{margin-top:auto!important}.lg\\:mr-0{margin-right:0rem!important}.lg\\:mr-1{margin-right:.25rem!important}.lg\\:mr-2{margin-right:.5rem!important}.lg\\:mr-3{margin-right:1rem!important}.lg\\:mr-4{margin-right:1.5rem!important}.lg\\:mr-5{margin-right:2rem!important}.lg\\:mr-6{margin-right:3rem!important}.lg\\:mr-7{margin-right:4rem!important}.lg\\:mr-8{margin-right:5rem!important}.lg\\:-mr-1{margin-right:-.25rem!important}.lg\\:-mr-2{margin-right:-.5rem!important}.lg\\:-mr-3{margin-right:-1rem!important}.lg\\:-mr-4{margin-right:-1.5rem!important}.lg\\:-mr-5{margin-right:-2rem!important}.lg\\:-mr-6{margin-right:-3rem!important}.lg\\:-mr-7{margin-right:-4rem!important}.lg\\:-mr-8{margin-right:-5rem!important}.lg\\:mr-auto{margin-right:auto!important}.lg\\:ml-0{margin-left:0rem!important}.lg\\:ml-1{margin-left:.25rem!important}.lg\\:ml-2{margin-left:.5rem!important}.lg\\:ml-3{margin-left:1rem!important}.lg\\:ml-4{margin-left:1.5rem!important}.lg\\:ml-5{margin-left:2rem!important}.lg\\:ml-6{margin-left:3rem!important}.lg\\:ml-7{margin-left:4rem!important}.lg\\:ml-8{margin-left:5rem!important}.lg\\:-ml-1{margin-left:-.25rem!important}.lg\\:-ml-2{margin-left:-.5rem!important}.lg\\:-ml-3{margin-left:-1rem!important}.lg\\:-ml-4{margin-left:-1.5rem!important}.lg\\:-ml-5{margin-left:-2rem!important}.lg\\:-ml-6{margin-left:-3rem!important}.lg\\:-ml-7{margin-left:-4rem!important}.lg\\:-ml-8{margin-left:-5rem!important}.lg\\:ml-auto{margin-left:auto!important}.lg\\:mb-0{margin-bottom:0rem!important}.lg\\:mb-1{margin-bottom:.25rem!important}.lg\\:mb-2{margin-bottom:.5rem!important}.lg\\:mb-3{margin-bottom:1rem!important}.lg\\:mb-4{margin-bottom:1.5rem!important}.lg\\:mb-5{margin-bottom:2rem!important}.lg\\:mb-6{margin-bottom:3rem!important}.lg\\:mb-7{margin-bottom:4rem!important}.lg\\:mb-8{margin-bottom:5rem!important}.lg\\:-mb-1{margin-bottom:-.25rem!important}.lg\\:-mb-2{margin-bottom:-.5rem!important}.lg\\:-mb-3{margin-bottom:-1rem!important}.lg\\:-mb-4{margin-bottom:-1.5rem!important}.lg\\:-mb-5{margin-bottom:-2rem!important}.lg\\:-mb-6{margin-bottom:-3rem!important}.lg\\:-mb-7{margin-bottom:-4rem!important}.lg\\:-mb-8{margin-bottom:-5rem!important}.lg\\:mb-auto{margin-bottom:auto!important}.lg\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.lg\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.lg\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.lg\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.lg\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.lg\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.lg\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.lg\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.lg\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.lg\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.lg\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.lg\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.lg\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.lg\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.lg\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.lg\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.lg\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.lg\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.lg\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.lg\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.lg\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.lg\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.lg\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.lg\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.lg\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.lg\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.lg\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.lg\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.lg\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.lg\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.lg\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.lg\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.lg\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.lg\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.lg\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.lg\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 1200px){.xl\\:m-0{margin:0rem!important}.xl\\:m-1{margin:.25rem!important}.xl\\:m-2{margin:.5rem!important}.xl\\:m-3{margin:1rem!important}.xl\\:m-4{margin:1.5rem!important}.xl\\:m-5{margin:2rem!important}.xl\\:m-6{margin:3rem!important}.xl\\:m-7{margin:4rem!important}.xl\\:m-8{margin:5rem!important}.xl\\:-m-1{margin:-.25rem!important}.xl\\:-m-2{margin:-.5rem!important}.xl\\:-m-3{margin:-1rem!important}.xl\\:-m-4{margin:-1.5rem!important}.xl\\:-m-5{margin:-2rem!important}.xl\\:-m-6{margin:-3rem!important}.xl\\:-m-7{margin:-4rem!important}.xl\\:-m-8{margin:-5rem!important}.xl\\:m-auto{margin:auto!important}.xl\\:mt-0{margin-top:0rem!important}.xl\\:mt-1{margin-top:.25rem!important}.xl\\:mt-2{margin-top:.5rem!important}.xl\\:mt-3{margin-top:1rem!important}.xl\\:mt-4{margin-top:1.5rem!important}.xl\\:mt-5{margin-top:2rem!important}.xl\\:mt-6{margin-top:3rem!important}.xl\\:mt-7{margin-top:4rem!important}.xl\\:mt-8{margin-top:5rem!important}.xl\\:-mt-1{margin-top:-.25rem!important}.xl\\:-mt-2{margin-top:-.5rem!important}.xl\\:-mt-3{margin-top:-1rem!important}.xl\\:-mt-4{margin-top:-1.5rem!important}.xl\\:-mt-5{margin-top:-2rem!important}.xl\\:-mt-6{margin-top:-3rem!important}.xl\\:-mt-7{margin-top:-4rem!important}.xl\\:-mt-8{margin-top:-5rem!important}.xl\\:mt-auto{margin-top:auto!important}.xl\\:mr-0{margin-right:0rem!important}.xl\\:mr-1{margin-right:.25rem!important}.xl\\:mr-2{margin-right:.5rem!important}.xl\\:mr-3{margin-right:1rem!important}.xl\\:mr-4{margin-right:1.5rem!important}.xl\\:mr-5{margin-right:2rem!important}.xl\\:mr-6{margin-right:3rem!important}.xl\\:mr-7{margin-right:4rem!important}.xl\\:mr-8{margin-right:5rem!important}.xl\\:-mr-1{margin-right:-.25rem!important}.xl\\:-mr-2{margin-right:-.5rem!important}.xl\\:-mr-3{margin-right:-1rem!important}.xl\\:-mr-4{margin-right:-1.5rem!important}.xl\\:-mr-5{margin-right:-2rem!important}.xl\\:-mr-6{margin-right:-3rem!important}.xl\\:-mr-7{margin-right:-4rem!important}.xl\\:-mr-8{margin-right:-5rem!important}.xl\\:mr-auto{margin-right:auto!important}.xl\\:ml-0{margin-left:0rem!important}.xl\\:ml-1{margin-left:.25rem!important}.xl\\:ml-2{margin-left:.5rem!important}.xl\\:ml-3{margin-left:1rem!important}.xl\\:ml-4{margin-left:1.5rem!important}.xl\\:ml-5{margin-left:2rem!important}.xl\\:ml-6{margin-left:3rem!important}.xl\\:ml-7{margin-left:4rem!important}.xl\\:ml-8{margin-left:5rem!important}.xl\\:-ml-1{margin-left:-.25rem!important}.xl\\:-ml-2{margin-left:-.5rem!important}.xl\\:-ml-3{margin-left:-1rem!important}.xl\\:-ml-4{margin-left:-1.5rem!important}.xl\\:-ml-5{margin-left:-2rem!important}.xl\\:-ml-6{margin-left:-3rem!important}.xl\\:-ml-7{margin-left:-4rem!important}.xl\\:-ml-8{margin-left:-5rem!important}.xl\\:ml-auto{margin-left:auto!important}.xl\\:mb-0{margin-bottom:0rem!important}.xl\\:mb-1{margin-bottom:.25rem!important}.xl\\:mb-2{margin-bottom:.5rem!important}.xl\\:mb-3{margin-bottom:1rem!important}.xl\\:mb-4{margin-bottom:1.5rem!important}.xl\\:mb-5{margin-bottom:2rem!important}.xl\\:mb-6{margin-bottom:3rem!important}.xl\\:mb-7{margin-bottom:4rem!important}.xl\\:mb-8{margin-bottom:5rem!important}.xl\\:-mb-1{margin-bottom:-.25rem!important}.xl\\:-mb-2{margin-bottom:-.5rem!important}.xl\\:-mb-3{margin-bottom:-1rem!important}.xl\\:-mb-4{margin-bottom:-1.5rem!important}.xl\\:-mb-5{margin-bottom:-2rem!important}.xl\\:-mb-6{margin-bottom:-3rem!important}.xl\\:-mb-7{margin-bottom:-4rem!important}.xl\\:-mb-8{margin-bottom:-5rem!important}.xl\\:mb-auto{margin-bottom:auto!important}.xl\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.xl\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.xl\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.xl\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.xl\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.xl\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.xl\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.xl\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.xl\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.xl\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.xl\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.xl\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.xl\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.xl\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.xl\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.xl\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.xl\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.xl\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.xl\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.xl\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.xl\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.xl\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.xl\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.xl\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.xl\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.xl\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.xl\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.xl\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.xl\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.xl\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.xl\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.xl\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.xl\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.xl\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.xl\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.xl\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}.shadow-none{box-shadow:none!important}.shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.focus\\:shadow-none:focus{box-shadow:none!important}.hover\\:shadow-none:hover,.active\\:shadow-none:active{box-shadow:none!important}.focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.hover\\:shadow-1:hover,.active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.hover\\:shadow-2:hover,.active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.hover\\:shadow-3:hover,.active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.hover\\:shadow-4:hover,.active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.hover\\:shadow-5:hover,.active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.hover\\:shadow-6:hover,.active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.hover\\:shadow-7:hover,.active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.hover\\:shadow-8:hover,.active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}@media screen and (min-width: 576px){.sm\\:shadow-none{box-shadow:none!important}.sm\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:focus\\:shadow-none:focus{box-shadow:none!important}.sm\\:hover\\:shadow-none:hover,.sm\\:active\\:shadow-none:active{box-shadow:none!important}.sm\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:hover\\:shadow-1:hover,.sm\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:hover\\:shadow-2:hover,.sm\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:hover\\:shadow-3:hover,.sm\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:hover\\:shadow-4:hover,.sm\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:hover\\:shadow-5:hover,.sm\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:hover\\:shadow-6:hover,.sm\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:hover\\:shadow-7:hover,.sm\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:hover\\:shadow-8:hover,.sm\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 768px){.md\\:shadow-none{box-shadow:none!important}.md\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:focus\\:shadow-none:focus{box-shadow:none!important}.md\\:hover\\:shadow-none:hover,.md\\:active\\:shadow-none:active{box-shadow:none!important}.md\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:hover\\:shadow-1:hover,.md\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:hover\\:shadow-2:hover,.md\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:hover\\:shadow-3:hover,.md\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:hover\\:shadow-4:hover,.md\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:hover\\:shadow-5:hover,.md\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:hover\\:shadow-6:hover,.md\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:hover\\:shadow-7:hover,.md\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:hover\\:shadow-8:hover,.md\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 992px){.lg\\:shadow-none{box-shadow:none!important}.lg\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:focus\\:shadow-none:focus{box-shadow:none!important}.lg\\:hover\\:shadow-none:hover,.lg\\:active\\:shadow-none:active{box-shadow:none!important}.lg\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:hover\\:shadow-1:hover,.lg\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:hover\\:shadow-2:hover,.lg\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:hover\\:shadow-3:hover,.lg\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:hover\\:shadow-4:hover,.lg\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:hover\\:shadow-5:hover,.lg\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:hover\\:shadow-6:hover,.lg\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:hover\\:shadow-7:hover,.lg\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:hover\\:shadow-8:hover,.lg\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 1200px){.xl\\:shadow-none{box-shadow:none!important}.xl\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:focus\\:shadow-none:focus{box-shadow:none!important}.xl\\:hover\\:shadow-none:hover,.xl\\:active\\:shadow-none:active{box-shadow:none!important}.xl\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:hover\\:shadow-1:hover,.xl\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:hover\\:shadow-2:hover,.xl\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:hover\\:shadow-3:hover,.xl\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:hover\\:shadow-4:hover,.xl\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:hover\\:shadow-5:hover,.xl\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:hover\\:shadow-6:hover,.xl\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:hover\\:shadow-7:hover,.xl\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:hover\\:shadow-8:hover,.xl\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}.border-none{border-width:0px!important;border-style:none}.border-1{border-width:1px!important;border-style:solid}.border-2{border-width:2px!important;border-style:solid}.border-3{border-width:3px!important;border-style:solid}.border-top-none{border-top-width:0px!important;border-top-style:none}.border-top-1{border-top-width:1px!important;border-top-style:solid}.border-top-2{border-top-width:2px!important;border-top-style:solid}.border-top-3{border-top-width:3px!important;border-top-style:solid}.border-right-none{border-right-width:0px!important;border-right-style:none}.border-right-1{border-right-width:1px!important;border-right-style:solid}.border-right-2{border-right-width:2px!important;border-right-style:solid}.border-right-3{border-right-width:3px!important;border-right-style:solid}.border-left-none{border-left-width:0px!important;border-left-style:none}.border-left-1{border-left-width:1px!important;border-left-style:solid}.border-left-2{border-left-width:2px!important;border-left-style:solid}.border-left-3{border-left-width:3px!important;border-left-style:solid}.border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}@media screen and (min-width: 576px){.sm\\:border-none{border-width:0px!important;border-style:none}.sm\\:border-1{border-width:1px!important;border-style:solid}.sm\\:border-2{border-width:2px!important;border-style:solid}.sm\\:border-3{border-width:3px!important;border-style:solid}.sm\\:border-top-none{border-top-width:0px!important;border-top-style:none}.sm\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.sm\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.sm\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.sm\\:border-right-none{border-right-width:0px!important;border-right-style:none}.sm\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.sm\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.sm\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.sm\\:border-left-none{border-left-width:0px!important;border-left-style:none}.sm\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.sm\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.sm\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.sm\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.sm\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.sm\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.sm\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.sm\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.sm\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 768px){.md\\:border-none{border-width:0px!important;border-style:none}.md\\:border-1{border-width:1px!important;border-style:solid}.md\\:border-2{border-width:2px!important;border-style:solid}.md\\:border-3{border-width:3px!important;border-style:solid}.md\\:border-top-none{border-top-width:0px!important;border-top-style:none}.md\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.md\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.md\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.md\\:border-right-none{border-right-width:0px!important;border-right-style:none}.md\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.md\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.md\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.md\\:border-left-none{border-left-width:0px!important;border-left-style:none}.md\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.md\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.md\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.md\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.md\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.md\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.md\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.md\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.md\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 992px){.lg\\:border-none{border-width:0px!important;border-style:none}.lg\\:border-1{border-width:1px!important;border-style:solid}.lg\\:border-2{border-width:2px!important;border-style:solid}.lg\\:border-3{border-width:3px!important;border-style:solid}.lg\\:border-top-none{border-top-width:0px!important;border-top-style:none}.lg\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.lg\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.lg\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.lg\\:border-right-none{border-right-width:0px!important;border-right-style:none}.lg\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.lg\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.lg\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.lg\\:border-left-none{border-left-width:0px!important;border-left-style:none}.lg\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.lg\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.lg\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.lg\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.lg\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.lg\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.lg\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.lg\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.lg\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 1200px){.xl\\:border-none{border-width:0px!important;border-style:none}.xl\\:border-1{border-width:1px!important;border-style:solid}.xl\\:border-2{border-width:2px!important;border-style:solid}.xl\\:border-3{border-width:3px!important;border-style:solid}.xl\\:border-top-none{border-top-width:0px!important;border-top-style:none}.xl\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.xl\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.xl\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.xl\\:border-right-none{border-right-width:0px!important;border-right-style:none}.xl\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.xl\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.xl\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.xl\\:border-left-none{border-left-width:0px!important;border-left-style:none}.xl\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.xl\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.xl\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.xl\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.xl\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.xl\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.xl\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.xl\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.xl\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}.border-solid{border-style:solid!important}.border-dashed{border-style:dashed!important}.border-dotted{border-style:dotted!important}.border-double{border-style:double!important}@media screen and (min-width: 576px){.sm\\:border-solid{border-style:solid!important}.sm\\:border-dashed{border-style:dashed!important}.sm\\:border-dotted{border-style:dotted!important}.sm\\:border-double{border-style:double!important}}@media screen and (min-width: 768px){.md\\:border-solid{border-style:solid!important}.md\\:border-dashed{border-style:dashed!important}.md\\:border-dotted{border-style:dotted!important}.md\\:border-double{border-style:double!important}}@media screen and (min-width: 992px){.lg\\:border-solid{border-style:solid!important}.lg\\:border-dashed{border-style:dashed!important}.lg\\:border-dotted{border-style:dotted!important}.lg\\:border-double{border-style:double!important}}@media screen and (min-width: 1200px){.xl\\:border-solid{border-style:solid!important}.xl\\:border-dashed{border-style:dashed!important}.xl\\:border-dotted{border-style:dotted!important}.xl\\:border-double{border-style:double!important}}.border-noround{border-radius:0!important}.border-round{border-radius:var(--border-radius)!important}.border-round-xs{border-radius:.125rem!important}.border-round-sm{border-radius:.25rem!important}.border-round-md{border-radius:.375rem!important}.border-round-lg{border-radius:.5rem!important}.border-round-xl{border-radius:.75rem!important}.border-round-2xl{border-radius:1rem!important}.border-round-3xl{border-radius:1.5rem!important}.border-circle{border-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround{border-radius:0!important}.sm\\:border-round{border-radius:var(--border-radius)!important}.sm\\:border-round-xs{border-radius:.125rem!important}.sm\\:border-round-sm{border-radius:.25rem!important}.sm\\:border-round-md{border-radius:.375rem!important}.sm\\:border-round-lg{border-radius:.5rem!important}.sm\\:border-round-xl{border-radius:.75rem!important}.sm\\:border-round-2xl{border-radius:1rem!important}.sm\\:border-round-3xl{border-radius:1.5rem!important}.sm\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround{border-radius:0!important}.md\\:border-round{border-radius:var(--border-radius)!important}.md\\:border-round-xs{border-radius:.125rem!important}.md\\:border-round-sm{border-radius:.25rem!important}.md\\:border-round-md{border-radius:.375rem!important}.md\\:border-round-lg{border-radius:.5rem!important}.md\\:border-round-xl{border-radius:.75rem!important}.md\\:border-round-2xl{border-radius:1rem!important}.md\\:border-round-3xl{border-radius:1.5rem!important}.md\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround{border-radius:0!important}.lg\\:border-round{border-radius:var(--border-radius)!important}.lg\\:border-round-xs{border-radius:.125rem!important}.lg\\:border-round-sm{border-radius:.25rem!important}.lg\\:border-round-md{border-radius:.375rem!important}.lg\\:border-round-lg{border-radius:.5rem!important}.lg\\:border-round-xl{border-radius:.75rem!important}.lg\\:border-round-2xl{border-radius:1rem!important}.lg\\:border-round-3xl{border-radius:1.5rem!important}.lg\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround{border-radius:0!important}.xl\\:border-round{border-radius:var(--border-radius)!important}.xl\\:border-round-xs{border-radius:.125rem!important}.xl\\:border-round-sm{border-radius:.25rem!important}.xl\\:border-round-md{border-radius:.375rem!important}.xl\\:border-round-lg{border-radius:.5rem!important}.xl\\:border-round-xl{border-radius:.75rem!important}.xl\\:border-round-2xl{border-radius:1rem!important}.xl\\:border-round-3xl{border-radius:1.5rem!important}.xl\\:border-circle{border-radius:50%!important}}.border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.sm\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.sm\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.sm\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.sm\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.sm\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.sm\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.sm\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.sm\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.sm\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.sm\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.sm\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.sm\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.sm\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.sm\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.sm\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.sm\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.sm\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.sm\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.sm\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.sm\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.sm\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.md\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.md\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.md\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.md\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.md\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.md\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.md\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.md\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.md\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.md\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.md\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.md\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.md\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.md\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.md\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.md\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.md\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.md\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.md\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.md\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.md\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.lg\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.lg\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.lg\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.lg\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.lg\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.lg\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.lg\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.lg\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.lg\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.lg\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.lg\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.lg\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.lg\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.lg\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.lg\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.lg\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.lg\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.lg\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.lg\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.lg\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.lg\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.xl\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.xl\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.xl\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.xl\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.xl\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.xl\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.xl\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.xl\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.xl\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.xl\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.xl\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.xl\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.xl\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.xl\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.xl\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.xl\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.xl\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.xl\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.xl\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.xl\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.xl\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}.w-full{width:100%!important}.w-screen{width:100vw!important}.w-auto{width:auto!important}.w-1{width:8.3333%!important}.w-2{width:16.6667%!important}.w-3{width:25%!important}.w-4{width:33.3333%!important}.w-5{width:41.6667%!important}.w-6{width:50%!important}.w-7{width:58.3333%!important}.w-8{width:66.6667%!important}.w-9{width:75%!important}.w-10{width:83.3333%!important}.w-11{width:91.6667%!important}.w-12{width:100%!important}.w-min{width:min-content!important}.w-max{width:max-content!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-1rem{width:1rem!important}.w-2rem{width:2rem!important}.w-3rem{width:3rem!important}.w-4rem{width:4rem!important}.w-5rem{width:5rem!important}.w-6rem{width:6rem!important}.w-7rem{width:7rem!important}.w-8rem{width:8rem!important}.w-9rem{width:9rem!important}.w-10rem{width:10rem!important}.w-11rem{width:11rem!important}.w-12rem{width:12rem!important}.w-13rem{width:13rem!important}.w-14rem{width:14rem!important}.w-15rem{width:15rem!important}.w-16rem{width:16rem!important}.w-17rem{width:17rem!important}.w-18rem{width:18rem!important}.w-19rem{width:19rem!important}.w-20rem{width:20rem!important}.w-21rem{width:21rem!important}.w-22rem{width:22rem!important}.w-23rem{width:23rem!important}.w-24rem{width:24rem!important}.w-25rem{width:25rem!important}.w-26rem{width:26rem!important}.w-27rem{width:27rem!important}.w-28rem{width:28rem!important}.w-29rem{width:29rem!important}.w-30rem{width:30rem!important}@media screen and (min-width: 576px){.sm\\:w-full{width:100%!important}.sm\\:w-screen{width:100vw!important}.sm\\:w-auto{width:auto!important}.sm\\:w-1{width:8.3333%!important}.sm\\:w-2{width:16.6667%!important}.sm\\:w-3{width:25%!important}.sm\\:w-4{width:33.3333%!important}.sm\\:w-5{width:41.6667%!important}.sm\\:w-6{width:50%!important}.sm\\:w-7{width:58.3333%!important}.sm\\:w-8{width:66.6667%!important}.sm\\:w-9{width:75%!important}.sm\\:w-10{width:83.3333%!important}.sm\\:w-11{width:91.6667%!important}.sm\\:w-12{width:100%!important}.sm\\:w-min{width:min-content!important}.sm\\:w-max{width:max-content!important}.sm\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.sm\\:w-1rem{width:1rem!important}.sm\\:w-2rem{width:2rem!important}.sm\\:w-3rem{width:3rem!important}.sm\\:w-4rem{width:4rem!important}.sm\\:w-5rem{width:5rem!important}.sm\\:w-6rem{width:6rem!important}.sm\\:w-7rem{width:7rem!important}.sm\\:w-8rem{width:8rem!important}.sm\\:w-9rem{width:9rem!important}.sm\\:w-10rem{width:10rem!important}.sm\\:w-11rem{width:11rem!important}.sm\\:w-12rem{width:12rem!important}.sm\\:w-13rem{width:13rem!important}.sm\\:w-14rem{width:14rem!important}.sm\\:w-15rem{width:15rem!important}.sm\\:w-16rem{width:16rem!important}.sm\\:w-17rem{width:17rem!important}.sm\\:w-18rem{width:18rem!important}.sm\\:w-19rem{width:19rem!important}.sm\\:w-20rem{width:20rem!important}.sm\\:w-21rem{width:21rem!important}.sm\\:w-22rem{width:22rem!important}.sm\\:w-23rem{width:23rem!important}.sm\\:w-24rem{width:24rem!important}.sm\\:w-25rem{width:25rem!important}.sm\\:w-26rem{width:26rem!important}.sm\\:w-27rem{width:27rem!important}.sm\\:w-28rem{width:28rem!important}.sm\\:w-29rem{width:29rem!important}.sm\\:w-30rem{width:30rem!important}}@media screen and (min-width: 768px){.md\\:w-full{width:100%!important}.md\\:w-screen{width:100vw!important}.md\\:w-auto{width:auto!important}.md\\:w-1{width:8.3333%!important}.md\\:w-2{width:16.6667%!important}.md\\:w-3{width:25%!important}.md\\:w-4{width:33.3333%!important}.md\\:w-5{width:41.6667%!important}.md\\:w-6{width:50%!important}.md\\:w-7{width:58.3333%!important}.md\\:w-8{width:66.6667%!important}.md\\:w-9{width:75%!important}.md\\:w-10{width:83.3333%!important}.md\\:w-11{width:91.6667%!important}.md\\:w-12{width:100%!important}.md\\:w-min{width:min-content!important}.md\\:w-max{width:max-content!important}.md\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.md\\:w-1rem{width:1rem!important}.md\\:w-2rem{width:2rem!important}.md\\:w-3rem{width:3rem!important}.md\\:w-4rem{width:4rem!important}.md\\:w-5rem{width:5rem!important}.md\\:w-6rem{width:6rem!important}.md\\:w-7rem{width:7rem!important}.md\\:w-8rem{width:8rem!important}.md\\:w-9rem{width:9rem!important}.md\\:w-10rem{width:10rem!important}.md\\:w-11rem{width:11rem!important}.md\\:w-12rem{width:12rem!important}.md\\:w-13rem{width:13rem!important}.md\\:w-14rem{width:14rem!important}.md\\:w-15rem{width:15rem!important}.md\\:w-16rem{width:16rem!important}.md\\:w-17rem{width:17rem!important}.md\\:w-18rem{width:18rem!important}.md\\:w-19rem{width:19rem!important}.md\\:w-20rem{width:20rem!important}.md\\:w-21rem{width:21rem!important}.md\\:w-22rem{width:22rem!important}.md\\:w-23rem{width:23rem!important}.md\\:w-24rem{width:24rem!important}.md\\:w-25rem{width:25rem!important}.md\\:w-26rem{width:26rem!important}.md\\:w-27rem{width:27rem!important}.md\\:w-28rem{width:28rem!important}.md\\:w-29rem{width:29rem!important}.md\\:w-30rem{width:30rem!important}}@media screen and (min-width: 992px){.lg\\:w-full{width:100%!important}.lg\\:w-screen{width:100vw!important}.lg\\:w-auto{width:auto!important}.lg\\:w-1{width:8.3333%!important}.lg\\:w-2{width:16.6667%!important}.lg\\:w-3{width:25%!important}.lg\\:w-4{width:33.3333%!important}.lg\\:w-5{width:41.6667%!important}.lg\\:w-6{width:50%!important}.lg\\:w-7{width:58.3333%!important}.lg\\:w-8{width:66.6667%!important}.lg\\:w-9{width:75%!important}.lg\\:w-10{width:83.3333%!important}.lg\\:w-11{width:91.6667%!important}.lg\\:w-12{width:100%!important}.lg\\:w-min{width:min-content!important}.lg\\:w-max{width:max-content!important}.lg\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.lg\\:w-1rem{width:1rem!important}.lg\\:w-2rem{width:2rem!important}.lg\\:w-3rem{width:3rem!important}.lg\\:w-4rem{width:4rem!important}.lg\\:w-5rem{width:5rem!important}.lg\\:w-6rem{width:6rem!important}.lg\\:w-7rem{width:7rem!important}.lg\\:w-8rem{width:8rem!important}.lg\\:w-9rem{width:9rem!important}.lg\\:w-10rem{width:10rem!important}.lg\\:w-11rem{width:11rem!important}.lg\\:w-12rem{width:12rem!important}.lg\\:w-13rem{width:13rem!important}.lg\\:w-14rem{width:14rem!important}.lg\\:w-15rem{width:15rem!important}.lg\\:w-16rem{width:16rem!important}.lg\\:w-17rem{width:17rem!important}.lg\\:w-18rem{width:18rem!important}.lg\\:w-19rem{width:19rem!important}.lg\\:w-20rem{width:20rem!important}.lg\\:w-21rem{width:21rem!important}.lg\\:w-22rem{width:22rem!important}.lg\\:w-23rem{width:23rem!important}.lg\\:w-24rem{width:24rem!important}.lg\\:w-25rem{width:25rem!important}.lg\\:w-26rem{width:26rem!important}.lg\\:w-27rem{width:27rem!important}.lg\\:w-28rem{width:28rem!important}.lg\\:w-29rem{width:29rem!important}.lg\\:w-30rem{width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:w-full{width:100%!important}.xl\\:w-screen{width:100vw!important}.xl\\:w-auto{width:auto!important}.xl\\:w-1{width:8.3333%!important}.xl\\:w-2{width:16.6667%!important}.xl\\:w-3{width:25%!important}.xl\\:w-4{width:33.3333%!important}.xl\\:w-5{width:41.6667%!important}.xl\\:w-6{width:50%!important}.xl\\:w-7{width:58.3333%!important}.xl\\:w-8{width:66.6667%!important}.xl\\:w-9{width:75%!important}.xl\\:w-10{width:83.3333%!important}.xl\\:w-11{width:91.6667%!important}.xl\\:w-12{width:100%!important}.xl\\:w-min{width:min-content!important}.xl\\:w-max{width:max-content!important}.xl\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.xl\\:w-1rem{width:1rem!important}.xl\\:w-2rem{width:2rem!important}.xl\\:w-3rem{width:3rem!important}.xl\\:w-4rem{width:4rem!important}.xl\\:w-5rem{width:5rem!important}.xl\\:w-6rem{width:6rem!important}.xl\\:w-7rem{width:7rem!important}.xl\\:w-8rem{width:8rem!important}.xl\\:w-9rem{width:9rem!important}.xl\\:w-10rem{width:10rem!important}.xl\\:w-11rem{width:11rem!important}.xl\\:w-12rem{width:12rem!important}.xl\\:w-13rem{width:13rem!important}.xl\\:w-14rem{width:14rem!important}.xl\\:w-15rem{width:15rem!important}.xl\\:w-16rem{width:16rem!important}.xl\\:w-17rem{width:17rem!important}.xl\\:w-18rem{width:18rem!important}.xl\\:w-19rem{width:19rem!important}.xl\\:w-20rem{width:20rem!important}.xl\\:w-21rem{width:21rem!important}.xl\\:w-22rem{width:22rem!important}.xl\\:w-23rem{width:23rem!important}.xl\\:w-24rem{width:24rem!important}.xl\\:w-25rem{width:25rem!important}.xl\\:w-26rem{width:26rem!important}.xl\\:w-27rem{width:27rem!important}.xl\\:w-28rem{width:28rem!important}.xl\\:w-29rem{width:29rem!important}.xl\\:w-30rem{width:30rem!important}}.h-full{height:100%!important}.h-screen{height:100vh!important}.h-auto{height:auto!important}.h-min{height:min-content!important}.h-max{height:max-content!important}.h-fit{height:-moz-fit-content!important;height:fit-content!important}.h-1rem{height:1rem!important}.h-2rem{height:2rem!important}.h-3rem{height:3rem!important}.h-4rem{height:4rem!important}.h-5rem{height:5rem!important}.h-6rem{height:6rem!important}.h-7rem{height:7rem!important}.h-8rem{height:8rem!important}.h-9rem{height:9rem!important}.h-10rem{height:10rem!important}.h-11rem{height:11rem!important}.h-12rem{height:12rem!important}.h-13rem{height:13rem!important}.h-14rem{height:14rem!important}.h-15rem{height:15rem!important}.h-16rem{height:16rem!important}.h-17rem{height:17rem!important}.h-18rem{height:18rem!important}.h-19rem{height:19rem!important}.h-20rem{height:20rem!important}.h-21rem{height:21rem!important}.h-22rem{height:22rem!important}.h-23rem{height:23rem!important}.h-24rem{height:24rem!important}.h-25rem{height:25rem!important}.h-26rem{height:26rem!important}.h-27rem{height:27rem!important}.h-28rem{height:28rem!important}.h-29rem{height:29rem!important}.h-30rem{height:30rem!important}@media screen and (min-width: 576px){.sm\\:h-full{height:100%!important}.sm\\:h-screen{height:100vh!important}.sm\\:h-auto{height:auto!important}.sm\\:h-min{height:min-content!important}.sm\\:h-max{height:max-content!important}.sm\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.sm\\:h-1rem{height:1rem!important}.sm\\:h-2rem{height:2rem!important}.sm\\:h-3rem{height:3rem!important}.sm\\:h-4rem{height:4rem!important}.sm\\:h-5rem{height:5rem!important}.sm\\:h-6rem{height:6rem!important}.sm\\:h-7rem{height:7rem!important}.sm\\:h-8rem{height:8rem!important}.sm\\:h-9rem{height:9rem!important}.sm\\:h-10rem{height:10rem!important}.sm\\:h-11rem{height:11rem!important}.sm\\:h-12rem{height:12rem!important}.sm\\:h-13rem{height:13rem!important}.sm\\:h-14rem{height:14rem!important}.sm\\:h-15rem{height:15rem!important}.sm\\:h-16rem{height:16rem!important}.sm\\:h-17rem{height:17rem!important}.sm\\:h-18rem{height:18rem!important}.sm\\:h-19rem{height:19rem!important}.sm\\:h-20rem{height:20rem!important}.sm\\:h-21rem{height:21rem!important}.sm\\:h-22rem{height:22rem!important}.sm\\:h-23rem{height:23rem!important}.sm\\:h-24rem{height:24rem!important}.sm\\:h-25rem{height:25rem!important}.sm\\:h-26rem{height:26rem!important}.sm\\:h-27rem{height:27rem!important}.sm\\:h-28rem{height:28rem!important}.sm\\:h-29rem{height:29rem!important}.sm\\:h-30rem{height:30rem!important}}@media screen and (min-width: 768px){.md\\:h-full{height:100%!important}.md\\:h-screen{height:100vh!important}.md\\:h-auto{height:auto!important}.md\\:h-min{height:min-content!important}.md\\:h-max{height:max-content!important}.md\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.md\\:h-1rem{height:1rem!important}.md\\:h-2rem{height:2rem!important}.md\\:h-3rem{height:3rem!important}.md\\:h-4rem{height:4rem!important}.md\\:h-5rem{height:5rem!important}.md\\:h-6rem{height:6rem!important}.md\\:h-7rem{height:7rem!important}.md\\:h-8rem{height:8rem!important}.md\\:h-9rem{height:9rem!important}.md\\:h-10rem{height:10rem!important}.md\\:h-11rem{height:11rem!important}.md\\:h-12rem{height:12rem!important}.md\\:h-13rem{height:13rem!important}.md\\:h-14rem{height:14rem!important}.md\\:h-15rem{height:15rem!important}.md\\:h-16rem{height:16rem!important}.md\\:h-17rem{height:17rem!important}.md\\:h-18rem{height:18rem!important}.md\\:h-19rem{height:19rem!important}.md\\:h-20rem{height:20rem!important}.md\\:h-21rem{height:21rem!important}.md\\:h-22rem{height:22rem!important}.md\\:h-23rem{height:23rem!important}.md\\:h-24rem{height:24rem!important}.md\\:h-25rem{height:25rem!important}.md\\:h-26rem{height:26rem!important}.md\\:h-27rem{height:27rem!important}.md\\:h-28rem{height:28rem!important}.md\\:h-29rem{height:29rem!important}.md\\:h-30rem{height:30rem!important}}@media screen and (min-width: 992px){.lg\\:h-full{height:100%!important}.lg\\:h-screen{height:100vh!important}.lg\\:h-auto{height:auto!important}.lg\\:h-min{height:min-content!important}.lg\\:h-max{height:max-content!important}.lg\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.lg\\:h-1rem{height:1rem!important}.lg\\:h-2rem{height:2rem!important}.lg\\:h-3rem{height:3rem!important}.lg\\:h-4rem{height:4rem!important}.lg\\:h-5rem{height:5rem!important}.lg\\:h-6rem{height:6rem!important}.lg\\:h-7rem{height:7rem!important}.lg\\:h-8rem{height:8rem!important}.lg\\:h-9rem{height:9rem!important}.lg\\:h-10rem{height:10rem!important}.lg\\:h-11rem{height:11rem!important}.lg\\:h-12rem{height:12rem!important}.lg\\:h-13rem{height:13rem!important}.lg\\:h-14rem{height:14rem!important}.lg\\:h-15rem{height:15rem!important}.lg\\:h-16rem{height:16rem!important}.lg\\:h-17rem{height:17rem!important}.lg\\:h-18rem{height:18rem!important}.lg\\:h-19rem{height:19rem!important}.lg\\:h-20rem{height:20rem!important}.lg\\:h-21rem{height:21rem!important}.lg\\:h-22rem{height:22rem!important}.lg\\:h-23rem{height:23rem!important}.lg\\:h-24rem{height:24rem!important}.lg\\:h-25rem{height:25rem!important}.lg\\:h-26rem{height:26rem!important}.lg\\:h-27rem{height:27rem!important}.lg\\:h-28rem{height:28rem!important}.lg\\:h-29rem{height:29rem!important}.lg\\:h-30rem{height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:h-full{height:100%!important}.xl\\:h-screen{height:100vh!important}.xl\\:h-auto{height:auto!important}.xl\\:h-min{height:min-content!important}.xl\\:h-max{height:max-content!important}.xl\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.xl\\:h-1rem{height:1rem!important}.xl\\:h-2rem{height:2rem!important}.xl\\:h-3rem{height:3rem!important}.xl\\:h-4rem{height:4rem!important}.xl\\:h-5rem{height:5rem!important}.xl\\:h-6rem{height:6rem!important}.xl\\:h-7rem{height:7rem!important}.xl\\:h-8rem{height:8rem!important}.xl\\:h-9rem{height:9rem!important}.xl\\:h-10rem{height:10rem!important}.xl\\:h-11rem{height:11rem!important}.xl\\:h-12rem{height:12rem!important}.xl\\:h-13rem{height:13rem!important}.xl\\:h-14rem{height:14rem!important}.xl\\:h-15rem{height:15rem!important}.xl\\:h-16rem{height:16rem!important}.xl\\:h-17rem{height:17rem!important}.xl\\:h-18rem{height:18rem!important}.xl\\:h-19rem{height:19rem!important}.xl\\:h-20rem{height:20rem!important}.xl\\:h-21rem{height:21rem!important}.xl\\:h-22rem{height:22rem!important}.xl\\:h-23rem{height:23rem!important}.xl\\:h-24rem{height:24rem!important}.xl\\:h-25rem{height:25rem!important}.xl\\:h-26rem{height:26rem!important}.xl\\:h-27rem{height:27rem!important}.xl\\:h-28rem{height:28rem!important}.xl\\:h-29rem{height:29rem!important}.xl\\:h-30rem{height:30rem!important}}.min-w-0{min-width:0px!important}.min-w-full{min-width:100%!important}.min-w-screen{min-width:100vw!important}.min-w-min{min-width:min-content!important}.min-w-max{min-width:max-content!important}@media screen and (min-width: 576px){.sm\\:min-w-0{min-width:0px!important}.sm\\:min-w-full{min-width:100%!important}.sm\\:min-w-screen{min-width:100vw!important}.sm\\:min-w-min{min-width:min-content!important}.sm\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 768px){.md\\:min-w-0{min-width:0px!important}.md\\:min-w-full{min-width:100%!important}.md\\:min-w-screen{min-width:100vw!important}.md\\:min-w-min{min-width:min-content!important}.md\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 992px){.lg\\:min-w-0{min-width:0px!important}.lg\\:min-w-full{min-width:100%!important}.lg\\:min-w-screen{min-width:100vw!important}.lg\\:min-w-min{min-width:min-content!important}.lg\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 1200px){.xl\\:min-w-0{min-width:0px!important}.xl\\:min-w-full{min-width:100%!important}.xl\\:min-w-screen{min-width:100vw!important}.xl\\:min-w-min{min-width:min-content!important}.xl\\:min-w-max{min-width:max-content!important}}.max-w-0{max-width:0px!important}.max-w-full{max-width:100%!important}.max-w-screen{max-width:100vw!important}.max-w-min{max-width:min-content!important}.max-w-max{max-width:max-content!important}.max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.max-w-1rem{max-width:1rem!important}.max-w-2rem{max-width:2rem!important}.max-w-3rem{max-width:3rem!important}.max-w-4rem{max-width:4rem!important}.max-w-5rem{max-width:5rem!important}.max-w-6rem{max-width:6rem!important}.max-w-7rem{max-width:7rem!important}.max-w-8rem{max-width:8rem!important}.max-w-9rem{max-width:9rem!important}.max-w-10rem{max-width:10rem!important}.max-w-11rem{max-width:11rem!important}.max-w-12rem{max-width:12rem!important}.max-w-13rem{max-width:13rem!important}.max-w-14rem{max-width:14rem!important}.max-w-15rem{max-width:15rem!important}.max-w-16rem{max-width:16rem!important}.max-w-17rem{max-width:17rem!important}.max-w-18rem{max-width:18rem!important}.max-w-19rem{max-width:19rem!important}.max-w-20rem{max-width:20rem!important}.max-w-21rem{max-width:21rem!important}.max-w-22rem{max-width:22rem!important}.max-w-23rem{max-width:23rem!important}.max-w-24rem{max-width:24rem!important}.max-w-25rem{max-width:25rem!important}.max-w-26rem{max-width:26rem!important}.max-w-27rem{max-width:27rem!important}.max-w-28rem{max-width:28rem!important}.max-w-29rem{max-width:29rem!important}.max-w-30rem{max-width:30rem!important}@media screen and (min-width: 576px){.sm\\:max-w-0{max-width:0px!important}.sm\\:max-w-full{max-width:100%!important}.sm\\:max-w-screen{max-width:100vw!important}.sm\\:max-w-min{max-width:min-content!important}.sm\\:max-w-max{max-width:max-content!important}.sm\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.sm\\:max-w-1rem{max-width:1rem!important}.sm\\:max-w-2rem{max-width:2rem!important}.sm\\:max-w-3rem{max-width:3rem!important}.sm\\:max-w-4rem{max-width:4rem!important}.sm\\:max-w-5rem{max-width:5rem!important}.sm\\:max-w-6rem{max-width:6rem!important}.sm\\:max-w-7rem{max-width:7rem!important}.sm\\:max-w-8rem{max-width:8rem!important}.sm\\:max-w-9rem{max-width:9rem!important}.sm\\:max-w-10rem{max-width:10rem!important}.sm\\:max-w-11rem{max-width:11rem!important}.sm\\:max-w-12rem{max-width:12rem!important}.sm\\:max-w-13rem{max-width:13rem!important}.sm\\:max-w-14rem{max-width:14rem!important}.sm\\:max-w-15rem{max-width:15rem!important}.sm\\:max-w-16rem{max-width:16rem!important}.sm\\:max-w-17rem{max-width:17rem!important}.sm\\:max-w-18rem{max-width:18rem!important}.sm\\:max-w-19rem{max-width:19rem!important}.sm\\:max-w-20rem{max-width:20rem!important}.sm\\:max-w-21rem{max-width:21rem!important}.sm\\:max-w-22rem{max-width:22rem!important}.sm\\:max-w-23rem{max-width:23rem!important}.sm\\:max-w-24rem{max-width:24rem!important}.sm\\:max-w-25rem{max-width:25rem!important}.sm\\:max-w-26rem{max-width:26rem!important}.sm\\:max-w-27rem{max-width:27rem!important}.sm\\:max-w-28rem{max-width:28rem!important}.sm\\:max-w-29rem{max-width:29rem!important}.sm\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 768px){.md\\:max-w-0{max-width:0px!important}.md\\:max-w-full{max-width:100%!important}.md\\:max-w-screen{max-width:100vw!important}.md\\:max-w-min{max-width:min-content!important}.md\\:max-w-max{max-width:max-content!important}.md\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.md\\:max-w-1rem{max-width:1rem!important}.md\\:max-w-2rem{max-width:2rem!important}.md\\:max-w-3rem{max-width:3rem!important}.md\\:max-w-4rem{max-width:4rem!important}.md\\:max-w-5rem{max-width:5rem!important}.md\\:max-w-6rem{max-width:6rem!important}.md\\:max-w-7rem{max-width:7rem!important}.md\\:max-w-8rem{max-width:8rem!important}.md\\:max-w-9rem{max-width:9rem!important}.md\\:max-w-10rem{max-width:10rem!important}.md\\:max-w-11rem{max-width:11rem!important}.md\\:max-w-12rem{max-width:12rem!important}.md\\:max-w-13rem{max-width:13rem!important}.md\\:max-w-14rem{max-width:14rem!important}.md\\:max-w-15rem{max-width:15rem!important}.md\\:max-w-16rem{max-width:16rem!important}.md\\:max-w-17rem{max-width:17rem!important}.md\\:max-w-18rem{max-width:18rem!important}.md\\:max-w-19rem{max-width:19rem!important}.md\\:max-w-20rem{max-width:20rem!important}.md\\:max-w-21rem{max-width:21rem!important}.md\\:max-w-22rem{max-width:22rem!important}.md\\:max-w-23rem{max-width:23rem!important}.md\\:max-w-24rem{max-width:24rem!important}.md\\:max-w-25rem{max-width:25rem!important}.md\\:max-w-26rem{max-width:26rem!important}.md\\:max-w-27rem{max-width:27rem!important}.md\\:max-w-28rem{max-width:28rem!important}.md\\:max-w-29rem{max-width:29rem!important}.md\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-w-0{max-width:0px!important}.lg\\:max-w-full{max-width:100%!important}.lg\\:max-w-screen{max-width:100vw!important}.lg\\:max-w-min{max-width:min-content!important}.lg\\:max-w-max{max-width:max-content!important}.lg\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.lg\\:max-w-1rem{max-width:1rem!important}.lg\\:max-w-2rem{max-width:2rem!important}.lg\\:max-w-3rem{max-width:3rem!important}.lg\\:max-w-4rem{max-width:4rem!important}.lg\\:max-w-5rem{max-width:5rem!important}.lg\\:max-w-6rem{max-width:6rem!important}.lg\\:max-w-7rem{max-width:7rem!important}.lg\\:max-w-8rem{max-width:8rem!important}.lg\\:max-w-9rem{max-width:9rem!important}.lg\\:max-w-10rem{max-width:10rem!important}.lg\\:max-w-11rem{max-width:11rem!important}.lg\\:max-w-12rem{max-width:12rem!important}.lg\\:max-w-13rem{max-width:13rem!important}.lg\\:max-w-14rem{max-width:14rem!important}.lg\\:max-w-15rem{max-width:15rem!important}.lg\\:max-w-16rem{max-width:16rem!important}.lg\\:max-w-17rem{max-width:17rem!important}.lg\\:max-w-18rem{max-width:18rem!important}.lg\\:max-w-19rem{max-width:19rem!important}.lg\\:max-w-20rem{max-width:20rem!important}.lg\\:max-w-21rem{max-width:21rem!important}.lg\\:max-w-22rem{max-width:22rem!important}.lg\\:max-w-23rem{max-width:23rem!important}.lg\\:max-w-24rem{max-width:24rem!important}.lg\\:max-w-25rem{max-width:25rem!important}.lg\\:max-w-26rem{max-width:26rem!important}.lg\\:max-w-27rem{max-width:27rem!important}.lg\\:max-w-28rem{max-width:28rem!important}.lg\\:max-w-29rem{max-width:29rem!important}.lg\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-w-0{max-width:0px!important}.xl\\:max-w-full{max-width:100%!important}.xl\\:max-w-screen{max-width:100vw!important}.xl\\:max-w-min{max-width:min-content!important}.xl\\:max-w-max{max-width:max-content!important}.xl\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.xl\\:max-w-1rem{max-width:1rem!important}.xl\\:max-w-2rem{max-width:2rem!important}.xl\\:max-w-3rem{max-width:3rem!important}.xl\\:max-w-4rem{max-width:4rem!important}.xl\\:max-w-5rem{max-width:5rem!important}.xl\\:max-w-6rem{max-width:6rem!important}.xl\\:max-w-7rem{max-width:7rem!important}.xl\\:max-w-8rem{max-width:8rem!important}.xl\\:max-w-9rem{max-width:9rem!important}.xl\\:max-w-10rem{max-width:10rem!important}.xl\\:max-w-11rem{max-width:11rem!important}.xl\\:max-w-12rem{max-width:12rem!important}.xl\\:max-w-13rem{max-width:13rem!important}.xl\\:max-w-14rem{max-width:14rem!important}.xl\\:max-w-15rem{max-width:15rem!important}.xl\\:max-w-16rem{max-width:16rem!important}.xl\\:max-w-17rem{max-width:17rem!important}.xl\\:max-w-18rem{max-width:18rem!important}.xl\\:max-w-19rem{max-width:19rem!important}.xl\\:max-w-20rem{max-width:20rem!important}.xl\\:max-w-21rem{max-width:21rem!important}.xl\\:max-w-22rem{max-width:22rem!important}.xl\\:max-w-23rem{max-width:23rem!important}.xl\\:max-w-24rem{max-width:24rem!important}.xl\\:max-w-25rem{max-width:25rem!important}.xl\\:max-w-26rem{max-width:26rem!important}.xl\\:max-w-27rem{max-width:27rem!important}.xl\\:max-w-28rem{max-width:28rem!important}.xl\\:max-w-29rem{max-width:29rem!important}.xl\\:max-w-30rem{max-width:30rem!important}}.min-h-0{min-height:0px!important}.min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh!important}@media screen and (min-width: 576px){.sm\\:min-h-0{min-height:0px!important}.sm\\:min-h-full{min-height:100%!important}.sm\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 768px){.md\\:min-h-0{min-height:0px!important}.md\\:min-h-full{min-height:100%!important}.md\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 992px){.lg\\:min-h-0{min-height:0px!important}.lg\\:min-h-full{min-height:100%!important}.lg\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 1200px){.xl\\:min-h-0{min-height:0px!important}.xl\\:min-h-full{min-height:100%!important}.xl\\:min-h-screen{min-height:100vh!important}}.max-h-0{max-height:0px!important}.max-h-full{max-height:100%!important}.max-h-screen{max-height:100vh!important}.max-h-min{max-height:min-content!important}.max-h-max{max-height:max-content!important}.max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.max-h-1rem{max-height:1rem!important}.max-h-2rem{max-height:2rem!important}.max-h-3rem{max-height:3rem!important}.max-h-4rem{max-height:4rem!important}.max-h-5rem{max-height:5rem!important}.max-h-6rem{max-height:6rem!important}.max-h-7rem{max-height:7rem!important}.max-h-8rem{max-height:8rem!important}.max-h-9rem{max-height:9rem!important}.max-h-10rem{max-height:10rem!important}.max-h-11rem{max-height:11rem!important}.max-h-12rem{max-height:12rem!important}.max-h-13rem{max-height:13rem!important}.max-h-14rem{max-height:14rem!important}.max-h-15rem{max-height:15rem!important}.max-h-16rem{max-height:16rem!important}.max-h-17rem{max-height:17rem!important}.max-h-18rem{max-height:18rem!important}.max-h-19rem{max-height:19rem!important}.max-h-20rem{max-height:20rem!important}.max-h-21rem{max-height:21rem!important}.max-h-22rem{max-height:22rem!important}.max-h-23rem{max-height:23rem!important}.max-h-24rem{max-height:24rem!important}.max-h-25rem{max-height:25rem!important}.max-h-26rem{max-height:26rem!important}.max-h-27rem{max-height:27rem!important}.max-h-28rem{max-height:28rem!important}.max-h-29rem{max-height:29rem!important}.max-h-30rem{max-height:30rem!important}@media screen and (min-width: 576px){.sm\\:max-h-0{max-height:0px!important}.sm\\:max-h-full{max-height:100%!important}.sm\\:max-h-screen{max-height:100vh!important}.sm\\:max-h-min{max-height:min-content!important}.sm\\:max-h-max{max-height:max-content!important}.sm\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.sm\\:max-h-1rem{max-height:1rem!important}.sm\\:max-h-2rem{max-height:2rem!important}.sm\\:max-h-3rem{max-height:3rem!important}.sm\\:max-h-4rem{max-height:4rem!important}.sm\\:max-h-5rem{max-height:5rem!important}.sm\\:max-h-6rem{max-height:6rem!important}.sm\\:max-h-7rem{max-height:7rem!important}.sm\\:max-h-8rem{max-height:8rem!important}.sm\\:max-h-9rem{max-height:9rem!important}.sm\\:max-h-10rem{max-height:10rem!important}.sm\\:max-h-11rem{max-height:11rem!important}.sm\\:max-h-12rem{max-height:12rem!important}.sm\\:max-h-13rem{max-height:13rem!important}.sm\\:max-h-14rem{max-height:14rem!important}.sm\\:max-h-15rem{max-height:15rem!important}.sm\\:max-h-16rem{max-height:16rem!important}.sm\\:max-h-17rem{max-height:17rem!important}.sm\\:max-h-18rem{max-height:18rem!important}.sm\\:max-h-19rem{max-height:19rem!important}.sm\\:max-h-20rem{max-height:20rem!important}.sm\\:max-h-21rem{max-height:21rem!important}.sm\\:max-h-22rem{max-height:22rem!important}.sm\\:max-h-23rem{max-height:23rem!important}.sm\\:max-h-24rem{max-height:24rem!important}.sm\\:max-h-25rem{max-height:25rem!important}.sm\\:max-h-26rem{max-height:26rem!important}.sm\\:max-h-27rem{max-height:27rem!important}.sm\\:max-h-28rem{max-height:28rem!important}.sm\\:max-h-29rem{max-height:29rem!important}.sm\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 768px){.md\\:max-h-0{max-height:0px!important}.md\\:max-h-full{max-height:100%!important}.md\\:max-h-screen{max-height:100vh!important}.md\\:max-h-min{max-height:min-content!important}.md\\:max-h-max{max-height:max-content!important}.md\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.md\\:max-h-1rem{max-height:1rem!important}.md\\:max-h-2rem{max-height:2rem!important}.md\\:max-h-3rem{max-height:3rem!important}.md\\:max-h-4rem{max-height:4rem!important}.md\\:max-h-5rem{max-height:5rem!important}.md\\:max-h-6rem{max-height:6rem!important}.md\\:max-h-7rem{max-height:7rem!important}.md\\:max-h-8rem{max-height:8rem!important}.md\\:max-h-9rem{max-height:9rem!important}.md\\:max-h-10rem{max-height:10rem!important}.md\\:max-h-11rem{max-height:11rem!important}.md\\:max-h-12rem{max-height:12rem!important}.md\\:max-h-13rem{max-height:13rem!important}.md\\:max-h-14rem{max-height:14rem!important}.md\\:max-h-15rem{max-height:15rem!important}.md\\:max-h-16rem{max-height:16rem!important}.md\\:max-h-17rem{max-height:17rem!important}.md\\:max-h-18rem{max-height:18rem!important}.md\\:max-h-19rem{max-height:19rem!important}.md\\:max-h-20rem{max-height:20rem!important}.md\\:max-h-21rem{max-height:21rem!important}.md\\:max-h-22rem{max-height:22rem!important}.md\\:max-h-23rem{max-height:23rem!important}.md\\:max-h-24rem{max-height:24rem!important}.md\\:max-h-25rem{max-height:25rem!important}.md\\:max-h-26rem{max-height:26rem!important}.md\\:max-h-27rem{max-height:27rem!important}.md\\:max-h-28rem{max-height:28rem!important}.md\\:max-h-29rem{max-height:29rem!important}.md\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-h-0{max-height:0px!important}.lg\\:max-h-full{max-height:100%!important}.lg\\:max-h-screen{max-height:100vh!important}.lg\\:max-h-min{max-height:min-content!important}.lg\\:max-h-max{max-height:max-content!important}.lg\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.lg\\:max-h-1rem{max-height:1rem!important}.lg\\:max-h-2rem{max-height:2rem!important}.lg\\:max-h-3rem{max-height:3rem!important}.lg\\:max-h-4rem{max-height:4rem!important}.lg\\:max-h-5rem{max-height:5rem!important}.lg\\:max-h-6rem{max-height:6rem!important}.lg\\:max-h-7rem{max-height:7rem!important}.lg\\:max-h-8rem{max-height:8rem!important}.lg\\:max-h-9rem{max-height:9rem!important}.lg\\:max-h-10rem{max-height:10rem!important}.lg\\:max-h-11rem{max-height:11rem!important}.lg\\:max-h-12rem{max-height:12rem!important}.lg\\:max-h-13rem{max-height:13rem!important}.lg\\:max-h-14rem{max-height:14rem!important}.lg\\:max-h-15rem{max-height:15rem!important}.lg\\:max-h-16rem{max-height:16rem!important}.lg\\:max-h-17rem{max-height:17rem!important}.lg\\:max-h-18rem{max-height:18rem!important}.lg\\:max-h-19rem{max-height:19rem!important}.lg\\:max-h-20rem{max-height:20rem!important}.lg\\:max-h-21rem{max-height:21rem!important}.lg\\:max-h-22rem{max-height:22rem!important}.lg\\:max-h-23rem{max-height:23rem!important}.lg\\:max-h-24rem{max-height:24rem!important}.lg\\:max-h-25rem{max-height:25rem!important}.lg\\:max-h-26rem{max-height:26rem!important}.lg\\:max-h-27rem{max-height:27rem!important}.lg\\:max-h-28rem{max-height:28rem!important}.lg\\:max-h-29rem{max-height:29rem!important}.lg\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-h-0{max-height:0px!important}.xl\\:max-h-full{max-height:100%!important}.xl\\:max-h-screen{max-height:100vh!important}.xl\\:max-h-min{max-height:min-content!important}.xl\\:max-h-max{max-height:max-content!important}.xl\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.xl\\:max-h-1rem{max-height:1rem!important}.xl\\:max-h-2rem{max-height:2rem!important}.xl\\:max-h-3rem{max-height:3rem!important}.xl\\:max-h-4rem{max-height:4rem!important}.xl\\:max-h-5rem{max-height:5rem!important}.xl\\:max-h-6rem{max-height:6rem!important}.xl\\:max-h-7rem{max-height:7rem!important}.xl\\:max-h-8rem{max-height:8rem!important}.xl\\:max-h-9rem{max-height:9rem!important}.xl\\:max-h-10rem{max-height:10rem!important}.xl\\:max-h-11rem{max-height:11rem!important}.xl\\:max-h-12rem{max-height:12rem!important}.xl\\:max-h-13rem{max-height:13rem!important}.xl\\:max-h-14rem{max-height:14rem!important}.xl\\:max-h-15rem{max-height:15rem!important}.xl\\:max-h-16rem{max-height:16rem!important}.xl\\:max-h-17rem{max-height:17rem!important}.xl\\:max-h-18rem{max-height:18rem!important}.xl\\:max-h-19rem{max-height:19rem!important}.xl\\:max-h-20rem{max-height:20rem!important}.xl\\:max-h-21rem{max-height:21rem!important}.xl\\:max-h-22rem{max-height:22rem!important}.xl\\:max-h-23rem{max-height:23rem!important}.xl\\:max-h-24rem{max-height:24rem!important}.xl\\:max-h-25rem{max-height:25rem!important}.xl\\:max-h-26rem{max-height:26rem!important}.xl\\:max-h-27rem{max-height:27rem!important}.xl\\:max-h-28rem{max-height:28rem!important}.xl\\:max-h-29rem{max-height:29rem!important}.xl\\:max-h-30rem{max-height:30rem!important}}.static{position:static!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:sticky!important}@media screen and (min-width: 576px){.sm\\:static{position:static!important}.sm\\:fixed{position:fixed!important}.sm\\:absolute{position:absolute!important}.sm\\:relative{position:relative!important}.sm\\:sticky{position:sticky!important}}@media screen and (min-width: 768px){.md\\:static{position:static!important}.md\\:fixed{position:fixed!important}.md\\:absolute{position:absolute!important}.md\\:relative{position:relative!important}.md\\:sticky{position:sticky!important}}@media screen and (min-width: 992px){.lg\\:static{position:static!important}.lg\\:fixed{position:fixed!important}.lg\\:absolute{position:absolute!important}.lg\\:relative{position:relative!important}.lg\\:sticky{position:sticky!important}}@media screen and (min-width: 1200px){.xl\\:static{position:static!important}.xl\\:fixed{position:fixed!important}.xl\\:absolute{position:absolute!important}.xl\\:relative{position:relative!important}.xl\\:sticky{position:sticky!important}}.top-auto{top:auto!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}@media screen and (min-width: 576px){.sm\\:top-auto{top:auto!important}.sm\\:top-0{top:0!important}.sm\\:top-50{top:50%!important}.sm\\:top-100{top:100%!important}}@media screen and (min-width: 768px){.md\\:top-auto{top:auto!important}.md\\:top-0{top:0!important}.md\\:top-50{top:50%!important}.md\\:top-100{top:100%!important}}@media screen and (min-width: 992px){.lg\\:top-auto{top:auto!important}.lg\\:top-0{top:0!important}.lg\\:top-50{top:50%!important}.lg\\:top-100{top:100%!important}}@media screen and (min-width: 1200px){.xl\\:top-auto{top:auto!important}.xl\\:top-0{top:0!important}.xl\\:top-50{top:50%!important}.xl\\:top-100{top:100%!important}}.left-auto{left:auto!important}.left-0{left:0!important}.left-50{left:50%!important}.left-100{left:100%!important}@media screen and (min-width: 576px){.sm\\:left-auto{left:auto!important}.sm\\:left-0{left:0!important}.sm\\:left-50{left:50%!important}.sm\\:left-100{left:100%!important}}@media screen and (min-width: 768px){.md\\:left-auto{left:auto!important}.md\\:left-0{left:0!important}.md\\:left-50{left:50%!important}.md\\:left-100{left:100%!important}}@media screen and (min-width: 992px){.lg\\:left-auto{left:auto!important}.lg\\:left-0{left:0!important}.lg\\:left-50{left:50%!important}.lg\\:left-100{left:100%!important}}@media screen and (min-width: 1200px){.xl\\:left-auto{left:auto!important}.xl\\:left-0{left:0!important}.xl\\:left-50{left:50%!important}.xl\\:left-100{left:100%!important}}.right-auto{right:auto!important}.right-0{right:0!important}.right-50{right:50%!important}.right-100{right:100%!important}@media screen and (min-width: 576px){.sm\\:right-auto{right:auto!important}.sm\\:right-0{right:0!important}.sm\\:right-50{right:50%!important}.sm\\:right-100{right:100%!important}}@media screen and (min-width: 768px){.md\\:right-auto{right:auto!important}.md\\:right-0{right:0!important}.md\\:right-50{right:50%!important}.md\\:right-100{right:100%!important}}@media screen and (min-width: 992px){.lg\\:right-auto{right:auto!important}.lg\\:right-0{right:0!important}.lg\\:right-50{right:50%!important}.lg\\:right-100{right:100%!important}}@media screen and (min-width: 1200px){.xl\\:right-auto{right:auto!important}.xl\\:right-0{right:0!important}.xl\\:right-50{right:50%!important}.xl\\:right-100{right:100%!important}}.bottom-auto{bottom:auto!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}@media screen and (min-width: 576px){.sm\\:bottom-auto{bottom:auto!important}.sm\\:bottom-0{bottom:0!important}.sm\\:bottom-50{bottom:50%!important}.sm\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 768px){.md\\:bottom-auto{bottom:auto!important}.md\\:bottom-0{bottom:0!important}.md\\:bottom-50{bottom:50%!important}.md\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 992px){.lg\\:bottom-auto{bottom:auto!important}.lg\\:bottom-0{bottom:0!important}.lg\\:bottom-50{bottom:50%!important}.lg\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 1200px){.xl\\:bottom-auto{bottom:auto!important}.xl\\:bottom-0{bottom:0!important}.xl\\:bottom-50{bottom:50%!important}.xl\\:bottom-100{bottom:100%!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-auto{overflow:auto!important}.sm\\:overflow-hidden{overflow:hidden!important}.sm\\:overflow-visible{overflow:visible!important}.sm\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-auto{overflow:auto!important}.md\\:overflow-hidden{overflow:hidden!important}.md\\:overflow-visible{overflow:visible!important}.md\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-auto{overflow:auto!important}.lg\\:overflow-hidden{overflow:hidden!important}.lg\\:overflow-visible{overflow:visible!important}.lg\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-auto{overflow:auto!important}.xl\\:overflow-hidden{overflow:hidden!important}.xl\\:overflow-visible{overflow:visible!important}.xl\\:overflow-scroll{overflow:scroll!important}}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-x-auto{overflow-x:auto!important}.sm\\:overflow-x-hidden{overflow-x:hidden!important}.sm\\:overflow-x-visible{overflow-x:visible!important}.sm\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-x-auto{overflow-x:auto!important}.md\\:overflow-x-hidden{overflow-x:hidden!important}.md\\:overflow-x-visible{overflow-x:visible!important}.md\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-x-auto{overflow-x:auto!important}.lg\\:overflow-x-hidden{overflow-x:hidden!important}.lg\\:overflow-x-visible{overflow-x:visible!important}.lg\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-x-auto{overflow-x:auto!important}.xl\\:overflow-x-hidden{overflow-x:hidden!important}.xl\\:overflow-x-visible{overflow-x:visible!important}.xl\\:overflow-x-scroll{overflow-x:scroll!important}}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-y-auto{overflow-y:auto!important}.sm\\:overflow-y-hidden{overflow-y:hidden!important}.sm\\:overflow-y-visible{overflow-y:visible!important}.sm\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-y-auto{overflow-y:auto!important}.md\\:overflow-y-hidden{overflow-y:hidden!important}.md\\:overflow-y-visible{overflow-y:visible!important}.md\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-y-auto{overflow-y:auto!important}.lg\\:overflow-y-hidden{overflow-y:hidden!important}.lg\\:overflow-y-visible{overflow-y:visible!important}.lg\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-y-auto{overflow-y:auto!important}.xl\\:overflow-y-hidden{overflow-y:hidden!important}.xl\\:overflow-y-visible{overflow-y:visible!important}.xl\\:overflow-y-scroll{overflow-y:scroll!important}}.z-auto{z-index:auto!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}.z-4{z-index:4!important}.z-5{z-index:5!important}@media screen and (min-width: 576px){.sm\\:z-auto{z-index:auto!important}.sm\\:z-0{z-index:0!important}.sm\\:z-1{z-index:1!important}.sm\\:z-2{z-index:2!important}.sm\\:z-3{z-index:3!important}.sm\\:z-4{z-index:4!important}.sm\\:z-5{z-index:5!important}}@media screen and (min-width: 768px){.md\\:z-auto{z-index:auto!important}.md\\:z-0{z-index:0!important}.md\\:z-1{z-index:1!important}.md\\:z-2{z-index:2!important}.md\\:z-3{z-index:3!important}.md\\:z-4{z-index:4!important}.md\\:z-5{z-index:5!important}}@media screen and (min-width: 992px){.lg\\:z-auto{z-index:auto!important}.lg\\:z-0{z-index:0!important}.lg\\:z-1{z-index:1!important}.lg\\:z-2{z-index:2!important}.lg\\:z-3{z-index:3!important}.lg\\:z-4{z-index:4!important}.lg\\:z-5{z-index:5!important}}@media screen and (min-width: 1200px){.xl\\:z-auto{z-index:auto!important}.xl\\:z-0{z-index:0!important}.xl\\:z-1{z-index:1!important}.xl\\:z-2{z-index:2!important}.xl\\:z-3{z-index:3!important}.xl\\:z-4{z-index:4!important}.xl\\:z-5{z-index:5!important}}.bg-repeat{background-repeat:repeat!important}.bg-no-repeat{background-repeat:no-repeat!important}.bg-repeat-x{background-repeat:repeat-x!important}.bg-repeat-y{background-repeat:repeat-y!important}.bg-repeat-round{background-repeat:round!important}.bg-repeat-space{background-repeat:space!important}@media screen and (min-width: 576px){.sm\\:bg-repeat{background-repeat:repeat!important}.sm\\:bg-no-repeat{background-repeat:no-repeat!important}.sm\\:bg-repeat-x{background-repeat:repeat-x!important}.sm\\:bg-repeat-y{background-repeat:repeat-y!important}.sm\\:bg-repeat-round{background-repeat:round!important}.sm\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 768px){.md\\:bg-repeat{background-repeat:repeat!important}.md\\:bg-no-repeat{background-repeat:no-repeat!important}.md\\:bg-repeat-x{background-repeat:repeat-x!important}.md\\:bg-repeat-y{background-repeat:repeat-y!important}.md\\:bg-repeat-round{background-repeat:round!important}.md\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 992px){.lg\\:bg-repeat{background-repeat:repeat!important}.lg\\:bg-no-repeat{background-repeat:no-repeat!important}.lg\\:bg-repeat-x{background-repeat:repeat-x!important}.lg\\:bg-repeat-y{background-repeat:repeat-y!important}.lg\\:bg-repeat-round{background-repeat:round!important}.lg\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 1200px){.xl\\:bg-repeat{background-repeat:repeat!important}.xl\\:bg-no-repeat{background-repeat:no-repeat!important}.xl\\:bg-repeat-x{background-repeat:repeat-x!important}.xl\\:bg-repeat-y{background-repeat:repeat-y!important}.xl\\:bg-repeat-round{background-repeat:round!important}.xl\\:bg-repeat-space{background-repeat:space!important}}.bg-auto{background-size:auto!important}.bg-cover{background-size:cover!important}.bg-contain{background-size:contain!important}@media screen and (min-width: 576px){.sm\\:bg-auto{background-size:auto!important}.sm\\:bg-cover{background-size:cover!important}.sm\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 768px){.md\\:bg-auto{background-size:auto!important}.md\\:bg-cover{background-size:cover!important}.md\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 992px){.lg\\:bg-auto{background-size:auto!important}.lg\\:bg-cover{background-size:cover!important}.lg\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 1200px){.xl\\:bg-auto{background-size:auto!important}.xl\\:bg-cover{background-size:cover!important}.xl\\:bg-contain{background-size:contain!important}}.bg-bottom{background-position:bottom!important}.bg-center{background-position:center!important}.bg-left{background-position:left!important}.bg-left-bottom{background-position:left bottom!important}.bg-left-top{background-position:left top!important}.bg-right{background-position:right!important}.bg-right-bottom{background-position:right bottom!important}.bg-right-top{background-position:right top!important}.bg-top{background-position:top!important}@media screen and (min-width: 576px){.sm\\:bg-bottom{background-position:bottom!important}.sm\\:bg-center{background-position:center!important}.sm\\:bg-left{background-position:left!important}.sm\\:bg-left-bottom{background-position:left bottom!important}.sm\\:bg-left-top{background-position:left top!important}.sm\\:bg-right{background-position:right!important}.sm\\:bg-right-bottom{background-position:right bottom!important}.sm\\:bg-right-top{background-position:right top!important}.sm\\:bg-top{background-position:top!important}}@media screen and (min-width: 768px){.md\\:bg-bottom{background-position:bottom!important}.md\\:bg-center{background-position:center!important}.md\\:bg-left{background-position:left!important}.md\\:bg-left-bottom{background-position:left bottom!important}.md\\:bg-left-top{background-position:left top!important}.md\\:bg-right{background-position:right!important}.md\\:bg-right-bottom{background-position:right bottom!important}.md\\:bg-right-top{background-position:right top!important}.md\\:bg-top{background-position:top!important}}@media screen and (min-width: 992px){.lg\\:bg-bottom{background-position:bottom!important}.lg\\:bg-center{background-position:center!important}.lg\\:bg-left{background-position:left!important}.lg\\:bg-left-bottom{background-position:left bottom!important}.lg\\:bg-left-top{background-position:left top!important}.lg\\:bg-right{background-position:right!important}.lg\\:bg-right-bottom{background-position:right bottom!important}.lg\\:bg-right-top{background-position:right top!important}.lg\\:bg-top{background-position:top!important}}@media screen and (min-width: 1200px){.xl\\:bg-bottom{background-position:bottom!important}.xl\\:bg-center{background-position:center!important}.xl\\:bg-left{background-position:left!important}.xl\\:bg-left-bottom{background-position:left bottom!important}.xl\\:bg-left-top{background-position:left top!important}.xl\\:bg-right{background-position:right!important}.xl\\:bg-right-bottom{background-position:right bottom!important}.xl\\:bg-right-top{background-position:right top!important}.xl\\:bg-top{background-position:top!important}}.list-none{list-style:none!important}.list-disc{list-style:disc!important}.list-decimal{list-style:decimal!important}.appearance-none{-webkit-appearance:none!important;appearance:none!important}.outline-none{outline:none!important}.pointer-events-none{pointer-events:none!important}.pointer-events-auto{pointer-events:auto!important}.cursor-auto{cursor:auto!important}.cursor-pointer{cursor:pointer!important}.cursor-wait{cursor:wait!important}.cursor-move{cursor:move!important}.select-none{-webkit-user-select:none!important;user-select:none!important}.select-text{-webkit-user-select:text!important;user-select:text!important}.select-all{-webkit-user-select:all!important;user-select:all!important}.select-auto{-webkit-user-select:auto!important;user-select:auto!important}.opacity-0{opacity:0!important}.opacity-10{opacity:.1!important}.opacity-20{opacity:.2!important}.opacity-30{opacity:.3!important}.opacity-40{opacity:.4!important}.opacity-50{opacity:.5!important}.opacity-60{opacity:.6!important}.opacity-70{opacity:.7!important}.opacity-80{opacity:.8!important}.opacity-90{opacity:.9!important}.opacity-100{opacity:1!important}.reset{all:unset}.transition-none{transition-property:none!important}.transition-all{transition-property:all!important}.transition-colors{transition-property:background-color,border-color,color!important}.transition-transform{transition-property:transform!important}.transition-duration-100{transition-duration:.1s!important}.transition-duration-150{transition-duration:.15s!important}.transition-duration-200{transition-duration:.2s!important}.transition-duration-300{transition-duration:.3s!important}.transition-duration-400{transition-duration:.4s!important}.transition-duration-500{transition-duration:.5s!important}.transition-duration-1000{transition-duration:1s!important}.transition-duration-2000{transition-duration:2s!important}.transition-duration-3000{transition-duration:3s!important}.transition-linear{transition-timing-function:linear!important}.transition-ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.transition-ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.transition-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.transition-delay-100{transition-delay:.1s!important}.transition-delay-150{transition-delay:.15s!important}.transition-delay-200{transition-delay:.2s!important}.transition-delay-300{transition-delay:.3s!important}.transition-delay-400{transition-delay:.4s!important}.transition-delay-500{transition-delay:.5s!important}.transition-delay-1000{transition-delay:1s!important}.translate-x-0{transform:translate(0)!important}.translate-x-100{transform:translate(100%)!important}.-translate-x-100{transform:translate(-100%)!important}.translate-y-0{transform:translateY(0)!important}.translate-y-100{transform:translateY(100%)!important}.-translate-y-100{transform:translateY(-100%)!important}@media screen and (min-width: 576px){.sm\\:translate-x-0{transform:translate(0)!important}.sm\\:translate-x-100{transform:translate(100%)!important}.sm\\:-translate-x-100{transform:translate(-100%)!important}.sm\\:translate-y-0{transform:translateY(0)!important}.sm\\:translate-y-100{transform:translateY(100%)!important}.sm\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 768px){.md\\:translate-x-0{transform:translate(0)!important}.md\\:translate-x-100{transform:translate(100%)!important}.md\\:-translate-x-100{transform:translate(-100%)!important}.md\\:translate-y-0{transform:translateY(0)!important}.md\\:translate-y-100{transform:translateY(100%)!important}.md\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 992px){.lg\\:translate-x-0{transform:translate(0)!important}.lg\\:translate-x-100{transform:translate(100%)!important}.lg\\:-translate-x-100{transform:translate(-100%)!important}.lg\\:translate-y-0{transform:translateY(0)!important}.lg\\:translate-y-100{transform:translateY(100%)!important}.lg\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 1200px){.xl\\:translate-x-0{transform:translate(0)!important}.xl\\:translate-x-100{transform:translate(100%)!important}.xl\\:-translate-x-100{transform:translate(-100%)!important}.xl\\:translate-y-0{transform:translateY(0)!important}.xl\\:translate-y-100{transform:translateY(100%)!important}.xl\\:-translate-y-100{transform:translateY(-100%)!important}}.rotate-45{transform:rotate(45deg)!important}.-rotate-45{transform:rotate(-45deg)!important}.rotate-90{transform:rotate(90deg)!important}.-rotate-90{transform:rotate(-90deg)!important}.rotate-180{transform:rotate(180deg)!important}.-rotate-180{transform:rotate(-180deg)!important}@media screen and (min-width: 576px){.sm\\:rotate-45{transform:rotate(45deg)!important}.sm\\:-rotate-45{transform:rotate(-45deg)!important}.sm\\:rotate-90{transform:rotate(90deg)!important}.sm\\:-rotate-90{transform:rotate(-90deg)!important}.sm\\:rotate-180{transform:rotate(180deg)!important}.sm\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 768px){.md\\:rotate-45{transform:rotate(45deg)!important}.md\\:-rotate-45{transform:rotate(-45deg)!important}.md\\:rotate-90{transform:rotate(90deg)!important}.md\\:-rotate-90{transform:rotate(-90deg)!important}.md\\:rotate-180{transform:rotate(180deg)!important}.md\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 992px){.lg\\:rotate-45{transform:rotate(45deg)!important}.lg\\:-rotate-45{transform:rotate(-45deg)!important}.lg\\:rotate-90{transform:rotate(90deg)!important}.lg\\:-rotate-90{transform:rotate(-90deg)!important}.lg\\:rotate-180{transform:rotate(180deg)!important}.lg\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 1200px){.xl\\:rotate-45{transform:rotate(45deg)!important}.xl\\:-rotate-45{transform:rotate(-45deg)!important}.xl\\:rotate-90{transform:rotate(90deg)!important}.xl\\:-rotate-90{transform:rotate(-90deg)!important}.xl\\:rotate-180{transform:rotate(180deg)!important}.xl\\:-rotate-180{transform:rotate(-180deg)!important}}.origin-center{transform-origin:center!important}.origin-top{transform-origin:top!important}.origin-top-right{transform-origin:top right!important}.origin-right{transform-origin:right!important}.origin-bottom-right{transform-origin:bottom right!important}.origin-bottom{transform-origin:bottom!important}.origin-bottom-left{transform-origin:bottom left!important}.origin-left{transform-origin:left!important}.origin-top-left{transform-origin:top-left!important}@media screen and (min-width: 576px){.sm\\:origin-center{transform-origin:center!important}.sm\\:origin-top{transform-origin:top!important}.sm\\:origin-top-right{transform-origin:top right!important}.sm\\:origin-right{transform-origin:right!important}.sm\\:origin-bottom-right{transform-origin:bottom right!important}.sm\\:origin-bottom{transform-origin:bottom!important}.sm\\:origin-bottom-left{transform-origin:bottom left!important}.sm\\:origin-left{transform-origin:left!important}.sm\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 768px){.md\\:origin-center{transform-origin:center!important}.md\\:origin-top{transform-origin:top!important}.md\\:origin-top-right{transform-origin:top right!important}.md\\:origin-right{transform-origin:right!important}.md\\:origin-bottom-right{transform-origin:bottom right!important}.md\\:origin-bottom{transform-origin:bottom!important}.md\\:origin-bottom-left{transform-origin:bottom left!important}.md\\:origin-left{transform-origin:left!important}.md\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 992px){.lg\\:origin-center{transform-origin:center!important}.lg\\:origin-top{transform-origin:top!important}.lg\\:origin-top-right{transform-origin:top right!important}.lg\\:origin-right{transform-origin:right!important}.lg\\:origin-bottom-right{transform-origin:bottom right!important}.lg\\:origin-bottom{transform-origin:bottom!important}.lg\\:origin-bottom-left{transform-origin:bottom left!important}.lg\\:origin-left{transform-origin:left!important}.lg\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 1200px){.xl\\:origin-center{transform-origin:center!important}.xl\\:origin-top{transform-origin:top!important}.xl\\:origin-top-right{transform-origin:top right!important}.xl\\:origin-right{transform-origin:right!important}.xl\\:origin-bottom-right{transform-origin:bottom right!important}.xl\\:origin-bottom{transform-origin:bottom!important}.xl\\:origin-bottom-left{transform-origin:bottom left!important}.xl\\:origin-left{transform-origin:left!important}.xl\\:origin-top-left{transform-origin:top-left!important}}@keyframes fadein{0%{opacity:0}to{opacity:1}}@keyframes fadeout{0%{opacity:1}to{opacity:0}}@keyframes scalein{0%{opacity:0;transform:scaleY(.8);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:scaleY(1)}}@keyframes slidedown{0%{max-height:0}to{max-height:auto}}@keyframes slideup{0%{max-height:1000px}to{max-height:0}}@keyframes fadeinleft{0%{opacity:0;transform:translate(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutleft{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(-100%)}}@keyframes fadeinright{0%{opacity:0;transform:translate(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutright{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(100%)}}@keyframes fadeinup{0%{opacity:0;transform:translateY(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutup{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(-100%)}}@keyframes fadeindown{0%{opacity:0;transform:translateY(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutdown{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(100%)}}@keyframes animate-width{0%{width:0}to{width:100%}}@keyframes flip{0%{transform:perspective(2000px) rotateX(-100deg)}to{transform:perspective(2000px) rotateX(0)}}@keyframes flipleft{0%{transform:perspective(2000px) rotateY(-100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipright{0%{transform:perspective(2000px) rotateY(100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipup{0%{transform:perspective(2000px) rotateX(-100deg);opacity:0}to{transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes zoomin{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomindown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}@keyframes zoominleft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}@keyframes zoominright{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}@keyframes zoominup{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}.fadein{animation:fadein .15s linear}.fadeout{animation:fadeout .15s linear}.slidedown{animation:slidedown .45s ease-in-out}.slideup{animation:slideup .45s cubic-bezier(0,1,0,1)}.scalein{animation:scalein .15s linear}.fadeinleft{animation:fadeinleft .15s linear}.fadeoutleft{animation:fadeoutleft .15s linear}.fadeinright{animation:fadeinright .15s linear}.fadeoutright{animation:fadeoutright .15s linear}.fadeinup{animation:fadeinup .15s linear}.fadeoutup{animation:fadeoutup .15s linear}.fadeindown{animation:fadeindown .15s linear}.fadeoutdown{animation:fadeoutdown .15s linear}.animate-width{animation:animate-width 1s linear}.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flip .15s linear}.flipup{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipup .15s linear}.flipleft{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipleft .15s linear}.flipright{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipright .15s linear}.zoomin{animation:zoomin .15s linear}.zoomindown{animation:zoomindown .15s linear}.zoominleft{animation:zoominleft .15s linear}.zoominright{animation:zoominright .15s linear}.zoominup{animation:zoominup .15s linear}.animation-duration-100{animation-duration:.1s!important}.animation-duration-150{animation-duration:.15s!important}.animation-duration-200{animation-duration:.2s!important}.animation-duration-300{animation-duration:.3s!important}.animation-duration-400{animation-duration:.4s!important}.animation-duration-500{animation-duration:.5s!important}.animation-duration-1000{animation-duration:1s!important}.animation-duration-2000{animation-duration:2s!important}.animation-duration-3000{animation-duration:3s!important}.animation-delay-100{animation-delay:.1s!important}.animation-delay-150{animation-delay:.15s!important}.animation-delay-200{animation-delay:.2s!important}.animation-delay-300{animation-delay:.3s!important}.animation-delay-400{animation-delay:.4s!important}.animation-delay-500{animation-delay:.5s!important}.animation-delay-1000{animation-delay:1s!important}.animation-iteration-1{animation-iteration-count:1!important}.animation-iteration-2{animation-iteration-count:2!important}.animation-iteration-infinite{animation-iteration-count:infinite!important}.animation-linear{animation-timing-function:linear!important}.animation-ease-in{animation-timing-function:cubic-bezier(.4,0,1,1)!important}.animation-ease-out{animation-timing-function:cubic-bezier(0,0,.2,1)!important}.animation-ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)!important}.animation-fill-none{animation-fill-mode:none!important}.animation-fill-forwards{animation-fill-mode:forwards!important}.animation-fill-backwards{animation-fill-mode:backwards!important}.animation-fill-both{animation-fill-mode:both!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card{background-color:#fff;border-radius:8px;box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a}:host ::ng-deep .w-filter-panel-no-style-card.p-card .p-card-content{padding:0!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card .p-card-body{padding:0!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button{padding:0!important;height:auto!important;overflow:visible!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button .p-button-icon{font-size:9px!important;transform:translatey(1px) translate(2px)!important;color:#5f6468}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button>.p-button-label{color:#5f6468}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button:hover>.p-button-label{color:#1f2224}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button:hover .p-button-icon{color:#1f2224}:host ::ng-deep .w-filter-panel-buttons{display:flex;padding:0!important;margin-top:12px}:host ::ng-deep .w-filter-panel-buttons:has(button){flex-grow:10!important;flex-shrink:10!important;max-width:none!important;flex-basis:100%!important;gap:12px!important}:host ::ng-deep .w-filter-panel-buttons button{gap:8px;height:24px!important;padding-left:12px!important;padding-right:12px!important}:host ::ng-deep .w-filter-panel-buttons button>.p-button-label{font-size:11px!important;font-weight:700!important}:host ::ng-deep .w-filter-panel-buttons button.cancel-filter-button .p-button-icon.p-button-icon-left{font-size:12px}:host ::ng-deep .w-filter-panel-buttons button.set-filter-button .p-button-icon.p-button-icon-left{font-size:9px}.w-filter-panel-container-basic,.w-filter-panel-container-advanced{padding:20px 24px!important;display:grid;gap:12px}::ng-deep .query-builder-style ul li{border:none!important;background:transparent!important;padding-left:0!important}::ng-deep .w-filter-panel-basic .q-tree-container{margin:0;overflow:visible!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree{margin:0!important;padding:0!important;display:flex;flex-wrap:wrap;justify-content:flex-start;gap:20px 24px}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row{padding:0;margin:0;width:0}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row:not(:nth-child(3n)){display:flex!important;flex-direction:column;flex-basis:calc(16.6666666667% - 20px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row:nth-child(3n){display:flex!important;flex-direction:column;flex-basis:calc(16.6666666667% - 20px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row:has(.w-filter-panel-notifications-event-field){display:flex!important;flex-direction:column;flex-basis:calc(33.3333333333% - 16px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row.q-connector:before{content:none!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row.q-connector:after{border-width:0px!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-input-text-label{font-size:11px;font-weight:600;color:#1f2224;margin-bottom:6px;width:100%}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width{flex-basis:calc(16.6666666667% - 20px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.notifications-event-field-width{flex-basis:calc(50% - 12px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch{width:100%;background-color:#fff;height:24px!important;font-size:10.5px!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch>span{padding-top:4px!important;padding-left:8px!important;width:50px!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch .pi{line-height:14px}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch .p-dropdown-trigger{margin-right:4px!important;padding-bottom:2px}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .p-multiselect{width:100%}::ng-deep .w-filter-panel-advanced div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-button-group{width:auto!important;overflow:visible!important;margin:8px}::ng-deep .w-filter-panel-advanced div .q-button-group button,::ng-deep .w-filter-panel-grouped div .q-button-group button{height:24px!important}::ng-deep .w-filter-panel-advanced div .q-button-group.q-right-align,::ng-deep .w-filter-panel-grouped div .q-button-group.q-right-align{margin-right:0}::ng-deep .w-filter-panel-advanced div .w-filter-panel-switch-group-padding w-select-button .w-button-small .p-selectbutton .p-button,::ng-deep .w-filter-panel-grouped div .w-filter-panel-switch-group-padding w-select-button .w-button-small .p-selectbutton .p-button{height:24px}::ng-deep .w-filter-panel-advanced div .q-inline-block-display,::ng-deep .w-filter-panel-advanced div .q-tree-container .q-tree .q-rule .q-button-group,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule div .q-button-group,::ng-deep .w-filter-panel-advanced div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-inline-block-display,::ng-deep .w-filter-panel-grouped div .q-tree-container .q-tree .q-rule .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-button-group{margin:8px}::ng-deep .w-filter-panel-advanced .q-tree-container,::ng-deep .w-filter-panel-grouped .q-tree-container{margin:0;padding:0;overflow:visible!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-ruleset,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-ruleset{border:none!important;padding:6px 0!important;margin:12px 0!important;border-radius:8px;background-color:#005c7a08!important;box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule{background:none!important;border:none!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group{overflow:visible!important;margin:8px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group .p-button span:not(*:hover),::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group .p-button span:not(*:hover){color:#1f2224}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group .p-button,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group .p-button{box-shadow:0 0 1px 0 rgba #000,.1 inset,1px 1px 5px rgba #000,.06,1px 1px 1px rgba #000,.08;height:24px;width:24px;border:1px solid #e8ebee!important;border:none!important;padding:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group .p-button span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group .p-button span{margin-left:8px!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group.q-right-align,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group.q-right-align{margin-right:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row{padding:0;margin-top:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .q-inline-block-display,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row div .q-button-group,::ng-deep .w-filter-panel-advanced div .q-tree-container .q-tree .q-row .q-button-group,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .q-rule .q-button-group,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-row .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .q-inline-block-display,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-tree-container .q-tree .q-row .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .q-rule .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-row .q-button-group{vertical-align:middle!important;margin:8px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width{display:inline-flex;vertical-align:middle!important;width:200px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-no-entity-mode,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-no-entity-mode{width:0px;padding:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-entity-nullable,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-entity-nullable{padding:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators{width:100px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators.w-field-nullable,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators.w-field-nullable{width:0px;padding:0;margin:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch{width:100%;background-color:#fff;height:24px!important;font-size:10.5px!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch>span{padding-top:4px!important;padding-left:8px!important;width:50px!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .pi{line-height:14px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .p-dropdown-trigger{margin-right:4px!important;padding-bottom:2px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .p-dropdown,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-list-field,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-edit-calendar,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .p-dropdown,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-list-field,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-edit-calendar{width:100%}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-button-group{overflow:visible!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-button-group button,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-button-group button{box-shadow:0 0 1px 0 rgba #000,.1 inset,1px 1px 5px rgba #000,.06,1px 1px 1px rgba #000,.08!important;background:white!important}.advanced-query-button-group{position:absolute;bottom:0;left:0;margin-bottom:-46px}.w-filter-panel-container{position:relative}::ng-deep .w-filter-panel-blockui.p-blockui{opacity:0!important}::ng-deep .w-filter-panel-basic-query-builder-input-width p-dropdown .p-dropdown{width:100%}::ng-deep .w-filter-panel-basic-query-builder-input-width input .p-inputtext{width:100%}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input{border:1px solid #e8ebee;border-radius:8px;padding:8px;width:100%}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus{border-radius:8px}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input::-webkit-input-placeholder{color:#9aa0a7!important}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input::-moz-placeholder{color:#9aa0a7!important}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus:-ms-input-placeholder{color:#9aa0a7!important}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus:-moz-placeholder{color:#9aa0a7!important}:host ::ng-deep .w-edit-select-small .p-dropdown .p-dropdown-label{padding-right:24px;height:100%}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open:not(.p-disabled):hover{border-color:#e8ebee}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open .p-dropdown-label{padding-right:7px}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open .p-dropdown-trigger{visibility:hidden;margin:0;padding:0;width:0px;height:0px}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open .p-dropdown-clear-icon{right:12px}:host ::ng-deep .w-edit-select-small .p-dropdown:not(.p-dropdown-open){box-shadow:none!important;border-color:#e8ebee}:host ::ng-deep .w-edit-select-small .p-inputtext{align-content:center}:host ::ng-deep .w-edit-select-small .p-dropdown:not(.p-disabled):hover{border-color:#00b3eb}:host ::ng-deep .w-edit-select-small .p-dropdown .p-dropdown-trigger{width:auto;height:26px;padding-right:6px;padding-left:6px;margin-right:8px}:host ::ng-deep .w-edit-select-small .p-dropdown .p-dropdown-clear-icon{right:38px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect{border:1px solid #e8ebee;border-radius:8px;display:flex}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container{display:flex;padding:0!important;align-items:center}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{padding:0 8px;align-content:center;margin-right:20px;display:flex;width:100%;gap:6px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{height:20px;padding:0 6px;gap:4px;border-radius:6px;border-width:1px;color:#1f2224;background-color:#e0f5fc}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon{margin-left:0;font-size:8px;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon:before{content:\"\\e90b\"!important;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times:before{content:\"\\e90c\"!important;color:#5f6468!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times{right:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open:not(.p-disabled):hover{border-color:#e8ebee}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-trigger{width:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-label{margin-right:32px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-trigger{display:none;margin:0;padding:0;width:0px;height:0px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-clear-icon{right:15px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect:hover{border:1px solid #00b3eb}.w-filter-panel-notifications-event-field{display:flex;gap:20px 24px}\n"], dependencies: [{ kind: "directive", type: i4.InputText, selector: "[pInputText]" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i6.ButtonDirective, selector: "[pButton]", inputs: ["iconPos", "loadingIcon", "label", "icon", "loading"] }, { kind: "directive", type: i7.Ripple, selector: "[pRipple]" }, { kind: "component", type: i8.Dropdown, selector: "p-dropdown", inputs: ["scrollHeight", "filter", "name", "style", "panelStyle", "styleClass", "panelStyleClass", "readonly", "required", "editable", "appendTo", "tabindex", "placeholder", "filterPlaceholder", "filterLocale", "inputId", "selectId", "dataKey", "filterBy", "autofocus", "resetFilterOnHide", "dropdownIcon", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "autoDisplayFirst", "group", "showClear", "emptyFilterMessage", "emptyMessage", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "ariaLabel", "ariaLabelledBy", "filterMatchMode", "maxlength", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "autofocusFilter", "overlayDirection", "disabled", "itemSize", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "options", "filterValue"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onShow", "onHide", "onClear", "onLazyLoad"] }, { kind: "component", type: i9.MultiSelect, selector: "p-multiSelect", inputs: ["style", "styleClass", "panelStyle", "panelStyleClass", "inputId", "disabled", "readonly", "group", "filter", "filterPlaceHolder", "filterLocale", "overlayVisible", "tabindex", "appendTo", "dataKey", "name", "label", "ariaLabelledBy", "displaySelectedLabel", "maxSelectedLabels", "selectionLimit", "selectedItemsLabel", "showToggleAll", "emptyFilterMessage", "emptyMessage", "resetFilterOnHide", "dropdownIcon", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "showHeader", "filterBy", "scrollHeight", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "filterMatchMode", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "autofocusFilter", "display", "autocomplete", "showClear", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "defaultLabel", "placeholder", "options", "filterValue", "itemSize"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onClear", "onPanelShow", "onPanelHide", "onLazyLoad", "onRemove"] }, { kind: "component", type: i10.InputNumber, selector: "p-inputNumber", inputs: ["showButtons", "format", "buttonLayout", "inputId", "styleClass", "style", "placeholder", "size", "maxlength", "tabindex", "title", "ariaLabel", "ariaRequired", "name", "required", "autocomplete", "min", "max", "incrementButtonClass", "decrementButtonClass", "incrementButtonIcon", "decrementButtonIcon", "readonly", "step", "allowEmpty", "locale", "localeMatcher", "mode", "currency", "currencyDisplay", "useGrouping", "minFractionDigits", "maxFractionDigits", "prefix", "suffix", "inputStyle", "inputStyleClass", "showClear", "disabled"], outputs: ["onInput", "onFocus", "onBlur", "onKeyDown", "onClear"] }, { kind: "component", type: i11.QueryBuilderComponent, selector: "query-builder", inputs: ["data", "allowRuleset", "allowCollapse", "emptyMessage", "config", "persistValueOnFieldChange", "value", "disabled", "classNames", "operatorMap", "parentValue", "parentArrowIconTemplate", "parentInputTemplates", "parentOperatorTemplate", "parentFieldTemplate", "parentEntityTemplate", "parentSwitchGroupTemplate", "parentButtonGroupTemplate", "parentRemoveButtonTemplate", "parentEmptyWarningTemplate", "parentChangeCallback", "parentTouchedCallback"] }, { kind: "directive", type: i11.QueryInputDirective, selector: "[queryInput]", inputs: ["queryInputType"] }, { kind: "directive", type: i11.QueryOperatorDirective, selector: "[queryOperator]" }, { kind: "directive", type: i11.QueryFieldDirective, selector: "[queryField]" }, { kind: "directive", type: i11.QueryEntityDirective, selector: "[queryEntity]" }, { kind: "directive", type: i11.QueryButtonGroupDirective, selector: "[queryButtonGroup]" }, { kind: "directive", type: i11.QuerySwitchGroupDirective, selector: "[querySwitchGroup]" }, { kind: "directive", type: i11.QueryRemoveButtonDirective, selector: "[queryRemoveButton]" }, { kind: "directive", type: i11.QueryArrowIconDirective, selector: "[queryArrowIcon]" }, { kind: "component", type: i12.Card, selector: "p-card", inputs: ["header", "subheader", "style", "styleClass"] }, { kind: "component", type: i13.BlockUI, selector: "p-blockUI", inputs: ["target", "autoZIndex", "baseZIndex", "styleClass", "blocked"] }, { kind: "component", type: i14.WEditInputTextComponent, selector: "w-edit-input-text", inputs: ["label", "showLabel", "placeholder", "successMessage", "required", "requiredErrorDescription", "disabled", "minlength", "minlengthErrorDescription", "maxlength", "maxlengthErrorDescription", "email", "emailErrorDescription", "pattern", "patternErrorDescription", "autofocus", "inputIcon", "size", "formControl", "removePaddingTop", "tooltip", "tooltipPosition"] }, { kind: "component", type: i15.WButtonComponent, selector: "w-button", inputs: ["type", "label", "size", "icon", "iconPos", "tooltipPosition", "tooltip", "disabled", "loading", "buttonClass"], outputs: ["onClick"] }, { kind: "component", type: i16.WListFieldComponent, selector: "w-list-field", inputs: ["options", "operator", "placeholder", "onlyDropdown", "disabled"] }, { kind: "component", type: i17.WViewCardTitleTextComponent, selector: "w-view-card-title-text", inputs: ["cardTitle"] }, { kind: "component", type: i18.WToggleButtonComponent, selector: "w-toggle-button", inputs: ["onLabel", "offLabel", "size", "onIcon", "offIcon", "tooltipPosition", "tooltip", "disabled", "formControl"], outputs: ["onChange"] }, { kind: "component", type: i19.WSelectButtonComponent, selector: "w-select-button", inputs: ["stateOptions", "size", "tooltipPosition", "tooltip", "disabled", "formControl"], outputs: ["onChange"] }, { kind: "component", type: i20.WEditCalendarComponent, selector: "w-edit-calendar", inputs: ["minDate", "maxDate", "label", "showLabel", "showTime", "showSeconds", "timeOnly", "showIcon", "placeholder", "disabled", "size", "formControl", "displayInlineBlock", "required", "requiredErrorDescription", "someErrorDescription", "removePaddingTop", "firstDayOfWeek", "tooltip", "tooltipPosition", "dataType", "viewType", "monthMode", "readonlyInput", "dateFormat"], outputs: ["onChange"] }, { kind: "component", type: i21.WAddressFieldComponent, selector: "w-address-field", inputs: ["operator", "selectPlaceholder", "segmentationApiUrl", "segmentationApiToken"] }, { kind: "component", type: i22.WNotificationsEventFieldComponent, selector: "w-notifications-event-field", inputs: ["operator", "placeholder", "notificationApiUrl", "notificationApiToken"] }] });
|
|
700
|
+
WFilterPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: WFilterPanelComponent, selector: "w-filter-panel", inputs: { authorizationApiUrl: ["apiUrl", "authorizationApiUrl"], commonDataApiUrl: "commonDataApiUrl", notificationApiUrl: "notificationApiUrl", segmentationApiUrl: "segmentationApiUrl", token: "token", commonDataToken: "commonDataToken", segmentationToken: "segmentationToken", filterId: "filterId", dataIsLoadingSearchButton: "dataIsLoadingSearchButton", tenantId: "tenantId", applicationId: "applicationId", fieldsToKeepLocalDate: "fieldsToKeepLocalDate", fieldsForNotificationEvent: "fieldsForNotificationEvent", notificationEventEntity: "notificationEventEntity", translationsObject: "translationsObject" }, outputs: { searchClicked: "searchClicked", clearClicked: "clearClicked", lastQuery: "lastQuery", hasDefaultValues: "hasDefaultValues" }, viewQueries: [{ propertyName: "queryBuilder", first: true, predicate: ["advancedQueryBuilder"], descendants: true }, { propertyName: "basicQueryBuilderObject", first: true, predicate: ["basicQueryBuilderObject"], descendants: true }], ngImport: i0, template: "<!-- TODO: Intentar otra vez pasar los componentes a los de w- porque no se alinena y el w-edit-select no va bien en field. \r\n Ahora se conservan los de p-w con estilos. -->\r\n<p-blockUI styleClass=\"w-filter-panel-blockui\" [autoZIndex]=\"false\" [target]=\"filterPanel\" [blocked]=\"dataIsLoadingSearchButton\"></p-blockUI>\r\n\r\n<p-card styleClass=\"w-filter-panel-no-style-card\" #filterPanel>\r\n <div *ngIf=\"queryConfigReady\" class=\"w-filter-panel-styles\">\r\n <div *ngIf=\"!filterPanelObject.allowAdvancedSearch; else baiscAndAdvanced\">\r\n <div [ngClass]=\"{ 'w-filter-panel-container-advanced' : isAdvancedSearch, 'w-filter-panel-container-basic' : !isAdvancedSearch }\">\r\n <ng-container *ngTemplateOutlet=\"basic\"></ng-container>\r\n <div class=\"w-filter-panel-buttons\">\r\n <w-button icon=\"w-icon closeCircle\" buttonClass=\"cancel-filter-button\" [label]=\"translationsObject.clearButtonLabel\" type=\"tertiary\" size=\"small\" (onClick)=\"onClearClicked()\"></w-button>\r\n <w-button icon=\"pi pi-filter-fill\" buttonClass=\"set-filter-button\" [label]=\"translationsObject.searchButtonLabel\" size=\"small\" (onClick)=\"onSearchClicked()\"></w-button>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <ng-template #baiscAndAdvanced>\r\n <div [ngClass]=\"{ 'w-filter-panel-container-advanced' : isAdvancedSearch, 'w-filter-panel-container-basic' : !isAdvancedSearch }\">\r\n <ng-container *ngIf=\"!isAdvancedSearch; else advancedView\">\r\n <ng-container *ngTemplateOutlet=\"basic\"></ng-container>\r\n </ng-container>\r\n <ng-template #advancedView>\r\n <ng-container *ngTemplateOutlet=\"advanced\"></ng-container>\r\n </ng-template>\r\n\r\n <div class=\"w-filter-panel-buttons\" [class.pt-3]=\"isAdvancedSearch\">\r\n <w-button buttonClass=\"cancel-filter-button\" [label]=\"translationsObject.clearButtonLabel\" icon=\"w-icon closeCircle\" type=\"tertiary\" size=\"small\" (onClick)=\"onClearClicked()\"></w-button>\r\n <w-button buttonClass=\"set-filter-button\" [label]=\"translationsObject.searchButtonLabel\" icon=\"pi pi-filter-fill\" size=\"small\" (onClick)=\"onSearchClicked()\" [loading]=\"dataIsLoadingSearchButton\"></w-button>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </div>\r\n</p-card>\r\n\r\n <ng-template #basic>\r\n <div *ngIf=\"filterPanelObject.allowAdvancedSearch\" class=\"flex justify-content-end flex-wrap\">\r\n <w-button buttonClass=\"change-filter-button\" icon=\"pi pi-sync\" [label]=\"translationsObject.advancedSearchTabLabel\" type=\"text\" (onClick)=\"updateSearchType()\"></w-button>\r\n </div>\r\n <div *ngIf=\"basicQuery.rules.length > 0\" class=\"w-filter-panel-basic query-builder-style fadein animation-duration-500\">\r\n <query-builder #basicQueryBuilderObject [formControl]='queryCtrl' [config]='basicQueryConfig' [allowRuleset]='filterPanelObject.allowRuleSet' [allowRuleset]=\"filterPanelObject.allowRuleSet\" [persistValueOnFieldChange]='persistValueOnFieldChange'>\r\n <ng-container *queryButtonGroup=\"let ruleset;\">\r\n </ng-container>\r\n\r\n <ng-container *queryRemoveButton=\"let rule; let removeRule=removeRule\">\r\n </ng-container>\r\n\r\n <ng-container *querySwitchGroup=\"let ruleset; let onChange=onChange\">\r\n </ng-container>\r\n\r\n <ng-container *queryEntity=\"let rule; let entities=entities; let onChange=onChange\">\r\n <p-dropdown [disabled]=\"true\" class=\" w-edit-select-small\" *ngIf=\"false\" appendTo=\"body\" [options]=\"entities\" [(ngModel)]=\"rule.entity\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </ng-container>\r\n\r\n <ng-container *queryField=\"let rule; let fields=fields; let onChange=onChange; let getFields = getFields; let value=value; let name=name; let index=index\">\r\n <span appendTo=\"body\" class=\"w-filter-panel-input-text-label\" [class.w-filter-panel-boolean-label-width]=\"fieldIsBoolean(rule.field, getFields(rule.entity))\" optionLabel=\"name\" optionValue=\"value\">{{ getQueryFieldName(rule.field, getFields(rule.entity))}}</span>\r\n </ng-container>\r\n\r\n <ng-container *queryOperator=\"let rule; let operators=operators; let onChange=onChange\">\r\n <span class=\"query-builder-operator-width\">\r\n <p-dropdown class=\" w-edit-select-small\" *ngIf=\"isAdvancedSearch\" appendTo=\"body\" [(ngModel)]=\"rule.operator\" [options]=\"operators\" (ngModelChange)=\"onChange(rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Boolean.toString(); let onChange=onChange\">\r\n <span class=\"query-builder-operator-width\">\r\n <w-toggle-button size=\"small\" [(ngModel)]=\"rule.value\" onLabel=\"True\" offLabel=\"False\" (ngModelChange)=\"onChange()\"></w-toggle-button>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Datetime.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <w-edit-calendar appendTo=\"body\" size=\"small\" [showIcon]=\"false\" [dataType]=\"isToKeepLocalDate(rule.field) ? 'date' : 'string'\" [(ngModel)]=\"rule.value\" (onChange)=\"onChange()\" [showTime]=\"true\" [showSeconds]=\"true\" [firstDayOfWeek]=\"translationsObject.firstDayOfWeek ?? 1\" [placeholder]=\"translationsObject.fieldsPlaceholders.datetime\" [showLabel]=\"false\"></w-edit-calendar>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Decimal.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-inputNumber inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"w-edit-input-number-small\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" mode=\"decimal\" [minFractionDigits]=\"2\" [maxFractionDigits]=\"5\" [min]=\"0\" [max]=\"100\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.decimal\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"options\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Number.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-inputNumber [useGrouping]=\"false\" inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"w-edit-input-number-small\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" [min]=\"0\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.number\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Text.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <w-edit-input-text class=\"w-edit-input-text-small-height\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.text\" [showLabel]=\"false\"></w-edit-input-text>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Multiselect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-multiSelect class=\"w-edit-multiselect-small\" [appendTo]=\"'body'\" [options]=\"getTranslatedSelectOptions(options) \" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" display=\"chip\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-multiSelect>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.NullableSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"getNullableSelectOptions(options)\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" \r\n [placeholder]=\"nullableSelectPlaceholder(rule, options)\">\r\n </p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.BooleanSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"getBooleanSelectOptions(options)\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Address.toString(); let onChange=onChange\">\r\n <w-address-field [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [operator]=\"rule.operator\" [segmentationApiUrl]=\"segmentationApiUrl\" [segmentationApiToken]=\"segmentationToken\"></w-address-field>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.TranslatedSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getTranslatedSelectOptions(options)\" [ngModelOptions]=\"{standalone: true}\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.NotificationEventList.toString(); let onChange=onChange\">\r\n <w-notifications-event-field class=\"w-filter-panel-notifications-event-field\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [operator]=\"rule.operator\" [notificationApiUrl]=\"notificationApiUrl\" [notificationApiToken]=\"commonDataToken\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></w-notifications-event-field>\r\n </ng-container>\r\n </query-builder>\r\n </div>\r\n\r\n <ng-container *ngIf=\"!isAdvancedSearch && basicQuery.rules.length==0\" >\r\n <ng-container *ngTemplateOutlet=\"noQueryData\"></ng-container>\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template #advanced>\r\n <div [class.query-builder-style]=\"!filterPanelObject.allowRuleSet\" class=\"w-filter-panel-container fadein animation-duration-500\">\r\n <div *ngIf=\"filterPanelObject.allowRuleSet\" class=\"flex justify-content-end flex-wrap\">\r\n <w-button buttonClass=\"change-filter-button\" icon=\"pi pi-sync\" class=\"mb-2\" [label]=\"translationsObject.basicSearchTabLabel\" type=\"text\" (onClick)=\"updateSearchType()\"></w-button>\r\n </div>\r\n <query-builder class=\"w-filter-panel-advanced query-builder-style\" #advancedQueryBuilder [formControl]='advancedQueryCtrl' [config]='advancedQueryConfig' [allowRuleset]='filterPanelObject.allowRuleSet' [allowCollapse]='filterPanelObject.allowColapse' [allowRuleset]=\"filterPanelObject.allowRuleSet\" [persistValueOnFieldChange]='persistValueOnFieldChange'>\r\n <div *ngIf=\"filterPanelObject.allowRuleSet; else noRuleSet\">\r\n <ng-container *queryButtonGroup=\"let ruleset; let addRule=addRule; let addRuleSet=addRuleSet; let removeRuleSet=removeRuleSet\">\r\n <span class=\"flex gap-3\">\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleButtonLabel\" type=\"secondary\" size=\"small\" (onClick)=\"addRule()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleSetButtonLabel\" type=\"secondary\" icon=\"pi pi-plus\" size=\"small\" *ngIf=\"addRuleSet\" (onClick)=\"addRuleSet()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.removeRuleSetButtonLabel\" type=\"tertiary\" icon=\"pi pi-minus\" size=\"small\" *ngIf=\"removeRuleSet\" (onClick)=\"removeRuleSet()\"></w-button>\r\n </span>\r\n </ng-container>\r\n </div>\r\n\r\n <ng-template #noRuleSet>\r\n <ng-container *queryButtonGroup=\"let ruleset; let addRule=addRule; let addRuleSet=addRuleSet; let removeRuleSet=removeRuleSet\">\r\n <div class=\"flex justify-content-end flex-wrap\">\r\n <w-button [label]=\"translationsObject.basicSearchTabLabel\" type=\"text\" (onClick)=\"updateSearchType()\"></w-button>\r\n </div>\r\n <span class=\"advanced-query-button-group flex gap-3\">\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleButtonLabel\" type=\"secondary\" size=\"small\" (onClick)=\"addRule()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleSetButtonLabel\" type=\"secondary\" icon=\"pi pi-plus\" size=\"small\" *ngIf=\"addRuleSet\" (onClick)=\"addRuleSet()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.removeRuleSetButtonLabel\" type=\"tertiary\" icon=\"pi pi-minus\" size=\"small\" *ngIf=\"removeRuleSet\" (onClick)=\"removeRuleSet()\"></w-button>\r\n </span>\r\n </ng-container>\r\n </ng-template>\r\n <ng-container *queryArrowIcon>\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-angle-right\" class=\"p-button-rounded p-button-text\"></button>\r\n </ng-container>\r\n\r\n <ng-container *queryRemoveButton=\"let rule; let removeRule=removeRule\">\r\n <w-button class=\"\" label=\"\" size=\"small\" type=\"tertiary\" icon=\"pi pi-times\" (onClick)=\"removeRule(rule)\"></w-button>\r\n </ng-container>\r\n\r\n <ng-container *querySwitchGroup=\"let ruleset; let onChange=onChange\">\r\n <div *ngIf=\"ruleset\" class=\"w-filter-panel-switch-group-padding q-inline-block-display inline-flex\">\r\n <w-select-button *ngIf=\"filterPanelObject.allowLogicalRule\" [stateOptions]=\"[{label: 'And', value: 'and'}, {label: 'Or', value: 'or'}]\"\r\n [(ngModel)]=\"ruleset.condition\"\r\n [size]=\"'small'\"\r\n (value)=\"ruleset.condition = $event\">\r\n </w-select-button>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-container *queryEntity=\"let rule; let entities=entities; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width\" [ngClass]=\"{'w-no-entity-mode' : !filterPanelObject.enityMode}\">\r\n <p-dropdown *ngIf=\"filterPanelObject.enityMode\" class=\"field-gap w-edit-select-small w-entity-dropdown\" appendTo=\"body\" [options]=\"entities\" [(ngModel)]=\"rule.entity\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryField=\"let rule; let fields=fields; let onChange=onChange; let getFields = getFields\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-list-field class=\"field-gap\" appendTo=\"body\" [options]=\"getFields(rule.entity)\" [(ngModel)]=\"rule.field\" [operator]=\"'='\" (ngModelChange)=\"onChange($event, rule)\" [onlyDropdown]=\"true\"></w-list-field>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryOperator=\"let rule; let operators=operators; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-operators q-inline-block-display\" [ngClass]=\"{'w-field-nullable' : operators.includes('nullable')}\">\r\n <p-dropdown *ngIf=\"!operators.includes('nullable')\" class=\"field-gap w-edit-select-small\" appendTo=\"body\" [(ngModel)]=\"rule.operator\" [options]=\"operators\" (ngModelChange)=\"onChange(rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Boolean.toString(); let onChange=onChange\">\r\n <w-toggle-button class=\"field-gap toggle-button-align\" size=\"small\" [(ngModel)]=\"rule.value\" onLabel=\"True\" offLabel=\"False\" (ngModelChange)=\"onChange()\"></w-toggle-button>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Datetime.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-edit-calendar class=\"field-gap\" appendTo=\"body\" size=\"small\" [dataType]=\"isToKeepLocalDate(rule.field) ? 'date' : 'string'\" [showIcon]=\"false\" [(ngModel)]=\"rule.value\" (onChange)=\"onChange()\" [showTime]=\"true\" [showSeconds]=\"true\" [firstDayOfWeek]=\"translationsObject.firstDayOfWeek ?? 1\" [placeholder]=\"translationsObject.fieldsPlaceholders.datetime\" [displayInlineBlock]=\"true\" [showLabel]=\"false\"></w-edit-calendar>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Decimal.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"field-gap w-edit-input-number-small w-edit-input-number-small-height\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" mode=\"decimal\" [minFractionDigits]=\"2\" [maxFractionDigits]=\"5\" [min]=\"0\" [max]=\"100\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.decimal\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown *ngIf=\"!isMultiselect(rule)\" class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"options\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n <p-multiSelect *ngIf=\"isMultiselect(rule)\" class=\"w-edit-multiselect-small\" [appendTo]=\"'body'\" [options]=\"options\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" display=\"chip\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-multiSelect>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display field-gap\">\r\n <w-list-field [options]=\"options\" [(ngModel)]=\"rule.value\" [operator]=\"rule.operator\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></w-list-field>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Number.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber [useGrouping]=\"false\" inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"field-gap w-edit-input-number-small w-edit-input-number-small-height\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" [min]=\"0\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.number\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Text.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <input class=\"field-gap w-edit-input-text-small-height w-edit-input-text-small\" type=\"text\" pInputText [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.text\"/>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Multiselect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-multiSelect class=\"w-edit-multiselect-small\" [appendTo]=\"'body'\" [options]=\"options\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" display=\"chip\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-multiSelect>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Address.toString(); let onChange=onChange\">\r\n <w-address-field [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [operator]=\"rule.operator\" [segmentationApiUrl]=\"segmentationApiUrl\" [segmentationApiToken]=\"segmentationToken\" [selectPlaceholder]=\"translationsObject.fieldsPlaceholders.list\"></w-address-field>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.NullableSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display w-entity-nullable\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getNullableSelectOptions(options)\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.BooleanSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getBooleanSelectOptions(options)\" [ngModelOptions]=\"{standalone: true}\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.TranslatedSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getTranslatedSelectOptions(options)\" [ngModelOptions]=\"{standalone: true}\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n </query-builder>\r\n\r\n <ng-container *ngIf=\"isAdvancedSearch && advancedQuery.rules.length==0\" >\r\n <ng-container *ngTemplateOutlet=\"noQueryData\"></ng-container>\r\n </ng-container>\r\n\r\n <!-- Grouped filter -->\r\n <div *ngIf=\"filterPanelObject.allowGrouped\">\r\n <div class=\"py-5\">\r\n <w-view-card-title-text [cardTitle]=\"translationsObject.groupedFilterTitle\"></w-view-card-title-text>\r\n </div>\r\n\r\n <query-builder *ngIf=\"groupedQuery.rules.length > 0\" class=\"w-filter-panel-grouped query-builder-style\" [formControl]='groupedQueryCtrl' [config]='advancedQueryConfig' [allowRuleset]='filterPanelObject.allowRuleSet' [allowCollapse]='filterPanelObject.allowColapse' [allowRuleset]=\"filterPanelObject.allowRuleSet\" [persistValueOnFieldChange]='persistValueOnFieldChange'>\r\n <ng-container *queryButtonGroup=\"let ruleset; let addRule=addRule; let addRuleSet=addRuleSet; let removeRuleSet=removeRuleSet\">\r\n <div class=\"flex gap-3\">\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleButtonLabel\" type=\"secondary\" size=\"small\" (onClick)=\"addRule()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleSetButtonLabel\" type=\"secondary\" icon=\"pi pi-plus\" size=\"small\" *ngIf=\"addRuleSet\" (onClick)=\"addRuleSet()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.removeRuleSetButtonLabel\" type=\"tertiary\" icon=\"pi pi-minus\" size=\"small\" *ngIf=\"removeRuleSet\" (onClick)=\"removeRuleSet()\"></w-button>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-container *queryArrowIcon>\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-angle-right\" class=\"p-button-rounded p-button-text\"></button>\r\n </ng-container>\r\n\r\n <ng-container *queryRemoveButton=\"let rule; let removeRule=removeRule\">\r\n <w-button class=\"\" label=\"\" size=\"small\" type=\"tertiary\" icon=\"pi pi-times\" (onClick)=\"removeRule(rule)\"></w-button>\r\n </ng-container>\r\n\r\n <ng-container *querySwitchGroup=\"let ruleset; let onChange=onChange\">\r\n <div class=\"w-filter-panel-switch-group-padding q-inline-block-display inline-flex\" *ngIf=\"ruleset\">\r\n <w-select-button *ngIf=\"filterPanelObject.allowLogicalRule\" [stateOptions]=\"[{label: 'And', value: 'and'}, {label: 'Or', value: 'or'}]\"\r\n [(ngModel)]=\"ruleset.condition\"\r\n [size]=\"'small'\"\r\n (value)=\"ruleset.condition = $event\">\r\n </w-select-button>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-container *queryEntity=\"let rule; let entities=entities; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width\" [ngClass]=\"{'w-no-entity-mode' : !filterPanelObject.enityMode}\">\r\n <p-dropdown class=\"w-edit-select-small field-gap w-entity-dropdown\" *ngIf=\"filterPanelObject.enityMode\" appendTo=\"body\" [options]=\"entities\" [(ngModel)]=\"rule.entity\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryField=\"let rule; let fields=fields; let onChange=onChange; let getFields = getFields\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"getFields(rule.entity)\" [(ngModel)]=\"rule.field\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryOperator=\"let rule; let operators=operators; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-operators q-inline-block-display\" [ngClass]=\"{'w-field-nullable' : operators.includes('nullable')}\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [(ngModel)]=\"rule.operator\" [options]=\"operators\" (ngModelChange)=\"onChange(rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Boolean.toString(); let onChange=onChange\">\r\n <w-toggle-button class=\"field-gap toggle-button-align\" size=\"small\" [(ngModel)]=\"rule.value\" onLabel=\"True\" offLabel=\"False\" (ngModelChange)=\"onChange()\"></w-toggle-button>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Datetime.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-edit-calendar class=\"field-gap\" appendTo=\"body\" size=\"small\" [dataType]=\"isToKeepLocalDate(rule.field) ? 'date' : 'string'\" [showIcon]=\"false\" [(ngModel)]=\"rule.value\" (onChange)=\"onChange()\" [showTime]=\"true\" [showSeconds]=\"true\" [placeholder]=\"translationsObject.fieldsPlaceholders.datetime\" [displayInlineBlock]=\"true\"></w-edit-calendar>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Decimal.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber class=\"flex flex-1\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" mode=\"decimal\" [minFractionDigits]=\"2\" [maxFractionDigits]=\"5\" [min]=\"0\" [max]=\"100\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.decimal\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-list-field [options]=\"options\" [(ngModel)]=\"rule.value\" [operator]=\"rule.operator\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></w-list-field>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Number.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber [useGrouping]=\"false\" inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"field-gap w-edit-input-number-small w-edit-input-number-small-height\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" [min]=\"0\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.number\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Text.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width\">\r\n <input class=\"field-gap w-edit-input-text-small-height w-edit-input-text-small\" type=\"text\" pInputText [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.text\"/>\r\n </span>\r\n </ng-container>\r\n\r\n </query-builder>\r\n\r\n <ng-container *ngIf=\"isAdvancedSearch && groupedQuery.rules.length==0\" >\r\n <ng-container *ngTemplateOutlet=\"noQueryData\"></ng-container>\r\n </ng-container>\r\n </div>\r\n </div>\r\n </ng-template>\r\n\r\n <ng-template #noQueryData>\r\n <div class=\"flex justify-content-center flex-wrap card-container surface-50\">\r\n <div class=\"flex align-items-center justify-content-center w-full h-4rem text-gray-900 border-round m-2\">\r\n {{translationsObject.noRulesLabel}}\r\n </div>\r\n </div>\r\n </ng-template>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder,:host ::ng-deep .w-edit-select-small .p-dropdown .p-placeholder{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput,:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-focus,:host ::ng-deep .w-edit-select-small .p-dropdown:not(.p-disabled).p-focus,::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput,::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:hover{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,.w-button-small-tertiary-label-text,.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled,:host ::ng-deep .w-edit-select-small .p-disabled,::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:disabled{background-color:#f1f3f4!important;border-color:#e8ebee!important;opacity:1!important}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{color:#1f2224}.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder,:host ::ng-deep .w-edit-select-small .p-dropdown .p-placeholder{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled{color:#5f6468}.w-input-small-placeholder-text-disabled-only-color,:host ::ng-deep .w-edit-select-small .p-disabled .p-inputtext{color:#5f6468}.w-input-small-text-icon,.w-input-small-select-options-text{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,.w-input-medium-placeholder-text-only-color{color:#1f2224}.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text-disabled-only-color{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px;pointer-events:none}::ng-deep .p-tooltip.p-tooltip-left,.p-tooltip.p-tooltip-left{margin-right:6px;width:max-content;transform:translate(-6px)}::ng-deep .p-tooltip.p-tooltip-left .p-tooltip-arrow,.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#fff!important;top:50%;right:-3px;margin-top:-4px;border-width:4px 0 4px 6px!important}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.grid{display:flex;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem;margin-top:-.5rem}.grid>.col,.grid>[class*=col]{box-sizing:border-box}.grid-nogutter{margin-right:0;margin-left:0;margin-top:0}.grid-nogutter>.col,.grid-nogutter>[class*=col-]{padding:0}.col{flex-grow:1;flex-basis:0;padding:.5rem}.col-fixed{flex:0 0 auto;padding:.5rem}.col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.col-3{flex:0 0 auto;padding:.5rem;width:25%}.col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.col-6{flex:0 0 auto;padding:.5rem;width:50%}.col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.col-9{flex:0 0 auto;padding:.5rem;width:75%}.col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.col-12{flex:0 0 auto;padding:.5rem;width:100%}@media screen and (min-width: 576px){.sm\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.sm\\:col-fixed{flex:0 0 auto;padding:.5rem}.sm\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.sm\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.sm\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.sm\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.sm\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.sm\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.sm\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.sm\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.sm\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.sm\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.sm\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.sm\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 768px){.md\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.md\\:col-fixed{flex:0 0 auto;padding:.5rem}.md\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.md\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.md\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.md\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.md\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.md\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.md\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.md\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.md\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.md\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.md\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.md\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 992px){.lg\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.lg\\:col-fixed{flex:0 0 auto;padding:.5rem}.lg\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.lg\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.lg\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.lg\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.lg\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.lg\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.lg\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.lg\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.lg\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.lg\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.lg\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.lg\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 1200px){.xl\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.xl\\:col-fixed{flex:0 0 auto;padding:.5rem}.xl\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.xl\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.xl\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.xl\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.xl\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.xl\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.xl\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.xl\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.xl\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.xl\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.xl\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.xl\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}.col-offset-0{margin-left:0!important}.col-offset-1{margin-left:8.3333%!important}.col-offset-2{margin-left:16.6667%!important}.col-offset-3{margin-left:25%!important}.col-offset-4{margin-left:33.3333%!important}.col-offset-5{margin-left:41.6667%!important}.col-offset-6{margin-left:50%!important}.col-offset-7{margin-left:58.3333%!important}.col-offset-8{margin-left:66.6667%!important}.col-offset-9{margin-left:75%!important}.col-offset-10{margin-left:83.3333%!important}.col-offset-11{margin-left:91.6667%!important}.col-offset-12{margin-left:100%!important}@media screen and (min-width: 576px){.sm\\:col-offset-0{margin-left:0!important}.sm\\:col-offset-1{margin-left:8.3333%!important}.sm\\:col-offset-2{margin-left:16.6667%!important}.sm\\:col-offset-3{margin-left:25%!important}.sm\\:col-offset-4{margin-left:33.3333%!important}.sm\\:col-offset-5{margin-left:41.6667%!important}.sm\\:col-offset-6{margin-left:50%!important}.sm\\:col-offset-7{margin-left:58.3333%!important}.sm\\:col-offset-8{margin-left:66.6667%!important}.sm\\:col-offset-9{margin-left:75%!important}.sm\\:col-offset-10{margin-left:83.3333%!important}.sm\\:col-offset-11{margin-left:91.6667%!important}.sm\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 768px){.md\\:col-offset-0{margin-left:0!important}.md\\:col-offset-1{margin-left:8.3333%!important}.md\\:col-offset-2{margin-left:16.6667%!important}.md\\:col-offset-3{margin-left:25%!important}.md\\:col-offset-4{margin-left:33.3333%!important}.md\\:col-offset-5{margin-left:41.6667%!important}.md\\:col-offset-6{margin-left:50%!important}.md\\:col-offset-7{margin-left:58.3333%!important}.md\\:col-offset-8{margin-left:66.6667%!important}.md\\:col-offset-9{margin-left:75%!important}.md\\:col-offset-10{margin-left:83.3333%!important}.md\\:col-offset-11{margin-left:91.6667%!important}.md\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 992px){.lg\\:col-offset-0{margin-left:0!important}.lg\\:col-offset-1{margin-left:8.3333%!important}.lg\\:col-offset-2{margin-left:16.6667%!important}.lg\\:col-offset-3{margin-left:25%!important}.lg\\:col-offset-4{margin-left:33.3333%!important}.lg\\:col-offset-5{margin-left:41.6667%!important}.lg\\:col-offset-6{margin-left:50%!important}.lg\\:col-offset-7{margin-left:58.3333%!important}.lg\\:col-offset-8{margin-left:66.6667%!important}.lg\\:col-offset-9{margin-left:75%!important}.lg\\:col-offset-10{margin-left:83.3333%!important}.lg\\:col-offset-11{margin-left:91.6667%!important}.lg\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 1200px){.xl\\:col-offset-0{margin-left:0!important}.xl\\:col-offset-1{margin-left:8.3333%!important}.xl\\:col-offset-2{margin-left:16.6667%!important}.xl\\:col-offset-3{margin-left:25%!important}.xl\\:col-offset-4{margin-left:33.3333%!important}.xl\\:col-offset-5{margin-left:41.6667%!important}.xl\\:col-offset-6{margin-left:50%!important}.xl\\:col-offset-7{margin-left:58.3333%!important}.xl\\:col-offset-8{margin-left:66.6667%!important}.xl\\:col-offset-9{margin-left:75%!important}.xl\\:col-offset-10{margin-left:83.3333%!important}.xl\\:col-offset-11{margin-left:91.6667%!important}.xl\\:col-offset-12{margin-left:100%!important}}.text-0{color:var(--surface-0)!important}.text-50{color:var(--surface-50)!important}.text-100{color:var(--surface-100)!important}.text-200{color:var(--surface-200)!important}.text-300{color:var(--surface-300)!important}.text-400{color:var(--surface-400)!important}.text-500{color:var(--surface-500)!important}.text-600{color:var(--surface-600)!important}.text-700{color:var(--surface-700)!important}.text-800{color:var(--surface-800)!important}.text-900{color:var(--surface-900)!important}.focus\\:text-0:focus{color:var(--surface-0)!important}.hover\\:text-0:hover,.active\\:text-0:active{color:var(--surface-0)!important}.focus\\:text-50:focus{color:var(--surface-50)!important}.hover\\:text-50:hover,.active\\:text-50:active{color:var(--surface-50)!important}.focus\\:text-100:focus{color:var(--surface-100)!important}.hover\\:text-100:hover,.active\\:text-100:active{color:var(--surface-100)!important}.focus\\:text-200:focus{color:var(--surface-200)!important}.hover\\:text-200:hover,.active\\:text-200:active{color:var(--surface-200)!important}.focus\\:text-300:focus{color:var(--surface-300)!important}.hover\\:text-300:hover,.active\\:text-300:active{color:var(--surface-300)!important}.focus\\:text-400:focus{color:var(--surface-400)!important}.hover\\:text-400:hover,.active\\:text-400:active{color:var(--surface-400)!important}.focus\\:text-500:focus{color:var(--surface-500)!important}.hover\\:text-500:hover,.active\\:text-500:active{color:var(--surface-500)!important}.focus\\:text-600:focus{color:var(--surface-600)!important}.hover\\:text-600:hover,.active\\:text-600:active{color:var(--surface-600)!important}.focus\\:text-700:focus{color:var(--surface-700)!important}.hover\\:text-700:hover,.active\\:text-700:active{color:var(--surface-700)!important}.focus\\:text-800:focus{color:var(--surface-800)!important}.hover\\:text-800:hover,.active\\:text-800:active{color:var(--surface-800)!important}.focus\\:text-900:focus{color:var(--surface-900)!important}.hover\\:text-900:hover,.active\\:text-900:active{color:var(--surface-900)!important}.surface-0{background-color:var(--surface-0)!important}.surface-50{background-color:var(--surface-50)!important}.surface-100{background-color:var(--surface-100)!important}.surface-200{background-color:var(--surface-200)!important}.surface-300{background-color:var(--surface-300)!important}.surface-400{background-color:var(--surface-400)!important}.surface-500{background-color:var(--surface-500)!important}.surface-600{background-color:var(--surface-600)!important}.surface-700{background-color:var(--surface-700)!important}.surface-800{background-color:var(--surface-800)!important}.surface-900{background-color:var(--surface-900)!important}.focus\\:surface-0:focus{background-color:var(--surface-0)!important}.hover\\:surface-0:hover,.active\\:surface-0:active{background-color:var(--surface-0)!important}.focus\\:surface-50:focus{background-color:var(--surface-50)!important}.hover\\:surface-50:hover,.active\\:surface-50:active{background-color:var(--surface-50)!important}.focus\\:surface-100:focus{background-color:var(--surface-100)!important}.hover\\:surface-100:hover,.active\\:surface-100:active{background-color:var(--surface-100)!important}.focus\\:surface-200:focus{background-color:var(--surface-200)!important}.hover\\:surface-200:hover,.active\\:surface-200:active{background-color:var(--surface-200)!important}.focus\\:surface-300:focus{background-color:var(--surface-300)!important}.hover\\:surface-300:hover,.active\\:surface-300:active{background-color:var(--surface-300)!important}.focus\\:surface-400:focus{background-color:var(--surface-400)!important}.hover\\:surface-400:hover,.active\\:surface-400:active{background-color:var(--surface-400)!important}.focus\\:surface-500:focus{background-color:var(--surface-500)!important}.hover\\:surface-500:hover,.active\\:surface-500:active{background-color:var(--surface-500)!important}.focus\\:surface-600:focus{background-color:var(--surface-600)!important}.hover\\:surface-600:hover,.active\\:surface-600:active{background-color:var(--surface-600)!important}.focus\\:surface-700:focus{background-color:var(--surface-700)!important}.hover\\:surface-700:hover,.active\\:surface-700:active{background-color:var(--surface-700)!important}.focus\\:surface-800:focus{background-color:var(--surface-800)!important}.hover\\:surface-800:hover,.active\\:surface-800:active{background-color:var(--surface-800)!important}.focus\\:surface-900:focus{background-color:var(--surface-900)!important}.hover\\:surface-900:hover,.active\\:surface-900:active{background-color:var(--surface-900)!important}.border-0{border-color:var(--surface-0)!important}.border-50{border-color:var(--surface-50)!important}.border-100{border-color:var(--surface-100)!important}.border-200{border-color:var(--surface-200)!important}.border-300{border-color:var(--surface-300)!important}.border-400{border-color:var(--surface-400)!important}.border-500{border-color:var(--surface-500)!important}.border-600{border-color:var(--surface-600)!important}.border-700{border-color:var(--surface-700)!important}.border-800{border-color:var(--surface-800)!important}.border-900{border-color:var(--surface-900)!important}.focus\\:border-0:focus{border-color:var(--surface-0)!important}.hover\\:border-0:hover,.active\\:border-0:active{border-color:var(--surface-0)!important}.focus\\:border-50:focus{border-color:var(--surface-50)!important}.hover\\:border-50:hover,.active\\:border-50:active{border-color:var(--surface-50)!important}.focus\\:border-100:focus{border-color:var(--surface-100)!important}.hover\\:border-100:hover,.active\\:border-100:active{border-color:var(--surface-100)!important}.focus\\:border-200:focus{border-color:var(--surface-200)!important}.hover\\:border-200:hover,.active\\:border-200:active{border-color:var(--surface-200)!important}.focus\\:border-300:focus{border-color:var(--surface-300)!important}.hover\\:border-300:hover,.active\\:border-300:active{border-color:var(--surface-300)!important}.focus\\:border-400:focus{border-color:var(--surface-400)!important}.hover\\:border-400:hover,.active\\:border-400:active{border-color:var(--surface-400)!important}.focus\\:border-500:focus{border-color:var(--surface-500)!important}.hover\\:border-500:hover,.active\\:border-500:active{border-color:var(--surface-500)!important}.focus\\:border-600:focus{border-color:var(--surface-600)!important}.hover\\:border-600:hover,.active\\:border-600:active{border-color:var(--surface-600)!important}.focus\\:border-700:focus{border-color:var(--surface-700)!important}.hover\\:border-700:hover,.active\\:border-700:active{border-color:var(--surface-700)!important}.focus\\:border-800:focus{border-color:var(--surface-800)!important}.hover\\:border-800:hover,.active\\:border-800:active{border-color:var(--surface-800)!important}.focus\\:border-900:focus{border-color:var(--surface-900)!important}.hover\\:border-900:hover,.active\\:border-900:active{border-color:var(--surface-900)!important}.bg-transparent{background-color:transparent!important}@media screen and (min-width: 576px){.sm\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 768px){.md\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:bg-transparent{background-color:transparent!important}}.border-transparent{border-color:transparent!important}@media screen and (min-width: 576px){.sm\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 768px){.md\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:border-transparent{border-color:transparent!important}}.text-blue-50{color:var(--blue-50)!important}.text-blue-100{color:var(--blue-100)!important}.text-blue-200{color:var(--blue-200)!important}.text-blue-300{color:var(--blue-300)!important}.text-blue-400{color:var(--blue-400)!important}.text-blue-500{color:var(--blue-500)!important}.text-blue-600{color:var(--blue-600)!important}.text-blue-700{color:var(--blue-700)!important}.text-blue-800{color:var(--blue-800)!important}.text-blue-900{color:var(--blue-900)!important}.focus\\:text-blue-50:focus{color:var(--blue-50)!important}.focus\\:text-blue-100:focus{color:var(--blue-100)!important}.focus\\:text-blue-200:focus{color:var(--blue-200)!important}.focus\\:text-blue-300:focus{color:var(--blue-300)!important}.focus\\:text-blue-400:focus{color:var(--blue-400)!important}.focus\\:text-blue-500:focus{color:var(--blue-500)!important}.focus\\:text-blue-600:focus{color:var(--blue-600)!important}.focus\\:text-blue-700:focus{color:var(--blue-700)!important}.focus\\:text-blue-800:focus{color:var(--blue-800)!important}.focus\\:text-blue-900:focus{color:var(--blue-900)!important}.hover\\:text-blue-50:hover{color:var(--blue-50)!important}.hover\\:text-blue-100:hover{color:var(--blue-100)!important}.hover\\:text-blue-200:hover{color:var(--blue-200)!important}.hover\\:text-blue-300:hover{color:var(--blue-300)!important}.hover\\:text-blue-400:hover{color:var(--blue-400)!important}.hover\\:text-blue-500:hover{color:var(--blue-500)!important}.hover\\:text-blue-600:hover{color:var(--blue-600)!important}.hover\\:text-blue-700:hover{color:var(--blue-700)!important}.hover\\:text-blue-800:hover{color:var(--blue-800)!important}.hover\\:text-blue-900:hover{color:var(--blue-900)!important}.active\\:text-blue-50:active{color:var(--blue-50)!important}.active\\:text-blue-100:active{color:var(--blue-100)!important}.active\\:text-blue-200:active{color:var(--blue-200)!important}.active\\:text-blue-300:active{color:var(--blue-300)!important}.active\\:text-blue-400:active{color:var(--blue-400)!important}.active\\:text-blue-500:active{color:var(--blue-500)!important}.active\\:text-blue-600:active{color:var(--blue-600)!important}.active\\:text-blue-700:active{color:var(--blue-700)!important}.active\\:text-blue-800:active{color:var(--blue-800)!important}.active\\:text-blue-900:active{color:var(--blue-900)!important}.text-green-50{color:var(--green-50)!important}.text-green-100{color:var(--green-100)!important}.text-green-200{color:var(--green-200)!important}.text-green-300{color:var(--green-300)!important}.text-green-400{color:var(--green-400)!important}.text-green-500{color:var(--green-500)!important}.text-green-600{color:var(--green-600)!important}.text-green-700{color:var(--green-700)!important}.text-green-800{color:var(--green-800)!important}.text-green-900{color:var(--green-900)!important}.focus\\:text-green-50:focus{color:var(--green-50)!important}.focus\\:text-green-100:focus{color:var(--green-100)!important}.focus\\:text-green-200:focus{color:var(--green-200)!important}.focus\\:text-green-300:focus{color:var(--green-300)!important}.focus\\:text-green-400:focus{color:var(--green-400)!important}.focus\\:text-green-500:focus{color:var(--green-500)!important}.focus\\:text-green-600:focus{color:var(--green-600)!important}.focus\\:text-green-700:focus{color:var(--green-700)!important}.focus\\:text-green-800:focus{color:var(--green-800)!important}.focus\\:text-green-900:focus{color:var(--green-900)!important}.hover\\:text-green-50:hover{color:var(--green-50)!important}.hover\\:text-green-100:hover{color:var(--green-100)!important}.hover\\:text-green-200:hover{color:var(--green-200)!important}.hover\\:text-green-300:hover{color:var(--green-300)!important}.hover\\:text-green-400:hover{color:var(--green-400)!important}.hover\\:text-green-500:hover{color:var(--green-500)!important}.hover\\:text-green-600:hover{color:var(--green-600)!important}.hover\\:text-green-700:hover{color:var(--green-700)!important}.hover\\:text-green-800:hover{color:var(--green-800)!important}.hover\\:text-green-900:hover{color:var(--green-900)!important}.active\\:text-green-50:active{color:var(--green-50)!important}.active\\:text-green-100:active{color:var(--green-100)!important}.active\\:text-green-200:active{color:var(--green-200)!important}.active\\:text-green-300:active{color:var(--green-300)!important}.active\\:text-green-400:active{color:var(--green-400)!important}.active\\:text-green-500:active{color:var(--green-500)!important}.active\\:text-green-600:active{color:var(--green-600)!important}.active\\:text-green-700:active{color:var(--green-700)!important}.active\\:text-green-800:active{color:var(--green-800)!important}.active\\:text-green-900:active{color:var(--green-900)!important}.text-yellow-50{color:var(--yellow-50)!important}.text-yellow-100{color:var(--yellow-100)!important}.text-yellow-200{color:var(--yellow-200)!important}.text-yellow-300{color:var(--yellow-300)!important}.text-yellow-400{color:var(--yellow-400)!important}.text-yellow-500{color:var(--yellow-500)!important}.text-yellow-600{color:var(--yellow-600)!important}.text-yellow-700{color:var(--yellow-700)!important}.text-yellow-800{color:var(--yellow-800)!important}.text-yellow-900{color:var(--yellow-900)!important}.focus\\:text-yellow-50:focus{color:var(--yellow-50)!important}.focus\\:text-yellow-100:focus{color:var(--yellow-100)!important}.focus\\:text-yellow-200:focus{color:var(--yellow-200)!important}.focus\\:text-yellow-300:focus{color:var(--yellow-300)!important}.focus\\:text-yellow-400:focus{color:var(--yellow-400)!important}.focus\\:text-yellow-500:focus{color:var(--yellow-500)!important}.focus\\:text-yellow-600:focus{color:var(--yellow-600)!important}.focus\\:text-yellow-700:focus{color:var(--yellow-700)!important}.focus\\:text-yellow-800:focus{color:var(--yellow-800)!important}.focus\\:text-yellow-900:focus{color:var(--yellow-900)!important}.hover\\:text-yellow-50:hover{color:var(--yellow-50)!important}.hover\\:text-yellow-100:hover{color:var(--yellow-100)!important}.hover\\:text-yellow-200:hover{color:var(--yellow-200)!important}.hover\\:text-yellow-300:hover{color:var(--yellow-300)!important}.hover\\:text-yellow-400:hover{color:var(--yellow-400)!important}.hover\\:text-yellow-500:hover{color:var(--yellow-500)!important}.hover\\:text-yellow-600:hover{color:var(--yellow-600)!important}.hover\\:text-yellow-700:hover{color:var(--yellow-700)!important}.hover\\:text-yellow-800:hover{color:var(--yellow-800)!important}.hover\\:text-yellow-900:hover{color:var(--yellow-900)!important}.active\\:text-yellow-50:active{color:var(--yellow-50)!important}.active\\:text-yellow-100:active{color:var(--yellow-100)!important}.active\\:text-yellow-200:active{color:var(--yellow-200)!important}.active\\:text-yellow-300:active{color:var(--yellow-300)!important}.active\\:text-yellow-400:active{color:var(--yellow-400)!important}.active\\:text-yellow-500:active{color:var(--yellow-500)!important}.active\\:text-yellow-600:active{color:var(--yellow-600)!important}.active\\:text-yellow-700:active{color:var(--yellow-700)!important}.active\\:text-yellow-800:active{color:var(--yellow-800)!important}.active\\:text-yellow-900:active{color:var(--yellow-900)!important}.text-cyan-50{color:var(--cyan-50)!important}.text-cyan-100{color:var(--cyan-100)!important}.text-cyan-200{color:var(--cyan-200)!important}.text-cyan-300{color:var(--cyan-300)!important}.text-cyan-400{color:var(--cyan-400)!important}.text-cyan-500{color:var(--cyan-500)!important}.text-cyan-600{color:var(--cyan-600)!important}.text-cyan-700{color:var(--cyan-700)!important}.text-cyan-800{color:var(--cyan-800)!important}.text-cyan-900{color:var(--cyan-900)!important}.focus\\:text-cyan-50:focus{color:var(--cyan-50)!important}.focus\\:text-cyan-100:focus{color:var(--cyan-100)!important}.focus\\:text-cyan-200:focus{color:var(--cyan-200)!important}.focus\\:text-cyan-300:focus{color:var(--cyan-300)!important}.focus\\:text-cyan-400:focus{color:var(--cyan-400)!important}.focus\\:text-cyan-500:focus{color:var(--cyan-500)!important}.focus\\:text-cyan-600:focus{color:var(--cyan-600)!important}.focus\\:text-cyan-700:focus{color:var(--cyan-700)!important}.focus\\:text-cyan-800:focus{color:var(--cyan-800)!important}.focus\\:text-cyan-900:focus{color:var(--cyan-900)!important}.hover\\:text-cyan-50:hover{color:var(--cyan-50)!important}.hover\\:text-cyan-100:hover{color:var(--cyan-100)!important}.hover\\:text-cyan-200:hover{color:var(--cyan-200)!important}.hover\\:text-cyan-300:hover{color:var(--cyan-300)!important}.hover\\:text-cyan-400:hover{color:var(--cyan-400)!important}.hover\\:text-cyan-500:hover{color:var(--cyan-500)!important}.hover\\:text-cyan-600:hover{color:var(--cyan-600)!important}.hover\\:text-cyan-700:hover{color:var(--cyan-700)!important}.hover\\:text-cyan-800:hover{color:var(--cyan-800)!important}.hover\\:text-cyan-900:hover{color:var(--cyan-900)!important}.active\\:text-cyan-50:active{color:var(--cyan-50)!important}.active\\:text-cyan-100:active{color:var(--cyan-100)!important}.active\\:text-cyan-200:active{color:var(--cyan-200)!important}.active\\:text-cyan-300:active{color:var(--cyan-300)!important}.active\\:text-cyan-400:active{color:var(--cyan-400)!important}.active\\:text-cyan-500:active{color:var(--cyan-500)!important}.active\\:text-cyan-600:active{color:var(--cyan-600)!important}.active\\:text-cyan-700:active{color:var(--cyan-700)!important}.active\\:text-cyan-800:active{color:var(--cyan-800)!important}.active\\:text-cyan-900:active{color:var(--cyan-900)!important}.text-pink-50{color:var(--pink-50)!important}.text-pink-100{color:var(--pink-100)!important}.text-pink-200{color:var(--pink-200)!important}.text-pink-300{color:var(--pink-300)!important}.text-pink-400{color:var(--pink-400)!important}.text-pink-500{color:var(--pink-500)!important}.text-pink-600{color:var(--pink-600)!important}.text-pink-700{color:var(--pink-700)!important}.text-pink-800{color:var(--pink-800)!important}.text-pink-900{color:var(--pink-900)!important}.focus\\:text-pink-50:focus{color:var(--pink-50)!important}.focus\\:text-pink-100:focus{color:var(--pink-100)!important}.focus\\:text-pink-200:focus{color:var(--pink-200)!important}.focus\\:text-pink-300:focus{color:var(--pink-300)!important}.focus\\:text-pink-400:focus{color:var(--pink-400)!important}.focus\\:text-pink-500:focus{color:var(--pink-500)!important}.focus\\:text-pink-600:focus{color:var(--pink-600)!important}.focus\\:text-pink-700:focus{color:var(--pink-700)!important}.focus\\:text-pink-800:focus{color:var(--pink-800)!important}.focus\\:text-pink-900:focus{color:var(--pink-900)!important}.hover\\:text-pink-50:hover{color:var(--pink-50)!important}.hover\\:text-pink-100:hover{color:var(--pink-100)!important}.hover\\:text-pink-200:hover{color:var(--pink-200)!important}.hover\\:text-pink-300:hover{color:var(--pink-300)!important}.hover\\:text-pink-400:hover{color:var(--pink-400)!important}.hover\\:text-pink-500:hover{color:var(--pink-500)!important}.hover\\:text-pink-600:hover{color:var(--pink-600)!important}.hover\\:text-pink-700:hover{color:var(--pink-700)!important}.hover\\:text-pink-800:hover{color:var(--pink-800)!important}.hover\\:text-pink-900:hover{color:var(--pink-900)!important}.active\\:text-pink-50:active{color:var(--pink-50)!important}.active\\:text-pink-100:active{color:var(--pink-100)!important}.active\\:text-pink-200:active{color:var(--pink-200)!important}.active\\:text-pink-300:active{color:var(--pink-300)!important}.active\\:text-pink-400:active{color:var(--pink-400)!important}.active\\:text-pink-500:active{color:var(--pink-500)!important}.active\\:text-pink-600:active{color:var(--pink-600)!important}.active\\:text-pink-700:active{color:var(--pink-700)!important}.active\\:text-pink-800:active{color:var(--pink-800)!important}.active\\:text-pink-900:active{color:var(--pink-900)!important}.text-indigo-50{color:var(--indigo-50)!important}.text-indigo-100{color:var(--indigo-100)!important}.text-indigo-200{color:var(--indigo-200)!important}.text-indigo-300{color:var(--indigo-300)!important}.text-indigo-400{color:var(--indigo-400)!important}.text-indigo-500{color:var(--indigo-500)!important}.text-indigo-600{color:var(--indigo-600)!important}.text-indigo-700{color:var(--indigo-700)!important}.text-indigo-800{color:var(--indigo-800)!important}.text-indigo-900{color:var(--indigo-900)!important}.focus\\:text-indigo-50:focus{color:var(--indigo-50)!important}.focus\\:text-indigo-100:focus{color:var(--indigo-100)!important}.focus\\:text-indigo-200:focus{color:var(--indigo-200)!important}.focus\\:text-indigo-300:focus{color:var(--indigo-300)!important}.focus\\:text-indigo-400:focus{color:var(--indigo-400)!important}.focus\\:text-indigo-500:focus{color:var(--indigo-500)!important}.focus\\:text-indigo-600:focus{color:var(--indigo-600)!important}.focus\\:text-indigo-700:focus{color:var(--indigo-700)!important}.focus\\:text-indigo-800:focus{color:var(--indigo-800)!important}.focus\\:text-indigo-900:focus{color:var(--indigo-900)!important}.hover\\:text-indigo-50:hover{color:var(--indigo-50)!important}.hover\\:text-indigo-100:hover{color:var(--indigo-100)!important}.hover\\:text-indigo-200:hover{color:var(--indigo-200)!important}.hover\\:text-indigo-300:hover{color:var(--indigo-300)!important}.hover\\:text-indigo-400:hover{color:var(--indigo-400)!important}.hover\\:text-indigo-500:hover{color:var(--indigo-500)!important}.hover\\:text-indigo-600:hover{color:var(--indigo-600)!important}.hover\\:text-indigo-700:hover{color:var(--indigo-700)!important}.hover\\:text-indigo-800:hover{color:var(--indigo-800)!important}.hover\\:text-indigo-900:hover{color:var(--indigo-900)!important}.active\\:text-indigo-50:active{color:var(--indigo-50)!important}.active\\:text-indigo-100:active{color:var(--indigo-100)!important}.active\\:text-indigo-200:active{color:var(--indigo-200)!important}.active\\:text-indigo-300:active{color:var(--indigo-300)!important}.active\\:text-indigo-400:active{color:var(--indigo-400)!important}.active\\:text-indigo-500:active{color:var(--indigo-500)!important}.active\\:text-indigo-600:active{color:var(--indigo-600)!important}.active\\:text-indigo-700:active{color:var(--indigo-700)!important}.active\\:text-indigo-800:active{color:var(--indigo-800)!important}.active\\:text-indigo-900:active{color:var(--indigo-900)!important}.text-teal-50{color:var(--teal-50)!important}.text-teal-100{color:var(--teal-100)!important}.text-teal-200{color:var(--teal-200)!important}.text-teal-300{color:var(--teal-300)!important}.text-teal-400{color:var(--teal-400)!important}.text-teal-500{color:var(--teal-500)!important}.text-teal-600{color:var(--teal-600)!important}.text-teal-700{color:var(--teal-700)!important}.text-teal-800{color:var(--teal-800)!important}.text-teal-900{color:var(--teal-900)!important}.focus\\:text-teal-50:focus{color:var(--teal-50)!important}.focus\\:text-teal-100:focus{color:var(--teal-100)!important}.focus\\:text-teal-200:focus{color:var(--teal-200)!important}.focus\\:text-teal-300:focus{color:var(--teal-300)!important}.focus\\:text-teal-400:focus{color:var(--teal-400)!important}.focus\\:text-teal-500:focus{color:var(--teal-500)!important}.focus\\:text-teal-600:focus{color:var(--teal-600)!important}.focus\\:text-teal-700:focus{color:var(--teal-700)!important}.focus\\:text-teal-800:focus{color:var(--teal-800)!important}.focus\\:text-teal-900:focus{color:var(--teal-900)!important}.hover\\:text-teal-50:hover{color:var(--teal-50)!important}.hover\\:text-teal-100:hover{color:var(--teal-100)!important}.hover\\:text-teal-200:hover{color:var(--teal-200)!important}.hover\\:text-teal-300:hover{color:var(--teal-300)!important}.hover\\:text-teal-400:hover{color:var(--teal-400)!important}.hover\\:text-teal-500:hover{color:var(--teal-500)!important}.hover\\:text-teal-600:hover{color:var(--teal-600)!important}.hover\\:text-teal-700:hover{color:var(--teal-700)!important}.hover\\:text-teal-800:hover{color:var(--teal-800)!important}.hover\\:text-teal-900:hover{color:var(--teal-900)!important}.active\\:text-teal-50:active{color:var(--teal-50)!important}.active\\:text-teal-100:active{color:var(--teal-100)!important}.active\\:text-teal-200:active{color:var(--teal-200)!important}.active\\:text-teal-300:active{color:var(--teal-300)!important}.active\\:text-teal-400:active{color:var(--teal-400)!important}.active\\:text-teal-500:active{color:var(--teal-500)!important}.active\\:text-teal-600:active{color:var(--teal-600)!important}.active\\:text-teal-700:active{color:var(--teal-700)!important}.active\\:text-teal-800:active{color:var(--teal-800)!important}.active\\:text-teal-900:active{color:var(--teal-900)!important}.text-orange-50{color:var(--orange-50)!important}.text-orange-100{color:var(--orange-100)!important}.text-orange-200{color:var(--orange-200)!important}.text-orange-300{color:var(--orange-300)!important}.text-orange-400{color:var(--orange-400)!important}.text-orange-500{color:var(--orange-500)!important}.text-orange-600{color:var(--orange-600)!important}.text-orange-700{color:var(--orange-700)!important}.text-orange-800{color:var(--orange-800)!important}.text-orange-900{color:var(--orange-900)!important}.focus\\:text-orange-50:focus{color:var(--orange-50)!important}.focus\\:text-orange-100:focus{color:var(--orange-100)!important}.focus\\:text-orange-200:focus{color:var(--orange-200)!important}.focus\\:text-orange-300:focus{color:var(--orange-300)!important}.focus\\:text-orange-400:focus{color:var(--orange-400)!important}.focus\\:text-orange-500:focus{color:var(--orange-500)!important}.focus\\:text-orange-600:focus{color:var(--orange-600)!important}.focus\\:text-orange-700:focus{color:var(--orange-700)!important}.focus\\:text-orange-800:focus{color:var(--orange-800)!important}.focus\\:text-orange-900:focus{color:var(--orange-900)!important}.hover\\:text-orange-50:hover{color:var(--orange-50)!important}.hover\\:text-orange-100:hover{color:var(--orange-100)!important}.hover\\:text-orange-200:hover{color:var(--orange-200)!important}.hover\\:text-orange-300:hover{color:var(--orange-300)!important}.hover\\:text-orange-400:hover{color:var(--orange-400)!important}.hover\\:text-orange-500:hover{color:var(--orange-500)!important}.hover\\:text-orange-600:hover{color:var(--orange-600)!important}.hover\\:text-orange-700:hover{color:var(--orange-700)!important}.hover\\:text-orange-800:hover{color:var(--orange-800)!important}.hover\\:text-orange-900:hover{color:var(--orange-900)!important}.active\\:text-orange-50:active{color:var(--orange-50)!important}.active\\:text-orange-100:active{color:var(--orange-100)!important}.active\\:text-orange-200:active{color:var(--orange-200)!important}.active\\:text-orange-300:active{color:var(--orange-300)!important}.active\\:text-orange-400:active{color:var(--orange-400)!important}.active\\:text-orange-500:active{color:var(--orange-500)!important}.active\\:text-orange-600:active{color:var(--orange-600)!important}.active\\:text-orange-700:active{color:var(--orange-700)!important}.active\\:text-orange-800:active{color:var(--orange-800)!important}.active\\:text-orange-900:active{color:var(--orange-900)!important}.text-bluegray-50{color:var(--bluegray-50)!important}.text-bluegray-100{color:var(--bluegray-100)!important}.text-bluegray-200{color:var(--bluegray-200)!important}.text-bluegray-300{color:var(--bluegray-300)!important}.text-bluegray-400{color:var(--bluegray-400)!important}.text-bluegray-500{color:var(--bluegray-500)!important}.text-bluegray-600{color:var(--bluegray-600)!important}.text-bluegray-700{color:var(--bluegray-700)!important}.text-bluegray-800{color:var(--bluegray-800)!important}.text-bluegray-900{color:var(--bluegray-900)!important}.focus\\:text-bluegray-50:focus{color:var(--bluegray-50)!important}.focus\\:text-bluegray-100:focus{color:var(--bluegray-100)!important}.focus\\:text-bluegray-200:focus{color:var(--bluegray-200)!important}.focus\\:text-bluegray-300:focus{color:var(--bluegray-300)!important}.focus\\:text-bluegray-400:focus{color:var(--bluegray-400)!important}.focus\\:text-bluegray-500:focus{color:var(--bluegray-500)!important}.focus\\:text-bluegray-600:focus{color:var(--bluegray-600)!important}.focus\\:text-bluegray-700:focus{color:var(--bluegray-700)!important}.focus\\:text-bluegray-800:focus{color:var(--bluegray-800)!important}.focus\\:text-bluegray-900:focus{color:var(--bluegray-900)!important}.hover\\:text-bluegray-50:hover{color:var(--bluegray-50)!important}.hover\\:text-bluegray-100:hover{color:var(--bluegray-100)!important}.hover\\:text-bluegray-200:hover{color:var(--bluegray-200)!important}.hover\\:text-bluegray-300:hover{color:var(--bluegray-300)!important}.hover\\:text-bluegray-400:hover{color:var(--bluegray-400)!important}.hover\\:text-bluegray-500:hover{color:var(--bluegray-500)!important}.hover\\:text-bluegray-600:hover{color:var(--bluegray-600)!important}.hover\\:text-bluegray-700:hover{color:var(--bluegray-700)!important}.hover\\:text-bluegray-800:hover{color:var(--bluegray-800)!important}.hover\\:text-bluegray-900:hover{color:var(--bluegray-900)!important}.active\\:text-bluegray-50:active{color:var(--bluegray-50)!important}.active\\:text-bluegray-100:active{color:var(--bluegray-100)!important}.active\\:text-bluegray-200:active{color:var(--bluegray-200)!important}.active\\:text-bluegray-300:active{color:var(--bluegray-300)!important}.active\\:text-bluegray-400:active{color:var(--bluegray-400)!important}.active\\:text-bluegray-500:active{color:var(--bluegray-500)!important}.active\\:text-bluegray-600:active{color:var(--bluegray-600)!important}.active\\:text-bluegray-700:active{color:var(--bluegray-700)!important}.active\\:text-bluegray-800:active{color:var(--bluegray-800)!important}.active\\:text-bluegray-900:active{color:var(--bluegray-900)!important}.text-purple-50{color:var(--purple-50)!important}.text-purple-100{color:var(--purple-100)!important}.text-purple-200{color:var(--purple-200)!important}.text-purple-300{color:var(--purple-300)!important}.text-purple-400{color:var(--purple-400)!important}.text-purple-500{color:var(--purple-500)!important}.text-purple-600{color:var(--purple-600)!important}.text-purple-700{color:var(--purple-700)!important}.text-purple-800{color:var(--purple-800)!important}.text-purple-900{color:var(--purple-900)!important}.focus\\:text-purple-50:focus{color:var(--purple-50)!important}.focus\\:text-purple-100:focus{color:var(--purple-100)!important}.focus\\:text-purple-200:focus{color:var(--purple-200)!important}.focus\\:text-purple-300:focus{color:var(--purple-300)!important}.focus\\:text-purple-400:focus{color:var(--purple-400)!important}.focus\\:text-purple-500:focus{color:var(--purple-500)!important}.focus\\:text-purple-600:focus{color:var(--purple-600)!important}.focus\\:text-purple-700:focus{color:var(--purple-700)!important}.focus\\:text-purple-800:focus{color:var(--purple-800)!important}.focus\\:text-purple-900:focus{color:var(--purple-900)!important}.hover\\:text-purple-50:hover{color:var(--purple-50)!important}.hover\\:text-purple-100:hover{color:var(--purple-100)!important}.hover\\:text-purple-200:hover{color:var(--purple-200)!important}.hover\\:text-purple-300:hover{color:var(--purple-300)!important}.hover\\:text-purple-400:hover{color:var(--purple-400)!important}.hover\\:text-purple-500:hover{color:var(--purple-500)!important}.hover\\:text-purple-600:hover{color:var(--purple-600)!important}.hover\\:text-purple-700:hover{color:var(--purple-700)!important}.hover\\:text-purple-800:hover{color:var(--purple-800)!important}.hover\\:text-purple-900:hover{color:var(--purple-900)!important}.active\\:text-purple-50:active{color:var(--purple-50)!important}.active\\:text-purple-100:active{color:var(--purple-100)!important}.active\\:text-purple-200:active{color:var(--purple-200)!important}.active\\:text-purple-300:active{color:var(--purple-300)!important}.active\\:text-purple-400:active{color:var(--purple-400)!important}.active\\:text-purple-500:active{color:var(--purple-500)!important}.active\\:text-purple-600:active{color:var(--purple-600)!important}.active\\:text-purple-700:active{color:var(--purple-700)!important}.active\\:text-purple-800:active{color:var(--purple-800)!important}.active\\:text-purple-900:active{color:var(--purple-900)!important}.text-gray-50{color:var(--gray-50)!important}.text-gray-100{color:var(--gray-100)!important}.text-gray-200{color:var(--gray-200)!important}.text-gray-300{color:var(--gray-300)!important}.text-gray-400{color:var(--gray-400)!important}.text-gray-500{color:var(--gray-500)!important}.text-gray-600{color:var(--gray-600)!important}.text-gray-700{color:var(--gray-700)!important}.text-gray-800{color:var(--gray-800)!important}.text-gray-900{color:var(--gray-900)!important}.focus\\:text-gray-50:focus{color:var(--gray-50)!important}.focus\\:text-gray-100:focus{color:var(--gray-100)!important}.focus\\:text-gray-200:focus{color:var(--gray-200)!important}.focus\\:text-gray-300:focus{color:var(--gray-300)!important}.focus\\:text-gray-400:focus{color:var(--gray-400)!important}.focus\\:text-gray-500:focus{color:var(--gray-500)!important}.focus\\:text-gray-600:focus{color:var(--gray-600)!important}.focus\\:text-gray-700:focus{color:var(--gray-700)!important}.focus\\:text-gray-800:focus{color:var(--gray-800)!important}.focus\\:text-gray-900:focus{color:var(--gray-900)!important}.hover\\:text-gray-50:hover{color:var(--gray-50)!important}.hover\\:text-gray-100:hover{color:var(--gray-100)!important}.hover\\:text-gray-200:hover{color:var(--gray-200)!important}.hover\\:text-gray-300:hover{color:var(--gray-300)!important}.hover\\:text-gray-400:hover{color:var(--gray-400)!important}.hover\\:text-gray-500:hover{color:var(--gray-500)!important}.hover\\:text-gray-600:hover{color:var(--gray-600)!important}.hover\\:text-gray-700:hover{color:var(--gray-700)!important}.hover\\:text-gray-800:hover{color:var(--gray-800)!important}.hover\\:text-gray-900:hover{color:var(--gray-900)!important}.active\\:text-gray-50:active{color:var(--gray-50)!important}.active\\:text-gray-100:active{color:var(--gray-100)!important}.active\\:text-gray-200:active{color:var(--gray-200)!important}.active\\:text-gray-300:active{color:var(--gray-300)!important}.active\\:text-gray-400:active{color:var(--gray-400)!important}.active\\:text-gray-500:active{color:var(--gray-500)!important}.active\\:text-gray-600:active{color:var(--gray-600)!important}.active\\:text-gray-700:active{color:var(--gray-700)!important}.active\\:text-gray-800:active{color:var(--gray-800)!important}.active\\:text-gray-900:active{color:var(--gray-900)!important}.text-red-50{color:var(--red-50)!important}.text-red-100{color:var(--red-100)!important}.text-red-200{color:var(--red-200)!important}.text-red-300{color:var(--red-300)!important}.text-red-400{color:var(--red-400)!important}.text-red-500{color:var(--red-500)!important}.text-red-600{color:var(--red-600)!important}.text-red-700{color:var(--red-700)!important}.text-red-800{color:var(--red-800)!important}.text-red-900{color:var(--red-900)!important}.focus\\:text-red-50:focus{color:var(--red-50)!important}.focus\\:text-red-100:focus{color:var(--red-100)!important}.focus\\:text-red-200:focus{color:var(--red-200)!important}.focus\\:text-red-300:focus{color:var(--red-300)!important}.focus\\:text-red-400:focus{color:var(--red-400)!important}.focus\\:text-red-500:focus{color:var(--red-500)!important}.focus\\:text-red-600:focus{color:var(--red-600)!important}.focus\\:text-red-700:focus{color:var(--red-700)!important}.focus\\:text-red-800:focus{color:var(--red-800)!important}.focus\\:text-red-900:focus{color:var(--red-900)!important}.hover\\:text-red-50:hover{color:var(--red-50)!important}.hover\\:text-red-100:hover{color:var(--red-100)!important}.hover\\:text-red-200:hover{color:var(--red-200)!important}.hover\\:text-red-300:hover{color:var(--red-300)!important}.hover\\:text-red-400:hover{color:var(--red-400)!important}.hover\\:text-red-500:hover{color:var(--red-500)!important}.hover\\:text-red-600:hover{color:var(--red-600)!important}.hover\\:text-red-700:hover{color:var(--red-700)!important}.hover\\:text-red-800:hover{color:var(--red-800)!important}.hover\\:text-red-900:hover{color:var(--red-900)!important}.active\\:text-red-50:active{color:var(--red-50)!important}.active\\:text-red-100:active{color:var(--red-100)!important}.active\\:text-red-200:active{color:var(--red-200)!important}.active\\:text-red-300:active{color:var(--red-300)!important}.active\\:text-red-400:active{color:var(--red-400)!important}.active\\:text-red-500:active{color:var(--red-500)!important}.active\\:text-red-600:active{color:var(--red-600)!important}.active\\:text-red-700:active{color:var(--red-700)!important}.active\\:text-red-800:active{color:var(--red-800)!important}.active\\:text-red-900:active{color:var(--red-900)!important}.text-primary-50{color:var(--primary-50)!important}.text-primary-100{color:var(--primary-100)!important}.text-primary-200{color:var(--primary-200)!important}.text-primary-300{color:var(--primary-300)!important}.text-primary-400{color:var(--primary-400)!important}.text-primary-500{color:var(--primary-500)!important}.text-primary-600{color:var(--primary-600)!important}.text-primary-700{color:var(--primary-700)!important}.text-primary-800{color:var(--primary-800)!important}.text-primary-900{color:var(--primary-900)!important}.focus\\:text-primary-50:focus{color:var(--primary-50)!important}.focus\\:text-primary-100:focus{color:var(--primary-100)!important}.focus\\:text-primary-200:focus{color:var(--primary-200)!important}.focus\\:text-primary-300:focus{color:var(--primary-300)!important}.focus\\:text-primary-400:focus{color:var(--primary-400)!important}.focus\\:text-primary-500:focus{color:var(--primary-500)!important}.focus\\:text-primary-600:focus{color:var(--primary-600)!important}.focus\\:text-primary-700:focus{color:var(--primary-700)!important}.focus\\:text-primary-800:focus{color:var(--primary-800)!important}.focus\\:text-primary-900:focus{color:var(--primary-900)!important}.hover\\:text-primary-50:hover{color:var(--primary-50)!important}.hover\\:text-primary-100:hover{color:var(--primary-100)!important}.hover\\:text-primary-200:hover{color:var(--primary-200)!important}.hover\\:text-primary-300:hover{color:var(--primary-300)!important}.hover\\:text-primary-400:hover{color:var(--primary-400)!important}.hover\\:text-primary-500:hover{color:var(--primary-500)!important}.hover\\:text-primary-600:hover{color:var(--primary-600)!important}.hover\\:text-primary-700:hover{color:var(--primary-700)!important}.hover\\:text-primary-800:hover{color:var(--primary-800)!important}.hover\\:text-primary-900:hover{color:var(--primary-900)!important}.active\\:text-primary-50:active{color:var(--primary-50)!important}.active\\:text-primary-100:active{color:var(--primary-100)!important}.active\\:text-primary-200:active{color:var(--primary-200)!important}.active\\:text-primary-300:active{color:var(--primary-300)!important}.active\\:text-primary-400:active{color:var(--primary-400)!important}.active\\:text-primary-500:active{color:var(--primary-500)!important}.active\\:text-primary-600:active{color:var(--primary-600)!important}.active\\:text-primary-700:active{color:var(--primary-700)!important}.active\\:text-primary-800:active{color:var(--primary-800)!important}.active\\:text-primary-900:active{color:var(--primary-900)!important}.bg-blue-50{background-color:var(--blue-50)!important}.bg-blue-100{background-color:var(--blue-100)!important}.bg-blue-200{background-color:var(--blue-200)!important}.bg-blue-300{background-color:var(--blue-300)!important}.bg-blue-400{background-color:var(--blue-400)!important}.bg-blue-500{background-color:var(--blue-500)!important}.bg-blue-600{background-color:var(--blue-600)!important}.bg-blue-700{background-color:var(--blue-700)!important}.bg-blue-800{background-color:var(--blue-800)!important}.bg-blue-900{background-color:var(--blue-900)!important}.focus\\:bg-blue-50:focus{background-color:var(--blue-50)!important}.focus\\:bg-blue-100:focus{background-color:var(--blue-100)!important}.focus\\:bg-blue-200:focus{background-color:var(--blue-200)!important}.focus\\:bg-blue-300:focus{background-color:var(--blue-300)!important}.focus\\:bg-blue-400:focus{background-color:var(--blue-400)!important}.focus\\:bg-blue-500:focus{background-color:var(--blue-500)!important}.focus\\:bg-blue-600:focus{background-color:var(--blue-600)!important}.focus\\:bg-blue-700:focus{background-color:var(--blue-700)!important}.focus\\:bg-blue-800:focus{background-color:var(--blue-800)!important}.focus\\:bg-blue-900:focus{background-color:var(--blue-900)!important}.hover\\:bg-blue-50:hover{background-color:var(--blue-50)!important}.hover\\:bg-blue-100:hover{background-color:var(--blue-100)!important}.hover\\:bg-blue-200:hover{background-color:var(--blue-200)!important}.hover\\:bg-blue-300:hover{background-color:var(--blue-300)!important}.hover\\:bg-blue-400:hover{background-color:var(--blue-400)!important}.hover\\:bg-blue-500:hover{background-color:var(--blue-500)!important}.hover\\:bg-blue-600:hover{background-color:var(--blue-600)!important}.hover\\:bg-blue-700:hover{background-color:var(--blue-700)!important}.hover\\:bg-blue-800:hover{background-color:var(--blue-800)!important}.hover\\:bg-blue-900:hover{background-color:var(--blue-900)!important}.active\\:bg-blue-50:active{background-color:var(--blue-50)!important}.active\\:bg-blue-100:active{background-color:var(--blue-100)!important}.active\\:bg-blue-200:active{background-color:var(--blue-200)!important}.active\\:bg-blue-300:active{background-color:var(--blue-300)!important}.active\\:bg-blue-400:active{background-color:var(--blue-400)!important}.active\\:bg-blue-500:active{background-color:var(--blue-500)!important}.active\\:bg-blue-600:active{background-color:var(--blue-600)!important}.active\\:bg-blue-700:active{background-color:var(--blue-700)!important}.active\\:bg-blue-800:active{background-color:var(--blue-800)!important}.active\\:bg-blue-900:active{background-color:var(--blue-900)!important}.bg-green-50{background-color:var(--green-50)!important}.bg-green-100{background-color:var(--green-100)!important}.bg-green-200{background-color:var(--green-200)!important}.bg-green-300{background-color:var(--green-300)!important}.bg-green-400{background-color:var(--green-400)!important}.bg-green-500{background-color:var(--green-500)!important}.bg-green-600{background-color:var(--green-600)!important}.bg-green-700{background-color:var(--green-700)!important}.bg-green-800{background-color:var(--green-800)!important}.bg-green-900{background-color:var(--green-900)!important}.focus\\:bg-green-50:focus{background-color:var(--green-50)!important}.focus\\:bg-green-100:focus{background-color:var(--green-100)!important}.focus\\:bg-green-200:focus{background-color:var(--green-200)!important}.focus\\:bg-green-300:focus{background-color:var(--green-300)!important}.focus\\:bg-green-400:focus{background-color:var(--green-400)!important}.focus\\:bg-green-500:focus{background-color:var(--green-500)!important}.focus\\:bg-green-600:focus{background-color:var(--green-600)!important}.focus\\:bg-green-700:focus{background-color:var(--green-700)!important}.focus\\:bg-green-800:focus{background-color:var(--green-800)!important}.focus\\:bg-green-900:focus{background-color:var(--green-900)!important}.hover\\:bg-green-50:hover{background-color:var(--green-50)!important}.hover\\:bg-green-100:hover{background-color:var(--green-100)!important}.hover\\:bg-green-200:hover{background-color:var(--green-200)!important}.hover\\:bg-green-300:hover{background-color:var(--green-300)!important}.hover\\:bg-green-400:hover{background-color:var(--green-400)!important}.hover\\:bg-green-500:hover{background-color:var(--green-500)!important}.hover\\:bg-green-600:hover{background-color:var(--green-600)!important}.hover\\:bg-green-700:hover{background-color:var(--green-700)!important}.hover\\:bg-green-800:hover{background-color:var(--green-800)!important}.hover\\:bg-green-900:hover{background-color:var(--green-900)!important}.active\\:bg-green-50:active{background-color:var(--green-50)!important}.active\\:bg-green-100:active{background-color:var(--green-100)!important}.active\\:bg-green-200:active{background-color:var(--green-200)!important}.active\\:bg-green-300:active{background-color:var(--green-300)!important}.active\\:bg-green-400:active{background-color:var(--green-400)!important}.active\\:bg-green-500:active{background-color:var(--green-500)!important}.active\\:bg-green-600:active{background-color:var(--green-600)!important}.active\\:bg-green-700:active{background-color:var(--green-700)!important}.active\\:bg-green-800:active{background-color:var(--green-800)!important}.active\\:bg-green-900:active{background-color:var(--green-900)!important}.bg-yellow-50{background-color:var(--yellow-50)!important}.bg-yellow-100{background-color:var(--yellow-100)!important}.bg-yellow-200{background-color:var(--yellow-200)!important}.bg-yellow-300{background-color:var(--yellow-300)!important}.bg-yellow-400{background-color:var(--yellow-400)!important}.bg-yellow-500{background-color:var(--yellow-500)!important}.bg-yellow-600{background-color:var(--yellow-600)!important}.bg-yellow-700{background-color:var(--yellow-700)!important}.bg-yellow-800{background-color:var(--yellow-800)!important}.bg-yellow-900{background-color:var(--yellow-900)!important}.focus\\:bg-yellow-50:focus{background-color:var(--yellow-50)!important}.focus\\:bg-yellow-100:focus{background-color:var(--yellow-100)!important}.focus\\:bg-yellow-200:focus{background-color:var(--yellow-200)!important}.focus\\:bg-yellow-300:focus{background-color:var(--yellow-300)!important}.focus\\:bg-yellow-400:focus{background-color:var(--yellow-400)!important}.focus\\:bg-yellow-500:focus{background-color:var(--yellow-500)!important}.focus\\:bg-yellow-600:focus{background-color:var(--yellow-600)!important}.focus\\:bg-yellow-700:focus{background-color:var(--yellow-700)!important}.focus\\:bg-yellow-800:focus{background-color:var(--yellow-800)!important}.focus\\:bg-yellow-900:focus{background-color:var(--yellow-900)!important}.hover\\:bg-yellow-50:hover{background-color:var(--yellow-50)!important}.hover\\:bg-yellow-100:hover{background-color:var(--yellow-100)!important}.hover\\:bg-yellow-200:hover{background-color:var(--yellow-200)!important}.hover\\:bg-yellow-300:hover{background-color:var(--yellow-300)!important}.hover\\:bg-yellow-400:hover{background-color:var(--yellow-400)!important}.hover\\:bg-yellow-500:hover{background-color:var(--yellow-500)!important}.hover\\:bg-yellow-600:hover{background-color:var(--yellow-600)!important}.hover\\:bg-yellow-700:hover{background-color:var(--yellow-700)!important}.hover\\:bg-yellow-800:hover{background-color:var(--yellow-800)!important}.hover\\:bg-yellow-900:hover{background-color:var(--yellow-900)!important}.active\\:bg-yellow-50:active{background-color:var(--yellow-50)!important}.active\\:bg-yellow-100:active{background-color:var(--yellow-100)!important}.active\\:bg-yellow-200:active{background-color:var(--yellow-200)!important}.active\\:bg-yellow-300:active{background-color:var(--yellow-300)!important}.active\\:bg-yellow-400:active{background-color:var(--yellow-400)!important}.active\\:bg-yellow-500:active{background-color:var(--yellow-500)!important}.active\\:bg-yellow-600:active{background-color:var(--yellow-600)!important}.active\\:bg-yellow-700:active{background-color:var(--yellow-700)!important}.active\\:bg-yellow-800:active{background-color:var(--yellow-800)!important}.active\\:bg-yellow-900:active{background-color:var(--yellow-900)!important}.bg-cyan-50{background-color:var(--cyan-50)!important}.bg-cyan-100{background-color:var(--cyan-100)!important}.bg-cyan-200{background-color:var(--cyan-200)!important}.bg-cyan-300{background-color:var(--cyan-300)!important}.bg-cyan-400{background-color:var(--cyan-400)!important}.bg-cyan-500{background-color:var(--cyan-500)!important}.bg-cyan-600{background-color:var(--cyan-600)!important}.bg-cyan-700{background-color:var(--cyan-700)!important}.bg-cyan-800{background-color:var(--cyan-800)!important}.bg-cyan-900{background-color:var(--cyan-900)!important}.focus\\:bg-cyan-50:focus{background-color:var(--cyan-50)!important}.focus\\:bg-cyan-100:focus{background-color:var(--cyan-100)!important}.focus\\:bg-cyan-200:focus{background-color:var(--cyan-200)!important}.focus\\:bg-cyan-300:focus{background-color:var(--cyan-300)!important}.focus\\:bg-cyan-400:focus{background-color:var(--cyan-400)!important}.focus\\:bg-cyan-500:focus{background-color:var(--cyan-500)!important}.focus\\:bg-cyan-600:focus{background-color:var(--cyan-600)!important}.focus\\:bg-cyan-700:focus{background-color:var(--cyan-700)!important}.focus\\:bg-cyan-800:focus{background-color:var(--cyan-800)!important}.focus\\:bg-cyan-900:focus{background-color:var(--cyan-900)!important}.hover\\:bg-cyan-50:hover{background-color:var(--cyan-50)!important}.hover\\:bg-cyan-100:hover{background-color:var(--cyan-100)!important}.hover\\:bg-cyan-200:hover{background-color:var(--cyan-200)!important}.hover\\:bg-cyan-300:hover{background-color:var(--cyan-300)!important}.hover\\:bg-cyan-400:hover{background-color:var(--cyan-400)!important}.hover\\:bg-cyan-500:hover{background-color:var(--cyan-500)!important}.hover\\:bg-cyan-600:hover{background-color:var(--cyan-600)!important}.hover\\:bg-cyan-700:hover{background-color:var(--cyan-700)!important}.hover\\:bg-cyan-800:hover{background-color:var(--cyan-800)!important}.hover\\:bg-cyan-900:hover{background-color:var(--cyan-900)!important}.active\\:bg-cyan-50:active{background-color:var(--cyan-50)!important}.active\\:bg-cyan-100:active{background-color:var(--cyan-100)!important}.active\\:bg-cyan-200:active{background-color:var(--cyan-200)!important}.active\\:bg-cyan-300:active{background-color:var(--cyan-300)!important}.active\\:bg-cyan-400:active{background-color:var(--cyan-400)!important}.active\\:bg-cyan-500:active{background-color:var(--cyan-500)!important}.active\\:bg-cyan-600:active{background-color:var(--cyan-600)!important}.active\\:bg-cyan-700:active{background-color:var(--cyan-700)!important}.active\\:bg-cyan-800:active{background-color:var(--cyan-800)!important}.active\\:bg-cyan-900:active{background-color:var(--cyan-900)!important}.bg-pink-50{background-color:var(--pink-50)!important}.bg-pink-100{background-color:var(--pink-100)!important}.bg-pink-200{background-color:var(--pink-200)!important}.bg-pink-300{background-color:var(--pink-300)!important}.bg-pink-400{background-color:var(--pink-400)!important}.bg-pink-500{background-color:var(--pink-500)!important}.bg-pink-600{background-color:var(--pink-600)!important}.bg-pink-700{background-color:var(--pink-700)!important}.bg-pink-800{background-color:var(--pink-800)!important}.bg-pink-900{background-color:var(--pink-900)!important}.focus\\:bg-pink-50:focus{background-color:var(--pink-50)!important}.focus\\:bg-pink-100:focus{background-color:var(--pink-100)!important}.focus\\:bg-pink-200:focus{background-color:var(--pink-200)!important}.focus\\:bg-pink-300:focus{background-color:var(--pink-300)!important}.focus\\:bg-pink-400:focus{background-color:var(--pink-400)!important}.focus\\:bg-pink-500:focus{background-color:var(--pink-500)!important}.focus\\:bg-pink-600:focus{background-color:var(--pink-600)!important}.focus\\:bg-pink-700:focus{background-color:var(--pink-700)!important}.focus\\:bg-pink-800:focus{background-color:var(--pink-800)!important}.focus\\:bg-pink-900:focus{background-color:var(--pink-900)!important}.hover\\:bg-pink-50:hover{background-color:var(--pink-50)!important}.hover\\:bg-pink-100:hover{background-color:var(--pink-100)!important}.hover\\:bg-pink-200:hover{background-color:var(--pink-200)!important}.hover\\:bg-pink-300:hover{background-color:var(--pink-300)!important}.hover\\:bg-pink-400:hover{background-color:var(--pink-400)!important}.hover\\:bg-pink-500:hover{background-color:var(--pink-500)!important}.hover\\:bg-pink-600:hover{background-color:var(--pink-600)!important}.hover\\:bg-pink-700:hover{background-color:var(--pink-700)!important}.hover\\:bg-pink-800:hover{background-color:var(--pink-800)!important}.hover\\:bg-pink-900:hover{background-color:var(--pink-900)!important}.active\\:bg-pink-50:active{background-color:var(--pink-50)!important}.active\\:bg-pink-100:active{background-color:var(--pink-100)!important}.active\\:bg-pink-200:active{background-color:var(--pink-200)!important}.active\\:bg-pink-300:active{background-color:var(--pink-300)!important}.active\\:bg-pink-400:active{background-color:var(--pink-400)!important}.active\\:bg-pink-500:active{background-color:var(--pink-500)!important}.active\\:bg-pink-600:active{background-color:var(--pink-600)!important}.active\\:bg-pink-700:active{background-color:var(--pink-700)!important}.active\\:bg-pink-800:active{background-color:var(--pink-800)!important}.active\\:bg-pink-900:active{background-color:var(--pink-900)!important}.bg-indigo-50{background-color:var(--indigo-50)!important}.bg-indigo-100{background-color:var(--indigo-100)!important}.bg-indigo-200{background-color:var(--indigo-200)!important}.bg-indigo-300{background-color:var(--indigo-300)!important}.bg-indigo-400{background-color:var(--indigo-400)!important}.bg-indigo-500{background-color:var(--indigo-500)!important}.bg-indigo-600{background-color:var(--indigo-600)!important}.bg-indigo-700{background-color:var(--indigo-700)!important}.bg-indigo-800{background-color:var(--indigo-800)!important}.bg-indigo-900{background-color:var(--indigo-900)!important}.focus\\:bg-indigo-50:focus{background-color:var(--indigo-50)!important}.focus\\:bg-indigo-100:focus{background-color:var(--indigo-100)!important}.focus\\:bg-indigo-200:focus{background-color:var(--indigo-200)!important}.focus\\:bg-indigo-300:focus{background-color:var(--indigo-300)!important}.focus\\:bg-indigo-400:focus{background-color:var(--indigo-400)!important}.focus\\:bg-indigo-500:focus{background-color:var(--indigo-500)!important}.focus\\:bg-indigo-600:focus{background-color:var(--indigo-600)!important}.focus\\:bg-indigo-700:focus{background-color:var(--indigo-700)!important}.focus\\:bg-indigo-800:focus{background-color:var(--indigo-800)!important}.focus\\:bg-indigo-900:focus{background-color:var(--indigo-900)!important}.hover\\:bg-indigo-50:hover{background-color:var(--indigo-50)!important}.hover\\:bg-indigo-100:hover{background-color:var(--indigo-100)!important}.hover\\:bg-indigo-200:hover{background-color:var(--indigo-200)!important}.hover\\:bg-indigo-300:hover{background-color:var(--indigo-300)!important}.hover\\:bg-indigo-400:hover{background-color:var(--indigo-400)!important}.hover\\:bg-indigo-500:hover{background-color:var(--indigo-500)!important}.hover\\:bg-indigo-600:hover{background-color:var(--indigo-600)!important}.hover\\:bg-indigo-700:hover{background-color:var(--indigo-700)!important}.hover\\:bg-indigo-800:hover{background-color:var(--indigo-800)!important}.hover\\:bg-indigo-900:hover{background-color:var(--indigo-900)!important}.active\\:bg-indigo-50:active{background-color:var(--indigo-50)!important}.active\\:bg-indigo-100:active{background-color:var(--indigo-100)!important}.active\\:bg-indigo-200:active{background-color:var(--indigo-200)!important}.active\\:bg-indigo-300:active{background-color:var(--indigo-300)!important}.active\\:bg-indigo-400:active{background-color:var(--indigo-400)!important}.active\\:bg-indigo-500:active{background-color:var(--indigo-500)!important}.active\\:bg-indigo-600:active{background-color:var(--indigo-600)!important}.active\\:bg-indigo-700:active{background-color:var(--indigo-700)!important}.active\\:bg-indigo-800:active{background-color:var(--indigo-800)!important}.active\\:bg-indigo-900:active{background-color:var(--indigo-900)!important}.bg-teal-50{background-color:var(--teal-50)!important}.bg-teal-100{background-color:var(--teal-100)!important}.bg-teal-200{background-color:var(--teal-200)!important}.bg-teal-300{background-color:var(--teal-300)!important}.bg-teal-400{background-color:var(--teal-400)!important}.bg-teal-500{background-color:var(--teal-500)!important}.bg-teal-600{background-color:var(--teal-600)!important}.bg-teal-700{background-color:var(--teal-700)!important}.bg-teal-800{background-color:var(--teal-800)!important}.bg-teal-900{background-color:var(--teal-900)!important}.focus\\:bg-teal-50:focus{background-color:var(--teal-50)!important}.focus\\:bg-teal-100:focus{background-color:var(--teal-100)!important}.focus\\:bg-teal-200:focus{background-color:var(--teal-200)!important}.focus\\:bg-teal-300:focus{background-color:var(--teal-300)!important}.focus\\:bg-teal-400:focus{background-color:var(--teal-400)!important}.focus\\:bg-teal-500:focus{background-color:var(--teal-500)!important}.focus\\:bg-teal-600:focus{background-color:var(--teal-600)!important}.focus\\:bg-teal-700:focus{background-color:var(--teal-700)!important}.focus\\:bg-teal-800:focus{background-color:var(--teal-800)!important}.focus\\:bg-teal-900:focus{background-color:var(--teal-900)!important}.hover\\:bg-teal-50:hover{background-color:var(--teal-50)!important}.hover\\:bg-teal-100:hover{background-color:var(--teal-100)!important}.hover\\:bg-teal-200:hover{background-color:var(--teal-200)!important}.hover\\:bg-teal-300:hover{background-color:var(--teal-300)!important}.hover\\:bg-teal-400:hover{background-color:var(--teal-400)!important}.hover\\:bg-teal-500:hover{background-color:var(--teal-500)!important}.hover\\:bg-teal-600:hover{background-color:var(--teal-600)!important}.hover\\:bg-teal-700:hover{background-color:var(--teal-700)!important}.hover\\:bg-teal-800:hover{background-color:var(--teal-800)!important}.hover\\:bg-teal-900:hover{background-color:var(--teal-900)!important}.active\\:bg-teal-50:active{background-color:var(--teal-50)!important}.active\\:bg-teal-100:active{background-color:var(--teal-100)!important}.active\\:bg-teal-200:active{background-color:var(--teal-200)!important}.active\\:bg-teal-300:active{background-color:var(--teal-300)!important}.active\\:bg-teal-400:active{background-color:var(--teal-400)!important}.active\\:bg-teal-500:active{background-color:var(--teal-500)!important}.active\\:bg-teal-600:active{background-color:var(--teal-600)!important}.active\\:bg-teal-700:active{background-color:var(--teal-700)!important}.active\\:bg-teal-800:active{background-color:var(--teal-800)!important}.active\\:bg-teal-900:active{background-color:var(--teal-900)!important}.bg-orange-50{background-color:var(--orange-50)!important}.bg-orange-100{background-color:var(--orange-100)!important}.bg-orange-200{background-color:var(--orange-200)!important}.bg-orange-300{background-color:var(--orange-300)!important}.bg-orange-400{background-color:var(--orange-400)!important}.bg-orange-500{background-color:var(--orange-500)!important}.bg-orange-600{background-color:var(--orange-600)!important}.bg-orange-700{background-color:var(--orange-700)!important}.bg-orange-800{background-color:var(--orange-800)!important}.bg-orange-900{background-color:var(--orange-900)!important}.focus\\:bg-orange-50:focus{background-color:var(--orange-50)!important}.focus\\:bg-orange-100:focus{background-color:var(--orange-100)!important}.focus\\:bg-orange-200:focus{background-color:var(--orange-200)!important}.focus\\:bg-orange-300:focus{background-color:var(--orange-300)!important}.focus\\:bg-orange-400:focus{background-color:var(--orange-400)!important}.focus\\:bg-orange-500:focus{background-color:var(--orange-500)!important}.focus\\:bg-orange-600:focus{background-color:var(--orange-600)!important}.focus\\:bg-orange-700:focus{background-color:var(--orange-700)!important}.focus\\:bg-orange-800:focus{background-color:var(--orange-800)!important}.focus\\:bg-orange-900:focus{background-color:var(--orange-900)!important}.hover\\:bg-orange-50:hover{background-color:var(--orange-50)!important}.hover\\:bg-orange-100:hover{background-color:var(--orange-100)!important}.hover\\:bg-orange-200:hover{background-color:var(--orange-200)!important}.hover\\:bg-orange-300:hover{background-color:var(--orange-300)!important}.hover\\:bg-orange-400:hover{background-color:var(--orange-400)!important}.hover\\:bg-orange-500:hover{background-color:var(--orange-500)!important}.hover\\:bg-orange-600:hover{background-color:var(--orange-600)!important}.hover\\:bg-orange-700:hover{background-color:var(--orange-700)!important}.hover\\:bg-orange-800:hover{background-color:var(--orange-800)!important}.hover\\:bg-orange-900:hover{background-color:var(--orange-900)!important}.active\\:bg-orange-50:active{background-color:var(--orange-50)!important}.active\\:bg-orange-100:active{background-color:var(--orange-100)!important}.active\\:bg-orange-200:active{background-color:var(--orange-200)!important}.active\\:bg-orange-300:active{background-color:var(--orange-300)!important}.active\\:bg-orange-400:active{background-color:var(--orange-400)!important}.active\\:bg-orange-500:active{background-color:var(--orange-500)!important}.active\\:bg-orange-600:active{background-color:var(--orange-600)!important}.active\\:bg-orange-700:active{background-color:var(--orange-700)!important}.active\\:bg-orange-800:active{background-color:var(--orange-800)!important}.active\\:bg-orange-900:active{background-color:var(--orange-900)!important}.bg-bluegray-50{background-color:var(--bluegray-50)!important}.bg-bluegray-100{background-color:var(--bluegray-100)!important}.bg-bluegray-200{background-color:var(--bluegray-200)!important}.bg-bluegray-300{background-color:var(--bluegray-300)!important}.bg-bluegray-400{background-color:var(--bluegray-400)!important}.bg-bluegray-500{background-color:var(--bluegray-500)!important}.bg-bluegray-600{background-color:var(--bluegray-600)!important}.bg-bluegray-700{background-color:var(--bluegray-700)!important}.bg-bluegray-800{background-color:var(--bluegray-800)!important}.bg-bluegray-900{background-color:var(--bluegray-900)!important}.focus\\:bg-bluegray-50:focus{background-color:var(--bluegray-50)!important}.focus\\:bg-bluegray-100:focus{background-color:var(--bluegray-100)!important}.focus\\:bg-bluegray-200:focus{background-color:var(--bluegray-200)!important}.focus\\:bg-bluegray-300:focus{background-color:var(--bluegray-300)!important}.focus\\:bg-bluegray-400:focus{background-color:var(--bluegray-400)!important}.focus\\:bg-bluegray-500:focus{background-color:var(--bluegray-500)!important}.focus\\:bg-bluegray-600:focus{background-color:var(--bluegray-600)!important}.focus\\:bg-bluegray-700:focus{background-color:var(--bluegray-700)!important}.focus\\:bg-bluegray-800:focus{background-color:var(--bluegray-800)!important}.focus\\:bg-bluegray-900:focus{background-color:var(--bluegray-900)!important}.hover\\:bg-bluegray-50:hover{background-color:var(--bluegray-50)!important}.hover\\:bg-bluegray-100:hover{background-color:var(--bluegray-100)!important}.hover\\:bg-bluegray-200:hover{background-color:var(--bluegray-200)!important}.hover\\:bg-bluegray-300:hover{background-color:var(--bluegray-300)!important}.hover\\:bg-bluegray-400:hover{background-color:var(--bluegray-400)!important}.hover\\:bg-bluegray-500:hover{background-color:var(--bluegray-500)!important}.hover\\:bg-bluegray-600:hover{background-color:var(--bluegray-600)!important}.hover\\:bg-bluegray-700:hover{background-color:var(--bluegray-700)!important}.hover\\:bg-bluegray-800:hover{background-color:var(--bluegray-800)!important}.hover\\:bg-bluegray-900:hover{background-color:var(--bluegray-900)!important}.active\\:bg-bluegray-50:active{background-color:var(--bluegray-50)!important}.active\\:bg-bluegray-100:active{background-color:var(--bluegray-100)!important}.active\\:bg-bluegray-200:active{background-color:var(--bluegray-200)!important}.active\\:bg-bluegray-300:active{background-color:var(--bluegray-300)!important}.active\\:bg-bluegray-400:active{background-color:var(--bluegray-400)!important}.active\\:bg-bluegray-500:active{background-color:var(--bluegray-500)!important}.active\\:bg-bluegray-600:active{background-color:var(--bluegray-600)!important}.active\\:bg-bluegray-700:active{background-color:var(--bluegray-700)!important}.active\\:bg-bluegray-800:active{background-color:var(--bluegray-800)!important}.active\\:bg-bluegray-900:active{background-color:var(--bluegray-900)!important}.bg-purple-50{background-color:var(--purple-50)!important}.bg-purple-100{background-color:var(--purple-100)!important}.bg-purple-200{background-color:var(--purple-200)!important}.bg-purple-300{background-color:var(--purple-300)!important}.bg-purple-400{background-color:var(--purple-400)!important}.bg-purple-500{background-color:var(--purple-500)!important}.bg-purple-600{background-color:var(--purple-600)!important}.bg-purple-700{background-color:var(--purple-700)!important}.bg-purple-800{background-color:var(--purple-800)!important}.bg-purple-900{background-color:var(--purple-900)!important}.focus\\:bg-purple-50:focus{background-color:var(--purple-50)!important}.focus\\:bg-purple-100:focus{background-color:var(--purple-100)!important}.focus\\:bg-purple-200:focus{background-color:var(--purple-200)!important}.focus\\:bg-purple-300:focus{background-color:var(--purple-300)!important}.focus\\:bg-purple-400:focus{background-color:var(--purple-400)!important}.focus\\:bg-purple-500:focus{background-color:var(--purple-500)!important}.focus\\:bg-purple-600:focus{background-color:var(--purple-600)!important}.focus\\:bg-purple-700:focus{background-color:var(--purple-700)!important}.focus\\:bg-purple-800:focus{background-color:var(--purple-800)!important}.focus\\:bg-purple-900:focus{background-color:var(--purple-900)!important}.hover\\:bg-purple-50:hover{background-color:var(--purple-50)!important}.hover\\:bg-purple-100:hover{background-color:var(--purple-100)!important}.hover\\:bg-purple-200:hover{background-color:var(--purple-200)!important}.hover\\:bg-purple-300:hover{background-color:var(--purple-300)!important}.hover\\:bg-purple-400:hover{background-color:var(--purple-400)!important}.hover\\:bg-purple-500:hover{background-color:var(--purple-500)!important}.hover\\:bg-purple-600:hover{background-color:var(--purple-600)!important}.hover\\:bg-purple-700:hover{background-color:var(--purple-700)!important}.hover\\:bg-purple-800:hover{background-color:var(--purple-800)!important}.hover\\:bg-purple-900:hover{background-color:var(--purple-900)!important}.active\\:bg-purple-50:active{background-color:var(--purple-50)!important}.active\\:bg-purple-100:active{background-color:var(--purple-100)!important}.active\\:bg-purple-200:active{background-color:var(--purple-200)!important}.active\\:bg-purple-300:active{background-color:var(--purple-300)!important}.active\\:bg-purple-400:active{background-color:var(--purple-400)!important}.active\\:bg-purple-500:active{background-color:var(--purple-500)!important}.active\\:bg-purple-600:active{background-color:var(--purple-600)!important}.active\\:bg-purple-700:active{background-color:var(--purple-700)!important}.active\\:bg-purple-800:active{background-color:var(--purple-800)!important}.active\\:bg-purple-900:active{background-color:var(--purple-900)!important}.bg-gray-50{background-color:var(--gray-50)!important}.bg-gray-100{background-color:var(--gray-100)!important}.bg-gray-200{background-color:var(--gray-200)!important}.bg-gray-300{background-color:var(--gray-300)!important}.bg-gray-400{background-color:var(--gray-400)!important}.bg-gray-500{background-color:var(--gray-500)!important}.bg-gray-600{background-color:var(--gray-600)!important}.bg-gray-700{background-color:var(--gray-700)!important}.bg-gray-800{background-color:var(--gray-800)!important}.bg-gray-900{background-color:var(--gray-900)!important}.focus\\:bg-gray-50:focus{background-color:var(--gray-50)!important}.focus\\:bg-gray-100:focus{background-color:var(--gray-100)!important}.focus\\:bg-gray-200:focus{background-color:var(--gray-200)!important}.focus\\:bg-gray-300:focus{background-color:var(--gray-300)!important}.focus\\:bg-gray-400:focus{background-color:var(--gray-400)!important}.focus\\:bg-gray-500:focus{background-color:var(--gray-500)!important}.focus\\:bg-gray-600:focus{background-color:var(--gray-600)!important}.focus\\:bg-gray-700:focus{background-color:var(--gray-700)!important}.focus\\:bg-gray-800:focus{background-color:var(--gray-800)!important}.focus\\:bg-gray-900:focus{background-color:var(--gray-900)!important}.hover\\:bg-gray-50:hover{background-color:var(--gray-50)!important}.hover\\:bg-gray-100:hover{background-color:var(--gray-100)!important}.hover\\:bg-gray-200:hover{background-color:var(--gray-200)!important}.hover\\:bg-gray-300:hover{background-color:var(--gray-300)!important}.hover\\:bg-gray-400:hover{background-color:var(--gray-400)!important}.hover\\:bg-gray-500:hover{background-color:var(--gray-500)!important}.hover\\:bg-gray-600:hover{background-color:var(--gray-600)!important}.hover\\:bg-gray-700:hover{background-color:var(--gray-700)!important}.hover\\:bg-gray-800:hover{background-color:var(--gray-800)!important}.hover\\:bg-gray-900:hover{background-color:var(--gray-900)!important}.active\\:bg-gray-50:active{background-color:var(--gray-50)!important}.active\\:bg-gray-100:active{background-color:var(--gray-100)!important}.active\\:bg-gray-200:active{background-color:var(--gray-200)!important}.active\\:bg-gray-300:active{background-color:var(--gray-300)!important}.active\\:bg-gray-400:active{background-color:var(--gray-400)!important}.active\\:bg-gray-500:active{background-color:var(--gray-500)!important}.active\\:bg-gray-600:active{background-color:var(--gray-600)!important}.active\\:bg-gray-700:active{background-color:var(--gray-700)!important}.active\\:bg-gray-800:active{background-color:var(--gray-800)!important}.active\\:bg-gray-900:active{background-color:var(--gray-900)!important}.bg-red-50{background-color:var(--red-50)!important}.bg-red-100{background-color:var(--red-100)!important}.bg-red-200{background-color:var(--red-200)!important}.bg-red-300{background-color:var(--red-300)!important}.bg-red-400{background-color:var(--red-400)!important}.bg-red-500{background-color:var(--red-500)!important}.bg-red-600{background-color:var(--red-600)!important}.bg-red-700{background-color:var(--red-700)!important}.bg-red-800{background-color:var(--red-800)!important}.bg-red-900{background-color:var(--red-900)!important}.focus\\:bg-red-50:focus{background-color:var(--red-50)!important}.focus\\:bg-red-100:focus{background-color:var(--red-100)!important}.focus\\:bg-red-200:focus{background-color:var(--red-200)!important}.focus\\:bg-red-300:focus{background-color:var(--red-300)!important}.focus\\:bg-red-400:focus{background-color:var(--red-400)!important}.focus\\:bg-red-500:focus{background-color:var(--red-500)!important}.focus\\:bg-red-600:focus{background-color:var(--red-600)!important}.focus\\:bg-red-700:focus{background-color:var(--red-700)!important}.focus\\:bg-red-800:focus{background-color:var(--red-800)!important}.focus\\:bg-red-900:focus{background-color:var(--red-900)!important}.hover\\:bg-red-50:hover{background-color:var(--red-50)!important}.hover\\:bg-red-100:hover{background-color:var(--red-100)!important}.hover\\:bg-red-200:hover{background-color:var(--red-200)!important}.hover\\:bg-red-300:hover{background-color:var(--red-300)!important}.hover\\:bg-red-400:hover{background-color:var(--red-400)!important}.hover\\:bg-red-500:hover{background-color:var(--red-500)!important}.hover\\:bg-red-600:hover{background-color:var(--red-600)!important}.hover\\:bg-red-700:hover{background-color:var(--red-700)!important}.hover\\:bg-red-800:hover{background-color:var(--red-800)!important}.hover\\:bg-red-900:hover{background-color:var(--red-900)!important}.active\\:bg-red-50:active{background-color:var(--red-50)!important}.active\\:bg-red-100:active{background-color:var(--red-100)!important}.active\\:bg-red-200:active{background-color:var(--red-200)!important}.active\\:bg-red-300:active{background-color:var(--red-300)!important}.active\\:bg-red-400:active{background-color:var(--red-400)!important}.active\\:bg-red-500:active{background-color:var(--red-500)!important}.active\\:bg-red-600:active{background-color:var(--red-600)!important}.active\\:bg-red-700:active{background-color:var(--red-700)!important}.active\\:bg-red-800:active{background-color:var(--red-800)!important}.active\\:bg-red-900:active{background-color:var(--red-900)!important}.bg-primary-50{background-color:var(--primary-50)!important}.bg-primary-100{background-color:var(--primary-100)!important}.bg-primary-200{background-color:var(--primary-200)!important}.bg-primary-300{background-color:var(--primary-300)!important}.bg-primary-400{background-color:var(--primary-400)!important}.bg-primary-500{background-color:var(--primary-500)!important}.bg-primary-600{background-color:var(--primary-600)!important}.bg-primary-700{background-color:var(--primary-700)!important}.bg-primary-800{background-color:var(--primary-800)!important}.bg-primary-900{background-color:var(--primary-900)!important}.focus\\:bg-primary-50:focus{background-color:var(--primary-50)!important}.focus\\:bg-primary-100:focus{background-color:var(--primary-100)!important}.focus\\:bg-primary-200:focus{background-color:var(--primary-200)!important}.focus\\:bg-primary-300:focus{background-color:var(--primary-300)!important}.focus\\:bg-primary-400:focus{background-color:var(--primary-400)!important}.focus\\:bg-primary-500:focus{background-color:var(--primary-500)!important}.focus\\:bg-primary-600:focus{background-color:var(--primary-600)!important}.focus\\:bg-primary-700:focus{background-color:var(--primary-700)!important}.focus\\:bg-primary-800:focus{background-color:var(--primary-800)!important}.focus\\:bg-primary-900:focus{background-color:var(--primary-900)!important}.hover\\:bg-primary-50:hover{background-color:var(--primary-50)!important}.hover\\:bg-primary-100:hover{background-color:var(--primary-100)!important}.hover\\:bg-primary-200:hover{background-color:var(--primary-200)!important}.hover\\:bg-primary-300:hover{background-color:var(--primary-300)!important}.hover\\:bg-primary-400:hover{background-color:var(--primary-400)!important}.hover\\:bg-primary-500:hover{background-color:var(--primary-500)!important}.hover\\:bg-primary-600:hover{background-color:var(--primary-600)!important}.hover\\:bg-primary-700:hover{background-color:var(--primary-700)!important}.hover\\:bg-primary-800:hover{background-color:var(--primary-800)!important}.hover\\:bg-primary-900:hover{background-color:var(--primary-900)!important}.active\\:bg-primary-50:active{background-color:var(--primary-50)!important}.active\\:bg-primary-100:active{background-color:var(--primary-100)!important}.active\\:bg-primary-200:active{background-color:var(--primary-200)!important}.active\\:bg-primary-300:active{background-color:var(--primary-300)!important}.active\\:bg-primary-400:active{background-color:var(--primary-400)!important}.active\\:bg-primary-500:active{background-color:var(--primary-500)!important}.active\\:bg-primary-600:active{background-color:var(--primary-600)!important}.active\\:bg-primary-700:active{background-color:var(--primary-700)!important}.active\\:bg-primary-800:active{background-color:var(--primary-800)!important}.active\\:bg-primary-900:active{background-color:var(--primary-900)!important}.border-blue-50{border-color:var(--blue-50)!important}.border-blue-100{border-color:var(--blue-100)!important}.border-blue-200{border-color:var(--blue-200)!important}.border-blue-300{border-color:var(--blue-300)!important}.border-blue-400{border-color:var(--blue-400)!important}.border-blue-500{border-color:var(--blue-500)!important}.border-blue-600{border-color:var(--blue-600)!important}.border-blue-700{border-color:var(--blue-700)!important}.border-blue-800{border-color:var(--blue-800)!important}.border-blue-900{border-color:var(--blue-900)!important}.focus\\:border-blue-50:focus{border-color:var(--blue-50)!important}.focus\\:border-blue-100:focus{border-color:var(--blue-100)!important}.focus\\:border-blue-200:focus{border-color:var(--blue-200)!important}.focus\\:border-blue-300:focus{border-color:var(--blue-300)!important}.focus\\:border-blue-400:focus{border-color:var(--blue-400)!important}.focus\\:border-blue-500:focus{border-color:var(--blue-500)!important}.focus\\:border-blue-600:focus{border-color:var(--blue-600)!important}.focus\\:border-blue-700:focus{border-color:var(--blue-700)!important}.focus\\:border-blue-800:focus{border-color:var(--blue-800)!important}.focus\\:border-blue-900:focus{border-color:var(--blue-900)!important}.hover\\:border-blue-50:hover{border-color:var(--blue-50)!important}.hover\\:border-blue-100:hover{border-color:var(--blue-100)!important}.hover\\:border-blue-200:hover{border-color:var(--blue-200)!important}.hover\\:border-blue-300:hover{border-color:var(--blue-300)!important}.hover\\:border-blue-400:hover{border-color:var(--blue-400)!important}.hover\\:border-blue-500:hover{border-color:var(--blue-500)!important}.hover\\:border-blue-600:hover{border-color:var(--blue-600)!important}.hover\\:border-blue-700:hover{border-color:var(--blue-700)!important}.hover\\:border-blue-800:hover{border-color:var(--blue-800)!important}.hover\\:border-blue-900:hover{border-color:var(--blue-900)!important}.active\\:border-blue-50:active{border-color:var(--blue-50)!important}.active\\:border-blue-100:active{border-color:var(--blue-100)!important}.active\\:border-blue-200:active{border-color:var(--blue-200)!important}.active\\:border-blue-300:active{border-color:var(--blue-300)!important}.active\\:border-blue-400:active{border-color:var(--blue-400)!important}.active\\:border-blue-500:active{border-color:var(--blue-500)!important}.active\\:border-blue-600:active{border-color:var(--blue-600)!important}.active\\:border-blue-700:active{border-color:var(--blue-700)!important}.active\\:border-blue-800:active{border-color:var(--blue-800)!important}.active\\:border-blue-900:active{border-color:var(--blue-900)!important}.border-green-50{border-color:var(--green-50)!important}.border-green-100{border-color:var(--green-100)!important}.border-green-200{border-color:var(--green-200)!important}.border-green-300{border-color:var(--green-300)!important}.border-green-400{border-color:var(--green-400)!important}.border-green-500{border-color:var(--green-500)!important}.border-green-600{border-color:var(--green-600)!important}.border-green-700{border-color:var(--green-700)!important}.border-green-800{border-color:var(--green-800)!important}.border-green-900{border-color:var(--green-900)!important}.focus\\:border-green-50:focus{border-color:var(--green-50)!important}.focus\\:border-green-100:focus{border-color:var(--green-100)!important}.focus\\:border-green-200:focus{border-color:var(--green-200)!important}.focus\\:border-green-300:focus{border-color:var(--green-300)!important}.focus\\:border-green-400:focus{border-color:var(--green-400)!important}.focus\\:border-green-500:focus{border-color:var(--green-500)!important}.focus\\:border-green-600:focus{border-color:var(--green-600)!important}.focus\\:border-green-700:focus{border-color:var(--green-700)!important}.focus\\:border-green-800:focus{border-color:var(--green-800)!important}.focus\\:border-green-900:focus{border-color:var(--green-900)!important}.hover\\:border-green-50:hover{border-color:var(--green-50)!important}.hover\\:border-green-100:hover{border-color:var(--green-100)!important}.hover\\:border-green-200:hover{border-color:var(--green-200)!important}.hover\\:border-green-300:hover{border-color:var(--green-300)!important}.hover\\:border-green-400:hover{border-color:var(--green-400)!important}.hover\\:border-green-500:hover{border-color:var(--green-500)!important}.hover\\:border-green-600:hover{border-color:var(--green-600)!important}.hover\\:border-green-700:hover{border-color:var(--green-700)!important}.hover\\:border-green-800:hover{border-color:var(--green-800)!important}.hover\\:border-green-900:hover{border-color:var(--green-900)!important}.active\\:border-green-50:active{border-color:var(--green-50)!important}.active\\:border-green-100:active{border-color:var(--green-100)!important}.active\\:border-green-200:active{border-color:var(--green-200)!important}.active\\:border-green-300:active{border-color:var(--green-300)!important}.active\\:border-green-400:active{border-color:var(--green-400)!important}.active\\:border-green-500:active{border-color:var(--green-500)!important}.active\\:border-green-600:active{border-color:var(--green-600)!important}.active\\:border-green-700:active{border-color:var(--green-700)!important}.active\\:border-green-800:active{border-color:var(--green-800)!important}.active\\:border-green-900:active{border-color:var(--green-900)!important}.border-yellow-50{border-color:var(--yellow-50)!important}.border-yellow-100{border-color:var(--yellow-100)!important}.border-yellow-200{border-color:var(--yellow-200)!important}.border-yellow-300{border-color:var(--yellow-300)!important}.border-yellow-400{border-color:var(--yellow-400)!important}.border-yellow-500{border-color:var(--yellow-500)!important}.border-yellow-600{border-color:var(--yellow-600)!important}.border-yellow-700{border-color:var(--yellow-700)!important}.border-yellow-800{border-color:var(--yellow-800)!important}.border-yellow-900{border-color:var(--yellow-900)!important}.focus\\:border-yellow-50:focus{border-color:var(--yellow-50)!important}.focus\\:border-yellow-100:focus{border-color:var(--yellow-100)!important}.focus\\:border-yellow-200:focus{border-color:var(--yellow-200)!important}.focus\\:border-yellow-300:focus{border-color:var(--yellow-300)!important}.focus\\:border-yellow-400:focus{border-color:var(--yellow-400)!important}.focus\\:border-yellow-500:focus{border-color:var(--yellow-500)!important}.focus\\:border-yellow-600:focus{border-color:var(--yellow-600)!important}.focus\\:border-yellow-700:focus{border-color:var(--yellow-700)!important}.focus\\:border-yellow-800:focus{border-color:var(--yellow-800)!important}.focus\\:border-yellow-900:focus{border-color:var(--yellow-900)!important}.hover\\:border-yellow-50:hover{border-color:var(--yellow-50)!important}.hover\\:border-yellow-100:hover{border-color:var(--yellow-100)!important}.hover\\:border-yellow-200:hover{border-color:var(--yellow-200)!important}.hover\\:border-yellow-300:hover{border-color:var(--yellow-300)!important}.hover\\:border-yellow-400:hover{border-color:var(--yellow-400)!important}.hover\\:border-yellow-500:hover{border-color:var(--yellow-500)!important}.hover\\:border-yellow-600:hover{border-color:var(--yellow-600)!important}.hover\\:border-yellow-700:hover{border-color:var(--yellow-700)!important}.hover\\:border-yellow-800:hover{border-color:var(--yellow-800)!important}.hover\\:border-yellow-900:hover{border-color:var(--yellow-900)!important}.active\\:border-yellow-50:active{border-color:var(--yellow-50)!important}.active\\:border-yellow-100:active{border-color:var(--yellow-100)!important}.active\\:border-yellow-200:active{border-color:var(--yellow-200)!important}.active\\:border-yellow-300:active{border-color:var(--yellow-300)!important}.active\\:border-yellow-400:active{border-color:var(--yellow-400)!important}.active\\:border-yellow-500:active{border-color:var(--yellow-500)!important}.active\\:border-yellow-600:active{border-color:var(--yellow-600)!important}.active\\:border-yellow-700:active{border-color:var(--yellow-700)!important}.active\\:border-yellow-800:active{border-color:var(--yellow-800)!important}.active\\:border-yellow-900:active{border-color:var(--yellow-900)!important}.border-cyan-50{border-color:var(--cyan-50)!important}.border-cyan-100{border-color:var(--cyan-100)!important}.border-cyan-200{border-color:var(--cyan-200)!important}.border-cyan-300{border-color:var(--cyan-300)!important}.border-cyan-400{border-color:var(--cyan-400)!important}.border-cyan-500{border-color:var(--cyan-500)!important}.border-cyan-600{border-color:var(--cyan-600)!important}.border-cyan-700{border-color:var(--cyan-700)!important}.border-cyan-800{border-color:var(--cyan-800)!important}.border-cyan-900{border-color:var(--cyan-900)!important}.focus\\:border-cyan-50:focus{border-color:var(--cyan-50)!important}.focus\\:border-cyan-100:focus{border-color:var(--cyan-100)!important}.focus\\:border-cyan-200:focus{border-color:var(--cyan-200)!important}.focus\\:border-cyan-300:focus{border-color:var(--cyan-300)!important}.focus\\:border-cyan-400:focus{border-color:var(--cyan-400)!important}.focus\\:border-cyan-500:focus{border-color:var(--cyan-500)!important}.focus\\:border-cyan-600:focus{border-color:var(--cyan-600)!important}.focus\\:border-cyan-700:focus{border-color:var(--cyan-700)!important}.focus\\:border-cyan-800:focus{border-color:var(--cyan-800)!important}.focus\\:border-cyan-900:focus{border-color:var(--cyan-900)!important}.hover\\:border-cyan-50:hover{border-color:var(--cyan-50)!important}.hover\\:border-cyan-100:hover{border-color:var(--cyan-100)!important}.hover\\:border-cyan-200:hover{border-color:var(--cyan-200)!important}.hover\\:border-cyan-300:hover{border-color:var(--cyan-300)!important}.hover\\:border-cyan-400:hover{border-color:var(--cyan-400)!important}.hover\\:border-cyan-500:hover{border-color:var(--cyan-500)!important}.hover\\:border-cyan-600:hover{border-color:var(--cyan-600)!important}.hover\\:border-cyan-700:hover{border-color:var(--cyan-700)!important}.hover\\:border-cyan-800:hover{border-color:var(--cyan-800)!important}.hover\\:border-cyan-900:hover{border-color:var(--cyan-900)!important}.active\\:border-cyan-50:active{border-color:var(--cyan-50)!important}.active\\:border-cyan-100:active{border-color:var(--cyan-100)!important}.active\\:border-cyan-200:active{border-color:var(--cyan-200)!important}.active\\:border-cyan-300:active{border-color:var(--cyan-300)!important}.active\\:border-cyan-400:active{border-color:var(--cyan-400)!important}.active\\:border-cyan-500:active{border-color:var(--cyan-500)!important}.active\\:border-cyan-600:active{border-color:var(--cyan-600)!important}.active\\:border-cyan-700:active{border-color:var(--cyan-700)!important}.active\\:border-cyan-800:active{border-color:var(--cyan-800)!important}.active\\:border-cyan-900:active{border-color:var(--cyan-900)!important}.border-pink-50{border-color:var(--pink-50)!important}.border-pink-100{border-color:var(--pink-100)!important}.border-pink-200{border-color:var(--pink-200)!important}.border-pink-300{border-color:var(--pink-300)!important}.border-pink-400{border-color:var(--pink-400)!important}.border-pink-500{border-color:var(--pink-500)!important}.border-pink-600{border-color:var(--pink-600)!important}.border-pink-700{border-color:var(--pink-700)!important}.border-pink-800{border-color:var(--pink-800)!important}.border-pink-900{border-color:var(--pink-900)!important}.focus\\:border-pink-50:focus{border-color:var(--pink-50)!important}.focus\\:border-pink-100:focus{border-color:var(--pink-100)!important}.focus\\:border-pink-200:focus{border-color:var(--pink-200)!important}.focus\\:border-pink-300:focus{border-color:var(--pink-300)!important}.focus\\:border-pink-400:focus{border-color:var(--pink-400)!important}.focus\\:border-pink-500:focus{border-color:var(--pink-500)!important}.focus\\:border-pink-600:focus{border-color:var(--pink-600)!important}.focus\\:border-pink-700:focus{border-color:var(--pink-700)!important}.focus\\:border-pink-800:focus{border-color:var(--pink-800)!important}.focus\\:border-pink-900:focus{border-color:var(--pink-900)!important}.hover\\:border-pink-50:hover{border-color:var(--pink-50)!important}.hover\\:border-pink-100:hover{border-color:var(--pink-100)!important}.hover\\:border-pink-200:hover{border-color:var(--pink-200)!important}.hover\\:border-pink-300:hover{border-color:var(--pink-300)!important}.hover\\:border-pink-400:hover{border-color:var(--pink-400)!important}.hover\\:border-pink-500:hover{border-color:var(--pink-500)!important}.hover\\:border-pink-600:hover{border-color:var(--pink-600)!important}.hover\\:border-pink-700:hover{border-color:var(--pink-700)!important}.hover\\:border-pink-800:hover{border-color:var(--pink-800)!important}.hover\\:border-pink-900:hover{border-color:var(--pink-900)!important}.active\\:border-pink-50:active{border-color:var(--pink-50)!important}.active\\:border-pink-100:active{border-color:var(--pink-100)!important}.active\\:border-pink-200:active{border-color:var(--pink-200)!important}.active\\:border-pink-300:active{border-color:var(--pink-300)!important}.active\\:border-pink-400:active{border-color:var(--pink-400)!important}.active\\:border-pink-500:active{border-color:var(--pink-500)!important}.active\\:border-pink-600:active{border-color:var(--pink-600)!important}.active\\:border-pink-700:active{border-color:var(--pink-700)!important}.active\\:border-pink-800:active{border-color:var(--pink-800)!important}.active\\:border-pink-900:active{border-color:var(--pink-900)!important}.border-indigo-50{border-color:var(--indigo-50)!important}.border-indigo-100{border-color:var(--indigo-100)!important}.border-indigo-200{border-color:var(--indigo-200)!important}.border-indigo-300{border-color:var(--indigo-300)!important}.border-indigo-400{border-color:var(--indigo-400)!important}.border-indigo-500{border-color:var(--indigo-500)!important}.border-indigo-600{border-color:var(--indigo-600)!important}.border-indigo-700{border-color:var(--indigo-700)!important}.border-indigo-800{border-color:var(--indigo-800)!important}.border-indigo-900{border-color:var(--indigo-900)!important}.focus\\:border-indigo-50:focus{border-color:var(--indigo-50)!important}.focus\\:border-indigo-100:focus{border-color:var(--indigo-100)!important}.focus\\:border-indigo-200:focus{border-color:var(--indigo-200)!important}.focus\\:border-indigo-300:focus{border-color:var(--indigo-300)!important}.focus\\:border-indigo-400:focus{border-color:var(--indigo-400)!important}.focus\\:border-indigo-500:focus{border-color:var(--indigo-500)!important}.focus\\:border-indigo-600:focus{border-color:var(--indigo-600)!important}.focus\\:border-indigo-700:focus{border-color:var(--indigo-700)!important}.focus\\:border-indigo-800:focus{border-color:var(--indigo-800)!important}.focus\\:border-indigo-900:focus{border-color:var(--indigo-900)!important}.hover\\:border-indigo-50:hover{border-color:var(--indigo-50)!important}.hover\\:border-indigo-100:hover{border-color:var(--indigo-100)!important}.hover\\:border-indigo-200:hover{border-color:var(--indigo-200)!important}.hover\\:border-indigo-300:hover{border-color:var(--indigo-300)!important}.hover\\:border-indigo-400:hover{border-color:var(--indigo-400)!important}.hover\\:border-indigo-500:hover{border-color:var(--indigo-500)!important}.hover\\:border-indigo-600:hover{border-color:var(--indigo-600)!important}.hover\\:border-indigo-700:hover{border-color:var(--indigo-700)!important}.hover\\:border-indigo-800:hover{border-color:var(--indigo-800)!important}.hover\\:border-indigo-900:hover{border-color:var(--indigo-900)!important}.active\\:border-indigo-50:active{border-color:var(--indigo-50)!important}.active\\:border-indigo-100:active{border-color:var(--indigo-100)!important}.active\\:border-indigo-200:active{border-color:var(--indigo-200)!important}.active\\:border-indigo-300:active{border-color:var(--indigo-300)!important}.active\\:border-indigo-400:active{border-color:var(--indigo-400)!important}.active\\:border-indigo-500:active{border-color:var(--indigo-500)!important}.active\\:border-indigo-600:active{border-color:var(--indigo-600)!important}.active\\:border-indigo-700:active{border-color:var(--indigo-700)!important}.active\\:border-indigo-800:active{border-color:var(--indigo-800)!important}.active\\:border-indigo-900:active{border-color:var(--indigo-900)!important}.border-teal-50{border-color:var(--teal-50)!important}.border-teal-100{border-color:var(--teal-100)!important}.border-teal-200{border-color:var(--teal-200)!important}.border-teal-300{border-color:var(--teal-300)!important}.border-teal-400{border-color:var(--teal-400)!important}.border-teal-500{border-color:var(--teal-500)!important}.border-teal-600{border-color:var(--teal-600)!important}.border-teal-700{border-color:var(--teal-700)!important}.border-teal-800{border-color:var(--teal-800)!important}.border-teal-900{border-color:var(--teal-900)!important}.focus\\:border-teal-50:focus{border-color:var(--teal-50)!important}.focus\\:border-teal-100:focus{border-color:var(--teal-100)!important}.focus\\:border-teal-200:focus{border-color:var(--teal-200)!important}.focus\\:border-teal-300:focus{border-color:var(--teal-300)!important}.focus\\:border-teal-400:focus{border-color:var(--teal-400)!important}.focus\\:border-teal-500:focus{border-color:var(--teal-500)!important}.focus\\:border-teal-600:focus{border-color:var(--teal-600)!important}.focus\\:border-teal-700:focus{border-color:var(--teal-700)!important}.focus\\:border-teal-800:focus{border-color:var(--teal-800)!important}.focus\\:border-teal-900:focus{border-color:var(--teal-900)!important}.hover\\:border-teal-50:hover{border-color:var(--teal-50)!important}.hover\\:border-teal-100:hover{border-color:var(--teal-100)!important}.hover\\:border-teal-200:hover{border-color:var(--teal-200)!important}.hover\\:border-teal-300:hover{border-color:var(--teal-300)!important}.hover\\:border-teal-400:hover{border-color:var(--teal-400)!important}.hover\\:border-teal-500:hover{border-color:var(--teal-500)!important}.hover\\:border-teal-600:hover{border-color:var(--teal-600)!important}.hover\\:border-teal-700:hover{border-color:var(--teal-700)!important}.hover\\:border-teal-800:hover{border-color:var(--teal-800)!important}.hover\\:border-teal-900:hover{border-color:var(--teal-900)!important}.active\\:border-teal-50:active{border-color:var(--teal-50)!important}.active\\:border-teal-100:active{border-color:var(--teal-100)!important}.active\\:border-teal-200:active{border-color:var(--teal-200)!important}.active\\:border-teal-300:active{border-color:var(--teal-300)!important}.active\\:border-teal-400:active{border-color:var(--teal-400)!important}.active\\:border-teal-500:active{border-color:var(--teal-500)!important}.active\\:border-teal-600:active{border-color:var(--teal-600)!important}.active\\:border-teal-700:active{border-color:var(--teal-700)!important}.active\\:border-teal-800:active{border-color:var(--teal-800)!important}.active\\:border-teal-900:active{border-color:var(--teal-900)!important}.border-orange-50{border-color:var(--orange-50)!important}.border-orange-100{border-color:var(--orange-100)!important}.border-orange-200{border-color:var(--orange-200)!important}.border-orange-300{border-color:var(--orange-300)!important}.border-orange-400{border-color:var(--orange-400)!important}.border-orange-500{border-color:var(--orange-500)!important}.border-orange-600{border-color:var(--orange-600)!important}.border-orange-700{border-color:var(--orange-700)!important}.border-orange-800{border-color:var(--orange-800)!important}.border-orange-900{border-color:var(--orange-900)!important}.focus\\:border-orange-50:focus{border-color:var(--orange-50)!important}.focus\\:border-orange-100:focus{border-color:var(--orange-100)!important}.focus\\:border-orange-200:focus{border-color:var(--orange-200)!important}.focus\\:border-orange-300:focus{border-color:var(--orange-300)!important}.focus\\:border-orange-400:focus{border-color:var(--orange-400)!important}.focus\\:border-orange-500:focus{border-color:var(--orange-500)!important}.focus\\:border-orange-600:focus{border-color:var(--orange-600)!important}.focus\\:border-orange-700:focus{border-color:var(--orange-700)!important}.focus\\:border-orange-800:focus{border-color:var(--orange-800)!important}.focus\\:border-orange-900:focus{border-color:var(--orange-900)!important}.hover\\:border-orange-50:hover{border-color:var(--orange-50)!important}.hover\\:border-orange-100:hover{border-color:var(--orange-100)!important}.hover\\:border-orange-200:hover{border-color:var(--orange-200)!important}.hover\\:border-orange-300:hover{border-color:var(--orange-300)!important}.hover\\:border-orange-400:hover{border-color:var(--orange-400)!important}.hover\\:border-orange-500:hover{border-color:var(--orange-500)!important}.hover\\:border-orange-600:hover{border-color:var(--orange-600)!important}.hover\\:border-orange-700:hover{border-color:var(--orange-700)!important}.hover\\:border-orange-800:hover{border-color:var(--orange-800)!important}.hover\\:border-orange-900:hover{border-color:var(--orange-900)!important}.active\\:border-orange-50:active{border-color:var(--orange-50)!important}.active\\:border-orange-100:active{border-color:var(--orange-100)!important}.active\\:border-orange-200:active{border-color:var(--orange-200)!important}.active\\:border-orange-300:active{border-color:var(--orange-300)!important}.active\\:border-orange-400:active{border-color:var(--orange-400)!important}.active\\:border-orange-500:active{border-color:var(--orange-500)!important}.active\\:border-orange-600:active{border-color:var(--orange-600)!important}.active\\:border-orange-700:active{border-color:var(--orange-700)!important}.active\\:border-orange-800:active{border-color:var(--orange-800)!important}.active\\:border-orange-900:active{border-color:var(--orange-900)!important}.border-bluegray-50{border-color:var(--bluegray-50)!important}.border-bluegray-100{border-color:var(--bluegray-100)!important}.border-bluegray-200{border-color:var(--bluegray-200)!important}.border-bluegray-300{border-color:var(--bluegray-300)!important}.border-bluegray-400{border-color:var(--bluegray-400)!important}.border-bluegray-500{border-color:var(--bluegray-500)!important}.border-bluegray-600{border-color:var(--bluegray-600)!important}.border-bluegray-700{border-color:var(--bluegray-700)!important}.border-bluegray-800{border-color:var(--bluegray-800)!important}.border-bluegray-900{border-color:var(--bluegray-900)!important}.focus\\:border-bluegray-50:focus{border-color:var(--bluegray-50)!important}.focus\\:border-bluegray-100:focus{border-color:var(--bluegray-100)!important}.focus\\:border-bluegray-200:focus{border-color:var(--bluegray-200)!important}.focus\\:border-bluegray-300:focus{border-color:var(--bluegray-300)!important}.focus\\:border-bluegray-400:focus{border-color:var(--bluegray-400)!important}.focus\\:border-bluegray-500:focus{border-color:var(--bluegray-500)!important}.focus\\:border-bluegray-600:focus{border-color:var(--bluegray-600)!important}.focus\\:border-bluegray-700:focus{border-color:var(--bluegray-700)!important}.focus\\:border-bluegray-800:focus{border-color:var(--bluegray-800)!important}.focus\\:border-bluegray-900:focus{border-color:var(--bluegray-900)!important}.hover\\:border-bluegray-50:hover{border-color:var(--bluegray-50)!important}.hover\\:border-bluegray-100:hover{border-color:var(--bluegray-100)!important}.hover\\:border-bluegray-200:hover{border-color:var(--bluegray-200)!important}.hover\\:border-bluegray-300:hover{border-color:var(--bluegray-300)!important}.hover\\:border-bluegray-400:hover{border-color:var(--bluegray-400)!important}.hover\\:border-bluegray-500:hover{border-color:var(--bluegray-500)!important}.hover\\:border-bluegray-600:hover{border-color:var(--bluegray-600)!important}.hover\\:border-bluegray-700:hover{border-color:var(--bluegray-700)!important}.hover\\:border-bluegray-800:hover{border-color:var(--bluegray-800)!important}.hover\\:border-bluegray-900:hover{border-color:var(--bluegray-900)!important}.active\\:border-bluegray-50:active{border-color:var(--bluegray-50)!important}.active\\:border-bluegray-100:active{border-color:var(--bluegray-100)!important}.active\\:border-bluegray-200:active{border-color:var(--bluegray-200)!important}.active\\:border-bluegray-300:active{border-color:var(--bluegray-300)!important}.active\\:border-bluegray-400:active{border-color:var(--bluegray-400)!important}.active\\:border-bluegray-500:active{border-color:var(--bluegray-500)!important}.active\\:border-bluegray-600:active{border-color:var(--bluegray-600)!important}.active\\:border-bluegray-700:active{border-color:var(--bluegray-700)!important}.active\\:border-bluegray-800:active{border-color:var(--bluegray-800)!important}.active\\:border-bluegray-900:active{border-color:var(--bluegray-900)!important}.border-purple-50{border-color:var(--purple-50)!important}.border-purple-100{border-color:var(--purple-100)!important}.border-purple-200{border-color:var(--purple-200)!important}.border-purple-300{border-color:var(--purple-300)!important}.border-purple-400{border-color:var(--purple-400)!important}.border-purple-500{border-color:var(--purple-500)!important}.border-purple-600{border-color:var(--purple-600)!important}.border-purple-700{border-color:var(--purple-700)!important}.border-purple-800{border-color:var(--purple-800)!important}.border-purple-900{border-color:var(--purple-900)!important}.focus\\:border-purple-50:focus{border-color:var(--purple-50)!important}.focus\\:border-purple-100:focus{border-color:var(--purple-100)!important}.focus\\:border-purple-200:focus{border-color:var(--purple-200)!important}.focus\\:border-purple-300:focus{border-color:var(--purple-300)!important}.focus\\:border-purple-400:focus{border-color:var(--purple-400)!important}.focus\\:border-purple-500:focus{border-color:var(--purple-500)!important}.focus\\:border-purple-600:focus{border-color:var(--purple-600)!important}.focus\\:border-purple-700:focus{border-color:var(--purple-700)!important}.focus\\:border-purple-800:focus{border-color:var(--purple-800)!important}.focus\\:border-purple-900:focus{border-color:var(--purple-900)!important}.hover\\:border-purple-50:hover{border-color:var(--purple-50)!important}.hover\\:border-purple-100:hover{border-color:var(--purple-100)!important}.hover\\:border-purple-200:hover{border-color:var(--purple-200)!important}.hover\\:border-purple-300:hover{border-color:var(--purple-300)!important}.hover\\:border-purple-400:hover{border-color:var(--purple-400)!important}.hover\\:border-purple-500:hover{border-color:var(--purple-500)!important}.hover\\:border-purple-600:hover{border-color:var(--purple-600)!important}.hover\\:border-purple-700:hover{border-color:var(--purple-700)!important}.hover\\:border-purple-800:hover{border-color:var(--purple-800)!important}.hover\\:border-purple-900:hover{border-color:var(--purple-900)!important}.active\\:border-purple-50:active{border-color:var(--purple-50)!important}.active\\:border-purple-100:active{border-color:var(--purple-100)!important}.active\\:border-purple-200:active{border-color:var(--purple-200)!important}.active\\:border-purple-300:active{border-color:var(--purple-300)!important}.active\\:border-purple-400:active{border-color:var(--purple-400)!important}.active\\:border-purple-500:active{border-color:var(--purple-500)!important}.active\\:border-purple-600:active{border-color:var(--purple-600)!important}.active\\:border-purple-700:active{border-color:var(--purple-700)!important}.active\\:border-purple-800:active{border-color:var(--purple-800)!important}.active\\:border-purple-900:active{border-color:var(--purple-900)!important}.border-gray-50{border-color:var(--gray-50)!important}.border-gray-100{border-color:var(--gray-100)!important}.border-gray-200{border-color:var(--gray-200)!important}.border-gray-300{border-color:var(--gray-300)!important}.border-gray-400{border-color:var(--gray-400)!important}.border-gray-500{border-color:var(--gray-500)!important}.border-gray-600{border-color:var(--gray-600)!important}.border-gray-700{border-color:var(--gray-700)!important}.border-gray-800{border-color:var(--gray-800)!important}.border-gray-900{border-color:var(--gray-900)!important}.focus\\:border-gray-50:focus{border-color:var(--gray-50)!important}.focus\\:border-gray-100:focus{border-color:var(--gray-100)!important}.focus\\:border-gray-200:focus{border-color:var(--gray-200)!important}.focus\\:border-gray-300:focus{border-color:var(--gray-300)!important}.focus\\:border-gray-400:focus{border-color:var(--gray-400)!important}.focus\\:border-gray-500:focus{border-color:var(--gray-500)!important}.focus\\:border-gray-600:focus{border-color:var(--gray-600)!important}.focus\\:border-gray-700:focus{border-color:var(--gray-700)!important}.focus\\:border-gray-800:focus{border-color:var(--gray-800)!important}.focus\\:border-gray-900:focus{border-color:var(--gray-900)!important}.hover\\:border-gray-50:hover{border-color:var(--gray-50)!important}.hover\\:border-gray-100:hover{border-color:var(--gray-100)!important}.hover\\:border-gray-200:hover{border-color:var(--gray-200)!important}.hover\\:border-gray-300:hover{border-color:var(--gray-300)!important}.hover\\:border-gray-400:hover{border-color:var(--gray-400)!important}.hover\\:border-gray-500:hover{border-color:var(--gray-500)!important}.hover\\:border-gray-600:hover{border-color:var(--gray-600)!important}.hover\\:border-gray-700:hover{border-color:var(--gray-700)!important}.hover\\:border-gray-800:hover{border-color:var(--gray-800)!important}.hover\\:border-gray-900:hover{border-color:var(--gray-900)!important}.active\\:border-gray-50:active{border-color:var(--gray-50)!important}.active\\:border-gray-100:active{border-color:var(--gray-100)!important}.active\\:border-gray-200:active{border-color:var(--gray-200)!important}.active\\:border-gray-300:active{border-color:var(--gray-300)!important}.active\\:border-gray-400:active{border-color:var(--gray-400)!important}.active\\:border-gray-500:active{border-color:var(--gray-500)!important}.active\\:border-gray-600:active{border-color:var(--gray-600)!important}.active\\:border-gray-700:active{border-color:var(--gray-700)!important}.active\\:border-gray-800:active{border-color:var(--gray-800)!important}.active\\:border-gray-900:active{border-color:var(--gray-900)!important}.border-red-50{border-color:var(--red-50)!important}.border-red-100{border-color:var(--red-100)!important}.border-red-200{border-color:var(--red-200)!important}.border-red-300{border-color:var(--red-300)!important}.border-red-400{border-color:var(--red-400)!important}.border-red-500{border-color:var(--red-500)!important}.border-red-600{border-color:var(--red-600)!important}.border-red-700{border-color:var(--red-700)!important}.border-red-800{border-color:var(--red-800)!important}.border-red-900{border-color:var(--red-900)!important}.focus\\:border-red-50:focus{border-color:var(--red-50)!important}.focus\\:border-red-100:focus{border-color:var(--red-100)!important}.focus\\:border-red-200:focus{border-color:var(--red-200)!important}.focus\\:border-red-300:focus{border-color:var(--red-300)!important}.focus\\:border-red-400:focus{border-color:var(--red-400)!important}.focus\\:border-red-500:focus{border-color:var(--red-500)!important}.focus\\:border-red-600:focus{border-color:var(--red-600)!important}.focus\\:border-red-700:focus{border-color:var(--red-700)!important}.focus\\:border-red-800:focus{border-color:var(--red-800)!important}.focus\\:border-red-900:focus{border-color:var(--red-900)!important}.hover\\:border-red-50:hover{border-color:var(--red-50)!important}.hover\\:border-red-100:hover{border-color:var(--red-100)!important}.hover\\:border-red-200:hover{border-color:var(--red-200)!important}.hover\\:border-red-300:hover{border-color:var(--red-300)!important}.hover\\:border-red-400:hover{border-color:var(--red-400)!important}.hover\\:border-red-500:hover{border-color:var(--red-500)!important}.hover\\:border-red-600:hover{border-color:var(--red-600)!important}.hover\\:border-red-700:hover{border-color:var(--red-700)!important}.hover\\:border-red-800:hover{border-color:var(--red-800)!important}.hover\\:border-red-900:hover{border-color:var(--red-900)!important}.active\\:border-red-50:active{border-color:var(--red-50)!important}.active\\:border-red-100:active{border-color:var(--red-100)!important}.active\\:border-red-200:active{border-color:var(--red-200)!important}.active\\:border-red-300:active{border-color:var(--red-300)!important}.active\\:border-red-400:active{border-color:var(--red-400)!important}.active\\:border-red-500:active{border-color:var(--red-500)!important}.active\\:border-red-600:active{border-color:var(--red-600)!important}.active\\:border-red-700:active{border-color:var(--red-700)!important}.active\\:border-red-800:active{border-color:var(--red-800)!important}.active\\:border-red-900:active{border-color:var(--red-900)!important}.border-primary-50{border-color:var(--primary-50)!important}.border-primary-100{border-color:var(--primary-100)!important}.border-primary-200{border-color:var(--primary-200)!important}.border-primary-300{border-color:var(--primary-300)!important}.border-primary-400{border-color:var(--primary-400)!important}.border-primary-500{border-color:var(--primary-500)!important}.border-primary-600{border-color:var(--primary-600)!important}.border-primary-700{border-color:var(--primary-700)!important}.border-primary-800{border-color:var(--primary-800)!important}.border-primary-900{border-color:var(--primary-900)!important}.focus\\:border-primary-50:focus{border-color:var(--primary-50)!important}.focus\\:border-primary-100:focus{border-color:var(--primary-100)!important}.focus\\:border-primary-200:focus{border-color:var(--primary-200)!important}.focus\\:border-primary-300:focus{border-color:var(--primary-300)!important}.focus\\:border-primary-400:focus{border-color:var(--primary-400)!important}.focus\\:border-primary-500:focus{border-color:var(--primary-500)!important}.focus\\:border-primary-600:focus{border-color:var(--primary-600)!important}.focus\\:border-primary-700:focus{border-color:var(--primary-700)!important}.focus\\:border-primary-800:focus{border-color:var(--primary-800)!important}.focus\\:border-primary-900:focus{border-color:var(--primary-900)!important}.hover\\:border-primary-50:hover{border-color:var(--primary-50)!important}.hover\\:border-primary-100:hover{border-color:var(--primary-100)!important}.hover\\:border-primary-200:hover{border-color:var(--primary-200)!important}.hover\\:border-primary-300:hover{border-color:var(--primary-300)!important}.hover\\:border-primary-400:hover{border-color:var(--primary-400)!important}.hover\\:border-primary-500:hover{border-color:var(--primary-500)!important}.hover\\:border-primary-600:hover{border-color:var(--primary-600)!important}.hover\\:border-primary-700:hover{border-color:var(--primary-700)!important}.hover\\:border-primary-800:hover{border-color:var(--primary-800)!important}.hover\\:border-primary-900:hover{border-color:var(--primary-900)!important}.active\\:border-primary-50:active{border-color:var(--primary-50)!important}.active\\:border-primary-100:active{border-color:var(--primary-100)!important}.active\\:border-primary-200:active{border-color:var(--primary-200)!important}.active\\:border-primary-300:active{border-color:var(--primary-300)!important}.active\\:border-primary-400:active{border-color:var(--primary-400)!important}.active\\:border-primary-500:active{border-color:var(--primary-500)!important}.active\\:border-primary-600:active{border-color:var(--primary-600)!important}.active\\:border-primary-700:active{border-color:var(--primary-700)!important}.active\\:border-primary-800:active{border-color:var(--primary-800)!important}.active\\:border-primary-900:active{border-color:var(--primary-900)!important}.bg-white-alpha-10{background-color:#ffffff1a!important}.bg-white-alpha-20{background-color:#fff3!important}.bg-white-alpha-30{background-color:#ffffff4d!important}.bg-white-alpha-40{background-color:#fff6!important}.bg-white-alpha-50{background-color:#ffffff80!important}.bg-white-alpha-60{background-color:#fff9!important}.bg-white-alpha-70{background-color:#ffffffb3!important}.bg-white-alpha-80{background-color:#fffc!important}.bg-white-alpha-90{background-color:#ffffffe6!important}.hover\\:bg-white-alpha-10:hover{background-color:#ffffff1a!important}.hover\\:bg-white-alpha-20:hover{background-color:#fff3!important}.hover\\:bg-white-alpha-30:hover{background-color:#ffffff4d!important}.hover\\:bg-white-alpha-40:hover{background-color:#fff6!important}.hover\\:bg-white-alpha-50:hover{background-color:#ffffff80!important}.hover\\:bg-white-alpha-60:hover{background-color:#fff9!important}.hover\\:bg-white-alpha-70:hover{background-color:#ffffffb3!important}.hover\\:bg-white-alpha-80:hover{background-color:#fffc!important}.hover\\:bg-white-alpha-90:hover{background-color:#ffffffe6!important}.focus\\:bg-white-alpha-10:focus{background-color:#ffffff1a!important}.focus\\:bg-white-alpha-20:focus{background-color:#fff3!important}.focus\\:bg-white-alpha-30:focus{background-color:#ffffff4d!important}.focus\\:bg-white-alpha-40:focus{background-color:#fff6!important}.focus\\:bg-white-alpha-50:focus{background-color:#ffffff80!important}.focus\\:bg-white-alpha-60:focus{background-color:#fff9!important}.focus\\:bg-white-alpha-70:focus{background-color:#ffffffb3!important}.focus\\:bg-white-alpha-80:focus{background-color:#fffc!important}.focus\\:bg-white-alpha-90:focus{background-color:#ffffffe6!important}.active\\:bg-white-alpha-10:active{background-color:#ffffff1a!important}.active\\:bg-white-alpha-20:active{background-color:#fff3!important}.active\\:bg-white-alpha-30:active{background-color:#ffffff4d!important}.active\\:bg-white-alpha-40:active{background-color:#fff6!important}.active\\:bg-white-alpha-50:active{background-color:#ffffff80!important}.active\\:bg-white-alpha-60:active{background-color:#fff9!important}.active\\:bg-white-alpha-70:active{background-color:#ffffffb3!important}.active\\:bg-white-alpha-80:active{background-color:#fffc!important}.active\\:bg-white-alpha-90:active{background-color:#ffffffe6!important}.bg-black-alpha-10{background-color:#0000001a!important}.bg-black-alpha-20{background-color:#0003!important}.bg-black-alpha-30{background-color:#0000004d!important}.bg-black-alpha-40{background-color:#0006!important}.bg-black-alpha-50{background-color:#00000080!important}.bg-black-alpha-60{background-color:#0009!important}.bg-black-alpha-70{background-color:#000000b3!important}.bg-black-alpha-80{background-color:#000c!important}.bg-black-alpha-90{background-color:#000000e6!important}.hover\\:bg-black-alpha-10:hover{background-color:#0000001a!important}.hover\\:bg-black-alpha-20:hover{background-color:#0003!important}.hover\\:bg-black-alpha-30:hover{background-color:#0000004d!important}.hover\\:bg-black-alpha-40:hover{background-color:#0006!important}.hover\\:bg-black-alpha-50:hover{background-color:#00000080!important}.hover\\:bg-black-alpha-60:hover{background-color:#0009!important}.hover\\:bg-black-alpha-70:hover{background-color:#000000b3!important}.hover\\:bg-black-alpha-80:hover{background-color:#000c!important}.hover\\:bg-black-alpha-90:hover{background-color:#000000e6!important}.focus\\:bg-black-alpha-10:focus{background-color:#0000001a!important}.focus\\:bg-black-alpha-20:focus{background-color:#0003!important}.focus\\:bg-black-alpha-30:focus{background-color:#0000004d!important}.focus\\:bg-black-alpha-40:focus{background-color:#0006!important}.focus\\:bg-black-alpha-50:focus{background-color:#00000080!important}.focus\\:bg-black-alpha-60:focus{background-color:#0009!important}.focus\\:bg-black-alpha-70:focus{background-color:#000000b3!important}.focus\\:bg-black-alpha-80:focus{background-color:#000c!important}.focus\\:bg-black-alpha-90:focus{background-color:#000000e6!important}.active\\:bg-black-alpha-10:active{background-color:#0000001a!important}.active\\:bg-black-alpha-20:active{background-color:#0003!important}.active\\:bg-black-alpha-30:active{background-color:#0000004d!important}.active\\:bg-black-alpha-40:active{background-color:#0006!important}.active\\:bg-black-alpha-50:active{background-color:#00000080!important}.active\\:bg-black-alpha-60:active{background-color:#0009!important}.active\\:bg-black-alpha-70:active{background-color:#000000b3!important}.active\\:bg-black-alpha-80:active{background-color:#000c!important}.active\\:bg-black-alpha-90:active{background-color:#000000e6!important}.border-white-alpha-10{border-color:#ffffff1a!important}.border-white-alpha-20{border-color:#fff3!important}.border-white-alpha-30{border-color:#ffffff4d!important}.border-white-alpha-40{border-color:#fff6!important}.border-white-alpha-50{border-color:#ffffff80!important}.border-white-alpha-60{border-color:#fff9!important}.border-white-alpha-70{border-color:#ffffffb3!important}.border-white-alpha-80{border-color:#fffc!important}.border-white-alpha-90{border-color:#ffffffe6!important}.hover\\:border-white-alpha-10:hover{border-color:#ffffff1a!important}.hover\\:border-white-alpha-20:hover{border-color:#fff3!important}.hover\\:border-white-alpha-30:hover{border-color:#ffffff4d!important}.hover\\:border-white-alpha-40:hover{border-color:#fff6!important}.hover\\:border-white-alpha-50:hover{border-color:#ffffff80!important}.hover\\:border-white-alpha-60:hover{border-color:#fff9!important}.hover\\:border-white-alpha-70:hover{border-color:#ffffffb3!important}.hover\\:border-white-alpha-80:hover{border-color:#fffc!important}.hover\\:border-white-alpha-90:hover{border-color:#ffffffe6!important}.focus\\:border-white-alpha-10:focus{border-color:#ffffff1a!important}.focus\\:border-white-alpha-20:focus{border-color:#fff3!important}.focus\\:border-white-alpha-30:focus{border-color:#ffffff4d!important}.focus\\:border-white-alpha-40:focus{border-color:#fff6!important}.focus\\:border-white-alpha-50:focus{border-color:#ffffff80!important}.focus\\:border-white-alpha-60:focus{border-color:#fff9!important}.focus\\:border-white-alpha-70:focus{border-color:#ffffffb3!important}.focus\\:border-white-alpha-80:focus{border-color:#fffc!important}.focus\\:border-white-alpha-90:focus{border-color:#ffffffe6!important}.active\\:border-white-alpha-10:active{border-color:#ffffff1a!important}.active\\:border-white-alpha-20:active{border-color:#fff3!important}.active\\:border-white-alpha-30:active{border-color:#ffffff4d!important}.active\\:border-white-alpha-40:active{border-color:#fff6!important}.active\\:border-white-alpha-50:active{border-color:#ffffff80!important}.active\\:border-white-alpha-60:active{border-color:#fff9!important}.active\\:border-white-alpha-70:active{border-color:#ffffffb3!important}.active\\:border-white-alpha-80:active{border-color:#fffc!important}.active\\:border-white-alpha-90:active{border-color:#ffffffe6!important}.border-black-alpha-10{border-color:#0000001a!important}.border-black-alpha-20{border-color:#0003!important}.border-black-alpha-30{border-color:#0000004d!important}.border-black-alpha-40{border-color:#0006!important}.border-black-alpha-50{border-color:#00000080!important}.border-black-alpha-60{border-color:#0009!important}.border-black-alpha-70{border-color:#000000b3!important}.border-black-alpha-80{border-color:#000c!important}.border-black-alpha-90{border-color:#000000e6!important}.hover\\:border-black-alpha-10:hover{border-color:#0000001a!important}.hover\\:border-black-alpha-20:hover{border-color:#0003!important}.hover\\:border-black-alpha-30:hover{border-color:#0000004d!important}.hover\\:border-black-alpha-40:hover{border-color:#0006!important}.hover\\:border-black-alpha-50:hover{border-color:#00000080!important}.hover\\:border-black-alpha-60:hover{border-color:#0009!important}.hover\\:border-black-alpha-70:hover{border-color:#000000b3!important}.hover\\:border-black-alpha-80:hover{border-color:#000c!important}.hover\\:border-black-alpha-90:hover{border-color:#000000e6!important}.focus\\:border-black-alpha-10:focus{border-color:#0000001a!important}.focus\\:border-black-alpha-20:focus{border-color:#0003!important}.focus\\:border-black-alpha-30:focus{border-color:#0000004d!important}.focus\\:border-black-alpha-40:focus{border-color:#0006!important}.focus\\:border-black-alpha-50:focus{border-color:#00000080!important}.focus\\:border-black-alpha-60:focus{border-color:#0009!important}.focus\\:border-black-alpha-70:focus{border-color:#000000b3!important}.focus\\:border-black-alpha-80:focus{border-color:#000c!important}.focus\\:border-black-alpha-90:focus{border-color:#000000e6!important}.active\\:border-black-alpha-10:active{border-color:#0000001a!important}.active\\:border-black-alpha-20:active{border-color:#0003!important}.active\\:border-black-alpha-30:active{border-color:#0000004d!important}.active\\:border-black-alpha-40:active{border-color:#0006!important}.active\\:border-black-alpha-50:active{border-color:#00000080!important}.active\\:border-black-alpha-60:active{border-color:#0009!important}.active\\:border-black-alpha-70:active{border-color:#000000b3!important}.active\\:border-black-alpha-80:active{border-color:#000c!important}.active\\:border-black-alpha-90:active{border-color:#000000e6!important}.text-white-alpha-10{color:#ffffff1a!important}.text-white-alpha-20{color:#fff3!important}.text-white-alpha-30{color:#ffffff4d!important}.text-white-alpha-40{color:#fff6!important}.text-white-alpha-50{color:#ffffff80!important}.text-white-alpha-60{color:#fff9!important}.text-white-alpha-70{color:#ffffffb3!important}.text-white-alpha-80{color:#fffc!important}.text-white-alpha-90{color:#ffffffe6!important}.hover\\:text-white-alpha-10:hover{color:#ffffff1a!important}.hover\\:text-white-alpha-20:hover{color:#fff3!important}.hover\\:text-white-alpha-30:hover{color:#ffffff4d!important}.hover\\:text-white-alpha-40:hover{color:#fff6!important}.hover\\:text-white-alpha-50:hover{color:#ffffff80!important}.hover\\:text-white-alpha-60:hover{color:#fff9!important}.hover\\:text-white-alpha-70:hover{color:#ffffffb3!important}.hover\\:text-white-alpha-80:hover{color:#fffc!important}.hover\\:text-white-alpha-90:hover{color:#ffffffe6!important}.focus\\:text-white-alpha-10:focus{color:#ffffff1a!important}.focus\\:text-white-alpha-20:focus{color:#fff3!important}.focus\\:text-white-alpha-30:focus{color:#ffffff4d!important}.focus\\:text-white-alpha-40:focus{color:#fff6!important}.focus\\:text-white-alpha-50:focus{color:#ffffff80!important}.focus\\:text-white-alpha-60:focus{color:#fff9!important}.focus\\:text-white-alpha-70:focus{color:#ffffffb3!important}.focus\\:text-white-alpha-80:focus{color:#fffc!important}.focus\\:text-white-alpha-90:focus{color:#ffffffe6!important}.active\\:text-white-alpha-10:active{color:#ffffff1a!important}.active\\:text-white-alpha-20:active{color:#fff3!important}.active\\:text-white-alpha-30:active{color:#ffffff4d!important}.active\\:text-white-alpha-40:active{color:#fff6!important}.active\\:text-white-alpha-50:active{color:#ffffff80!important}.active\\:text-white-alpha-60:active{color:#fff9!important}.active\\:text-white-alpha-70:active{color:#ffffffb3!important}.active\\:text-white-alpha-80:active{color:#fffc!important}.active\\:text-white-alpha-90:active{color:#ffffffe6!important}.text-black-alpha-10{color:#0000001a!important}.text-black-alpha-20{color:#0003!important}.text-black-alpha-30{color:#0000004d!important}.text-black-alpha-40{color:#0006!important}.text-black-alpha-50{color:#00000080!important}.text-black-alpha-60{color:#0009!important}.text-black-alpha-70{color:#000000b3!important}.text-black-alpha-80{color:#000c!important}.text-black-alpha-90{color:#000000e6!important}.hover\\:text-black-alpha-10:hover{color:#0000001a!important}.hover\\:text-black-alpha-20:hover{color:#0003!important}.hover\\:text-black-alpha-30:hover{color:#0000004d!important}.hover\\:text-black-alpha-40:hover{color:#0006!important}.hover\\:text-black-alpha-50:hover{color:#00000080!important}.hover\\:text-black-alpha-60:hover{color:#0009!important}.hover\\:text-black-alpha-70:hover{color:#000000b3!important}.hover\\:text-black-alpha-80:hover{color:#000c!important}.hover\\:text-black-alpha-90:hover{color:#000000e6!important}.focus\\:text-black-alpha-10:focus{color:#0000001a!important}.focus\\:text-black-alpha-20:focus{color:#0003!important}.focus\\:text-black-alpha-30:focus{color:#0000004d!important}.focus\\:text-black-alpha-40:focus{color:#0006!important}.focus\\:text-black-alpha-50:focus{color:#00000080!important}.focus\\:text-black-alpha-60:focus{color:#0009!important}.focus\\:text-black-alpha-70:focus{color:#000000b3!important}.focus\\:text-black-alpha-80:focus{color:#000c!important}.focus\\:text-black-alpha-90:focus{color:#000000e6!important}.active\\:text-black-alpha-10:active{color:#0000001a!important}.active\\:text-black-alpha-20:active{color:#0003!important}.active\\:text-black-alpha-30:active{color:#0000004d!important}.active\\:text-black-alpha-40:active{color:#0006!important}.active\\:text-black-alpha-50:active{color:#00000080!important}.active\\:text-black-alpha-60:active{color:#0009!important}.active\\:text-black-alpha-70:active{color:#000000b3!important}.active\\:text-black-alpha-80:active{color:#000c!important}.active\\:text-black-alpha-90:active{color:#000000e6!important}.text-primary{color:var(--primary-color)!important}.bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.bg-white{background-color:#fff!important}.border-primary{border-color:var(--primary-color)!important}.text-white{color:#fff!important}.border-white{border-color:#fff!important}.text-color{color:var(--text-color)!important}.text-color-secondary{color:var(--text-color-secondary)!important}.surface-ground{background-color:var(--surface-ground)!important}.surface-section{background-color:var(--surface-section)!important}.surface-card{background-color:var(--surface-card)!important}.surface-overlay{background-color:var(--surface-overlay)!important}.surface-hover{background-color:var(--surface-hover)!important}.surface-border{border-color:var(--surface-border)!important}.focus\\:text-primary:focus{color:var(--primary-color)!important}.hover\\:text-primary:hover,.active\\:text-primary:active{color:var(--primary-color)!important}.focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.hover\\:bg-primary:hover,.active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.hover\\:bg-primary-reverse:hover,.active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.focus\\:bg-white:focus{background-color:#fff!important}.hover\\:bg-white:hover,.active\\:bg-white:active{background-color:#fff!important}.focus\\:border-primary:focus{border-color:var(--primary-color)!important}.hover\\:border-primary:hover,.active\\:border-primary:active{border-color:var(--primary-color)!important}.focus\\:text-white:focus{color:#fff!important}.hover\\:text-white:hover,.active\\:text-white:active{color:#fff!important}.focus\\:border-white:focus{border-color:#fff!important}.hover\\:border-white:hover,.active\\:border-white:active{border-color:#fff!important}.focus\\:text-color:focus{color:var(--text-color)!important}.hover\\:text-color:hover,.active\\:text-color:active{color:var(--text-color)!important}.focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.hover\\:text-color-secondary:hover,.active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.hover\\:surface-ground:hover,.active\\:surface-ground:active{background-color:var(--surface-ground)!important}.focus\\:surface-section:focus{background-color:var(--surface-section)!important}.hover\\:surface-section:hover,.active\\:surface-section:active{background-color:var(--surface-section)!important}.focus\\:surface-card:focus{background-color:var(--surface-card)!important}.hover\\:surface-card:hover,.active\\:surface-card:active{background-color:var(--surface-card)!important}.focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.hover\\:surface-overlay:hover,.active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.hover\\:surface-hover:hover,.active\\:surface-hover:active{background-color:var(--surface-hover)!important}.focus\\:surface-border:focus{border-color:var(--surface-border)!important}.hover\\:surface-border:hover,.active\\:surface-border:active{border-color:var(--surface-border)!important}@media screen and (min-width: 576px){.sm\\:text-primary{color:var(--primary-color)!important}.sm\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:bg-white{background-color:#fff!important}.sm\\:border-primary{border-color:var(--primary-color)!important}.sm\\:text-white{color:#fff!important}.sm\\:border-white{border-color:#fff!important}.sm\\:text-color{color:var(--text-color)!important}.sm\\:text-color-secondary{color:var(--text-color-secondary)!important}.sm\\:surface-ground{background-color:var(--surface-ground)!important}.sm\\:surface-section{background-color:var(--surface-section)!important}.sm\\:surface-card{background-color:var(--surface-card)!important}.sm\\:surface-overlay{background-color:var(--surface-overlay)!important}.sm\\:surface-hover{background-color:var(--surface-hover)!important}.sm\\:surface-border{border-color:var(--surface-border)!important}.sm\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.sm\\:hover\\:text-primary:hover,.sm\\:active\\:text-primary:active{color:var(--primary-color)!important}.sm\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:hover\\:bg-primary:hover,.sm\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:hover\\:bg-primary-reverse:hover,.sm\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:focus\\:bg-white:focus{background-color:#fff!important}.sm\\:hover\\:bg-white:hover,.sm\\:active\\:bg-white:active{background-color:#fff!important}.sm\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.sm\\:hover\\:border-primary:hover,.sm\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.sm\\:focus\\:text-white:focus{color:#fff!important}.sm\\:hover\\:text-white:hover,.sm\\:active\\:text-white:active{color:#fff!important}.sm\\:focus\\:border-white:focus{border-color:#fff!important}.sm\\:hover\\:border-white:hover,.sm\\:active\\:border-white:active{border-color:#fff!important}.sm\\:focus\\:text-color:focus{color:var(--text-color)!important}.sm\\:hover\\:text-color:hover,.sm\\:active\\:text-color:active{color:var(--text-color)!important}.sm\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.sm\\:hover\\:text-color-secondary:hover,.sm\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.sm\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.sm\\:hover\\:surface-ground:hover,.sm\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.sm\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.sm\\:hover\\:surface-section:hover,.sm\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.sm\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.sm\\:hover\\:surface-card:hover,.sm\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.sm\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.sm\\:hover\\:surface-overlay:hover,.sm\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.sm\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.sm\\:hover\\:surface-hover:hover,.sm\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.sm\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.sm\\:hover\\:surface-border:hover,.sm\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 768px){.md\\:text-primary{color:var(--primary-color)!important}.md\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:bg-white{background-color:#fff!important}.md\\:border-primary{border-color:var(--primary-color)!important}.md\\:text-white{color:#fff!important}.md\\:border-white{border-color:#fff!important}.md\\:text-color{color:var(--text-color)!important}.md\\:text-color-secondary{color:var(--text-color-secondary)!important}.md\\:surface-ground{background-color:var(--surface-ground)!important}.md\\:surface-section{background-color:var(--surface-section)!important}.md\\:surface-card{background-color:var(--surface-card)!important}.md\\:surface-overlay{background-color:var(--surface-overlay)!important}.md\\:surface-hover{background-color:var(--surface-hover)!important}.md\\:surface-border{border-color:var(--surface-border)!important}.md\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.md\\:hover\\:text-primary:hover,.md\\:active\\:text-primary:active{color:var(--primary-color)!important}.md\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:hover\\:bg-primary:hover,.md\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:hover\\:bg-primary-reverse:hover,.md\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:focus\\:bg-white:focus{background-color:#fff!important}.md\\:hover\\:bg-white:hover,.md\\:active\\:bg-white:active{background-color:#fff!important}.md\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.md\\:hover\\:border-primary:hover,.md\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.md\\:focus\\:text-white:focus{color:#fff!important}.md\\:hover\\:text-white:hover,.md\\:active\\:text-white:active{color:#fff!important}.md\\:focus\\:border-white:focus{border-color:#fff!important}.md\\:hover\\:border-white:hover,.md\\:active\\:border-white:active{border-color:#fff!important}.md\\:focus\\:text-color:focus{color:var(--text-color)!important}.md\\:hover\\:text-color:hover,.md\\:active\\:text-color:active{color:var(--text-color)!important}.md\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.md\\:hover\\:text-color-secondary:hover,.md\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.md\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.md\\:hover\\:surface-ground:hover,.md\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.md\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.md\\:hover\\:surface-section:hover,.md\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.md\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.md\\:hover\\:surface-card:hover,.md\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.md\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.md\\:hover\\:surface-overlay:hover,.md\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.md\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.md\\:hover\\:surface-hover:hover,.md\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.md\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.md\\:hover\\:surface-border:hover,.md\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 992px){.lg\\:text-primary{color:var(--primary-color)!important}.lg\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:bg-white{background-color:#fff!important}.lg\\:border-primary{border-color:var(--primary-color)!important}.lg\\:text-white{color:#fff!important}.lg\\:border-white{border-color:#fff!important}.lg\\:text-color{color:var(--text-color)!important}.lg\\:text-color-secondary{color:var(--text-color-secondary)!important}.lg\\:surface-ground{background-color:var(--surface-ground)!important}.lg\\:surface-section{background-color:var(--surface-section)!important}.lg\\:surface-card{background-color:var(--surface-card)!important}.lg\\:surface-overlay{background-color:var(--surface-overlay)!important}.lg\\:surface-hover{background-color:var(--surface-hover)!important}.lg\\:surface-border{border-color:var(--surface-border)!important}.lg\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.lg\\:hover\\:text-primary:hover,.lg\\:active\\:text-primary:active{color:var(--primary-color)!important}.lg\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:hover\\:bg-primary:hover,.lg\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:hover\\:bg-primary-reverse:hover,.lg\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:focus\\:bg-white:focus{background-color:#fff!important}.lg\\:hover\\:bg-white:hover,.lg\\:active\\:bg-white:active{background-color:#fff!important}.lg\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.lg\\:hover\\:border-primary:hover,.lg\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.lg\\:focus\\:text-white:focus{color:#fff!important}.lg\\:hover\\:text-white:hover,.lg\\:active\\:text-white:active{color:#fff!important}.lg\\:focus\\:border-white:focus{border-color:#fff!important}.lg\\:hover\\:border-white:hover,.lg\\:active\\:border-white:active{border-color:#fff!important}.lg\\:focus\\:text-color:focus{color:var(--text-color)!important}.lg\\:hover\\:text-color:hover,.lg\\:active\\:text-color:active{color:var(--text-color)!important}.lg\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.lg\\:hover\\:text-color-secondary:hover,.lg\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.lg\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.lg\\:hover\\:surface-ground:hover,.lg\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.lg\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.lg\\:hover\\:surface-section:hover,.lg\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.lg\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.lg\\:hover\\:surface-card:hover,.lg\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.lg\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.lg\\:hover\\:surface-overlay:hover,.lg\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.lg\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.lg\\:hover\\:surface-hover:hover,.lg\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.lg\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.lg\\:hover\\:surface-border:hover,.lg\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 1200px){.xl\\:text-primary{color:var(--primary-color)!important}.xl\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:bg-white{background-color:#fff!important}.xl\\:border-primary{border-color:var(--primary-color)!important}.xl\\:text-white{color:#fff!important}.xl\\:border-white{border-color:#fff!important}.xl\\:text-color{color:var(--text-color)!important}.xl\\:text-color-secondary{color:var(--text-color-secondary)!important}.xl\\:surface-ground{background-color:var(--surface-ground)!important}.xl\\:surface-section{background-color:var(--surface-section)!important}.xl\\:surface-card{background-color:var(--surface-card)!important}.xl\\:surface-overlay{background-color:var(--surface-overlay)!important}.xl\\:surface-hover{background-color:var(--surface-hover)!important}.xl\\:surface-border{border-color:var(--surface-border)!important}.xl\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.xl\\:hover\\:text-primary:hover,.xl\\:active\\:text-primary:active{color:var(--primary-color)!important}.xl\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:hover\\:bg-primary:hover,.xl\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:hover\\:bg-primary-reverse:hover,.xl\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:focus\\:bg-white:focus{background-color:#fff!important}.xl\\:hover\\:bg-white:hover,.xl\\:active\\:bg-white:active{background-color:#fff!important}.xl\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.xl\\:hover\\:border-primary:hover,.xl\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.xl\\:focus\\:text-white:focus{color:#fff!important}.xl\\:hover\\:text-white:hover,.xl\\:active\\:text-white:active{color:#fff!important}.xl\\:focus\\:border-white:focus{border-color:#fff!important}.xl\\:hover\\:border-white:hover,.xl\\:active\\:border-white:active{border-color:#fff!important}.xl\\:focus\\:text-color:focus{color:var(--text-color)!important}.xl\\:hover\\:text-color:hover,.xl\\:active\\:text-color:active{color:var(--text-color)!important}.xl\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.xl\\:hover\\:text-color-secondary:hover,.xl\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.xl\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.xl\\:hover\\:surface-ground:hover,.xl\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.xl\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.xl\\:hover\\:surface-section:hover,.xl\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.xl\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.xl\\:hover\\:surface-card:hover,.xl\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.xl\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.xl\\:hover\\:surface-overlay:hover,.xl\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.xl\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.xl\\:hover\\:surface-hover:hover,.xl\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.xl\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.xl\\:hover\\:surface-border:hover,.xl\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}.field{margin-bottom:1rem}.field>label{display:inline-block;margin-bottom:.5rem}.field.grid>label{display:flex;align-items:center}.field>small{margin-top:.25rem}.field.grid,.formgrid.grid{margin-top:0}.field.grid .col-fixed,.formgrid.grid .col-fixed,.field.grid .col,.formgrid.grid .col,.field.grid .col-1,.formgrid.grid .col-1,.field.grid .col-2,.formgrid.grid .col-2,.field.grid .col-3,.formgrid.grid .col-3,.field.grid .col-4,.formgrid.grid .col-4,.field.grid .col-5,.formgrid.grid .col-5,.field.grid .col-6,.formgrid.grid .col-6,.field.grid .col-7,.formgrid.grid .col-7,.field.grid .col-8,.formgrid.grid .col-8,.field.grid .col-9,.formgrid.grid .col-9,.field.grid .col-10,.formgrid.grid .col-10,.field.grid .col-11,.formgrid.grid .col-11,.field.grid .col-12,.formgrid.grid .col-12{padding-top:0;padding-bottom:0}.formgroup-inline{display:flex;flex-wrap:wrap;align-items:flex-start}.formgroup-inline .field,.formgroup-inline .field-checkbox,.formgroup-inline .field-radiobutton{margin-right:1rem}.formgroup-inline .field>label,.formgroup-inline .field-checkbox>label,.formgroup-inline .field-radiobutton>label{margin-right:.5rem;margin-bottom:0}.field-checkbox,.field-radiobutton{margin-bottom:1rem;display:flex;align-items:center}.field-checkbox>label,.field-radiobutton>label{margin-left:.5rem;line-height:1}.hidden{display:none!important}.block{display:block!important}.inline{display:inline!important}.inline-block{display:inline-block!important}.flex{display:flex!important}.inline-flex{display:inline-flex!important}@media screen and (min-width: 576px){.sm\\:hidden{display:none!important}.sm\\:block{display:block!important}.sm\\:inline{display:inline!important}.sm\\:inline-block{display:inline-block!important}.sm\\:flex{display:flex!important}.sm\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 768px){.md\\:hidden{display:none!important}.md\\:block{display:block!important}.md\\:inline{display:inline!important}.md\\:inline-block{display:inline-block!important}.md\\:flex{display:flex!important}.md\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 992px){.lg\\:hidden{display:none!important}.lg\\:block{display:block!important}.lg\\:inline{display:inline!important}.lg\\:inline-block{display:inline-block!important}.lg\\:flex{display:flex!important}.lg\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 1200px){.xl\\:hidden{display:none!important}.xl\\:block{display:block!important}.xl\\:inline{display:inline!important}.xl\\:inline-block{display:inline-block!important}.xl\\:flex{display:flex!important}.xl\\:inline-flex{display:inline-flex!important}}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-left{text-align:left!important}.text-right{text-align:right!important}@media screen and (min-width: 576px){.sm\\:text-center{text-align:center!important}.sm\\:text-justify{text-align:justify!important}.sm\\:text-left{text-align:left!important}.sm\\:text-right{text-align:right!important}}@media screen and (min-width: 768px){.md\\:text-center{text-align:center!important}.md\\:text-justify{text-align:justify!important}.md\\:text-left{text-align:left!important}.md\\:text-right{text-align:right!important}}@media screen and (min-width: 992px){.lg\\:text-center{text-align:center!important}.lg\\:text-justify{text-align:justify!important}.lg\\:text-left{text-align:left!important}.lg\\:text-right{text-align:right!important}}@media screen and (min-width: 1200px){.xl\\:text-center{text-align:center!important}.xl\\:text-justify{text-align:justify!important}.xl\\:text-left{text-align:left!important}.xl\\:text-right{text-align:right!important}}.underline{text-decoration:underline!important}.line-through{text-decoration:line-through!important}.no-underline{text-decoration:none!important}.focus\\:underline:focus{text-decoration:underline!important}.hover\\:underline:hover,.active\\:underline:active{text-decoration:underline!important}.focus\\:line-through:focus{text-decoration:line-through!important}.hover\\:line-through:hover,.active\\:line-through:active{text-decoration:line-through!important}.focus\\:no-underline:focus{text-decoration:none!important}.hover\\:no-underline:hover,.active\\:no-underline:active{text-decoration:none!important}.lowercase{text-transform:lowercase!important}.uppercase{text-transform:uppercase!important}.capitalize{text-transform:capitalize!important}.text-overflow-clip{text-overflow:clip!important}.text-overflow-ellipsis{text-overflow:ellipsis!important}@media screen and (min-width: 576px){.sm\\:text-overflow-clip{text-overflow:clip!important}.sm\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 768px){.md\\:text-overflow-clip{text-overflow:clip!important}.md\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 992px){.lg\\:text-overflow-clip{text-overflow:clip!important}.lg\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 1200px){.xl\\:text-overflow-clip{text-overflow:clip!important}.xl\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}.font-light{font-weight:300!important}.font-normal{font-weight:400!important}.font-medium{font-weight:500!important}.font-semibold{font-weight:600!important}.font-bold{font-weight:700!important}@media screen and (min-width: 576px){.sm\\:font-light{font-weight:300!important}.sm\\:font-normal{font-weight:400!important}.sm\\:font-medium{font-weight:500!important}.sm\\:font-semibold{font-weight:600!important}.sm\\:font-bold{font-weight:700!important}}@media screen and (min-width: 768px){.md\\:font-light{font-weight:300!important}.md\\:font-normal{font-weight:400!important}.md\\:font-medium{font-weight:500!important}.md\\:font-semibold{font-weight:600!important}.md\\:font-bold{font-weight:700!important}}@media screen and (min-width: 992px){.lg\\:font-light{font-weight:300!important}.lg\\:font-normal{font-weight:400!important}.lg\\:font-medium{font-weight:500!important}.lg\\:font-semibold{font-weight:600!important}.lg\\:font-bold{font-weight:700!important}}@media screen and (min-width: 1200px){.xl\\:font-light{font-weight:300!important}.xl\\:font-normal{font-weight:400!important}.xl\\:font-medium{font-weight:500!important}.xl\\:font-semibold{font-weight:600!important}.xl\\:font-bold{font-weight:700!important}}.font-italic{font-style:italic!important}.text-xs{font-size:.75rem!important}.text-sm{font-size:.875rem!important}.text-base{font-size:1rem!important}.text-lg{font-size:1.125rem!important}.text-xl{font-size:1.25rem!important}.text-2xl{font-size:1.5rem!important}.text-3xl{font-size:1.75rem!important}.text-4xl{font-size:2rem!important}.text-5xl{font-size:2.5rem!important}.text-6xl{font-size:3rem!important}.text-7xl{font-size:4rem!important}.text-8xl{font-size:6rem!important}@media screen and (min-width: 576px){.sm\\:text-xs{font-size:.75rem!important}.sm\\:text-sm{font-size:.875rem!important}.sm\\:text-base{font-size:1rem!important}.sm\\:text-lg{font-size:1.125rem!important}.sm\\:text-xl{font-size:1.25rem!important}.sm\\:text-2xl{font-size:1.5rem!important}.sm\\:text-3xl{font-size:1.75rem!important}.sm\\:text-4xl{font-size:2rem!important}.sm\\:text-5xl{font-size:2.5rem!important}.sm\\:text-6xl{font-size:3rem!important}.sm\\:text-7xl{font-size:4rem!important}.sm\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 768px){.md\\:text-xs{font-size:.75rem!important}.md\\:text-sm{font-size:.875rem!important}.md\\:text-base{font-size:1rem!important}.md\\:text-lg{font-size:1.125rem!important}.md\\:text-xl{font-size:1.25rem!important}.md\\:text-2xl{font-size:1.5rem!important}.md\\:text-3xl{font-size:1.75rem!important}.md\\:text-4xl{font-size:2rem!important}.md\\:text-5xl{font-size:2.5rem!important}.md\\:text-6xl{font-size:3rem!important}.md\\:text-7xl{font-size:4rem!important}.md\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 992px){.lg\\:text-xs{font-size:.75rem!important}.lg\\:text-sm{font-size:.875rem!important}.lg\\:text-base{font-size:1rem!important}.lg\\:text-lg{font-size:1.125rem!important}.lg\\:text-xl{font-size:1.25rem!important}.lg\\:text-2xl{font-size:1.5rem!important}.lg\\:text-3xl{font-size:1.75rem!important}.lg\\:text-4xl{font-size:2rem!important}.lg\\:text-5xl{font-size:2.5rem!important}.lg\\:text-6xl{font-size:3rem!important}.lg\\:text-7xl{font-size:4rem!important}.lg\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 1200px){.xl\\:text-xs{font-size:.75rem!important}.xl\\:text-sm{font-size:.875rem!important}.xl\\:text-base{font-size:1rem!important}.xl\\:text-lg{font-size:1.125rem!important}.xl\\:text-xl{font-size:1.25rem!important}.xl\\:text-2xl{font-size:1.5rem!important}.xl\\:text-3xl{font-size:1.75rem!important}.xl\\:text-4xl{font-size:2rem!important}.xl\\:text-5xl{font-size:2.5rem!important}.xl\\:text-6xl{font-size:3rem!important}.xl\\:text-7xl{font-size:4rem!important}.xl\\:text-8xl{font-size:6rem!important}}.line-height-1{line-height:1!important}.line-height-2{line-height:1.25!important}.line-height-3{line-height:1.5!important}.line-height-4{line-height:2!important}.white-space-normal{white-space:normal!important}.white-space-nowrap{white-space:nowrap!important}.vertical-align-baseline{vertical-align:baseline!important}.vertical-align-top{vertical-align:top!important}.vertical-align-middle{vertical-align:middle!important}.vertical-align-bottom{vertical-align:bottom!important}.vertical-align-text-top{vertical-align:text-top!important}.vertical-align-text-bottom{vertical-align:text-bottom!important}.vertical-align-sub{vertical-align:sub!important}.vertical-align-super{vertical-align:super!important}@media screen and (min-width: 576px){.sm\\:vertical-align-baseline{vertical-align:baseline!important}.sm\\:vertical-align-top{vertical-align:top!important}.sm\\:vertical-align-middle{vertical-align:middle!important}.sm\\:vertical-align-bottom{vertical-align:bottom!important}.sm\\:vertical-align-text-top{vertical-align:text-top!important}.sm\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.sm\\:vertical-align-sub{vertical-align:sub!important}.sm\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 768px){.md\\:vertical-align-baseline{vertical-align:baseline!important}.md\\:vertical-align-top{vertical-align:top!important}.md\\:vertical-align-middle{vertical-align:middle!important}.md\\:vertical-align-bottom{vertical-align:bottom!important}.md\\:vertical-align-text-top{vertical-align:text-top!important}.md\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.md\\:vertical-align-sub{vertical-align:sub!important}.md\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 992px){.lg\\:vertical-align-baseline{vertical-align:baseline!important}.lg\\:vertical-align-top{vertical-align:top!important}.lg\\:vertical-align-middle{vertical-align:middle!important}.lg\\:vertical-align-bottom{vertical-align:bottom!important}.lg\\:vertical-align-text-top{vertical-align:text-top!important}.lg\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.lg\\:vertical-align-sub{vertical-align:sub!important}.lg\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 1200px){.xl\\:vertical-align-baseline{vertical-align:baseline!important}.xl\\:vertical-align-top{vertical-align:top!important}.xl\\:vertical-align-middle{vertical-align:middle!important}.xl\\:vertical-align-bottom{vertical-align:bottom!important}.xl\\:vertical-align-text-top{vertical-align:text-top!important}.xl\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.xl\\:vertical-align-sub{vertical-align:sub!important}.xl\\:vertical-align-super{vertical-align:super!important}}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column{flex-direction:column!important}.flex-column-reverse{flex-direction:column-reverse!important}@media screen and (min-width: 576px){.sm\\:flex-row{flex-direction:row!important}.sm\\:flex-row-reverse{flex-direction:row-reverse!important}.sm\\:flex-column{flex-direction:column!important}.sm\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 768px){.md\\:flex-row{flex-direction:row!important}.md\\:flex-row-reverse{flex-direction:row-reverse!important}.md\\:flex-column{flex-direction:column!important}.md\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 992px){.lg\\:flex-row{flex-direction:row!important}.lg\\:flex-row-reverse{flex-direction:row-reverse!important}.lg\\:flex-column{flex-direction:column!important}.lg\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 1200px){.xl\\:flex-row{flex-direction:row!important}.xl\\:flex-row-reverse{flex-direction:row-reverse!important}.xl\\:flex-column{flex-direction:column!important}.xl\\:flex-column-reverse{flex-direction:column-reverse!important}}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-nowrap{flex-wrap:nowrap!important}@media screen and (min-width: 576px){.sm\\:flex-wrap{flex-wrap:wrap!important}.sm\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.sm\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 768px){.md\\:flex-wrap{flex-wrap:wrap!important}.md\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.md\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 992px){.lg\\:flex-wrap{flex-wrap:wrap!important}.lg\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.lg\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 1200px){.xl\\:flex-wrap{flex-wrap:wrap!important}.xl\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.xl\\:flex-nowrap{flex-wrap:nowrap!important}}.justify-content-start{justify-content:flex-start!important}.justify-content-end,:host ::ng-deep .w-filter-panel-buttons{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:justify-content-start{justify-content:flex-start!important}.sm\\:justify-content-end{justify-content:flex-end!important}.sm\\:justify-content-center{justify-content:center!important}.sm\\:justify-content-between{justify-content:space-between!important}.sm\\:justify-content-around{justify-content:space-around!important}.sm\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:justify-content-start{justify-content:flex-start!important}.md\\:justify-content-end{justify-content:flex-end!important}.md\\:justify-content-center{justify-content:center!important}.md\\:justify-content-between{justify-content:space-between!important}.md\\:justify-content-around{justify-content:space-around!important}.md\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:justify-content-start{justify-content:flex-start!important}.lg\\:justify-content-end{justify-content:flex-end!important}.lg\\:justify-content-center{justify-content:center!important}.lg\\:justify-content-between{justify-content:space-between!important}.lg\\:justify-content-around{justify-content:space-around!important}.lg\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:justify-content-start{justify-content:flex-start!important}.xl\\:justify-content-end{justify-content:flex-end!important}.xl\\:justify-content-center{justify-content:center!important}.xl\\:justify-content-between{justify-content:space-between!important}.xl\\:justify-content-around{justify-content:space-around!important}.xl\\:justify-content-evenly{justify-content:space-evenly!important}}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-evenly{align-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:align-content-start{align-content:flex-start!important}.sm\\:align-content-end{align-content:flex-end!important}.sm\\:align-content-center{align-content:center!important}.sm\\:align-content-between{align-content:space-between!important}.sm\\:align-content-around{align-content:space-around!important}.sm\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:align-content-start{align-content:flex-start!important}.md\\:align-content-end{align-content:flex-end!important}.md\\:align-content-center{align-content:center!important}.md\\:align-content-between{align-content:space-between!important}.md\\:align-content-around{align-content:space-around!important}.md\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:align-content-start{align-content:flex-start!important}.lg\\:align-content-end{align-content:flex-end!important}.lg\\:align-content-center{align-content:center!important}.lg\\:align-content-between{align-content:space-between!important}.lg\\:align-content-around{align-content:space-around!important}.lg\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:align-content-start{align-content:flex-start!important}.xl\\:align-content-end{align-content:flex-end!important}.xl\\:align-content-center{align-content:center!important}.xl\\:align-content-between{align-content:space-between!important}.xl\\:align-content-around{align-content:space-around!important}.xl\\:align-content-evenly{align-content:space-evenly!important}}.align-items-stretch{align-items:stretch!important}.align-items-start{align-items:flex-start!important}.align-items-center{align-items:center!important}.align-items-end,:host ::ng-deep .w-filter-panel-buttons{align-items:flex-end!important}.align-items-baseline{align-items:baseline!important}@media screen and (min-width: 576px){.sm\\:align-items-stretch{align-items:stretch!important}.sm\\:align-items-start{align-items:flex-start!important}.sm\\:align-items-center{align-items:center!important}.sm\\:align-items-end{align-items:flex-end!important}.sm\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 768px){.md\\:align-items-stretch{align-items:stretch!important}.md\\:align-items-start{align-items:flex-start!important}.md\\:align-items-center{align-items:center!important}.md\\:align-items-end{align-items:flex-end!important}.md\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-items-stretch{align-items:stretch!important}.lg\\:align-items-start{align-items:flex-start!important}.lg\\:align-items-center{align-items:center!important}.lg\\:align-items-end{align-items:flex-end!important}.lg\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-items-stretch{align-items:stretch!important}.xl\\:align-items-start{align-items:flex-start!important}.xl\\:align-items-center{align-items:center!important}.xl\\:align-items-end{align-items:flex-end!important}.xl\\:align-items-baseline{align-items:baseline!important}}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-stretch{align-self:stretch!important}.align-self-baseline{align-self:baseline!important}@media screen and (min-width: 576px){.sm\\:align-self-auto{align-self:auto!important}.sm\\:align-self-start{align-self:flex-start!important}.sm\\:align-self-end{align-self:flex-end!important}.sm\\:align-self-center{align-self:center!important}.sm\\:align-self-stretch{align-self:stretch!important}.sm\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 768px){.md\\:align-self-auto{align-self:auto!important}.md\\:align-self-start{align-self:flex-start!important}.md\\:align-self-end{align-self:flex-end!important}.md\\:align-self-center{align-self:center!important}.md\\:align-self-stretch{align-self:stretch!important}.md\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-self-auto{align-self:auto!important}.lg\\:align-self-start{align-self:flex-start!important}.lg\\:align-self-end{align-self:flex-end!important}.lg\\:align-self-center{align-self:center!important}.lg\\:align-self-stretch{align-self:stretch!important}.lg\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-self-auto{align-self:auto!important}.xl\\:align-self-start{align-self:flex-start!important}.xl\\:align-self-end{align-self:flex-end!important}.xl\\:align-self-center{align-self:center!important}.xl\\:align-self-stretch{align-self:stretch!important}.xl\\:align-self-baseline{align-self:baseline!important}}.flex-order-0{order:0!important}.flex-order-1{order:1!important}.flex-order-2{order:2!important}.flex-order-3{order:3!important}.flex-order-4{order:4!important}.flex-order-5{order:5!important}.flex-order-6{order:6!important}@media screen and (min-width: 576px){.sm\\:flex-order-0{order:0!important}.sm\\:flex-order-1{order:1!important}.sm\\:flex-order-2{order:2!important}.sm\\:flex-order-3{order:3!important}.sm\\:flex-order-4{order:4!important}.sm\\:flex-order-5{order:5!important}.sm\\:flex-order-6{order:6!important}}@media screen and (min-width: 768px){.md\\:flex-order-0{order:0!important}.md\\:flex-order-1{order:1!important}.md\\:flex-order-2{order:2!important}.md\\:flex-order-3{order:3!important}.md\\:flex-order-4{order:4!important}.md\\:flex-order-5{order:5!important}.md\\:flex-order-6{order:6!important}}@media screen and (min-width: 992px){.lg\\:flex-order-0{order:0!important}.lg\\:flex-order-1{order:1!important}.lg\\:flex-order-2{order:2!important}.lg\\:flex-order-3{order:3!important}.lg\\:flex-order-4{order:4!important}.lg\\:flex-order-5{order:5!important}.lg\\:flex-order-6{order:6!important}}@media screen and (min-width: 1200px){.xl\\:flex-order-0{order:0!important}.xl\\:flex-order-1{order:1!important}.xl\\:flex-order-2{order:2!important}.xl\\:flex-order-3{order:3!important}.xl\\:flex-order-4{order:4!important}.xl\\:flex-order-5{order:5!important}.xl\\:flex-order-6{order:6!important}}.flex-1{flex:1 1 0%!important}.flex-auto{flex:1 1 auto!important}.flex-initial{flex:0 1 auto!important}.flex-none{flex:none!important}@media screen and (min-width: 576px){.sm\\:flex-1{flex:1 1 0%!important}.sm\\:flex-auto{flex:1 1 auto!important}.sm\\:flex-initial{flex:0 1 auto!important}.sm\\:flex-none{flex:none!important}}@media screen and (min-width: 768px){.md\\:flex-1{flex:1 1 0%!important}.md\\:flex-auto{flex:1 1 auto!important}.md\\:flex-initial{flex:0 1 auto!important}.md\\:flex-none{flex:none!important}}@media screen and (min-width: 992px){.lg\\:flex-1{flex:1 1 0%!important}.lg\\:flex-auto{flex:1 1 auto!important}.lg\\:flex-initial{flex:0 1 auto!important}.lg\\:flex-none{flex:none!important}}@media screen and (min-width: 1200px){.xl\\:flex-1{flex:1 1 0%!important}.xl\\:flex-auto{flex:1 1 auto!important}.xl\\:flex-initial{flex:0 1 auto!important}.xl\\:flex-none{flex:none!important}}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}@media screen and (min-width: 576px){.sm\\:flex-grow-0{flex-grow:0!important}.sm\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 768px){.md\\:flex-grow-0{flex-grow:0!important}.md\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 992px){.lg\\:flex-grow-0{flex-grow:0!important}.lg\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-grow-0{flex-grow:0!important}.xl\\:flex-grow-1{flex-grow:1!important}}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}@media screen and (min-width: 576px){.sm\\:flex-shrink-0{flex-shrink:0!important}.sm\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 768px){.md\\:flex-shrink-0{flex-shrink:0!important}.md\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 992px){.lg\\:flex-shrink-0{flex-shrink:0!important}.lg\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-shrink-0{flex-shrink:0!important}.xl\\:flex-shrink-1{flex-shrink:1!important}}.gap-0{gap:0rem!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:2rem!important}.gap-6{gap:3rem!important}.gap-7{gap:4rem!important}.gap-8{gap:5rem!important}.row-gap-0{row-gap:0rem!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:2rem!important}.row-gap-6{row-gap:3rem!important}.row-gap-7{row-gap:4rem!important}.row-gap-8{row-gap:5rem!important}.column-gap-0{column-gap:0rem!important}.column-gap-1{column-gap:.25rem!important}.column-gap-2{column-gap:.5rem!important}.column-gap-3{column-gap:1rem!important}.column-gap-4{column-gap:1.5rem!important}.column-gap-5{column-gap:2rem!important}.column-gap-6{column-gap:3rem!important}.column-gap-7{column-gap:4rem!important}.column-gap-8{column-gap:5rem!important}@media screen and (min-width: 576px){.sm\\:gap-0{gap:0rem!important}.sm\\:gap-1{gap:.25rem!important}.sm\\:gap-2{gap:.5rem!important}.sm\\:gap-3{gap:1rem!important}.sm\\:gap-4{gap:1.5rem!important}.sm\\:gap-5{gap:2rem!important}.sm\\:gap-6{gap:3rem!important}.sm\\:gap-7{gap:4rem!important}.sm\\:gap-8{gap:5rem!important}.sm\\:row-gap-0{row-gap:0rem!important}.sm\\:row-gap-1{row-gap:.25rem!important}.sm\\:row-gap-2{row-gap:.5rem!important}.sm\\:row-gap-3{row-gap:1rem!important}.sm\\:row-gap-4{row-gap:1.5rem!important}.sm\\:row-gap-5{row-gap:2rem!important}.sm\\:row-gap-6{row-gap:3rem!important}.sm\\:row-gap-7{row-gap:4rem!important}.sm\\:row-gap-8{row-gap:5rem!important}.sm\\:column-gap-0{column-gap:0rem!important}.sm\\:column-gap-1{column-gap:.25rem!important}.sm\\:column-gap-2{column-gap:.5rem!important}.sm\\:column-gap-3{column-gap:1rem!important}.sm\\:column-gap-4{column-gap:1.5rem!important}.sm\\:column-gap-5{column-gap:2rem!important}.sm\\:column-gap-6{column-gap:3rem!important}.sm\\:column-gap-7{column-gap:4rem!important}.sm\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 768px){.md\\:gap-0{gap:0rem!important}.md\\:gap-1{gap:.25rem!important}.md\\:gap-2{gap:.5rem!important}.md\\:gap-3{gap:1rem!important}.md\\:gap-4{gap:1.5rem!important}.md\\:gap-5{gap:2rem!important}.md\\:gap-6{gap:3rem!important}.md\\:gap-7{gap:4rem!important}.md\\:gap-8{gap:5rem!important}.md\\:row-gap-0{row-gap:0rem!important}.md\\:row-gap-1{row-gap:.25rem!important}.md\\:row-gap-2{row-gap:.5rem!important}.md\\:row-gap-3{row-gap:1rem!important}.md\\:row-gap-4{row-gap:1.5rem!important}.md\\:row-gap-5{row-gap:2rem!important}.md\\:row-gap-6{row-gap:3rem!important}.md\\:row-gap-7{row-gap:4rem!important}.md\\:row-gap-8{row-gap:5rem!important}.md\\:column-gap-0{column-gap:0rem!important}.md\\:column-gap-1{column-gap:.25rem!important}.md\\:column-gap-2{column-gap:.5rem!important}.md\\:column-gap-3{column-gap:1rem!important}.md\\:column-gap-4{column-gap:1.5rem!important}.md\\:column-gap-5{column-gap:2rem!important}.md\\:column-gap-6{column-gap:3rem!important}.md\\:column-gap-7{column-gap:4rem!important}.md\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 992px){.lg\\:gap-0{gap:0rem!important}.lg\\:gap-1{gap:.25rem!important}.lg\\:gap-2{gap:.5rem!important}.lg\\:gap-3{gap:1rem!important}.lg\\:gap-4{gap:1.5rem!important}.lg\\:gap-5{gap:2rem!important}.lg\\:gap-6{gap:3rem!important}.lg\\:gap-7{gap:4rem!important}.lg\\:gap-8{gap:5rem!important}.lg\\:row-gap-0{row-gap:0rem!important}.lg\\:row-gap-1{row-gap:.25rem!important}.lg\\:row-gap-2{row-gap:.5rem!important}.lg\\:row-gap-3{row-gap:1rem!important}.lg\\:row-gap-4{row-gap:1.5rem!important}.lg\\:row-gap-5{row-gap:2rem!important}.lg\\:row-gap-6{row-gap:3rem!important}.lg\\:row-gap-7{row-gap:4rem!important}.lg\\:row-gap-8{row-gap:5rem!important}.lg\\:column-gap-0{column-gap:0rem!important}.lg\\:column-gap-1{column-gap:.25rem!important}.lg\\:column-gap-2{column-gap:.5rem!important}.lg\\:column-gap-3{column-gap:1rem!important}.lg\\:column-gap-4{column-gap:1.5rem!important}.lg\\:column-gap-5{column-gap:2rem!important}.lg\\:column-gap-6{column-gap:3rem!important}.lg\\:column-gap-7{column-gap:4rem!important}.lg\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 1200px){.xl\\:gap-0{gap:0rem!important}.xl\\:gap-1{gap:.25rem!important}.xl\\:gap-2{gap:.5rem!important}.xl\\:gap-3{gap:1rem!important}.xl\\:gap-4{gap:1.5rem!important}.xl\\:gap-5{gap:2rem!important}.xl\\:gap-6{gap:3rem!important}.xl\\:gap-7{gap:4rem!important}.xl\\:gap-8{gap:5rem!important}.xl\\:row-gap-0{row-gap:0rem!important}.xl\\:row-gap-1{row-gap:.25rem!important}.xl\\:row-gap-2{row-gap:.5rem!important}.xl\\:row-gap-3{row-gap:1rem!important}.xl\\:row-gap-4{row-gap:1.5rem!important}.xl\\:row-gap-5{row-gap:2rem!important}.xl\\:row-gap-6{row-gap:3rem!important}.xl\\:row-gap-7{row-gap:4rem!important}.xl\\:row-gap-8{row-gap:5rem!important}.xl\\:column-gap-0{column-gap:0rem!important}.xl\\:column-gap-1{column-gap:.25rem!important}.xl\\:column-gap-2{column-gap:.5rem!important}.xl\\:column-gap-3{column-gap:1rem!important}.xl\\:column-gap-4{column-gap:1.5rem!important}.xl\\:column-gap-5{column-gap:2rem!important}.xl\\:column-gap-6{column-gap:3rem!important}.xl\\:column-gap-7{column-gap:4rem!important}.xl\\:column-gap-8{column-gap:5rem!important}}.p-0{padding:0rem!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:2rem!important}.p-6{padding:3rem!important}.p-7{padding:4rem!important}.p-8{padding:5rem!important}.pt-0{padding-top:0rem!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:2rem!important}.pt-6{padding-top:3rem!important}.pt-7{padding-top:4rem!important}.pt-8{padding-top:5rem!important}.pr-0{padding-right:0rem!important}.pr-1{padding-right:.25rem!important}.pr-2{padding-right:.5rem!important}.pr-3{padding-right:1rem!important}.pr-4{padding-right:1.5rem!important}.pr-5{padding-right:2rem!important}.pr-6{padding-right:3rem!important}.pr-7{padding-right:4rem!important}.pr-8{padding-right:5rem!important}.pl-0{padding-left:0rem!important}.pl-1{padding-left:.25rem!important}.pl-2{padding-left:.5rem!important}.pl-3{padding-left:1rem!important}.pl-4{padding-left:1.5rem!important}.pl-5{padding-left:2rem!important}.pl-6{padding-left:3rem!important}.pl-7{padding-left:4rem!important}.pl-8{padding-left:5rem!important}.pb-0{padding-bottom:0rem!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:2rem!important}.pb-6{padding-bottom:3rem!important}.pb-7{padding-bottom:4rem!important}.pb-8{padding-bottom:5rem!important}.px-0{padding-left:0rem!important;padding-right:0rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:2rem!important;padding-right:2rem!important}.px-6{padding-left:3rem!important;padding-right:3rem!important}.px-7{padding-left:4rem!important;padding-right:4rem!important}.px-8{padding-left:5rem!important;padding-right:5rem!important}.py-0{padding-top:0rem!important;padding-bottom:0rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:2rem!important;padding-bottom:2rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.py-7{padding-top:4rem!important;padding-bottom:4rem!important}.py-8{padding-top:5rem!important;padding-bottom:5rem!important}@media screen and (min-width: 576px){.sm\\:p-0{padding:0rem!important}.sm\\:p-1{padding:.25rem!important}.sm\\:p-2{padding:.5rem!important}.sm\\:p-3{padding:1rem!important}.sm\\:p-4{padding:1.5rem!important}.sm\\:p-5{padding:2rem!important}.sm\\:p-6{padding:3rem!important}.sm\\:p-7{padding:4rem!important}.sm\\:p-8{padding:5rem!important}.sm\\:pt-0{padding-top:0rem!important}.sm\\:pt-1{padding-top:.25rem!important}.sm\\:pt-2{padding-top:.5rem!important}.sm\\:pt-3{padding-top:1rem!important}.sm\\:pt-4{padding-top:1.5rem!important}.sm\\:pt-5{padding-top:2rem!important}.sm\\:pt-6{padding-top:3rem!important}.sm\\:pt-7{padding-top:4rem!important}.sm\\:pt-8{padding-top:5rem!important}.sm\\:pr-0{padding-right:0rem!important}.sm\\:pr-1{padding-right:.25rem!important}.sm\\:pr-2{padding-right:.5rem!important}.sm\\:pr-3{padding-right:1rem!important}.sm\\:pr-4{padding-right:1.5rem!important}.sm\\:pr-5{padding-right:2rem!important}.sm\\:pr-6{padding-right:3rem!important}.sm\\:pr-7{padding-right:4rem!important}.sm\\:pr-8{padding-right:5rem!important}.sm\\:pl-0{padding-left:0rem!important}.sm\\:pl-1{padding-left:.25rem!important}.sm\\:pl-2{padding-left:.5rem!important}.sm\\:pl-3{padding-left:1rem!important}.sm\\:pl-4{padding-left:1.5rem!important}.sm\\:pl-5{padding-left:2rem!important}.sm\\:pl-6{padding-left:3rem!important}.sm\\:pl-7{padding-left:4rem!important}.sm\\:pl-8{padding-left:5rem!important}.sm\\:pb-0{padding-bottom:0rem!important}.sm\\:pb-1{padding-bottom:.25rem!important}.sm\\:pb-2{padding-bottom:.5rem!important}.sm\\:pb-3{padding-bottom:1rem!important}.sm\\:pb-4{padding-bottom:1.5rem!important}.sm\\:pb-5{padding-bottom:2rem!important}.sm\\:pb-6{padding-bottom:3rem!important}.sm\\:pb-7{padding-bottom:4rem!important}.sm\\:pb-8{padding-bottom:5rem!important}.sm\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.sm\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.sm\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.sm\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.sm\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.sm\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.sm\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.sm\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.sm\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.sm\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.sm\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.sm\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.sm\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.sm\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.sm\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.sm\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.sm\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.sm\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 768px){.md\\:p-0{padding:0rem!important}.md\\:p-1{padding:.25rem!important}.md\\:p-2{padding:.5rem!important}.md\\:p-3{padding:1rem!important}.md\\:p-4{padding:1.5rem!important}.md\\:p-5{padding:2rem!important}.md\\:p-6{padding:3rem!important}.md\\:p-7{padding:4rem!important}.md\\:p-8{padding:5rem!important}.md\\:pt-0{padding-top:0rem!important}.md\\:pt-1{padding-top:.25rem!important}.md\\:pt-2{padding-top:.5rem!important}.md\\:pt-3{padding-top:1rem!important}.md\\:pt-4{padding-top:1.5rem!important}.md\\:pt-5{padding-top:2rem!important}.md\\:pt-6{padding-top:3rem!important}.md\\:pt-7{padding-top:4rem!important}.md\\:pt-8{padding-top:5rem!important}.md\\:pr-0{padding-right:0rem!important}.md\\:pr-1{padding-right:.25rem!important}.md\\:pr-2{padding-right:.5rem!important}.md\\:pr-3{padding-right:1rem!important}.md\\:pr-4{padding-right:1.5rem!important}.md\\:pr-5{padding-right:2rem!important}.md\\:pr-6{padding-right:3rem!important}.md\\:pr-7{padding-right:4rem!important}.md\\:pr-8{padding-right:5rem!important}.md\\:pl-0{padding-left:0rem!important}.md\\:pl-1{padding-left:.25rem!important}.md\\:pl-2{padding-left:.5rem!important}.md\\:pl-3{padding-left:1rem!important}.md\\:pl-4{padding-left:1.5rem!important}.md\\:pl-5{padding-left:2rem!important}.md\\:pl-6{padding-left:3rem!important}.md\\:pl-7{padding-left:4rem!important}.md\\:pl-8{padding-left:5rem!important}.md\\:pb-0{padding-bottom:0rem!important}.md\\:pb-1{padding-bottom:.25rem!important}.md\\:pb-2{padding-bottom:.5rem!important}.md\\:pb-3{padding-bottom:1rem!important}.md\\:pb-4{padding-bottom:1.5rem!important}.md\\:pb-5{padding-bottom:2rem!important}.md\\:pb-6{padding-bottom:3rem!important}.md\\:pb-7{padding-bottom:4rem!important}.md\\:pb-8{padding-bottom:5rem!important}.md\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.md\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.md\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.md\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.md\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.md\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.md\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.md\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.md\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.md\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.md\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.md\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.md\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.md\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.md\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.md\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.md\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.md\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 992px){.lg\\:p-0{padding:0rem!important}.lg\\:p-1{padding:.25rem!important}.lg\\:p-2{padding:.5rem!important}.lg\\:p-3{padding:1rem!important}.lg\\:p-4{padding:1.5rem!important}.lg\\:p-5{padding:2rem!important}.lg\\:p-6{padding:3rem!important}.lg\\:p-7{padding:4rem!important}.lg\\:p-8{padding:5rem!important}.lg\\:pt-0{padding-top:0rem!important}.lg\\:pt-1{padding-top:.25rem!important}.lg\\:pt-2{padding-top:.5rem!important}.lg\\:pt-3{padding-top:1rem!important}.lg\\:pt-4{padding-top:1.5rem!important}.lg\\:pt-5{padding-top:2rem!important}.lg\\:pt-6{padding-top:3rem!important}.lg\\:pt-7{padding-top:4rem!important}.lg\\:pt-8{padding-top:5rem!important}.lg\\:pr-0{padding-right:0rem!important}.lg\\:pr-1{padding-right:.25rem!important}.lg\\:pr-2{padding-right:.5rem!important}.lg\\:pr-3{padding-right:1rem!important}.lg\\:pr-4{padding-right:1.5rem!important}.lg\\:pr-5{padding-right:2rem!important}.lg\\:pr-6{padding-right:3rem!important}.lg\\:pr-7{padding-right:4rem!important}.lg\\:pr-8{padding-right:5rem!important}.lg\\:pl-0{padding-left:0rem!important}.lg\\:pl-1{padding-left:.25rem!important}.lg\\:pl-2{padding-left:.5rem!important}.lg\\:pl-3{padding-left:1rem!important}.lg\\:pl-4{padding-left:1.5rem!important}.lg\\:pl-5{padding-left:2rem!important}.lg\\:pl-6{padding-left:3rem!important}.lg\\:pl-7{padding-left:4rem!important}.lg\\:pl-8{padding-left:5rem!important}.lg\\:pb-0{padding-bottom:0rem!important}.lg\\:pb-1{padding-bottom:.25rem!important}.lg\\:pb-2{padding-bottom:.5rem!important}.lg\\:pb-3{padding-bottom:1rem!important}.lg\\:pb-4{padding-bottom:1.5rem!important}.lg\\:pb-5{padding-bottom:2rem!important}.lg\\:pb-6{padding-bottom:3rem!important}.lg\\:pb-7{padding-bottom:4rem!important}.lg\\:pb-8{padding-bottom:5rem!important}.lg\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.lg\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.lg\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.lg\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.lg\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.lg\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.lg\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.lg\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.lg\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.lg\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.lg\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.lg\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.lg\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.lg\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.lg\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.lg\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.lg\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.lg\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 1200px){.xl\\:p-0{padding:0rem!important}.xl\\:p-1{padding:.25rem!important}.xl\\:p-2{padding:.5rem!important}.xl\\:p-3{padding:1rem!important}.xl\\:p-4{padding:1.5rem!important}.xl\\:p-5{padding:2rem!important}.xl\\:p-6{padding:3rem!important}.xl\\:p-7{padding:4rem!important}.xl\\:p-8{padding:5rem!important}.xl\\:pt-0{padding-top:0rem!important}.xl\\:pt-1{padding-top:.25rem!important}.xl\\:pt-2{padding-top:.5rem!important}.xl\\:pt-3{padding-top:1rem!important}.xl\\:pt-4{padding-top:1.5rem!important}.xl\\:pt-5{padding-top:2rem!important}.xl\\:pt-6{padding-top:3rem!important}.xl\\:pt-7{padding-top:4rem!important}.xl\\:pt-8{padding-top:5rem!important}.xl\\:pr-0{padding-right:0rem!important}.xl\\:pr-1{padding-right:.25rem!important}.xl\\:pr-2{padding-right:.5rem!important}.xl\\:pr-3{padding-right:1rem!important}.xl\\:pr-4{padding-right:1.5rem!important}.xl\\:pr-5{padding-right:2rem!important}.xl\\:pr-6{padding-right:3rem!important}.xl\\:pr-7{padding-right:4rem!important}.xl\\:pr-8{padding-right:5rem!important}.xl\\:pl-0{padding-left:0rem!important}.xl\\:pl-1{padding-left:.25rem!important}.xl\\:pl-2{padding-left:.5rem!important}.xl\\:pl-3{padding-left:1rem!important}.xl\\:pl-4{padding-left:1.5rem!important}.xl\\:pl-5{padding-left:2rem!important}.xl\\:pl-6{padding-left:3rem!important}.xl\\:pl-7{padding-left:4rem!important}.xl\\:pl-8{padding-left:5rem!important}.xl\\:pb-0{padding-bottom:0rem!important}.xl\\:pb-1{padding-bottom:.25rem!important}.xl\\:pb-2{padding-bottom:.5rem!important}.xl\\:pb-3{padding-bottom:1rem!important}.xl\\:pb-4{padding-bottom:1.5rem!important}.xl\\:pb-5{padding-bottom:2rem!important}.xl\\:pb-6{padding-bottom:3rem!important}.xl\\:pb-7{padding-bottom:4rem!important}.xl\\:pb-8{padding-bottom:5rem!important}.xl\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.xl\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.xl\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.xl\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.xl\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.xl\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.xl\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.xl\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.xl\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.xl\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.xl\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.xl\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.xl\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.xl\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.xl\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.xl\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.xl\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.xl\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}.m-0{margin:0rem!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:2rem!important}.m-6{margin:3rem!important}.m-7{margin:4rem!important}.m-8{margin:5rem!important}.-m-1{margin:-.25rem!important}.-m-2{margin:-.5rem!important}.-m-3{margin:-1rem!important}.-m-4{margin:-1.5rem!important}.-m-5{margin:-2rem!important}.-m-6{margin:-3rem!important}.-m-7{margin:-4rem!important}.-m-8{margin:-5rem!important}.m-auto{margin:auto!important}.mt-0{margin-top:0rem!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:2rem!important}.mt-6{margin-top:3rem!important}.mt-7{margin-top:4rem!important}.mt-8{margin-top:5rem!important}.-mt-1{margin-top:-.25rem!important}.-mt-2{margin-top:-.5rem!important}.-mt-3{margin-top:-1rem!important}.-mt-4{margin-top:-1.5rem!important}.-mt-5{margin-top:-2rem!important}.-mt-6{margin-top:-3rem!important}.-mt-7{margin-top:-4rem!important}.-mt-8{margin-top:-5rem!important}.mt-auto{margin-top:auto!important}.mr-0{margin-right:0rem!important}.mr-1{margin-right:.25rem!important}.mr-2{margin-right:.5rem!important}.mr-3{margin-right:1rem!important}.mr-4{margin-right:1.5rem!important}.mr-5{margin-right:2rem!important}.mr-6{margin-right:3rem!important}.mr-7{margin-right:4rem!important}.mr-8{margin-right:5rem!important}.-mr-1{margin-right:-.25rem!important}.-mr-2{margin-right:-.5rem!important}.-mr-3{margin-right:-1rem!important}.-mr-4{margin-right:-1.5rem!important}.-mr-5{margin-right:-2rem!important}.-mr-6{margin-right:-3rem!important}.-mr-7{margin-right:-4rem!important}.-mr-8{margin-right:-5rem!important}.mr-auto{margin-right:auto!important}.ml-0{margin-left:0rem!important}.ml-1{margin-left:.25rem!important}.ml-2{margin-left:.5rem!important}.ml-3{margin-left:1rem!important}.ml-4{margin-left:1.5rem!important}.ml-5{margin-left:2rem!important}.ml-6{margin-left:3rem!important}.ml-7{margin-left:4rem!important}.ml-8{margin-left:5rem!important}.-ml-1{margin-left:-.25rem!important}.-ml-2{margin-left:-.5rem!important}.-ml-3{margin-left:-1rem!important}.-ml-4{margin-left:-1.5rem!important}.-ml-5{margin-left:-2rem!important}.-ml-6{margin-left:-3rem!important}.-ml-7{margin-left:-4rem!important}.-ml-8{margin-left:-5rem!important}.ml-auto{margin-left:auto!important}.mb-0{margin-bottom:0rem!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:2rem!important}.mb-6{margin-bottom:3rem!important}.mb-7{margin-bottom:4rem!important}.mb-8{margin-bottom:5rem!important}.-mb-1{margin-bottom:-.25rem!important}.-mb-2{margin-bottom:-.5rem!important}.-mb-3{margin-bottom:-1rem!important}.-mb-4{margin-bottom:-1.5rem!important}.-mb-5{margin-bottom:-2rem!important}.-mb-6{margin-bottom:-3rem!important}.-mb-7{margin-bottom:-4rem!important}.-mb-8{margin-bottom:-5rem!important}.mb-auto{margin-bottom:auto!important}.mx-0{margin-left:0rem!important;margin-right:0rem!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:2rem!important;margin-right:2rem!important}.mx-6{margin-left:3rem!important;margin-right:3rem!important}.mx-7{margin-left:4rem!important;margin-right:4rem!important}.mx-8{margin-left:5rem!important;margin-right:5rem!important}.-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0rem!important;margin-bottom:0rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:2rem!important;margin-bottom:2rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.my-7{margin-top:4rem!important;margin-bottom:4rem!important}.my-8{margin-top:5rem!important;margin-bottom:5rem!important}.-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}@media screen and (min-width: 576px){.sm\\:m-0{margin:0rem!important}.sm\\:m-1{margin:.25rem!important}.sm\\:m-2{margin:.5rem!important}.sm\\:m-3{margin:1rem!important}.sm\\:m-4{margin:1.5rem!important}.sm\\:m-5{margin:2rem!important}.sm\\:m-6{margin:3rem!important}.sm\\:m-7{margin:4rem!important}.sm\\:m-8{margin:5rem!important}.sm\\:-m-1{margin:-.25rem!important}.sm\\:-m-2{margin:-.5rem!important}.sm\\:-m-3{margin:-1rem!important}.sm\\:-m-4{margin:-1.5rem!important}.sm\\:-m-5{margin:-2rem!important}.sm\\:-m-6{margin:-3rem!important}.sm\\:-m-7{margin:-4rem!important}.sm\\:-m-8{margin:-5rem!important}.sm\\:m-auto{margin:auto!important}.sm\\:mt-0{margin-top:0rem!important}.sm\\:mt-1{margin-top:.25rem!important}.sm\\:mt-2{margin-top:.5rem!important}.sm\\:mt-3{margin-top:1rem!important}.sm\\:mt-4{margin-top:1.5rem!important}.sm\\:mt-5{margin-top:2rem!important}.sm\\:mt-6{margin-top:3rem!important}.sm\\:mt-7{margin-top:4rem!important}.sm\\:mt-8{margin-top:5rem!important}.sm\\:-mt-1{margin-top:-.25rem!important}.sm\\:-mt-2{margin-top:-.5rem!important}.sm\\:-mt-3{margin-top:-1rem!important}.sm\\:-mt-4{margin-top:-1.5rem!important}.sm\\:-mt-5{margin-top:-2rem!important}.sm\\:-mt-6{margin-top:-3rem!important}.sm\\:-mt-7{margin-top:-4rem!important}.sm\\:-mt-8{margin-top:-5rem!important}.sm\\:mt-auto{margin-top:auto!important}.sm\\:mr-0{margin-right:0rem!important}.sm\\:mr-1{margin-right:.25rem!important}.sm\\:mr-2{margin-right:.5rem!important}.sm\\:mr-3{margin-right:1rem!important}.sm\\:mr-4{margin-right:1.5rem!important}.sm\\:mr-5{margin-right:2rem!important}.sm\\:mr-6{margin-right:3rem!important}.sm\\:mr-7{margin-right:4rem!important}.sm\\:mr-8{margin-right:5rem!important}.sm\\:-mr-1{margin-right:-.25rem!important}.sm\\:-mr-2{margin-right:-.5rem!important}.sm\\:-mr-3{margin-right:-1rem!important}.sm\\:-mr-4{margin-right:-1.5rem!important}.sm\\:-mr-5{margin-right:-2rem!important}.sm\\:-mr-6{margin-right:-3rem!important}.sm\\:-mr-7{margin-right:-4rem!important}.sm\\:-mr-8{margin-right:-5rem!important}.sm\\:mr-auto{margin-right:auto!important}.sm\\:ml-0{margin-left:0rem!important}.sm\\:ml-1{margin-left:.25rem!important}.sm\\:ml-2{margin-left:.5rem!important}.sm\\:ml-3{margin-left:1rem!important}.sm\\:ml-4{margin-left:1.5rem!important}.sm\\:ml-5{margin-left:2rem!important}.sm\\:ml-6{margin-left:3rem!important}.sm\\:ml-7{margin-left:4rem!important}.sm\\:ml-8{margin-left:5rem!important}.sm\\:-ml-1{margin-left:-.25rem!important}.sm\\:-ml-2{margin-left:-.5rem!important}.sm\\:-ml-3{margin-left:-1rem!important}.sm\\:-ml-4{margin-left:-1.5rem!important}.sm\\:-ml-5{margin-left:-2rem!important}.sm\\:-ml-6{margin-left:-3rem!important}.sm\\:-ml-7{margin-left:-4rem!important}.sm\\:-ml-8{margin-left:-5rem!important}.sm\\:ml-auto{margin-left:auto!important}.sm\\:mb-0{margin-bottom:0rem!important}.sm\\:mb-1{margin-bottom:.25rem!important}.sm\\:mb-2{margin-bottom:.5rem!important}.sm\\:mb-3{margin-bottom:1rem!important}.sm\\:mb-4{margin-bottom:1.5rem!important}.sm\\:mb-5{margin-bottom:2rem!important}.sm\\:mb-6{margin-bottom:3rem!important}.sm\\:mb-7{margin-bottom:4rem!important}.sm\\:mb-8{margin-bottom:5rem!important}.sm\\:-mb-1{margin-bottom:-.25rem!important}.sm\\:-mb-2{margin-bottom:-.5rem!important}.sm\\:-mb-3{margin-bottom:-1rem!important}.sm\\:-mb-4{margin-bottom:-1.5rem!important}.sm\\:-mb-5{margin-bottom:-2rem!important}.sm\\:-mb-6{margin-bottom:-3rem!important}.sm\\:-mb-7{margin-bottom:-4rem!important}.sm\\:-mb-8{margin-bottom:-5rem!important}.sm\\:mb-auto{margin-bottom:auto!important}.sm\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.sm\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.sm\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.sm\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.sm\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.sm\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.sm\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.sm\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.sm\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.sm\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.sm\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.sm\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.sm\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.sm\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.sm\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.sm\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.sm\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.sm\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.sm\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.sm\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.sm\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.sm\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.sm\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.sm\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.sm\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.sm\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.sm\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.sm\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.sm\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.sm\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.sm\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.sm\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.sm\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.sm\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.sm\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.sm\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 768px){.md\\:m-0{margin:0rem!important}.md\\:m-1{margin:.25rem!important}.md\\:m-2{margin:.5rem!important}.md\\:m-3{margin:1rem!important}.md\\:m-4{margin:1.5rem!important}.md\\:m-5{margin:2rem!important}.md\\:m-6{margin:3rem!important}.md\\:m-7{margin:4rem!important}.md\\:m-8{margin:5rem!important}.md\\:-m-1{margin:-.25rem!important}.md\\:-m-2{margin:-.5rem!important}.md\\:-m-3{margin:-1rem!important}.md\\:-m-4{margin:-1.5rem!important}.md\\:-m-5{margin:-2rem!important}.md\\:-m-6{margin:-3rem!important}.md\\:-m-7{margin:-4rem!important}.md\\:-m-8{margin:-5rem!important}.md\\:m-auto{margin:auto!important}.md\\:mt-0{margin-top:0rem!important}.md\\:mt-1{margin-top:.25rem!important}.md\\:mt-2{margin-top:.5rem!important}.md\\:mt-3{margin-top:1rem!important}.md\\:mt-4{margin-top:1.5rem!important}.md\\:mt-5{margin-top:2rem!important}.md\\:mt-6{margin-top:3rem!important}.md\\:mt-7{margin-top:4rem!important}.md\\:mt-8{margin-top:5rem!important}.md\\:-mt-1{margin-top:-.25rem!important}.md\\:-mt-2{margin-top:-.5rem!important}.md\\:-mt-3{margin-top:-1rem!important}.md\\:-mt-4{margin-top:-1.5rem!important}.md\\:-mt-5{margin-top:-2rem!important}.md\\:-mt-6{margin-top:-3rem!important}.md\\:-mt-7{margin-top:-4rem!important}.md\\:-mt-8{margin-top:-5rem!important}.md\\:mt-auto{margin-top:auto!important}.md\\:mr-0{margin-right:0rem!important}.md\\:mr-1{margin-right:.25rem!important}.md\\:mr-2{margin-right:.5rem!important}.md\\:mr-3{margin-right:1rem!important}.md\\:mr-4{margin-right:1.5rem!important}.md\\:mr-5{margin-right:2rem!important}.md\\:mr-6{margin-right:3rem!important}.md\\:mr-7{margin-right:4rem!important}.md\\:mr-8{margin-right:5rem!important}.md\\:-mr-1{margin-right:-.25rem!important}.md\\:-mr-2{margin-right:-.5rem!important}.md\\:-mr-3{margin-right:-1rem!important}.md\\:-mr-4{margin-right:-1.5rem!important}.md\\:-mr-5{margin-right:-2rem!important}.md\\:-mr-6{margin-right:-3rem!important}.md\\:-mr-7{margin-right:-4rem!important}.md\\:-mr-8{margin-right:-5rem!important}.md\\:mr-auto{margin-right:auto!important}.md\\:ml-0{margin-left:0rem!important}.md\\:ml-1{margin-left:.25rem!important}.md\\:ml-2{margin-left:.5rem!important}.md\\:ml-3{margin-left:1rem!important}.md\\:ml-4{margin-left:1.5rem!important}.md\\:ml-5{margin-left:2rem!important}.md\\:ml-6{margin-left:3rem!important}.md\\:ml-7{margin-left:4rem!important}.md\\:ml-8{margin-left:5rem!important}.md\\:-ml-1{margin-left:-.25rem!important}.md\\:-ml-2{margin-left:-.5rem!important}.md\\:-ml-3{margin-left:-1rem!important}.md\\:-ml-4{margin-left:-1.5rem!important}.md\\:-ml-5{margin-left:-2rem!important}.md\\:-ml-6{margin-left:-3rem!important}.md\\:-ml-7{margin-left:-4rem!important}.md\\:-ml-8{margin-left:-5rem!important}.md\\:ml-auto{margin-left:auto!important}.md\\:mb-0{margin-bottom:0rem!important}.md\\:mb-1{margin-bottom:.25rem!important}.md\\:mb-2{margin-bottom:.5rem!important}.md\\:mb-3{margin-bottom:1rem!important}.md\\:mb-4{margin-bottom:1.5rem!important}.md\\:mb-5{margin-bottom:2rem!important}.md\\:mb-6{margin-bottom:3rem!important}.md\\:mb-7{margin-bottom:4rem!important}.md\\:mb-8{margin-bottom:5rem!important}.md\\:-mb-1{margin-bottom:-.25rem!important}.md\\:-mb-2{margin-bottom:-.5rem!important}.md\\:-mb-3{margin-bottom:-1rem!important}.md\\:-mb-4{margin-bottom:-1.5rem!important}.md\\:-mb-5{margin-bottom:-2rem!important}.md\\:-mb-6{margin-bottom:-3rem!important}.md\\:-mb-7{margin-bottom:-4rem!important}.md\\:-mb-8{margin-bottom:-5rem!important}.md\\:mb-auto{margin-bottom:auto!important}.md\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.md\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.md\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.md\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.md\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.md\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.md\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.md\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.md\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.md\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.md\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.md\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.md\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.md\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.md\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.md\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.md\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.md\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.md\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.md\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.md\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.md\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.md\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.md\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.md\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.md\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.md\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.md\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.md\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.md\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.md\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.md\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.md\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.md\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.md\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.md\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 992px){.lg\\:m-0{margin:0rem!important}.lg\\:m-1{margin:.25rem!important}.lg\\:m-2{margin:.5rem!important}.lg\\:m-3{margin:1rem!important}.lg\\:m-4{margin:1.5rem!important}.lg\\:m-5{margin:2rem!important}.lg\\:m-6{margin:3rem!important}.lg\\:m-7{margin:4rem!important}.lg\\:m-8{margin:5rem!important}.lg\\:-m-1{margin:-.25rem!important}.lg\\:-m-2{margin:-.5rem!important}.lg\\:-m-3{margin:-1rem!important}.lg\\:-m-4{margin:-1.5rem!important}.lg\\:-m-5{margin:-2rem!important}.lg\\:-m-6{margin:-3rem!important}.lg\\:-m-7{margin:-4rem!important}.lg\\:-m-8{margin:-5rem!important}.lg\\:m-auto{margin:auto!important}.lg\\:mt-0{margin-top:0rem!important}.lg\\:mt-1{margin-top:.25rem!important}.lg\\:mt-2{margin-top:.5rem!important}.lg\\:mt-3{margin-top:1rem!important}.lg\\:mt-4{margin-top:1.5rem!important}.lg\\:mt-5{margin-top:2rem!important}.lg\\:mt-6{margin-top:3rem!important}.lg\\:mt-7{margin-top:4rem!important}.lg\\:mt-8{margin-top:5rem!important}.lg\\:-mt-1{margin-top:-.25rem!important}.lg\\:-mt-2{margin-top:-.5rem!important}.lg\\:-mt-3{margin-top:-1rem!important}.lg\\:-mt-4{margin-top:-1.5rem!important}.lg\\:-mt-5{margin-top:-2rem!important}.lg\\:-mt-6{margin-top:-3rem!important}.lg\\:-mt-7{margin-top:-4rem!important}.lg\\:-mt-8{margin-top:-5rem!important}.lg\\:mt-auto{margin-top:auto!important}.lg\\:mr-0{margin-right:0rem!important}.lg\\:mr-1{margin-right:.25rem!important}.lg\\:mr-2{margin-right:.5rem!important}.lg\\:mr-3{margin-right:1rem!important}.lg\\:mr-4{margin-right:1.5rem!important}.lg\\:mr-5{margin-right:2rem!important}.lg\\:mr-6{margin-right:3rem!important}.lg\\:mr-7{margin-right:4rem!important}.lg\\:mr-8{margin-right:5rem!important}.lg\\:-mr-1{margin-right:-.25rem!important}.lg\\:-mr-2{margin-right:-.5rem!important}.lg\\:-mr-3{margin-right:-1rem!important}.lg\\:-mr-4{margin-right:-1.5rem!important}.lg\\:-mr-5{margin-right:-2rem!important}.lg\\:-mr-6{margin-right:-3rem!important}.lg\\:-mr-7{margin-right:-4rem!important}.lg\\:-mr-8{margin-right:-5rem!important}.lg\\:mr-auto{margin-right:auto!important}.lg\\:ml-0{margin-left:0rem!important}.lg\\:ml-1{margin-left:.25rem!important}.lg\\:ml-2{margin-left:.5rem!important}.lg\\:ml-3{margin-left:1rem!important}.lg\\:ml-4{margin-left:1.5rem!important}.lg\\:ml-5{margin-left:2rem!important}.lg\\:ml-6{margin-left:3rem!important}.lg\\:ml-7{margin-left:4rem!important}.lg\\:ml-8{margin-left:5rem!important}.lg\\:-ml-1{margin-left:-.25rem!important}.lg\\:-ml-2{margin-left:-.5rem!important}.lg\\:-ml-3{margin-left:-1rem!important}.lg\\:-ml-4{margin-left:-1.5rem!important}.lg\\:-ml-5{margin-left:-2rem!important}.lg\\:-ml-6{margin-left:-3rem!important}.lg\\:-ml-7{margin-left:-4rem!important}.lg\\:-ml-8{margin-left:-5rem!important}.lg\\:ml-auto{margin-left:auto!important}.lg\\:mb-0{margin-bottom:0rem!important}.lg\\:mb-1{margin-bottom:.25rem!important}.lg\\:mb-2{margin-bottom:.5rem!important}.lg\\:mb-3{margin-bottom:1rem!important}.lg\\:mb-4{margin-bottom:1.5rem!important}.lg\\:mb-5{margin-bottom:2rem!important}.lg\\:mb-6{margin-bottom:3rem!important}.lg\\:mb-7{margin-bottom:4rem!important}.lg\\:mb-8{margin-bottom:5rem!important}.lg\\:-mb-1{margin-bottom:-.25rem!important}.lg\\:-mb-2{margin-bottom:-.5rem!important}.lg\\:-mb-3{margin-bottom:-1rem!important}.lg\\:-mb-4{margin-bottom:-1.5rem!important}.lg\\:-mb-5{margin-bottom:-2rem!important}.lg\\:-mb-6{margin-bottom:-3rem!important}.lg\\:-mb-7{margin-bottom:-4rem!important}.lg\\:-mb-8{margin-bottom:-5rem!important}.lg\\:mb-auto{margin-bottom:auto!important}.lg\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.lg\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.lg\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.lg\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.lg\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.lg\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.lg\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.lg\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.lg\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.lg\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.lg\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.lg\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.lg\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.lg\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.lg\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.lg\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.lg\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.lg\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.lg\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.lg\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.lg\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.lg\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.lg\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.lg\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.lg\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.lg\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.lg\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.lg\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.lg\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.lg\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.lg\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.lg\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.lg\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.lg\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.lg\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.lg\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 1200px){.xl\\:m-0{margin:0rem!important}.xl\\:m-1{margin:.25rem!important}.xl\\:m-2{margin:.5rem!important}.xl\\:m-3{margin:1rem!important}.xl\\:m-4{margin:1.5rem!important}.xl\\:m-5{margin:2rem!important}.xl\\:m-6{margin:3rem!important}.xl\\:m-7{margin:4rem!important}.xl\\:m-8{margin:5rem!important}.xl\\:-m-1{margin:-.25rem!important}.xl\\:-m-2{margin:-.5rem!important}.xl\\:-m-3{margin:-1rem!important}.xl\\:-m-4{margin:-1.5rem!important}.xl\\:-m-5{margin:-2rem!important}.xl\\:-m-6{margin:-3rem!important}.xl\\:-m-7{margin:-4rem!important}.xl\\:-m-8{margin:-5rem!important}.xl\\:m-auto{margin:auto!important}.xl\\:mt-0{margin-top:0rem!important}.xl\\:mt-1{margin-top:.25rem!important}.xl\\:mt-2{margin-top:.5rem!important}.xl\\:mt-3{margin-top:1rem!important}.xl\\:mt-4{margin-top:1.5rem!important}.xl\\:mt-5{margin-top:2rem!important}.xl\\:mt-6{margin-top:3rem!important}.xl\\:mt-7{margin-top:4rem!important}.xl\\:mt-8{margin-top:5rem!important}.xl\\:-mt-1{margin-top:-.25rem!important}.xl\\:-mt-2{margin-top:-.5rem!important}.xl\\:-mt-3{margin-top:-1rem!important}.xl\\:-mt-4{margin-top:-1.5rem!important}.xl\\:-mt-5{margin-top:-2rem!important}.xl\\:-mt-6{margin-top:-3rem!important}.xl\\:-mt-7{margin-top:-4rem!important}.xl\\:-mt-8{margin-top:-5rem!important}.xl\\:mt-auto{margin-top:auto!important}.xl\\:mr-0{margin-right:0rem!important}.xl\\:mr-1{margin-right:.25rem!important}.xl\\:mr-2{margin-right:.5rem!important}.xl\\:mr-3{margin-right:1rem!important}.xl\\:mr-4{margin-right:1.5rem!important}.xl\\:mr-5{margin-right:2rem!important}.xl\\:mr-6{margin-right:3rem!important}.xl\\:mr-7{margin-right:4rem!important}.xl\\:mr-8{margin-right:5rem!important}.xl\\:-mr-1{margin-right:-.25rem!important}.xl\\:-mr-2{margin-right:-.5rem!important}.xl\\:-mr-3{margin-right:-1rem!important}.xl\\:-mr-4{margin-right:-1.5rem!important}.xl\\:-mr-5{margin-right:-2rem!important}.xl\\:-mr-6{margin-right:-3rem!important}.xl\\:-mr-7{margin-right:-4rem!important}.xl\\:-mr-8{margin-right:-5rem!important}.xl\\:mr-auto{margin-right:auto!important}.xl\\:ml-0{margin-left:0rem!important}.xl\\:ml-1{margin-left:.25rem!important}.xl\\:ml-2{margin-left:.5rem!important}.xl\\:ml-3{margin-left:1rem!important}.xl\\:ml-4{margin-left:1.5rem!important}.xl\\:ml-5{margin-left:2rem!important}.xl\\:ml-6{margin-left:3rem!important}.xl\\:ml-7{margin-left:4rem!important}.xl\\:ml-8{margin-left:5rem!important}.xl\\:-ml-1{margin-left:-.25rem!important}.xl\\:-ml-2{margin-left:-.5rem!important}.xl\\:-ml-3{margin-left:-1rem!important}.xl\\:-ml-4{margin-left:-1.5rem!important}.xl\\:-ml-5{margin-left:-2rem!important}.xl\\:-ml-6{margin-left:-3rem!important}.xl\\:-ml-7{margin-left:-4rem!important}.xl\\:-ml-8{margin-left:-5rem!important}.xl\\:ml-auto{margin-left:auto!important}.xl\\:mb-0{margin-bottom:0rem!important}.xl\\:mb-1{margin-bottom:.25rem!important}.xl\\:mb-2{margin-bottom:.5rem!important}.xl\\:mb-3{margin-bottom:1rem!important}.xl\\:mb-4{margin-bottom:1.5rem!important}.xl\\:mb-5{margin-bottom:2rem!important}.xl\\:mb-6{margin-bottom:3rem!important}.xl\\:mb-7{margin-bottom:4rem!important}.xl\\:mb-8{margin-bottom:5rem!important}.xl\\:-mb-1{margin-bottom:-.25rem!important}.xl\\:-mb-2{margin-bottom:-.5rem!important}.xl\\:-mb-3{margin-bottom:-1rem!important}.xl\\:-mb-4{margin-bottom:-1.5rem!important}.xl\\:-mb-5{margin-bottom:-2rem!important}.xl\\:-mb-6{margin-bottom:-3rem!important}.xl\\:-mb-7{margin-bottom:-4rem!important}.xl\\:-mb-8{margin-bottom:-5rem!important}.xl\\:mb-auto{margin-bottom:auto!important}.xl\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.xl\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.xl\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.xl\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.xl\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.xl\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.xl\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.xl\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.xl\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.xl\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.xl\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.xl\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.xl\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.xl\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.xl\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.xl\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.xl\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.xl\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.xl\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.xl\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.xl\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.xl\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.xl\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.xl\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.xl\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.xl\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.xl\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.xl\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.xl\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.xl\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.xl\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.xl\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.xl\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.xl\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.xl\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.xl\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}.shadow-none{box-shadow:none!important}.shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.focus\\:shadow-none:focus{box-shadow:none!important}.hover\\:shadow-none:hover,.active\\:shadow-none:active{box-shadow:none!important}.focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.hover\\:shadow-1:hover,.active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.hover\\:shadow-2:hover,.active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.hover\\:shadow-3:hover,.active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.hover\\:shadow-4:hover,.active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.hover\\:shadow-5:hover,.active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.hover\\:shadow-6:hover,.active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.hover\\:shadow-7:hover,.active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.hover\\:shadow-8:hover,.active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}@media screen and (min-width: 576px){.sm\\:shadow-none{box-shadow:none!important}.sm\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:focus\\:shadow-none:focus{box-shadow:none!important}.sm\\:hover\\:shadow-none:hover,.sm\\:active\\:shadow-none:active{box-shadow:none!important}.sm\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:hover\\:shadow-1:hover,.sm\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:hover\\:shadow-2:hover,.sm\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:hover\\:shadow-3:hover,.sm\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:hover\\:shadow-4:hover,.sm\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:hover\\:shadow-5:hover,.sm\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:hover\\:shadow-6:hover,.sm\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:hover\\:shadow-7:hover,.sm\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:hover\\:shadow-8:hover,.sm\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 768px){.md\\:shadow-none{box-shadow:none!important}.md\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:focus\\:shadow-none:focus{box-shadow:none!important}.md\\:hover\\:shadow-none:hover,.md\\:active\\:shadow-none:active{box-shadow:none!important}.md\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:hover\\:shadow-1:hover,.md\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:hover\\:shadow-2:hover,.md\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:hover\\:shadow-3:hover,.md\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:hover\\:shadow-4:hover,.md\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:hover\\:shadow-5:hover,.md\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:hover\\:shadow-6:hover,.md\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:hover\\:shadow-7:hover,.md\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:hover\\:shadow-8:hover,.md\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 992px){.lg\\:shadow-none{box-shadow:none!important}.lg\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:focus\\:shadow-none:focus{box-shadow:none!important}.lg\\:hover\\:shadow-none:hover,.lg\\:active\\:shadow-none:active{box-shadow:none!important}.lg\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:hover\\:shadow-1:hover,.lg\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:hover\\:shadow-2:hover,.lg\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:hover\\:shadow-3:hover,.lg\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:hover\\:shadow-4:hover,.lg\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:hover\\:shadow-5:hover,.lg\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:hover\\:shadow-6:hover,.lg\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:hover\\:shadow-7:hover,.lg\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:hover\\:shadow-8:hover,.lg\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 1200px){.xl\\:shadow-none{box-shadow:none!important}.xl\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:focus\\:shadow-none:focus{box-shadow:none!important}.xl\\:hover\\:shadow-none:hover,.xl\\:active\\:shadow-none:active{box-shadow:none!important}.xl\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:hover\\:shadow-1:hover,.xl\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:hover\\:shadow-2:hover,.xl\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:hover\\:shadow-3:hover,.xl\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:hover\\:shadow-4:hover,.xl\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:hover\\:shadow-5:hover,.xl\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:hover\\:shadow-6:hover,.xl\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:hover\\:shadow-7:hover,.xl\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:hover\\:shadow-8:hover,.xl\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}.border-none{border-width:0px!important;border-style:none}.border-1{border-width:1px!important;border-style:solid}.border-2{border-width:2px!important;border-style:solid}.border-3{border-width:3px!important;border-style:solid}.border-top-none{border-top-width:0px!important;border-top-style:none}.border-top-1{border-top-width:1px!important;border-top-style:solid}.border-top-2{border-top-width:2px!important;border-top-style:solid}.border-top-3{border-top-width:3px!important;border-top-style:solid}.border-right-none{border-right-width:0px!important;border-right-style:none}.border-right-1{border-right-width:1px!important;border-right-style:solid}.border-right-2{border-right-width:2px!important;border-right-style:solid}.border-right-3{border-right-width:3px!important;border-right-style:solid}.border-left-none{border-left-width:0px!important;border-left-style:none}.border-left-1{border-left-width:1px!important;border-left-style:solid}.border-left-2{border-left-width:2px!important;border-left-style:solid}.border-left-3{border-left-width:3px!important;border-left-style:solid}.border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}@media screen and (min-width: 576px){.sm\\:border-none{border-width:0px!important;border-style:none}.sm\\:border-1{border-width:1px!important;border-style:solid}.sm\\:border-2{border-width:2px!important;border-style:solid}.sm\\:border-3{border-width:3px!important;border-style:solid}.sm\\:border-top-none{border-top-width:0px!important;border-top-style:none}.sm\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.sm\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.sm\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.sm\\:border-right-none{border-right-width:0px!important;border-right-style:none}.sm\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.sm\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.sm\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.sm\\:border-left-none{border-left-width:0px!important;border-left-style:none}.sm\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.sm\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.sm\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.sm\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.sm\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.sm\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.sm\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.sm\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.sm\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 768px){.md\\:border-none{border-width:0px!important;border-style:none}.md\\:border-1{border-width:1px!important;border-style:solid}.md\\:border-2{border-width:2px!important;border-style:solid}.md\\:border-3{border-width:3px!important;border-style:solid}.md\\:border-top-none{border-top-width:0px!important;border-top-style:none}.md\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.md\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.md\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.md\\:border-right-none{border-right-width:0px!important;border-right-style:none}.md\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.md\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.md\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.md\\:border-left-none{border-left-width:0px!important;border-left-style:none}.md\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.md\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.md\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.md\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.md\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.md\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.md\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.md\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.md\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 992px){.lg\\:border-none{border-width:0px!important;border-style:none}.lg\\:border-1{border-width:1px!important;border-style:solid}.lg\\:border-2{border-width:2px!important;border-style:solid}.lg\\:border-3{border-width:3px!important;border-style:solid}.lg\\:border-top-none{border-top-width:0px!important;border-top-style:none}.lg\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.lg\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.lg\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.lg\\:border-right-none{border-right-width:0px!important;border-right-style:none}.lg\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.lg\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.lg\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.lg\\:border-left-none{border-left-width:0px!important;border-left-style:none}.lg\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.lg\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.lg\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.lg\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.lg\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.lg\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.lg\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.lg\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.lg\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 1200px){.xl\\:border-none{border-width:0px!important;border-style:none}.xl\\:border-1{border-width:1px!important;border-style:solid}.xl\\:border-2{border-width:2px!important;border-style:solid}.xl\\:border-3{border-width:3px!important;border-style:solid}.xl\\:border-top-none{border-top-width:0px!important;border-top-style:none}.xl\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.xl\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.xl\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.xl\\:border-right-none{border-right-width:0px!important;border-right-style:none}.xl\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.xl\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.xl\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.xl\\:border-left-none{border-left-width:0px!important;border-left-style:none}.xl\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.xl\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.xl\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.xl\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.xl\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.xl\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.xl\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.xl\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.xl\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}.border-solid{border-style:solid!important}.border-dashed{border-style:dashed!important}.border-dotted{border-style:dotted!important}.border-double{border-style:double!important}@media screen and (min-width: 576px){.sm\\:border-solid{border-style:solid!important}.sm\\:border-dashed{border-style:dashed!important}.sm\\:border-dotted{border-style:dotted!important}.sm\\:border-double{border-style:double!important}}@media screen and (min-width: 768px){.md\\:border-solid{border-style:solid!important}.md\\:border-dashed{border-style:dashed!important}.md\\:border-dotted{border-style:dotted!important}.md\\:border-double{border-style:double!important}}@media screen and (min-width: 992px){.lg\\:border-solid{border-style:solid!important}.lg\\:border-dashed{border-style:dashed!important}.lg\\:border-dotted{border-style:dotted!important}.lg\\:border-double{border-style:double!important}}@media screen and (min-width: 1200px){.xl\\:border-solid{border-style:solid!important}.xl\\:border-dashed{border-style:dashed!important}.xl\\:border-dotted{border-style:dotted!important}.xl\\:border-double{border-style:double!important}}.border-noround{border-radius:0!important}.border-round{border-radius:var(--border-radius)!important}.border-round-xs{border-radius:.125rem!important}.border-round-sm{border-radius:.25rem!important}.border-round-md{border-radius:.375rem!important}.border-round-lg{border-radius:.5rem!important}.border-round-xl{border-radius:.75rem!important}.border-round-2xl{border-radius:1rem!important}.border-round-3xl{border-radius:1.5rem!important}.border-circle{border-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround{border-radius:0!important}.sm\\:border-round{border-radius:var(--border-radius)!important}.sm\\:border-round-xs{border-radius:.125rem!important}.sm\\:border-round-sm{border-radius:.25rem!important}.sm\\:border-round-md{border-radius:.375rem!important}.sm\\:border-round-lg{border-radius:.5rem!important}.sm\\:border-round-xl{border-radius:.75rem!important}.sm\\:border-round-2xl{border-radius:1rem!important}.sm\\:border-round-3xl{border-radius:1.5rem!important}.sm\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround{border-radius:0!important}.md\\:border-round{border-radius:var(--border-radius)!important}.md\\:border-round-xs{border-radius:.125rem!important}.md\\:border-round-sm{border-radius:.25rem!important}.md\\:border-round-md{border-radius:.375rem!important}.md\\:border-round-lg{border-radius:.5rem!important}.md\\:border-round-xl{border-radius:.75rem!important}.md\\:border-round-2xl{border-radius:1rem!important}.md\\:border-round-3xl{border-radius:1.5rem!important}.md\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround{border-radius:0!important}.lg\\:border-round{border-radius:var(--border-radius)!important}.lg\\:border-round-xs{border-radius:.125rem!important}.lg\\:border-round-sm{border-radius:.25rem!important}.lg\\:border-round-md{border-radius:.375rem!important}.lg\\:border-round-lg{border-radius:.5rem!important}.lg\\:border-round-xl{border-radius:.75rem!important}.lg\\:border-round-2xl{border-radius:1rem!important}.lg\\:border-round-3xl{border-radius:1.5rem!important}.lg\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround{border-radius:0!important}.xl\\:border-round{border-radius:var(--border-radius)!important}.xl\\:border-round-xs{border-radius:.125rem!important}.xl\\:border-round-sm{border-radius:.25rem!important}.xl\\:border-round-md{border-radius:.375rem!important}.xl\\:border-round-lg{border-radius:.5rem!important}.xl\\:border-round-xl{border-radius:.75rem!important}.xl\\:border-round-2xl{border-radius:1rem!important}.xl\\:border-round-3xl{border-radius:1.5rem!important}.xl\\:border-circle{border-radius:50%!important}}.border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.sm\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.sm\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.sm\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.sm\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.sm\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.sm\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.sm\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.sm\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.sm\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.sm\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.sm\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.sm\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.sm\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.sm\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.sm\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.sm\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.sm\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.sm\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.sm\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.sm\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.sm\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.md\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.md\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.md\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.md\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.md\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.md\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.md\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.md\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.md\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.md\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.md\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.md\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.md\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.md\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.md\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.md\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.md\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.md\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.md\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.md\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.md\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.lg\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.lg\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.lg\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.lg\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.lg\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.lg\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.lg\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.lg\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.lg\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.lg\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.lg\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.lg\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.lg\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.lg\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.lg\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.lg\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.lg\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.lg\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.lg\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.lg\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.lg\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.xl\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.xl\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.xl\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.xl\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.xl\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.xl\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.xl\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.xl\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.xl\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.xl\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.xl\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.xl\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.xl\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.xl\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.xl\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.xl\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.xl\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.xl\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.xl\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.xl\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.xl\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}.w-full{width:100%!important}.w-screen{width:100vw!important}.w-auto{width:auto!important}.w-1{width:8.3333%!important}.w-2{width:16.6667%!important}.w-3{width:25%!important}.w-4{width:33.3333%!important}.w-5{width:41.6667%!important}.w-6{width:50%!important}.w-7{width:58.3333%!important}.w-8{width:66.6667%!important}.w-9{width:75%!important}.w-10{width:83.3333%!important}.w-11{width:91.6667%!important}.w-12{width:100%!important}.w-min{width:min-content!important}.w-max{width:max-content!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-1rem{width:1rem!important}.w-2rem{width:2rem!important}.w-3rem{width:3rem!important}.w-4rem{width:4rem!important}.w-5rem{width:5rem!important}.w-6rem{width:6rem!important}.w-7rem{width:7rem!important}.w-8rem{width:8rem!important}.w-9rem{width:9rem!important}.w-10rem{width:10rem!important}.w-11rem{width:11rem!important}.w-12rem{width:12rem!important}.w-13rem{width:13rem!important}.w-14rem{width:14rem!important}.w-15rem{width:15rem!important}.w-16rem{width:16rem!important}.w-17rem{width:17rem!important}.w-18rem{width:18rem!important}.w-19rem{width:19rem!important}.w-20rem{width:20rem!important}.w-21rem{width:21rem!important}.w-22rem{width:22rem!important}.w-23rem{width:23rem!important}.w-24rem{width:24rem!important}.w-25rem{width:25rem!important}.w-26rem{width:26rem!important}.w-27rem{width:27rem!important}.w-28rem{width:28rem!important}.w-29rem{width:29rem!important}.w-30rem{width:30rem!important}@media screen and (min-width: 576px){.sm\\:w-full{width:100%!important}.sm\\:w-screen{width:100vw!important}.sm\\:w-auto{width:auto!important}.sm\\:w-1{width:8.3333%!important}.sm\\:w-2{width:16.6667%!important}.sm\\:w-3{width:25%!important}.sm\\:w-4{width:33.3333%!important}.sm\\:w-5{width:41.6667%!important}.sm\\:w-6{width:50%!important}.sm\\:w-7{width:58.3333%!important}.sm\\:w-8{width:66.6667%!important}.sm\\:w-9{width:75%!important}.sm\\:w-10{width:83.3333%!important}.sm\\:w-11{width:91.6667%!important}.sm\\:w-12{width:100%!important}.sm\\:w-min{width:min-content!important}.sm\\:w-max{width:max-content!important}.sm\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.sm\\:w-1rem{width:1rem!important}.sm\\:w-2rem{width:2rem!important}.sm\\:w-3rem{width:3rem!important}.sm\\:w-4rem{width:4rem!important}.sm\\:w-5rem{width:5rem!important}.sm\\:w-6rem{width:6rem!important}.sm\\:w-7rem{width:7rem!important}.sm\\:w-8rem{width:8rem!important}.sm\\:w-9rem{width:9rem!important}.sm\\:w-10rem{width:10rem!important}.sm\\:w-11rem{width:11rem!important}.sm\\:w-12rem{width:12rem!important}.sm\\:w-13rem{width:13rem!important}.sm\\:w-14rem{width:14rem!important}.sm\\:w-15rem{width:15rem!important}.sm\\:w-16rem{width:16rem!important}.sm\\:w-17rem{width:17rem!important}.sm\\:w-18rem{width:18rem!important}.sm\\:w-19rem{width:19rem!important}.sm\\:w-20rem{width:20rem!important}.sm\\:w-21rem{width:21rem!important}.sm\\:w-22rem{width:22rem!important}.sm\\:w-23rem{width:23rem!important}.sm\\:w-24rem{width:24rem!important}.sm\\:w-25rem{width:25rem!important}.sm\\:w-26rem{width:26rem!important}.sm\\:w-27rem{width:27rem!important}.sm\\:w-28rem{width:28rem!important}.sm\\:w-29rem{width:29rem!important}.sm\\:w-30rem{width:30rem!important}}@media screen and (min-width: 768px){.md\\:w-full{width:100%!important}.md\\:w-screen{width:100vw!important}.md\\:w-auto{width:auto!important}.md\\:w-1{width:8.3333%!important}.md\\:w-2{width:16.6667%!important}.md\\:w-3{width:25%!important}.md\\:w-4{width:33.3333%!important}.md\\:w-5{width:41.6667%!important}.md\\:w-6{width:50%!important}.md\\:w-7{width:58.3333%!important}.md\\:w-8{width:66.6667%!important}.md\\:w-9{width:75%!important}.md\\:w-10{width:83.3333%!important}.md\\:w-11{width:91.6667%!important}.md\\:w-12{width:100%!important}.md\\:w-min{width:min-content!important}.md\\:w-max{width:max-content!important}.md\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.md\\:w-1rem{width:1rem!important}.md\\:w-2rem{width:2rem!important}.md\\:w-3rem{width:3rem!important}.md\\:w-4rem{width:4rem!important}.md\\:w-5rem{width:5rem!important}.md\\:w-6rem{width:6rem!important}.md\\:w-7rem{width:7rem!important}.md\\:w-8rem{width:8rem!important}.md\\:w-9rem{width:9rem!important}.md\\:w-10rem{width:10rem!important}.md\\:w-11rem{width:11rem!important}.md\\:w-12rem{width:12rem!important}.md\\:w-13rem{width:13rem!important}.md\\:w-14rem{width:14rem!important}.md\\:w-15rem{width:15rem!important}.md\\:w-16rem{width:16rem!important}.md\\:w-17rem{width:17rem!important}.md\\:w-18rem{width:18rem!important}.md\\:w-19rem{width:19rem!important}.md\\:w-20rem{width:20rem!important}.md\\:w-21rem{width:21rem!important}.md\\:w-22rem{width:22rem!important}.md\\:w-23rem{width:23rem!important}.md\\:w-24rem{width:24rem!important}.md\\:w-25rem{width:25rem!important}.md\\:w-26rem{width:26rem!important}.md\\:w-27rem{width:27rem!important}.md\\:w-28rem{width:28rem!important}.md\\:w-29rem{width:29rem!important}.md\\:w-30rem{width:30rem!important}}@media screen and (min-width: 992px){.lg\\:w-full{width:100%!important}.lg\\:w-screen{width:100vw!important}.lg\\:w-auto{width:auto!important}.lg\\:w-1{width:8.3333%!important}.lg\\:w-2{width:16.6667%!important}.lg\\:w-3{width:25%!important}.lg\\:w-4{width:33.3333%!important}.lg\\:w-5{width:41.6667%!important}.lg\\:w-6{width:50%!important}.lg\\:w-7{width:58.3333%!important}.lg\\:w-8{width:66.6667%!important}.lg\\:w-9{width:75%!important}.lg\\:w-10{width:83.3333%!important}.lg\\:w-11{width:91.6667%!important}.lg\\:w-12{width:100%!important}.lg\\:w-min{width:min-content!important}.lg\\:w-max{width:max-content!important}.lg\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.lg\\:w-1rem{width:1rem!important}.lg\\:w-2rem{width:2rem!important}.lg\\:w-3rem{width:3rem!important}.lg\\:w-4rem{width:4rem!important}.lg\\:w-5rem{width:5rem!important}.lg\\:w-6rem{width:6rem!important}.lg\\:w-7rem{width:7rem!important}.lg\\:w-8rem{width:8rem!important}.lg\\:w-9rem{width:9rem!important}.lg\\:w-10rem{width:10rem!important}.lg\\:w-11rem{width:11rem!important}.lg\\:w-12rem{width:12rem!important}.lg\\:w-13rem{width:13rem!important}.lg\\:w-14rem{width:14rem!important}.lg\\:w-15rem{width:15rem!important}.lg\\:w-16rem{width:16rem!important}.lg\\:w-17rem{width:17rem!important}.lg\\:w-18rem{width:18rem!important}.lg\\:w-19rem{width:19rem!important}.lg\\:w-20rem{width:20rem!important}.lg\\:w-21rem{width:21rem!important}.lg\\:w-22rem{width:22rem!important}.lg\\:w-23rem{width:23rem!important}.lg\\:w-24rem{width:24rem!important}.lg\\:w-25rem{width:25rem!important}.lg\\:w-26rem{width:26rem!important}.lg\\:w-27rem{width:27rem!important}.lg\\:w-28rem{width:28rem!important}.lg\\:w-29rem{width:29rem!important}.lg\\:w-30rem{width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:w-full{width:100%!important}.xl\\:w-screen{width:100vw!important}.xl\\:w-auto{width:auto!important}.xl\\:w-1{width:8.3333%!important}.xl\\:w-2{width:16.6667%!important}.xl\\:w-3{width:25%!important}.xl\\:w-4{width:33.3333%!important}.xl\\:w-5{width:41.6667%!important}.xl\\:w-6{width:50%!important}.xl\\:w-7{width:58.3333%!important}.xl\\:w-8{width:66.6667%!important}.xl\\:w-9{width:75%!important}.xl\\:w-10{width:83.3333%!important}.xl\\:w-11{width:91.6667%!important}.xl\\:w-12{width:100%!important}.xl\\:w-min{width:min-content!important}.xl\\:w-max{width:max-content!important}.xl\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.xl\\:w-1rem{width:1rem!important}.xl\\:w-2rem{width:2rem!important}.xl\\:w-3rem{width:3rem!important}.xl\\:w-4rem{width:4rem!important}.xl\\:w-5rem{width:5rem!important}.xl\\:w-6rem{width:6rem!important}.xl\\:w-7rem{width:7rem!important}.xl\\:w-8rem{width:8rem!important}.xl\\:w-9rem{width:9rem!important}.xl\\:w-10rem{width:10rem!important}.xl\\:w-11rem{width:11rem!important}.xl\\:w-12rem{width:12rem!important}.xl\\:w-13rem{width:13rem!important}.xl\\:w-14rem{width:14rem!important}.xl\\:w-15rem{width:15rem!important}.xl\\:w-16rem{width:16rem!important}.xl\\:w-17rem{width:17rem!important}.xl\\:w-18rem{width:18rem!important}.xl\\:w-19rem{width:19rem!important}.xl\\:w-20rem{width:20rem!important}.xl\\:w-21rem{width:21rem!important}.xl\\:w-22rem{width:22rem!important}.xl\\:w-23rem{width:23rem!important}.xl\\:w-24rem{width:24rem!important}.xl\\:w-25rem{width:25rem!important}.xl\\:w-26rem{width:26rem!important}.xl\\:w-27rem{width:27rem!important}.xl\\:w-28rem{width:28rem!important}.xl\\:w-29rem{width:29rem!important}.xl\\:w-30rem{width:30rem!important}}.h-full{height:100%!important}.h-screen{height:100vh!important}.h-auto{height:auto!important}.h-min{height:min-content!important}.h-max{height:max-content!important}.h-fit{height:-moz-fit-content!important;height:fit-content!important}.h-1rem{height:1rem!important}.h-2rem{height:2rem!important}.h-3rem{height:3rem!important}.h-4rem{height:4rem!important}.h-5rem{height:5rem!important}.h-6rem{height:6rem!important}.h-7rem{height:7rem!important}.h-8rem{height:8rem!important}.h-9rem{height:9rem!important}.h-10rem{height:10rem!important}.h-11rem{height:11rem!important}.h-12rem{height:12rem!important}.h-13rem{height:13rem!important}.h-14rem{height:14rem!important}.h-15rem{height:15rem!important}.h-16rem{height:16rem!important}.h-17rem{height:17rem!important}.h-18rem{height:18rem!important}.h-19rem{height:19rem!important}.h-20rem{height:20rem!important}.h-21rem{height:21rem!important}.h-22rem{height:22rem!important}.h-23rem{height:23rem!important}.h-24rem{height:24rem!important}.h-25rem{height:25rem!important}.h-26rem{height:26rem!important}.h-27rem{height:27rem!important}.h-28rem{height:28rem!important}.h-29rem{height:29rem!important}.h-30rem{height:30rem!important}@media screen and (min-width: 576px){.sm\\:h-full{height:100%!important}.sm\\:h-screen{height:100vh!important}.sm\\:h-auto{height:auto!important}.sm\\:h-min{height:min-content!important}.sm\\:h-max{height:max-content!important}.sm\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.sm\\:h-1rem{height:1rem!important}.sm\\:h-2rem{height:2rem!important}.sm\\:h-3rem{height:3rem!important}.sm\\:h-4rem{height:4rem!important}.sm\\:h-5rem{height:5rem!important}.sm\\:h-6rem{height:6rem!important}.sm\\:h-7rem{height:7rem!important}.sm\\:h-8rem{height:8rem!important}.sm\\:h-9rem{height:9rem!important}.sm\\:h-10rem{height:10rem!important}.sm\\:h-11rem{height:11rem!important}.sm\\:h-12rem{height:12rem!important}.sm\\:h-13rem{height:13rem!important}.sm\\:h-14rem{height:14rem!important}.sm\\:h-15rem{height:15rem!important}.sm\\:h-16rem{height:16rem!important}.sm\\:h-17rem{height:17rem!important}.sm\\:h-18rem{height:18rem!important}.sm\\:h-19rem{height:19rem!important}.sm\\:h-20rem{height:20rem!important}.sm\\:h-21rem{height:21rem!important}.sm\\:h-22rem{height:22rem!important}.sm\\:h-23rem{height:23rem!important}.sm\\:h-24rem{height:24rem!important}.sm\\:h-25rem{height:25rem!important}.sm\\:h-26rem{height:26rem!important}.sm\\:h-27rem{height:27rem!important}.sm\\:h-28rem{height:28rem!important}.sm\\:h-29rem{height:29rem!important}.sm\\:h-30rem{height:30rem!important}}@media screen and (min-width: 768px){.md\\:h-full{height:100%!important}.md\\:h-screen{height:100vh!important}.md\\:h-auto{height:auto!important}.md\\:h-min{height:min-content!important}.md\\:h-max{height:max-content!important}.md\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.md\\:h-1rem{height:1rem!important}.md\\:h-2rem{height:2rem!important}.md\\:h-3rem{height:3rem!important}.md\\:h-4rem{height:4rem!important}.md\\:h-5rem{height:5rem!important}.md\\:h-6rem{height:6rem!important}.md\\:h-7rem{height:7rem!important}.md\\:h-8rem{height:8rem!important}.md\\:h-9rem{height:9rem!important}.md\\:h-10rem{height:10rem!important}.md\\:h-11rem{height:11rem!important}.md\\:h-12rem{height:12rem!important}.md\\:h-13rem{height:13rem!important}.md\\:h-14rem{height:14rem!important}.md\\:h-15rem{height:15rem!important}.md\\:h-16rem{height:16rem!important}.md\\:h-17rem{height:17rem!important}.md\\:h-18rem{height:18rem!important}.md\\:h-19rem{height:19rem!important}.md\\:h-20rem{height:20rem!important}.md\\:h-21rem{height:21rem!important}.md\\:h-22rem{height:22rem!important}.md\\:h-23rem{height:23rem!important}.md\\:h-24rem{height:24rem!important}.md\\:h-25rem{height:25rem!important}.md\\:h-26rem{height:26rem!important}.md\\:h-27rem{height:27rem!important}.md\\:h-28rem{height:28rem!important}.md\\:h-29rem{height:29rem!important}.md\\:h-30rem{height:30rem!important}}@media screen and (min-width: 992px){.lg\\:h-full{height:100%!important}.lg\\:h-screen{height:100vh!important}.lg\\:h-auto{height:auto!important}.lg\\:h-min{height:min-content!important}.lg\\:h-max{height:max-content!important}.lg\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.lg\\:h-1rem{height:1rem!important}.lg\\:h-2rem{height:2rem!important}.lg\\:h-3rem{height:3rem!important}.lg\\:h-4rem{height:4rem!important}.lg\\:h-5rem{height:5rem!important}.lg\\:h-6rem{height:6rem!important}.lg\\:h-7rem{height:7rem!important}.lg\\:h-8rem{height:8rem!important}.lg\\:h-9rem{height:9rem!important}.lg\\:h-10rem{height:10rem!important}.lg\\:h-11rem{height:11rem!important}.lg\\:h-12rem{height:12rem!important}.lg\\:h-13rem{height:13rem!important}.lg\\:h-14rem{height:14rem!important}.lg\\:h-15rem{height:15rem!important}.lg\\:h-16rem{height:16rem!important}.lg\\:h-17rem{height:17rem!important}.lg\\:h-18rem{height:18rem!important}.lg\\:h-19rem{height:19rem!important}.lg\\:h-20rem{height:20rem!important}.lg\\:h-21rem{height:21rem!important}.lg\\:h-22rem{height:22rem!important}.lg\\:h-23rem{height:23rem!important}.lg\\:h-24rem{height:24rem!important}.lg\\:h-25rem{height:25rem!important}.lg\\:h-26rem{height:26rem!important}.lg\\:h-27rem{height:27rem!important}.lg\\:h-28rem{height:28rem!important}.lg\\:h-29rem{height:29rem!important}.lg\\:h-30rem{height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:h-full{height:100%!important}.xl\\:h-screen{height:100vh!important}.xl\\:h-auto{height:auto!important}.xl\\:h-min{height:min-content!important}.xl\\:h-max{height:max-content!important}.xl\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.xl\\:h-1rem{height:1rem!important}.xl\\:h-2rem{height:2rem!important}.xl\\:h-3rem{height:3rem!important}.xl\\:h-4rem{height:4rem!important}.xl\\:h-5rem{height:5rem!important}.xl\\:h-6rem{height:6rem!important}.xl\\:h-7rem{height:7rem!important}.xl\\:h-8rem{height:8rem!important}.xl\\:h-9rem{height:9rem!important}.xl\\:h-10rem{height:10rem!important}.xl\\:h-11rem{height:11rem!important}.xl\\:h-12rem{height:12rem!important}.xl\\:h-13rem{height:13rem!important}.xl\\:h-14rem{height:14rem!important}.xl\\:h-15rem{height:15rem!important}.xl\\:h-16rem{height:16rem!important}.xl\\:h-17rem{height:17rem!important}.xl\\:h-18rem{height:18rem!important}.xl\\:h-19rem{height:19rem!important}.xl\\:h-20rem{height:20rem!important}.xl\\:h-21rem{height:21rem!important}.xl\\:h-22rem{height:22rem!important}.xl\\:h-23rem{height:23rem!important}.xl\\:h-24rem{height:24rem!important}.xl\\:h-25rem{height:25rem!important}.xl\\:h-26rem{height:26rem!important}.xl\\:h-27rem{height:27rem!important}.xl\\:h-28rem{height:28rem!important}.xl\\:h-29rem{height:29rem!important}.xl\\:h-30rem{height:30rem!important}}.min-w-0{min-width:0px!important}.min-w-full{min-width:100%!important}.min-w-screen{min-width:100vw!important}.min-w-min{min-width:min-content!important}.min-w-max{min-width:max-content!important}@media screen and (min-width: 576px){.sm\\:min-w-0{min-width:0px!important}.sm\\:min-w-full{min-width:100%!important}.sm\\:min-w-screen{min-width:100vw!important}.sm\\:min-w-min{min-width:min-content!important}.sm\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 768px){.md\\:min-w-0{min-width:0px!important}.md\\:min-w-full{min-width:100%!important}.md\\:min-w-screen{min-width:100vw!important}.md\\:min-w-min{min-width:min-content!important}.md\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 992px){.lg\\:min-w-0{min-width:0px!important}.lg\\:min-w-full{min-width:100%!important}.lg\\:min-w-screen{min-width:100vw!important}.lg\\:min-w-min{min-width:min-content!important}.lg\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 1200px){.xl\\:min-w-0{min-width:0px!important}.xl\\:min-w-full{min-width:100%!important}.xl\\:min-w-screen{min-width:100vw!important}.xl\\:min-w-min{min-width:min-content!important}.xl\\:min-w-max{min-width:max-content!important}}.max-w-0{max-width:0px!important}.max-w-full{max-width:100%!important}.max-w-screen{max-width:100vw!important}.max-w-min{max-width:min-content!important}.max-w-max{max-width:max-content!important}.max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.max-w-1rem{max-width:1rem!important}.max-w-2rem{max-width:2rem!important}.max-w-3rem{max-width:3rem!important}.max-w-4rem{max-width:4rem!important}.max-w-5rem{max-width:5rem!important}.max-w-6rem{max-width:6rem!important}.max-w-7rem{max-width:7rem!important}.max-w-8rem{max-width:8rem!important}.max-w-9rem{max-width:9rem!important}.max-w-10rem{max-width:10rem!important}.max-w-11rem{max-width:11rem!important}.max-w-12rem{max-width:12rem!important}.max-w-13rem{max-width:13rem!important}.max-w-14rem{max-width:14rem!important}.max-w-15rem{max-width:15rem!important}.max-w-16rem{max-width:16rem!important}.max-w-17rem{max-width:17rem!important}.max-w-18rem{max-width:18rem!important}.max-w-19rem{max-width:19rem!important}.max-w-20rem{max-width:20rem!important}.max-w-21rem{max-width:21rem!important}.max-w-22rem{max-width:22rem!important}.max-w-23rem{max-width:23rem!important}.max-w-24rem{max-width:24rem!important}.max-w-25rem{max-width:25rem!important}.max-w-26rem{max-width:26rem!important}.max-w-27rem{max-width:27rem!important}.max-w-28rem{max-width:28rem!important}.max-w-29rem{max-width:29rem!important}.max-w-30rem{max-width:30rem!important}@media screen and (min-width: 576px){.sm\\:max-w-0{max-width:0px!important}.sm\\:max-w-full{max-width:100%!important}.sm\\:max-w-screen{max-width:100vw!important}.sm\\:max-w-min{max-width:min-content!important}.sm\\:max-w-max{max-width:max-content!important}.sm\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.sm\\:max-w-1rem{max-width:1rem!important}.sm\\:max-w-2rem{max-width:2rem!important}.sm\\:max-w-3rem{max-width:3rem!important}.sm\\:max-w-4rem{max-width:4rem!important}.sm\\:max-w-5rem{max-width:5rem!important}.sm\\:max-w-6rem{max-width:6rem!important}.sm\\:max-w-7rem{max-width:7rem!important}.sm\\:max-w-8rem{max-width:8rem!important}.sm\\:max-w-9rem{max-width:9rem!important}.sm\\:max-w-10rem{max-width:10rem!important}.sm\\:max-w-11rem{max-width:11rem!important}.sm\\:max-w-12rem{max-width:12rem!important}.sm\\:max-w-13rem{max-width:13rem!important}.sm\\:max-w-14rem{max-width:14rem!important}.sm\\:max-w-15rem{max-width:15rem!important}.sm\\:max-w-16rem{max-width:16rem!important}.sm\\:max-w-17rem{max-width:17rem!important}.sm\\:max-w-18rem{max-width:18rem!important}.sm\\:max-w-19rem{max-width:19rem!important}.sm\\:max-w-20rem{max-width:20rem!important}.sm\\:max-w-21rem{max-width:21rem!important}.sm\\:max-w-22rem{max-width:22rem!important}.sm\\:max-w-23rem{max-width:23rem!important}.sm\\:max-w-24rem{max-width:24rem!important}.sm\\:max-w-25rem{max-width:25rem!important}.sm\\:max-w-26rem{max-width:26rem!important}.sm\\:max-w-27rem{max-width:27rem!important}.sm\\:max-w-28rem{max-width:28rem!important}.sm\\:max-w-29rem{max-width:29rem!important}.sm\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 768px){.md\\:max-w-0{max-width:0px!important}.md\\:max-w-full{max-width:100%!important}.md\\:max-w-screen{max-width:100vw!important}.md\\:max-w-min{max-width:min-content!important}.md\\:max-w-max{max-width:max-content!important}.md\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.md\\:max-w-1rem{max-width:1rem!important}.md\\:max-w-2rem{max-width:2rem!important}.md\\:max-w-3rem{max-width:3rem!important}.md\\:max-w-4rem{max-width:4rem!important}.md\\:max-w-5rem{max-width:5rem!important}.md\\:max-w-6rem{max-width:6rem!important}.md\\:max-w-7rem{max-width:7rem!important}.md\\:max-w-8rem{max-width:8rem!important}.md\\:max-w-9rem{max-width:9rem!important}.md\\:max-w-10rem{max-width:10rem!important}.md\\:max-w-11rem{max-width:11rem!important}.md\\:max-w-12rem{max-width:12rem!important}.md\\:max-w-13rem{max-width:13rem!important}.md\\:max-w-14rem{max-width:14rem!important}.md\\:max-w-15rem{max-width:15rem!important}.md\\:max-w-16rem{max-width:16rem!important}.md\\:max-w-17rem{max-width:17rem!important}.md\\:max-w-18rem{max-width:18rem!important}.md\\:max-w-19rem{max-width:19rem!important}.md\\:max-w-20rem{max-width:20rem!important}.md\\:max-w-21rem{max-width:21rem!important}.md\\:max-w-22rem{max-width:22rem!important}.md\\:max-w-23rem{max-width:23rem!important}.md\\:max-w-24rem{max-width:24rem!important}.md\\:max-w-25rem{max-width:25rem!important}.md\\:max-w-26rem{max-width:26rem!important}.md\\:max-w-27rem{max-width:27rem!important}.md\\:max-w-28rem{max-width:28rem!important}.md\\:max-w-29rem{max-width:29rem!important}.md\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-w-0{max-width:0px!important}.lg\\:max-w-full{max-width:100%!important}.lg\\:max-w-screen{max-width:100vw!important}.lg\\:max-w-min{max-width:min-content!important}.lg\\:max-w-max{max-width:max-content!important}.lg\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.lg\\:max-w-1rem{max-width:1rem!important}.lg\\:max-w-2rem{max-width:2rem!important}.lg\\:max-w-3rem{max-width:3rem!important}.lg\\:max-w-4rem{max-width:4rem!important}.lg\\:max-w-5rem{max-width:5rem!important}.lg\\:max-w-6rem{max-width:6rem!important}.lg\\:max-w-7rem{max-width:7rem!important}.lg\\:max-w-8rem{max-width:8rem!important}.lg\\:max-w-9rem{max-width:9rem!important}.lg\\:max-w-10rem{max-width:10rem!important}.lg\\:max-w-11rem{max-width:11rem!important}.lg\\:max-w-12rem{max-width:12rem!important}.lg\\:max-w-13rem{max-width:13rem!important}.lg\\:max-w-14rem{max-width:14rem!important}.lg\\:max-w-15rem{max-width:15rem!important}.lg\\:max-w-16rem{max-width:16rem!important}.lg\\:max-w-17rem{max-width:17rem!important}.lg\\:max-w-18rem{max-width:18rem!important}.lg\\:max-w-19rem{max-width:19rem!important}.lg\\:max-w-20rem{max-width:20rem!important}.lg\\:max-w-21rem{max-width:21rem!important}.lg\\:max-w-22rem{max-width:22rem!important}.lg\\:max-w-23rem{max-width:23rem!important}.lg\\:max-w-24rem{max-width:24rem!important}.lg\\:max-w-25rem{max-width:25rem!important}.lg\\:max-w-26rem{max-width:26rem!important}.lg\\:max-w-27rem{max-width:27rem!important}.lg\\:max-w-28rem{max-width:28rem!important}.lg\\:max-w-29rem{max-width:29rem!important}.lg\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-w-0{max-width:0px!important}.xl\\:max-w-full{max-width:100%!important}.xl\\:max-w-screen{max-width:100vw!important}.xl\\:max-w-min{max-width:min-content!important}.xl\\:max-w-max{max-width:max-content!important}.xl\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.xl\\:max-w-1rem{max-width:1rem!important}.xl\\:max-w-2rem{max-width:2rem!important}.xl\\:max-w-3rem{max-width:3rem!important}.xl\\:max-w-4rem{max-width:4rem!important}.xl\\:max-w-5rem{max-width:5rem!important}.xl\\:max-w-6rem{max-width:6rem!important}.xl\\:max-w-7rem{max-width:7rem!important}.xl\\:max-w-8rem{max-width:8rem!important}.xl\\:max-w-9rem{max-width:9rem!important}.xl\\:max-w-10rem{max-width:10rem!important}.xl\\:max-w-11rem{max-width:11rem!important}.xl\\:max-w-12rem{max-width:12rem!important}.xl\\:max-w-13rem{max-width:13rem!important}.xl\\:max-w-14rem{max-width:14rem!important}.xl\\:max-w-15rem{max-width:15rem!important}.xl\\:max-w-16rem{max-width:16rem!important}.xl\\:max-w-17rem{max-width:17rem!important}.xl\\:max-w-18rem{max-width:18rem!important}.xl\\:max-w-19rem{max-width:19rem!important}.xl\\:max-w-20rem{max-width:20rem!important}.xl\\:max-w-21rem{max-width:21rem!important}.xl\\:max-w-22rem{max-width:22rem!important}.xl\\:max-w-23rem{max-width:23rem!important}.xl\\:max-w-24rem{max-width:24rem!important}.xl\\:max-w-25rem{max-width:25rem!important}.xl\\:max-w-26rem{max-width:26rem!important}.xl\\:max-w-27rem{max-width:27rem!important}.xl\\:max-w-28rem{max-width:28rem!important}.xl\\:max-w-29rem{max-width:29rem!important}.xl\\:max-w-30rem{max-width:30rem!important}}.min-h-0{min-height:0px!important}.min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh!important}@media screen and (min-width: 576px){.sm\\:min-h-0{min-height:0px!important}.sm\\:min-h-full{min-height:100%!important}.sm\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 768px){.md\\:min-h-0{min-height:0px!important}.md\\:min-h-full{min-height:100%!important}.md\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 992px){.lg\\:min-h-0{min-height:0px!important}.lg\\:min-h-full{min-height:100%!important}.lg\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 1200px){.xl\\:min-h-0{min-height:0px!important}.xl\\:min-h-full{min-height:100%!important}.xl\\:min-h-screen{min-height:100vh!important}}.max-h-0{max-height:0px!important}.max-h-full{max-height:100%!important}.max-h-screen{max-height:100vh!important}.max-h-min{max-height:min-content!important}.max-h-max{max-height:max-content!important}.max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.max-h-1rem{max-height:1rem!important}.max-h-2rem{max-height:2rem!important}.max-h-3rem{max-height:3rem!important}.max-h-4rem{max-height:4rem!important}.max-h-5rem{max-height:5rem!important}.max-h-6rem{max-height:6rem!important}.max-h-7rem{max-height:7rem!important}.max-h-8rem{max-height:8rem!important}.max-h-9rem{max-height:9rem!important}.max-h-10rem{max-height:10rem!important}.max-h-11rem{max-height:11rem!important}.max-h-12rem{max-height:12rem!important}.max-h-13rem{max-height:13rem!important}.max-h-14rem{max-height:14rem!important}.max-h-15rem{max-height:15rem!important}.max-h-16rem{max-height:16rem!important}.max-h-17rem{max-height:17rem!important}.max-h-18rem{max-height:18rem!important}.max-h-19rem{max-height:19rem!important}.max-h-20rem{max-height:20rem!important}.max-h-21rem{max-height:21rem!important}.max-h-22rem{max-height:22rem!important}.max-h-23rem{max-height:23rem!important}.max-h-24rem{max-height:24rem!important}.max-h-25rem{max-height:25rem!important}.max-h-26rem{max-height:26rem!important}.max-h-27rem{max-height:27rem!important}.max-h-28rem{max-height:28rem!important}.max-h-29rem{max-height:29rem!important}.max-h-30rem{max-height:30rem!important}@media screen and (min-width: 576px){.sm\\:max-h-0{max-height:0px!important}.sm\\:max-h-full{max-height:100%!important}.sm\\:max-h-screen{max-height:100vh!important}.sm\\:max-h-min{max-height:min-content!important}.sm\\:max-h-max{max-height:max-content!important}.sm\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.sm\\:max-h-1rem{max-height:1rem!important}.sm\\:max-h-2rem{max-height:2rem!important}.sm\\:max-h-3rem{max-height:3rem!important}.sm\\:max-h-4rem{max-height:4rem!important}.sm\\:max-h-5rem{max-height:5rem!important}.sm\\:max-h-6rem{max-height:6rem!important}.sm\\:max-h-7rem{max-height:7rem!important}.sm\\:max-h-8rem{max-height:8rem!important}.sm\\:max-h-9rem{max-height:9rem!important}.sm\\:max-h-10rem{max-height:10rem!important}.sm\\:max-h-11rem{max-height:11rem!important}.sm\\:max-h-12rem{max-height:12rem!important}.sm\\:max-h-13rem{max-height:13rem!important}.sm\\:max-h-14rem{max-height:14rem!important}.sm\\:max-h-15rem{max-height:15rem!important}.sm\\:max-h-16rem{max-height:16rem!important}.sm\\:max-h-17rem{max-height:17rem!important}.sm\\:max-h-18rem{max-height:18rem!important}.sm\\:max-h-19rem{max-height:19rem!important}.sm\\:max-h-20rem{max-height:20rem!important}.sm\\:max-h-21rem{max-height:21rem!important}.sm\\:max-h-22rem{max-height:22rem!important}.sm\\:max-h-23rem{max-height:23rem!important}.sm\\:max-h-24rem{max-height:24rem!important}.sm\\:max-h-25rem{max-height:25rem!important}.sm\\:max-h-26rem{max-height:26rem!important}.sm\\:max-h-27rem{max-height:27rem!important}.sm\\:max-h-28rem{max-height:28rem!important}.sm\\:max-h-29rem{max-height:29rem!important}.sm\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 768px){.md\\:max-h-0{max-height:0px!important}.md\\:max-h-full{max-height:100%!important}.md\\:max-h-screen{max-height:100vh!important}.md\\:max-h-min{max-height:min-content!important}.md\\:max-h-max{max-height:max-content!important}.md\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.md\\:max-h-1rem{max-height:1rem!important}.md\\:max-h-2rem{max-height:2rem!important}.md\\:max-h-3rem{max-height:3rem!important}.md\\:max-h-4rem{max-height:4rem!important}.md\\:max-h-5rem{max-height:5rem!important}.md\\:max-h-6rem{max-height:6rem!important}.md\\:max-h-7rem{max-height:7rem!important}.md\\:max-h-8rem{max-height:8rem!important}.md\\:max-h-9rem{max-height:9rem!important}.md\\:max-h-10rem{max-height:10rem!important}.md\\:max-h-11rem{max-height:11rem!important}.md\\:max-h-12rem{max-height:12rem!important}.md\\:max-h-13rem{max-height:13rem!important}.md\\:max-h-14rem{max-height:14rem!important}.md\\:max-h-15rem{max-height:15rem!important}.md\\:max-h-16rem{max-height:16rem!important}.md\\:max-h-17rem{max-height:17rem!important}.md\\:max-h-18rem{max-height:18rem!important}.md\\:max-h-19rem{max-height:19rem!important}.md\\:max-h-20rem{max-height:20rem!important}.md\\:max-h-21rem{max-height:21rem!important}.md\\:max-h-22rem{max-height:22rem!important}.md\\:max-h-23rem{max-height:23rem!important}.md\\:max-h-24rem{max-height:24rem!important}.md\\:max-h-25rem{max-height:25rem!important}.md\\:max-h-26rem{max-height:26rem!important}.md\\:max-h-27rem{max-height:27rem!important}.md\\:max-h-28rem{max-height:28rem!important}.md\\:max-h-29rem{max-height:29rem!important}.md\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-h-0{max-height:0px!important}.lg\\:max-h-full{max-height:100%!important}.lg\\:max-h-screen{max-height:100vh!important}.lg\\:max-h-min{max-height:min-content!important}.lg\\:max-h-max{max-height:max-content!important}.lg\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.lg\\:max-h-1rem{max-height:1rem!important}.lg\\:max-h-2rem{max-height:2rem!important}.lg\\:max-h-3rem{max-height:3rem!important}.lg\\:max-h-4rem{max-height:4rem!important}.lg\\:max-h-5rem{max-height:5rem!important}.lg\\:max-h-6rem{max-height:6rem!important}.lg\\:max-h-7rem{max-height:7rem!important}.lg\\:max-h-8rem{max-height:8rem!important}.lg\\:max-h-9rem{max-height:9rem!important}.lg\\:max-h-10rem{max-height:10rem!important}.lg\\:max-h-11rem{max-height:11rem!important}.lg\\:max-h-12rem{max-height:12rem!important}.lg\\:max-h-13rem{max-height:13rem!important}.lg\\:max-h-14rem{max-height:14rem!important}.lg\\:max-h-15rem{max-height:15rem!important}.lg\\:max-h-16rem{max-height:16rem!important}.lg\\:max-h-17rem{max-height:17rem!important}.lg\\:max-h-18rem{max-height:18rem!important}.lg\\:max-h-19rem{max-height:19rem!important}.lg\\:max-h-20rem{max-height:20rem!important}.lg\\:max-h-21rem{max-height:21rem!important}.lg\\:max-h-22rem{max-height:22rem!important}.lg\\:max-h-23rem{max-height:23rem!important}.lg\\:max-h-24rem{max-height:24rem!important}.lg\\:max-h-25rem{max-height:25rem!important}.lg\\:max-h-26rem{max-height:26rem!important}.lg\\:max-h-27rem{max-height:27rem!important}.lg\\:max-h-28rem{max-height:28rem!important}.lg\\:max-h-29rem{max-height:29rem!important}.lg\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-h-0{max-height:0px!important}.xl\\:max-h-full{max-height:100%!important}.xl\\:max-h-screen{max-height:100vh!important}.xl\\:max-h-min{max-height:min-content!important}.xl\\:max-h-max{max-height:max-content!important}.xl\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.xl\\:max-h-1rem{max-height:1rem!important}.xl\\:max-h-2rem{max-height:2rem!important}.xl\\:max-h-3rem{max-height:3rem!important}.xl\\:max-h-4rem{max-height:4rem!important}.xl\\:max-h-5rem{max-height:5rem!important}.xl\\:max-h-6rem{max-height:6rem!important}.xl\\:max-h-7rem{max-height:7rem!important}.xl\\:max-h-8rem{max-height:8rem!important}.xl\\:max-h-9rem{max-height:9rem!important}.xl\\:max-h-10rem{max-height:10rem!important}.xl\\:max-h-11rem{max-height:11rem!important}.xl\\:max-h-12rem{max-height:12rem!important}.xl\\:max-h-13rem{max-height:13rem!important}.xl\\:max-h-14rem{max-height:14rem!important}.xl\\:max-h-15rem{max-height:15rem!important}.xl\\:max-h-16rem{max-height:16rem!important}.xl\\:max-h-17rem{max-height:17rem!important}.xl\\:max-h-18rem{max-height:18rem!important}.xl\\:max-h-19rem{max-height:19rem!important}.xl\\:max-h-20rem{max-height:20rem!important}.xl\\:max-h-21rem{max-height:21rem!important}.xl\\:max-h-22rem{max-height:22rem!important}.xl\\:max-h-23rem{max-height:23rem!important}.xl\\:max-h-24rem{max-height:24rem!important}.xl\\:max-h-25rem{max-height:25rem!important}.xl\\:max-h-26rem{max-height:26rem!important}.xl\\:max-h-27rem{max-height:27rem!important}.xl\\:max-h-28rem{max-height:28rem!important}.xl\\:max-h-29rem{max-height:29rem!important}.xl\\:max-h-30rem{max-height:30rem!important}}.static{position:static!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:sticky!important}@media screen and (min-width: 576px){.sm\\:static{position:static!important}.sm\\:fixed{position:fixed!important}.sm\\:absolute{position:absolute!important}.sm\\:relative{position:relative!important}.sm\\:sticky{position:sticky!important}}@media screen and (min-width: 768px){.md\\:static{position:static!important}.md\\:fixed{position:fixed!important}.md\\:absolute{position:absolute!important}.md\\:relative{position:relative!important}.md\\:sticky{position:sticky!important}}@media screen and (min-width: 992px){.lg\\:static{position:static!important}.lg\\:fixed{position:fixed!important}.lg\\:absolute{position:absolute!important}.lg\\:relative{position:relative!important}.lg\\:sticky{position:sticky!important}}@media screen and (min-width: 1200px){.xl\\:static{position:static!important}.xl\\:fixed{position:fixed!important}.xl\\:absolute{position:absolute!important}.xl\\:relative{position:relative!important}.xl\\:sticky{position:sticky!important}}.top-auto{top:auto!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}@media screen and (min-width: 576px){.sm\\:top-auto{top:auto!important}.sm\\:top-0{top:0!important}.sm\\:top-50{top:50%!important}.sm\\:top-100{top:100%!important}}@media screen and (min-width: 768px){.md\\:top-auto{top:auto!important}.md\\:top-0{top:0!important}.md\\:top-50{top:50%!important}.md\\:top-100{top:100%!important}}@media screen and (min-width: 992px){.lg\\:top-auto{top:auto!important}.lg\\:top-0{top:0!important}.lg\\:top-50{top:50%!important}.lg\\:top-100{top:100%!important}}@media screen and (min-width: 1200px){.xl\\:top-auto{top:auto!important}.xl\\:top-0{top:0!important}.xl\\:top-50{top:50%!important}.xl\\:top-100{top:100%!important}}.left-auto{left:auto!important}.left-0{left:0!important}.left-50{left:50%!important}.left-100{left:100%!important}@media screen and (min-width: 576px){.sm\\:left-auto{left:auto!important}.sm\\:left-0{left:0!important}.sm\\:left-50{left:50%!important}.sm\\:left-100{left:100%!important}}@media screen and (min-width: 768px){.md\\:left-auto{left:auto!important}.md\\:left-0{left:0!important}.md\\:left-50{left:50%!important}.md\\:left-100{left:100%!important}}@media screen and (min-width: 992px){.lg\\:left-auto{left:auto!important}.lg\\:left-0{left:0!important}.lg\\:left-50{left:50%!important}.lg\\:left-100{left:100%!important}}@media screen and (min-width: 1200px){.xl\\:left-auto{left:auto!important}.xl\\:left-0{left:0!important}.xl\\:left-50{left:50%!important}.xl\\:left-100{left:100%!important}}.right-auto{right:auto!important}.right-0{right:0!important}.right-50{right:50%!important}.right-100{right:100%!important}@media screen and (min-width: 576px){.sm\\:right-auto{right:auto!important}.sm\\:right-0{right:0!important}.sm\\:right-50{right:50%!important}.sm\\:right-100{right:100%!important}}@media screen and (min-width: 768px){.md\\:right-auto{right:auto!important}.md\\:right-0{right:0!important}.md\\:right-50{right:50%!important}.md\\:right-100{right:100%!important}}@media screen and (min-width: 992px){.lg\\:right-auto{right:auto!important}.lg\\:right-0{right:0!important}.lg\\:right-50{right:50%!important}.lg\\:right-100{right:100%!important}}@media screen and (min-width: 1200px){.xl\\:right-auto{right:auto!important}.xl\\:right-0{right:0!important}.xl\\:right-50{right:50%!important}.xl\\:right-100{right:100%!important}}.bottom-auto{bottom:auto!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}@media screen and (min-width: 576px){.sm\\:bottom-auto{bottom:auto!important}.sm\\:bottom-0{bottom:0!important}.sm\\:bottom-50{bottom:50%!important}.sm\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 768px){.md\\:bottom-auto{bottom:auto!important}.md\\:bottom-0{bottom:0!important}.md\\:bottom-50{bottom:50%!important}.md\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 992px){.lg\\:bottom-auto{bottom:auto!important}.lg\\:bottom-0{bottom:0!important}.lg\\:bottom-50{bottom:50%!important}.lg\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 1200px){.xl\\:bottom-auto{bottom:auto!important}.xl\\:bottom-0{bottom:0!important}.xl\\:bottom-50{bottom:50%!important}.xl\\:bottom-100{bottom:100%!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-auto{overflow:auto!important}.sm\\:overflow-hidden{overflow:hidden!important}.sm\\:overflow-visible{overflow:visible!important}.sm\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-auto{overflow:auto!important}.md\\:overflow-hidden{overflow:hidden!important}.md\\:overflow-visible{overflow:visible!important}.md\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-auto{overflow:auto!important}.lg\\:overflow-hidden{overflow:hidden!important}.lg\\:overflow-visible{overflow:visible!important}.lg\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-auto{overflow:auto!important}.xl\\:overflow-hidden{overflow:hidden!important}.xl\\:overflow-visible{overflow:visible!important}.xl\\:overflow-scroll{overflow:scroll!important}}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-x-auto{overflow-x:auto!important}.sm\\:overflow-x-hidden{overflow-x:hidden!important}.sm\\:overflow-x-visible{overflow-x:visible!important}.sm\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-x-auto{overflow-x:auto!important}.md\\:overflow-x-hidden{overflow-x:hidden!important}.md\\:overflow-x-visible{overflow-x:visible!important}.md\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-x-auto{overflow-x:auto!important}.lg\\:overflow-x-hidden{overflow-x:hidden!important}.lg\\:overflow-x-visible{overflow-x:visible!important}.lg\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-x-auto{overflow-x:auto!important}.xl\\:overflow-x-hidden{overflow-x:hidden!important}.xl\\:overflow-x-visible{overflow-x:visible!important}.xl\\:overflow-x-scroll{overflow-x:scroll!important}}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-y-auto{overflow-y:auto!important}.sm\\:overflow-y-hidden{overflow-y:hidden!important}.sm\\:overflow-y-visible{overflow-y:visible!important}.sm\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-y-auto{overflow-y:auto!important}.md\\:overflow-y-hidden{overflow-y:hidden!important}.md\\:overflow-y-visible{overflow-y:visible!important}.md\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-y-auto{overflow-y:auto!important}.lg\\:overflow-y-hidden{overflow-y:hidden!important}.lg\\:overflow-y-visible{overflow-y:visible!important}.lg\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-y-auto{overflow-y:auto!important}.xl\\:overflow-y-hidden{overflow-y:hidden!important}.xl\\:overflow-y-visible{overflow-y:visible!important}.xl\\:overflow-y-scroll{overflow-y:scroll!important}}.z-auto{z-index:auto!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}.z-4{z-index:4!important}.z-5{z-index:5!important}@media screen and (min-width: 576px){.sm\\:z-auto{z-index:auto!important}.sm\\:z-0{z-index:0!important}.sm\\:z-1{z-index:1!important}.sm\\:z-2{z-index:2!important}.sm\\:z-3{z-index:3!important}.sm\\:z-4{z-index:4!important}.sm\\:z-5{z-index:5!important}}@media screen and (min-width: 768px){.md\\:z-auto{z-index:auto!important}.md\\:z-0{z-index:0!important}.md\\:z-1{z-index:1!important}.md\\:z-2{z-index:2!important}.md\\:z-3{z-index:3!important}.md\\:z-4{z-index:4!important}.md\\:z-5{z-index:5!important}}@media screen and (min-width: 992px){.lg\\:z-auto{z-index:auto!important}.lg\\:z-0{z-index:0!important}.lg\\:z-1{z-index:1!important}.lg\\:z-2{z-index:2!important}.lg\\:z-3{z-index:3!important}.lg\\:z-4{z-index:4!important}.lg\\:z-5{z-index:5!important}}@media screen and (min-width: 1200px){.xl\\:z-auto{z-index:auto!important}.xl\\:z-0{z-index:0!important}.xl\\:z-1{z-index:1!important}.xl\\:z-2{z-index:2!important}.xl\\:z-3{z-index:3!important}.xl\\:z-4{z-index:4!important}.xl\\:z-5{z-index:5!important}}.bg-repeat{background-repeat:repeat!important}.bg-no-repeat{background-repeat:no-repeat!important}.bg-repeat-x{background-repeat:repeat-x!important}.bg-repeat-y{background-repeat:repeat-y!important}.bg-repeat-round{background-repeat:round!important}.bg-repeat-space{background-repeat:space!important}@media screen and (min-width: 576px){.sm\\:bg-repeat{background-repeat:repeat!important}.sm\\:bg-no-repeat{background-repeat:no-repeat!important}.sm\\:bg-repeat-x{background-repeat:repeat-x!important}.sm\\:bg-repeat-y{background-repeat:repeat-y!important}.sm\\:bg-repeat-round{background-repeat:round!important}.sm\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 768px){.md\\:bg-repeat{background-repeat:repeat!important}.md\\:bg-no-repeat{background-repeat:no-repeat!important}.md\\:bg-repeat-x{background-repeat:repeat-x!important}.md\\:bg-repeat-y{background-repeat:repeat-y!important}.md\\:bg-repeat-round{background-repeat:round!important}.md\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 992px){.lg\\:bg-repeat{background-repeat:repeat!important}.lg\\:bg-no-repeat{background-repeat:no-repeat!important}.lg\\:bg-repeat-x{background-repeat:repeat-x!important}.lg\\:bg-repeat-y{background-repeat:repeat-y!important}.lg\\:bg-repeat-round{background-repeat:round!important}.lg\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 1200px){.xl\\:bg-repeat{background-repeat:repeat!important}.xl\\:bg-no-repeat{background-repeat:no-repeat!important}.xl\\:bg-repeat-x{background-repeat:repeat-x!important}.xl\\:bg-repeat-y{background-repeat:repeat-y!important}.xl\\:bg-repeat-round{background-repeat:round!important}.xl\\:bg-repeat-space{background-repeat:space!important}}.bg-auto{background-size:auto!important}.bg-cover{background-size:cover!important}.bg-contain{background-size:contain!important}@media screen and (min-width: 576px){.sm\\:bg-auto{background-size:auto!important}.sm\\:bg-cover{background-size:cover!important}.sm\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 768px){.md\\:bg-auto{background-size:auto!important}.md\\:bg-cover{background-size:cover!important}.md\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 992px){.lg\\:bg-auto{background-size:auto!important}.lg\\:bg-cover{background-size:cover!important}.lg\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 1200px){.xl\\:bg-auto{background-size:auto!important}.xl\\:bg-cover{background-size:cover!important}.xl\\:bg-contain{background-size:contain!important}}.bg-bottom{background-position:bottom!important}.bg-center{background-position:center!important}.bg-left{background-position:left!important}.bg-left-bottom{background-position:left bottom!important}.bg-left-top{background-position:left top!important}.bg-right{background-position:right!important}.bg-right-bottom{background-position:right bottom!important}.bg-right-top{background-position:right top!important}.bg-top{background-position:top!important}@media screen and (min-width: 576px){.sm\\:bg-bottom{background-position:bottom!important}.sm\\:bg-center{background-position:center!important}.sm\\:bg-left{background-position:left!important}.sm\\:bg-left-bottom{background-position:left bottom!important}.sm\\:bg-left-top{background-position:left top!important}.sm\\:bg-right{background-position:right!important}.sm\\:bg-right-bottom{background-position:right bottom!important}.sm\\:bg-right-top{background-position:right top!important}.sm\\:bg-top{background-position:top!important}}@media screen and (min-width: 768px){.md\\:bg-bottom{background-position:bottom!important}.md\\:bg-center{background-position:center!important}.md\\:bg-left{background-position:left!important}.md\\:bg-left-bottom{background-position:left bottom!important}.md\\:bg-left-top{background-position:left top!important}.md\\:bg-right{background-position:right!important}.md\\:bg-right-bottom{background-position:right bottom!important}.md\\:bg-right-top{background-position:right top!important}.md\\:bg-top{background-position:top!important}}@media screen and (min-width: 992px){.lg\\:bg-bottom{background-position:bottom!important}.lg\\:bg-center{background-position:center!important}.lg\\:bg-left{background-position:left!important}.lg\\:bg-left-bottom{background-position:left bottom!important}.lg\\:bg-left-top{background-position:left top!important}.lg\\:bg-right{background-position:right!important}.lg\\:bg-right-bottom{background-position:right bottom!important}.lg\\:bg-right-top{background-position:right top!important}.lg\\:bg-top{background-position:top!important}}@media screen and (min-width: 1200px){.xl\\:bg-bottom{background-position:bottom!important}.xl\\:bg-center{background-position:center!important}.xl\\:bg-left{background-position:left!important}.xl\\:bg-left-bottom{background-position:left bottom!important}.xl\\:bg-left-top{background-position:left top!important}.xl\\:bg-right{background-position:right!important}.xl\\:bg-right-bottom{background-position:right bottom!important}.xl\\:bg-right-top{background-position:right top!important}.xl\\:bg-top{background-position:top!important}}.list-none{list-style:none!important}.list-disc{list-style:disc!important}.list-decimal{list-style:decimal!important}.appearance-none{-webkit-appearance:none!important;appearance:none!important}.outline-none{outline:none!important}.pointer-events-none{pointer-events:none!important}.pointer-events-auto{pointer-events:auto!important}.cursor-auto{cursor:auto!important}.cursor-pointer{cursor:pointer!important}.cursor-wait{cursor:wait!important}.cursor-move{cursor:move!important}.select-none{-webkit-user-select:none!important;user-select:none!important}.select-text{-webkit-user-select:text!important;user-select:text!important}.select-all{-webkit-user-select:all!important;user-select:all!important}.select-auto{-webkit-user-select:auto!important;user-select:auto!important}.opacity-0{opacity:0!important}.opacity-10{opacity:.1!important}.opacity-20{opacity:.2!important}.opacity-30{opacity:.3!important}.opacity-40{opacity:.4!important}.opacity-50{opacity:.5!important}.opacity-60{opacity:.6!important}.opacity-70{opacity:.7!important}.opacity-80{opacity:.8!important}.opacity-90{opacity:.9!important}.opacity-100{opacity:1!important}.reset{all:unset}.transition-none{transition-property:none!important}.transition-all{transition-property:all!important}.transition-colors{transition-property:background-color,border-color,color!important}.transition-transform{transition-property:transform!important}.transition-duration-100{transition-duration:.1s!important}.transition-duration-150{transition-duration:.15s!important}.transition-duration-200{transition-duration:.2s!important}.transition-duration-300{transition-duration:.3s!important}.transition-duration-400{transition-duration:.4s!important}.transition-duration-500{transition-duration:.5s!important}.transition-duration-1000{transition-duration:1s!important}.transition-duration-2000{transition-duration:2s!important}.transition-duration-3000{transition-duration:3s!important}.transition-linear{transition-timing-function:linear!important}.transition-ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.transition-ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.transition-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.transition-delay-100{transition-delay:.1s!important}.transition-delay-150{transition-delay:.15s!important}.transition-delay-200{transition-delay:.2s!important}.transition-delay-300{transition-delay:.3s!important}.transition-delay-400{transition-delay:.4s!important}.transition-delay-500{transition-delay:.5s!important}.transition-delay-1000{transition-delay:1s!important}.translate-x-0{transform:translate(0)!important}.translate-x-100{transform:translate(100%)!important}.-translate-x-100{transform:translate(-100%)!important}.translate-y-0{transform:translateY(0)!important}.translate-y-100{transform:translateY(100%)!important}.-translate-y-100{transform:translateY(-100%)!important}@media screen and (min-width: 576px){.sm\\:translate-x-0{transform:translate(0)!important}.sm\\:translate-x-100{transform:translate(100%)!important}.sm\\:-translate-x-100{transform:translate(-100%)!important}.sm\\:translate-y-0{transform:translateY(0)!important}.sm\\:translate-y-100{transform:translateY(100%)!important}.sm\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 768px){.md\\:translate-x-0{transform:translate(0)!important}.md\\:translate-x-100{transform:translate(100%)!important}.md\\:-translate-x-100{transform:translate(-100%)!important}.md\\:translate-y-0{transform:translateY(0)!important}.md\\:translate-y-100{transform:translateY(100%)!important}.md\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 992px){.lg\\:translate-x-0{transform:translate(0)!important}.lg\\:translate-x-100{transform:translate(100%)!important}.lg\\:-translate-x-100{transform:translate(-100%)!important}.lg\\:translate-y-0{transform:translateY(0)!important}.lg\\:translate-y-100{transform:translateY(100%)!important}.lg\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 1200px){.xl\\:translate-x-0{transform:translate(0)!important}.xl\\:translate-x-100{transform:translate(100%)!important}.xl\\:-translate-x-100{transform:translate(-100%)!important}.xl\\:translate-y-0{transform:translateY(0)!important}.xl\\:translate-y-100{transform:translateY(100%)!important}.xl\\:-translate-y-100{transform:translateY(-100%)!important}}.rotate-45{transform:rotate(45deg)!important}.-rotate-45{transform:rotate(-45deg)!important}.rotate-90{transform:rotate(90deg)!important}.-rotate-90{transform:rotate(-90deg)!important}.rotate-180{transform:rotate(180deg)!important}.-rotate-180{transform:rotate(-180deg)!important}@media screen and (min-width: 576px){.sm\\:rotate-45{transform:rotate(45deg)!important}.sm\\:-rotate-45{transform:rotate(-45deg)!important}.sm\\:rotate-90{transform:rotate(90deg)!important}.sm\\:-rotate-90{transform:rotate(-90deg)!important}.sm\\:rotate-180{transform:rotate(180deg)!important}.sm\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 768px){.md\\:rotate-45{transform:rotate(45deg)!important}.md\\:-rotate-45{transform:rotate(-45deg)!important}.md\\:rotate-90{transform:rotate(90deg)!important}.md\\:-rotate-90{transform:rotate(-90deg)!important}.md\\:rotate-180{transform:rotate(180deg)!important}.md\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 992px){.lg\\:rotate-45{transform:rotate(45deg)!important}.lg\\:-rotate-45{transform:rotate(-45deg)!important}.lg\\:rotate-90{transform:rotate(90deg)!important}.lg\\:-rotate-90{transform:rotate(-90deg)!important}.lg\\:rotate-180{transform:rotate(180deg)!important}.lg\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 1200px){.xl\\:rotate-45{transform:rotate(45deg)!important}.xl\\:-rotate-45{transform:rotate(-45deg)!important}.xl\\:rotate-90{transform:rotate(90deg)!important}.xl\\:-rotate-90{transform:rotate(-90deg)!important}.xl\\:rotate-180{transform:rotate(180deg)!important}.xl\\:-rotate-180{transform:rotate(-180deg)!important}}.origin-center{transform-origin:center!important}.origin-top{transform-origin:top!important}.origin-top-right{transform-origin:top right!important}.origin-right{transform-origin:right!important}.origin-bottom-right{transform-origin:bottom right!important}.origin-bottom{transform-origin:bottom!important}.origin-bottom-left{transform-origin:bottom left!important}.origin-left{transform-origin:left!important}.origin-top-left{transform-origin:top-left!important}@media screen and (min-width: 576px){.sm\\:origin-center{transform-origin:center!important}.sm\\:origin-top{transform-origin:top!important}.sm\\:origin-top-right{transform-origin:top right!important}.sm\\:origin-right{transform-origin:right!important}.sm\\:origin-bottom-right{transform-origin:bottom right!important}.sm\\:origin-bottom{transform-origin:bottom!important}.sm\\:origin-bottom-left{transform-origin:bottom left!important}.sm\\:origin-left{transform-origin:left!important}.sm\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 768px){.md\\:origin-center{transform-origin:center!important}.md\\:origin-top{transform-origin:top!important}.md\\:origin-top-right{transform-origin:top right!important}.md\\:origin-right{transform-origin:right!important}.md\\:origin-bottom-right{transform-origin:bottom right!important}.md\\:origin-bottom{transform-origin:bottom!important}.md\\:origin-bottom-left{transform-origin:bottom left!important}.md\\:origin-left{transform-origin:left!important}.md\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 992px){.lg\\:origin-center{transform-origin:center!important}.lg\\:origin-top{transform-origin:top!important}.lg\\:origin-top-right{transform-origin:top right!important}.lg\\:origin-right{transform-origin:right!important}.lg\\:origin-bottom-right{transform-origin:bottom right!important}.lg\\:origin-bottom{transform-origin:bottom!important}.lg\\:origin-bottom-left{transform-origin:bottom left!important}.lg\\:origin-left{transform-origin:left!important}.lg\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 1200px){.xl\\:origin-center{transform-origin:center!important}.xl\\:origin-top{transform-origin:top!important}.xl\\:origin-top-right{transform-origin:top right!important}.xl\\:origin-right{transform-origin:right!important}.xl\\:origin-bottom-right{transform-origin:bottom right!important}.xl\\:origin-bottom{transform-origin:bottom!important}.xl\\:origin-bottom-left{transform-origin:bottom left!important}.xl\\:origin-left{transform-origin:left!important}.xl\\:origin-top-left{transform-origin:top-left!important}}@keyframes fadein{0%{opacity:0}to{opacity:1}}@keyframes fadeout{0%{opacity:1}to{opacity:0}}@keyframes scalein{0%{opacity:0;transform:scaleY(.8);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:scaleY(1)}}@keyframes slidedown{0%{max-height:0}to{max-height:auto}}@keyframes slideup{0%{max-height:1000px}to{max-height:0}}@keyframes fadeinleft{0%{opacity:0;transform:translate(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutleft{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(-100%)}}@keyframes fadeinright{0%{opacity:0;transform:translate(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutright{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(100%)}}@keyframes fadeinup{0%{opacity:0;transform:translateY(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutup{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(-100%)}}@keyframes fadeindown{0%{opacity:0;transform:translateY(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutdown{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(100%)}}@keyframes animate-width{0%{width:0}to{width:100%}}@keyframes flip{0%{transform:perspective(2000px) rotateX(-100deg)}to{transform:perspective(2000px) rotateX(0)}}@keyframes flipleft{0%{transform:perspective(2000px) rotateY(-100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipright{0%{transform:perspective(2000px) rotateY(100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipup{0%{transform:perspective(2000px) rotateX(-100deg);opacity:0}to{transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes zoomin{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomindown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}@keyframes zoominleft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}@keyframes zoominright{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}@keyframes zoominup{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}.fadein{animation:fadein .15s linear}.fadeout{animation:fadeout .15s linear}.slidedown{animation:slidedown .45s ease-in-out}.slideup{animation:slideup .45s cubic-bezier(0,1,0,1)}.scalein{animation:scalein .15s linear}.fadeinleft{animation:fadeinleft .15s linear}.fadeoutleft{animation:fadeoutleft .15s linear}.fadeinright{animation:fadeinright .15s linear}.fadeoutright{animation:fadeoutright .15s linear}.fadeinup{animation:fadeinup .15s linear}.fadeoutup{animation:fadeoutup .15s linear}.fadeindown{animation:fadeindown .15s linear}.fadeoutdown{animation:fadeoutdown .15s linear}.animate-width{animation:animate-width 1s linear}.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flip .15s linear}.flipup{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipup .15s linear}.flipleft{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipleft .15s linear}.flipright{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipright .15s linear}.zoomin{animation:zoomin .15s linear}.zoomindown{animation:zoomindown .15s linear}.zoominleft{animation:zoominleft .15s linear}.zoominright{animation:zoominright .15s linear}.zoominup{animation:zoominup .15s linear}.animation-duration-100{animation-duration:.1s!important}.animation-duration-150{animation-duration:.15s!important}.animation-duration-200{animation-duration:.2s!important}.animation-duration-300{animation-duration:.3s!important}.animation-duration-400{animation-duration:.4s!important}.animation-duration-500{animation-duration:.5s!important}.animation-duration-1000{animation-duration:1s!important}.animation-duration-2000{animation-duration:2s!important}.animation-duration-3000{animation-duration:3s!important}.animation-delay-100{animation-delay:.1s!important}.animation-delay-150{animation-delay:.15s!important}.animation-delay-200{animation-delay:.2s!important}.animation-delay-300{animation-delay:.3s!important}.animation-delay-400{animation-delay:.4s!important}.animation-delay-500{animation-delay:.5s!important}.animation-delay-1000{animation-delay:1s!important}.animation-iteration-1{animation-iteration-count:1!important}.animation-iteration-2{animation-iteration-count:2!important}.animation-iteration-infinite{animation-iteration-count:infinite!important}.animation-linear{animation-timing-function:linear!important}.animation-ease-in{animation-timing-function:cubic-bezier(.4,0,1,1)!important}.animation-ease-out{animation-timing-function:cubic-bezier(0,0,.2,1)!important}.animation-ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)!important}.animation-fill-none{animation-fill-mode:none!important}.animation-fill-forwards{animation-fill-mode:forwards!important}.animation-fill-backwards{animation-fill-mode:backwards!important}.animation-fill-both{animation-fill-mode:both!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card{background-color:#fff;border-radius:8px;box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a}:host ::ng-deep .w-filter-panel-no-style-card.p-card .p-card-content{padding:0!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card .p-card-body{padding:0!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button{padding:0!important;height:auto!important;overflow:visible!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button .p-button-icon{font-size:9px!important;transform:translatey(1px) translate(2px)!important;color:#5f6468}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button>.p-button-label{color:#5f6468}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button:hover>.p-button-label{color:#1f2224}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button:hover .p-button-icon{color:#1f2224}:host ::ng-deep .w-filter-panel-buttons{display:flex;padding:0!important;margin-top:12px}:host ::ng-deep .w-filter-panel-buttons:has(button){flex-grow:10!important;flex-shrink:10!important;max-width:none!important;flex-basis:100%!important;gap:12px!important}:host ::ng-deep .w-filter-panel-buttons button{gap:8px;height:24px!important;padding-left:12px!important;padding-right:12px!important}:host ::ng-deep .w-filter-panel-buttons button>.p-button-label{font-size:11px!important;font-weight:700!important}:host ::ng-deep .w-filter-panel-buttons button.cancel-filter-button .p-button-icon.p-button-icon-left{font-size:12px}:host ::ng-deep .w-filter-panel-buttons button.set-filter-button .p-button-icon.p-button-icon-left{font-size:9px}.w-filter-panel-container-basic,.w-filter-panel-container-advanced{padding:20px 24px!important;display:grid;gap:12px}::ng-deep .query-builder-style ul li{border:none!important;background:transparent!important;padding-left:0!important}::ng-deep .w-filter-panel-basic .q-tree-container{margin:0;overflow:visible!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree{margin:0!important;padding:0!important;display:flex;flex-wrap:wrap;justify-content:flex-start;gap:20px 24px}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row{padding:0;margin:0;width:0}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row:not(:nth-child(3n)){display:flex!important;flex-direction:column;flex-basis:calc(16.6666666667% - 20px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row:nth-child(3n){display:flex!important;flex-direction:column;flex-basis:calc(16.6666666667% - 20px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row:has(.w-filter-panel-notifications-event-field){display:flex!important;flex-direction:column;flex-basis:calc(33.3333333333% - 16px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row.q-connector:before{content:none!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row.q-connector:after{border-width:0px!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-input-text-label{font-size:11px;font-weight:600;color:#1f2224;margin-bottom:6px;width:100%}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width{flex-basis:calc(16.6666666667% - 20px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.notifications-event-field-width{flex-basis:calc(50% - 12px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch{width:100%;background-color:#fff;height:24px!important;font-size:10.5px!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch>span{padding-top:4px!important;padding-left:8px!important;width:50px!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch .pi{line-height:14px}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch .p-dropdown-trigger{margin-right:4px!important;padding-bottom:2px}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .p-multiselect{width:100%}::ng-deep .w-filter-panel-advanced div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-button-group{width:auto!important;overflow:visible!important;margin:8px}::ng-deep .w-filter-panel-advanced div .q-button-group button,::ng-deep .w-filter-panel-grouped div .q-button-group button{height:24px!important}::ng-deep .w-filter-panel-advanced div .q-button-group.q-right-align,::ng-deep .w-filter-panel-grouped div .q-button-group.q-right-align{margin-right:0}::ng-deep .w-filter-panel-advanced div .w-filter-panel-switch-group-padding w-select-button .w-button-small .p-selectbutton .p-button,::ng-deep .w-filter-panel-grouped div .w-filter-panel-switch-group-padding w-select-button .w-button-small .p-selectbutton .p-button{height:24px}::ng-deep .w-filter-panel-advanced div .q-inline-block-display,::ng-deep .w-filter-panel-advanced div .q-tree-container .q-tree .q-rule .q-button-group,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule div .q-button-group,::ng-deep .w-filter-panel-advanced div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-inline-block-display,::ng-deep .w-filter-panel-grouped div .q-tree-container .q-tree .q-rule .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-button-group{margin:8px}::ng-deep .w-filter-panel-advanced .q-tree-container,::ng-deep .w-filter-panel-grouped .q-tree-container{margin:0;padding:0;overflow:visible!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-ruleset,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-ruleset{border:none!important;padding:6px 0!important;margin:12px 0!important;border-radius:8px;background-color:#005c7a08!important;box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule{background:none!important;border:none!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group{overflow:visible!important;margin:8px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group .p-button span:not(*:hover),::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group .p-button span:not(*:hover){color:#1f2224}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group .p-button,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group .p-button{box-shadow:0 0 1px 0 rgba #000,.1 inset,1px 1px 5px rgba #000,.06,1px 1px 1px rgba #000,.08;height:24px;width:24px;border:1px solid #e8ebee!important;border:none!important;padding:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group .p-button span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group .p-button span{margin-left:8px!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group.q-right-align,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group.q-right-align{margin-right:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row{padding:0;margin-top:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .q-inline-block-display,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row div .q-button-group,::ng-deep .w-filter-panel-advanced div .q-tree-container .q-tree .q-row .q-button-group,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .q-rule .q-button-group,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-row .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .q-inline-block-display,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-tree-container .q-tree .q-row .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .q-rule .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-row .q-button-group{vertical-align:middle!important;margin:8px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width{display:inline-flex;vertical-align:middle!important;width:200px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-no-entity-mode,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-no-entity-mode{width:0px;padding:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-entity-nullable,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-entity-nullable{padding:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators{width:100px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators.w-field-nullable,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators.w-field-nullable{width:0px;padding:0;margin:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch{width:100%;background-color:#fff;height:24px!important;font-size:10.5px!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch>span{padding-top:4px!important;padding-left:8px!important;width:50px!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .pi{line-height:14px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .p-dropdown-trigger{margin-right:4px!important;padding-bottom:2px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .p-dropdown,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-list-field,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-edit-calendar,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .p-dropdown,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-list-field,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-edit-calendar{width:100%}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-button-group{overflow:visible!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-button-group button,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-button-group button{box-shadow:0 0 1px 0 rgba #000,.1 inset,1px 1px 5px rgba #000,.06,1px 1px 1px rgba #000,.08!important;background:white!important}.advanced-query-button-group{position:absolute;bottom:0;left:0;margin-bottom:-46px}.w-filter-panel-container{position:relative}::ng-deep .w-filter-panel-blockui.p-blockui{opacity:0!important}::ng-deep .w-filter-panel-basic-query-builder-input-width p-dropdown .p-dropdown{width:100%}::ng-deep .w-filter-panel-basic-query-builder-input-width input .p-inputtext{width:100%}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input{border:1px solid #e8ebee;border-radius:8px;padding:8px;width:100%}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus{border-radius:8px}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input::-webkit-input-placeholder{color:#9aa0a7!important}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input::-moz-placeholder{color:#9aa0a7!important}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus:-ms-input-placeholder{color:#9aa0a7!important}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus:-moz-placeholder{color:#9aa0a7!important}:host ::ng-deep .w-edit-select-small .p-dropdown .p-dropdown-label{padding-right:24px;height:100%}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open:not(.p-disabled):hover{border-color:#e8ebee}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open .p-dropdown-label{padding-right:7px}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open .p-dropdown-trigger{visibility:hidden;margin:0;padding:0;width:0px;height:0px}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open .p-dropdown-clear-icon{right:12px}:host ::ng-deep .w-edit-select-small .p-dropdown:not(.p-dropdown-open){box-shadow:none!important;border-color:#e8ebee}:host ::ng-deep .w-edit-select-small .p-inputtext{align-content:center}:host ::ng-deep .w-edit-select-small .p-dropdown:not(.p-disabled):hover{border-color:#00b3eb}:host ::ng-deep .w-edit-select-small .p-dropdown .p-dropdown-trigger{width:auto;height:26px;padding-right:6px;padding-left:6px;margin-right:8px}:host ::ng-deep .w-edit-select-small .p-dropdown .p-dropdown-clear-icon{right:38px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect{border:1px solid #e8ebee;border-radius:8px;display:flex}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container{display:flex;padding:0!important;align-items:center}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{padding:0 8px;align-content:center;margin-right:20px;display:flex;width:100%;gap:6px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{height:20px;padding:0 6px;gap:4px;border-radius:6px;border-width:1px;color:#1f2224;background-color:#e0f5fc}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon{margin-left:0;font-size:8px;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon:before{content:\"\\e90b\"!important;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times:before{content:\"\\e90c\"!important;color:#5f6468!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times{right:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open:not(.p-disabled):hover{border-color:#e8ebee}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-trigger{width:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-label{margin-right:32px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-trigger{display:none;margin:0;padding:0;width:0px;height:0px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-clear-icon{right:15px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect:hover{border:1px solid #00b3eb}.w-filter-panel-notifications-event-field{display:flex;gap:20px 24px}\n"], dependencies: [{ kind: "directive", type: i4.InputText, selector: "[pInputText]" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i6.ButtonDirective, selector: "[pButton]", inputs: ["iconPos", "loadingIcon", "label", "icon", "loading"] }, { kind: "directive", type: i7.Ripple, selector: "[pRipple]" }, { kind: "component", type: i8.Dropdown, selector: "p-dropdown", inputs: ["scrollHeight", "filter", "name", "style", "panelStyle", "styleClass", "panelStyleClass", "readonly", "required", "editable", "appendTo", "tabindex", "placeholder", "filterPlaceholder", "filterLocale", "inputId", "selectId", "dataKey", "filterBy", "autofocus", "resetFilterOnHide", "dropdownIcon", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "autoDisplayFirst", "group", "showClear", "emptyFilterMessage", "emptyMessage", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "ariaLabel", "ariaLabelledBy", "filterMatchMode", "maxlength", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "autofocusFilter", "overlayDirection", "disabled", "itemSize", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "options", "filterValue"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onShow", "onHide", "onClear", "onLazyLoad"] }, { kind: "component", type: i9.MultiSelect, selector: "p-multiSelect", inputs: ["style", "styleClass", "panelStyle", "panelStyleClass", "inputId", "disabled", "readonly", "group", "filter", "filterPlaceHolder", "filterLocale", "overlayVisible", "tabindex", "appendTo", "dataKey", "name", "label", "ariaLabelledBy", "displaySelectedLabel", "maxSelectedLabels", "selectionLimit", "selectedItemsLabel", "showToggleAll", "emptyFilterMessage", "emptyMessage", "resetFilterOnHide", "dropdownIcon", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "showHeader", "filterBy", "scrollHeight", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "filterMatchMode", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "autofocusFilter", "display", "autocomplete", "showClear", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "defaultLabel", "placeholder", "options", "filterValue", "itemSize"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onClear", "onPanelShow", "onPanelHide", "onLazyLoad", "onRemove"] }, { kind: "component", type: i10.InputNumber, selector: "p-inputNumber", inputs: ["showButtons", "format", "buttonLayout", "inputId", "styleClass", "style", "placeholder", "size", "maxlength", "tabindex", "title", "ariaLabel", "ariaRequired", "name", "required", "autocomplete", "min", "max", "incrementButtonClass", "decrementButtonClass", "incrementButtonIcon", "decrementButtonIcon", "readonly", "step", "allowEmpty", "locale", "localeMatcher", "mode", "currency", "currencyDisplay", "useGrouping", "minFractionDigits", "maxFractionDigits", "prefix", "suffix", "inputStyle", "inputStyleClass", "showClear", "disabled"], outputs: ["onInput", "onFocus", "onBlur", "onKeyDown", "onClear"] }, { kind: "component", type: i11.QueryBuilderComponent, selector: "query-builder", inputs: ["data", "allowRuleset", "allowCollapse", "emptyMessage", "config", "persistValueOnFieldChange", "value", "disabled", "classNames", "operatorMap", "parentValue", "parentArrowIconTemplate", "parentInputTemplates", "parentOperatorTemplate", "parentFieldTemplate", "parentEntityTemplate", "parentSwitchGroupTemplate", "parentButtonGroupTemplate", "parentRemoveButtonTemplate", "parentEmptyWarningTemplate", "parentChangeCallback", "parentTouchedCallback"] }, { kind: "directive", type: i11.QueryInputDirective, selector: "[queryInput]", inputs: ["queryInputType"] }, { kind: "directive", type: i11.QueryOperatorDirective, selector: "[queryOperator]" }, { kind: "directive", type: i11.QueryFieldDirective, selector: "[queryField]" }, { kind: "directive", type: i11.QueryEntityDirective, selector: "[queryEntity]" }, { kind: "directive", type: i11.QueryButtonGroupDirective, selector: "[queryButtonGroup]" }, { kind: "directive", type: i11.QuerySwitchGroupDirective, selector: "[querySwitchGroup]" }, { kind: "directive", type: i11.QueryRemoveButtonDirective, selector: "[queryRemoveButton]" }, { kind: "directive", type: i11.QueryArrowIconDirective, selector: "[queryArrowIcon]" }, { kind: "component", type: i12.Card, selector: "p-card", inputs: ["header", "subheader", "style", "styleClass"] }, { kind: "component", type: i13.BlockUI, selector: "p-blockUI", inputs: ["target", "autoZIndex", "baseZIndex", "styleClass", "blocked"] }, { kind: "component", type: i14.WEditInputTextComponent, selector: "w-edit-input-text", inputs: ["label", "showLabel", "placeholder", "successMessage", "required", "requiredErrorDescription", "disabled", "minlength", "minlengthErrorDescription", "maxlength", "maxlengthErrorDescription", "email", "emailErrorDescription", "pattern", "patternErrorDescription", "autofocus", "inputIcon", "size", "formControl", "removePaddingTop", "tooltip", "tooltipPosition"] }, { kind: "component", type: i15.WButtonComponent, selector: "w-button", inputs: ["type", "label", "size", "icon", "iconPos", "tooltipPosition", "tooltip", "disabled", "loading", "buttonClass"], outputs: ["onClick"] }, { kind: "component", type: i16.WListFieldComponent, selector: "w-list-field", inputs: ["options", "operator", "placeholder", "onlyDropdown", "disabled"] }, { kind: "component", type: i17.WViewCardTitleTextComponent, selector: "w-view-card-title-text", inputs: ["cardTitle"] }, { kind: "component", type: i18.WToggleButtonComponent, selector: "w-toggle-button", inputs: ["onLabel", "offLabel", "size", "onIcon", "offIcon", "tooltipPosition", "tooltip", "disabled", "formControl"], outputs: ["onChange"] }, { kind: "component", type: i19.WSelectButtonComponent, selector: "w-select-button", inputs: ["stateOptions", "size", "tooltipPosition", "tooltip", "disabled", "formControl"], outputs: ["onChange"] }, { kind: "component", type: i20.WEditCalendarComponent, selector: "w-edit-calendar", inputs: ["minDate", "maxDate", "label", "showLabel", "showTime", "showSeconds", "timeOnly", "showIcon", "placeholder", "disabled", "size", "formControl", "displayInlineBlock", "required", "requiredErrorDescription", "someErrorDescription", "removePaddingTop", "firstDayOfWeek", "tooltip", "tooltipPosition", "dataType", "viewType", "monthMode", "readonlyInput", "dateFormat"], outputs: ["onChange"] }, { kind: "component", type: i21.WAddressFieldComponent, selector: "w-address-field", inputs: ["operator", "selectPlaceholder", "segmentationApiUrl", "segmentationApiToken"] }, { kind: "component", type: i22.WNotificationsEventFieldComponent, selector: "w-notifications-event-field", inputs: ["operator", "placeholder", "notificationApiUrl", "notificationApiToken"] }] });
|
|
689
701
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WFilterPanelComponent, decorators: [{
|
|
690
702
|
type: Component,
|
|
691
|
-
args: [{ selector: 'w-filter-panel', template: "<!-- TODO: Intentar otra vez pasar los componentes a los de w- porque no se alinena y el w-edit-select no va bien en field. \r\n Ahora se conservan los de p-w con estilos. -->\r\n<p-blockUI styleClass=\"w-filter-panel-blockui\" [autoZIndex]=\"false\" [target]=\"filterPanel\" [blocked]=\"dataIsLoadingSearchButton\"></p-blockUI>\r\n\r\n<p-card styleClass=\"w-filter-panel-no-style-card\" #filterPanel>\r\n <div *ngIf=\"queryConfigReady\" class=\"w-filter-panel-styles\">\r\n <div *ngIf=\"!filterPanelObject.allowAdvancedSearch; else baiscAndAdvanced\">\r\n <div [ngClass]=\"{ 'w-filter-panel-container-advanced' : isAdvancedSearch, 'w-filter-panel-container-basic' : !isAdvancedSearch }\">\r\n <ng-container *ngTemplateOutlet=\"basic\"></ng-container>\r\n <div class=\"w-filter-panel-buttons\">\r\n <w-button icon=\"w-icon closeCircle\" buttonClass=\"cancel-filter-button\" [label]=\"translationsObject.clearButtonLabel\" type=\"tertiary\" size=\"small\" (onClick)=\"onClearClicked()\"></w-button>\r\n <w-button icon=\"pi pi-filter-fill\" buttonClass=\"set-filter-button\" [label]=\"translationsObject.searchButtonLabel\" size=\"small\" (onClick)=\"onSearchClicked()\"></w-button>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <ng-template #baiscAndAdvanced>\r\n <div [ngClass]=\"{ 'w-filter-panel-container-advanced' : isAdvancedSearch, 'w-filter-panel-container-basic' : !isAdvancedSearch }\">\r\n <ng-container *ngIf=\"!isAdvancedSearch; else advancedView\">\r\n <ng-container *ngTemplateOutlet=\"basic\"></ng-container>\r\n </ng-container>\r\n <ng-template #advancedView>\r\n <ng-container *ngTemplateOutlet=\"advanced\"></ng-container>\r\n </ng-template>\r\n\r\n <div class=\"w-filter-panel-buttons\" [class.pt-3]=\"isAdvancedSearch\">\r\n <w-button buttonClass=\"cancel-filter-button\" [label]=\"translationsObject.clearButtonLabel\" icon=\"w-icon closeCircle\" type=\"tertiary\" size=\"small\" (onClick)=\"onClearClicked()\"></w-button>\r\n <w-button buttonClass=\"set-filter-button\" [label]=\"translationsObject.searchButtonLabel\" icon=\"pi pi-filter-fill\" size=\"small\" (onClick)=\"onSearchClicked()\" [loading]=\"dataIsLoadingSearchButton\"></w-button>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </div>\r\n</p-card>\r\n\r\n <ng-template #basic>\r\n <div *ngIf=\"filterPanelObject.allowAdvancedSearch\" class=\"flex justify-content-end flex-wrap\">\r\n <w-button buttonClass=\"change-filter-button\" icon=\"pi pi-sync\" [label]=\"translationsObject.advancedSearchTabLabel\" type=\"text\" (onClick)=\"updateSearchType()\"></w-button>\r\n </div>\r\n <div *ngIf=\"basicQuery.rules.length > 0\" class=\"w-filter-panel-basic query-builder-style fadein animation-duration-500\">\r\n <query-builder #basicQueryBuilderObject [formControl]='queryCtrl' [config]='basicQueryConfig' [allowRuleset]='filterPanelObject.allowRuleSet' [allowRuleset]=\"filterPanelObject.allowRuleSet\" [persistValueOnFieldChange]='persistValueOnFieldChange'>\r\n <ng-container *queryButtonGroup=\"let ruleset;\">\r\n </ng-container>\r\n\r\n <ng-container *queryRemoveButton=\"let rule; let removeRule=removeRule\">\r\n </ng-container>\r\n\r\n <ng-container *querySwitchGroup=\"let ruleset; let onChange=onChange\">\r\n </ng-container>\r\n\r\n <ng-container *queryEntity=\"let rule; let entities=entities; let onChange=onChange\">\r\n <p-dropdown [disabled]=\"true\" class=\" w-edit-select-small\" *ngIf=\"false\" appendTo=\"body\" [options]=\"entities\" [(ngModel)]=\"rule.entity\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </ng-container>\r\n\r\n <ng-container *queryField=\"let rule; let fields=fields; let onChange=onChange; let getFields = getFields; let value=value; let name=name; let index=index\">\r\n <span appendTo=\"body\" class=\"w-filter-panel-input-text-label\" [class.w-filter-panel-boolean-label-width]=\"fieldIsBoolean(rule.field, getFields(rule.entity))\" optionLabel=\"name\" optionValue=\"value\">{{ getQueryFieldName(rule.field, getFields(rule.entity))}}</span>\r\n </ng-container>\r\n\r\n <ng-container *queryOperator=\"let rule; let operators=operators; let onChange=onChange\">\r\n <span class=\"query-builder-operator-width\">\r\n <p-dropdown class=\" w-edit-select-small\" *ngIf=\"isAdvancedSearch\" appendTo=\"body\" [(ngModel)]=\"rule.operator\" [options]=\"operators\" (ngModelChange)=\"onChange(rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Boolean.toString(); let onChange=onChange\">\r\n <span class=\"query-builder-operator-width\">\r\n <w-toggle-button size=\"small\" [(ngModel)]=\"rule.value\" onLabel=\"True\" offLabel=\"False\" (ngModelChange)=\"onChange()\"></w-toggle-button>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Datetime.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <w-edit-calendar appendTo=\"body\" size=\"small\" [showIcon]=\"false\" [dataType]=\"isToKeepLocalDate(rule.field) ? 'date' : 'string'\" [(ngModel)]=\"rule.value\" (onChange)=\"onChange()\" [showTime]=\"true\" [showSeconds]=\"true\" [firstDayOfWeek]=\"translationsObject.firstDayOfWeek ?? 1\" [placeholder]=\"translationsObject.fieldsPlaceholders.datetime\" [showLabel]=\"false\"></w-edit-calendar>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Decimal.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-inputNumber inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"w-edit-input-number-small\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" mode=\"decimal\" [minFractionDigits]=\"2\" [maxFractionDigits]=\"5\" [min]=\"0\" [max]=\"100\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.decimal\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"options\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Number.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-inputNumber [useGrouping]=\"false\" inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"w-edit-input-number-small\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" [min]=\"0\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.number\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Text.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <w-edit-input-text class=\"w-edit-input-text-small-height\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.text\" [showLabel]=\"false\"></w-edit-input-text>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Multiselect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-multiSelect class=\"w-edit-multiselect-small\" [appendTo]=\"'body'\" [options]=\"options\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" display=\"chip\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-multiSelect>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.NullableSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"getNullableSelectOptions(options)\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" \r\n [placeholder]=\"nullableSelectPlaceholder(rule, options)\">\r\n </p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.BooleanSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"getBooleanSelectOptions(options)\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Address.toString(); let onChange=onChange\">\r\n <w-address-field [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [operator]=\"rule.operator\" [segmentationApiUrl]=\"segmentationApiUrl\" [segmentationApiToken]=\"segmentationToken\"></w-address-field>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.TranslatedSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getTranslatedSelectOptions(options)\" [ngModelOptions]=\"{standalone: true}\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.NotificationEventList.toString(); let onChange=onChange\">\r\n <w-notifications-event-field class=\"w-filter-panel-notifications-event-field\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [operator]=\"rule.operator\" [notificationApiUrl]=\"notificationApiUrl\" [notificationApiToken]=\"commonDataToken\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></w-notifications-event-field>\r\n </ng-container>\r\n </query-builder>\r\n </div>\r\n\r\n <ng-container *ngIf=\"!isAdvancedSearch && basicQuery.rules.length==0\" >\r\n <ng-container *ngTemplateOutlet=\"noQueryData\"></ng-container>\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template #advanced>\r\n <div [class.query-builder-style]=\"!filterPanelObject.allowRuleSet\" class=\"w-filter-panel-container fadein animation-duration-500\">\r\n <div *ngIf=\"filterPanelObject.allowRuleSet\" class=\"flex justify-content-end flex-wrap\">\r\n <w-button buttonClass=\"change-filter-button\" icon=\"pi pi-sync\" class=\"mb-2\" [label]=\"translationsObject.basicSearchTabLabel\" type=\"text\" (onClick)=\"updateSearchType()\"></w-button>\r\n </div>\r\n <query-builder class=\"w-filter-panel-advanced query-builder-style\" #advancedQueryBuilder [formControl]='advancedQueryCtrl' [config]='advancedQueryConfig' [allowRuleset]='filterPanelObject.allowRuleSet' [allowCollapse]='filterPanelObject.allowColapse' [allowRuleset]=\"filterPanelObject.allowRuleSet\" [persistValueOnFieldChange]='persistValueOnFieldChange'>\r\n <div *ngIf=\"filterPanelObject.allowRuleSet; else noRuleSet\">\r\n <ng-container *queryButtonGroup=\"let ruleset; let addRule=addRule; let addRuleSet=addRuleSet; let removeRuleSet=removeRuleSet\">\r\n <span class=\"flex gap-3\">\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleButtonLabel\" type=\"secondary\" size=\"small\" (onClick)=\"addRule()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleSetButtonLabel\" type=\"secondary\" icon=\"pi pi-plus\" size=\"small\" *ngIf=\"addRuleSet\" (onClick)=\"addRuleSet()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.removeRuleSetButtonLabel\" type=\"tertiary\" icon=\"pi pi-minus\" size=\"small\" *ngIf=\"removeRuleSet\" (onClick)=\"removeRuleSet()\"></w-button>\r\n </span>\r\n </ng-container>\r\n </div>\r\n\r\n <ng-template #noRuleSet>\r\n <ng-container *queryButtonGroup=\"let ruleset; let addRule=addRule; let addRuleSet=addRuleSet; let removeRuleSet=removeRuleSet\">\r\n <div class=\"flex justify-content-end flex-wrap\">\r\n <w-button [label]=\"translationsObject.basicSearchTabLabel\" type=\"text\" (onClick)=\"updateSearchType()\"></w-button>\r\n </div>\r\n <span class=\"advanced-query-button-group flex gap-3\">\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleButtonLabel\" type=\"secondary\" size=\"small\" (onClick)=\"addRule()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleSetButtonLabel\" type=\"secondary\" icon=\"pi pi-plus\" size=\"small\" *ngIf=\"addRuleSet\" (onClick)=\"addRuleSet()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.removeRuleSetButtonLabel\" type=\"tertiary\" icon=\"pi pi-minus\" size=\"small\" *ngIf=\"removeRuleSet\" (onClick)=\"removeRuleSet()\"></w-button>\r\n </span>\r\n </ng-container>\r\n </ng-template>\r\n <ng-container *queryArrowIcon>\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-angle-right\" class=\"p-button-rounded p-button-text\"></button>\r\n </ng-container>\r\n\r\n <ng-container *queryRemoveButton=\"let rule; let removeRule=removeRule\">\r\n <w-button class=\"\" label=\"\" size=\"small\" type=\"tertiary\" icon=\"pi pi-times\" (onClick)=\"removeRule(rule)\"></w-button>\r\n </ng-container>\r\n\r\n <ng-container *querySwitchGroup=\"let ruleset; let onChange=onChange\">\r\n <div *ngIf=\"ruleset\" class=\"w-filter-panel-switch-group-padding q-inline-block-display inline-flex\">\r\n <w-select-button *ngIf=\"filterPanelObject.allowLogicalRule\" [stateOptions]=\"[{label: 'And', value: 'and'}, {label: 'Or', value: 'or'}]\"\r\n [(ngModel)]=\"ruleset.condition\"\r\n [size]=\"'small'\"\r\n (value)=\"ruleset.condition = $event\">\r\n </w-select-button>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-container *queryEntity=\"let rule; let entities=entities; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width\" [ngClass]=\"{'w-no-entity-mode' : !filterPanelObject.enityMode}\">\r\n <p-dropdown *ngIf=\"filterPanelObject.enityMode\" class=\"field-gap w-edit-select-small w-entity-dropdown\" appendTo=\"body\" [options]=\"entities\" [(ngModel)]=\"rule.entity\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryField=\"let rule; let fields=fields; let onChange=onChange; let getFields = getFields\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-list-field class=\"field-gap\" appendTo=\"body\" [options]=\"getFields(rule.entity)\" [(ngModel)]=\"rule.field\" [operator]=\"'='\" (ngModelChange)=\"onChange($event, rule)\" [onlyDropdown]=\"true\"></w-list-field>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryOperator=\"let rule; let operators=operators; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-operators q-inline-block-display\" [ngClass]=\"{'w-field-nullable' : operators.includes('nullable')}\">\r\n <p-dropdown *ngIf=\"!operators.includes('nullable')\" class=\"field-gap w-edit-select-small\" appendTo=\"body\" [(ngModel)]=\"rule.operator\" [options]=\"operators\" (ngModelChange)=\"onChange(rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Boolean.toString(); let onChange=onChange\">\r\n <w-toggle-button class=\"field-gap toggle-button-align\" size=\"small\" [(ngModel)]=\"rule.value\" onLabel=\"True\" offLabel=\"False\" (ngModelChange)=\"onChange()\"></w-toggle-button>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Datetime.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-edit-calendar class=\"field-gap\" appendTo=\"body\" size=\"small\" [dataType]=\"isToKeepLocalDate(rule.field) ? 'date' : 'string'\" [showIcon]=\"false\" [(ngModel)]=\"rule.value\" (onChange)=\"onChange()\" [showTime]=\"true\" [showSeconds]=\"true\" [firstDayOfWeek]=\"translationsObject.firstDayOfWeek ?? 1\" [placeholder]=\"translationsObject.fieldsPlaceholders.datetime\" [displayInlineBlock]=\"true\" [showLabel]=\"false\"></w-edit-calendar>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Decimal.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"field-gap w-edit-input-number-small w-edit-input-number-small-height\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" mode=\"decimal\" [minFractionDigits]=\"2\" [maxFractionDigits]=\"5\" [min]=\"0\" [max]=\"100\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.decimal\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown *ngIf=\"!isMultiselect(rule)\" class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"options\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n <p-multiSelect *ngIf=\"isMultiselect(rule)\" class=\"w-edit-multiselect-small\" [appendTo]=\"'body'\" [options]=\"options\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" display=\"chip\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-multiSelect>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display field-gap\">\r\n <w-list-field [options]=\"options\" [(ngModel)]=\"rule.value\" [operator]=\"rule.operator\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></w-list-field>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Number.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber [useGrouping]=\"false\" inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"field-gap w-edit-input-number-small w-edit-input-number-small-height\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" [min]=\"0\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.number\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Text.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <input class=\"field-gap w-edit-input-text-small-height w-edit-input-text-small\" type=\"text\" pInputText [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.text\"/>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Multiselect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-multiSelect class=\"w-edit-multiselect-small\" [appendTo]=\"'body'\" [options]=\"options\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" display=\"chip\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-multiSelect>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Address.toString(); let onChange=onChange\">\r\n <w-address-field [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [operator]=\"rule.operator\" [segmentationApiUrl]=\"segmentationApiUrl\" [segmentationApiToken]=\"segmentationToken\" [selectPlaceholder]=\"translationsObject.fieldsPlaceholders.list\"></w-address-field>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.NullableSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display w-entity-nullable\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getNullableSelectOptions(options)\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.BooleanSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getBooleanSelectOptions(options)\" [ngModelOptions]=\"{standalone: true}\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.TranslatedSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getTranslatedSelectOptions(options)\" [ngModelOptions]=\"{standalone: true}\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n </query-builder>\r\n\r\n <ng-container *ngIf=\"isAdvancedSearch && advancedQuery.rules.length==0\" >\r\n <ng-container *ngTemplateOutlet=\"noQueryData\"></ng-container>\r\n </ng-container>\r\n\r\n <!-- Grouped filter -->\r\n <div *ngIf=\"filterPanelObject.allowGrouped\">\r\n <div class=\"py-5\">\r\n <w-view-card-title-text [cardTitle]=\"translationsObject.groupedFilterTitle\"></w-view-card-title-text>\r\n </div>\r\n\r\n <query-builder *ngIf=\"groupedQuery.rules.length > 0\" class=\"w-filter-panel-grouped query-builder-style\" [formControl]='groupedQueryCtrl' [config]='advancedQueryConfig' [allowRuleset]='filterPanelObject.allowRuleSet' [allowCollapse]='filterPanelObject.allowColapse' [allowRuleset]=\"filterPanelObject.allowRuleSet\" [persistValueOnFieldChange]='persistValueOnFieldChange'>\r\n <ng-container *queryButtonGroup=\"let ruleset; let addRule=addRule; let addRuleSet=addRuleSet; let removeRuleSet=removeRuleSet\">\r\n <div class=\"flex gap-3\">\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleButtonLabel\" type=\"secondary\" size=\"small\" (onClick)=\"addRule()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleSetButtonLabel\" type=\"secondary\" icon=\"pi pi-plus\" size=\"small\" *ngIf=\"addRuleSet\" (onClick)=\"addRuleSet()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.removeRuleSetButtonLabel\" type=\"tertiary\" icon=\"pi pi-minus\" size=\"small\" *ngIf=\"removeRuleSet\" (onClick)=\"removeRuleSet()\"></w-button>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-container *queryArrowIcon>\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-angle-right\" class=\"p-button-rounded p-button-text\"></button>\r\n </ng-container>\r\n\r\n <ng-container *queryRemoveButton=\"let rule; let removeRule=removeRule\">\r\n <w-button class=\"\" label=\"\" size=\"small\" type=\"tertiary\" icon=\"pi pi-times\" (onClick)=\"removeRule(rule)\"></w-button>\r\n </ng-container>\r\n\r\n <ng-container *querySwitchGroup=\"let ruleset; let onChange=onChange\">\r\n <div class=\"w-filter-panel-switch-group-padding q-inline-block-display inline-flex\" *ngIf=\"ruleset\">\r\n <w-select-button *ngIf=\"filterPanelObject.allowLogicalRule\" [stateOptions]=\"[{label: 'And', value: 'and'}, {label: 'Or', value: 'or'}]\"\r\n [(ngModel)]=\"ruleset.condition\"\r\n [size]=\"'small'\"\r\n (value)=\"ruleset.condition = $event\">\r\n </w-select-button>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-container *queryEntity=\"let rule; let entities=entities; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width\" [ngClass]=\"{'w-no-entity-mode' : !filterPanelObject.enityMode}\">\r\n <p-dropdown class=\"w-edit-select-small field-gap w-entity-dropdown\" *ngIf=\"filterPanelObject.enityMode\" appendTo=\"body\" [options]=\"entities\" [(ngModel)]=\"rule.entity\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryField=\"let rule; let fields=fields; let onChange=onChange; let getFields = getFields\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"getFields(rule.entity)\" [(ngModel)]=\"rule.field\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryOperator=\"let rule; let operators=operators; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-operators q-inline-block-display\" [ngClass]=\"{'w-field-nullable' : operators.includes('nullable')}\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [(ngModel)]=\"rule.operator\" [options]=\"operators\" (ngModelChange)=\"onChange(rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Boolean.toString(); let onChange=onChange\">\r\n <w-toggle-button class=\"field-gap toggle-button-align\" size=\"small\" [(ngModel)]=\"rule.value\" onLabel=\"True\" offLabel=\"False\" (ngModelChange)=\"onChange()\"></w-toggle-button>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Datetime.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-edit-calendar class=\"field-gap\" appendTo=\"body\" size=\"small\" [dataType]=\"isToKeepLocalDate(rule.field) ? 'date' : 'string'\" [showIcon]=\"false\" [(ngModel)]=\"rule.value\" (onChange)=\"onChange()\" [showTime]=\"true\" [showSeconds]=\"true\" [placeholder]=\"translationsObject.fieldsPlaceholders.datetime\" [displayInlineBlock]=\"true\"></w-edit-calendar>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Decimal.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber class=\"flex flex-1\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" mode=\"decimal\" [minFractionDigits]=\"2\" [maxFractionDigits]=\"5\" [min]=\"0\" [max]=\"100\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.decimal\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-list-field [options]=\"options\" [(ngModel)]=\"rule.value\" [operator]=\"rule.operator\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></w-list-field>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Number.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber [useGrouping]=\"false\" inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"field-gap w-edit-input-number-small w-edit-input-number-small-height\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" [min]=\"0\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.number\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Text.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width\">\r\n <input class=\"field-gap w-edit-input-text-small-height w-edit-input-text-small\" type=\"text\" pInputText [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.text\"/>\r\n </span>\r\n </ng-container>\r\n\r\n </query-builder>\r\n\r\n <ng-container *ngIf=\"isAdvancedSearch && groupedQuery.rules.length==0\" >\r\n <ng-container *ngTemplateOutlet=\"noQueryData\"></ng-container>\r\n </ng-container>\r\n </div>\r\n </div>\r\n </ng-template>\r\n\r\n <ng-template #noQueryData>\r\n <div class=\"flex justify-content-center flex-wrap card-container surface-50\">\r\n <div class=\"flex align-items-center justify-content-center w-full h-4rem text-gray-900 border-round m-2\">\r\n {{translationsObject.noRulesLabel}}\r\n </div>\r\n </div>\r\n </ng-template>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder,:host ::ng-deep .w-edit-select-small .p-dropdown .p-placeholder{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput,:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-focus,:host ::ng-deep .w-edit-select-small .p-dropdown:not(.p-disabled).p-focus,::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput,::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:hover{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,.w-button-small-tertiary-label-text,.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled,:host ::ng-deep .w-edit-select-small .p-disabled,::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:disabled{background-color:#f1f3f4!important;border-color:#e8ebee!important;opacity:1!important}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{color:#1f2224}.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder,:host ::ng-deep .w-edit-select-small .p-dropdown .p-placeholder{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled{color:#5f6468}.w-input-small-placeholder-text-disabled-only-color,:host ::ng-deep .w-edit-select-small .p-disabled .p-inputtext{color:#5f6468}.w-input-small-text-icon,.w-input-small-select-options-text{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,.w-input-medium-placeholder-text-only-color{color:#1f2224}.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text-disabled-only-color{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px;pointer-events:none}::ng-deep .p-tooltip.p-tooltip-left,.p-tooltip.p-tooltip-left{margin-right:6px;width:max-content;transform:translate(-6px)}::ng-deep .p-tooltip.p-tooltip-left .p-tooltip-arrow,.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#fff!important;top:50%;right:-3px;margin-top:-4px;border-width:4px 0 4px 6px!important}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.grid{display:flex;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem;margin-top:-.5rem}.grid>.col,.grid>[class*=col]{box-sizing:border-box}.grid-nogutter{margin-right:0;margin-left:0;margin-top:0}.grid-nogutter>.col,.grid-nogutter>[class*=col-]{padding:0}.col{flex-grow:1;flex-basis:0;padding:.5rem}.col-fixed{flex:0 0 auto;padding:.5rem}.col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.col-3{flex:0 0 auto;padding:.5rem;width:25%}.col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.col-6{flex:0 0 auto;padding:.5rem;width:50%}.col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.col-9{flex:0 0 auto;padding:.5rem;width:75%}.col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.col-12{flex:0 0 auto;padding:.5rem;width:100%}@media screen and (min-width: 576px){.sm\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.sm\\:col-fixed{flex:0 0 auto;padding:.5rem}.sm\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.sm\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.sm\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.sm\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.sm\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.sm\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.sm\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.sm\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.sm\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.sm\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.sm\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.sm\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 768px){.md\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.md\\:col-fixed{flex:0 0 auto;padding:.5rem}.md\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.md\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.md\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.md\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.md\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.md\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.md\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.md\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.md\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.md\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.md\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.md\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 992px){.lg\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.lg\\:col-fixed{flex:0 0 auto;padding:.5rem}.lg\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.lg\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.lg\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.lg\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.lg\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.lg\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.lg\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.lg\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.lg\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.lg\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.lg\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.lg\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 1200px){.xl\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.xl\\:col-fixed{flex:0 0 auto;padding:.5rem}.xl\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.xl\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.xl\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.xl\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.xl\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.xl\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.xl\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.xl\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.xl\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.xl\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.xl\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.xl\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}.col-offset-0{margin-left:0!important}.col-offset-1{margin-left:8.3333%!important}.col-offset-2{margin-left:16.6667%!important}.col-offset-3{margin-left:25%!important}.col-offset-4{margin-left:33.3333%!important}.col-offset-5{margin-left:41.6667%!important}.col-offset-6{margin-left:50%!important}.col-offset-7{margin-left:58.3333%!important}.col-offset-8{margin-left:66.6667%!important}.col-offset-9{margin-left:75%!important}.col-offset-10{margin-left:83.3333%!important}.col-offset-11{margin-left:91.6667%!important}.col-offset-12{margin-left:100%!important}@media screen and (min-width: 576px){.sm\\:col-offset-0{margin-left:0!important}.sm\\:col-offset-1{margin-left:8.3333%!important}.sm\\:col-offset-2{margin-left:16.6667%!important}.sm\\:col-offset-3{margin-left:25%!important}.sm\\:col-offset-4{margin-left:33.3333%!important}.sm\\:col-offset-5{margin-left:41.6667%!important}.sm\\:col-offset-6{margin-left:50%!important}.sm\\:col-offset-7{margin-left:58.3333%!important}.sm\\:col-offset-8{margin-left:66.6667%!important}.sm\\:col-offset-9{margin-left:75%!important}.sm\\:col-offset-10{margin-left:83.3333%!important}.sm\\:col-offset-11{margin-left:91.6667%!important}.sm\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 768px){.md\\:col-offset-0{margin-left:0!important}.md\\:col-offset-1{margin-left:8.3333%!important}.md\\:col-offset-2{margin-left:16.6667%!important}.md\\:col-offset-3{margin-left:25%!important}.md\\:col-offset-4{margin-left:33.3333%!important}.md\\:col-offset-5{margin-left:41.6667%!important}.md\\:col-offset-6{margin-left:50%!important}.md\\:col-offset-7{margin-left:58.3333%!important}.md\\:col-offset-8{margin-left:66.6667%!important}.md\\:col-offset-9{margin-left:75%!important}.md\\:col-offset-10{margin-left:83.3333%!important}.md\\:col-offset-11{margin-left:91.6667%!important}.md\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 992px){.lg\\:col-offset-0{margin-left:0!important}.lg\\:col-offset-1{margin-left:8.3333%!important}.lg\\:col-offset-2{margin-left:16.6667%!important}.lg\\:col-offset-3{margin-left:25%!important}.lg\\:col-offset-4{margin-left:33.3333%!important}.lg\\:col-offset-5{margin-left:41.6667%!important}.lg\\:col-offset-6{margin-left:50%!important}.lg\\:col-offset-7{margin-left:58.3333%!important}.lg\\:col-offset-8{margin-left:66.6667%!important}.lg\\:col-offset-9{margin-left:75%!important}.lg\\:col-offset-10{margin-left:83.3333%!important}.lg\\:col-offset-11{margin-left:91.6667%!important}.lg\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 1200px){.xl\\:col-offset-0{margin-left:0!important}.xl\\:col-offset-1{margin-left:8.3333%!important}.xl\\:col-offset-2{margin-left:16.6667%!important}.xl\\:col-offset-3{margin-left:25%!important}.xl\\:col-offset-4{margin-left:33.3333%!important}.xl\\:col-offset-5{margin-left:41.6667%!important}.xl\\:col-offset-6{margin-left:50%!important}.xl\\:col-offset-7{margin-left:58.3333%!important}.xl\\:col-offset-8{margin-left:66.6667%!important}.xl\\:col-offset-9{margin-left:75%!important}.xl\\:col-offset-10{margin-left:83.3333%!important}.xl\\:col-offset-11{margin-left:91.6667%!important}.xl\\:col-offset-12{margin-left:100%!important}}.text-0{color:var(--surface-0)!important}.text-50{color:var(--surface-50)!important}.text-100{color:var(--surface-100)!important}.text-200{color:var(--surface-200)!important}.text-300{color:var(--surface-300)!important}.text-400{color:var(--surface-400)!important}.text-500{color:var(--surface-500)!important}.text-600{color:var(--surface-600)!important}.text-700{color:var(--surface-700)!important}.text-800{color:var(--surface-800)!important}.text-900{color:var(--surface-900)!important}.focus\\:text-0:focus{color:var(--surface-0)!important}.hover\\:text-0:hover,.active\\:text-0:active{color:var(--surface-0)!important}.focus\\:text-50:focus{color:var(--surface-50)!important}.hover\\:text-50:hover,.active\\:text-50:active{color:var(--surface-50)!important}.focus\\:text-100:focus{color:var(--surface-100)!important}.hover\\:text-100:hover,.active\\:text-100:active{color:var(--surface-100)!important}.focus\\:text-200:focus{color:var(--surface-200)!important}.hover\\:text-200:hover,.active\\:text-200:active{color:var(--surface-200)!important}.focus\\:text-300:focus{color:var(--surface-300)!important}.hover\\:text-300:hover,.active\\:text-300:active{color:var(--surface-300)!important}.focus\\:text-400:focus{color:var(--surface-400)!important}.hover\\:text-400:hover,.active\\:text-400:active{color:var(--surface-400)!important}.focus\\:text-500:focus{color:var(--surface-500)!important}.hover\\:text-500:hover,.active\\:text-500:active{color:var(--surface-500)!important}.focus\\:text-600:focus{color:var(--surface-600)!important}.hover\\:text-600:hover,.active\\:text-600:active{color:var(--surface-600)!important}.focus\\:text-700:focus{color:var(--surface-700)!important}.hover\\:text-700:hover,.active\\:text-700:active{color:var(--surface-700)!important}.focus\\:text-800:focus{color:var(--surface-800)!important}.hover\\:text-800:hover,.active\\:text-800:active{color:var(--surface-800)!important}.focus\\:text-900:focus{color:var(--surface-900)!important}.hover\\:text-900:hover,.active\\:text-900:active{color:var(--surface-900)!important}.surface-0{background-color:var(--surface-0)!important}.surface-50{background-color:var(--surface-50)!important}.surface-100{background-color:var(--surface-100)!important}.surface-200{background-color:var(--surface-200)!important}.surface-300{background-color:var(--surface-300)!important}.surface-400{background-color:var(--surface-400)!important}.surface-500{background-color:var(--surface-500)!important}.surface-600{background-color:var(--surface-600)!important}.surface-700{background-color:var(--surface-700)!important}.surface-800{background-color:var(--surface-800)!important}.surface-900{background-color:var(--surface-900)!important}.focus\\:surface-0:focus{background-color:var(--surface-0)!important}.hover\\:surface-0:hover,.active\\:surface-0:active{background-color:var(--surface-0)!important}.focus\\:surface-50:focus{background-color:var(--surface-50)!important}.hover\\:surface-50:hover,.active\\:surface-50:active{background-color:var(--surface-50)!important}.focus\\:surface-100:focus{background-color:var(--surface-100)!important}.hover\\:surface-100:hover,.active\\:surface-100:active{background-color:var(--surface-100)!important}.focus\\:surface-200:focus{background-color:var(--surface-200)!important}.hover\\:surface-200:hover,.active\\:surface-200:active{background-color:var(--surface-200)!important}.focus\\:surface-300:focus{background-color:var(--surface-300)!important}.hover\\:surface-300:hover,.active\\:surface-300:active{background-color:var(--surface-300)!important}.focus\\:surface-400:focus{background-color:var(--surface-400)!important}.hover\\:surface-400:hover,.active\\:surface-400:active{background-color:var(--surface-400)!important}.focus\\:surface-500:focus{background-color:var(--surface-500)!important}.hover\\:surface-500:hover,.active\\:surface-500:active{background-color:var(--surface-500)!important}.focus\\:surface-600:focus{background-color:var(--surface-600)!important}.hover\\:surface-600:hover,.active\\:surface-600:active{background-color:var(--surface-600)!important}.focus\\:surface-700:focus{background-color:var(--surface-700)!important}.hover\\:surface-700:hover,.active\\:surface-700:active{background-color:var(--surface-700)!important}.focus\\:surface-800:focus{background-color:var(--surface-800)!important}.hover\\:surface-800:hover,.active\\:surface-800:active{background-color:var(--surface-800)!important}.focus\\:surface-900:focus{background-color:var(--surface-900)!important}.hover\\:surface-900:hover,.active\\:surface-900:active{background-color:var(--surface-900)!important}.border-0{border-color:var(--surface-0)!important}.border-50{border-color:var(--surface-50)!important}.border-100{border-color:var(--surface-100)!important}.border-200{border-color:var(--surface-200)!important}.border-300{border-color:var(--surface-300)!important}.border-400{border-color:var(--surface-400)!important}.border-500{border-color:var(--surface-500)!important}.border-600{border-color:var(--surface-600)!important}.border-700{border-color:var(--surface-700)!important}.border-800{border-color:var(--surface-800)!important}.border-900{border-color:var(--surface-900)!important}.focus\\:border-0:focus{border-color:var(--surface-0)!important}.hover\\:border-0:hover,.active\\:border-0:active{border-color:var(--surface-0)!important}.focus\\:border-50:focus{border-color:var(--surface-50)!important}.hover\\:border-50:hover,.active\\:border-50:active{border-color:var(--surface-50)!important}.focus\\:border-100:focus{border-color:var(--surface-100)!important}.hover\\:border-100:hover,.active\\:border-100:active{border-color:var(--surface-100)!important}.focus\\:border-200:focus{border-color:var(--surface-200)!important}.hover\\:border-200:hover,.active\\:border-200:active{border-color:var(--surface-200)!important}.focus\\:border-300:focus{border-color:var(--surface-300)!important}.hover\\:border-300:hover,.active\\:border-300:active{border-color:var(--surface-300)!important}.focus\\:border-400:focus{border-color:var(--surface-400)!important}.hover\\:border-400:hover,.active\\:border-400:active{border-color:var(--surface-400)!important}.focus\\:border-500:focus{border-color:var(--surface-500)!important}.hover\\:border-500:hover,.active\\:border-500:active{border-color:var(--surface-500)!important}.focus\\:border-600:focus{border-color:var(--surface-600)!important}.hover\\:border-600:hover,.active\\:border-600:active{border-color:var(--surface-600)!important}.focus\\:border-700:focus{border-color:var(--surface-700)!important}.hover\\:border-700:hover,.active\\:border-700:active{border-color:var(--surface-700)!important}.focus\\:border-800:focus{border-color:var(--surface-800)!important}.hover\\:border-800:hover,.active\\:border-800:active{border-color:var(--surface-800)!important}.focus\\:border-900:focus{border-color:var(--surface-900)!important}.hover\\:border-900:hover,.active\\:border-900:active{border-color:var(--surface-900)!important}.bg-transparent{background-color:transparent!important}@media screen and (min-width: 576px){.sm\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 768px){.md\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:bg-transparent{background-color:transparent!important}}.border-transparent{border-color:transparent!important}@media screen and (min-width: 576px){.sm\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 768px){.md\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:border-transparent{border-color:transparent!important}}.text-blue-50{color:var(--blue-50)!important}.text-blue-100{color:var(--blue-100)!important}.text-blue-200{color:var(--blue-200)!important}.text-blue-300{color:var(--blue-300)!important}.text-blue-400{color:var(--blue-400)!important}.text-blue-500{color:var(--blue-500)!important}.text-blue-600{color:var(--blue-600)!important}.text-blue-700{color:var(--blue-700)!important}.text-blue-800{color:var(--blue-800)!important}.text-blue-900{color:var(--blue-900)!important}.focus\\:text-blue-50:focus{color:var(--blue-50)!important}.focus\\:text-blue-100:focus{color:var(--blue-100)!important}.focus\\:text-blue-200:focus{color:var(--blue-200)!important}.focus\\:text-blue-300:focus{color:var(--blue-300)!important}.focus\\:text-blue-400:focus{color:var(--blue-400)!important}.focus\\:text-blue-500:focus{color:var(--blue-500)!important}.focus\\:text-blue-600:focus{color:var(--blue-600)!important}.focus\\:text-blue-700:focus{color:var(--blue-700)!important}.focus\\:text-blue-800:focus{color:var(--blue-800)!important}.focus\\:text-blue-900:focus{color:var(--blue-900)!important}.hover\\:text-blue-50:hover{color:var(--blue-50)!important}.hover\\:text-blue-100:hover{color:var(--blue-100)!important}.hover\\:text-blue-200:hover{color:var(--blue-200)!important}.hover\\:text-blue-300:hover{color:var(--blue-300)!important}.hover\\:text-blue-400:hover{color:var(--blue-400)!important}.hover\\:text-blue-500:hover{color:var(--blue-500)!important}.hover\\:text-blue-600:hover{color:var(--blue-600)!important}.hover\\:text-blue-700:hover{color:var(--blue-700)!important}.hover\\:text-blue-800:hover{color:var(--blue-800)!important}.hover\\:text-blue-900:hover{color:var(--blue-900)!important}.active\\:text-blue-50:active{color:var(--blue-50)!important}.active\\:text-blue-100:active{color:var(--blue-100)!important}.active\\:text-blue-200:active{color:var(--blue-200)!important}.active\\:text-blue-300:active{color:var(--blue-300)!important}.active\\:text-blue-400:active{color:var(--blue-400)!important}.active\\:text-blue-500:active{color:var(--blue-500)!important}.active\\:text-blue-600:active{color:var(--blue-600)!important}.active\\:text-blue-700:active{color:var(--blue-700)!important}.active\\:text-blue-800:active{color:var(--blue-800)!important}.active\\:text-blue-900:active{color:var(--blue-900)!important}.text-green-50{color:var(--green-50)!important}.text-green-100{color:var(--green-100)!important}.text-green-200{color:var(--green-200)!important}.text-green-300{color:var(--green-300)!important}.text-green-400{color:var(--green-400)!important}.text-green-500{color:var(--green-500)!important}.text-green-600{color:var(--green-600)!important}.text-green-700{color:var(--green-700)!important}.text-green-800{color:var(--green-800)!important}.text-green-900{color:var(--green-900)!important}.focus\\:text-green-50:focus{color:var(--green-50)!important}.focus\\:text-green-100:focus{color:var(--green-100)!important}.focus\\:text-green-200:focus{color:var(--green-200)!important}.focus\\:text-green-300:focus{color:var(--green-300)!important}.focus\\:text-green-400:focus{color:var(--green-400)!important}.focus\\:text-green-500:focus{color:var(--green-500)!important}.focus\\:text-green-600:focus{color:var(--green-600)!important}.focus\\:text-green-700:focus{color:var(--green-700)!important}.focus\\:text-green-800:focus{color:var(--green-800)!important}.focus\\:text-green-900:focus{color:var(--green-900)!important}.hover\\:text-green-50:hover{color:var(--green-50)!important}.hover\\:text-green-100:hover{color:var(--green-100)!important}.hover\\:text-green-200:hover{color:var(--green-200)!important}.hover\\:text-green-300:hover{color:var(--green-300)!important}.hover\\:text-green-400:hover{color:var(--green-400)!important}.hover\\:text-green-500:hover{color:var(--green-500)!important}.hover\\:text-green-600:hover{color:var(--green-600)!important}.hover\\:text-green-700:hover{color:var(--green-700)!important}.hover\\:text-green-800:hover{color:var(--green-800)!important}.hover\\:text-green-900:hover{color:var(--green-900)!important}.active\\:text-green-50:active{color:var(--green-50)!important}.active\\:text-green-100:active{color:var(--green-100)!important}.active\\:text-green-200:active{color:var(--green-200)!important}.active\\:text-green-300:active{color:var(--green-300)!important}.active\\:text-green-400:active{color:var(--green-400)!important}.active\\:text-green-500:active{color:var(--green-500)!important}.active\\:text-green-600:active{color:var(--green-600)!important}.active\\:text-green-700:active{color:var(--green-700)!important}.active\\:text-green-800:active{color:var(--green-800)!important}.active\\:text-green-900:active{color:var(--green-900)!important}.text-yellow-50{color:var(--yellow-50)!important}.text-yellow-100{color:var(--yellow-100)!important}.text-yellow-200{color:var(--yellow-200)!important}.text-yellow-300{color:var(--yellow-300)!important}.text-yellow-400{color:var(--yellow-400)!important}.text-yellow-500{color:var(--yellow-500)!important}.text-yellow-600{color:var(--yellow-600)!important}.text-yellow-700{color:var(--yellow-700)!important}.text-yellow-800{color:var(--yellow-800)!important}.text-yellow-900{color:var(--yellow-900)!important}.focus\\:text-yellow-50:focus{color:var(--yellow-50)!important}.focus\\:text-yellow-100:focus{color:var(--yellow-100)!important}.focus\\:text-yellow-200:focus{color:var(--yellow-200)!important}.focus\\:text-yellow-300:focus{color:var(--yellow-300)!important}.focus\\:text-yellow-400:focus{color:var(--yellow-400)!important}.focus\\:text-yellow-500:focus{color:var(--yellow-500)!important}.focus\\:text-yellow-600:focus{color:var(--yellow-600)!important}.focus\\:text-yellow-700:focus{color:var(--yellow-700)!important}.focus\\:text-yellow-800:focus{color:var(--yellow-800)!important}.focus\\:text-yellow-900:focus{color:var(--yellow-900)!important}.hover\\:text-yellow-50:hover{color:var(--yellow-50)!important}.hover\\:text-yellow-100:hover{color:var(--yellow-100)!important}.hover\\:text-yellow-200:hover{color:var(--yellow-200)!important}.hover\\:text-yellow-300:hover{color:var(--yellow-300)!important}.hover\\:text-yellow-400:hover{color:var(--yellow-400)!important}.hover\\:text-yellow-500:hover{color:var(--yellow-500)!important}.hover\\:text-yellow-600:hover{color:var(--yellow-600)!important}.hover\\:text-yellow-700:hover{color:var(--yellow-700)!important}.hover\\:text-yellow-800:hover{color:var(--yellow-800)!important}.hover\\:text-yellow-900:hover{color:var(--yellow-900)!important}.active\\:text-yellow-50:active{color:var(--yellow-50)!important}.active\\:text-yellow-100:active{color:var(--yellow-100)!important}.active\\:text-yellow-200:active{color:var(--yellow-200)!important}.active\\:text-yellow-300:active{color:var(--yellow-300)!important}.active\\:text-yellow-400:active{color:var(--yellow-400)!important}.active\\:text-yellow-500:active{color:var(--yellow-500)!important}.active\\:text-yellow-600:active{color:var(--yellow-600)!important}.active\\:text-yellow-700:active{color:var(--yellow-700)!important}.active\\:text-yellow-800:active{color:var(--yellow-800)!important}.active\\:text-yellow-900:active{color:var(--yellow-900)!important}.text-cyan-50{color:var(--cyan-50)!important}.text-cyan-100{color:var(--cyan-100)!important}.text-cyan-200{color:var(--cyan-200)!important}.text-cyan-300{color:var(--cyan-300)!important}.text-cyan-400{color:var(--cyan-400)!important}.text-cyan-500{color:var(--cyan-500)!important}.text-cyan-600{color:var(--cyan-600)!important}.text-cyan-700{color:var(--cyan-700)!important}.text-cyan-800{color:var(--cyan-800)!important}.text-cyan-900{color:var(--cyan-900)!important}.focus\\:text-cyan-50:focus{color:var(--cyan-50)!important}.focus\\:text-cyan-100:focus{color:var(--cyan-100)!important}.focus\\:text-cyan-200:focus{color:var(--cyan-200)!important}.focus\\:text-cyan-300:focus{color:var(--cyan-300)!important}.focus\\:text-cyan-400:focus{color:var(--cyan-400)!important}.focus\\:text-cyan-500:focus{color:var(--cyan-500)!important}.focus\\:text-cyan-600:focus{color:var(--cyan-600)!important}.focus\\:text-cyan-700:focus{color:var(--cyan-700)!important}.focus\\:text-cyan-800:focus{color:var(--cyan-800)!important}.focus\\:text-cyan-900:focus{color:var(--cyan-900)!important}.hover\\:text-cyan-50:hover{color:var(--cyan-50)!important}.hover\\:text-cyan-100:hover{color:var(--cyan-100)!important}.hover\\:text-cyan-200:hover{color:var(--cyan-200)!important}.hover\\:text-cyan-300:hover{color:var(--cyan-300)!important}.hover\\:text-cyan-400:hover{color:var(--cyan-400)!important}.hover\\:text-cyan-500:hover{color:var(--cyan-500)!important}.hover\\:text-cyan-600:hover{color:var(--cyan-600)!important}.hover\\:text-cyan-700:hover{color:var(--cyan-700)!important}.hover\\:text-cyan-800:hover{color:var(--cyan-800)!important}.hover\\:text-cyan-900:hover{color:var(--cyan-900)!important}.active\\:text-cyan-50:active{color:var(--cyan-50)!important}.active\\:text-cyan-100:active{color:var(--cyan-100)!important}.active\\:text-cyan-200:active{color:var(--cyan-200)!important}.active\\:text-cyan-300:active{color:var(--cyan-300)!important}.active\\:text-cyan-400:active{color:var(--cyan-400)!important}.active\\:text-cyan-500:active{color:var(--cyan-500)!important}.active\\:text-cyan-600:active{color:var(--cyan-600)!important}.active\\:text-cyan-700:active{color:var(--cyan-700)!important}.active\\:text-cyan-800:active{color:var(--cyan-800)!important}.active\\:text-cyan-900:active{color:var(--cyan-900)!important}.text-pink-50{color:var(--pink-50)!important}.text-pink-100{color:var(--pink-100)!important}.text-pink-200{color:var(--pink-200)!important}.text-pink-300{color:var(--pink-300)!important}.text-pink-400{color:var(--pink-400)!important}.text-pink-500{color:var(--pink-500)!important}.text-pink-600{color:var(--pink-600)!important}.text-pink-700{color:var(--pink-700)!important}.text-pink-800{color:var(--pink-800)!important}.text-pink-900{color:var(--pink-900)!important}.focus\\:text-pink-50:focus{color:var(--pink-50)!important}.focus\\:text-pink-100:focus{color:var(--pink-100)!important}.focus\\:text-pink-200:focus{color:var(--pink-200)!important}.focus\\:text-pink-300:focus{color:var(--pink-300)!important}.focus\\:text-pink-400:focus{color:var(--pink-400)!important}.focus\\:text-pink-500:focus{color:var(--pink-500)!important}.focus\\:text-pink-600:focus{color:var(--pink-600)!important}.focus\\:text-pink-700:focus{color:var(--pink-700)!important}.focus\\:text-pink-800:focus{color:var(--pink-800)!important}.focus\\:text-pink-900:focus{color:var(--pink-900)!important}.hover\\:text-pink-50:hover{color:var(--pink-50)!important}.hover\\:text-pink-100:hover{color:var(--pink-100)!important}.hover\\:text-pink-200:hover{color:var(--pink-200)!important}.hover\\:text-pink-300:hover{color:var(--pink-300)!important}.hover\\:text-pink-400:hover{color:var(--pink-400)!important}.hover\\:text-pink-500:hover{color:var(--pink-500)!important}.hover\\:text-pink-600:hover{color:var(--pink-600)!important}.hover\\:text-pink-700:hover{color:var(--pink-700)!important}.hover\\:text-pink-800:hover{color:var(--pink-800)!important}.hover\\:text-pink-900:hover{color:var(--pink-900)!important}.active\\:text-pink-50:active{color:var(--pink-50)!important}.active\\:text-pink-100:active{color:var(--pink-100)!important}.active\\:text-pink-200:active{color:var(--pink-200)!important}.active\\:text-pink-300:active{color:var(--pink-300)!important}.active\\:text-pink-400:active{color:var(--pink-400)!important}.active\\:text-pink-500:active{color:var(--pink-500)!important}.active\\:text-pink-600:active{color:var(--pink-600)!important}.active\\:text-pink-700:active{color:var(--pink-700)!important}.active\\:text-pink-800:active{color:var(--pink-800)!important}.active\\:text-pink-900:active{color:var(--pink-900)!important}.text-indigo-50{color:var(--indigo-50)!important}.text-indigo-100{color:var(--indigo-100)!important}.text-indigo-200{color:var(--indigo-200)!important}.text-indigo-300{color:var(--indigo-300)!important}.text-indigo-400{color:var(--indigo-400)!important}.text-indigo-500{color:var(--indigo-500)!important}.text-indigo-600{color:var(--indigo-600)!important}.text-indigo-700{color:var(--indigo-700)!important}.text-indigo-800{color:var(--indigo-800)!important}.text-indigo-900{color:var(--indigo-900)!important}.focus\\:text-indigo-50:focus{color:var(--indigo-50)!important}.focus\\:text-indigo-100:focus{color:var(--indigo-100)!important}.focus\\:text-indigo-200:focus{color:var(--indigo-200)!important}.focus\\:text-indigo-300:focus{color:var(--indigo-300)!important}.focus\\:text-indigo-400:focus{color:var(--indigo-400)!important}.focus\\:text-indigo-500:focus{color:var(--indigo-500)!important}.focus\\:text-indigo-600:focus{color:var(--indigo-600)!important}.focus\\:text-indigo-700:focus{color:var(--indigo-700)!important}.focus\\:text-indigo-800:focus{color:var(--indigo-800)!important}.focus\\:text-indigo-900:focus{color:var(--indigo-900)!important}.hover\\:text-indigo-50:hover{color:var(--indigo-50)!important}.hover\\:text-indigo-100:hover{color:var(--indigo-100)!important}.hover\\:text-indigo-200:hover{color:var(--indigo-200)!important}.hover\\:text-indigo-300:hover{color:var(--indigo-300)!important}.hover\\:text-indigo-400:hover{color:var(--indigo-400)!important}.hover\\:text-indigo-500:hover{color:var(--indigo-500)!important}.hover\\:text-indigo-600:hover{color:var(--indigo-600)!important}.hover\\:text-indigo-700:hover{color:var(--indigo-700)!important}.hover\\:text-indigo-800:hover{color:var(--indigo-800)!important}.hover\\:text-indigo-900:hover{color:var(--indigo-900)!important}.active\\:text-indigo-50:active{color:var(--indigo-50)!important}.active\\:text-indigo-100:active{color:var(--indigo-100)!important}.active\\:text-indigo-200:active{color:var(--indigo-200)!important}.active\\:text-indigo-300:active{color:var(--indigo-300)!important}.active\\:text-indigo-400:active{color:var(--indigo-400)!important}.active\\:text-indigo-500:active{color:var(--indigo-500)!important}.active\\:text-indigo-600:active{color:var(--indigo-600)!important}.active\\:text-indigo-700:active{color:var(--indigo-700)!important}.active\\:text-indigo-800:active{color:var(--indigo-800)!important}.active\\:text-indigo-900:active{color:var(--indigo-900)!important}.text-teal-50{color:var(--teal-50)!important}.text-teal-100{color:var(--teal-100)!important}.text-teal-200{color:var(--teal-200)!important}.text-teal-300{color:var(--teal-300)!important}.text-teal-400{color:var(--teal-400)!important}.text-teal-500{color:var(--teal-500)!important}.text-teal-600{color:var(--teal-600)!important}.text-teal-700{color:var(--teal-700)!important}.text-teal-800{color:var(--teal-800)!important}.text-teal-900{color:var(--teal-900)!important}.focus\\:text-teal-50:focus{color:var(--teal-50)!important}.focus\\:text-teal-100:focus{color:var(--teal-100)!important}.focus\\:text-teal-200:focus{color:var(--teal-200)!important}.focus\\:text-teal-300:focus{color:var(--teal-300)!important}.focus\\:text-teal-400:focus{color:var(--teal-400)!important}.focus\\:text-teal-500:focus{color:var(--teal-500)!important}.focus\\:text-teal-600:focus{color:var(--teal-600)!important}.focus\\:text-teal-700:focus{color:var(--teal-700)!important}.focus\\:text-teal-800:focus{color:var(--teal-800)!important}.focus\\:text-teal-900:focus{color:var(--teal-900)!important}.hover\\:text-teal-50:hover{color:var(--teal-50)!important}.hover\\:text-teal-100:hover{color:var(--teal-100)!important}.hover\\:text-teal-200:hover{color:var(--teal-200)!important}.hover\\:text-teal-300:hover{color:var(--teal-300)!important}.hover\\:text-teal-400:hover{color:var(--teal-400)!important}.hover\\:text-teal-500:hover{color:var(--teal-500)!important}.hover\\:text-teal-600:hover{color:var(--teal-600)!important}.hover\\:text-teal-700:hover{color:var(--teal-700)!important}.hover\\:text-teal-800:hover{color:var(--teal-800)!important}.hover\\:text-teal-900:hover{color:var(--teal-900)!important}.active\\:text-teal-50:active{color:var(--teal-50)!important}.active\\:text-teal-100:active{color:var(--teal-100)!important}.active\\:text-teal-200:active{color:var(--teal-200)!important}.active\\:text-teal-300:active{color:var(--teal-300)!important}.active\\:text-teal-400:active{color:var(--teal-400)!important}.active\\:text-teal-500:active{color:var(--teal-500)!important}.active\\:text-teal-600:active{color:var(--teal-600)!important}.active\\:text-teal-700:active{color:var(--teal-700)!important}.active\\:text-teal-800:active{color:var(--teal-800)!important}.active\\:text-teal-900:active{color:var(--teal-900)!important}.text-orange-50{color:var(--orange-50)!important}.text-orange-100{color:var(--orange-100)!important}.text-orange-200{color:var(--orange-200)!important}.text-orange-300{color:var(--orange-300)!important}.text-orange-400{color:var(--orange-400)!important}.text-orange-500{color:var(--orange-500)!important}.text-orange-600{color:var(--orange-600)!important}.text-orange-700{color:var(--orange-700)!important}.text-orange-800{color:var(--orange-800)!important}.text-orange-900{color:var(--orange-900)!important}.focus\\:text-orange-50:focus{color:var(--orange-50)!important}.focus\\:text-orange-100:focus{color:var(--orange-100)!important}.focus\\:text-orange-200:focus{color:var(--orange-200)!important}.focus\\:text-orange-300:focus{color:var(--orange-300)!important}.focus\\:text-orange-400:focus{color:var(--orange-400)!important}.focus\\:text-orange-500:focus{color:var(--orange-500)!important}.focus\\:text-orange-600:focus{color:var(--orange-600)!important}.focus\\:text-orange-700:focus{color:var(--orange-700)!important}.focus\\:text-orange-800:focus{color:var(--orange-800)!important}.focus\\:text-orange-900:focus{color:var(--orange-900)!important}.hover\\:text-orange-50:hover{color:var(--orange-50)!important}.hover\\:text-orange-100:hover{color:var(--orange-100)!important}.hover\\:text-orange-200:hover{color:var(--orange-200)!important}.hover\\:text-orange-300:hover{color:var(--orange-300)!important}.hover\\:text-orange-400:hover{color:var(--orange-400)!important}.hover\\:text-orange-500:hover{color:var(--orange-500)!important}.hover\\:text-orange-600:hover{color:var(--orange-600)!important}.hover\\:text-orange-700:hover{color:var(--orange-700)!important}.hover\\:text-orange-800:hover{color:var(--orange-800)!important}.hover\\:text-orange-900:hover{color:var(--orange-900)!important}.active\\:text-orange-50:active{color:var(--orange-50)!important}.active\\:text-orange-100:active{color:var(--orange-100)!important}.active\\:text-orange-200:active{color:var(--orange-200)!important}.active\\:text-orange-300:active{color:var(--orange-300)!important}.active\\:text-orange-400:active{color:var(--orange-400)!important}.active\\:text-orange-500:active{color:var(--orange-500)!important}.active\\:text-orange-600:active{color:var(--orange-600)!important}.active\\:text-orange-700:active{color:var(--orange-700)!important}.active\\:text-orange-800:active{color:var(--orange-800)!important}.active\\:text-orange-900:active{color:var(--orange-900)!important}.text-bluegray-50{color:var(--bluegray-50)!important}.text-bluegray-100{color:var(--bluegray-100)!important}.text-bluegray-200{color:var(--bluegray-200)!important}.text-bluegray-300{color:var(--bluegray-300)!important}.text-bluegray-400{color:var(--bluegray-400)!important}.text-bluegray-500{color:var(--bluegray-500)!important}.text-bluegray-600{color:var(--bluegray-600)!important}.text-bluegray-700{color:var(--bluegray-700)!important}.text-bluegray-800{color:var(--bluegray-800)!important}.text-bluegray-900{color:var(--bluegray-900)!important}.focus\\:text-bluegray-50:focus{color:var(--bluegray-50)!important}.focus\\:text-bluegray-100:focus{color:var(--bluegray-100)!important}.focus\\:text-bluegray-200:focus{color:var(--bluegray-200)!important}.focus\\:text-bluegray-300:focus{color:var(--bluegray-300)!important}.focus\\:text-bluegray-400:focus{color:var(--bluegray-400)!important}.focus\\:text-bluegray-500:focus{color:var(--bluegray-500)!important}.focus\\:text-bluegray-600:focus{color:var(--bluegray-600)!important}.focus\\:text-bluegray-700:focus{color:var(--bluegray-700)!important}.focus\\:text-bluegray-800:focus{color:var(--bluegray-800)!important}.focus\\:text-bluegray-900:focus{color:var(--bluegray-900)!important}.hover\\:text-bluegray-50:hover{color:var(--bluegray-50)!important}.hover\\:text-bluegray-100:hover{color:var(--bluegray-100)!important}.hover\\:text-bluegray-200:hover{color:var(--bluegray-200)!important}.hover\\:text-bluegray-300:hover{color:var(--bluegray-300)!important}.hover\\:text-bluegray-400:hover{color:var(--bluegray-400)!important}.hover\\:text-bluegray-500:hover{color:var(--bluegray-500)!important}.hover\\:text-bluegray-600:hover{color:var(--bluegray-600)!important}.hover\\:text-bluegray-700:hover{color:var(--bluegray-700)!important}.hover\\:text-bluegray-800:hover{color:var(--bluegray-800)!important}.hover\\:text-bluegray-900:hover{color:var(--bluegray-900)!important}.active\\:text-bluegray-50:active{color:var(--bluegray-50)!important}.active\\:text-bluegray-100:active{color:var(--bluegray-100)!important}.active\\:text-bluegray-200:active{color:var(--bluegray-200)!important}.active\\:text-bluegray-300:active{color:var(--bluegray-300)!important}.active\\:text-bluegray-400:active{color:var(--bluegray-400)!important}.active\\:text-bluegray-500:active{color:var(--bluegray-500)!important}.active\\:text-bluegray-600:active{color:var(--bluegray-600)!important}.active\\:text-bluegray-700:active{color:var(--bluegray-700)!important}.active\\:text-bluegray-800:active{color:var(--bluegray-800)!important}.active\\:text-bluegray-900:active{color:var(--bluegray-900)!important}.text-purple-50{color:var(--purple-50)!important}.text-purple-100{color:var(--purple-100)!important}.text-purple-200{color:var(--purple-200)!important}.text-purple-300{color:var(--purple-300)!important}.text-purple-400{color:var(--purple-400)!important}.text-purple-500{color:var(--purple-500)!important}.text-purple-600{color:var(--purple-600)!important}.text-purple-700{color:var(--purple-700)!important}.text-purple-800{color:var(--purple-800)!important}.text-purple-900{color:var(--purple-900)!important}.focus\\:text-purple-50:focus{color:var(--purple-50)!important}.focus\\:text-purple-100:focus{color:var(--purple-100)!important}.focus\\:text-purple-200:focus{color:var(--purple-200)!important}.focus\\:text-purple-300:focus{color:var(--purple-300)!important}.focus\\:text-purple-400:focus{color:var(--purple-400)!important}.focus\\:text-purple-500:focus{color:var(--purple-500)!important}.focus\\:text-purple-600:focus{color:var(--purple-600)!important}.focus\\:text-purple-700:focus{color:var(--purple-700)!important}.focus\\:text-purple-800:focus{color:var(--purple-800)!important}.focus\\:text-purple-900:focus{color:var(--purple-900)!important}.hover\\:text-purple-50:hover{color:var(--purple-50)!important}.hover\\:text-purple-100:hover{color:var(--purple-100)!important}.hover\\:text-purple-200:hover{color:var(--purple-200)!important}.hover\\:text-purple-300:hover{color:var(--purple-300)!important}.hover\\:text-purple-400:hover{color:var(--purple-400)!important}.hover\\:text-purple-500:hover{color:var(--purple-500)!important}.hover\\:text-purple-600:hover{color:var(--purple-600)!important}.hover\\:text-purple-700:hover{color:var(--purple-700)!important}.hover\\:text-purple-800:hover{color:var(--purple-800)!important}.hover\\:text-purple-900:hover{color:var(--purple-900)!important}.active\\:text-purple-50:active{color:var(--purple-50)!important}.active\\:text-purple-100:active{color:var(--purple-100)!important}.active\\:text-purple-200:active{color:var(--purple-200)!important}.active\\:text-purple-300:active{color:var(--purple-300)!important}.active\\:text-purple-400:active{color:var(--purple-400)!important}.active\\:text-purple-500:active{color:var(--purple-500)!important}.active\\:text-purple-600:active{color:var(--purple-600)!important}.active\\:text-purple-700:active{color:var(--purple-700)!important}.active\\:text-purple-800:active{color:var(--purple-800)!important}.active\\:text-purple-900:active{color:var(--purple-900)!important}.text-gray-50{color:var(--gray-50)!important}.text-gray-100{color:var(--gray-100)!important}.text-gray-200{color:var(--gray-200)!important}.text-gray-300{color:var(--gray-300)!important}.text-gray-400{color:var(--gray-400)!important}.text-gray-500{color:var(--gray-500)!important}.text-gray-600{color:var(--gray-600)!important}.text-gray-700{color:var(--gray-700)!important}.text-gray-800{color:var(--gray-800)!important}.text-gray-900{color:var(--gray-900)!important}.focus\\:text-gray-50:focus{color:var(--gray-50)!important}.focus\\:text-gray-100:focus{color:var(--gray-100)!important}.focus\\:text-gray-200:focus{color:var(--gray-200)!important}.focus\\:text-gray-300:focus{color:var(--gray-300)!important}.focus\\:text-gray-400:focus{color:var(--gray-400)!important}.focus\\:text-gray-500:focus{color:var(--gray-500)!important}.focus\\:text-gray-600:focus{color:var(--gray-600)!important}.focus\\:text-gray-700:focus{color:var(--gray-700)!important}.focus\\:text-gray-800:focus{color:var(--gray-800)!important}.focus\\:text-gray-900:focus{color:var(--gray-900)!important}.hover\\:text-gray-50:hover{color:var(--gray-50)!important}.hover\\:text-gray-100:hover{color:var(--gray-100)!important}.hover\\:text-gray-200:hover{color:var(--gray-200)!important}.hover\\:text-gray-300:hover{color:var(--gray-300)!important}.hover\\:text-gray-400:hover{color:var(--gray-400)!important}.hover\\:text-gray-500:hover{color:var(--gray-500)!important}.hover\\:text-gray-600:hover{color:var(--gray-600)!important}.hover\\:text-gray-700:hover{color:var(--gray-700)!important}.hover\\:text-gray-800:hover{color:var(--gray-800)!important}.hover\\:text-gray-900:hover{color:var(--gray-900)!important}.active\\:text-gray-50:active{color:var(--gray-50)!important}.active\\:text-gray-100:active{color:var(--gray-100)!important}.active\\:text-gray-200:active{color:var(--gray-200)!important}.active\\:text-gray-300:active{color:var(--gray-300)!important}.active\\:text-gray-400:active{color:var(--gray-400)!important}.active\\:text-gray-500:active{color:var(--gray-500)!important}.active\\:text-gray-600:active{color:var(--gray-600)!important}.active\\:text-gray-700:active{color:var(--gray-700)!important}.active\\:text-gray-800:active{color:var(--gray-800)!important}.active\\:text-gray-900:active{color:var(--gray-900)!important}.text-red-50{color:var(--red-50)!important}.text-red-100{color:var(--red-100)!important}.text-red-200{color:var(--red-200)!important}.text-red-300{color:var(--red-300)!important}.text-red-400{color:var(--red-400)!important}.text-red-500{color:var(--red-500)!important}.text-red-600{color:var(--red-600)!important}.text-red-700{color:var(--red-700)!important}.text-red-800{color:var(--red-800)!important}.text-red-900{color:var(--red-900)!important}.focus\\:text-red-50:focus{color:var(--red-50)!important}.focus\\:text-red-100:focus{color:var(--red-100)!important}.focus\\:text-red-200:focus{color:var(--red-200)!important}.focus\\:text-red-300:focus{color:var(--red-300)!important}.focus\\:text-red-400:focus{color:var(--red-400)!important}.focus\\:text-red-500:focus{color:var(--red-500)!important}.focus\\:text-red-600:focus{color:var(--red-600)!important}.focus\\:text-red-700:focus{color:var(--red-700)!important}.focus\\:text-red-800:focus{color:var(--red-800)!important}.focus\\:text-red-900:focus{color:var(--red-900)!important}.hover\\:text-red-50:hover{color:var(--red-50)!important}.hover\\:text-red-100:hover{color:var(--red-100)!important}.hover\\:text-red-200:hover{color:var(--red-200)!important}.hover\\:text-red-300:hover{color:var(--red-300)!important}.hover\\:text-red-400:hover{color:var(--red-400)!important}.hover\\:text-red-500:hover{color:var(--red-500)!important}.hover\\:text-red-600:hover{color:var(--red-600)!important}.hover\\:text-red-700:hover{color:var(--red-700)!important}.hover\\:text-red-800:hover{color:var(--red-800)!important}.hover\\:text-red-900:hover{color:var(--red-900)!important}.active\\:text-red-50:active{color:var(--red-50)!important}.active\\:text-red-100:active{color:var(--red-100)!important}.active\\:text-red-200:active{color:var(--red-200)!important}.active\\:text-red-300:active{color:var(--red-300)!important}.active\\:text-red-400:active{color:var(--red-400)!important}.active\\:text-red-500:active{color:var(--red-500)!important}.active\\:text-red-600:active{color:var(--red-600)!important}.active\\:text-red-700:active{color:var(--red-700)!important}.active\\:text-red-800:active{color:var(--red-800)!important}.active\\:text-red-900:active{color:var(--red-900)!important}.text-primary-50{color:var(--primary-50)!important}.text-primary-100{color:var(--primary-100)!important}.text-primary-200{color:var(--primary-200)!important}.text-primary-300{color:var(--primary-300)!important}.text-primary-400{color:var(--primary-400)!important}.text-primary-500{color:var(--primary-500)!important}.text-primary-600{color:var(--primary-600)!important}.text-primary-700{color:var(--primary-700)!important}.text-primary-800{color:var(--primary-800)!important}.text-primary-900{color:var(--primary-900)!important}.focus\\:text-primary-50:focus{color:var(--primary-50)!important}.focus\\:text-primary-100:focus{color:var(--primary-100)!important}.focus\\:text-primary-200:focus{color:var(--primary-200)!important}.focus\\:text-primary-300:focus{color:var(--primary-300)!important}.focus\\:text-primary-400:focus{color:var(--primary-400)!important}.focus\\:text-primary-500:focus{color:var(--primary-500)!important}.focus\\:text-primary-600:focus{color:var(--primary-600)!important}.focus\\:text-primary-700:focus{color:var(--primary-700)!important}.focus\\:text-primary-800:focus{color:var(--primary-800)!important}.focus\\:text-primary-900:focus{color:var(--primary-900)!important}.hover\\:text-primary-50:hover{color:var(--primary-50)!important}.hover\\:text-primary-100:hover{color:var(--primary-100)!important}.hover\\:text-primary-200:hover{color:var(--primary-200)!important}.hover\\:text-primary-300:hover{color:var(--primary-300)!important}.hover\\:text-primary-400:hover{color:var(--primary-400)!important}.hover\\:text-primary-500:hover{color:var(--primary-500)!important}.hover\\:text-primary-600:hover{color:var(--primary-600)!important}.hover\\:text-primary-700:hover{color:var(--primary-700)!important}.hover\\:text-primary-800:hover{color:var(--primary-800)!important}.hover\\:text-primary-900:hover{color:var(--primary-900)!important}.active\\:text-primary-50:active{color:var(--primary-50)!important}.active\\:text-primary-100:active{color:var(--primary-100)!important}.active\\:text-primary-200:active{color:var(--primary-200)!important}.active\\:text-primary-300:active{color:var(--primary-300)!important}.active\\:text-primary-400:active{color:var(--primary-400)!important}.active\\:text-primary-500:active{color:var(--primary-500)!important}.active\\:text-primary-600:active{color:var(--primary-600)!important}.active\\:text-primary-700:active{color:var(--primary-700)!important}.active\\:text-primary-800:active{color:var(--primary-800)!important}.active\\:text-primary-900:active{color:var(--primary-900)!important}.bg-blue-50{background-color:var(--blue-50)!important}.bg-blue-100{background-color:var(--blue-100)!important}.bg-blue-200{background-color:var(--blue-200)!important}.bg-blue-300{background-color:var(--blue-300)!important}.bg-blue-400{background-color:var(--blue-400)!important}.bg-blue-500{background-color:var(--blue-500)!important}.bg-blue-600{background-color:var(--blue-600)!important}.bg-blue-700{background-color:var(--blue-700)!important}.bg-blue-800{background-color:var(--blue-800)!important}.bg-blue-900{background-color:var(--blue-900)!important}.focus\\:bg-blue-50:focus{background-color:var(--blue-50)!important}.focus\\:bg-blue-100:focus{background-color:var(--blue-100)!important}.focus\\:bg-blue-200:focus{background-color:var(--blue-200)!important}.focus\\:bg-blue-300:focus{background-color:var(--blue-300)!important}.focus\\:bg-blue-400:focus{background-color:var(--blue-400)!important}.focus\\:bg-blue-500:focus{background-color:var(--blue-500)!important}.focus\\:bg-blue-600:focus{background-color:var(--blue-600)!important}.focus\\:bg-blue-700:focus{background-color:var(--blue-700)!important}.focus\\:bg-blue-800:focus{background-color:var(--blue-800)!important}.focus\\:bg-blue-900:focus{background-color:var(--blue-900)!important}.hover\\:bg-blue-50:hover{background-color:var(--blue-50)!important}.hover\\:bg-blue-100:hover{background-color:var(--blue-100)!important}.hover\\:bg-blue-200:hover{background-color:var(--blue-200)!important}.hover\\:bg-blue-300:hover{background-color:var(--blue-300)!important}.hover\\:bg-blue-400:hover{background-color:var(--blue-400)!important}.hover\\:bg-blue-500:hover{background-color:var(--blue-500)!important}.hover\\:bg-blue-600:hover{background-color:var(--blue-600)!important}.hover\\:bg-blue-700:hover{background-color:var(--blue-700)!important}.hover\\:bg-blue-800:hover{background-color:var(--blue-800)!important}.hover\\:bg-blue-900:hover{background-color:var(--blue-900)!important}.active\\:bg-blue-50:active{background-color:var(--blue-50)!important}.active\\:bg-blue-100:active{background-color:var(--blue-100)!important}.active\\:bg-blue-200:active{background-color:var(--blue-200)!important}.active\\:bg-blue-300:active{background-color:var(--blue-300)!important}.active\\:bg-blue-400:active{background-color:var(--blue-400)!important}.active\\:bg-blue-500:active{background-color:var(--blue-500)!important}.active\\:bg-blue-600:active{background-color:var(--blue-600)!important}.active\\:bg-blue-700:active{background-color:var(--blue-700)!important}.active\\:bg-blue-800:active{background-color:var(--blue-800)!important}.active\\:bg-blue-900:active{background-color:var(--blue-900)!important}.bg-green-50{background-color:var(--green-50)!important}.bg-green-100{background-color:var(--green-100)!important}.bg-green-200{background-color:var(--green-200)!important}.bg-green-300{background-color:var(--green-300)!important}.bg-green-400{background-color:var(--green-400)!important}.bg-green-500{background-color:var(--green-500)!important}.bg-green-600{background-color:var(--green-600)!important}.bg-green-700{background-color:var(--green-700)!important}.bg-green-800{background-color:var(--green-800)!important}.bg-green-900{background-color:var(--green-900)!important}.focus\\:bg-green-50:focus{background-color:var(--green-50)!important}.focus\\:bg-green-100:focus{background-color:var(--green-100)!important}.focus\\:bg-green-200:focus{background-color:var(--green-200)!important}.focus\\:bg-green-300:focus{background-color:var(--green-300)!important}.focus\\:bg-green-400:focus{background-color:var(--green-400)!important}.focus\\:bg-green-500:focus{background-color:var(--green-500)!important}.focus\\:bg-green-600:focus{background-color:var(--green-600)!important}.focus\\:bg-green-700:focus{background-color:var(--green-700)!important}.focus\\:bg-green-800:focus{background-color:var(--green-800)!important}.focus\\:bg-green-900:focus{background-color:var(--green-900)!important}.hover\\:bg-green-50:hover{background-color:var(--green-50)!important}.hover\\:bg-green-100:hover{background-color:var(--green-100)!important}.hover\\:bg-green-200:hover{background-color:var(--green-200)!important}.hover\\:bg-green-300:hover{background-color:var(--green-300)!important}.hover\\:bg-green-400:hover{background-color:var(--green-400)!important}.hover\\:bg-green-500:hover{background-color:var(--green-500)!important}.hover\\:bg-green-600:hover{background-color:var(--green-600)!important}.hover\\:bg-green-700:hover{background-color:var(--green-700)!important}.hover\\:bg-green-800:hover{background-color:var(--green-800)!important}.hover\\:bg-green-900:hover{background-color:var(--green-900)!important}.active\\:bg-green-50:active{background-color:var(--green-50)!important}.active\\:bg-green-100:active{background-color:var(--green-100)!important}.active\\:bg-green-200:active{background-color:var(--green-200)!important}.active\\:bg-green-300:active{background-color:var(--green-300)!important}.active\\:bg-green-400:active{background-color:var(--green-400)!important}.active\\:bg-green-500:active{background-color:var(--green-500)!important}.active\\:bg-green-600:active{background-color:var(--green-600)!important}.active\\:bg-green-700:active{background-color:var(--green-700)!important}.active\\:bg-green-800:active{background-color:var(--green-800)!important}.active\\:bg-green-900:active{background-color:var(--green-900)!important}.bg-yellow-50{background-color:var(--yellow-50)!important}.bg-yellow-100{background-color:var(--yellow-100)!important}.bg-yellow-200{background-color:var(--yellow-200)!important}.bg-yellow-300{background-color:var(--yellow-300)!important}.bg-yellow-400{background-color:var(--yellow-400)!important}.bg-yellow-500{background-color:var(--yellow-500)!important}.bg-yellow-600{background-color:var(--yellow-600)!important}.bg-yellow-700{background-color:var(--yellow-700)!important}.bg-yellow-800{background-color:var(--yellow-800)!important}.bg-yellow-900{background-color:var(--yellow-900)!important}.focus\\:bg-yellow-50:focus{background-color:var(--yellow-50)!important}.focus\\:bg-yellow-100:focus{background-color:var(--yellow-100)!important}.focus\\:bg-yellow-200:focus{background-color:var(--yellow-200)!important}.focus\\:bg-yellow-300:focus{background-color:var(--yellow-300)!important}.focus\\:bg-yellow-400:focus{background-color:var(--yellow-400)!important}.focus\\:bg-yellow-500:focus{background-color:var(--yellow-500)!important}.focus\\:bg-yellow-600:focus{background-color:var(--yellow-600)!important}.focus\\:bg-yellow-700:focus{background-color:var(--yellow-700)!important}.focus\\:bg-yellow-800:focus{background-color:var(--yellow-800)!important}.focus\\:bg-yellow-900:focus{background-color:var(--yellow-900)!important}.hover\\:bg-yellow-50:hover{background-color:var(--yellow-50)!important}.hover\\:bg-yellow-100:hover{background-color:var(--yellow-100)!important}.hover\\:bg-yellow-200:hover{background-color:var(--yellow-200)!important}.hover\\:bg-yellow-300:hover{background-color:var(--yellow-300)!important}.hover\\:bg-yellow-400:hover{background-color:var(--yellow-400)!important}.hover\\:bg-yellow-500:hover{background-color:var(--yellow-500)!important}.hover\\:bg-yellow-600:hover{background-color:var(--yellow-600)!important}.hover\\:bg-yellow-700:hover{background-color:var(--yellow-700)!important}.hover\\:bg-yellow-800:hover{background-color:var(--yellow-800)!important}.hover\\:bg-yellow-900:hover{background-color:var(--yellow-900)!important}.active\\:bg-yellow-50:active{background-color:var(--yellow-50)!important}.active\\:bg-yellow-100:active{background-color:var(--yellow-100)!important}.active\\:bg-yellow-200:active{background-color:var(--yellow-200)!important}.active\\:bg-yellow-300:active{background-color:var(--yellow-300)!important}.active\\:bg-yellow-400:active{background-color:var(--yellow-400)!important}.active\\:bg-yellow-500:active{background-color:var(--yellow-500)!important}.active\\:bg-yellow-600:active{background-color:var(--yellow-600)!important}.active\\:bg-yellow-700:active{background-color:var(--yellow-700)!important}.active\\:bg-yellow-800:active{background-color:var(--yellow-800)!important}.active\\:bg-yellow-900:active{background-color:var(--yellow-900)!important}.bg-cyan-50{background-color:var(--cyan-50)!important}.bg-cyan-100{background-color:var(--cyan-100)!important}.bg-cyan-200{background-color:var(--cyan-200)!important}.bg-cyan-300{background-color:var(--cyan-300)!important}.bg-cyan-400{background-color:var(--cyan-400)!important}.bg-cyan-500{background-color:var(--cyan-500)!important}.bg-cyan-600{background-color:var(--cyan-600)!important}.bg-cyan-700{background-color:var(--cyan-700)!important}.bg-cyan-800{background-color:var(--cyan-800)!important}.bg-cyan-900{background-color:var(--cyan-900)!important}.focus\\:bg-cyan-50:focus{background-color:var(--cyan-50)!important}.focus\\:bg-cyan-100:focus{background-color:var(--cyan-100)!important}.focus\\:bg-cyan-200:focus{background-color:var(--cyan-200)!important}.focus\\:bg-cyan-300:focus{background-color:var(--cyan-300)!important}.focus\\:bg-cyan-400:focus{background-color:var(--cyan-400)!important}.focus\\:bg-cyan-500:focus{background-color:var(--cyan-500)!important}.focus\\:bg-cyan-600:focus{background-color:var(--cyan-600)!important}.focus\\:bg-cyan-700:focus{background-color:var(--cyan-700)!important}.focus\\:bg-cyan-800:focus{background-color:var(--cyan-800)!important}.focus\\:bg-cyan-900:focus{background-color:var(--cyan-900)!important}.hover\\:bg-cyan-50:hover{background-color:var(--cyan-50)!important}.hover\\:bg-cyan-100:hover{background-color:var(--cyan-100)!important}.hover\\:bg-cyan-200:hover{background-color:var(--cyan-200)!important}.hover\\:bg-cyan-300:hover{background-color:var(--cyan-300)!important}.hover\\:bg-cyan-400:hover{background-color:var(--cyan-400)!important}.hover\\:bg-cyan-500:hover{background-color:var(--cyan-500)!important}.hover\\:bg-cyan-600:hover{background-color:var(--cyan-600)!important}.hover\\:bg-cyan-700:hover{background-color:var(--cyan-700)!important}.hover\\:bg-cyan-800:hover{background-color:var(--cyan-800)!important}.hover\\:bg-cyan-900:hover{background-color:var(--cyan-900)!important}.active\\:bg-cyan-50:active{background-color:var(--cyan-50)!important}.active\\:bg-cyan-100:active{background-color:var(--cyan-100)!important}.active\\:bg-cyan-200:active{background-color:var(--cyan-200)!important}.active\\:bg-cyan-300:active{background-color:var(--cyan-300)!important}.active\\:bg-cyan-400:active{background-color:var(--cyan-400)!important}.active\\:bg-cyan-500:active{background-color:var(--cyan-500)!important}.active\\:bg-cyan-600:active{background-color:var(--cyan-600)!important}.active\\:bg-cyan-700:active{background-color:var(--cyan-700)!important}.active\\:bg-cyan-800:active{background-color:var(--cyan-800)!important}.active\\:bg-cyan-900:active{background-color:var(--cyan-900)!important}.bg-pink-50{background-color:var(--pink-50)!important}.bg-pink-100{background-color:var(--pink-100)!important}.bg-pink-200{background-color:var(--pink-200)!important}.bg-pink-300{background-color:var(--pink-300)!important}.bg-pink-400{background-color:var(--pink-400)!important}.bg-pink-500{background-color:var(--pink-500)!important}.bg-pink-600{background-color:var(--pink-600)!important}.bg-pink-700{background-color:var(--pink-700)!important}.bg-pink-800{background-color:var(--pink-800)!important}.bg-pink-900{background-color:var(--pink-900)!important}.focus\\:bg-pink-50:focus{background-color:var(--pink-50)!important}.focus\\:bg-pink-100:focus{background-color:var(--pink-100)!important}.focus\\:bg-pink-200:focus{background-color:var(--pink-200)!important}.focus\\:bg-pink-300:focus{background-color:var(--pink-300)!important}.focus\\:bg-pink-400:focus{background-color:var(--pink-400)!important}.focus\\:bg-pink-500:focus{background-color:var(--pink-500)!important}.focus\\:bg-pink-600:focus{background-color:var(--pink-600)!important}.focus\\:bg-pink-700:focus{background-color:var(--pink-700)!important}.focus\\:bg-pink-800:focus{background-color:var(--pink-800)!important}.focus\\:bg-pink-900:focus{background-color:var(--pink-900)!important}.hover\\:bg-pink-50:hover{background-color:var(--pink-50)!important}.hover\\:bg-pink-100:hover{background-color:var(--pink-100)!important}.hover\\:bg-pink-200:hover{background-color:var(--pink-200)!important}.hover\\:bg-pink-300:hover{background-color:var(--pink-300)!important}.hover\\:bg-pink-400:hover{background-color:var(--pink-400)!important}.hover\\:bg-pink-500:hover{background-color:var(--pink-500)!important}.hover\\:bg-pink-600:hover{background-color:var(--pink-600)!important}.hover\\:bg-pink-700:hover{background-color:var(--pink-700)!important}.hover\\:bg-pink-800:hover{background-color:var(--pink-800)!important}.hover\\:bg-pink-900:hover{background-color:var(--pink-900)!important}.active\\:bg-pink-50:active{background-color:var(--pink-50)!important}.active\\:bg-pink-100:active{background-color:var(--pink-100)!important}.active\\:bg-pink-200:active{background-color:var(--pink-200)!important}.active\\:bg-pink-300:active{background-color:var(--pink-300)!important}.active\\:bg-pink-400:active{background-color:var(--pink-400)!important}.active\\:bg-pink-500:active{background-color:var(--pink-500)!important}.active\\:bg-pink-600:active{background-color:var(--pink-600)!important}.active\\:bg-pink-700:active{background-color:var(--pink-700)!important}.active\\:bg-pink-800:active{background-color:var(--pink-800)!important}.active\\:bg-pink-900:active{background-color:var(--pink-900)!important}.bg-indigo-50{background-color:var(--indigo-50)!important}.bg-indigo-100{background-color:var(--indigo-100)!important}.bg-indigo-200{background-color:var(--indigo-200)!important}.bg-indigo-300{background-color:var(--indigo-300)!important}.bg-indigo-400{background-color:var(--indigo-400)!important}.bg-indigo-500{background-color:var(--indigo-500)!important}.bg-indigo-600{background-color:var(--indigo-600)!important}.bg-indigo-700{background-color:var(--indigo-700)!important}.bg-indigo-800{background-color:var(--indigo-800)!important}.bg-indigo-900{background-color:var(--indigo-900)!important}.focus\\:bg-indigo-50:focus{background-color:var(--indigo-50)!important}.focus\\:bg-indigo-100:focus{background-color:var(--indigo-100)!important}.focus\\:bg-indigo-200:focus{background-color:var(--indigo-200)!important}.focus\\:bg-indigo-300:focus{background-color:var(--indigo-300)!important}.focus\\:bg-indigo-400:focus{background-color:var(--indigo-400)!important}.focus\\:bg-indigo-500:focus{background-color:var(--indigo-500)!important}.focus\\:bg-indigo-600:focus{background-color:var(--indigo-600)!important}.focus\\:bg-indigo-700:focus{background-color:var(--indigo-700)!important}.focus\\:bg-indigo-800:focus{background-color:var(--indigo-800)!important}.focus\\:bg-indigo-900:focus{background-color:var(--indigo-900)!important}.hover\\:bg-indigo-50:hover{background-color:var(--indigo-50)!important}.hover\\:bg-indigo-100:hover{background-color:var(--indigo-100)!important}.hover\\:bg-indigo-200:hover{background-color:var(--indigo-200)!important}.hover\\:bg-indigo-300:hover{background-color:var(--indigo-300)!important}.hover\\:bg-indigo-400:hover{background-color:var(--indigo-400)!important}.hover\\:bg-indigo-500:hover{background-color:var(--indigo-500)!important}.hover\\:bg-indigo-600:hover{background-color:var(--indigo-600)!important}.hover\\:bg-indigo-700:hover{background-color:var(--indigo-700)!important}.hover\\:bg-indigo-800:hover{background-color:var(--indigo-800)!important}.hover\\:bg-indigo-900:hover{background-color:var(--indigo-900)!important}.active\\:bg-indigo-50:active{background-color:var(--indigo-50)!important}.active\\:bg-indigo-100:active{background-color:var(--indigo-100)!important}.active\\:bg-indigo-200:active{background-color:var(--indigo-200)!important}.active\\:bg-indigo-300:active{background-color:var(--indigo-300)!important}.active\\:bg-indigo-400:active{background-color:var(--indigo-400)!important}.active\\:bg-indigo-500:active{background-color:var(--indigo-500)!important}.active\\:bg-indigo-600:active{background-color:var(--indigo-600)!important}.active\\:bg-indigo-700:active{background-color:var(--indigo-700)!important}.active\\:bg-indigo-800:active{background-color:var(--indigo-800)!important}.active\\:bg-indigo-900:active{background-color:var(--indigo-900)!important}.bg-teal-50{background-color:var(--teal-50)!important}.bg-teal-100{background-color:var(--teal-100)!important}.bg-teal-200{background-color:var(--teal-200)!important}.bg-teal-300{background-color:var(--teal-300)!important}.bg-teal-400{background-color:var(--teal-400)!important}.bg-teal-500{background-color:var(--teal-500)!important}.bg-teal-600{background-color:var(--teal-600)!important}.bg-teal-700{background-color:var(--teal-700)!important}.bg-teal-800{background-color:var(--teal-800)!important}.bg-teal-900{background-color:var(--teal-900)!important}.focus\\:bg-teal-50:focus{background-color:var(--teal-50)!important}.focus\\:bg-teal-100:focus{background-color:var(--teal-100)!important}.focus\\:bg-teal-200:focus{background-color:var(--teal-200)!important}.focus\\:bg-teal-300:focus{background-color:var(--teal-300)!important}.focus\\:bg-teal-400:focus{background-color:var(--teal-400)!important}.focus\\:bg-teal-500:focus{background-color:var(--teal-500)!important}.focus\\:bg-teal-600:focus{background-color:var(--teal-600)!important}.focus\\:bg-teal-700:focus{background-color:var(--teal-700)!important}.focus\\:bg-teal-800:focus{background-color:var(--teal-800)!important}.focus\\:bg-teal-900:focus{background-color:var(--teal-900)!important}.hover\\:bg-teal-50:hover{background-color:var(--teal-50)!important}.hover\\:bg-teal-100:hover{background-color:var(--teal-100)!important}.hover\\:bg-teal-200:hover{background-color:var(--teal-200)!important}.hover\\:bg-teal-300:hover{background-color:var(--teal-300)!important}.hover\\:bg-teal-400:hover{background-color:var(--teal-400)!important}.hover\\:bg-teal-500:hover{background-color:var(--teal-500)!important}.hover\\:bg-teal-600:hover{background-color:var(--teal-600)!important}.hover\\:bg-teal-700:hover{background-color:var(--teal-700)!important}.hover\\:bg-teal-800:hover{background-color:var(--teal-800)!important}.hover\\:bg-teal-900:hover{background-color:var(--teal-900)!important}.active\\:bg-teal-50:active{background-color:var(--teal-50)!important}.active\\:bg-teal-100:active{background-color:var(--teal-100)!important}.active\\:bg-teal-200:active{background-color:var(--teal-200)!important}.active\\:bg-teal-300:active{background-color:var(--teal-300)!important}.active\\:bg-teal-400:active{background-color:var(--teal-400)!important}.active\\:bg-teal-500:active{background-color:var(--teal-500)!important}.active\\:bg-teal-600:active{background-color:var(--teal-600)!important}.active\\:bg-teal-700:active{background-color:var(--teal-700)!important}.active\\:bg-teal-800:active{background-color:var(--teal-800)!important}.active\\:bg-teal-900:active{background-color:var(--teal-900)!important}.bg-orange-50{background-color:var(--orange-50)!important}.bg-orange-100{background-color:var(--orange-100)!important}.bg-orange-200{background-color:var(--orange-200)!important}.bg-orange-300{background-color:var(--orange-300)!important}.bg-orange-400{background-color:var(--orange-400)!important}.bg-orange-500{background-color:var(--orange-500)!important}.bg-orange-600{background-color:var(--orange-600)!important}.bg-orange-700{background-color:var(--orange-700)!important}.bg-orange-800{background-color:var(--orange-800)!important}.bg-orange-900{background-color:var(--orange-900)!important}.focus\\:bg-orange-50:focus{background-color:var(--orange-50)!important}.focus\\:bg-orange-100:focus{background-color:var(--orange-100)!important}.focus\\:bg-orange-200:focus{background-color:var(--orange-200)!important}.focus\\:bg-orange-300:focus{background-color:var(--orange-300)!important}.focus\\:bg-orange-400:focus{background-color:var(--orange-400)!important}.focus\\:bg-orange-500:focus{background-color:var(--orange-500)!important}.focus\\:bg-orange-600:focus{background-color:var(--orange-600)!important}.focus\\:bg-orange-700:focus{background-color:var(--orange-700)!important}.focus\\:bg-orange-800:focus{background-color:var(--orange-800)!important}.focus\\:bg-orange-900:focus{background-color:var(--orange-900)!important}.hover\\:bg-orange-50:hover{background-color:var(--orange-50)!important}.hover\\:bg-orange-100:hover{background-color:var(--orange-100)!important}.hover\\:bg-orange-200:hover{background-color:var(--orange-200)!important}.hover\\:bg-orange-300:hover{background-color:var(--orange-300)!important}.hover\\:bg-orange-400:hover{background-color:var(--orange-400)!important}.hover\\:bg-orange-500:hover{background-color:var(--orange-500)!important}.hover\\:bg-orange-600:hover{background-color:var(--orange-600)!important}.hover\\:bg-orange-700:hover{background-color:var(--orange-700)!important}.hover\\:bg-orange-800:hover{background-color:var(--orange-800)!important}.hover\\:bg-orange-900:hover{background-color:var(--orange-900)!important}.active\\:bg-orange-50:active{background-color:var(--orange-50)!important}.active\\:bg-orange-100:active{background-color:var(--orange-100)!important}.active\\:bg-orange-200:active{background-color:var(--orange-200)!important}.active\\:bg-orange-300:active{background-color:var(--orange-300)!important}.active\\:bg-orange-400:active{background-color:var(--orange-400)!important}.active\\:bg-orange-500:active{background-color:var(--orange-500)!important}.active\\:bg-orange-600:active{background-color:var(--orange-600)!important}.active\\:bg-orange-700:active{background-color:var(--orange-700)!important}.active\\:bg-orange-800:active{background-color:var(--orange-800)!important}.active\\:bg-orange-900:active{background-color:var(--orange-900)!important}.bg-bluegray-50{background-color:var(--bluegray-50)!important}.bg-bluegray-100{background-color:var(--bluegray-100)!important}.bg-bluegray-200{background-color:var(--bluegray-200)!important}.bg-bluegray-300{background-color:var(--bluegray-300)!important}.bg-bluegray-400{background-color:var(--bluegray-400)!important}.bg-bluegray-500{background-color:var(--bluegray-500)!important}.bg-bluegray-600{background-color:var(--bluegray-600)!important}.bg-bluegray-700{background-color:var(--bluegray-700)!important}.bg-bluegray-800{background-color:var(--bluegray-800)!important}.bg-bluegray-900{background-color:var(--bluegray-900)!important}.focus\\:bg-bluegray-50:focus{background-color:var(--bluegray-50)!important}.focus\\:bg-bluegray-100:focus{background-color:var(--bluegray-100)!important}.focus\\:bg-bluegray-200:focus{background-color:var(--bluegray-200)!important}.focus\\:bg-bluegray-300:focus{background-color:var(--bluegray-300)!important}.focus\\:bg-bluegray-400:focus{background-color:var(--bluegray-400)!important}.focus\\:bg-bluegray-500:focus{background-color:var(--bluegray-500)!important}.focus\\:bg-bluegray-600:focus{background-color:var(--bluegray-600)!important}.focus\\:bg-bluegray-700:focus{background-color:var(--bluegray-700)!important}.focus\\:bg-bluegray-800:focus{background-color:var(--bluegray-800)!important}.focus\\:bg-bluegray-900:focus{background-color:var(--bluegray-900)!important}.hover\\:bg-bluegray-50:hover{background-color:var(--bluegray-50)!important}.hover\\:bg-bluegray-100:hover{background-color:var(--bluegray-100)!important}.hover\\:bg-bluegray-200:hover{background-color:var(--bluegray-200)!important}.hover\\:bg-bluegray-300:hover{background-color:var(--bluegray-300)!important}.hover\\:bg-bluegray-400:hover{background-color:var(--bluegray-400)!important}.hover\\:bg-bluegray-500:hover{background-color:var(--bluegray-500)!important}.hover\\:bg-bluegray-600:hover{background-color:var(--bluegray-600)!important}.hover\\:bg-bluegray-700:hover{background-color:var(--bluegray-700)!important}.hover\\:bg-bluegray-800:hover{background-color:var(--bluegray-800)!important}.hover\\:bg-bluegray-900:hover{background-color:var(--bluegray-900)!important}.active\\:bg-bluegray-50:active{background-color:var(--bluegray-50)!important}.active\\:bg-bluegray-100:active{background-color:var(--bluegray-100)!important}.active\\:bg-bluegray-200:active{background-color:var(--bluegray-200)!important}.active\\:bg-bluegray-300:active{background-color:var(--bluegray-300)!important}.active\\:bg-bluegray-400:active{background-color:var(--bluegray-400)!important}.active\\:bg-bluegray-500:active{background-color:var(--bluegray-500)!important}.active\\:bg-bluegray-600:active{background-color:var(--bluegray-600)!important}.active\\:bg-bluegray-700:active{background-color:var(--bluegray-700)!important}.active\\:bg-bluegray-800:active{background-color:var(--bluegray-800)!important}.active\\:bg-bluegray-900:active{background-color:var(--bluegray-900)!important}.bg-purple-50{background-color:var(--purple-50)!important}.bg-purple-100{background-color:var(--purple-100)!important}.bg-purple-200{background-color:var(--purple-200)!important}.bg-purple-300{background-color:var(--purple-300)!important}.bg-purple-400{background-color:var(--purple-400)!important}.bg-purple-500{background-color:var(--purple-500)!important}.bg-purple-600{background-color:var(--purple-600)!important}.bg-purple-700{background-color:var(--purple-700)!important}.bg-purple-800{background-color:var(--purple-800)!important}.bg-purple-900{background-color:var(--purple-900)!important}.focus\\:bg-purple-50:focus{background-color:var(--purple-50)!important}.focus\\:bg-purple-100:focus{background-color:var(--purple-100)!important}.focus\\:bg-purple-200:focus{background-color:var(--purple-200)!important}.focus\\:bg-purple-300:focus{background-color:var(--purple-300)!important}.focus\\:bg-purple-400:focus{background-color:var(--purple-400)!important}.focus\\:bg-purple-500:focus{background-color:var(--purple-500)!important}.focus\\:bg-purple-600:focus{background-color:var(--purple-600)!important}.focus\\:bg-purple-700:focus{background-color:var(--purple-700)!important}.focus\\:bg-purple-800:focus{background-color:var(--purple-800)!important}.focus\\:bg-purple-900:focus{background-color:var(--purple-900)!important}.hover\\:bg-purple-50:hover{background-color:var(--purple-50)!important}.hover\\:bg-purple-100:hover{background-color:var(--purple-100)!important}.hover\\:bg-purple-200:hover{background-color:var(--purple-200)!important}.hover\\:bg-purple-300:hover{background-color:var(--purple-300)!important}.hover\\:bg-purple-400:hover{background-color:var(--purple-400)!important}.hover\\:bg-purple-500:hover{background-color:var(--purple-500)!important}.hover\\:bg-purple-600:hover{background-color:var(--purple-600)!important}.hover\\:bg-purple-700:hover{background-color:var(--purple-700)!important}.hover\\:bg-purple-800:hover{background-color:var(--purple-800)!important}.hover\\:bg-purple-900:hover{background-color:var(--purple-900)!important}.active\\:bg-purple-50:active{background-color:var(--purple-50)!important}.active\\:bg-purple-100:active{background-color:var(--purple-100)!important}.active\\:bg-purple-200:active{background-color:var(--purple-200)!important}.active\\:bg-purple-300:active{background-color:var(--purple-300)!important}.active\\:bg-purple-400:active{background-color:var(--purple-400)!important}.active\\:bg-purple-500:active{background-color:var(--purple-500)!important}.active\\:bg-purple-600:active{background-color:var(--purple-600)!important}.active\\:bg-purple-700:active{background-color:var(--purple-700)!important}.active\\:bg-purple-800:active{background-color:var(--purple-800)!important}.active\\:bg-purple-900:active{background-color:var(--purple-900)!important}.bg-gray-50{background-color:var(--gray-50)!important}.bg-gray-100{background-color:var(--gray-100)!important}.bg-gray-200{background-color:var(--gray-200)!important}.bg-gray-300{background-color:var(--gray-300)!important}.bg-gray-400{background-color:var(--gray-400)!important}.bg-gray-500{background-color:var(--gray-500)!important}.bg-gray-600{background-color:var(--gray-600)!important}.bg-gray-700{background-color:var(--gray-700)!important}.bg-gray-800{background-color:var(--gray-800)!important}.bg-gray-900{background-color:var(--gray-900)!important}.focus\\:bg-gray-50:focus{background-color:var(--gray-50)!important}.focus\\:bg-gray-100:focus{background-color:var(--gray-100)!important}.focus\\:bg-gray-200:focus{background-color:var(--gray-200)!important}.focus\\:bg-gray-300:focus{background-color:var(--gray-300)!important}.focus\\:bg-gray-400:focus{background-color:var(--gray-400)!important}.focus\\:bg-gray-500:focus{background-color:var(--gray-500)!important}.focus\\:bg-gray-600:focus{background-color:var(--gray-600)!important}.focus\\:bg-gray-700:focus{background-color:var(--gray-700)!important}.focus\\:bg-gray-800:focus{background-color:var(--gray-800)!important}.focus\\:bg-gray-900:focus{background-color:var(--gray-900)!important}.hover\\:bg-gray-50:hover{background-color:var(--gray-50)!important}.hover\\:bg-gray-100:hover{background-color:var(--gray-100)!important}.hover\\:bg-gray-200:hover{background-color:var(--gray-200)!important}.hover\\:bg-gray-300:hover{background-color:var(--gray-300)!important}.hover\\:bg-gray-400:hover{background-color:var(--gray-400)!important}.hover\\:bg-gray-500:hover{background-color:var(--gray-500)!important}.hover\\:bg-gray-600:hover{background-color:var(--gray-600)!important}.hover\\:bg-gray-700:hover{background-color:var(--gray-700)!important}.hover\\:bg-gray-800:hover{background-color:var(--gray-800)!important}.hover\\:bg-gray-900:hover{background-color:var(--gray-900)!important}.active\\:bg-gray-50:active{background-color:var(--gray-50)!important}.active\\:bg-gray-100:active{background-color:var(--gray-100)!important}.active\\:bg-gray-200:active{background-color:var(--gray-200)!important}.active\\:bg-gray-300:active{background-color:var(--gray-300)!important}.active\\:bg-gray-400:active{background-color:var(--gray-400)!important}.active\\:bg-gray-500:active{background-color:var(--gray-500)!important}.active\\:bg-gray-600:active{background-color:var(--gray-600)!important}.active\\:bg-gray-700:active{background-color:var(--gray-700)!important}.active\\:bg-gray-800:active{background-color:var(--gray-800)!important}.active\\:bg-gray-900:active{background-color:var(--gray-900)!important}.bg-red-50{background-color:var(--red-50)!important}.bg-red-100{background-color:var(--red-100)!important}.bg-red-200{background-color:var(--red-200)!important}.bg-red-300{background-color:var(--red-300)!important}.bg-red-400{background-color:var(--red-400)!important}.bg-red-500{background-color:var(--red-500)!important}.bg-red-600{background-color:var(--red-600)!important}.bg-red-700{background-color:var(--red-700)!important}.bg-red-800{background-color:var(--red-800)!important}.bg-red-900{background-color:var(--red-900)!important}.focus\\:bg-red-50:focus{background-color:var(--red-50)!important}.focus\\:bg-red-100:focus{background-color:var(--red-100)!important}.focus\\:bg-red-200:focus{background-color:var(--red-200)!important}.focus\\:bg-red-300:focus{background-color:var(--red-300)!important}.focus\\:bg-red-400:focus{background-color:var(--red-400)!important}.focus\\:bg-red-500:focus{background-color:var(--red-500)!important}.focus\\:bg-red-600:focus{background-color:var(--red-600)!important}.focus\\:bg-red-700:focus{background-color:var(--red-700)!important}.focus\\:bg-red-800:focus{background-color:var(--red-800)!important}.focus\\:bg-red-900:focus{background-color:var(--red-900)!important}.hover\\:bg-red-50:hover{background-color:var(--red-50)!important}.hover\\:bg-red-100:hover{background-color:var(--red-100)!important}.hover\\:bg-red-200:hover{background-color:var(--red-200)!important}.hover\\:bg-red-300:hover{background-color:var(--red-300)!important}.hover\\:bg-red-400:hover{background-color:var(--red-400)!important}.hover\\:bg-red-500:hover{background-color:var(--red-500)!important}.hover\\:bg-red-600:hover{background-color:var(--red-600)!important}.hover\\:bg-red-700:hover{background-color:var(--red-700)!important}.hover\\:bg-red-800:hover{background-color:var(--red-800)!important}.hover\\:bg-red-900:hover{background-color:var(--red-900)!important}.active\\:bg-red-50:active{background-color:var(--red-50)!important}.active\\:bg-red-100:active{background-color:var(--red-100)!important}.active\\:bg-red-200:active{background-color:var(--red-200)!important}.active\\:bg-red-300:active{background-color:var(--red-300)!important}.active\\:bg-red-400:active{background-color:var(--red-400)!important}.active\\:bg-red-500:active{background-color:var(--red-500)!important}.active\\:bg-red-600:active{background-color:var(--red-600)!important}.active\\:bg-red-700:active{background-color:var(--red-700)!important}.active\\:bg-red-800:active{background-color:var(--red-800)!important}.active\\:bg-red-900:active{background-color:var(--red-900)!important}.bg-primary-50{background-color:var(--primary-50)!important}.bg-primary-100{background-color:var(--primary-100)!important}.bg-primary-200{background-color:var(--primary-200)!important}.bg-primary-300{background-color:var(--primary-300)!important}.bg-primary-400{background-color:var(--primary-400)!important}.bg-primary-500{background-color:var(--primary-500)!important}.bg-primary-600{background-color:var(--primary-600)!important}.bg-primary-700{background-color:var(--primary-700)!important}.bg-primary-800{background-color:var(--primary-800)!important}.bg-primary-900{background-color:var(--primary-900)!important}.focus\\:bg-primary-50:focus{background-color:var(--primary-50)!important}.focus\\:bg-primary-100:focus{background-color:var(--primary-100)!important}.focus\\:bg-primary-200:focus{background-color:var(--primary-200)!important}.focus\\:bg-primary-300:focus{background-color:var(--primary-300)!important}.focus\\:bg-primary-400:focus{background-color:var(--primary-400)!important}.focus\\:bg-primary-500:focus{background-color:var(--primary-500)!important}.focus\\:bg-primary-600:focus{background-color:var(--primary-600)!important}.focus\\:bg-primary-700:focus{background-color:var(--primary-700)!important}.focus\\:bg-primary-800:focus{background-color:var(--primary-800)!important}.focus\\:bg-primary-900:focus{background-color:var(--primary-900)!important}.hover\\:bg-primary-50:hover{background-color:var(--primary-50)!important}.hover\\:bg-primary-100:hover{background-color:var(--primary-100)!important}.hover\\:bg-primary-200:hover{background-color:var(--primary-200)!important}.hover\\:bg-primary-300:hover{background-color:var(--primary-300)!important}.hover\\:bg-primary-400:hover{background-color:var(--primary-400)!important}.hover\\:bg-primary-500:hover{background-color:var(--primary-500)!important}.hover\\:bg-primary-600:hover{background-color:var(--primary-600)!important}.hover\\:bg-primary-700:hover{background-color:var(--primary-700)!important}.hover\\:bg-primary-800:hover{background-color:var(--primary-800)!important}.hover\\:bg-primary-900:hover{background-color:var(--primary-900)!important}.active\\:bg-primary-50:active{background-color:var(--primary-50)!important}.active\\:bg-primary-100:active{background-color:var(--primary-100)!important}.active\\:bg-primary-200:active{background-color:var(--primary-200)!important}.active\\:bg-primary-300:active{background-color:var(--primary-300)!important}.active\\:bg-primary-400:active{background-color:var(--primary-400)!important}.active\\:bg-primary-500:active{background-color:var(--primary-500)!important}.active\\:bg-primary-600:active{background-color:var(--primary-600)!important}.active\\:bg-primary-700:active{background-color:var(--primary-700)!important}.active\\:bg-primary-800:active{background-color:var(--primary-800)!important}.active\\:bg-primary-900:active{background-color:var(--primary-900)!important}.border-blue-50{border-color:var(--blue-50)!important}.border-blue-100{border-color:var(--blue-100)!important}.border-blue-200{border-color:var(--blue-200)!important}.border-blue-300{border-color:var(--blue-300)!important}.border-blue-400{border-color:var(--blue-400)!important}.border-blue-500{border-color:var(--blue-500)!important}.border-blue-600{border-color:var(--blue-600)!important}.border-blue-700{border-color:var(--blue-700)!important}.border-blue-800{border-color:var(--blue-800)!important}.border-blue-900{border-color:var(--blue-900)!important}.focus\\:border-blue-50:focus{border-color:var(--blue-50)!important}.focus\\:border-blue-100:focus{border-color:var(--blue-100)!important}.focus\\:border-blue-200:focus{border-color:var(--blue-200)!important}.focus\\:border-blue-300:focus{border-color:var(--blue-300)!important}.focus\\:border-blue-400:focus{border-color:var(--blue-400)!important}.focus\\:border-blue-500:focus{border-color:var(--blue-500)!important}.focus\\:border-blue-600:focus{border-color:var(--blue-600)!important}.focus\\:border-blue-700:focus{border-color:var(--blue-700)!important}.focus\\:border-blue-800:focus{border-color:var(--blue-800)!important}.focus\\:border-blue-900:focus{border-color:var(--blue-900)!important}.hover\\:border-blue-50:hover{border-color:var(--blue-50)!important}.hover\\:border-blue-100:hover{border-color:var(--blue-100)!important}.hover\\:border-blue-200:hover{border-color:var(--blue-200)!important}.hover\\:border-blue-300:hover{border-color:var(--blue-300)!important}.hover\\:border-blue-400:hover{border-color:var(--blue-400)!important}.hover\\:border-blue-500:hover{border-color:var(--blue-500)!important}.hover\\:border-blue-600:hover{border-color:var(--blue-600)!important}.hover\\:border-blue-700:hover{border-color:var(--blue-700)!important}.hover\\:border-blue-800:hover{border-color:var(--blue-800)!important}.hover\\:border-blue-900:hover{border-color:var(--blue-900)!important}.active\\:border-blue-50:active{border-color:var(--blue-50)!important}.active\\:border-blue-100:active{border-color:var(--blue-100)!important}.active\\:border-blue-200:active{border-color:var(--blue-200)!important}.active\\:border-blue-300:active{border-color:var(--blue-300)!important}.active\\:border-blue-400:active{border-color:var(--blue-400)!important}.active\\:border-blue-500:active{border-color:var(--blue-500)!important}.active\\:border-blue-600:active{border-color:var(--blue-600)!important}.active\\:border-blue-700:active{border-color:var(--blue-700)!important}.active\\:border-blue-800:active{border-color:var(--blue-800)!important}.active\\:border-blue-900:active{border-color:var(--blue-900)!important}.border-green-50{border-color:var(--green-50)!important}.border-green-100{border-color:var(--green-100)!important}.border-green-200{border-color:var(--green-200)!important}.border-green-300{border-color:var(--green-300)!important}.border-green-400{border-color:var(--green-400)!important}.border-green-500{border-color:var(--green-500)!important}.border-green-600{border-color:var(--green-600)!important}.border-green-700{border-color:var(--green-700)!important}.border-green-800{border-color:var(--green-800)!important}.border-green-900{border-color:var(--green-900)!important}.focus\\:border-green-50:focus{border-color:var(--green-50)!important}.focus\\:border-green-100:focus{border-color:var(--green-100)!important}.focus\\:border-green-200:focus{border-color:var(--green-200)!important}.focus\\:border-green-300:focus{border-color:var(--green-300)!important}.focus\\:border-green-400:focus{border-color:var(--green-400)!important}.focus\\:border-green-500:focus{border-color:var(--green-500)!important}.focus\\:border-green-600:focus{border-color:var(--green-600)!important}.focus\\:border-green-700:focus{border-color:var(--green-700)!important}.focus\\:border-green-800:focus{border-color:var(--green-800)!important}.focus\\:border-green-900:focus{border-color:var(--green-900)!important}.hover\\:border-green-50:hover{border-color:var(--green-50)!important}.hover\\:border-green-100:hover{border-color:var(--green-100)!important}.hover\\:border-green-200:hover{border-color:var(--green-200)!important}.hover\\:border-green-300:hover{border-color:var(--green-300)!important}.hover\\:border-green-400:hover{border-color:var(--green-400)!important}.hover\\:border-green-500:hover{border-color:var(--green-500)!important}.hover\\:border-green-600:hover{border-color:var(--green-600)!important}.hover\\:border-green-700:hover{border-color:var(--green-700)!important}.hover\\:border-green-800:hover{border-color:var(--green-800)!important}.hover\\:border-green-900:hover{border-color:var(--green-900)!important}.active\\:border-green-50:active{border-color:var(--green-50)!important}.active\\:border-green-100:active{border-color:var(--green-100)!important}.active\\:border-green-200:active{border-color:var(--green-200)!important}.active\\:border-green-300:active{border-color:var(--green-300)!important}.active\\:border-green-400:active{border-color:var(--green-400)!important}.active\\:border-green-500:active{border-color:var(--green-500)!important}.active\\:border-green-600:active{border-color:var(--green-600)!important}.active\\:border-green-700:active{border-color:var(--green-700)!important}.active\\:border-green-800:active{border-color:var(--green-800)!important}.active\\:border-green-900:active{border-color:var(--green-900)!important}.border-yellow-50{border-color:var(--yellow-50)!important}.border-yellow-100{border-color:var(--yellow-100)!important}.border-yellow-200{border-color:var(--yellow-200)!important}.border-yellow-300{border-color:var(--yellow-300)!important}.border-yellow-400{border-color:var(--yellow-400)!important}.border-yellow-500{border-color:var(--yellow-500)!important}.border-yellow-600{border-color:var(--yellow-600)!important}.border-yellow-700{border-color:var(--yellow-700)!important}.border-yellow-800{border-color:var(--yellow-800)!important}.border-yellow-900{border-color:var(--yellow-900)!important}.focus\\:border-yellow-50:focus{border-color:var(--yellow-50)!important}.focus\\:border-yellow-100:focus{border-color:var(--yellow-100)!important}.focus\\:border-yellow-200:focus{border-color:var(--yellow-200)!important}.focus\\:border-yellow-300:focus{border-color:var(--yellow-300)!important}.focus\\:border-yellow-400:focus{border-color:var(--yellow-400)!important}.focus\\:border-yellow-500:focus{border-color:var(--yellow-500)!important}.focus\\:border-yellow-600:focus{border-color:var(--yellow-600)!important}.focus\\:border-yellow-700:focus{border-color:var(--yellow-700)!important}.focus\\:border-yellow-800:focus{border-color:var(--yellow-800)!important}.focus\\:border-yellow-900:focus{border-color:var(--yellow-900)!important}.hover\\:border-yellow-50:hover{border-color:var(--yellow-50)!important}.hover\\:border-yellow-100:hover{border-color:var(--yellow-100)!important}.hover\\:border-yellow-200:hover{border-color:var(--yellow-200)!important}.hover\\:border-yellow-300:hover{border-color:var(--yellow-300)!important}.hover\\:border-yellow-400:hover{border-color:var(--yellow-400)!important}.hover\\:border-yellow-500:hover{border-color:var(--yellow-500)!important}.hover\\:border-yellow-600:hover{border-color:var(--yellow-600)!important}.hover\\:border-yellow-700:hover{border-color:var(--yellow-700)!important}.hover\\:border-yellow-800:hover{border-color:var(--yellow-800)!important}.hover\\:border-yellow-900:hover{border-color:var(--yellow-900)!important}.active\\:border-yellow-50:active{border-color:var(--yellow-50)!important}.active\\:border-yellow-100:active{border-color:var(--yellow-100)!important}.active\\:border-yellow-200:active{border-color:var(--yellow-200)!important}.active\\:border-yellow-300:active{border-color:var(--yellow-300)!important}.active\\:border-yellow-400:active{border-color:var(--yellow-400)!important}.active\\:border-yellow-500:active{border-color:var(--yellow-500)!important}.active\\:border-yellow-600:active{border-color:var(--yellow-600)!important}.active\\:border-yellow-700:active{border-color:var(--yellow-700)!important}.active\\:border-yellow-800:active{border-color:var(--yellow-800)!important}.active\\:border-yellow-900:active{border-color:var(--yellow-900)!important}.border-cyan-50{border-color:var(--cyan-50)!important}.border-cyan-100{border-color:var(--cyan-100)!important}.border-cyan-200{border-color:var(--cyan-200)!important}.border-cyan-300{border-color:var(--cyan-300)!important}.border-cyan-400{border-color:var(--cyan-400)!important}.border-cyan-500{border-color:var(--cyan-500)!important}.border-cyan-600{border-color:var(--cyan-600)!important}.border-cyan-700{border-color:var(--cyan-700)!important}.border-cyan-800{border-color:var(--cyan-800)!important}.border-cyan-900{border-color:var(--cyan-900)!important}.focus\\:border-cyan-50:focus{border-color:var(--cyan-50)!important}.focus\\:border-cyan-100:focus{border-color:var(--cyan-100)!important}.focus\\:border-cyan-200:focus{border-color:var(--cyan-200)!important}.focus\\:border-cyan-300:focus{border-color:var(--cyan-300)!important}.focus\\:border-cyan-400:focus{border-color:var(--cyan-400)!important}.focus\\:border-cyan-500:focus{border-color:var(--cyan-500)!important}.focus\\:border-cyan-600:focus{border-color:var(--cyan-600)!important}.focus\\:border-cyan-700:focus{border-color:var(--cyan-700)!important}.focus\\:border-cyan-800:focus{border-color:var(--cyan-800)!important}.focus\\:border-cyan-900:focus{border-color:var(--cyan-900)!important}.hover\\:border-cyan-50:hover{border-color:var(--cyan-50)!important}.hover\\:border-cyan-100:hover{border-color:var(--cyan-100)!important}.hover\\:border-cyan-200:hover{border-color:var(--cyan-200)!important}.hover\\:border-cyan-300:hover{border-color:var(--cyan-300)!important}.hover\\:border-cyan-400:hover{border-color:var(--cyan-400)!important}.hover\\:border-cyan-500:hover{border-color:var(--cyan-500)!important}.hover\\:border-cyan-600:hover{border-color:var(--cyan-600)!important}.hover\\:border-cyan-700:hover{border-color:var(--cyan-700)!important}.hover\\:border-cyan-800:hover{border-color:var(--cyan-800)!important}.hover\\:border-cyan-900:hover{border-color:var(--cyan-900)!important}.active\\:border-cyan-50:active{border-color:var(--cyan-50)!important}.active\\:border-cyan-100:active{border-color:var(--cyan-100)!important}.active\\:border-cyan-200:active{border-color:var(--cyan-200)!important}.active\\:border-cyan-300:active{border-color:var(--cyan-300)!important}.active\\:border-cyan-400:active{border-color:var(--cyan-400)!important}.active\\:border-cyan-500:active{border-color:var(--cyan-500)!important}.active\\:border-cyan-600:active{border-color:var(--cyan-600)!important}.active\\:border-cyan-700:active{border-color:var(--cyan-700)!important}.active\\:border-cyan-800:active{border-color:var(--cyan-800)!important}.active\\:border-cyan-900:active{border-color:var(--cyan-900)!important}.border-pink-50{border-color:var(--pink-50)!important}.border-pink-100{border-color:var(--pink-100)!important}.border-pink-200{border-color:var(--pink-200)!important}.border-pink-300{border-color:var(--pink-300)!important}.border-pink-400{border-color:var(--pink-400)!important}.border-pink-500{border-color:var(--pink-500)!important}.border-pink-600{border-color:var(--pink-600)!important}.border-pink-700{border-color:var(--pink-700)!important}.border-pink-800{border-color:var(--pink-800)!important}.border-pink-900{border-color:var(--pink-900)!important}.focus\\:border-pink-50:focus{border-color:var(--pink-50)!important}.focus\\:border-pink-100:focus{border-color:var(--pink-100)!important}.focus\\:border-pink-200:focus{border-color:var(--pink-200)!important}.focus\\:border-pink-300:focus{border-color:var(--pink-300)!important}.focus\\:border-pink-400:focus{border-color:var(--pink-400)!important}.focus\\:border-pink-500:focus{border-color:var(--pink-500)!important}.focus\\:border-pink-600:focus{border-color:var(--pink-600)!important}.focus\\:border-pink-700:focus{border-color:var(--pink-700)!important}.focus\\:border-pink-800:focus{border-color:var(--pink-800)!important}.focus\\:border-pink-900:focus{border-color:var(--pink-900)!important}.hover\\:border-pink-50:hover{border-color:var(--pink-50)!important}.hover\\:border-pink-100:hover{border-color:var(--pink-100)!important}.hover\\:border-pink-200:hover{border-color:var(--pink-200)!important}.hover\\:border-pink-300:hover{border-color:var(--pink-300)!important}.hover\\:border-pink-400:hover{border-color:var(--pink-400)!important}.hover\\:border-pink-500:hover{border-color:var(--pink-500)!important}.hover\\:border-pink-600:hover{border-color:var(--pink-600)!important}.hover\\:border-pink-700:hover{border-color:var(--pink-700)!important}.hover\\:border-pink-800:hover{border-color:var(--pink-800)!important}.hover\\:border-pink-900:hover{border-color:var(--pink-900)!important}.active\\:border-pink-50:active{border-color:var(--pink-50)!important}.active\\:border-pink-100:active{border-color:var(--pink-100)!important}.active\\:border-pink-200:active{border-color:var(--pink-200)!important}.active\\:border-pink-300:active{border-color:var(--pink-300)!important}.active\\:border-pink-400:active{border-color:var(--pink-400)!important}.active\\:border-pink-500:active{border-color:var(--pink-500)!important}.active\\:border-pink-600:active{border-color:var(--pink-600)!important}.active\\:border-pink-700:active{border-color:var(--pink-700)!important}.active\\:border-pink-800:active{border-color:var(--pink-800)!important}.active\\:border-pink-900:active{border-color:var(--pink-900)!important}.border-indigo-50{border-color:var(--indigo-50)!important}.border-indigo-100{border-color:var(--indigo-100)!important}.border-indigo-200{border-color:var(--indigo-200)!important}.border-indigo-300{border-color:var(--indigo-300)!important}.border-indigo-400{border-color:var(--indigo-400)!important}.border-indigo-500{border-color:var(--indigo-500)!important}.border-indigo-600{border-color:var(--indigo-600)!important}.border-indigo-700{border-color:var(--indigo-700)!important}.border-indigo-800{border-color:var(--indigo-800)!important}.border-indigo-900{border-color:var(--indigo-900)!important}.focus\\:border-indigo-50:focus{border-color:var(--indigo-50)!important}.focus\\:border-indigo-100:focus{border-color:var(--indigo-100)!important}.focus\\:border-indigo-200:focus{border-color:var(--indigo-200)!important}.focus\\:border-indigo-300:focus{border-color:var(--indigo-300)!important}.focus\\:border-indigo-400:focus{border-color:var(--indigo-400)!important}.focus\\:border-indigo-500:focus{border-color:var(--indigo-500)!important}.focus\\:border-indigo-600:focus{border-color:var(--indigo-600)!important}.focus\\:border-indigo-700:focus{border-color:var(--indigo-700)!important}.focus\\:border-indigo-800:focus{border-color:var(--indigo-800)!important}.focus\\:border-indigo-900:focus{border-color:var(--indigo-900)!important}.hover\\:border-indigo-50:hover{border-color:var(--indigo-50)!important}.hover\\:border-indigo-100:hover{border-color:var(--indigo-100)!important}.hover\\:border-indigo-200:hover{border-color:var(--indigo-200)!important}.hover\\:border-indigo-300:hover{border-color:var(--indigo-300)!important}.hover\\:border-indigo-400:hover{border-color:var(--indigo-400)!important}.hover\\:border-indigo-500:hover{border-color:var(--indigo-500)!important}.hover\\:border-indigo-600:hover{border-color:var(--indigo-600)!important}.hover\\:border-indigo-700:hover{border-color:var(--indigo-700)!important}.hover\\:border-indigo-800:hover{border-color:var(--indigo-800)!important}.hover\\:border-indigo-900:hover{border-color:var(--indigo-900)!important}.active\\:border-indigo-50:active{border-color:var(--indigo-50)!important}.active\\:border-indigo-100:active{border-color:var(--indigo-100)!important}.active\\:border-indigo-200:active{border-color:var(--indigo-200)!important}.active\\:border-indigo-300:active{border-color:var(--indigo-300)!important}.active\\:border-indigo-400:active{border-color:var(--indigo-400)!important}.active\\:border-indigo-500:active{border-color:var(--indigo-500)!important}.active\\:border-indigo-600:active{border-color:var(--indigo-600)!important}.active\\:border-indigo-700:active{border-color:var(--indigo-700)!important}.active\\:border-indigo-800:active{border-color:var(--indigo-800)!important}.active\\:border-indigo-900:active{border-color:var(--indigo-900)!important}.border-teal-50{border-color:var(--teal-50)!important}.border-teal-100{border-color:var(--teal-100)!important}.border-teal-200{border-color:var(--teal-200)!important}.border-teal-300{border-color:var(--teal-300)!important}.border-teal-400{border-color:var(--teal-400)!important}.border-teal-500{border-color:var(--teal-500)!important}.border-teal-600{border-color:var(--teal-600)!important}.border-teal-700{border-color:var(--teal-700)!important}.border-teal-800{border-color:var(--teal-800)!important}.border-teal-900{border-color:var(--teal-900)!important}.focus\\:border-teal-50:focus{border-color:var(--teal-50)!important}.focus\\:border-teal-100:focus{border-color:var(--teal-100)!important}.focus\\:border-teal-200:focus{border-color:var(--teal-200)!important}.focus\\:border-teal-300:focus{border-color:var(--teal-300)!important}.focus\\:border-teal-400:focus{border-color:var(--teal-400)!important}.focus\\:border-teal-500:focus{border-color:var(--teal-500)!important}.focus\\:border-teal-600:focus{border-color:var(--teal-600)!important}.focus\\:border-teal-700:focus{border-color:var(--teal-700)!important}.focus\\:border-teal-800:focus{border-color:var(--teal-800)!important}.focus\\:border-teal-900:focus{border-color:var(--teal-900)!important}.hover\\:border-teal-50:hover{border-color:var(--teal-50)!important}.hover\\:border-teal-100:hover{border-color:var(--teal-100)!important}.hover\\:border-teal-200:hover{border-color:var(--teal-200)!important}.hover\\:border-teal-300:hover{border-color:var(--teal-300)!important}.hover\\:border-teal-400:hover{border-color:var(--teal-400)!important}.hover\\:border-teal-500:hover{border-color:var(--teal-500)!important}.hover\\:border-teal-600:hover{border-color:var(--teal-600)!important}.hover\\:border-teal-700:hover{border-color:var(--teal-700)!important}.hover\\:border-teal-800:hover{border-color:var(--teal-800)!important}.hover\\:border-teal-900:hover{border-color:var(--teal-900)!important}.active\\:border-teal-50:active{border-color:var(--teal-50)!important}.active\\:border-teal-100:active{border-color:var(--teal-100)!important}.active\\:border-teal-200:active{border-color:var(--teal-200)!important}.active\\:border-teal-300:active{border-color:var(--teal-300)!important}.active\\:border-teal-400:active{border-color:var(--teal-400)!important}.active\\:border-teal-500:active{border-color:var(--teal-500)!important}.active\\:border-teal-600:active{border-color:var(--teal-600)!important}.active\\:border-teal-700:active{border-color:var(--teal-700)!important}.active\\:border-teal-800:active{border-color:var(--teal-800)!important}.active\\:border-teal-900:active{border-color:var(--teal-900)!important}.border-orange-50{border-color:var(--orange-50)!important}.border-orange-100{border-color:var(--orange-100)!important}.border-orange-200{border-color:var(--orange-200)!important}.border-orange-300{border-color:var(--orange-300)!important}.border-orange-400{border-color:var(--orange-400)!important}.border-orange-500{border-color:var(--orange-500)!important}.border-orange-600{border-color:var(--orange-600)!important}.border-orange-700{border-color:var(--orange-700)!important}.border-orange-800{border-color:var(--orange-800)!important}.border-orange-900{border-color:var(--orange-900)!important}.focus\\:border-orange-50:focus{border-color:var(--orange-50)!important}.focus\\:border-orange-100:focus{border-color:var(--orange-100)!important}.focus\\:border-orange-200:focus{border-color:var(--orange-200)!important}.focus\\:border-orange-300:focus{border-color:var(--orange-300)!important}.focus\\:border-orange-400:focus{border-color:var(--orange-400)!important}.focus\\:border-orange-500:focus{border-color:var(--orange-500)!important}.focus\\:border-orange-600:focus{border-color:var(--orange-600)!important}.focus\\:border-orange-700:focus{border-color:var(--orange-700)!important}.focus\\:border-orange-800:focus{border-color:var(--orange-800)!important}.focus\\:border-orange-900:focus{border-color:var(--orange-900)!important}.hover\\:border-orange-50:hover{border-color:var(--orange-50)!important}.hover\\:border-orange-100:hover{border-color:var(--orange-100)!important}.hover\\:border-orange-200:hover{border-color:var(--orange-200)!important}.hover\\:border-orange-300:hover{border-color:var(--orange-300)!important}.hover\\:border-orange-400:hover{border-color:var(--orange-400)!important}.hover\\:border-orange-500:hover{border-color:var(--orange-500)!important}.hover\\:border-orange-600:hover{border-color:var(--orange-600)!important}.hover\\:border-orange-700:hover{border-color:var(--orange-700)!important}.hover\\:border-orange-800:hover{border-color:var(--orange-800)!important}.hover\\:border-orange-900:hover{border-color:var(--orange-900)!important}.active\\:border-orange-50:active{border-color:var(--orange-50)!important}.active\\:border-orange-100:active{border-color:var(--orange-100)!important}.active\\:border-orange-200:active{border-color:var(--orange-200)!important}.active\\:border-orange-300:active{border-color:var(--orange-300)!important}.active\\:border-orange-400:active{border-color:var(--orange-400)!important}.active\\:border-orange-500:active{border-color:var(--orange-500)!important}.active\\:border-orange-600:active{border-color:var(--orange-600)!important}.active\\:border-orange-700:active{border-color:var(--orange-700)!important}.active\\:border-orange-800:active{border-color:var(--orange-800)!important}.active\\:border-orange-900:active{border-color:var(--orange-900)!important}.border-bluegray-50{border-color:var(--bluegray-50)!important}.border-bluegray-100{border-color:var(--bluegray-100)!important}.border-bluegray-200{border-color:var(--bluegray-200)!important}.border-bluegray-300{border-color:var(--bluegray-300)!important}.border-bluegray-400{border-color:var(--bluegray-400)!important}.border-bluegray-500{border-color:var(--bluegray-500)!important}.border-bluegray-600{border-color:var(--bluegray-600)!important}.border-bluegray-700{border-color:var(--bluegray-700)!important}.border-bluegray-800{border-color:var(--bluegray-800)!important}.border-bluegray-900{border-color:var(--bluegray-900)!important}.focus\\:border-bluegray-50:focus{border-color:var(--bluegray-50)!important}.focus\\:border-bluegray-100:focus{border-color:var(--bluegray-100)!important}.focus\\:border-bluegray-200:focus{border-color:var(--bluegray-200)!important}.focus\\:border-bluegray-300:focus{border-color:var(--bluegray-300)!important}.focus\\:border-bluegray-400:focus{border-color:var(--bluegray-400)!important}.focus\\:border-bluegray-500:focus{border-color:var(--bluegray-500)!important}.focus\\:border-bluegray-600:focus{border-color:var(--bluegray-600)!important}.focus\\:border-bluegray-700:focus{border-color:var(--bluegray-700)!important}.focus\\:border-bluegray-800:focus{border-color:var(--bluegray-800)!important}.focus\\:border-bluegray-900:focus{border-color:var(--bluegray-900)!important}.hover\\:border-bluegray-50:hover{border-color:var(--bluegray-50)!important}.hover\\:border-bluegray-100:hover{border-color:var(--bluegray-100)!important}.hover\\:border-bluegray-200:hover{border-color:var(--bluegray-200)!important}.hover\\:border-bluegray-300:hover{border-color:var(--bluegray-300)!important}.hover\\:border-bluegray-400:hover{border-color:var(--bluegray-400)!important}.hover\\:border-bluegray-500:hover{border-color:var(--bluegray-500)!important}.hover\\:border-bluegray-600:hover{border-color:var(--bluegray-600)!important}.hover\\:border-bluegray-700:hover{border-color:var(--bluegray-700)!important}.hover\\:border-bluegray-800:hover{border-color:var(--bluegray-800)!important}.hover\\:border-bluegray-900:hover{border-color:var(--bluegray-900)!important}.active\\:border-bluegray-50:active{border-color:var(--bluegray-50)!important}.active\\:border-bluegray-100:active{border-color:var(--bluegray-100)!important}.active\\:border-bluegray-200:active{border-color:var(--bluegray-200)!important}.active\\:border-bluegray-300:active{border-color:var(--bluegray-300)!important}.active\\:border-bluegray-400:active{border-color:var(--bluegray-400)!important}.active\\:border-bluegray-500:active{border-color:var(--bluegray-500)!important}.active\\:border-bluegray-600:active{border-color:var(--bluegray-600)!important}.active\\:border-bluegray-700:active{border-color:var(--bluegray-700)!important}.active\\:border-bluegray-800:active{border-color:var(--bluegray-800)!important}.active\\:border-bluegray-900:active{border-color:var(--bluegray-900)!important}.border-purple-50{border-color:var(--purple-50)!important}.border-purple-100{border-color:var(--purple-100)!important}.border-purple-200{border-color:var(--purple-200)!important}.border-purple-300{border-color:var(--purple-300)!important}.border-purple-400{border-color:var(--purple-400)!important}.border-purple-500{border-color:var(--purple-500)!important}.border-purple-600{border-color:var(--purple-600)!important}.border-purple-700{border-color:var(--purple-700)!important}.border-purple-800{border-color:var(--purple-800)!important}.border-purple-900{border-color:var(--purple-900)!important}.focus\\:border-purple-50:focus{border-color:var(--purple-50)!important}.focus\\:border-purple-100:focus{border-color:var(--purple-100)!important}.focus\\:border-purple-200:focus{border-color:var(--purple-200)!important}.focus\\:border-purple-300:focus{border-color:var(--purple-300)!important}.focus\\:border-purple-400:focus{border-color:var(--purple-400)!important}.focus\\:border-purple-500:focus{border-color:var(--purple-500)!important}.focus\\:border-purple-600:focus{border-color:var(--purple-600)!important}.focus\\:border-purple-700:focus{border-color:var(--purple-700)!important}.focus\\:border-purple-800:focus{border-color:var(--purple-800)!important}.focus\\:border-purple-900:focus{border-color:var(--purple-900)!important}.hover\\:border-purple-50:hover{border-color:var(--purple-50)!important}.hover\\:border-purple-100:hover{border-color:var(--purple-100)!important}.hover\\:border-purple-200:hover{border-color:var(--purple-200)!important}.hover\\:border-purple-300:hover{border-color:var(--purple-300)!important}.hover\\:border-purple-400:hover{border-color:var(--purple-400)!important}.hover\\:border-purple-500:hover{border-color:var(--purple-500)!important}.hover\\:border-purple-600:hover{border-color:var(--purple-600)!important}.hover\\:border-purple-700:hover{border-color:var(--purple-700)!important}.hover\\:border-purple-800:hover{border-color:var(--purple-800)!important}.hover\\:border-purple-900:hover{border-color:var(--purple-900)!important}.active\\:border-purple-50:active{border-color:var(--purple-50)!important}.active\\:border-purple-100:active{border-color:var(--purple-100)!important}.active\\:border-purple-200:active{border-color:var(--purple-200)!important}.active\\:border-purple-300:active{border-color:var(--purple-300)!important}.active\\:border-purple-400:active{border-color:var(--purple-400)!important}.active\\:border-purple-500:active{border-color:var(--purple-500)!important}.active\\:border-purple-600:active{border-color:var(--purple-600)!important}.active\\:border-purple-700:active{border-color:var(--purple-700)!important}.active\\:border-purple-800:active{border-color:var(--purple-800)!important}.active\\:border-purple-900:active{border-color:var(--purple-900)!important}.border-gray-50{border-color:var(--gray-50)!important}.border-gray-100{border-color:var(--gray-100)!important}.border-gray-200{border-color:var(--gray-200)!important}.border-gray-300{border-color:var(--gray-300)!important}.border-gray-400{border-color:var(--gray-400)!important}.border-gray-500{border-color:var(--gray-500)!important}.border-gray-600{border-color:var(--gray-600)!important}.border-gray-700{border-color:var(--gray-700)!important}.border-gray-800{border-color:var(--gray-800)!important}.border-gray-900{border-color:var(--gray-900)!important}.focus\\:border-gray-50:focus{border-color:var(--gray-50)!important}.focus\\:border-gray-100:focus{border-color:var(--gray-100)!important}.focus\\:border-gray-200:focus{border-color:var(--gray-200)!important}.focus\\:border-gray-300:focus{border-color:var(--gray-300)!important}.focus\\:border-gray-400:focus{border-color:var(--gray-400)!important}.focus\\:border-gray-500:focus{border-color:var(--gray-500)!important}.focus\\:border-gray-600:focus{border-color:var(--gray-600)!important}.focus\\:border-gray-700:focus{border-color:var(--gray-700)!important}.focus\\:border-gray-800:focus{border-color:var(--gray-800)!important}.focus\\:border-gray-900:focus{border-color:var(--gray-900)!important}.hover\\:border-gray-50:hover{border-color:var(--gray-50)!important}.hover\\:border-gray-100:hover{border-color:var(--gray-100)!important}.hover\\:border-gray-200:hover{border-color:var(--gray-200)!important}.hover\\:border-gray-300:hover{border-color:var(--gray-300)!important}.hover\\:border-gray-400:hover{border-color:var(--gray-400)!important}.hover\\:border-gray-500:hover{border-color:var(--gray-500)!important}.hover\\:border-gray-600:hover{border-color:var(--gray-600)!important}.hover\\:border-gray-700:hover{border-color:var(--gray-700)!important}.hover\\:border-gray-800:hover{border-color:var(--gray-800)!important}.hover\\:border-gray-900:hover{border-color:var(--gray-900)!important}.active\\:border-gray-50:active{border-color:var(--gray-50)!important}.active\\:border-gray-100:active{border-color:var(--gray-100)!important}.active\\:border-gray-200:active{border-color:var(--gray-200)!important}.active\\:border-gray-300:active{border-color:var(--gray-300)!important}.active\\:border-gray-400:active{border-color:var(--gray-400)!important}.active\\:border-gray-500:active{border-color:var(--gray-500)!important}.active\\:border-gray-600:active{border-color:var(--gray-600)!important}.active\\:border-gray-700:active{border-color:var(--gray-700)!important}.active\\:border-gray-800:active{border-color:var(--gray-800)!important}.active\\:border-gray-900:active{border-color:var(--gray-900)!important}.border-red-50{border-color:var(--red-50)!important}.border-red-100{border-color:var(--red-100)!important}.border-red-200{border-color:var(--red-200)!important}.border-red-300{border-color:var(--red-300)!important}.border-red-400{border-color:var(--red-400)!important}.border-red-500{border-color:var(--red-500)!important}.border-red-600{border-color:var(--red-600)!important}.border-red-700{border-color:var(--red-700)!important}.border-red-800{border-color:var(--red-800)!important}.border-red-900{border-color:var(--red-900)!important}.focus\\:border-red-50:focus{border-color:var(--red-50)!important}.focus\\:border-red-100:focus{border-color:var(--red-100)!important}.focus\\:border-red-200:focus{border-color:var(--red-200)!important}.focus\\:border-red-300:focus{border-color:var(--red-300)!important}.focus\\:border-red-400:focus{border-color:var(--red-400)!important}.focus\\:border-red-500:focus{border-color:var(--red-500)!important}.focus\\:border-red-600:focus{border-color:var(--red-600)!important}.focus\\:border-red-700:focus{border-color:var(--red-700)!important}.focus\\:border-red-800:focus{border-color:var(--red-800)!important}.focus\\:border-red-900:focus{border-color:var(--red-900)!important}.hover\\:border-red-50:hover{border-color:var(--red-50)!important}.hover\\:border-red-100:hover{border-color:var(--red-100)!important}.hover\\:border-red-200:hover{border-color:var(--red-200)!important}.hover\\:border-red-300:hover{border-color:var(--red-300)!important}.hover\\:border-red-400:hover{border-color:var(--red-400)!important}.hover\\:border-red-500:hover{border-color:var(--red-500)!important}.hover\\:border-red-600:hover{border-color:var(--red-600)!important}.hover\\:border-red-700:hover{border-color:var(--red-700)!important}.hover\\:border-red-800:hover{border-color:var(--red-800)!important}.hover\\:border-red-900:hover{border-color:var(--red-900)!important}.active\\:border-red-50:active{border-color:var(--red-50)!important}.active\\:border-red-100:active{border-color:var(--red-100)!important}.active\\:border-red-200:active{border-color:var(--red-200)!important}.active\\:border-red-300:active{border-color:var(--red-300)!important}.active\\:border-red-400:active{border-color:var(--red-400)!important}.active\\:border-red-500:active{border-color:var(--red-500)!important}.active\\:border-red-600:active{border-color:var(--red-600)!important}.active\\:border-red-700:active{border-color:var(--red-700)!important}.active\\:border-red-800:active{border-color:var(--red-800)!important}.active\\:border-red-900:active{border-color:var(--red-900)!important}.border-primary-50{border-color:var(--primary-50)!important}.border-primary-100{border-color:var(--primary-100)!important}.border-primary-200{border-color:var(--primary-200)!important}.border-primary-300{border-color:var(--primary-300)!important}.border-primary-400{border-color:var(--primary-400)!important}.border-primary-500{border-color:var(--primary-500)!important}.border-primary-600{border-color:var(--primary-600)!important}.border-primary-700{border-color:var(--primary-700)!important}.border-primary-800{border-color:var(--primary-800)!important}.border-primary-900{border-color:var(--primary-900)!important}.focus\\:border-primary-50:focus{border-color:var(--primary-50)!important}.focus\\:border-primary-100:focus{border-color:var(--primary-100)!important}.focus\\:border-primary-200:focus{border-color:var(--primary-200)!important}.focus\\:border-primary-300:focus{border-color:var(--primary-300)!important}.focus\\:border-primary-400:focus{border-color:var(--primary-400)!important}.focus\\:border-primary-500:focus{border-color:var(--primary-500)!important}.focus\\:border-primary-600:focus{border-color:var(--primary-600)!important}.focus\\:border-primary-700:focus{border-color:var(--primary-700)!important}.focus\\:border-primary-800:focus{border-color:var(--primary-800)!important}.focus\\:border-primary-900:focus{border-color:var(--primary-900)!important}.hover\\:border-primary-50:hover{border-color:var(--primary-50)!important}.hover\\:border-primary-100:hover{border-color:var(--primary-100)!important}.hover\\:border-primary-200:hover{border-color:var(--primary-200)!important}.hover\\:border-primary-300:hover{border-color:var(--primary-300)!important}.hover\\:border-primary-400:hover{border-color:var(--primary-400)!important}.hover\\:border-primary-500:hover{border-color:var(--primary-500)!important}.hover\\:border-primary-600:hover{border-color:var(--primary-600)!important}.hover\\:border-primary-700:hover{border-color:var(--primary-700)!important}.hover\\:border-primary-800:hover{border-color:var(--primary-800)!important}.hover\\:border-primary-900:hover{border-color:var(--primary-900)!important}.active\\:border-primary-50:active{border-color:var(--primary-50)!important}.active\\:border-primary-100:active{border-color:var(--primary-100)!important}.active\\:border-primary-200:active{border-color:var(--primary-200)!important}.active\\:border-primary-300:active{border-color:var(--primary-300)!important}.active\\:border-primary-400:active{border-color:var(--primary-400)!important}.active\\:border-primary-500:active{border-color:var(--primary-500)!important}.active\\:border-primary-600:active{border-color:var(--primary-600)!important}.active\\:border-primary-700:active{border-color:var(--primary-700)!important}.active\\:border-primary-800:active{border-color:var(--primary-800)!important}.active\\:border-primary-900:active{border-color:var(--primary-900)!important}.bg-white-alpha-10{background-color:#ffffff1a!important}.bg-white-alpha-20{background-color:#fff3!important}.bg-white-alpha-30{background-color:#ffffff4d!important}.bg-white-alpha-40{background-color:#fff6!important}.bg-white-alpha-50{background-color:#ffffff80!important}.bg-white-alpha-60{background-color:#fff9!important}.bg-white-alpha-70{background-color:#ffffffb3!important}.bg-white-alpha-80{background-color:#fffc!important}.bg-white-alpha-90{background-color:#ffffffe6!important}.hover\\:bg-white-alpha-10:hover{background-color:#ffffff1a!important}.hover\\:bg-white-alpha-20:hover{background-color:#fff3!important}.hover\\:bg-white-alpha-30:hover{background-color:#ffffff4d!important}.hover\\:bg-white-alpha-40:hover{background-color:#fff6!important}.hover\\:bg-white-alpha-50:hover{background-color:#ffffff80!important}.hover\\:bg-white-alpha-60:hover{background-color:#fff9!important}.hover\\:bg-white-alpha-70:hover{background-color:#ffffffb3!important}.hover\\:bg-white-alpha-80:hover{background-color:#fffc!important}.hover\\:bg-white-alpha-90:hover{background-color:#ffffffe6!important}.focus\\:bg-white-alpha-10:focus{background-color:#ffffff1a!important}.focus\\:bg-white-alpha-20:focus{background-color:#fff3!important}.focus\\:bg-white-alpha-30:focus{background-color:#ffffff4d!important}.focus\\:bg-white-alpha-40:focus{background-color:#fff6!important}.focus\\:bg-white-alpha-50:focus{background-color:#ffffff80!important}.focus\\:bg-white-alpha-60:focus{background-color:#fff9!important}.focus\\:bg-white-alpha-70:focus{background-color:#ffffffb3!important}.focus\\:bg-white-alpha-80:focus{background-color:#fffc!important}.focus\\:bg-white-alpha-90:focus{background-color:#ffffffe6!important}.active\\:bg-white-alpha-10:active{background-color:#ffffff1a!important}.active\\:bg-white-alpha-20:active{background-color:#fff3!important}.active\\:bg-white-alpha-30:active{background-color:#ffffff4d!important}.active\\:bg-white-alpha-40:active{background-color:#fff6!important}.active\\:bg-white-alpha-50:active{background-color:#ffffff80!important}.active\\:bg-white-alpha-60:active{background-color:#fff9!important}.active\\:bg-white-alpha-70:active{background-color:#ffffffb3!important}.active\\:bg-white-alpha-80:active{background-color:#fffc!important}.active\\:bg-white-alpha-90:active{background-color:#ffffffe6!important}.bg-black-alpha-10{background-color:#0000001a!important}.bg-black-alpha-20{background-color:#0003!important}.bg-black-alpha-30{background-color:#0000004d!important}.bg-black-alpha-40{background-color:#0006!important}.bg-black-alpha-50{background-color:#00000080!important}.bg-black-alpha-60{background-color:#0009!important}.bg-black-alpha-70{background-color:#000000b3!important}.bg-black-alpha-80{background-color:#000c!important}.bg-black-alpha-90{background-color:#000000e6!important}.hover\\:bg-black-alpha-10:hover{background-color:#0000001a!important}.hover\\:bg-black-alpha-20:hover{background-color:#0003!important}.hover\\:bg-black-alpha-30:hover{background-color:#0000004d!important}.hover\\:bg-black-alpha-40:hover{background-color:#0006!important}.hover\\:bg-black-alpha-50:hover{background-color:#00000080!important}.hover\\:bg-black-alpha-60:hover{background-color:#0009!important}.hover\\:bg-black-alpha-70:hover{background-color:#000000b3!important}.hover\\:bg-black-alpha-80:hover{background-color:#000c!important}.hover\\:bg-black-alpha-90:hover{background-color:#000000e6!important}.focus\\:bg-black-alpha-10:focus{background-color:#0000001a!important}.focus\\:bg-black-alpha-20:focus{background-color:#0003!important}.focus\\:bg-black-alpha-30:focus{background-color:#0000004d!important}.focus\\:bg-black-alpha-40:focus{background-color:#0006!important}.focus\\:bg-black-alpha-50:focus{background-color:#00000080!important}.focus\\:bg-black-alpha-60:focus{background-color:#0009!important}.focus\\:bg-black-alpha-70:focus{background-color:#000000b3!important}.focus\\:bg-black-alpha-80:focus{background-color:#000c!important}.focus\\:bg-black-alpha-90:focus{background-color:#000000e6!important}.active\\:bg-black-alpha-10:active{background-color:#0000001a!important}.active\\:bg-black-alpha-20:active{background-color:#0003!important}.active\\:bg-black-alpha-30:active{background-color:#0000004d!important}.active\\:bg-black-alpha-40:active{background-color:#0006!important}.active\\:bg-black-alpha-50:active{background-color:#00000080!important}.active\\:bg-black-alpha-60:active{background-color:#0009!important}.active\\:bg-black-alpha-70:active{background-color:#000000b3!important}.active\\:bg-black-alpha-80:active{background-color:#000c!important}.active\\:bg-black-alpha-90:active{background-color:#000000e6!important}.border-white-alpha-10{border-color:#ffffff1a!important}.border-white-alpha-20{border-color:#fff3!important}.border-white-alpha-30{border-color:#ffffff4d!important}.border-white-alpha-40{border-color:#fff6!important}.border-white-alpha-50{border-color:#ffffff80!important}.border-white-alpha-60{border-color:#fff9!important}.border-white-alpha-70{border-color:#ffffffb3!important}.border-white-alpha-80{border-color:#fffc!important}.border-white-alpha-90{border-color:#ffffffe6!important}.hover\\:border-white-alpha-10:hover{border-color:#ffffff1a!important}.hover\\:border-white-alpha-20:hover{border-color:#fff3!important}.hover\\:border-white-alpha-30:hover{border-color:#ffffff4d!important}.hover\\:border-white-alpha-40:hover{border-color:#fff6!important}.hover\\:border-white-alpha-50:hover{border-color:#ffffff80!important}.hover\\:border-white-alpha-60:hover{border-color:#fff9!important}.hover\\:border-white-alpha-70:hover{border-color:#ffffffb3!important}.hover\\:border-white-alpha-80:hover{border-color:#fffc!important}.hover\\:border-white-alpha-90:hover{border-color:#ffffffe6!important}.focus\\:border-white-alpha-10:focus{border-color:#ffffff1a!important}.focus\\:border-white-alpha-20:focus{border-color:#fff3!important}.focus\\:border-white-alpha-30:focus{border-color:#ffffff4d!important}.focus\\:border-white-alpha-40:focus{border-color:#fff6!important}.focus\\:border-white-alpha-50:focus{border-color:#ffffff80!important}.focus\\:border-white-alpha-60:focus{border-color:#fff9!important}.focus\\:border-white-alpha-70:focus{border-color:#ffffffb3!important}.focus\\:border-white-alpha-80:focus{border-color:#fffc!important}.focus\\:border-white-alpha-90:focus{border-color:#ffffffe6!important}.active\\:border-white-alpha-10:active{border-color:#ffffff1a!important}.active\\:border-white-alpha-20:active{border-color:#fff3!important}.active\\:border-white-alpha-30:active{border-color:#ffffff4d!important}.active\\:border-white-alpha-40:active{border-color:#fff6!important}.active\\:border-white-alpha-50:active{border-color:#ffffff80!important}.active\\:border-white-alpha-60:active{border-color:#fff9!important}.active\\:border-white-alpha-70:active{border-color:#ffffffb3!important}.active\\:border-white-alpha-80:active{border-color:#fffc!important}.active\\:border-white-alpha-90:active{border-color:#ffffffe6!important}.border-black-alpha-10{border-color:#0000001a!important}.border-black-alpha-20{border-color:#0003!important}.border-black-alpha-30{border-color:#0000004d!important}.border-black-alpha-40{border-color:#0006!important}.border-black-alpha-50{border-color:#00000080!important}.border-black-alpha-60{border-color:#0009!important}.border-black-alpha-70{border-color:#000000b3!important}.border-black-alpha-80{border-color:#000c!important}.border-black-alpha-90{border-color:#000000e6!important}.hover\\:border-black-alpha-10:hover{border-color:#0000001a!important}.hover\\:border-black-alpha-20:hover{border-color:#0003!important}.hover\\:border-black-alpha-30:hover{border-color:#0000004d!important}.hover\\:border-black-alpha-40:hover{border-color:#0006!important}.hover\\:border-black-alpha-50:hover{border-color:#00000080!important}.hover\\:border-black-alpha-60:hover{border-color:#0009!important}.hover\\:border-black-alpha-70:hover{border-color:#000000b3!important}.hover\\:border-black-alpha-80:hover{border-color:#000c!important}.hover\\:border-black-alpha-90:hover{border-color:#000000e6!important}.focus\\:border-black-alpha-10:focus{border-color:#0000001a!important}.focus\\:border-black-alpha-20:focus{border-color:#0003!important}.focus\\:border-black-alpha-30:focus{border-color:#0000004d!important}.focus\\:border-black-alpha-40:focus{border-color:#0006!important}.focus\\:border-black-alpha-50:focus{border-color:#00000080!important}.focus\\:border-black-alpha-60:focus{border-color:#0009!important}.focus\\:border-black-alpha-70:focus{border-color:#000000b3!important}.focus\\:border-black-alpha-80:focus{border-color:#000c!important}.focus\\:border-black-alpha-90:focus{border-color:#000000e6!important}.active\\:border-black-alpha-10:active{border-color:#0000001a!important}.active\\:border-black-alpha-20:active{border-color:#0003!important}.active\\:border-black-alpha-30:active{border-color:#0000004d!important}.active\\:border-black-alpha-40:active{border-color:#0006!important}.active\\:border-black-alpha-50:active{border-color:#00000080!important}.active\\:border-black-alpha-60:active{border-color:#0009!important}.active\\:border-black-alpha-70:active{border-color:#000000b3!important}.active\\:border-black-alpha-80:active{border-color:#000c!important}.active\\:border-black-alpha-90:active{border-color:#000000e6!important}.text-white-alpha-10{color:#ffffff1a!important}.text-white-alpha-20{color:#fff3!important}.text-white-alpha-30{color:#ffffff4d!important}.text-white-alpha-40{color:#fff6!important}.text-white-alpha-50{color:#ffffff80!important}.text-white-alpha-60{color:#fff9!important}.text-white-alpha-70{color:#ffffffb3!important}.text-white-alpha-80{color:#fffc!important}.text-white-alpha-90{color:#ffffffe6!important}.hover\\:text-white-alpha-10:hover{color:#ffffff1a!important}.hover\\:text-white-alpha-20:hover{color:#fff3!important}.hover\\:text-white-alpha-30:hover{color:#ffffff4d!important}.hover\\:text-white-alpha-40:hover{color:#fff6!important}.hover\\:text-white-alpha-50:hover{color:#ffffff80!important}.hover\\:text-white-alpha-60:hover{color:#fff9!important}.hover\\:text-white-alpha-70:hover{color:#ffffffb3!important}.hover\\:text-white-alpha-80:hover{color:#fffc!important}.hover\\:text-white-alpha-90:hover{color:#ffffffe6!important}.focus\\:text-white-alpha-10:focus{color:#ffffff1a!important}.focus\\:text-white-alpha-20:focus{color:#fff3!important}.focus\\:text-white-alpha-30:focus{color:#ffffff4d!important}.focus\\:text-white-alpha-40:focus{color:#fff6!important}.focus\\:text-white-alpha-50:focus{color:#ffffff80!important}.focus\\:text-white-alpha-60:focus{color:#fff9!important}.focus\\:text-white-alpha-70:focus{color:#ffffffb3!important}.focus\\:text-white-alpha-80:focus{color:#fffc!important}.focus\\:text-white-alpha-90:focus{color:#ffffffe6!important}.active\\:text-white-alpha-10:active{color:#ffffff1a!important}.active\\:text-white-alpha-20:active{color:#fff3!important}.active\\:text-white-alpha-30:active{color:#ffffff4d!important}.active\\:text-white-alpha-40:active{color:#fff6!important}.active\\:text-white-alpha-50:active{color:#ffffff80!important}.active\\:text-white-alpha-60:active{color:#fff9!important}.active\\:text-white-alpha-70:active{color:#ffffffb3!important}.active\\:text-white-alpha-80:active{color:#fffc!important}.active\\:text-white-alpha-90:active{color:#ffffffe6!important}.text-black-alpha-10{color:#0000001a!important}.text-black-alpha-20{color:#0003!important}.text-black-alpha-30{color:#0000004d!important}.text-black-alpha-40{color:#0006!important}.text-black-alpha-50{color:#00000080!important}.text-black-alpha-60{color:#0009!important}.text-black-alpha-70{color:#000000b3!important}.text-black-alpha-80{color:#000c!important}.text-black-alpha-90{color:#000000e6!important}.hover\\:text-black-alpha-10:hover{color:#0000001a!important}.hover\\:text-black-alpha-20:hover{color:#0003!important}.hover\\:text-black-alpha-30:hover{color:#0000004d!important}.hover\\:text-black-alpha-40:hover{color:#0006!important}.hover\\:text-black-alpha-50:hover{color:#00000080!important}.hover\\:text-black-alpha-60:hover{color:#0009!important}.hover\\:text-black-alpha-70:hover{color:#000000b3!important}.hover\\:text-black-alpha-80:hover{color:#000c!important}.hover\\:text-black-alpha-90:hover{color:#000000e6!important}.focus\\:text-black-alpha-10:focus{color:#0000001a!important}.focus\\:text-black-alpha-20:focus{color:#0003!important}.focus\\:text-black-alpha-30:focus{color:#0000004d!important}.focus\\:text-black-alpha-40:focus{color:#0006!important}.focus\\:text-black-alpha-50:focus{color:#00000080!important}.focus\\:text-black-alpha-60:focus{color:#0009!important}.focus\\:text-black-alpha-70:focus{color:#000000b3!important}.focus\\:text-black-alpha-80:focus{color:#000c!important}.focus\\:text-black-alpha-90:focus{color:#000000e6!important}.active\\:text-black-alpha-10:active{color:#0000001a!important}.active\\:text-black-alpha-20:active{color:#0003!important}.active\\:text-black-alpha-30:active{color:#0000004d!important}.active\\:text-black-alpha-40:active{color:#0006!important}.active\\:text-black-alpha-50:active{color:#00000080!important}.active\\:text-black-alpha-60:active{color:#0009!important}.active\\:text-black-alpha-70:active{color:#000000b3!important}.active\\:text-black-alpha-80:active{color:#000c!important}.active\\:text-black-alpha-90:active{color:#000000e6!important}.text-primary{color:var(--primary-color)!important}.bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.bg-white{background-color:#fff!important}.border-primary{border-color:var(--primary-color)!important}.text-white{color:#fff!important}.border-white{border-color:#fff!important}.text-color{color:var(--text-color)!important}.text-color-secondary{color:var(--text-color-secondary)!important}.surface-ground{background-color:var(--surface-ground)!important}.surface-section{background-color:var(--surface-section)!important}.surface-card{background-color:var(--surface-card)!important}.surface-overlay{background-color:var(--surface-overlay)!important}.surface-hover{background-color:var(--surface-hover)!important}.surface-border{border-color:var(--surface-border)!important}.focus\\:text-primary:focus{color:var(--primary-color)!important}.hover\\:text-primary:hover,.active\\:text-primary:active{color:var(--primary-color)!important}.focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.hover\\:bg-primary:hover,.active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.hover\\:bg-primary-reverse:hover,.active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.focus\\:bg-white:focus{background-color:#fff!important}.hover\\:bg-white:hover,.active\\:bg-white:active{background-color:#fff!important}.focus\\:border-primary:focus{border-color:var(--primary-color)!important}.hover\\:border-primary:hover,.active\\:border-primary:active{border-color:var(--primary-color)!important}.focus\\:text-white:focus{color:#fff!important}.hover\\:text-white:hover,.active\\:text-white:active{color:#fff!important}.focus\\:border-white:focus{border-color:#fff!important}.hover\\:border-white:hover,.active\\:border-white:active{border-color:#fff!important}.focus\\:text-color:focus{color:var(--text-color)!important}.hover\\:text-color:hover,.active\\:text-color:active{color:var(--text-color)!important}.focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.hover\\:text-color-secondary:hover,.active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.hover\\:surface-ground:hover,.active\\:surface-ground:active{background-color:var(--surface-ground)!important}.focus\\:surface-section:focus{background-color:var(--surface-section)!important}.hover\\:surface-section:hover,.active\\:surface-section:active{background-color:var(--surface-section)!important}.focus\\:surface-card:focus{background-color:var(--surface-card)!important}.hover\\:surface-card:hover,.active\\:surface-card:active{background-color:var(--surface-card)!important}.focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.hover\\:surface-overlay:hover,.active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.hover\\:surface-hover:hover,.active\\:surface-hover:active{background-color:var(--surface-hover)!important}.focus\\:surface-border:focus{border-color:var(--surface-border)!important}.hover\\:surface-border:hover,.active\\:surface-border:active{border-color:var(--surface-border)!important}@media screen and (min-width: 576px){.sm\\:text-primary{color:var(--primary-color)!important}.sm\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:bg-white{background-color:#fff!important}.sm\\:border-primary{border-color:var(--primary-color)!important}.sm\\:text-white{color:#fff!important}.sm\\:border-white{border-color:#fff!important}.sm\\:text-color{color:var(--text-color)!important}.sm\\:text-color-secondary{color:var(--text-color-secondary)!important}.sm\\:surface-ground{background-color:var(--surface-ground)!important}.sm\\:surface-section{background-color:var(--surface-section)!important}.sm\\:surface-card{background-color:var(--surface-card)!important}.sm\\:surface-overlay{background-color:var(--surface-overlay)!important}.sm\\:surface-hover{background-color:var(--surface-hover)!important}.sm\\:surface-border{border-color:var(--surface-border)!important}.sm\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.sm\\:hover\\:text-primary:hover,.sm\\:active\\:text-primary:active{color:var(--primary-color)!important}.sm\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:hover\\:bg-primary:hover,.sm\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:hover\\:bg-primary-reverse:hover,.sm\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:focus\\:bg-white:focus{background-color:#fff!important}.sm\\:hover\\:bg-white:hover,.sm\\:active\\:bg-white:active{background-color:#fff!important}.sm\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.sm\\:hover\\:border-primary:hover,.sm\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.sm\\:focus\\:text-white:focus{color:#fff!important}.sm\\:hover\\:text-white:hover,.sm\\:active\\:text-white:active{color:#fff!important}.sm\\:focus\\:border-white:focus{border-color:#fff!important}.sm\\:hover\\:border-white:hover,.sm\\:active\\:border-white:active{border-color:#fff!important}.sm\\:focus\\:text-color:focus{color:var(--text-color)!important}.sm\\:hover\\:text-color:hover,.sm\\:active\\:text-color:active{color:var(--text-color)!important}.sm\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.sm\\:hover\\:text-color-secondary:hover,.sm\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.sm\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.sm\\:hover\\:surface-ground:hover,.sm\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.sm\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.sm\\:hover\\:surface-section:hover,.sm\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.sm\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.sm\\:hover\\:surface-card:hover,.sm\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.sm\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.sm\\:hover\\:surface-overlay:hover,.sm\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.sm\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.sm\\:hover\\:surface-hover:hover,.sm\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.sm\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.sm\\:hover\\:surface-border:hover,.sm\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 768px){.md\\:text-primary{color:var(--primary-color)!important}.md\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:bg-white{background-color:#fff!important}.md\\:border-primary{border-color:var(--primary-color)!important}.md\\:text-white{color:#fff!important}.md\\:border-white{border-color:#fff!important}.md\\:text-color{color:var(--text-color)!important}.md\\:text-color-secondary{color:var(--text-color-secondary)!important}.md\\:surface-ground{background-color:var(--surface-ground)!important}.md\\:surface-section{background-color:var(--surface-section)!important}.md\\:surface-card{background-color:var(--surface-card)!important}.md\\:surface-overlay{background-color:var(--surface-overlay)!important}.md\\:surface-hover{background-color:var(--surface-hover)!important}.md\\:surface-border{border-color:var(--surface-border)!important}.md\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.md\\:hover\\:text-primary:hover,.md\\:active\\:text-primary:active{color:var(--primary-color)!important}.md\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:hover\\:bg-primary:hover,.md\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:hover\\:bg-primary-reverse:hover,.md\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:focus\\:bg-white:focus{background-color:#fff!important}.md\\:hover\\:bg-white:hover,.md\\:active\\:bg-white:active{background-color:#fff!important}.md\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.md\\:hover\\:border-primary:hover,.md\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.md\\:focus\\:text-white:focus{color:#fff!important}.md\\:hover\\:text-white:hover,.md\\:active\\:text-white:active{color:#fff!important}.md\\:focus\\:border-white:focus{border-color:#fff!important}.md\\:hover\\:border-white:hover,.md\\:active\\:border-white:active{border-color:#fff!important}.md\\:focus\\:text-color:focus{color:var(--text-color)!important}.md\\:hover\\:text-color:hover,.md\\:active\\:text-color:active{color:var(--text-color)!important}.md\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.md\\:hover\\:text-color-secondary:hover,.md\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.md\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.md\\:hover\\:surface-ground:hover,.md\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.md\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.md\\:hover\\:surface-section:hover,.md\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.md\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.md\\:hover\\:surface-card:hover,.md\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.md\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.md\\:hover\\:surface-overlay:hover,.md\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.md\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.md\\:hover\\:surface-hover:hover,.md\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.md\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.md\\:hover\\:surface-border:hover,.md\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 992px){.lg\\:text-primary{color:var(--primary-color)!important}.lg\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:bg-white{background-color:#fff!important}.lg\\:border-primary{border-color:var(--primary-color)!important}.lg\\:text-white{color:#fff!important}.lg\\:border-white{border-color:#fff!important}.lg\\:text-color{color:var(--text-color)!important}.lg\\:text-color-secondary{color:var(--text-color-secondary)!important}.lg\\:surface-ground{background-color:var(--surface-ground)!important}.lg\\:surface-section{background-color:var(--surface-section)!important}.lg\\:surface-card{background-color:var(--surface-card)!important}.lg\\:surface-overlay{background-color:var(--surface-overlay)!important}.lg\\:surface-hover{background-color:var(--surface-hover)!important}.lg\\:surface-border{border-color:var(--surface-border)!important}.lg\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.lg\\:hover\\:text-primary:hover,.lg\\:active\\:text-primary:active{color:var(--primary-color)!important}.lg\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:hover\\:bg-primary:hover,.lg\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:hover\\:bg-primary-reverse:hover,.lg\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:focus\\:bg-white:focus{background-color:#fff!important}.lg\\:hover\\:bg-white:hover,.lg\\:active\\:bg-white:active{background-color:#fff!important}.lg\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.lg\\:hover\\:border-primary:hover,.lg\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.lg\\:focus\\:text-white:focus{color:#fff!important}.lg\\:hover\\:text-white:hover,.lg\\:active\\:text-white:active{color:#fff!important}.lg\\:focus\\:border-white:focus{border-color:#fff!important}.lg\\:hover\\:border-white:hover,.lg\\:active\\:border-white:active{border-color:#fff!important}.lg\\:focus\\:text-color:focus{color:var(--text-color)!important}.lg\\:hover\\:text-color:hover,.lg\\:active\\:text-color:active{color:var(--text-color)!important}.lg\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.lg\\:hover\\:text-color-secondary:hover,.lg\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.lg\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.lg\\:hover\\:surface-ground:hover,.lg\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.lg\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.lg\\:hover\\:surface-section:hover,.lg\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.lg\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.lg\\:hover\\:surface-card:hover,.lg\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.lg\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.lg\\:hover\\:surface-overlay:hover,.lg\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.lg\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.lg\\:hover\\:surface-hover:hover,.lg\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.lg\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.lg\\:hover\\:surface-border:hover,.lg\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 1200px){.xl\\:text-primary{color:var(--primary-color)!important}.xl\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:bg-white{background-color:#fff!important}.xl\\:border-primary{border-color:var(--primary-color)!important}.xl\\:text-white{color:#fff!important}.xl\\:border-white{border-color:#fff!important}.xl\\:text-color{color:var(--text-color)!important}.xl\\:text-color-secondary{color:var(--text-color-secondary)!important}.xl\\:surface-ground{background-color:var(--surface-ground)!important}.xl\\:surface-section{background-color:var(--surface-section)!important}.xl\\:surface-card{background-color:var(--surface-card)!important}.xl\\:surface-overlay{background-color:var(--surface-overlay)!important}.xl\\:surface-hover{background-color:var(--surface-hover)!important}.xl\\:surface-border{border-color:var(--surface-border)!important}.xl\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.xl\\:hover\\:text-primary:hover,.xl\\:active\\:text-primary:active{color:var(--primary-color)!important}.xl\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:hover\\:bg-primary:hover,.xl\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:hover\\:bg-primary-reverse:hover,.xl\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:focus\\:bg-white:focus{background-color:#fff!important}.xl\\:hover\\:bg-white:hover,.xl\\:active\\:bg-white:active{background-color:#fff!important}.xl\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.xl\\:hover\\:border-primary:hover,.xl\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.xl\\:focus\\:text-white:focus{color:#fff!important}.xl\\:hover\\:text-white:hover,.xl\\:active\\:text-white:active{color:#fff!important}.xl\\:focus\\:border-white:focus{border-color:#fff!important}.xl\\:hover\\:border-white:hover,.xl\\:active\\:border-white:active{border-color:#fff!important}.xl\\:focus\\:text-color:focus{color:var(--text-color)!important}.xl\\:hover\\:text-color:hover,.xl\\:active\\:text-color:active{color:var(--text-color)!important}.xl\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.xl\\:hover\\:text-color-secondary:hover,.xl\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.xl\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.xl\\:hover\\:surface-ground:hover,.xl\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.xl\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.xl\\:hover\\:surface-section:hover,.xl\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.xl\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.xl\\:hover\\:surface-card:hover,.xl\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.xl\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.xl\\:hover\\:surface-overlay:hover,.xl\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.xl\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.xl\\:hover\\:surface-hover:hover,.xl\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.xl\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.xl\\:hover\\:surface-border:hover,.xl\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}.field{margin-bottom:1rem}.field>label{display:inline-block;margin-bottom:.5rem}.field.grid>label{display:flex;align-items:center}.field>small{margin-top:.25rem}.field.grid,.formgrid.grid{margin-top:0}.field.grid .col-fixed,.formgrid.grid .col-fixed,.field.grid .col,.formgrid.grid .col,.field.grid .col-1,.formgrid.grid .col-1,.field.grid .col-2,.formgrid.grid .col-2,.field.grid .col-3,.formgrid.grid .col-3,.field.grid .col-4,.formgrid.grid .col-4,.field.grid .col-5,.formgrid.grid .col-5,.field.grid .col-6,.formgrid.grid .col-6,.field.grid .col-7,.formgrid.grid .col-7,.field.grid .col-8,.formgrid.grid .col-8,.field.grid .col-9,.formgrid.grid .col-9,.field.grid .col-10,.formgrid.grid .col-10,.field.grid .col-11,.formgrid.grid .col-11,.field.grid .col-12,.formgrid.grid .col-12{padding-top:0;padding-bottom:0}.formgroup-inline{display:flex;flex-wrap:wrap;align-items:flex-start}.formgroup-inline .field,.formgroup-inline .field-checkbox,.formgroup-inline .field-radiobutton{margin-right:1rem}.formgroup-inline .field>label,.formgroup-inline .field-checkbox>label,.formgroup-inline .field-radiobutton>label{margin-right:.5rem;margin-bottom:0}.field-checkbox,.field-radiobutton{margin-bottom:1rem;display:flex;align-items:center}.field-checkbox>label,.field-radiobutton>label{margin-left:.5rem;line-height:1}.hidden{display:none!important}.block{display:block!important}.inline{display:inline!important}.inline-block{display:inline-block!important}.flex{display:flex!important}.inline-flex{display:inline-flex!important}@media screen and (min-width: 576px){.sm\\:hidden{display:none!important}.sm\\:block{display:block!important}.sm\\:inline{display:inline!important}.sm\\:inline-block{display:inline-block!important}.sm\\:flex{display:flex!important}.sm\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 768px){.md\\:hidden{display:none!important}.md\\:block{display:block!important}.md\\:inline{display:inline!important}.md\\:inline-block{display:inline-block!important}.md\\:flex{display:flex!important}.md\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 992px){.lg\\:hidden{display:none!important}.lg\\:block{display:block!important}.lg\\:inline{display:inline!important}.lg\\:inline-block{display:inline-block!important}.lg\\:flex{display:flex!important}.lg\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 1200px){.xl\\:hidden{display:none!important}.xl\\:block{display:block!important}.xl\\:inline{display:inline!important}.xl\\:inline-block{display:inline-block!important}.xl\\:flex{display:flex!important}.xl\\:inline-flex{display:inline-flex!important}}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-left{text-align:left!important}.text-right{text-align:right!important}@media screen and (min-width: 576px){.sm\\:text-center{text-align:center!important}.sm\\:text-justify{text-align:justify!important}.sm\\:text-left{text-align:left!important}.sm\\:text-right{text-align:right!important}}@media screen and (min-width: 768px){.md\\:text-center{text-align:center!important}.md\\:text-justify{text-align:justify!important}.md\\:text-left{text-align:left!important}.md\\:text-right{text-align:right!important}}@media screen and (min-width: 992px){.lg\\:text-center{text-align:center!important}.lg\\:text-justify{text-align:justify!important}.lg\\:text-left{text-align:left!important}.lg\\:text-right{text-align:right!important}}@media screen and (min-width: 1200px){.xl\\:text-center{text-align:center!important}.xl\\:text-justify{text-align:justify!important}.xl\\:text-left{text-align:left!important}.xl\\:text-right{text-align:right!important}}.underline{text-decoration:underline!important}.line-through{text-decoration:line-through!important}.no-underline{text-decoration:none!important}.focus\\:underline:focus{text-decoration:underline!important}.hover\\:underline:hover,.active\\:underline:active{text-decoration:underline!important}.focus\\:line-through:focus{text-decoration:line-through!important}.hover\\:line-through:hover,.active\\:line-through:active{text-decoration:line-through!important}.focus\\:no-underline:focus{text-decoration:none!important}.hover\\:no-underline:hover,.active\\:no-underline:active{text-decoration:none!important}.lowercase{text-transform:lowercase!important}.uppercase{text-transform:uppercase!important}.capitalize{text-transform:capitalize!important}.text-overflow-clip{text-overflow:clip!important}.text-overflow-ellipsis{text-overflow:ellipsis!important}@media screen and (min-width: 576px){.sm\\:text-overflow-clip{text-overflow:clip!important}.sm\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 768px){.md\\:text-overflow-clip{text-overflow:clip!important}.md\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 992px){.lg\\:text-overflow-clip{text-overflow:clip!important}.lg\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 1200px){.xl\\:text-overflow-clip{text-overflow:clip!important}.xl\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}.font-light{font-weight:300!important}.font-normal{font-weight:400!important}.font-medium{font-weight:500!important}.font-semibold{font-weight:600!important}.font-bold{font-weight:700!important}@media screen and (min-width: 576px){.sm\\:font-light{font-weight:300!important}.sm\\:font-normal{font-weight:400!important}.sm\\:font-medium{font-weight:500!important}.sm\\:font-semibold{font-weight:600!important}.sm\\:font-bold{font-weight:700!important}}@media screen and (min-width: 768px){.md\\:font-light{font-weight:300!important}.md\\:font-normal{font-weight:400!important}.md\\:font-medium{font-weight:500!important}.md\\:font-semibold{font-weight:600!important}.md\\:font-bold{font-weight:700!important}}@media screen and (min-width: 992px){.lg\\:font-light{font-weight:300!important}.lg\\:font-normal{font-weight:400!important}.lg\\:font-medium{font-weight:500!important}.lg\\:font-semibold{font-weight:600!important}.lg\\:font-bold{font-weight:700!important}}@media screen and (min-width: 1200px){.xl\\:font-light{font-weight:300!important}.xl\\:font-normal{font-weight:400!important}.xl\\:font-medium{font-weight:500!important}.xl\\:font-semibold{font-weight:600!important}.xl\\:font-bold{font-weight:700!important}}.font-italic{font-style:italic!important}.text-xs{font-size:.75rem!important}.text-sm{font-size:.875rem!important}.text-base{font-size:1rem!important}.text-lg{font-size:1.125rem!important}.text-xl{font-size:1.25rem!important}.text-2xl{font-size:1.5rem!important}.text-3xl{font-size:1.75rem!important}.text-4xl{font-size:2rem!important}.text-5xl{font-size:2.5rem!important}.text-6xl{font-size:3rem!important}.text-7xl{font-size:4rem!important}.text-8xl{font-size:6rem!important}@media screen and (min-width: 576px){.sm\\:text-xs{font-size:.75rem!important}.sm\\:text-sm{font-size:.875rem!important}.sm\\:text-base{font-size:1rem!important}.sm\\:text-lg{font-size:1.125rem!important}.sm\\:text-xl{font-size:1.25rem!important}.sm\\:text-2xl{font-size:1.5rem!important}.sm\\:text-3xl{font-size:1.75rem!important}.sm\\:text-4xl{font-size:2rem!important}.sm\\:text-5xl{font-size:2.5rem!important}.sm\\:text-6xl{font-size:3rem!important}.sm\\:text-7xl{font-size:4rem!important}.sm\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 768px){.md\\:text-xs{font-size:.75rem!important}.md\\:text-sm{font-size:.875rem!important}.md\\:text-base{font-size:1rem!important}.md\\:text-lg{font-size:1.125rem!important}.md\\:text-xl{font-size:1.25rem!important}.md\\:text-2xl{font-size:1.5rem!important}.md\\:text-3xl{font-size:1.75rem!important}.md\\:text-4xl{font-size:2rem!important}.md\\:text-5xl{font-size:2.5rem!important}.md\\:text-6xl{font-size:3rem!important}.md\\:text-7xl{font-size:4rem!important}.md\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 992px){.lg\\:text-xs{font-size:.75rem!important}.lg\\:text-sm{font-size:.875rem!important}.lg\\:text-base{font-size:1rem!important}.lg\\:text-lg{font-size:1.125rem!important}.lg\\:text-xl{font-size:1.25rem!important}.lg\\:text-2xl{font-size:1.5rem!important}.lg\\:text-3xl{font-size:1.75rem!important}.lg\\:text-4xl{font-size:2rem!important}.lg\\:text-5xl{font-size:2.5rem!important}.lg\\:text-6xl{font-size:3rem!important}.lg\\:text-7xl{font-size:4rem!important}.lg\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 1200px){.xl\\:text-xs{font-size:.75rem!important}.xl\\:text-sm{font-size:.875rem!important}.xl\\:text-base{font-size:1rem!important}.xl\\:text-lg{font-size:1.125rem!important}.xl\\:text-xl{font-size:1.25rem!important}.xl\\:text-2xl{font-size:1.5rem!important}.xl\\:text-3xl{font-size:1.75rem!important}.xl\\:text-4xl{font-size:2rem!important}.xl\\:text-5xl{font-size:2.5rem!important}.xl\\:text-6xl{font-size:3rem!important}.xl\\:text-7xl{font-size:4rem!important}.xl\\:text-8xl{font-size:6rem!important}}.line-height-1{line-height:1!important}.line-height-2{line-height:1.25!important}.line-height-3{line-height:1.5!important}.line-height-4{line-height:2!important}.white-space-normal{white-space:normal!important}.white-space-nowrap{white-space:nowrap!important}.vertical-align-baseline{vertical-align:baseline!important}.vertical-align-top{vertical-align:top!important}.vertical-align-middle{vertical-align:middle!important}.vertical-align-bottom{vertical-align:bottom!important}.vertical-align-text-top{vertical-align:text-top!important}.vertical-align-text-bottom{vertical-align:text-bottom!important}.vertical-align-sub{vertical-align:sub!important}.vertical-align-super{vertical-align:super!important}@media screen and (min-width: 576px){.sm\\:vertical-align-baseline{vertical-align:baseline!important}.sm\\:vertical-align-top{vertical-align:top!important}.sm\\:vertical-align-middle{vertical-align:middle!important}.sm\\:vertical-align-bottom{vertical-align:bottom!important}.sm\\:vertical-align-text-top{vertical-align:text-top!important}.sm\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.sm\\:vertical-align-sub{vertical-align:sub!important}.sm\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 768px){.md\\:vertical-align-baseline{vertical-align:baseline!important}.md\\:vertical-align-top{vertical-align:top!important}.md\\:vertical-align-middle{vertical-align:middle!important}.md\\:vertical-align-bottom{vertical-align:bottom!important}.md\\:vertical-align-text-top{vertical-align:text-top!important}.md\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.md\\:vertical-align-sub{vertical-align:sub!important}.md\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 992px){.lg\\:vertical-align-baseline{vertical-align:baseline!important}.lg\\:vertical-align-top{vertical-align:top!important}.lg\\:vertical-align-middle{vertical-align:middle!important}.lg\\:vertical-align-bottom{vertical-align:bottom!important}.lg\\:vertical-align-text-top{vertical-align:text-top!important}.lg\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.lg\\:vertical-align-sub{vertical-align:sub!important}.lg\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 1200px){.xl\\:vertical-align-baseline{vertical-align:baseline!important}.xl\\:vertical-align-top{vertical-align:top!important}.xl\\:vertical-align-middle{vertical-align:middle!important}.xl\\:vertical-align-bottom{vertical-align:bottom!important}.xl\\:vertical-align-text-top{vertical-align:text-top!important}.xl\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.xl\\:vertical-align-sub{vertical-align:sub!important}.xl\\:vertical-align-super{vertical-align:super!important}}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column{flex-direction:column!important}.flex-column-reverse{flex-direction:column-reverse!important}@media screen and (min-width: 576px){.sm\\:flex-row{flex-direction:row!important}.sm\\:flex-row-reverse{flex-direction:row-reverse!important}.sm\\:flex-column{flex-direction:column!important}.sm\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 768px){.md\\:flex-row{flex-direction:row!important}.md\\:flex-row-reverse{flex-direction:row-reverse!important}.md\\:flex-column{flex-direction:column!important}.md\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 992px){.lg\\:flex-row{flex-direction:row!important}.lg\\:flex-row-reverse{flex-direction:row-reverse!important}.lg\\:flex-column{flex-direction:column!important}.lg\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 1200px){.xl\\:flex-row{flex-direction:row!important}.xl\\:flex-row-reverse{flex-direction:row-reverse!important}.xl\\:flex-column{flex-direction:column!important}.xl\\:flex-column-reverse{flex-direction:column-reverse!important}}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-nowrap{flex-wrap:nowrap!important}@media screen and (min-width: 576px){.sm\\:flex-wrap{flex-wrap:wrap!important}.sm\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.sm\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 768px){.md\\:flex-wrap{flex-wrap:wrap!important}.md\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.md\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 992px){.lg\\:flex-wrap{flex-wrap:wrap!important}.lg\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.lg\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 1200px){.xl\\:flex-wrap{flex-wrap:wrap!important}.xl\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.xl\\:flex-nowrap{flex-wrap:nowrap!important}}.justify-content-start{justify-content:flex-start!important}.justify-content-end,:host ::ng-deep .w-filter-panel-buttons{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:justify-content-start{justify-content:flex-start!important}.sm\\:justify-content-end{justify-content:flex-end!important}.sm\\:justify-content-center{justify-content:center!important}.sm\\:justify-content-between{justify-content:space-between!important}.sm\\:justify-content-around{justify-content:space-around!important}.sm\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:justify-content-start{justify-content:flex-start!important}.md\\:justify-content-end{justify-content:flex-end!important}.md\\:justify-content-center{justify-content:center!important}.md\\:justify-content-between{justify-content:space-between!important}.md\\:justify-content-around{justify-content:space-around!important}.md\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:justify-content-start{justify-content:flex-start!important}.lg\\:justify-content-end{justify-content:flex-end!important}.lg\\:justify-content-center{justify-content:center!important}.lg\\:justify-content-between{justify-content:space-between!important}.lg\\:justify-content-around{justify-content:space-around!important}.lg\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:justify-content-start{justify-content:flex-start!important}.xl\\:justify-content-end{justify-content:flex-end!important}.xl\\:justify-content-center{justify-content:center!important}.xl\\:justify-content-between{justify-content:space-between!important}.xl\\:justify-content-around{justify-content:space-around!important}.xl\\:justify-content-evenly{justify-content:space-evenly!important}}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-evenly{align-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:align-content-start{align-content:flex-start!important}.sm\\:align-content-end{align-content:flex-end!important}.sm\\:align-content-center{align-content:center!important}.sm\\:align-content-between{align-content:space-between!important}.sm\\:align-content-around{align-content:space-around!important}.sm\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:align-content-start{align-content:flex-start!important}.md\\:align-content-end{align-content:flex-end!important}.md\\:align-content-center{align-content:center!important}.md\\:align-content-between{align-content:space-between!important}.md\\:align-content-around{align-content:space-around!important}.md\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:align-content-start{align-content:flex-start!important}.lg\\:align-content-end{align-content:flex-end!important}.lg\\:align-content-center{align-content:center!important}.lg\\:align-content-between{align-content:space-between!important}.lg\\:align-content-around{align-content:space-around!important}.lg\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:align-content-start{align-content:flex-start!important}.xl\\:align-content-end{align-content:flex-end!important}.xl\\:align-content-center{align-content:center!important}.xl\\:align-content-between{align-content:space-between!important}.xl\\:align-content-around{align-content:space-around!important}.xl\\:align-content-evenly{align-content:space-evenly!important}}.align-items-stretch{align-items:stretch!important}.align-items-start{align-items:flex-start!important}.align-items-center{align-items:center!important}.align-items-end,:host ::ng-deep .w-filter-panel-buttons{align-items:flex-end!important}.align-items-baseline{align-items:baseline!important}@media screen and (min-width: 576px){.sm\\:align-items-stretch{align-items:stretch!important}.sm\\:align-items-start{align-items:flex-start!important}.sm\\:align-items-center{align-items:center!important}.sm\\:align-items-end{align-items:flex-end!important}.sm\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 768px){.md\\:align-items-stretch{align-items:stretch!important}.md\\:align-items-start{align-items:flex-start!important}.md\\:align-items-center{align-items:center!important}.md\\:align-items-end{align-items:flex-end!important}.md\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-items-stretch{align-items:stretch!important}.lg\\:align-items-start{align-items:flex-start!important}.lg\\:align-items-center{align-items:center!important}.lg\\:align-items-end{align-items:flex-end!important}.lg\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-items-stretch{align-items:stretch!important}.xl\\:align-items-start{align-items:flex-start!important}.xl\\:align-items-center{align-items:center!important}.xl\\:align-items-end{align-items:flex-end!important}.xl\\:align-items-baseline{align-items:baseline!important}}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-stretch{align-self:stretch!important}.align-self-baseline{align-self:baseline!important}@media screen and (min-width: 576px){.sm\\:align-self-auto{align-self:auto!important}.sm\\:align-self-start{align-self:flex-start!important}.sm\\:align-self-end{align-self:flex-end!important}.sm\\:align-self-center{align-self:center!important}.sm\\:align-self-stretch{align-self:stretch!important}.sm\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 768px){.md\\:align-self-auto{align-self:auto!important}.md\\:align-self-start{align-self:flex-start!important}.md\\:align-self-end{align-self:flex-end!important}.md\\:align-self-center{align-self:center!important}.md\\:align-self-stretch{align-self:stretch!important}.md\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-self-auto{align-self:auto!important}.lg\\:align-self-start{align-self:flex-start!important}.lg\\:align-self-end{align-self:flex-end!important}.lg\\:align-self-center{align-self:center!important}.lg\\:align-self-stretch{align-self:stretch!important}.lg\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-self-auto{align-self:auto!important}.xl\\:align-self-start{align-self:flex-start!important}.xl\\:align-self-end{align-self:flex-end!important}.xl\\:align-self-center{align-self:center!important}.xl\\:align-self-stretch{align-self:stretch!important}.xl\\:align-self-baseline{align-self:baseline!important}}.flex-order-0{order:0!important}.flex-order-1{order:1!important}.flex-order-2{order:2!important}.flex-order-3{order:3!important}.flex-order-4{order:4!important}.flex-order-5{order:5!important}.flex-order-6{order:6!important}@media screen and (min-width: 576px){.sm\\:flex-order-0{order:0!important}.sm\\:flex-order-1{order:1!important}.sm\\:flex-order-2{order:2!important}.sm\\:flex-order-3{order:3!important}.sm\\:flex-order-4{order:4!important}.sm\\:flex-order-5{order:5!important}.sm\\:flex-order-6{order:6!important}}@media screen and (min-width: 768px){.md\\:flex-order-0{order:0!important}.md\\:flex-order-1{order:1!important}.md\\:flex-order-2{order:2!important}.md\\:flex-order-3{order:3!important}.md\\:flex-order-4{order:4!important}.md\\:flex-order-5{order:5!important}.md\\:flex-order-6{order:6!important}}@media screen and (min-width: 992px){.lg\\:flex-order-0{order:0!important}.lg\\:flex-order-1{order:1!important}.lg\\:flex-order-2{order:2!important}.lg\\:flex-order-3{order:3!important}.lg\\:flex-order-4{order:4!important}.lg\\:flex-order-5{order:5!important}.lg\\:flex-order-6{order:6!important}}@media screen and (min-width: 1200px){.xl\\:flex-order-0{order:0!important}.xl\\:flex-order-1{order:1!important}.xl\\:flex-order-2{order:2!important}.xl\\:flex-order-3{order:3!important}.xl\\:flex-order-4{order:4!important}.xl\\:flex-order-5{order:5!important}.xl\\:flex-order-6{order:6!important}}.flex-1{flex:1 1 0%!important}.flex-auto{flex:1 1 auto!important}.flex-initial{flex:0 1 auto!important}.flex-none{flex:none!important}@media screen and (min-width: 576px){.sm\\:flex-1{flex:1 1 0%!important}.sm\\:flex-auto{flex:1 1 auto!important}.sm\\:flex-initial{flex:0 1 auto!important}.sm\\:flex-none{flex:none!important}}@media screen and (min-width: 768px){.md\\:flex-1{flex:1 1 0%!important}.md\\:flex-auto{flex:1 1 auto!important}.md\\:flex-initial{flex:0 1 auto!important}.md\\:flex-none{flex:none!important}}@media screen and (min-width: 992px){.lg\\:flex-1{flex:1 1 0%!important}.lg\\:flex-auto{flex:1 1 auto!important}.lg\\:flex-initial{flex:0 1 auto!important}.lg\\:flex-none{flex:none!important}}@media screen and (min-width: 1200px){.xl\\:flex-1{flex:1 1 0%!important}.xl\\:flex-auto{flex:1 1 auto!important}.xl\\:flex-initial{flex:0 1 auto!important}.xl\\:flex-none{flex:none!important}}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}@media screen and (min-width: 576px){.sm\\:flex-grow-0{flex-grow:0!important}.sm\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 768px){.md\\:flex-grow-0{flex-grow:0!important}.md\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 992px){.lg\\:flex-grow-0{flex-grow:0!important}.lg\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-grow-0{flex-grow:0!important}.xl\\:flex-grow-1{flex-grow:1!important}}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}@media screen and (min-width: 576px){.sm\\:flex-shrink-0{flex-shrink:0!important}.sm\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 768px){.md\\:flex-shrink-0{flex-shrink:0!important}.md\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 992px){.lg\\:flex-shrink-0{flex-shrink:0!important}.lg\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-shrink-0{flex-shrink:0!important}.xl\\:flex-shrink-1{flex-shrink:1!important}}.gap-0{gap:0rem!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:2rem!important}.gap-6{gap:3rem!important}.gap-7{gap:4rem!important}.gap-8{gap:5rem!important}.row-gap-0{row-gap:0rem!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:2rem!important}.row-gap-6{row-gap:3rem!important}.row-gap-7{row-gap:4rem!important}.row-gap-8{row-gap:5rem!important}.column-gap-0{column-gap:0rem!important}.column-gap-1{column-gap:.25rem!important}.column-gap-2{column-gap:.5rem!important}.column-gap-3{column-gap:1rem!important}.column-gap-4{column-gap:1.5rem!important}.column-gap-5{column-gap:2rem!important}.column-gap-6{column-gap:3rem!important}.column-gap-7{column-gap:4rem!important}.column-gap-8{column-gap:5rem!important}@media screen and (min-width: 576px){.sm\\:gap-0{gap:0rem!important}.sm\\:gap-1{gap:.25rem!important}.sm\\:gap-2{gap:.5rem!important}.sm\\:gap-3{gap:1rem!important}.sm\\:gap-4{gap:1.5rem!important}.sm\\:gap-5{gap:2rem!important}.sm\\:gap-6{gap:3rem!important}.sm\\:gap-7{gap:4rem!important}.sm\\:gap-8{gap:5rem!important}.sm\\:row-gap-0{row-gap:0rem!important}.sm\\:row-gap-1{row-gap:.25rem!important}.sm\\:row-gap-2{row-gap:.5rem!important}.sm\\:row-gap-3{row-gap:1rem!important}.sm\\:row-gap-4{row-gap:1.5rem!important}.sm\\:row-gap-5{row-gap:2rem!important}.sm\\:row-gap-6{row-gap:3rem!important}.sm\\:row-gap-7{row-gap:4rem!important}.sm\\:row-gap-8{row-gap:5rem!important}.sm\\:column-gap-0{column-gap:0rem!important}.sm\\:column-gap-1{column-gap:.25rem!important}.sm\\:column-gap-2{column-gap:.5rem!important}.sm\\:column-gap-3{column-gap:1rem!important}.sm\\:column-gap-4{column-gap:1.5rem!important}.sm\\:column-gap-5{column-gap:2rem!important}.sm\\:column-gap-6{column-gap:3rem!important}.sm\\:column-gap-7{column-gap:4rem!important}.sm\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 768px){.md\\:gap-0{gap:0rem!important}.md\\:gap-1{gap:.25rem!important}.md\\:gap-2{gap:.5rem!important}.md\\:gap-3{gap:1rem!important}.md\\:gap-4{gap:1.5rem!important}.md\\:gap-5{gap:2rem!important}.md\\:gap-6{gap:3rem!important}.md\\:gap-7{gap:4rem!important}.md\\:gap-8{gap:5rem!important}.md\\:row-gap-0{row-gap:0rem!important}.md\\:row-gap-1{row-gap:.25rem!important}.md\\:row-gap-2{row-gap:.5rem!important}.md\\:row-gap-3{row-gap:1rem!important}.md\\:row-gap-4{row-gap:1.5rem!important}.md\\:row-gap-5{row-gap:2rem!important}.md\\:row-gap-6{row-gap:3rem!important}.md\\:row-gap-7{row-gap:4rem!important}.md\\:row-gap-8{row-gap:5rem!important}.md\\:column-gap-0{column-gap:0rem!important}.md\\:column-gap-1{column-gap:.25rem!important}.md\\:column-gap-2{column-gap:.5rem!important}.md\\:column-gap-3{column-gap:1rem!important}.md\\:column-gap-4{column-gap:1.5rem!important}.md\\:column-gap-5{column-gap:2rem!important}.md\\:column-gap-6{column-gap:3rem!important}.md\\:column-gap-7{column-gap:4rem!important}.md\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 992px){.lg\\:gap-0{gap:0rem!important}.lg\\:gap-1{gap:.25rem!important}.lg\\:gap-2{gap:.5rem!important}.lg\\:gap-3{gap:1rem!important}.lg\\:gap-4{gap:1.5rem!important}.lg\\:gap-5{gap:2rem!important}.lg\\:gap-6{gap:3rem!important}.lg\\:gap-7{gap:4rem!important}.lg\\:gap-8{gap:5rem!important}.lg\\:row-gap-0{row-gap:0rem!important}.lg\\:row-gap-1{row-gap:.25rem!important}.lg\\:row-gap-2{row-gap:.5rem!important}.lg\\:row-gap-3{row-gap:1rem!important}.lg\\:row-gap-4{row-gap:1.5rem!important}.lg\\:row-gap-5{row-gap:2rem!important}.lg\\:row-gap-6{row-gap:3rem!important}.lg\\:row-gap-7{row-gap:4rem!important}.lg\\:row-gap-8{row-gap:5rem!important}.lg\\:column-gap-0{column-gap:0rem!important}.lg\\:column-gap-1{column-gap:.25rem!important}.lg\\:column-gap-2{column-gap:.5rem!important}.lg\\:column-gap-3{column-gap:1rem!important}.lg\\:column-gap-4{column-gap:1.5rem!important}.lg\\:column-gap-5{column-gap:2rem!important}.lg\\:column-gap-6{column-gap:3rem!important}.lg\\:column-gap-7{column-gap:4rem!important}.lg\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 1200px){.xl\\:gap-0{gap:0rem!important}.xl\\:gap-1{gap:.25rem!important}.xl\\:gap-2{gap:.5rem!important}.xl\\:gap-3{gap:1rem!important}.xl\\:gap-4{gap:1.5rem!important}.xl\\:gap-5{gap:2rem!important}.xl\\:gap-6{gap:3rem!important}.xl\\:gap-7{gap:4rem!important}.xl\\:gap-8{gap:5rem!important}.xl\\:row-gap-0{row-gap:0rem!important}.xl\\:row-gap-1{row-gap:.25rem!important}.xl\\:row-gap-2{row-gap:.5rem!important}.xl\\:row-gap-3{row-gap:1rem!important}.xl\\:row-gap-4{row-gap:1.5rem!important}.xl\\:row-gap-5{row-gap:2rem!important}.xl\\:row-gap-6{row-gap:3rem!important}.xl\\:row-gap-7{row-gap:4rem!important}.xl\\:row-gap-8{row-gap:5rem!important}.xl\\:column-gap-0{column-gap:0rem!important}.xl\\:column-gap-1{column-gap:.25rem!important}.xl\\:column-gap-2{column-gap:.5rem!important}.xl\\:column-gap-3{column-gap:1rem!important}.xl\\:column-gap-4{column-gap:1.5rem!important}.xl\\:column-gap-5{column-gap:2rem!important}.xl\\:column-gap-6{column-gap:3rem!important}.xl\\:column-gap-7{column-gap:4rem!important}.xl\\:column-gap-8{column-gap:5rem!important}}.p-0{padding:0rem!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:2rem!important}.p-6{padding:3rem!important}.p-7{padding:4rem!important}.p-8{padding:5rem!important}.pt-0{padding-top:0rem!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:2rem!important}.pt-6{padding-top:3rem!important}.pt-7{padding-top:4rem!important}.pt-8{padding-top:5rem!important}.pr-0{padding-right:0rem!important}.pr-1{padding-right:.25rem!important}.pr-2{padding-right:.5rem!important}.pr-3{padding-right:1rem!important}.pr-4{padding-right:1.5rem!important}.pr-5{padding-right:2rem!important}.pr-6{padding-right:3rem!important}.pr-7{padding-right:4rem!important}.pr-8{padding-right:5rem!important}.pl-0{padding-left:0rem!important}.pl-1{padding-left:.25rem!important}.pl-2{padding-left:.5rem!important}.pl-3{padding-left:1rem!important}.pl-4{padding-left:1.5rem!important}.pl-5{padding-left:2rem!important}.pl-6{padding-left:3rem!important}.pl-7{padding-left:4rem!important}.pl-8{padding-left:5rem!important}.pb-0{padding-bottom:0rem!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:2rem!important}.pb-6{padding-bottom:3rem!important}.pb-7{padding-bottom:4rem!important}.pb-8{padding-bottom:5rem!important}.px-0{padding-left:0rem!important;padding-right:0rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:2rem!important;padding-right:2rem!important}.px-6{padding-left:3rem!important;padding-right:3rem!important}.px-7{padding-left:4rem!important;padding-right:4rem!important}.px-8{padding-left:5rem!important;padding-right:5rem!important}.py-0{padding-top:0rem!important;padding-bottom:0rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:2rem!important;padding-bottom:2rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.py-7{padding-top:4rem!important;padding-bottom:4rem!important}.py-8{padding-top:5rem!important;padding-bottom:5rem!important}@media screen and (min-width: 576px){.sm\\:p-0{padding:0rem!important}.sm\\:p-1{padding:.25rem!important}.sm\\:p-2{padding:.5rem!important}.sm\\:p-3{padding:1rem!important}.sm\\:p-4{padding:1.5rem!important}.sm\\:p-5{padding:2rem!important}.sm\\:p-6{padding:3rem!important}.sm\\:p-7{padding:4rem!important}.sm\\:p-8{padding:5rem!important}.sm\\:pt-0{padding-top:0rem!important}.sm\\:pt-1{padding-top:.25rem!important}.sm\\:pt-2{padding-top:.5rem!important}.sm\\:pt-3{padding-top:1rem!important}.sm\\:pt-4{padding-top:1.5rem!important}.sm\\:pt-5{padding-top:2rem!important}.sm\\:pt-6{padding-top:3rem!important}.sm\\:pt-7{padding-top:4rem!important}.sm\\:pt-8{padding-top:5rem!important}.sm\\:pr-0{padding-right:0rem!important}.sm\\:pr-1{padding-right:.25rem!important}.sm\\:pr-2{padding-right:.5rem!important}.sm\\:pr-3{padding-right:1rem!important}.sm\\:pr-4{padding-right:1.5rem!important}.sm\\:pr-5{padding-right:2rem!important}.sm\\:pr-6{padding-right:3rem!important}.sm\\:pr-7{padding-right:4rem!important}.sm\\:pr-8{padding-right:5rem!important}.sm\\:pl-0{padding-left:0rem!important}.sm\\:pl-1{padding-left:.25rem!important}.sm\\:pl-2{padding-left:.5rem!important}.sm\\:pl-3{padding-left:1rem!important}.sm\\:pl-4{padding-left:1.5rem!important}.sm\\:pl-5{padding-left:2rem!important}.sm\\:pl-6{padding-left:3rem!important}.sm\\:pl-7{padding-left:4rem!important}.sm\\:pl-8{padding-left:5rem!important}.sm\\:pb-0{padding-bottom:0rem!important}.sm\\:pb-1{padding-bottom:.25rem!important}.sm\\:pb-2{padding-bottom:.5rem!important}.sm\\:pb-3{padding-bottom:1rem!important}.sm\\:pb-4{padding-bottom:1.5rem!important}.sm\\:pb-5{padding-bottom:2rem!important}.sm\\:pb-6{padding-bottom:3rem!important}.sm\\:pb-7{padding-bottom:4rem!important}.sm\\:pb-8{padding-bottom:5rem!important}.sm\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.sm\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.sm\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.sm\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.sm\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.sm\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.sm\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.sm\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.sm\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.sm\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.sm\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.sm\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.sm\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.sm\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.sm\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.sm\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.sm\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.sm\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 768px){.md\\:p-0{padding:0rem!important}.md\\:p-1{padding:.25rem!important}.md\\:p-2{padding:.5rem!important}.md\\:p-3{padding:1rem!important}.md\\:p-4{padding:1.5rem!important}.md\\:p-5{padding:2rem!important}.md\\:p-6{padding:3rem!important}.md\\:p-7{padding:4rem!important}.md\\:p-8{padding:5rem!important}.md\\:pt-0{padding-top:0rem!important}.md\\:pt-1{padding-top:.25rem!important}.md\\:pt-2{padding-top:.5rem!important}.md\\:pt-3{padding-top:1rem!important}.md\\:pt-4{padding-top:1.5rem!important}.md\\:pt-5{padding-top:2rem!important}.md\\:pt-6{padding-top:3rem!important}.md\\:pt-7{padding-top:4rem!important}.md\\:pt-8{padding-top:5rem!important}.md\\:pr-0{padding-right:0rem!important}.md\\:pr-1{padding-right:.25rem!important}.md\\:pr-2{padding-right:.5rem!important}.md\\:pr-3{padding-right:1rem!important}.md\\:pr-4{padding-right:1.5rem!important}.md\\:pr-5{padding-right:2rem!important}.md\\:pr-6{padding-right:3rem!important}.md\\:pr-7{padding-right:4rem!important}.md\\:pr-8{padding-right:5rem!important}.md\\:pl-0{padding-left:0rem!important}.md\\:pl-1{padding-left:.25rem!important}.md\\:pl-2{padding-left:.5rem!important}.md\\:pl-3{padding-left:1rem!important}.md\\:pl-4{padding-left:1.5rem!important}.md\\:pl-5{padding-left:2rem!important}.md\\:pl-6{padding-left:3rem!important}.md\\:pl-7{padding-left:4rem!important}.md\\:pl-8{padding-left:5rem!important}.md\\:pb-0{padding-bottom:0rem!important}.md\\:pb-1{padding-bottom:.25rem!important}.md\\:pb-2{padding-bottom:.5rem!important}.md\\:pb-3{padding-bottom:1rem!important}.md\\:pb-4{padding-bottom:1.5rem!important}.md\\:pb-5{padding-bottom:2rem!important}.md\\:pb-6{padding-bottom:3rem!important}.md\\:pb-7{padding-bottom:4rem!important}.md\\:pb-8{padding-bottom:5rem!important}.md\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.md\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.md\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.md\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.md\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.md\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.md\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.md\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.md\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.md\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.md\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.md\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.md\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.md\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.md\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.md\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.md\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.md\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 992px){.lg\\:p-0{padding:0rem!important}.lg\\:p-1{padding:.25rem!important}.lg\\:p-2{padding:.5rem!important}.lg\\:p-3{padding:1rem!important}.lg\\:p-4{padding:1.5rem!important}.lg\\:p-5{padding:2rem!important}.lg\\:p-6{padding:3rem!important}.lg\\:p-7{padding:4rem!important}.lg\\:p-8{padding:5rem!important}.lg\\:pt-0{padding-top:0rem!important}.lg\\:pt-1{padding-top:.25rem!important}.lg\\:pt-2{padding-top:.5rem!important}.lg\\:pt-3{padding-top:1rem!important}.lg\\:pt-4{padding-top:1.5rem!important}.lg\\:pt-5{padding-top:2rem!important}.lg\\:pt-6{padding-top:3rem!important}.lg\\:pt-7{padding-top:4rem!important}.lg\\:pt-8{padding-top:5rem!important}.lg\\:pr-0{padding-right:0rem!important}.lg\\:pr-1{padding-right:.25rem!important}.lg\\:pr-2{padding-right:.5rem!important}.lg\\:pr-3{padding-right:1rem!important}.lg\\:pr-4{padding-right:1.5rem!important}.lg\\:pr-5{padding-right:2rem!important}.lg\\:pr-6{padding-right:3rem!important}.lg\\:pr-7{padding-right:4rem!important}.lg\\:pr-8{padding-right:5rem!important}.lg\\:pl-0{padding-left:0rem!important}.lg\\:pl-1{padding-left:.25rem!important}.lg\\:pl-2{padding-left:.5rem!important}.lg\\:pl-3{padding-left:1rem!important}.lg\\:pl-4{padding-left:1.5rem!important}.lg\\:pl-5{padding-left:2rem!important}.lg\\:pl-6{padding-left:3rem!important}.lg\\:pl-7{padding-left:4rem!important}.lg\\:pl-8{padding-left:5rem!important}.lg\\:pb-0{padding-bottom:0rem!important}.lg\\:pb-1{padding-bottom:.25rem!important}.lg\\:pb-2{padding-bottom:.5rem!important}.lg\\:pb-3{padding-bottom:1rem!important}.lg\\:pb-4{padding-bottom:1.5rem!important}.lg\\:pb-5{padding-bottom:2rem!important}.lg\\:pb-6{padding-bottom:3rem!important}.lg\\:pb-7{padding-bottom:4rem!important}.lg\\:pb-8{padding-bottom:5rem!important}.lg\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.lg\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.lg\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.lg\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.lg\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.lg\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.lg\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.lg\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.lg\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.lg\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.lg\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.lg\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.lg\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.lg\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.lg\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.lg\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.lg\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.lg\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 1200px){.xl\\:p-0{padding:0rem!important}.xl\\:p-1{padding:.25rem!important}.xl\\:p-2{padding:.5rem!important}.xl\\:p-3{padding:1rem!important}.xl\\:p-4{padding:1.5rem!important}.xl\\:p-5{padding:2rem!important}.xl\\:p-6{padding:3rem!important}.xl\\:p-7{padding:4rem!important}.xl\\:p-8{padding:5rem!important}.xl\\:pt-0{padding-top:0rem!important}.xl\\:pt-1{padding-top:.25rem!important}.xl\\:pt-2{padding-top:.5rem!important}.xl\\:pt-3{padding-top:1rem!important}.xl\\:pt-4{padding-top:1.5rem!important}.xl\\:pt-5{padding-top:2rem!important}.xl\\:pt-6{padding-top:3rem!important}.xl\\:pt-7{padding-top:4rem!important}.xl\\:pt-8{padding-top:5rem!important}.xl\\:pr-0{padding-right:0rem!important}.xl\\:pr-1{padding-right:.25rem!important}.xl\\:pr-2{padding-right:.5rem!important}.xl\\:pr-3{padding-right:1rem!important}.xl\\:pr-4{padding-right:1.5rem!important}.xl\\:pr-5{padding-right:2rem!important}.xl\\:pr-6{padding-right:3rem!important}.xl\\:pr-7{padding-right:4rem!important}.xl\\:pr-8{padding-right:5rem!important}.xl\\:pl-0{padding-left:0rem!important}.xl\\:pl-1{padding-left:.25rem!important}.xl\\:pl-2{padding-left:.5rem!important}.xl\\:pl-3{padding-left:1rem!important}.xl\\:pl-4{padding-left:1.5rem!important}.xl\\:pl-5{padding-left:2rem!important}.xl\\:pl-6{padding-left:3rem!important}.xl\\:pl-7{padding-left:4rem!important}.xl\\:pl-8{padding-left:5rem!important}.xl\\:pb-0{padding-bottom:0rem!important}.xl\\:pb-1{padding-bottom:.25rem!important}.xl\\:pb-2{padding-bottom:.5rem!important}.xl\\:pb-3{padding-bottom:1rem!important}.xl\\:pb-4{padding-bottom:1.5rem!important}.xl\\:pb-5{padding-bottom:2rem!important}.xl\\:pb-6{padding-bottom:3rem!important}.xl\\:pb-7{padding-bottom:4rem!important}.xl\\:pb-8{padding-bottom:5rem!important}.xl\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.xl\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.xl\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.xl\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.xl\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.xl\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.xl\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.xl\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.xl\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.xl\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.xl\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.xl\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.xl\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.xl\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.xl\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.xl\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.xl\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.xl\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}.m-0{margin:0rem!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:2rem!important}.m-6{margin:3rem!important}.m-7{margin:4rem!important}.m-8{margin:5rem!important}.-m-1{margin:-.25rem!important}.-m-2{margin:-.5rem!important}.-m-3{margin:-1rem!important}.-m-4{margin:-1.5rem!important}.-m-5{margin:-2rem!important}.-m-6{margin:-3rem!important}.-m-7{margin:-4rem!important}.-m-8{margin:-5rem!important}.m-auto{margin:auto!important}.mt-0{margin-top:0rem!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:2rem!important}.mt-6{margin-top:3rem!important}.mt-7{margin-top:4rem!important}.mt-8{margin-top:5rem!important}.-mt-1{margin-top:-.25rem!important}.-mt-2{margin-top:-.5rem!important}.-mt-3{margin-top:-1rem!important}.-mt-4{margin-top:-1.5rem!important}.-mt-5{margin-top:-2rem!important}.-mt-6{margin-top:-3rem!important}.-mt-7{margin-top:-4rem!important}.-mt-8{margin-top:-5rem!important}.mt-auto{margin-top:auto!important}.mr-0{margin-right:0rem!important}.mr-1{margin-right:.25rem!important}.mr-2{margin-right:.5rem!important}.mr-3{margin-right:1rem!important}.mr-4{margin-right:1.5rem!important}.mr-5{margin-right:2rem!important}.mr-6{margin-right:3rem!important}.mr-7{margin-right:4rem!important}.mr-8{margin-right:5rem!important}.-mr-1{margin-right:-.25rem!important}.-mr-2{margin-right:-.5rem!important}.-mr-3{margin-right:-1rem!important}.-mr-4{margin-right:-1.5rem!important}.-mr-5{margin-right:-2rem!important}.-mr-6{margin-right:-3rem!important}.-mr-7{margin-right:-4rem!important}.-mr-8{margin-right:-5rem!important}.mr-auto{margin-right:auto!important}.ml-0{margin-left:0rem!important}.ml-1{margin-left:.25rem!important}.ml-2{margin-left:.5rem!important}.ml-3{margin-left:1rem!important}.ml-4{margin-left:1.5rem!important}.ml-5{margin-left:2rem!important}.ml-6{margin-left:3rem!important}.ml-7{margin-left:4rem!important}.ml-8{margin-left:5rem!important}.-ml-1{margin-left:-.25rem!important}.-ml-2{margin-left:-.5rem!important}.-ml-3{margin-left:-1rem!important}.-ml-4{margin-left:-1.5rem!important}.-ml-5{margin-left:-2rem!important}.-ml-6{margin-left:-3rem!important}.-ml-7{margin-left:-4rem!important}.-ml-8{margin-left:-5rem!important}.ml-auto{margin-left:auto!important}.mb-0{margin-bottom:0rem!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:2rem!important}.mb-6{margin-bottom:3rem!important}.mb-7{margin-bottom:4rem!important}.mb-8{margin-bottom:5rem!important}.-mb-1{margin-bottom:-.25rem!important}.-mb-2{margin-bottom:-.5rem!important}.-mb-3{margin-bottom:-1rem!important}.-mb-4{margin-bottom:-1.5rem!important}.-mb-5{margin-bottom:-2rem!important}.-mb-6{margin-bottom:-3rem!important}.-mb-7{margin-bottom:-4rem!important}.-mb-8{margin-bottom:-5rem!important}.mb-auto{margin-bottom:auto!important}.mx-0{margin-left:0rem!important;margin-right:0rem!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:2rem!important;margin-right:2rem!important}.mx-6{margin-left:3rem!important;margin-right:3rem!important}.mx-7{margin-left:4rem!important;margin-right:4rem!important}.mx-8{margin-left:5rem!important;margin-right:5rem!important}.-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0rem!important;margin-bottom:0rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:2rem!important;margin-bottom:2rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.my-7{margin-top:4rem!important;margin-bottom:4rem!important}.my-8{margin-top:5rem!important;margin-bottom:5rem!important}.-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}@media screen and (min-width: 576px){.sm\\:m-0{margin:0rem!important}.sm\\:m-1{margin:.25rem!important}.sm\\:m-2{margin:.5rem!important}.sm\\:m-3{margin:1rem!important}.sm\\:m-4{margin:1.5rem!important}.sm\\:m-5{margin:2rem!important}.sm\\:m-6{margin:3rem!important}.sm\\:m-7{margin:4rem!important}.sm\\:m-8{margin:5rem!important}.sm\\:-m-1{margin:-.25rem!important}.sm\\:-m-2{margin:-.5rem!important}.sm\\:-m-3{margin:-1rem!important}.sm\\:-m-4{margin:-1.5rem!important}.sm\\:-m-5{margin:-2rem!important}.sm\\:-m-6{margin:-3rem!important}.sm\\:-m-7{margin:-4rem!important}.sm\\:-m-8{margin:-5rem!important}.sm\\:m-auto{margin:auto!important}.sm\\:mt-0{margin-top:0rem!important}.sm\\:mt-1{margin-top:.25rem!important}.sm\\:mt-2{margin-top:.5rem!important}.sm\\:mt-3{margin-top:1rem!important}.sm\\:mt-4{margin-top:1.5rem!important}.sm\\:mt-5{margin-top:2rem!important}.sm\\:mt-6{margin-top:3rem!important}.sm\\:mt-7{margin-top:4rem!important}.sm\\:mt-8{margin-top:5rem!important}.sm\\:-mt-1{margin-top:-.25rem!important}.sm\\:-mt-2{margin-top:-.5rem!important}.sm\\:-mt-3{margin-top:-1rem!important}.sm\\:-mt-4{margin-top:-1.5rem!important}.sm\\:-mt-5{margin-top:-2rem!important}.sm\\:-mt-6{margin-top:-3rem!important}.sm\\:-mt-7{margin-top:-4rem!important}.sm\\:-mt-8{margin-top:-5rem!important}.sm\\:mt-auto{margin-top:auto!important}.sm\\:mr-0{margin-right:0rem!important}.sm\\:mr-1{margin-right:.25rem!important}.sm\\:mr-2{margin-right:.5rem!important}.sm\\:mr-3{margin-right:1rem!important}.sm\\:mr-4{margin-right:1.5rem!important}.sm\\:mr-5{margin-right:2rem!important}.sm\\:mr-6{margin-right:3rem!important}.sm\\:mr-7{margin-right:4rem!important}.sm\\:mr-8{margin-right:5rem!important}.sm\\:-mr-1{margin-right:-.25rem!important}.sm\\:-mr-2{margin-right:-.5rem!important}.sm\\:-mr-3{margin-right:-1rem!important}.sm\\:-mr-4{margin-right:-1.5rem!important}.sm\\:-mr-5{margin-right:-2rem!important}.sm\\:-mr-6{margin-right:-3rem!important}.sm\\:-mr-7{margin-right:-4rem!important}.sm\\:-mr-8{margin-right:-5rem!important}.sm\\:mr-auto{margin-right:auto!important}.sm\\:ml-0{margin-left:0rem!important}.sm\\:ml-1{margin-left:.25rem!important}.sm\\:ml-2{margin-left:.5rem!important}.sm\\:ml-3{margin-left:1rem!important}.sm\\:ml-4{margin-left:1.5rem!important}.sm\\:ml-5{margin-left:2rem!important}.sm\\:ml-6{margin-left:3rem!important}.sm\\:ml-7{margin-left:4rem!important}.sm\\:ml-8{margin-left:5rem!important}.sm\\:-ml-1{margin-left:-.25rem!important}.sm\\:-ml-2{margin-left:-.5rem!important}.sm\\:-ml-3{margin-left:-1rem!important}.sm\\:-ml-4{margin-left:-1.5rem!important}.sm\\:-ml-5{margin-left:-2rem!important}.sm\\:-ml-6{margin-left:-3rem!important}.sm\\:-ml-7{margin-left:-4rem!important}.sm\\:-ml-8{margin-left:-5rem!important}.sm\\:ml-auto{margin-left:auto!important}.sm\\:mb-0{margin-bottom:0rem!important}.sm\\:mb-1{margin-bottom:.25rem!important}.sm\\:mb-2{margin-bottom:.5rem!important}.sm\\:mb-3{margin-bottom:1rem!important}.sm\\:mb-4{margin-bottom:1.5rem!important}.sm\\:mb-5{margin-bottom:2rem!important}.sm\\:mb-6{margin-bottom:3rem!important}.sm\\:mb-7{margin-bottom:4rem!important}.sm\\:mb-8{margin-bottom:5rem!important}.sm\\:-mb-1{margin-bottom:-.25rem!important}.sm\\:-mb-2{margin-bottom:-.5rem!important}.sm\\:-mb-3{margin-bottom:-1rem!important}.sm\\:-mb-4{margin-bottom:-1.5rem!important}.sm\\:-mb-5{margin-bottom:-2rem!important}.sm\\:-mb-6{margin-bottom:-3rem!important}.sm\\:-mb-7{margin-bottom:-4rem!important}.sm\\:-mb-8{margin-bottom:-5rem!important}.sm\\:mb-auto{margin-bottom:auto!important}.sm\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.sm\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.sm\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.sm\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.sm\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.sm\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.sm\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.sm\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.sm\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.sm\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.sm\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.sm\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.sm\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.sm\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.sm\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.sm\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.sm\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.sm\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.sm\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.sm\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.sm\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.sm\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.sm\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.sm\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.sm\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.sm\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.sm\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.sm\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.sm\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.sm\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.sm\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.sm\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.sm\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.sm\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.sm\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.sm\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 768px){.md\\:m-0{margin:0rem!important}.md\\:m-1{margin:.25rem!important}.md\\:m-2{margin:.5rem!important}.md\\:m-3{margin:1rem!important}.md\\:m-4{margin:1.5rem!important}.md\\:m-5{margin:2rem!important}.md\\:m-6{margin:3rem!important}.md\\:m-7{margin:4rem!important}.md\\:m-8{margin:5rem!important}.md\\:-m-1{margin:-.25rem!important}.md\\:-m-2{margin:-.5rem!important}.md\\:-m-3{margin:-1rem!important}.md\\:-m-4{margin:-1.5rem!important}.md\\:-m-5{margin:-2rem!important}.md\\:-m-6{margin:-3rem!important}.md\\:-m-7{margin:-4rem!important}.md\\:-m-8{margin:-5rem!important}.md\\:m-auto{margin:auto!important}.md\\:mt-0{margin-top:0rem!important}.md\\:mt-1{margin-top:.25rem!important}.md\\:mt-2{margin-top:.5rem!important}.md\\:mt-3{margin-top:1rem!important}.md\\:mt-4{margin-top:1.5rem!important}.md\\:mt-5{margin-top:2rem!important}.md\\:mt-6{margin-top:3rem!important}.md\\:mt-7{margin-top:4rem!important}.md\\:mt-8{margin-top:5rem!important}.md\\:-mt-1{margin-top:-.25rem!important}.md\\:-mt-2{margin-top:-.5rem!important}.md\\:-mt-3{margin-top:-1rem!important}.md\\:-mt-4{margin-top:-1.5rem!important}.md\\:-mt-5{margin-top:-2rem!important}.md\\:-mt-6{margin-top:-3rem!important}.md\\:-mt-7{margin-top:-4rem!important}.md\\:-mt-8{margin-top:-5rem!important}.md\\:mt-auto{margin-top:auto!important}.md\\:mr-0{margin-right:0rem!important}.md\\:mr-1{margin-right:.25rem!important}.md\\:mr-2{margin-right:.5rem!important}.md\\:mr-3{margin-right:1rem!important}.md\\:mr-4{margin-right:1.5rem!important}.md\\:mr-5{margin-right:2rem!important}.md\\:mr-6{margin-right:3rem!important}.md\\:mr-7{margin-right:4rem!important}.md\\:mr-8{margin-right:5rem!important}.md\\:-mr-1{margin-right:-.25rem!important}.md\\:-mr-2{margin-right:-.5rem!important}.md\\:-mr-3{margin-right:-1rem!important}.md\\:-mr-4{margin-right:-1.5rem!important}.md\\:-mr-5{margin-right:-2rem!important}.md\\:-mr-6{margin-right:-3rem!important}.md\\:-mr-7{margin-right:-4rem!important}.md\\:-mr-8{margin-right:-5rem!important}.md\\:mr-auto{margin-right:auto!important}.md\\:ml-0{margin-left:0rem!important}.md\\:ml-1{margin-left:.25rem!important}.md\\:ml-2{margin-left:.5rem!important}.md\\:ml-3{margin-left:1rem!important}.md\\:ml-4{margin-left:1.5rem!important}.md\\:ml-5{margin-left:2rem!important}.md\\:ml-6{margin-left:3rem!important}.md\\:ml-7{margin-left:4rem!important}.md\\:ml-8{margin-left:5rem!important}.md\\:-ml-1{margin-left:-.25rem!important}.md\\:-ml-2{margin-left:-.5rem!important}.md\\:-ml-3{margin-left:-1rem!important}.md\\:-ml-4{margin-left:-1.5rem!important}.md\\:-ml-5{margin-left:-2rem!important}.md\\:-ml-6{margin-left:-3rem!important}.md\\:-ml-7{margin-left:-4rem!important}.md\\:-ml-8{margin-left:-5rem!important}.md\\:ml-auto{margin-left:auto!important}.md\\:mb-0{margin-bottom:0rem!important}.md\\:mb-1{margin-bottom:.25rem!important}.md\\:mb-2{margin-bottom:.5rem!important}.md\\:mb-3{margin-bottom:1rem!important}.md\\:mb-4{margin-bottom:1.5rem!important}.md\\:mb-5{margin-bottom:2rem!important}.md\\:mb-6{margin-bottom:3rem!important}.md\\:mb-7{margin-bottom:4rem!important}.md\\:mb-8{margin-bottom:5rem!important}.md\\:-mb-1{margin-bottom:-.25rem!important}.md\\:-mb-2{margin-bottom:-.5rem!important}.md\\:-mb-3{margin-bottom:-1rem!important}.md\\:-mb-4{margin-bottom:-1.5rem!important}.md\\:-mb-5{margin-bottom:-2rem!important}.md\\:-mb-6{margin-bottom:-3rem!important}.md\\:-mb-7{margin-bottom:-4rem!important}.md\\:-mb-8{margin-bottom:-5rem!important}.md\\:mb-auto{margin-bottom:auto!important}.md\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.md\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.md\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.md\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.md\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.md\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.md\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.md\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.md\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.md\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.md\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.md\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.md\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.md\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.md\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.md\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.md\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.md\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.md\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.md\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.md\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.md\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.md\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.md\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.md\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.md\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.md\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.md\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.md\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.md\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.md\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.md\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.md\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.md\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.md\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.md\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 992px){.lg\\:m-0{margin:0rem!important}.lg\\:m-1{margin:.25rem!important}.lg\\:m-2{margin:.5rem!important}.lg\\:m-3{margin:1rem!important}.lg\\:m-4{margin:1.5rem!important}.lg\\:m-5{margin:2rem!important}.lg\\:m-6{margin:3rem!important}.lg\\:m-7{margin:4rem!important}.lg\\:m-8{margin:5rem!important}.lg\\:-m-1{margin:-.25rem!important}.lg\\:-m-2{margin:-.5rem!important}.lg\\:-m-3{margin:-1rem!important}.lg\\:-m-4{margin:-1.5rem!important}.lg\\:-m-5{margin:-2rem!important}.lg\\:-m-6{margin:-3rem!important}.lg\\:-m-7{margin:-4rem!important}.lg\\:-m-8{margin:-5rem!important}.lg\\:m-auto{margin:auto!important}.lg\\:mt-0{margin-top:0rem!important}.lg\\:mt-1{margin-top:.25rem!important}.lg\\:mt-2{margin-top:.5rem!important}.lg\\:mt-3{margin-top:1rem!important}.lg\\:mt-4{margin-top:1.5rem!important}.lg\\:mt-5{margin-top:2rem!important}.lg\\:mt-6{margin-top:3rem!important}.lg\\:mt-7{margin-top:4rem!important}.lg\\:mt-8{margin-top:5rem!important}.lg\\:-mt-1{margin-top:-.25rem!important}.lg\\:-mt-2{margin-top:-.5rem!important}.lg\\:-mt-3{margin-top:-1rem!important}.lg\\:-mt-4{margin-top:-1.5rem!important}.lg\\:-mt-5{margin-top:-2rem!important}.lg\\:-mt-6{margin-top:-3rem!important}.lg\\:-mt-7{margin-top:-4rem!important}.lg\\:-mt-8{margin-top:-5rem!important}.lg\\:mt-auto{margin-top:auto!important}.lg\\:mr-0{margin-right:0rem!important}.lg\\:mr-1{margin-right:.25rem!important}.lg\\:mr-2{margin-right:.5rem!important}.lg\\:mr-3{margin-right:1rem!important}.lg\\:mr-4{margin-right:1.5rem!important}.lg\\:mr-5{margin-right:2rem!important}.lg\\:mr-6{margin-right:3rem!important}.lg\\:mr-7{margin-right:4rem!important}.lg\\:mr-8{margin-right:5rem!important}.lg\\:-mr-1{margin-right:-.25rem!important}.lg\\:-mr-2{margin-right:-.5rem!important}.lg\\:-mr-3{margin-right:-1rem!important}.lg\\:-mr-4{margin-right:-1.5rem!important}.lg\\:-mr-5{margin-right:-2rem!important}.lg\\:-mr-6{margin-right:-3rem!important}.lg\\:-mr-7{margin-right:-4rem!important}.lg\\:-mr-8{margin-right:-5rem!important}.lg\\:mr-auto{margin-right:auto!important}.lg\\:ml-0{margin-left:0rem!important}.lg\\:ml-1{margin-left:.25rem!important}.lg\\:ml-2{margin-left:.5rem!important}.lg\\:ml-3{margin-left:1rem!important}.lg\\:ml-4{margin-left:1.5rem!important}.lg\\:ml-5{margin-left:2rem!important}.lg\\:ml-6{margin-left:3rem!important}.lg\\:ml-7{margin-left:4rem!important}.lg\\:ml-8{margin-left:5rem!important}.lg\\:-ml-1{margin-left:-.25rem!important}.lg\\:-ml-2{margin-left:-.5rem!important}.lg\\:-ml-3{margin-left:-1rem!important}.lg\\:-ml-4{margin-left:-1.5rem!important}.lg\\:-ml-5{margin-left:-2rem!important}.lg\\:-ml-6{margin-left:-3rem!important}.lg\\:-ml-7{margin-left:-4rem!important}.lg\\:-ml-8{margin-left:-5rem!important}.lg\\:ml-auto{margin-left:auto!important}.lg\\:mb-0{margin-bottom:0rem!important}.lg\\:mb-1{margin-bottom:.25rem!important}.lg\\:mb-2{margin-bottom:.5rem!important}.lg\\:mb-3{margin-bottom:1rem!important}.lg\\:mb-4{margin-bottom:1.5rem!important}.lg\\:mb-5{margin-bottom:2rem!important}.lg\\:mb-6{margin-bottom:3rem!important}.lg\\:mb-7{margin-bottom:4rem!important}.lg\\:mb-8{margin-bottom:5rem!important}.lg\\:-mb-1{margin-bottom:-.25rem!important}.lg\\:-mb-2{margin-bottom:-.5rem!important}.lg\\:-mb-3{margin-bottom:-1rem!important}.lg\\:-mb-4{margin-bottom:-1.5rem!important}.lg\\:-mb-5{margin-bottom:-2rem!important}.lg\\:-mb-6{margin-bottom:-3rem!important}.lg\\:-mb-7{margin-bottom:-4rem!important}.lg\\:-mb-8{margin-bottom:-5rem!important}.lg\\:mb-auto{margin-bottom:auto!important}.lg\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.lg\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.lg\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.lg\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.lg\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.lg\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.lg\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.lg\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.lg\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.lg\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.lg\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.lg\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.lg\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.lg\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.lg\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.lg\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.lg\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.lg\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.lg\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.lg\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.lg\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.lg\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.lg\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.lg\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.lg\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.lg\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.lg\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.lg\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.lg\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.lg\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.lg\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.lg\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.lg\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.lg\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.lg\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.lg\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 1200px){.xl\\:m-0{margin:0rem!important}.xl\\:m-1{margin:.25rem!important}.xl\\:m-2{margin:.5rem!important}.xl\\:m-3{margin:1rem!important}.xl\\:m-4{margin:1.5rem!important}.xl\\:m-5{margin:2rem!important}.xl\\:m-6{margin:3rem!important}.xl\\:m-7{margin:4rem!important}.xl\\:m-8{margin:5rem!important}.xl\\:-m-1{margin:-.25rem!important}.xl\\:-m-2{margin:-.5rem!important}.xl\\:-m-3{margin:-1rem!important}.xl\\:-m-4{margin:-1.5rem!important}.xl\\:-m-5{margin:-2rem!important}.xl\\:-m-6{margin:-3rem!important}.xl\\:-m-7{margin:-4rem!important}.xl\\:-m-8{margin:-5rem!important}.xl\\:m-auto{margin:auto!important}.xl\\:mt-0{margin-top:0rem!important}.xl\\:mt-1{margin-top:.25rem!important}.xl\\:mt-2{margin-top:.5rem!important}.xl\\:mt-3{margin-top:1rem!important}.xl\\:mt-4{margin-top:1.5rem!important}.xl\\:mt-5{margin-top:2rem!important}.xl\\:mt-6{margin-top:3rem!important}.xl\\:mt-7{margin-top:4rem!important}.xl\\:mt-8{margin-top:5rem!important}.xl\\:-mt-1{margin-top:-.25rem!important}.xl\\:-mt-2{margin-top:-.5rem!important}.xl\\:-mt-3{margin-top:-1rem!important}.xl\\:-mt-4{margin-top:-1.5rem!important}.xl\\:-mt-5{margin-top:-2rem!important}.xl\\:-mt-6{margin-top:-3rem!important}.xl\\:-mt-7{margin-top:-4rem!important}.xl\\:-mt-8{margin-top:-5rem!important}.xl\\:mt-auto{margin-top:auto!important}.xl\\:mr-0{margin-right:0rem!important}.xl\\:mr-1{margin-right:.25rem!important}.xl\\:mr-2{margin-right:.5rem!important}.xl\\:mr-3{margin-right:1rem!important}.xl\\:mr-4{margin-right:1.5rem!important}.xl\\:mr-5{margin-right:2rem!important}.xl\\:mr-6{margin-right:3rem!important}.xl\\:mr-7{margin-right:4rem!important}.xl\\:mr-8{margin-right:5rem!important}.xl\\:-mr-1{margin-right:-.25rem!important}.xl\\:-mr-2{margin-right:-.5rem!important}.xl\\:-mr-3{margin-right:-1rem!important}.xl\\:-mr-4{margin-right:-1.5rem!important}.xl\\:-mr-5{margin-right:-2rem!important}.xl\\:-mr-6{margin-right:-3rem!important}.xl\\:-mr-7{margin-right:-4rem!important}.xl\\:-mr-8{margin-right:-5rem!important}.xl\\:mr-auto{margin-right:auto!important}.xl\\:ml-0{margin-left:0rem!important}.xl\\:ml-1{margin-left:.25rem!important}.xl\\:ml-2{margin-left:.5rem!important}.xl\\:ml-3{margin-left:1rem!important}.xl\\:ml-4{margin-left:1.5rem!important}.xl\\:ml-5{margin-left:2rem!important}.xl\\:ml-6{margin-left:3rem!important}.xl\\:ml-7{margin-left:4rem!important}.xl\\:ml-8{margin-left:5rem!important}.xl\\:-ml-1{margin-left:-.25rem!important}.xl\\:-ml-2{margin-left:-.5rem!important}.xl\\:-ml-3{margin-left:-1rem!important}.xl\\:-ml-4{margin-left:-1.5rem!important}.xl\\:-ml-5{margin-left:-2rem!important}.xl\\:-ml-6{margin-left:-3rem!important}.xl\\:-ml-7{margin-left:-4rem!important}.xl\\:-ml-8{margin-left:-5rem!important}.xl\\:ml-auto{margin-left:auto!important}.xl\\:mb-0{margin-bottom:0rem!important}.xl\\:mb-1{margin-bottom:.25rem!important}.xl\\:mb-2{margin-bottom:.5rem!important}.xl\\:mb-3{margin-bottom:1rem!important}.xl\\:mb-4{margin-bottom:1.5rem!important}.xl\\:mb-5{margin-bottom:2rem!important}.xl\\:mb-6{margin-bottom:3rem!important}.xl\\:mb-7{margin-bottom:4rem!important}.xl\\:mb-8{margin-bottom:5rem!important}.xl\\:-mb-1{margin-bottom:-.25rem!important}.xl\\:-mb-2{margin-bottom:-.5rem!important}.xl\\:-mb-3{margin-bottom:-1rem!important}.xl\\:-mb-4{margin-bottom:-1.5rem!important}.xl\\:-mb-5{margin-bottom:-2rem!important}.xl\\:-mb-6{margin-bottom:-3rem!important}.xl\\:-mb-7{margin-bottom:-4rem!important}.xl\\:-mb-8{margin-bottom:-5rem!important}.xl\\:mb-auto{margin-bottom:auto!important}.xl\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.xl\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.xl\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.xl\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.xl\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.xl\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.xl\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.xl\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.xl\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.xl\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.xl\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.xl\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.xl\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.xl\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.xl\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.xl\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.xl\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.xl\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.xl\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.xl\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.xl\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.xl\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.xl\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.xl\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.xl\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.xl\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.xl\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.xl\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.xl\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.xl\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.xl\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.xl\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.xl\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.xl\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.xl\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.xl\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}.shadow-none{box-shadow:none!important}.shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.focus\\:shadow-none:focus{box-shadow:none!important}.hover\\:shadow-none:hover,.active\\:shadow-none:active{box-shadow:none!important}.focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.hover\\:shadow-1:hover,.active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.hover\\:shadow-2:hover,.active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.hover\\:shadow-3:hover,.active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.hover\\:shadow-4:hover,.active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.hover\\:shadow-5:hover,.active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.hover\\:shadow-6:hover,.active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.hover\\:shadow-7:hover,.active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.hover\\:shadow-8:hover,.active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}@media screen and (min-width: 576px){.sm\\:shadow-none{box-shadow:none!important}.sm\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:focus\\:shadow-none:focus{box-shadow:none!important}.sm\\:hover\\:shadow-none:hover,.sm\\:active\\:shadow-none:active{box-shadow:none!important}.sm\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:hover\\:shadow-1:hover,.sm\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:hover\\:shadow-2:hover,.sm\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:hover\\:shadow-3:hover,.sm\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:hover\\:shadow-4:hover,.sm\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:hover\\:shadow-5:hover,.sm\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:hover\\:shadow-6:hover,.sm\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:hover\\:shadow-7:hover,.sm\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:hover\\:shadow-8:hover,.sm\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 768px){.md\\:shadow-none{box-shadow:none!important}.md\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:focus\\:shadow-none:focus{box-shadow:none!important}.md\\:hover\\:shadow-none:hover,.md\\:active\\:shadow-none:active{box-shadow:none!important}.md\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:hover\\:shadow-1:hover,.md\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:hover\\:shadow-2:hover,.md\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:hover\\:shadow-3:hover,.md\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:hover\\:shadow-4:hover,.md\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:hover\\:shadow-5:hover,.md\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:hover\\:shadow-6:hover,.md\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:hover\\:shadow-7:hover,.md\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:hover\\:shadow-8:hover,.md\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 992px){.lg\\:shadow-none{box-shadow:none!important}.lg\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:focus\\:shadow-none:focus{box-shadow:none!important}.lg\\:hover\\:shadow-none:hover,.lg\\:active\\:shadow-none:active{box-shadow:none!important}.lg\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:hover\\:shadow-1:hover,.lg\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:hover\\:shadow-2:hover,.lg\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:hover\\:shadow-3:hover,.lg\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:hover\\:shadow-4:hover,.lg\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:hover\\:shadow-5:hover,.lg\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:hover\\:shadow-6:hover,.lg\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:hover\\:shadow-7:hover,.lg\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:hover\\:shadow-8:hover,.lg\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 1200px){.xl\\:shadow-none{box-shadow:none!important}.xl\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:focus\\:shadow-none:focus{box-shadow:none!important}.xl\\:hover\\:shadow-none:hover,.xl\\:active\\:shadow-none:active{box-shadow:none!important}.xl\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:hover\\:shadow-1:hover,.xl\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:hover\\:shadow-2:hover,.xl\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:hover\\:shadow-3:hover,.xl\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:hover\\:shadow-4:hover,.xl\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:hover\\:shadow-5:hover,.xl\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:hover\\:shadow-6:hover,.xl\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:hover\\:shadow-7:hover,.xl\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:hover\\:shadow-8:hover,.xl\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}.border-none{border-width:0px!important;border-style:none}.border-1{border-width:1px!important;border-style:solid}.border-2{border-width:2px!important;border-style:solid}.border-3{border-width:3px!important;border-style:solid}.border-top-none{border-top-width:0px!important;border-top-style:none}.border-top-1{border-top-width:1px!important;border-top-style:solid}.border-top-2{border-top-width:2px!important;border-top-style:solid}.border-top-3{border-top-width:3px!important;border-top-style:solid}.border-right-none{border-right-width:0px!important;border-right-style:none}.border-right-1{border-right-width:1px!important;border-right-style:solid}.border-right-2{border-right-width:2px!important;border-right-style:solid}.border-right-3{border-right-width:3px!important;border-right-style:solid}.border-left-none{border-left-width:0px!important;border-left-style:none}.border-left-1{border-left-width:1px!important;border-left-style:solid}.border-left-2{border-left-width:2px!important;border-left-style:solid}.border-left-3{border-left-width:3px!important;border-left-style:solid}.border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}@media screen and (min-width: 576px){.sm\\:border-none{border-width:0px!important;border-style:none}.sm\\:border-1{border-width:1px!important;border-style:solid}.sm\\:border-2{border-width:2px!important;border-style:solid}.sm\\:border-3{border-width:3px!important;border-style:solid}.sm\\:border-top-none{border-top-width:0px!important;border-top-style:none}.sm\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.sm\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.sm\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.sm\\:border-right-none{border-right-width:0px!important;border-right-style:none}.sm\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.sm\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.sm\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.sm\\:border-left-none{border-left-width:0px!important;border-left-style:none}.sm\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.sm\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.sm\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.sm\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.sm\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.sm\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.sm\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.sm\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.sm\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 768px){.md\\:border-none{border-width:0px!important;border-style:none}.md\\:border-1{border-width:1px!important;border-style:solid}.md\\:border-2{border-width:2px!important;border-style:solid}.md\\:border-3{border-width:3px!important;border-style:solid}.md\\:border-top-none{border-top-width:0px!important;border-top-style:none}.md\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.md\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.md\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.md\\:border-right-none{border-right-width:0px!important;border-right-style:none}.md\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.md\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.md\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.md\\:border-left-none{border-left-width:0px!important;border-left-style:none}.md\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.md\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.md\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.md\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.md\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.md\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.md\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.md\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.md\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 992px){.lg\\:border-none{border-width:0px!important;border-style:none}.lg\\:border-1{border-width:1px!important;border-style:solid}.lg\\:border-2{border-width:2px!important;border-style:solid}.lg\\:border-3{border-width:3px!important;border-style:solid}.lg\\:border-top-none{border-top-width:0px!important;border-top-style:none}.lg\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.lg\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.lg\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.lg\\:border-right-none{border-right-width:0px!important;border-right-style:none}.lg\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.lg\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.lg\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.lg\\:border-left-none{border-left-width:0px!important;border-left-style:none}.lg\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.lg\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.lg\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.lg\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.lg\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.lg\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.lg\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.lg\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.lg\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 1200px){.xl\\:border-none{border-width:0px!important;border-style:none}.xl\\:border-1{border-width:1px!important;border-style:solid}.xl\\:border-2{border-width:2px!important;border-style:solid}.xl\\:border-3{border-width:3px!important;border-style:solid}.xl\\:border-top-none{border-top-width:0px!important;border-top-style:none}.xl\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.xl\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.xl\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.xl\\:border-right-none{border-right-width:0px!important;border-right-style:none}.xl\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.xl\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.xl\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.xl\\:border-left-none{border-left-width:0px!important;border-left-style:none}.xl\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.xl\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.xl\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.xl\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.xl\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.xl\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.xl\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.xl\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.xl\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}.border-solid{border-style:solid!important}.border-dashed{border-style:dashed!important}.border-dotted{border-style:dotted!important}.border-double{border-style:double!important}@media screen and (min-width: 576px){.sm\\:border-solid{border-style:solid!important}.sm\\:border-dashed{border-style:dashed!important}.sm\\:border-dotted{border-style:dotted!important}.sm\\:border-double{border-style:double!important}}@media screen and (min-width: 768px){.md\\:border-solid{border-style:solid!important}.md\\:border-dashed{border-style:dashed!important}.md\\:border-dotted{border-style:dotted!important}.md\\:border-double{border-style:double!important}}@media screen and (min-width: 992px){.lg\\:border-solid{border-style:solid!important}.lg\\:border-dashed{border-style:dashed!important}.lg\\:border-dotted{border-style:dotted!important}.lg\\:border-double{border-style:double!important}}@media screen and (min-width: 1200px){.xl\\:border-solid{border-style:solid!important}.xl\\:border-dashed{border-style:dashed!important}.xl\\:border-dotted{border-style:dotted!important}.xl\\:border-double{border-style:double!important}}.border-noround{border-radius:0!important}.border-round{border-radius:var(--border-radius)!important}.border-round-xs{border-radius:.125rem!important}.border-round-sm{border-radius:.25rem!important}.border-round-md{border-radius:.375rem!important}.border-round-lg{border-radius:.5rem!important}.border-round-xl{border-radius:.75rem!important}.border-round-2xl{border-radius:1rem!important}.border-round-3xl{border-radius:1.5rem!important}.border-circle{border-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround{border-radius:0!important}.sm\\:border-round{border-radius:var(--border-radius)!important}.sm\\:border-round-xs{border-radius:.125rem!important}.sm\\:border-round-sm{border-radius:.25rem!important}.sm\\:border-round-md{border-radius:.375rem!important}.sm\\:border-round-lg{border-radius:.5rem!important}.sm\\:border-round-xl{border-radius:.75rem!important}.sm\\:border-round-2xl{border-radius:1rem!important}.sm\\:border-round-3xl{border-radius:1.5rem!important}.sm\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround{border-radius:0!important}.md\\:border-round{border-radius:var(--border-radius)!important}.md\\:border-round-xs{border-radius:.125rem!important}.md\\:border-round-sm{border-radius:.25rem!important}.md\\:border-round-md{border-radius:.375rem!important}.md\\:border-round-lg{border-radius:.5rem!important}.md\\:border-round-xl{border-radius:.75rem!important}.md\\:border-round-2xl{border-radius:1rem!important}.md\\:border-round-3xl{border-radius:1.5rem!important}.md\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround{border-radius:0!important}.lg\\:border-round{border-radius:var(--border-radius)!important}.lg\\:border-round-xs{border-radius:.125rem!important}.lg\\:border-round-sm{border-radius:.25rem!important}.lg\\:border-round-md{border-radius:.375rem!important}.lg\\:border-round-lg{border-radius:.5rem!important}.lg\\:border-round-xl{border-radius:.75rem!important}.lg\\:border-round-2xl{border-radius:1rem!important}.lg\\:border-round-3xl{border-radius:1.5rem!important}.lg\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround{border-radius:0!important}.xl\\:border-round{border-radius:var(--border-radius)!important}.xl\\:border-round-xs{border-radius:.125rem!important}.xl\\:border-round-sm{border-radius:.25rem!important}.xl\\:border-round-md{border-radius:.375rem!important}.xl\\:border-round-lg{border-radius:.5rem!important}.xl\\:border-round-xl{border-radius:.75rem!important}.xl\\:border-round-2xl{border-radius:1rem!important}.xl\\:border-round-3xl{border-radius:1.5rem!important}.xl\\:border-circle{border-radius:50%!important}}.border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.sm\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.sm\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.sm\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.sm\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.sm\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.sm\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.sm\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.sm\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.sm\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.sm\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.sm\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.sm\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.sm\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.sm\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.sm\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.sm\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.sm\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.sm\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.sm\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.sm\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.sm\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.md\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.md\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.md\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.md\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.md\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.md\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.md\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.md\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.md\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.md\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.md\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.md\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.md\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.md\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.md\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.md\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.md\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.md\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.md\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.md\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.md\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.lg\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.lg\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.lg\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.lg\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.lg\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.lg\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.lg\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.lg\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.lg\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.lg\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.lg\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.lg\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.lg\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.lg\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.lg\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.lg\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.lg\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.lg\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.lg\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.lg\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.lg\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.xl\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.xl\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.xl\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.xl\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.xl\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.xl\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.xl\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.xl\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.xl\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.xl\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.xl\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.xl\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.xl\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.xl\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.xl\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.xl\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.xl\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.xl\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.xl\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.xl\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.xl\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}.w-full{width:100%!important}.w-screen{width:100vw!important}.w-auto{width:auto!important}.w-1{width:8.3333%!important}.w-2{width:16.6667%!important}.w-3{width:25%!important}.w-4{width:33.3333%!important}.w-5{width:41.6667%!important}.w-6{width:50%!important}.w-7{width:58.3333%!important}.w-8{width:66.6667%!important}.w-9{width:75%!important}.w-10{width:83.3333%!important}.w-11{width:91.6667%!important}.w-12{width:100%!important}.w-min{width:min-content!important}.w-max{width:max-content!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-1rem{width:1rem!important}.w-2rem{width:2rem!important}.w-3rem{width:3rem!important}.w-4rem{width:4rem!important}.w-5rem{width:5rem!important}.w-6rem{width:6rem!important}.w-7rem{width:7rem!important}.w-8rem{width:8rem!important}.w-9rem{width:9rem!important}.w-10rem{width:10rem!important}.w-11rem{width:11rem!important}.w-12rem{width:12rem!important}.w-13rem{width:13rem!important}.w-14rem{width:14rem!important}.w-15rem{width:15rem!important}.w-16rem{width:16rem!important}.w-17rem{width:17rem!important}.w-18rem{width:18rem!important}.w-19rem{width:19rem!important}.w-20rem{width:20rem!important}.w-21rem{width:21rem!important}.w-22rem{width:22rem!important}.w-23rem{width:23rem!important}.w-24rem{width:24rem!important}.w-25rem{width:25rem!important}.w-26rem{width:26rem!important}.w-27rem{width:27rem!important}.w-28rem{width:28rem!important}.w-29rem{width:29rem!important}.w-30rem{width:30rem!important}@media screen and (min-width: 576px){.sm\\:w-full{width:100%!important}.sm\\:w-screen{width:100vw!important}.sm\\:w-auto{width:auto!important}.sm\\:w-1{width:8.3333%!important}.sm\\:w-2{width:16.6667%!important}.sm\\:w-3{width:25%!important}.sm\\:w-4{width:33.3333%!important}.sm\\:w-5{width:41.6667%!important}.sm\\:w-6{width:50%!important}.sm\\:w-7{width:58.3333%!important}.sm\\:w-8{width:66.6667%!important}.sm\\:w-9{width:75%!important}.sm\\:w-10{width:83.3333%!important}.sm\\:w-11{width:91.6667%!important}.sm\\:w-12{width:100%!important}.sm\\:w-min{width:min-content!important}.sm\\:w-max{width:max-content!important}.sm\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.sm\\:w-1rem{width:1rem!important}.sm\\:w-2rem{width:2rem!important}.sm\\:w-3rem{width:3rem!important}.sm\\:w-4rem{width:4rem!important}.sm\\:w-5rem{width:5rem!important}.sm\\:w-6rem{width:6rem!important}.sm\\:w-7rem{width:7rem!important}.sm\\:w-8rem{width:8rem!important}.sm\\:w-9rem{width:9rem!important}.sm\\:w-10rem{width:10rem!important}.sm\\:w-11rem{width:11rem!important}.sm\\:w-12rem{width:12rem!important}.sm\\:w-13rem{width:13rem!important}.sm\\:w-14rem{width:14rem!important}.sm\\:w-15rem{width:15rem!important}.sm\\:w-16rem{width:16rem!important}.sm\\:w-17rem{width:17rem!important}.sm\\:w-18rem{width:18rem!important}.sm\\:w-19rem{width:19rem!important}.sm\\:w-20rem{width:20rem!important}.sm\\:w-21rem{width:21rem!important}.sm\\:w-22rem{width:22rem!important}.sm\\:w-23rem{width:23rem!important}.sm\\:w-24rem{width:24rem!important}.sm\\:w-25rem{width:25rem!important}.sm\\:w-26rem{width:26rem!important}.sm\\:w-27rem{width:27rem!important}.sm\\:w-28rem{width:28rem!important}.sm\\:w-29rem{width:29rem!important}.sm\\:w-30rem{width:30rem!important}}@media screen and (min-width: 768px){.md\\:w-full{width:100%!important}.md\\:w-screen{width:100vw!important}.md\\:w-auto{width:auto!important}.md\\:w-1{width:8.3333%!important}.md\\:w-2{width:16.6667%!important}.md\\:w-3{width:25%!important}.md\\:w-4{width:33.3333%!important}.md\\:w-5{width:41.6667%!important}.md\\:w-6{width:50%!important}.md\\:w-7{width:58.3333%!important}.md\\:w-8{width:66.6667%!important}.md\\:w-9{width:75%!important}.md\\:w-10{width:83.3333%!important}.md\\:w-11{width:91.6667%!important}.md\\:w-12{width:100%!important}.md\\:w-min{width:min-content!important}.md\\:w-max{width:max-content!important}.md\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.md\\:w-1rem{width:1rem!important}.md\\:w-2rem{width:2rem!important}.md\\:w-3rem{width:3rem!important}.md\\:w-4rem{width:4rem!important}.md\\:w-5rem{width:5rem!important}.md\\:w-6rem{width:6rem!important}.md\\:w-7rem{width:7rem!important}.md\\:w-8rem{width:8rem!important}.md\\:w-9rem{width:9rem!important}.md\\:w-10rem{width:10rem!important}.md\\:w-11rem{width:11rem!important}.md\\:w-12rem{width:12rem!important}.md\\:w-13rem{width:13rem!important}.md\\:w-14rem{width:14rem!important}.md\\:w-15rem{width:15rem!important}.md\\:w-16rem{width:16rem!important}.md\\:w-17rem{width:17rem!important}.md\\:w-18rem{width:18rem!important}.md\\:w-19rem{width:19rem!important}.md\\:w-20rem{width:20rem!important}.md\\:w-21rem{width:21rem!important}.md\\:w-22rem{width:22rem!important}.md\\:w-23rem{width:23rem!important}.md\\:w-24rem{width:24rem!important}.md\\:w-25rem{width:25rem!important}.md\\:w-26rem{width:26rem!important}.md\\:w-27rem{width:27rem!important}.md\\:w-28rem{width:28rem!important}.md\\:w-29rem{width:29rem!important}.md\\:w-30rem{width:30rem!important}}@media screen and (min-width: 992px){.lg\\:w-full{width:100%!important}.lg\\:w-screen{width:100vw!important}.lg\\:w-auto{width:auto!important}.lg\\:w-1{width:8.3333%!important}.lg\\:w-2{width:16.6667%!important}.lg\\:w-3{width:25%!important}.lg\\:w-4{width:33.3333%!important}.lg\\:w-5{width:41.6667%!important}.lg\\:w-6{width:50%!important}.lg\\:w-7{width:58.3333%!important}.lg\\:w-8{width:66.6667%!important}.lg\\:w-9{width:75%!important}.lg\\:w-10{width:83.3333%!important}.lg\\:w-11{width:91.6667%!important}.lg\\:w-12{width:100%!important}.lg\\:w-min{width:min-content!important}.lg\\:w-max{width:max-content!important}.lg\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.lg\\:w-1rem{width:1rem!important}.lg\\:w-2rem{width:2rem!important}.lg\\:w-3rem{width:3rem!important}.lg\\:w-4rem{width:4rem!important}.lg\\:w-5rem{width:5rem!important}.lg\\:w-6rem{width:6rem!important}.lg\\:w-7rem{width:7rem!important}.lg\\:w-8rem{width:8rem!important}.lg\\:w-9rem{width:9rem!important}.lg\\:w-10rem{width:10rem!important}.lg\\:w-11rem{width:11rem!important}.lg\\:w-12rem{width:12rem!important}.lg\\:w-13rem{width:13rem!important}.lg\\:w-14rem{width:14rem!important}.lg\\:w-15rem{width:15rem!important}.lg\\:w-16rem{width:16rem!important}.lg\\:w-17rem{width:17rem!important}.lg\\:w-18rem{width:18rem!important}.lg\\:w-19rem{width:19rem!important}.lg\\:w-20rem{width:20rem!important}.lg\\:w-21rem{width:21rem!important}.lg\\:w-22rem{width:22rem!important}.lg\\:w-23rem{width:23rem!important}.lg\\:w-24rem{width:24rem!important}.lg\\:w-25rem{width:25rem!important}.lg\\:w-26rem{width:26rem!important}.lg\\:w-27rem{width:27rem!important}.lg\\:w-28rem{width:28rem!important}.lg\\:w-29rem{width:29rem!important}.lg\\:w-30rem{width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:w-full{width:100%!important}.xl\\:w-screen{width:100vw!important}.xl\\:w-auto{width:auto!important}.xl\\:w-1{width:8.3333%!important}.xl\\:w-2{width:16.6667%!important}.xl\\:w-3{width:25%!important}.xl\\:w-4{width:33.3333%!important}.xl\\:w-5{width:41.6667%!important}.xl\\:w-6{width:50%!important}.xl\\:w-7{width:58.3333%!important}.xl\\:w-8{width:66.6667%!important}.xl\\:w-9{width:75%!important}.xl\\:w-10{width:83.3333%!important}.xl\\:w-11{width:91.6667%!important}.xl\\:w-12{width:100%!important}.xl\\:w-min{width:min-content!important}.xl\\:w-max{width:max-content!important}.xl\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.xl\\:w-1rem{width:1rem!important}.xl\\:w-2rem{width:2rem!important}.xl\\:w-3rem{width:3rem!important}.xl\\:w-4rem{width:4rem!important}.xl\\:w-5rem{width:5rem!important}.xl\\:w-6rem{width:6rem!important}.xl\\:w-7rem{width:7rem!important}.xl\\:w-8rem{width:8rem!important}.xl\\:w-9rem{width:9rem!important}.xl\\:w-10rem{width:10rem!important}.xl\\:w-11rem{width:11rem!important}.xl\\:w-12rem{width:12rem!important}.xl\\:w-13rem{width:13rem!important}.xl\\:w-14rem{width:14rem!important}.xl\\:w-15rem{width:15rem!important}.xl\\:w-16rem{width:16rem!important}.xl\\:w-17rem{width:17rem!important}.xl\\:w-18rem{width:18rem!important}.xl\\:w-19rem{width:19rem!important}.xl\\:w-20rem{width:20rem!important}.xl\\:w-21rem{width:21rem!important}.xl\\:w-22rem{width:22rem!important}.xl\\:w-23rem{width:23rem!important}.xl\\:w-24rem{width:24rem!important}.xl\\:w-25rem{width:25rem!important}.xl\\:w-26rem{width:26rem!important}.xl\\:w-27rem{width:27rem!important}.xl\\:w-28rem{width:28rem!important}.xl\\:w-29rem{width:29rem!important}.xl\\:w-30rem{width:30rem!important}}.h-full{height:100%!important}.h-screen{height:100vh!important}.h-auto{height:auto!important}.h-min{height:min-content!important}.h-max{height:max-content!important}.h-fit{height:-moz-fit-content!important;height:fit-content!important}.h-1rem{height:1rem!important}.h-2rem{height:2rem!important}.h-3rem{height:3rem!important}.h-4rem{height:4rem!important}.h-5rem{height:5rem!important}.h-6rem{height:6rem!important}.h-7rem{height:7rem!important}.h-8rem{height:8rem!important}.h-9rem{height:9rem!important}.h-10rem{height:10rem!important}.h-11rem{height:11rem!important}.h-12rem{height:12rem!important}.h-13rem{height:13rem!important}.h-14rem{height:14rem!important}.h-15rem{height:15rem!important}.h-16rem{height:16rem!important}.h-17rem{height:17rem!important}.h-18rem{height:18rem!important}.h-19rem{height:19rem!important}.h-20rem{height:20rem!important}.h-21rem{height:21rem!important}.h-22rem{height:22rem!important}.h-23rem{height:23rem!important}.h-24rem{height:24rem!important}.h-25rem{height:25rem!important}.h-26rem{height:26rem!important}.h-27rem{height:27rem!important}.h-28rem{height:28rem!important}.h-29rem{height:29rem!important}.h-30rem{height:30rem!important}@media screen and (min-width: 576px){.sm\\:h-full{height:100%!important}.sm\\:h-screen{height:100vh!important}.sm\\:h-auto{height:auto!important}.sm\\:h-min{height:min-content!important}.sm\\:h-max{height:max-content!important}.sm\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.sm\\:h-1rem{height:1rem!important}.sm\\:h-2rem{height:2rem!important}.sm\\:h-3rem{height:3rem!important}.sm\\:h-4rem{height:4rem!important}.sm\\:h-5rem{height:5rem!important}.sm\\:h-6rem{height:6rem!important}.sm\\:h-7rem{height:7rem!important}.sm\\:h-8rem{height:8rem!important}.sm\\:h-9rem{height:9rem!important}.sm\\:h-10rem{height:10rem!important}.sm\\:h-11rem{height:11rem!important}.sm\\:h-12rem{height:12rem!important}.sm\\:h-13rem{height:13rem!important}.sm\\:h-14rem{height:14rem!important}.sm\\:h-15rem{height:15rem!important}.sm\\:h-16rem{height:16rem!important}.sm\\:h-17rem{height:17rem!important}.sm\\:h-18rem{height:18rem!important}.sm\\:h-19rem{height:19rem!important}.sm\\:h-20rem{height:20rem!important}.sm\\:h-21rem{height:21rem!important}.sm\\:h-22rem{height:22rem!important}.sm\\:h-23rem{height:23rem!important}.sm\\:h-24rem{height:24rem!important}.sm\\:h-25rem{height:25rem!important}.sm\\:h-26rem{height:26rem!important}.sm\\:h-27rem{height:27rem!important}.sm\\:h-28rem{height:28rem!important}.sm\\:h-29rem{height:29rem!important}.sm\\:h-30rem{height:30rem!important}}@media screen and (min-width: 768px){.md\\:h-full{height:100%!important}.md\\:h-screen{height:100vh!important}.md\\:h-auto{height:auto!important}.md\\:h-min{height:min-content!important}.md\\:h-max{height:max-content!important}.md\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.md\\:h-1rem{height:1rem!important}.md\\:h-2rem{height:2rem!important}.md\\:h-3rem{height:3rem!important}.md\\:h-4rem{height:4rem!important}.md\\:h-5rem{height:5rem!important}.md\\:h-6rem{height:6rem!important}.md\\:h-7rem{height:7rem!important}.md\\:h-8rem{height:8rem!important}.md\\:h-9rem{height:9rem!important}.md\\:h-10rem{height:10rem!important}.md\\:h-11rem{height:11rem!important}.md\\:h-12rem{height:12rem!important}.md\\:h-13rem{height:13rem!important}.md\\:h-14rem{height:14rem!important}.md\\:h-15rem{height:15rem!important}.md\\:h-16rem{height:16rem!important}.md\\:h-17rem{height:17rem!important}.md\\:h-18rem{height:18rem!important}.md\\:h-19rem{height:19rem!important}.md\\:h-20rem{height:20rem!important}.md\\:h-21rem{height:21rem!important}.md\\:h-22rem{height:22rem!important}.md\\:h-23rem{height:23rem!important}.md\\:h-24rem{height:24rem!important}.md\\:h-25rem{height:25rem!important}.md\\:h-26rem{height:26rem!important}.md\\:h-27rem{height:27rem!important}.md\\:h-28rem{height:28rem!important}.md\\:h-29rem{height:29rem!important}.md\\:h-30rem{height:30rem!important}}@media screen and (min-width: 992px){.lg\\:h-full{height:100%!important}.lg\\:h-screen{height:100vh!important}.lg\\:h-auto{height:auto!important}.lg\\:h-min{height:min-content!important}.lg\\:h-max{height:max-content!important}.lg\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.lg\\:h-1rem{height:1rem!important}.lg\\:h-2rem{height:2rem!important}.lg\\:h-3rem{height:3rem!important}.lg\\:h-4rem{height:4rem!important}.lg\\:h-5rem{height:5rem!important}.lg\\:h-6rem{height:6rem!important}.lg\\:h-7rem{height:7rem!important}.lg\\:h-8rem{height:8rem!important}.lg\\:h-9rem{height:9rem!important}.lg\\:h-10rem{height:10rem!important}.lg\\:h-11rem{height:11rem!important}.lg\\:h-12rem{height:12rem!important}.lg\\:h-13rem{height:13rem!important}.lg\\:h-14rem{height:14rem!important}.lg\\:h-15rem{height:15rem!important}.lg\\:h-16rem{height:16rem!important}.lg\\:h-17rem{height:17rem!important}.lg\\:h-18rem{height:18rem!important}.lg\\:h-19rem{height:19rem!important}.lg\\:h-20rem{height:20rem!important}.lg\\:h-21rem{height:21rem!important}.lg\\:h-22rem{height:22rem!important}.lg\\:h-23rem{height:23rem!important}.lg\\:h-24rem{height:24rem!important}.lg\\:h-25rem{height:25rem!important}.lg\\:h-26rem{height:26rem!important}.lg\\:h-27rem{height:27rem!important}.lg\\:h-28rem{height:28rem!important}.lg\\:h-29rem{height:29rem!important}.lg\\:h-30rem{height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:h-full{height:100%!important}.xl\\:h-screen{height:100vh!important}.xl\\:h-auto{height:auto!important}.xl\\:h-min{height:min-content!important}.xl\\:h-max{height:max-content!important}.xl\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.xl\\:h-1rem{height:1rem!important}.xl\\:h-2rem{height:2rem!important}.xl\\:h-3rem{height:3rem!important}.xl\\:h-4rem{height:4rem!important}.xl\\:h-5rem{height:5rem!important}.xl\\:h-6rem{height:6rem!important}.xl\\:h-7rem{height:7rem!important}.xl\\:h-8rem{height:8rem!important}.xl\\:h-9rem{height:9rem!important}.xl\\:h-10rem{height:10rem!important}.xl\\:h-11rem{height:11rem!important}.xl\\:h-12rem{height:12rem!important}.xl\\:h-13rem{height:13rem!important}.xl\\:h-14rem{height:14rem!important}.xl\\:h-15rem{height:15rem!important}.xl\\:h-16rem{height:16rem!important}.xl\\:h-17rem{height:17rem!important}.xl\\:h-18rem{height:18rem!important}.xl\\:h-19rem{height:19rem!important}.xl\\:h-20rem{height:20rem!important}.xl\\:h-21rem{height:21rem!important}.xl\\:h-22rem{height:22rem!important}.xl\\:h-23rem{height:23rem!important}.xl\\:h-24rem{height:24rem!important}.xl\\:h-25rem{height:25rem!important}.xl\\:h-26rem{height:26rem!important}.xl\\:h-27rem{height:27rem!important}.xl\\:h-28rem{height:28rem!important}.xl\\:h-29rem{height:29rem!important}.xl\\:h-30rem{height:30rem!important}}.min-w-0{min-width:0px!important}.min-w-full{min-width:100%!important}.min-w-screen{min-width:100vw!important}.min-w-min{min-width:min-content!important}.min-w-max{min-width:max-content!important}@media screen and (min-width: 576px){.sm\\:min-w-0{min-width:0px!important}.sm\\:min-w-full{min-width:100%!important}.sm\\:min-w-screen{min-width:100vw!important}.sm\\:min-w-min{min-width:min-content!important}.sm\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 768px){.md\\:min-w-0{min-width:0px!important}.md\\:min-w-full{min-width:100%!important}.md\\:min-w-screen{min-width:100vw!important}.md\\:min-w-min{min-width:min-content!important}.md\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 992px){.lg\\:min-w-0{min-width:0px!important}.lg\\:min-w-full{min-width:100%!important}.lg\\:min-w-screen{min-width:100vw!important}.lg\\:min-w-min{min-width:min-content!important}.lg\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 1200px){.xl\\:min-w-0{min-width:0px!important}.xl\\:min-w-full{min-width:100%!important}.xl\\:min-w-screen{min-width:100vw!important}.xl\\:min-w-min{min-width:min-content!important}.xl\\:min-w-max{min-width:max-content!important}}.max-w-0{max-width:0px!important}.max-w-full{max-width:100%!important}.max-w-screen{max-width:100vw!important}.max-w-min{max-width:min-content!important}.max-w-max{max-width:max-content!important}.max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.max-w-1rem{max-width:1rem!important}.max-w-2rem{max-width:2rem!important}.max-w-3rem{max-width:3rem!important}.max-w-4rem{max-width:4rem!important}.max-w-5rem{max-width:5rem!important}.max-w-6rem{max-width:6rem!important}.max-w-7rem{max-width:7rem!important}.max-w-8rem{max-width:8rem!important}.max-w-9rem{max-width:9rem!important}.max-w-10rem{max-width:10rem!important}.max-w-11rem{max-width:11rem!important}.max-w-12rem{max-width:12rem!important}.max-w-13rem{max-width:13rem!important}.max-w-14rem{max-width:14rem!important}.max-w-15rem{max-width:15rem!important}.max-w-16rem{max-width:16rem!important}.max-w-17rem{max-width:17rem!important}.max-w-18rem{max-width:18rem!important}.max-w-19rem{max-width:19rem!important}.max-w-20rem{max-width:20rem!important}.max-w-21rem{max-width:21rem!important}.max-w-22rem{max-width:22rem!important}.max-w-23rem{max-width:23rem!important}.max-w-24rem{max-width:24rem!important}.max-w-25rem{max-width:25rem!important}.max-w-26rem{max-width:26rem!important}.max-w-27rem{max-width:27rem!important}.max-w-28rem{max-width:28rem!important}.max-w-29rem{max-width:29rem!important}.max-w-30rem{max-width:30rem!important}@media screen and (min-width: 576px){.sm\\:max-w-0{max-width:0px!important}.sm\\:max-w-full{max-width:100%!important}.sm\\:max-w-screen{max-width:100vw!important}.sm\\:max-w-min{max-width:min-content!important}.sm\\:max-w-max{max-width:max-content!important}.sm\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.sm\\:max-w-1rem{max-width:1rem!important}.sm\\:max-w-2rem{max-width:2rem!important}.sm\\:max-w-3rem{max-width:3rem!important}.sm\\:max-w-4rem{max-width:4rem!important}.sm\\:max-w-5rem{max-width:5rem!important}.sm\\:max-w-6rem{max-width:6rem!important}.sm\\:max-w-7rem{max-width:7rem!important}.sm\\:max-w-8rem{max-width:8rem!important}.sm\\:max-w-9rem{max-width:9rem!important}.sm\\:max-w-10rem{max-width:10rem!important}.sm\\:max-w-11rem{max-width:11rem!important}.sm\\:max-w-12rem{max-width:12rem!important}.sm\\:max-w-13rem{max-width:13rem!important}.sm\\:max-w-14rem{max-width:14rem!important}.sm\\:max-w-15rem{max-width:15rem!important}.sm\\:max-w-16rem{max-width:16rem!important}.sm\\:max-w-17rem{max-width:17rem!important}.sm\\:max-w-18rem{max-width:18rem!important}.sm\\:max-w-19rem{max-width:19rem!important}.sm\\:max-w-20rem{max-width:20rem!important}.sm\\:max-w-21rem{max-width:21rem!important}.sm\\:max-w-22rem{max-width:22rem!important}.sm\\:max-w-23rem{max-width:23rem!important}.sm\\:max-w-24rem{max-width:24rem!important}.sm\\:max-w-25rem{max-width:25rem!important}.sm\\:max-w-26rem{max-width:26rem!important}.sm\\:max-w-27rem{max-width:27rem!important}.sm\\:max-w-28rem{max-width:28rem!important}.sm\\:max-w-29rem{max-width:29rem!important}.sm\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 768px){.md\\:max-w-0{max-width:0px!important}.md\\:max-w-full{max-width:100%!important}.md\\:max-w-screen{max-width:100vw!important}.md\\:max-w-min{max-width:min-content!important}.md\\:max-w-max{max-width:max-content!important}.md\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.md\\:max-w-1rem{max-width:1rem!important}.md\\:max-w-2rem{max-width:2rem!important}.md\\:max-w-3rem{max-width:3rem!important}.md\\:max-w-4rem{max-width:4rem!important}.md\\:max-w-5rem{max-width:5rem!important}.md\\:max-w-6rem{max-width:6rem!important}.md\\:max-w-7rem{max-width:7rem!important}.md\\:max-w-8rem{max-width:8rem!important}.md\\:max-w-9rem{max-width:9rem!important}.md\\:max-w-10rem{max-width:10rem!important}.md\\:max-w-11rem{max-width:11rem!important}.md\\:max-w-12rem{max-width:12rem!important}.md\\:max-w-13rem{max-width:13rem!important}.md\\:max-w-14rem{max-width:14rem!important}.md\\:max-w-15rem{max-width:15rem!important}.md\\:max-w-16rem{max-width:16rem!important}.md\\:max-w-17rem{max-width:17rem!important}.md\\:max-w-18rem{max-width:18rem!important}.md\\:max-w-19rem{max-width:19rem!important}.md\\:max-w-20rem{max-width:20rem!important}.md\\:max-w-21rem{max-width:21rem!important}.md\\:max-w-22rem{max-width:22rem!important}.md\\:max-w-23rem{max-width:23rem!important}.md\\:max-w-24rem{max-width:24rem!important}.md\\:max-w-25rem{max-width:25rem!important}.md\\:max-w-26rem{max-width:26rem!important}.md\\:max-w-27rem{max-width:27rem!important}.md\\:max-w-28rem{max-width:28rem!important}.md\\:max-w-29rem{max-width:29rem!important}.md\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-w-0{max-width:0px!important}.lg\\:max-w-full{max-width:100%!important}.lg\\:max-w-screen{max-width:100vw!important}.lg\\:max-w-min{max-width:min-content!important}.lg\\:max-w-max{max-width:max-content!important}.lg\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.lg\\:max-w-1rem{max-width:1rem!important}.lg\\:max-w-2rem{max-width:2rem!important}.lg\\:max-w-3rem{max-width:3rem!important}.lg\\:max-w-4rem{max-width:4rem!important}.lg\\:max-w-5rem{max-width:5rem!important}.lg\\:max-w-6rem{max-width:6rem!important}.lg\\:max-w-7rem{max-width:7rem!important}.lg\\:max-w-8rem{max-width:8rem!important}.lg\\:max-w-9rem{max-width:9rem!important}.lg\\:max-w-10rem{max-width:10rem!important}.lg\\:max-w-11rem{max-width:11rem!important}.lg\\:max-w-12rem{max-width:12rem!important}.lg\\:max-w-13rem{max-width:13rem!important}.lg\\:max-w-14rem{max-width:14rem!important}.lg\\:max-w-15rem{max-width:15rem!important}.lg\\:max-w-16rem{max-width:16rem!important}.lg\\:max-w-17rem{max-width:17rem!important}.lg\\:max-w-18rem{max-width:18rem!important}.lg\\:max-w-19rem{max-width:19rem!important}.lg\\:max-w-20rem{max-width:20rem!important}.lg\\:max-w-21rem{max-width:21rem!important}.lg\\:max-w-22rem{max-width:22rem!important}.lg\\:max-w-23rem{max-width:23rem!important}.lg\\:max-w-24rem{max-width:24rem!important}.lg\\:max-w-25rem{max-width:25rem!important}.lg\\:max-w-26rem{max-width:26rem!important}.lg\\:max-w-27rem{max-width:27rem!important}.lg\\:max-w-28rem{max-width:28rem!important}.lg\\:max-w-29rem{max-width:29rem!important}.lg\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-w-0{max-width:0px!important}.xl\\:max-w-full{max-width:100%!important}.xl\\:max-w-screen{max-width:100vw!important}.xl\\:max-w-min{max-width:min-content!important}.xl\\:max-w-max{max-width:max-content!important}.xl\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.xl\\:max-w-1rem{max-width:1rem!important}.xl\\:max-w-2rem{max-width:2rem!important}.xl\\:max-w-3rem{max-width:3rem!important}.xl\\:max-w-4rem{max-width:4rem!important}.xl\\:max-w-5rem{max-width:5rem!important}.xl\\:max-w-6rem{max-width:6rem!important}.xl\\:max-w-7rem{max-width:7rem!important}.xl\\:max-w-8rem{max-width:8rem!important}.xl\\:max-w-9rem{max-width:9rem!important}.xl\\:max-w-10rem{max-width:10rem!important}.xl\\:max-w-11rem{max-width:11rem!important}.xl\\:max-w-12rem{max-width:12rem!important}.xl\\:max-w-13rem{max-width:13rem!important}.xl\\:max-w-14rem{max-width:14rem!important}.xl\\:max-w-15rem{max-width:15rem!important}.xl\\:max-w-16rem{max-width:16rem!important}.xl\\:max-w-17rem{max-width:17rem!important}.xl\\:max-w-18rem{max-width:18rem!important}.xl\\:max-w-19rem{max-width:19rem!important}.xl\\:max-w-20rem{max-width:20rem!important}.xl\\:max-w-21rem{max-width:21rem!important}.xl\\:max-w-22rem{max-width:22rem!important}.xl\\:max-w-23rem{max-width:23rem!important}.xl\\:max-w-24rem{max-width:24rem!important}.xl\\:max-w-25rem{max-width:25rem!important}.xl\\:max-w-26rem{max-width:26rem!important}.xl\\:max-w-27rem{max-width:27rem!important}.xl\\:max-w-28rem{max-width:28rem!important}.xl\\:max-w-29rem{max-width:29rem!important}.xl\\:max-w-30rem{max-width:30rem!important}}.min-h-0{min-height:0px!important}.min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh!important}@media screen and (min-width: 576px){.sm\\:min-h-0{min-height:0px!important}.sm\\:min-h-full{min-height:100%!important}.sm\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 768px){.md\\:min-h-0{min-height:0px!important}.md\\:min-h-full{min-height:100%!important}.md\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 992px){.lg\\:min-h-0{min-height:0px!important}.lg\\:min-h-full{min-height:100%!important}.lg\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 1200px){.xl\\:min-h-0{min-height:0px!important}.xl\\:min-h-full{min-height:100%!important}.xl\\:min-h-screen{min-height:100vh!important}}.max-h-0{max-height:0px!important}.max-h-full{max-height:100%!important}.max-h-screen{max-height:100vh!important}.max-h-min{max-height:min-content!important}.max-h-max{max-height:max-content!important}.max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.max-h-1rem{max-height:1rem!important}.max-h-2rem{max-height:2rem!important}.max-h-3rem{max-height:3rem!important}.max-h-4rem{max-height:4rem!important}.max-h-5rem{max-height:5rem!important}.max-h-6rem{max-height:6rem!important}.max-h-7rem{max-height:7rem!important}.max-h-8rem{max-height:8rem!important}.max-h-9rem{max-height:9rem!important}.max-h-10rem{max-height:10rem!important}.max-h-11rem{max-height:11rem!important}.max-h-12rem{max-height:12rem!important}.max-h-13rem{max-height:13rem!important}.max-h-14rem{max-height:14rem!important}.max-h-15rem{max-height:15rem!important}.max-h-16rem{max-height:16rem!important}.max-h-17rem{max-height:17rem!important}.max-h-18rem{max-height:18rem!important}.max-h-19rem{max-height:19rem!important}.max-h-20rem{max-height:20rem!important}.max-h-21rem{max-height:21rem!important}.max-h-22rem{max-height:22rem!important}.max-h-23rem{max-height:23rem!important}.max-h-24rem{max-height:24rem!important}.max-h-25rem{max-height:25rem!important}.max-h-26rem{max-height:26rem!important}.max-h-27rem{max-height:27rem!important}.max-h-28rem{max-height:28rem!important}.max-h-29rem{max-height:29rem!important}.max-h-30rem{max-height:30rem!important}@media screen and (min-width: 576px){.sm\\:max-h-0{max-height:0px!important}.sm\\:max-h-full{max-height:100%!important}.sm\\:max-h-screen{max-height:100vh!important}.sm\\:max-h-min{max-height:min-content!important}.sm\\:max-h-max{max-height:max-content!important}.sm\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.sm\\:max-h-1rem{max-height:1rem!important}.sm\\:max-h-2rem{max-height:2rem!important}.sm\\:max-h-3rem{max-height:3rem!important}.sm\\:max-h-4rem{max-height:4rem!important}.sm\\:max-h-5rem{max-height:5rem!important}.sm\\:max-h-6rem{max-height:6rem!important}.sm\\:max-h-7rem{max-height:7rem!important}.sm\\:max-h-8rem{max-height:8rem!important}.sm\\:max-h-9rem{max-height:9rem!important}.sm\\:max-h-10rem{max-height:10rem!important}.sm\\:max-h-11rem{max-height:11rem!important}.sm\\:max-h-12rem{max-height:12rem!important}.sm\\:max-h-13rem{max-height:13rem!important}.sm\\:max-h-14rem{max-height:14rem!important}.sm\\:max-h-15rem{max-height:15rem!important}.sm\\:max-h-16rem{max-height:16rem!important}.sm\\:max-h-17rem{max-height:17rem!important}.sm\\:max-h-18rem{max-height:18rem!important}.sm\\:max-h-19rem{max-height:19rem!important}.sm\\:max-h-20rem{max-height:20rem!important}.sm\\:max-h-21rem{max-height:21rem!important}.sm\\:max-h-22rem{max-height:22rem!important}.sm\\:max-h-23rem{max-height:23rem!important}.sm\\:max-h-24rem{max-height:24rem!important}.sm\\:max-h-25rem{max-height:25rem!important}.sm\\:max-h-26rem{max-height:26rem!important}.sm\\:max-h-27rem{max-height:27rem!important}.sm\\:max-h-28rem{max-height:28rem!important}.sm\\:max-h-29rem{max-height:29rem!important}.sm\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 768px){.md\\:max-h-0{max-height:0px!important}.md\\:max-h-full{max-height:100%!important}.md\\:max-h-screen{max-height:100vh!important}.md\\:max-h-min{max-height:min-content!important}.md\\:max-h-max{max-height:max-content!important}.md\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.md\\:max-h-1rem{max-height:1rem!important}.md\\:max-h-2rem{max-height:2rem!important}.md\\:max-h-3rem{max-height:3rem!important}.md\\:max-h-4rem{max-height:4rem!important}.md\\:max-h-5rem{max-height:5rem!important}.md\\:max-h-6rem{max-height:6rem!important}.md\\:max-h-7rem{max-height:7rem!important}.md\\:max-h-8rem{max-height:8rem!important}.md\\:max-h-9rem{max-height:9rem!important}.md\\:max-h-10rem{max-height:10rem!important}.md\\:max-h-11rem{max-height:11rem!important}.md\\:max-h-12rem{max-height:12rem!important}.md\\:max-h-13rem{max-height:13rem!important}.md\\:max-h-14rem{max-height:14rem!important}.md\\:max-h-15rem{max-height:15rem!important}.md\\:max-h-16rem{max-height:16rem!important}.md\\:max-h-17rem{max-height:17rem!important}.md\\:max-h-18rem{max-height:18rem!important}.md\\:max-h-19rem{max-height:19rem!important}.md\\:max-h-20rem{max-height:20rem!important}.md\\:max-h-21rem{max-height:21rem!important}.md\\:max-h-22rem{max-height:22rem!important}.md\\:max-h-23rem{max-height:23rem!important}.md\\:max-h-24rem{max-height:24rem!important}.md\\:max-h-25rem{max-height:25rem!important}.md\\:max-h-26rem{max-height:26rem!important}.md\\:max-h-27rem{max-height:27rem!important}.md\\:max-h-28rem{max-height:28rem!important}.md\\:max-h-29rem{max-height:29rem!important}.md\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-h-0{max-height:0px!important}.lg\\:max-h-full{max-height:100%!important}.lg\\:max-h-screen{max-height:100vh!important}.lg\\:max-h-min{max-height:min-content!important}.lg\\:max-h-max{max-height:max-content!important}.lg\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.lg\\:max-h-1rem{max-height:1rem!important}.lg\\:max-h-2rem{max-height:2rem!important}.lg\\:max-h-3rem{max-height:3rem!important}.lg\\:max-h-4rem{max-height:4rem!important}.lg\\:max-h-5rem{max-height:5rem!important}.lg\\:max-h-6rem{max-height:6rem!important}.lg\\:max-h-7rem{max-height:7rem!important}.lg\\:max-h-8rem{max-height:8rem!important}.lg\\:max-h-9rem{max-height:9rem!important}.lg\\:max-h-10rem{max-height:10rem!important}.lg\\:max-h-11rem{max-height:11rem!important}.lg\\:max-h-12rem{max-height:12rem!important}.lg\\:max-h-13rem{max-height:13rem!important}.lg\\:max-h-14rem{max-height:14rem!important}.lg\\:max-h-15rem{max-height:15rem!important}.lg\\:max-h-16rem{max-height:16rem!important}.lg\\:max-h-17rem{max-height:17rem!important}.lg\\:max-h-18rem{max-height:18rem!important}.lg\\:max-h-19rem{max-height:19rem!important}.lg\\:max-h-20rem{max-height:20rem!important}.lg\\:max-h-21rem{max-height:21rem!important}.lg\\:max-h-22rem{max-height:22rem!important}.lg\\:max-h-23rem{max-height:23rem!important}.lg\\:max-h-24rem{max-height:24rem!important}.lg\\:max-h-25rem{max-height:25rem!important}.lg\\:max-h-26rem{max-height:26rem!important}.lg\\:max-h-27rem{max-height:27rem!important}.lg\\:max-h-28rem{max-height:28rem!important}.lg\\:max-h-29rem{max-height:29rem!important}.lg\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-h-0{max-height:0px!important}.xl\\:max-h-full{max-height:100%!important}.xl\\:max-h-screen{max-height:100vh!important}.xl\\:max-h-min{max-height:min-content!important}.xl\\:max-h-max{max-height:max-content!important}.xl\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.xl\\:max-h-1rem{max-height:1rem!important}.xl\\:max-h-2rem{max-height:2rem!important}.xl\\:max-h-3rem{max-height:3rem!important}.xl\\:max-h-4rem{max-height:4rem!important}.xl\\:max-h-5rem{max-height:5rem!important}.xl\\:max-h-6rem{max-height:6rem!important}.xl\\:max-h-7rem{max-height:7rem!important}.xl\\:max-h-8rem{max-height:8rem!important}.xl\\:max-h-9rem{max-height:9rem!important}.xl\\:max-h-10rem{max-height:10rem!important}.xl\\:max-h-11rem{max-height:11rem!important}.xl\\:max-h-12rem{max-height:12rem!important}.xl\\:max-h-13rem{max-height:13rem!important}.xl\\:max-h-14rem{max-height:14rem!important}.xl\\:max-h-15rem{max-height:15rem!important}.xl\\:max-h-16rem{max-height:16rem!important}.xl\\:max-h-17rem{max-height:17rem!important}.xl\\:max-h-18rem{max-height:18rem!important}.xl\\:max-h-19rem{max-height:19rem!important}.xl\\:max-h-20rem{max-height:20rem!important}.xl\\:max-h-21rem{max-height:21rem!important}.xl\\:max-h-22rem{max-height:22rem!important}.xl\\:max-h-23rem{max-height:23rem!important}.xl\\:max-h-24rem{max-height:24rem!important}.xl\\:max-h-25rem{max-height:25rem!important}.xl\\:max-h-26rem{max-height:26rem!important}.xl\\:max-h-27rem{max-height:27rem!important}.xl\\:max-h-28rem{max-height:28rem!important}.xl\\:max-h-29rem{max-height:29rem!important}.xl\\:max-h-30rem{max-height:30rem!important}}.static{position:static!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:sticky!important}@media screen and (min-width: 576px){.sm\\:static{position:static!important}.sm\\:fixed{position:fixed!important}.sm\\:absolute{position:absolute!important}.sm\\:relative{position:relative!important}.sm\\:sticky{position:sticky!important}}@media screen and (min-width: 768px){.md\\:static{position:static!important}.md\\:fixed{position:fixed!important}.md\\:absolute{position:absolute!important}.md\\:relative{position:relative!important}.md\\:sticky{position:sticky!important}}@media screen and (min-width: 992px){.lg\\:static{position:static!important}.lg\\:fixed{position:fixed!important}.lg\\:absolute{position:absolute!important}.lg\\:relative{position:relative!important}.lg\\:sticky{position:sticky!important}}@media screen and (min-width: 1200px){.xl\\:static{position:static!important}.xl\\:fixed{position:fixed!important}.xl\\:absolute{position:absolute!important}.xl\\:relative{position:relative!important}.xl\\:sticky{position:sticky!important}}.top-auto{top:auto!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}@media screen and (min-width: 576px){.sm\\:top-auto{top:auto!important}.sm\\:top-0{top:0!important}.sm\\:top-50{top:50%!important}.sm\\:top-100{top:100%!important}}@media screen and (min-width: 768px){.md\\:top-auto{top:auto!important}.md\\:top-0{top:0!important}.md\\:top-50{top:50%!important}.md\\:top-100{top:100%!important}}@media screen and (min-width: 992px){.lg\\:top-auto{top:auto!important}.lg\\:top-0{top:0!important}.lg\\:top-50{top:50%!important}.lg\\:top-100{top:100%!important}}@media screen and (min-width: 1200px){.xl\\:top-auto{top:auto!important}.xl\\:top-0{top:0!important}.xl\\:top-50{top:50%!important}.xl\\:top-100{top:100%!important}}.left-auto{left:auto!important}.left-0{left:0!important}.left-50{left:50%!important}.left-100{left:100%!important}@media screen and (min-width: 576px){.sm\\:left-auto{left:auto!important}.sm\\:left-0{left:0!important}.sm\\:left-50{left:50%!important}.sm\\:left-100{left:100%!important}}@media screen and (min-width: 768px){.md\\:left-auto{left:auto!important}.md\\:left-0{left:0!important}.md\\:left-50{left:50%!important}.md\\:left-100{left:100%!important}}@media screen and (min-width: 992px){.lg\\:left-auto{left:auto!important}.lg\\:left-0{left:0!important}.lg\\:left-50{left:50%!important}.lg\\:left-100{left:100%!important}}@media screen and (min-width: 1200px){.xl\\:left-auto{left:auto!important}.xl\\:left-0{left:0!important}.xl\\:left-50{left:50%!important}.xl\\:left-100{left:100%!important}}.right-auto{right:auto!important}.right-0{right:0!important}.right-50{right:50%!important}.right-100{right:100%!important}@media screen and (min-width: 576px){.sm\\:right-auto{right:auto!important}.sm\\:right-0{right:0!important}.sm\\:right-50{right:50%!important}.sm\\:right-100{right:100%!important}}@media screen and (min-width: 768px){.md\\:right-auto{right:auto!important}.md\\:right-0{right:0!important}.md\\:right-50{right:50%!important}.md\\:right-100{right:100%!important}}@media screen and (min-width: 992px){.lg\\:right-auto{right:auto!important}.lg\\:right-0{right:0!important}.lg\\:right-50{right:50%!important}.lg\\:right-100{right:100%!important}}@media screen and (min-width: 1200px){.xl\\:right-auto{right:auto!important}.xl\\:right-0{right:0!important}.xl\\:right-50{right:50%!important}.xl\\:right-100{right:100%!important}}.bottom-auto{bottom:auto!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}@media screen and (min-width: 576px){.sm\\:bottom-auto{bottom:auto!important}.sm\\:bottom-0{bottom:0!important}.sm\\:bottom-50{bottom:50%!important}.sm\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 768px){.md\\:bottom-auto{bottom:auto!important}.md\\:bottom-0{bottom:0!important}.md\\:bottom-50{bottom:50%!important}.md\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 992px){.lg\\:bottom-auto{bottom:auto!important}.lg\\:bottom-0{bottom:0!important}.lg\\:bottom-50{bottom:50%!important}.lg\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 1200px){.xl\\:bottom-auto{bottom:auto!important}.xl\\:bottom-0{bottom:0!important}.xl\\:bottom-50{bottom:50%!important}.xl\\:bottom-100{bottom:100%!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-auto{overflow:auto!important}.sm\\:overflow-hidden{overflow:hidden!important}.sm\\:overflow-visible{overflow:visible!important}.sm\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-auto{overflow:auto!important}.md\\:overflow-hidden{overflow:hidden!important}.md\\:overflow-visible{overflow:visible!important}.md\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-auto{overflow:auto!important}.lg\\:overflow-hidden{overflow:hidden!important}.lg\\:overflow-visible{overflow:visible!important}.lg\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-auto{overflow:auto!important}.xl\\:overflow-hidden{overflow:hidden!important}.xl\\:overflow-visible{overflow:visible!important}.xl\\:overflow-scroll{overflow:scroll!important}}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-x-auto{overflow-x:auto!important}.sm\\:overflow-x-hidden{overflow-x:hidden!important}.sm\\:overflow-x-visible{overflow-x:visible!important}.sm\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-x-auto{overflow-x:auto!important}.md\\:overflow-x-hidden{overflow-x:hidden!important}.md\\:overflow-x-visible{overflow-x:visible!important}.md\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-x-auto{overflow-x:auto!important}.lg\\:overflow-x-hidden{overflow-x:hidden!important}.lg\\:overflow-x-visible{overflow-x:visible!important}.lg\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-x-auto{overflow-x:auto!important}.xl\\:overflow-x-hidden{overflow-x:hidden!important}.xl\\:overflow-x-visible{overflow-x:visible!important}.xl\\:overflow-x-scroll{overflow-x:scroll!important}}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-y-auto{overflow-y:auto!important}.sm\\:overflow-y-hidden{overflow-y:hidden!important}.sm\\:overflow-y-visible{overflow-y:visible!important}.sm\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-y-auto{overflow-y:auto!important}.md\\:overflow-y-hidden{overflow-y:hidden!important}.md\\:overflow-y-visible{overflow-y:visible!important}.md\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-y-auto{overflow-y:auto!important}.lg\\:overflow-y-hidden{overflow-y:hidden!important}.lg\\:overflow-y-visible{overflow-y:visible!important}.lg\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-y-auto{overflow-y:auto!important}.xl\\:overflow-y-hidden{overflow-y:hidden!important}.xl\\:overflow-y-visible{overflow-y:visible!important}.xl\\:overflow-y-scroll{overflow-y:scroll!important}}.z-auto{z-index:auto!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}.z-4{z-index:4!important}.z-5{z-index:5!important}@media screen and (min-width: 576px){.sm\\:z-auto{z-index:auto!important}.sm\\:z-0{z-index:0!important}.sm\\:z-1{z-index:1!important}.sm\\:z-2{z-index:2!important}.sm\\:z-3{z-index:3!important}.sm\\:z-4{z-index:4!important}.sm\\:z-5{z-index:5!important}}@media screen and (min-width: 768px){.md\\:z-auto{z-index:auto!important}.md\\:z-0{z-index:0!important}.md\\:z-1{z-index:1!important}.md\\:z-2{z-index:2!important}.md\\:z-3{z-index:3!important}.md\\:z-4{z-index:4!important}.md\\:z-5{z-index:5!important}}@media screen and (min-width: 992px){.lg\\:z-auto{z-index:auto!important}.lg\\:z-0{z-index:0!important}.lg\\:z-1{z-index:1!important}.lg\\:z-2{z-index:2!important}.lg\\:z-3{z-index:3!important}.lg\\:z-4{z-index:4!important}.lg\\:z-5{z-index:5!important}}@media screen and (min-width: 1200px){.xl\\:z-auto{z-index:auto!important}.xl\\:z-0{z-index:0!important}.xl\\:z-1{z-index:1!important}.xl\\:z-2{z-index:2!important}.xl\\:z-3{z-index:3!important}.xl\\:z-4{z-index:4!important}.xl\\:z-5{z-index:5!important}}.bg-repeat{background-repeat:repeat!important}.bg-no-repeat{background-repeat:no-repeat!important}.bg-repeat-x{background-repeat:repeat-x!important}.bg-repeat-y{background-repeat:repeat-y!important}.bg-repeat-round{background-repeat:round!important}.bg-repeat-space{background-repeat:space!important}@media screen and (min-width: 576px){.sm\\:bg-repeat{background-repeat:repeat!important}.sm\\:bg-no-repeat{background-repeat:no-repeat!important}.sm\\:bg-repeat-x{background-repeat:repeat-x!important}.sm\\:bg-repeat-y{background-repeat:repeat-y!important}.sm\\:bg-repeat-round{background-repeat:round!important}.sm\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 768px){.md\\:bg-repeat{background-repeat:repeat!important}.md\\:bg-no-repeat{background-repeat:no-repeat!important}.md\\:bg-repeat-x{background-repeat:repeat-x!important}.md\\:bg-repeat-y{background-repeat:repeat-y!important}.md\\:bg-repeat-round{background-repeat:round!important}.md\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 992px){.lg\\:bg-repeat{background-repeat:repeat!important}.lg\\:bg-no-repeat{background-repeat:no-repeat!important}.lg\\:bg-repeat-x{background-repeat:repeat-x!important}.lg\\:bg-repeat-y{background-repeat:repeat-y!important}.lg\\:bg-repeat-round{background-repeat:round!important}.lg\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 1200px){.xl\\:bg-repeat{background-repeat:repeat!important}.xl\\:bg-no-repeat{background-repeat:no-repeat!important}.xl\\:bg-repeat-x{background-repeat:repeat-x!important}.xl\\:bg-repeat-y{background-repeat:repeat-y!important}.xl\\:bg-repeat-round{background-repeat:round!important}.xl\\:bg-repeat-space{background-repeat:space!important}}.bg-auto{background-size:auto!important}.bg-cover{background-size:cover!important}.bg-contain{background-size:contain!important}@media screen and (min-width: 576px){.sm\\:bg-auto{background-size:auto!important}.sm\\:bg-cover{background-size:cover!important}.sm\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 768px){.md\\:bg-auto{background-size:auto!important}.md\\:bg-cover{background-size:cover!important}.md\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 992px){.lg\\:bg-auto{background-size:auto!important}.lg\\:bg-cover{background-size:cover!important}.lg\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 1200px){.xl\\:bg-auto{background-size:auto!important}.xl\\:bg-cover{background-size:cover!important}.xl\\:bg-contain{background-size:contain!important}}.bg-bottom{background-position:bottom!important}.bg-center{background-position:center!important}.bg-left{background-position:left!important}.bg-left-bottom{background-position:left bottom!important}.bg-left-top{background-position:left top!important}.bg-right{background-position:right!important}.bg-right-bottom{background-position:right bottom!important}.bg-right-top{background-position:right top!important}.bg-top{background-position:top!important}@media screen and (min-width: 576px){.sm\\:bg-bottom{background-position:bottom!important}.sm\\:bg-center{background-position:center!important}.sm\\:bg-left{background-position:left!important}.sm\\:bg-left-bottom{background-position:left bottom!important}.sm\\:bg-left-top{background-position:left top!important}.sm\\:bg-right{background-position:right!important}.sm\\:bg-right-bottom{background-position:right bottom!important}.sm\\:bg-right-top{background-position:right top!important}.sm\\:bg-top{background-position:top!important}}@media screen and (min-width: 768px){.md\\:bg-bottom{background-position:bottom!important}.md\\:bg-center{background-position:center!important}.md\\:bg-left{background-position:left!important}.md\\:bg-left-bottom{background-position:left bottom!important}.md\\:bg-left-top{background-position:left top!important}.md\\:bg-right{background-position:right!important}.md\\:bg-right-bottom{background-position:right bottom!important}.md\\:bg-right-top{background-position:right top!important}.md\\:bg-top{background-position:top!important}}@media screen and (min-width: 992px){.lg\\:bg-bottom{background-position:bottom!important}.lg\\:bg-center{background-position:center!important}.lg\\:bg-left{background-position:left!important}.lg\\:bg-left-bottom{background-position:left bottom!important}.lg\\:bg-left-top{background-position:left top!important}.lg\\:bg-right{background-position:right!important}.lg\\:bg-right-bottom{background-position:right bottom!important}.lg\\:bg-right-top{background-position:right top!important}.lg\\:bg-top{background-position:top!important}}@media screen and (min-width: 1200px){.xl\\:bg-bottom{background-position:bottom!important}.xl\\:bg-center{background-position:center!important}.xl\\:bg-left{background-position:left!important}.xl\\:bg-left-bottom{background-position:left bottom!important}.xl\\:bg-left-top{background-position:left top!important}.xl\\:bg-right{background-position:right!important}.xl\\:bg-right-bottom{background-position:right bottom!important}.xl\\:bg-right-top{background-position:right top!important}.xl\\:bg-top{background-position:top!important}}.list-none{list-style:none!important}.list-disc{list-style:disc!important}.list-decimal{list-style:decimal!important}.appearance-none{-webkit-appearance:none!important;appearance:none!important}.outline-none{outline:none!important}.pointer-events-none{pointer-events:none!important}.pointer-events-auto{pointer-events:auto!important}.cursor-auto{cursor:auto!important}.cursor-pointer{cursor:pointer!important}.cursor-wait{cursor:wait!important}.cursor-move{cursor:move!important}.select-none{-webkit-user-select:none!important;user-select:none!important}.select-text{-webkit-user-select:text!important;user-select:text!important}.select-all{-webkit-user-select:all!important;user-select:all!important}.select-auto{-webkit-user-select:auto!important;user-select:auto!important}.opacity-0{opacity:0!important}.opacity-10{opacity:.1!important}.opacity-20{opacity:.2!important}.opacity-30{opacity:.3!important}.opacity-40{opacity:.4!important}.opacity-50{opacity:.5!important}.opacity-60{opacity:.6!important}.opacity-70{opacity:.7!important}.opacity-80{opacity:.8!important}.opacity-90{opacity:.9!important}.opacity-100{opacity:1!important}.reset{all:unset}.transition-none{transition-property:none!important}.transition-all{transition-property:all!important}.transition-colors{transition-property:background-color,border-color,color!important}.transition-transform{transition-property:transform!important}.transition-duration-100{transition-duration:.1s!important}.transition-duration-150{transition-duration:.15s!important}.transition-duration-200{transition-duration:.2s!important}.transition-duration-300{transition-duration:.3s!important}.transition-duration-400{transition-duration:.4s!important}.transition-duration-500{transition-duration:.5s!important}.transition-duration-1000{transition-duration:1s!important}.transition-duration-2000{transition-duration:2s!important}.transition-duration-3000{transition-duration:3s!important}.transition-linear{transition-timing-function:linear!important}.transition-ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.transition-ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.transition-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.transition-delay-100{transition-delay:.1s!important}.transition-delay-150{transition-delay:.15s!important}.transition-delay-200{transition-delay:.2s!important}.transition-delay-300{transition-delay:.3s!important}.transition-delay-400{transition-delay:.4s!important}.transition-delay-500{transition-delay:.5s!important}.transition-delay-1000{transition-delay:1s!important}.translate-x-0{transform:translate(0)!important}.translate-x-100{transform:translate(100%)!important}.-translate-x-100{transform:translate(-100%)!important}.translate-y-0{transform:translateY(0)!important}.translate-y-100{transform:translateY(100%)!important}.-translate-y-100{transform:translateY(-100%)!important}@media screen and (min-width: 576px){.sm\\:translate-x-0{transform:translate(0)!important}.sm\\:translate-x-100{transform:translate(100%)!important}.sm\\:-translate-x-100{transform:translate(-100%)!important}.sm\\:translate-y-0{transform:translateY(0)!important}.sm\\:translate-y-100{transform:translateY(100%)!important}.sm\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 768px){.md\\:translate-x-0{transform:translate(0)!important}.md\\:translate-x-100{transform:translate(100%)!important}.md\\:-translate-x-100{transform:translate(-100%)!important}.md\\:translate-y-0{transform:translateY(0)!important}.md\\:translate-y-100{transform:translateY(100%)!important}.md\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 992px){.lg\\:translate-x-0{transform:translate(0)!important}.lg\\:translate-x-100{transform:translate(100%)!important}.lg\\:-translate-x-100{transform:translate(-100%)!important}.lg\\:translate-y-0{transform:translateY(0)!important}.lg\\:translate-y-100{transform:translateY(100%)!important}.lg\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 1200px){.xl\\:translate-x-0{transform:translate(0)!important}.xl\\:translate-x-100{transform:translate(100%)!important}.xl\\:-translate-x-100{transform:translate(-100%)!important}.xl\\:translate-y-0{transform:translateY(0)!important}.xl\\:translate-y-100{transform:translateY(100%)!important}.xl\\:-translate-y-100{transform:translateY(-100%)!important}}.rotate-45{transform:rotate(45deg)!important}.-rotate-45{transform:rotate(-45deg)!important}.rotate-90{transform:rotate(90deg)!important}.-rotate-90{transform:rotate(-90deg)!important}.rotate-180{transform:rotate(180deg)!important}.-rotate-180{transform:rotate(-180deg)!important}@media screen and (min-width: 576px){.sm\\:rotate-45{transform:rotate(45deg)!important}.sm\\:-rotate-45{transform:rotate(-45deg)!important}.sm\\:rotate-90{transform:rotate(90deg)!important}.sm\\:-rotate-90{transform:rotate(-90deg)!important}.sm\\:rotate-180{transform:rotate(180deg)!important}.sm\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 768px){.md\\:rotate-45{transform:rotate(45deg)!important}.md\\:-rotate-45{transform:rotate(-45deg)!important}.md\\:rotate-90{transform:rotate(90deg)!important}.md\\:-rotate-90{transform:rotate(-90deg)!important}.md\\:rotate-180{transform:rotate(180deg)!important}.md\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 992px){.lg\\:rotate-45{transform:rotate(45deg)!important}.lg\\:-rotate-45{transform:rotate(-45deg)!important}.lg\\:rotate-90{transform:rotate(90deg)!important}.lg\\:-rotate-90{transform:rotate(-90deg)!important}.lg\\:rotate-180{transform:rotate(180deg)!important}.lg\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 1200px){.xl\\:rotate-45{transform:rotate(45deg)!important}.xl\\:-rotate-45{transform:rotate(-45deg)!important}.xl\\:rotate-90{transform:rotate(90deg)!important}.xl\\:-rotate-90{transform:rotate(-90deg)!important}.xl\\:rotate-180{transform:rotate(180deg)!important}.xl\\:-rotate-180{transform:rotate(-180deg)!important}}.origin-center{transform-origin:center!important}.origin-top{transform-origin:top!important}.origin-top-right{transform-origin:top right!important}.origin-right{transform-origin:right!important}.origin-bottom-right{transform-origin:bottom right!important}.origin-bottom{transform-origin:bottom!important}.origin-bottom-left{transform-origin:bottom left!important}.origin-left{transform-origin:left!important}.origin-top-left{transform-origin:top-left!important}@media screen and (min-width: 576px){.sm\\:origin-center{transform-origin:center!important}.sm\\:origin-top{transform-origin:top!important}.sm\\:origin-top-right{transform-origin:top right!important}.sm\\:origin-right{transform-origin:right!important}.sm\\:origin-bottom-right{transform-origin:bottom right!important}.sm\\:origin-bottom{transform-origin:bottom!important}.sm\\:origin-bottom-left{transform-origin:bottom left!important}.sm\\:origin-left{transform-origin:left!important}.sm\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 768px){.md\\:origin-center{transform-origin:center!important}.md\\:origin-top{transform-origin:top!important}.md\\:origin-top-right{transform-origin:top right!important}.md\\:origin-right{transform-origin:right!important}.md\\:origin-bottom-right{transform-origin:bottom right!important}.md\\:origin-bottom{transform-origin:bottom!important}.md\\:origin-bottom-left{transform-origin:bottom left!important}.md\\:origin-left{transform-origin:left!important}.md\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 992px){.lg\\:origin-center{transform-origin:center!important}.lg\\:origin-top{transform-origin:top!important}.lg\\:origin-top-right{transform-origin:top right!important}.lg\\:origin-right{transform-origin:right!important}.lg\\:origin-bottom-right{transform-origin:bottom right!important}.lg\\:origin-bottom{transform-origin:bottom!important}.lg\\:origin-bottom-left{transform-origin:bottom left!important}.lg\\:origin-left{transform-origin:left!important}.lg\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 1200px){.xl\\:origin-center{transform-origin:center!important}.xl\\:origin-top{transform-origin:top!important}.xl\\:origin-top-right{transform-origin:top right!important}.xl\\:origin-right{transform-origin:right!important}.xl\\:origin-bottom-right{transform-origin:bottom right!important}.xl\\:origin-bottom{transform-origin:bottom!important}.xl\\:origin-bottom-left{transform-origin:bottom left!important}.xl\\:origin-left{transform-origin:left!important}.xl\\:origin-top-left{transform-origin:top-left!important}}@keyframes fadein{0%{opacity:0}to{opacity:1}}@keyframes fadeout{0%{opacity:1}to{opacity:0}}@keyframes scalein{0%{opacity:0;transform:scaleY(.8);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:scaleY(1)}}@keyframes slidedown{0%{max-height:0}to{max-height:auto}}@keyframes slideup{0%{max-height:1000px}to{max-height:0}}@keyframes fadeinleft{0%{opacity:0;transform:translate(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutleft{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(-100%)}}@keyframes fadeinright{0%{opacity:0;transform:translate(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutright{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(100%)}}@keyframes fadeinup{0%{opacity:0;transform:translateY(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutup{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(-100%)}}@keyframes fadeindown{0%{opacity:0;transform:translateY(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutdown{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(100%)}}@keyframes animate-width{0%{width:0}to{width:100%}}@keyframes flip{0%{transform:perspective(2000px) rotateX(-100deg)}to{transform:perspective(2000px) rotateX(0)}}@keyframes flipleft{0%{transform:perspective(2000px) rotateY(-100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipright{0%{transform:perspective(2000px) rotateY(100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipup{0%{transform:perspective(2000px) rotateX(-100deg);opacity:0}to{transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes zoomin{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomindown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}@keyframes zoominleft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}@keyframes zoominright{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}@keyframes zoominup{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}.fadein{animation:fadein .15s linear}.fadeout{animation:fadeout .15s linear}.slidedown{animation:slidedown .45s ease-in-out}.slideup{animation:slideup .45s cubic-bezier(0,1,0,1)}.scalein{animation:scalein .15s linear}.fadeinleft{animation:fadeinleft .15s linear}.fadeoutleft{animation:fadeoutleft .15s linear}.fadeinright{animation:fadeinright .15s linear}.fadeoutright{animation:fadeoutright .15s linear}.fadeinup{animation:fadeinup .15s linear}.fadeoutup{animation:fadeoutup .15s linear}.fadeindown{animation:fadeindown .15s linear}.fadeoutdown{animation:fadeoutdown .15s linear}.animate-width{animation:animate-width 1s linear}.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flip .15s linear}.flipup{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipup .15s linear}.flipleft{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipleft .15s linear}.flipright{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipright .15s linear}.zoomin{animation:zoomin .15s linear}.zoomindown{animation:zoomindown .15s linear}.zoominleft{animation:zoominleft .15s linear}.zoominright{animation:zoominright .15s linear}.zoominup{animation:zoominup .15s linear}.animation-duration-100{animation-duration:.1s!important}.animation-duration-150{animation-duration:.15s!important}.animation-duration-200{animation-duration:.2s!important}.animation-duration-300{animation-duration:.3s!important}.animation-duration-400{animation-duration:.4s!important}.animation-duration-500{animation-duration:.5s!important}.animation-duration-1000{animation-duration:1s!important}.animation-duration-2000{animation-duration:2s!important}.animation-duration-3000{animation-duration:3s!important}.animation-delay-100{animation-delay:.1s!important}.animation-delay-150{animation-delay:.15s!important}.animation-delay-200{animation-delay:.2s!important}.animation-delay-300{animation-delay:.3s!important}.animation-delay-400{animation-delay:.4s!important}.animation-delay-500{animation-delay:.5s!important}.animation-delay-1000{animation-delay:1s!important}.animation-iteration-1{animation-iteration-count:1!important}.animation-iteration-2{animation-iteration-count:2!important}.animation-iteration-infinite{animation-iteration-count:infinite!important}.animation-linear{animation-timing-function:linear!important}.animation-ease-in{animation-timing-function:cubic-bezier(.4,0,1,1)!important}.animation-ease-out{animation-timing-function:cubic-bezier(0,0,.2,1)!important}.animation-ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)!important}.animation-fill-none{animation-fill-mode:none!important}.animation-fill-forwards{animation-fill-mode:forwards!important}.animation-fill-backwards{animation-fill-mode:backwards!important}.animation-fill-both{animation-fill-mode:both!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card{background-color:#fff;border-radius:8px;box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a}:host ::ng-deep .w-filter-panel-no-style-card.p-card .p-card-content{padding:0!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card .p-card-body{padding:0!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button{padding:0!important;height:auto!important;overflow:visible!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button .p-button-icon{font-size:9px!important;transform:translatey(1px) translate(2px)!important;color:#5f6468}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button>.p-button-label{color:#5f6468}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button:hover>.p-button-label{color:#1f2224}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button:hover .p-button-icon{color:#1f2224}:host ::ng-deep .w-filter-panel-buttons{display:flex;padding:0!important;margin-top:12px}:host ::ng-deep .w-filter-panel-buttons:has(button){flex-grow:10!important;flex-shrink:10!important;max-width:none!important;flex-basis:100%!important;gap:12px!important}:host ::ng-deep .w-filter-panel-buttons button{gap:8px;height:24px!important;padding-left:12px!important;padding-right:12px!important}:host ::ng-deep .w-filter-panel-buttons button>.p-button-label{font-size:11px!important;font-weight:700!important}:host ::ng-deep .w-filter-panel-buttons button.cancel-filter-button .p-button-icon.p-button-icon-left{font-size:12px}:host ::ng-deep .w-filter-panel-buttons button.set-filter-button .p-button-icon.p-button-icon-left{font-size:9px}.w-filter-panel-container-basic,.w-filter-panel-container-advanced{padding:20px 24px!important;display:grid;gap:12px}::ng-deep .query-builder-style ul li{border:none!important;background:transparent!important;padding-left:0!important}::ng-deep .w-filter-panel-basic .q-tree-container{margin:0;overflow:visible!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree{margin:0!important;padding:0!important;display:flex;flex-wrap:wrap;justify-content:flex-start;gap:20px 24px}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row{padding:0;margin:0;width:0}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row:not(:nth-child(3n)){display:flex!important;flex-direction:column;flex-basis:calc(16.6666666667% - 20px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row:nth-child(3n){display:flex!important;flex-direction:column;flex-basis:calc(16.6666666667% - 20px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row:has(.w-filter-panel-notifications-event-field){display:flex!important;flex-direction:column;flex-basis:calc(33.3333333333% - 16px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row.q-connector:before{content:none!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row.q-connector:after{border-width:0px!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-input-text-label{font-size:11px;font-weight:600;color:#1f2224;margin-bottom:6px;width:100%}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width{flex-basis:calc(16.6666666667% - 20px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.notifications-event-field-width{flex-basis:calc(50% - 12px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch{width:100%;background-color:#fff;height:24px!important;font-size:10.5px!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch>span{padding-top:4px!important;padding-left:8px!important;width:50px!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch .pi{line-height:14px}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch .p-dropdown-trigger{margin-right:4px!important;padding-bottom:2px}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .p-multiselect{width:100%}::ng-deep .w-filter-panel-advanced div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-button-group{width:auto!important;overflow:visible!important;margin:8px}::ng-deep .w-filter-panel-advanced div .q-button-group button,::ng-deep .w-filter-panel-grouped div .q-button-group button{height:24px!important}::ng-deep .w-filter-panel-advanced div .q-button-group.q-right-align,::ng-deep .w-filter-panel-grouped div .q-button-group.q-right-align{margin-right:0}::ng-deep .w-filter-panel-advanced div .w-filter-panel-switch-group-padding w-select-button .w-button-small .p-selectbutton .p-button,::ng-deep .w-filter-panel-grouped div .w-filter-panel-switch-group-padding w-select-button .w-button-small .p-selectbutton .p-button{height:24px}::ng-deep .w-filter-panel-advanced div .q-inline-block-display,::ng-deep .w-filter-panel-advanced div .q-tree-container .q-tree .q-rule .q-button-group,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule div .q-button-group,::ng-deep .w-filter-panel-advanced div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-inline-block-display,::ng-deep .w-filter-panel-grouped div .q-tree-container .q-tree .q-rule .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-button-group{margin:8px}::ng-deep .w-filter-panel-advanced .q-tree-container,::ng-deep .w-filter-panel-grouped .q-tree-container{margin:0;padding:0;overflow:visible!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-ruleset,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-ruleset{border:none!important;padding:6px 0!important;margin:12px 0!important;border-radius:8px;background-color:#005c7a08!important;box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule{background:none!important;border:none!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group{overflow:visible!important;margin:8px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group .p-button span:not(*:hover),::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group .p-button span:not(*:hover){color:#1f2224}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group .p-button,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group .p-button{box-shadow:0 0 1px 0 rgba #000,.1 inset,1px 1px 5px rgba #000,.06,1px 1px 1px rgba #000,.08;height:24px;width:24px;border:1px solid #e8ebee!important;border:none!important;padding:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group .p-button span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group .p-button span{margin-left:8px!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group.q-right-align,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group.q-right-align{margin-right:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row{padding:0;margin-top:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .q-inline-block-display,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row div .q-button-group,::ng-deep .w-filter-panel-advanced div .q-tree-container .q-tree .q-row .q-button-group,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .q-rule .q-button-group,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-row .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .q-inline-block-display,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-tree-container .q-tree .q-row .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .q-rule .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-row .q-button-group{vertical-align:middle!important;margin:8px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width{display:inline-flex;vertical-align:middle!important;width:200px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-no-entity-mode,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-no-entity-mode{width:0px;padding:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-entity-nullable,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-entity-nullable{padding:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators{width:100px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators.w-field-nullable,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators.w-field-nullable{width:0px;padding:0;margin:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch{width:100%;background-color:#fff;height:24px!important;font-size:10.5px!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch>span{padding-top:4px!important;padding-left:8px!important;width:50px!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .pi{line-height:14px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .p-dropdown-trigger{margin-right:4px!important;padding-bottom:2px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .p-dropdown,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-list-field,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-edit-calendar,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .p-dropdown,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-list-field,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-edit-calendar{width:100%}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-button-group{overflow:visible!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-button-group button,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-button-group button{box-shadow:0 0 1px 0 rgba #000,.1 inset,1px 1px 5px rgba #000,.06,1px 1px 1px rgba #000,.08!important;background:white!important}.advanced-query-button-group{position:absolute;bottom:0;left:0;margin-bottom:-46px}.w-filter-panel-container{position:relative}::ng-deep .w-filter-panel-blockui.p-blockui{opacity:0!important}::ng-deep .w-filter-panel-basic-query-builder-input-width p-dropdown .p-dropdown{width:100%}::ng-deep .w-filter-panel-basic-query-builder-input-width input .p-inputtext{width:100%}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input{border:1px solid #e8ebee;border-radius:8px;padding:8px;width:100%}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus{border-radius:8px}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input::-webkit-input-placeholder{color:#9aa0a7!important}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input::-moz-placeholder{color:#9aa0a7!important}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus:-ms-input-placeholder{color:#9aa0a7!important}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus:-moz-placeholder{color:#9aa0a7!important}:host ::ng-deep .w-edit-select-small .p-dropdown .p-dropdown-label{padding-right:24px;height:100%}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open:not(.p-disabled):hover{border-color:#e8ebee}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open .p-dropdown-label{padding-right:7px}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open .p-dropdown-trigger{visibility:hidden;margin:0;padding:0;width:0px;height:0px}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open .p-dropdown-clear-icon{right:12px}:host ::ng-deep .w-edit-select-small .p-dropdown:not(.p-dropdown-open){box-shadow:none!important;border-color:#e8ebee}:host ::ng-deep .w-edit-select-small .p-inputtext{align-content:center}:host ::ng-deep .w-edit-select-small .p-dropdown:not(.p-disabled):hover{border-color:#00b3eb}:host ::ng-deep .w-edit-select-small .p-dropdown .p-dropdown-trigger{width:auto;height:26px;padding-right:6px;padding-left:6px;margin-right:8px}:host ::ng-deep .w-edit-select-small .p-dropdown .p-dropdown-clear-icon{right:38px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect{border:1px solid #e8ebee;border-radius:8px;display:flex}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container{display:flex;padding:0!important;align-items:center}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{padding:0 8px;align-content:center;margin-right:20px;display:flex;width:100%;gap:6px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{height:20px;padding:0 6px;gap:4px;border-radius:6px;border-width:1px;color:#1f2224;background-color:#e0f5fc}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon{margin-left:0;font-size:8px;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon:before{content:\"\\e90b\"!important;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times:before{content:\"\\e90c\"!important;color:#5f6468!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times{right:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open:not(.p-disabled):hover{border-color:#e8ebee}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-trigger{width:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-label{margin-right:32px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-trigger{display:none;margin:0;padding:0;width:0px;height:0px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-clear-icon{right:15px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect:hover{border:1px solid #00b3eb}.w-filter-panel-notifications-event-field{display:flex;gap:20px 24px}\n"] }]
|
|
703
|
+
args: [{ selector: 'w-filter-panel', template: "<!-- TODO: Intentar otra vez pasar los componentes a los de w- porque no se alinena y el w-edit-select no va bien en field. \r\n Ahora se conservan los de p-w con estilos. -->\r\n<p-blockUI styleClass=\"w-filter-panel-blockui\" [autoZIndex]=\"false\" [target]=\"filterPanel\" [blocked]=\"dataIsLoadingSearchButton\"></p-blockUI>\r\n\r\n<p-card styleClass=\"w-filter-panel-no-style-card\" #filterPanel>\r\n <div *ngIf=\"queryConfigReady\" class=\"w-filter-panel-styles\">\r\n <div *ngIf=\"!filterPanelObject.allowAdvancedSearch; else baiscAndAdvanced\">\r\n <div [ngClass]=\"{ 'w-filter-panel-container-advanced' : isAdvancedSearch, 'w-filter-panel-container-basic' : !isAdvancedSearch }\">\r\n <ng-container *ngTemplateOutlet=\"basic\"></ng-container>\r\n <div class=\"w-filter-panel-buttons\">\r\n <w-button icon=\"w-icon closeCircle\" buttonClass=\"cancel-filter-button\" [label]=\"translationsObject.clearButtonLabel\" type=\"tertiary\" size=\"small\" (onClick)=\"onClearClicked()\"></w-button>\r\n <w-button icon=\"pi pi-filter-fill\" buttonClass=\"set-filter-button\" [label]=\"translationsObject.searchButtonLabel\" size=\"small\" (onClick)=\"onSearchClicked()\"></w-button>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <ng-template #baiscAndAdvanced>\r\n <div [ngClass]=\"{ 'w-filter-panel-container-advanced' : isAdvancedSearch, 'w-filter-panel-container-basic' : !isAdvancedSearch }\">\r\n <ng-container *ngIf=\"!isAdvancedSearch; else advancedView\">\r\n <ng-container *ngTemplateOutlet=\"basic\"></ng-container>\r\n </ng-container>\r\n <ng-template #advancedView>\r\n <ng-container *ngTemplateOutlet=\"advanced\"></ng-container>\r\n </ng-template>\r\n\r\n <div class=\"w-filter-panel-buttons\" [class.pt-3]=\"isAdvancedSearch\">\r\n <w-button buttonClass=\"cancel-filter-button\" [label]=\"translationsObject.clearButtonLabel\" icon=\"w-icon closeCircle\" type=\"tertiary\" size=\"small\" (onClick)=\"onClearClicked()\"></w-button>\r\n <w-button buttonClass=\"set-filter-button\" [label]=\"translationsObject.searchButtonLabel\" icon=\"pi pi-filter-fill\" size=\"small\" (onClick)=\"onSearchClicked()\" [loading]=\"dataIsLoadingSearchButton\"></w-button>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </div>\r\n</p-card>\r\n\r\n <ng-template #basic>\r\n <div *ngIf=\"filterPanelObject.allowAdvancedSearch\" class=\"flex justify-content-end flex-wrap\">\r\n <w-button buttonClass=\"change-filter-button\" icon=\"pi pi-sync\" [label]=\"translationsObject.advancedSearchTabLabel\" type=\"text\" (onClick)=\"updateSearchType()\"></w-button>\r\n </div>\r\n <div *ngIf=\"basicQuery.rules.length > 0\" class=\"w-filter-panel-basic query-builder-style fadein animation-duration-500\">\r\n <query-builder #basicQueryBuilderObject [formControl]='queryCtrl' [config]='basicQueryConfig' [allowRuleset]='filterPanelObject.allowRuleSet' [allowRuleset]=\"filterPanelObject.allowRuleSet\" [persistValueOnFieldChange]='persistValueOnFieldChange'>\r\n <ng-container *queryButtonGroup=\"let ruleset;\">\r\n </ng-container>\r\n\r\n <ng-container *queryRemoveButton=\"let rule; let removeRule=removeRule\">\r\n </ng-container>\r\n\r\n <ng-container *querySwitchGroup=\"let ruleset; let onChange=onChange\">\r\n </ng-container>\r\n\r\n <ng-container *queryEntity=\"let rule; let entities=entities; let onChange=onChange\">\r\n <p-dropdown [disabled]=\"true\" class=\" w-edit-select-small\" *ngIf=\"false\" appendTo=\"body\" [options]=\"entities\" [(ngModel)]=\"rule.entity\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </ng-container>\r\n\r\n <ng-container *queryField=\"let rule; let fields=fields; let onChange=onChange; let getFields = getFields; let value=value; let name=name; let index=index\">\r\n <span appendTo=\"body\" class=\"w-filter-panel-input-text-label\" [class.w-filter-panel-boolean-label-width]=\"fieldIsBoolean(rule.field, getFields(rule.entity))\" optionLabel=\"name\" optionValue=\"value\">{{ getQueryFieldName(rule.field, getFields(rule.entity))}}</span>\r\n </ng-container>\r\n\r\n <ng-container *queryOperator=\"let rule; let operators=operators; let onChange=onChange\">\r\n <span class=\"query-builder-operator-width\">\r\n <p-dropdown class=\" w-edit-select-small\" *ngIf=\"isAdvancedSearch\" appendTo=\"body\" [(ngModel)]=\"rule.operator\" [options]=\"operators\" (ngModelChange)=\"onChange(rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Boolean.toString(); let onChange=onChange\">\r\n <span class=\"query-builder-operator-width\">\r\n <w-toggle-button size=\"small\" [(ngModel)]=\"rule.value\" onLabel=\"True\" offLabel=\"False\" (ngModelChange)=\"onChange()\"></w-toggle-button>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Datetime.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <w-edit-calendar appendTo=\"body\" size=\"small\" [showIcon]=\"false\" [dataType]=\"isToKeepLocalDate(rule.field) ? 'date' : 'string'\" [(ngModel)]=\"rule.value\" (onChange)=\"onChange()\" [showTime]=\"true\" [showSeconds]=\"true\" [firstDayOfWeek]=\"translationsObject.firstDayOfWeek ?? 1\" [placeholder]=\"translationsObject.fieldsPlaceholders.datetime\" [showLabel]=\"false\"></w-edit-calendar>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Decimal.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-inputNumber inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"w-edit-input-number-small\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" mode=\"decimal\" [minFractionDigits]=\"2\" [maxFractionDigits]=\"5\" [min]=\"0\" [max]=\"100\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.decimal\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"options\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Number.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-inputNumber [useGrouping]=\"false\" inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"w-edit-input-number-small\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" [min]=\"0\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.number\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Text.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <w-edit-input-text class=\"w-edit-input-text-small-height\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.text\" [showLabel]=\"false\"></w-edit-input-text>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Multiselect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-multiSelect class=\"w-edit-multiselect-small\" [appendTo]=\"'body'\" [options]=\"getTranslatedSelectOptions(options) \" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" display=\"chip\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-multiSelect>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.NullableSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"getNullableSelectOptions(options)\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" \r\n [placeholder]=\"nullableSelectPlaceholder(rule, options)\">\r\n </p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.BooleanSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"getBooleanSelectOptions(options)\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Address.toString(); let onChange=onChange\">\r\n <w-address-field [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [operator]=\"rule.operator\" [segmentationApiUrl]=\"segmentationApiUrl\" [segmentationApiToken]=\"segmentationToken\"></w-address-field>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.TranslatedSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-basic-query-builder-input-width\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getTranslatedSelectOptions(options)\" [ngModelOptions]=\"{standalone: true}\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.NotificationEventList.toString(); let onChange=onChange\">\r\n <w-notifications-event-field class=\"w-filter-panel-notifications-event-field\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [operator]=\"rule.operator\" [notificationApiUrl]=\"notificationApiUrl\" [notificationApiToken]=\"commonDataToken\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></w-notifications-event-field>\r\n </ng-container>\r\n </query-builder>\r\n </div>\r\n\r\n <ng-container *ngIf=\"!isAdvancedSearch && basicQuery.rules.length==0\" >\r\n <ng-container *ngTemplateOutlet=\"noQueryData\"></ng-container>\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template #advanced>\r\n <div [class.query-builder-style]=\"!filterPanelObject.allowRuleSet\" class=\"w-filter-panel-container fadein animation-duration-500\">\r\n <div *ngIf=\"filterPanelObject.allowRuleSet\" class=\"flex justify-content-end flex-wrap\">\r\n <w-button buttonClass=\"change-filter-button\" icon=\"pi pi-sync\" class=\"mb-2\" [label]=\"translationsObject.basicSearchTabLabel\" type=\"text\" (onClick)=\"updateSearchType()\"></w-button>\r\n </div>\r\n <query-builder class=\"w-filter-panel-advanced query-builder-style\" #advancedQueryBuilder [formControl]='advancedQueryCtrl' [config]='advancedQueryConfig' [allowRuleset]='filterPanelObject.allowRuleSet' [allowCollapse]='filterPanelObject.allowColapse' [allowRuleset]=\"filterPanelObject.allowRuleSet\" [persistValueOnFieldChange]='persistValueOnFieldChange'>\r\n <div *ngIf=\"filterPanelObject.allowRuleSet; else noRuleSet\">\r\n <ng-container *queryButtonGroup=\"let ruleset; let addRule=addRule; let addRuleSet=addRuleSet; let removeRuleSet=removeRuleSet\">\r\n <span class=\"flex gap-3\">\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleButtonLabel\" type=\"secondary\" size=\"small\" (onClick)=\"addRule()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleSetButtonLabel\" type=\"secondary\" icon=\"pi pi-plus\" size=\"small\" *ngIf=\"addRuleSet\" (onClick)=\"addRuleSet()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.removeRuleSetButtonLabel\" type=\"tertiary\" icon=\"pi pi-minus\" size=\"small\" *ngIf=\"removeRuleSet\" (onClick)=\"removeRuleSet()\"></w-button>\r\n </span>\r\n </ng-container>\r\n </div>\r\n\r\n <ng-template #noRuleSet>\r\n <ng-container *queryButtonGroup=\"let ruleset; let addRule=addRule; let addRuleSet=addRuleSet; let removeRuleSet=removeRuleSet\">\r\n <div class=\"flex justify-content-end flex-wrap\">\r\n <w-button [label]=\"translationsObject.basicSearchTabLabel\" type=\"text\" (onClick)=\"updateSearchType()\"></w-button>\r\n </div>\r\n <span class=\"advanced-query-button-group flex gap-3\">\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleButtonLabel\" type=\"secondary\" size=\"small\" (onClick)=\"addRule()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleSetButtonLabel\" type=\"secondary\" icon=\"pi pi-plus\" size=\"small\" *ngIf=\"addRuleSet\" (onClick)=\"addRuleSet()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.removeRuleSetButtonLabel\" type=\"tertiary\" icon=\"pi pi-minus\" size=\"small\" *ngIf=\"removeRuleSet\" (onClick)=\"removeRuleSet()\"></w-button>\r\n </span>\r\n </ng-container>\r\n </ng-template>\r\n <ng-container *queryArrowIcon>\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-angle-right\" class=\"p-button-rounded p-button-text\"></button>\r\n </ng-container>\r\n\r\n <ng-container *queryRemoveButton=\"let rule; let removeRule=removeRule\">\r\n <w-button class=\"\" label=\"\" size=\"small\" type=\"tertiary\" icon=\"pi pi-times\" (onClick)=\"removeRule(rule)\"></w-button>\r\n </ng-container>\r\n\r\n <ng-container *querySwitchGroup=\"let ruleset; let onChange=onChange\">\r\n <div *ngIf=\"ruleset\" class=\"w-filter-panel-switch-group-padding q-inline-block-display inline-flex\">\r\n <w-select-button *ngIf=\"filterPanelObject.allowLogicalRule\" [stateOptions]=\"[{label: 'And', value: 'and'}, {label: 'Or', value: 'or'}]\"\r\n [(ngModel)]=\"ruleset.condition\"\r\n [size]=\"'small'\"\r\n (value)=\"ruleset.condition = $event\">\r\n </w-select-button>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-container *queryEntity=\"let rule; let entities=entities; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width\" [ngClass]=\"{'w-no-entity-mode' : !filterPanelObject.enityMode}\">\r\n <p-dropdown *ngIf=\"filterPanelObject.enityMode\" class=\"field-gap w-edit-select-small w-entity-dropdown\" appendTo=\"body\" [options]=\"entities\" [(ngModel)]=\"rule.entity\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryField=\"let rule; let fields=fields; let onChange=onChange; let getFields = getFields\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-list-field class=\"field-gap\" appendTo=\"body\" [options]=\"getFields(rule.entity)\" [(ngModel)]=\"rule.field\" [operator]=\"'='\" (ngModelChange)=\"onChange($event, rule)\" [onlyDropdown]=\"true\"></w-list-field>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryOperator=\"let rule; let operators=operators; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-operators q-inline-block-display\" [ngClass]=\"{'w-field-nullable' : operators.includes('nullable')}\">\r\n <p-dropdown *ngIf=\"!operators.includes('nullable')\" class=\"field-gap w-edit-select-small\" appendTo=\"body\" [(ngModel)]=\"rule.operator\" [options]=\"operators\" (ngModelChange)=\"onChange(rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Boolean.toString(); let onChange=onChange\">\r\n <w-toggle-button class=\"field-gap toggle-button-align\" size=\"small\" [(ngModel)]=\"rule.value\" onLabel=\"True\" offLabel=\"False\" (ngModelChange)=\"onChange()\"></w-toggle-button>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Datetime.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-edit-calendar class=\"field-gap\" appendTo=\"body\" size=\"small\" [dataType]=\"isToKeepLocalDate(rule.field) ? 'date' : 'string'\" [showIcon]=\"false\" [(ngModel)]=\"rule.value\" (onChange)=\"onChange()\" [showTime]=\"true\" [showSeconds]=\"true\" [firstDayOfWeek]=\"translationsObject.firstDayOfWeek ?? 1\" [placeholder]=\"translationsObject.fieldsPlaceholders.datetime\" [displayInlineBlock]=\"true\" [showLabel]=\"false\"></w-edit-calendar>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Decimal.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"field-gap w-edit-input-number-small w-edit-input-number-small-height\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" mode=\"decimal\" [minFractionDigits]=\"2\" [maxFractionDigits]=\"5\" [min]=\"0\" [max]=\"100\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.decimal\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown *ngIf=\"!isMultiselect(rule)\" class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"options\" [filter]=\"true\" [showClear]=\"true\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n <p-multiSelect *ngIf=\"isMultiselect(rule)\" class=\"w-edit-multiselect-small\" [appendTo]=\"'body'\" [options]=\"options\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" display=\"chip\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-multiSelect>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display field-gap\">\r\n <w-list-field [options]=\"options\" [(ngModel)]=\"rule.value\" [operator]=\"rule.operator\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></w-list-field>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Number.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber [useGrouping]=\"false\" inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"field-gap w-edit-input-number-small w-edit-input-number-small-height\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" [min]=\"0\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.number\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Text.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <input class=\"field-gap w-edit-input-text-small-height w-edit-input-text-small\" type=\"text\" pInputText [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.text\"/>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Multiselect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-multiSelect class=\"w-edit-multiselect-small\" [appendTo]=\"'body'\" [options]=\"options\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" display=\"chip\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-multiSelect>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.Address.toString(); let onChange=onChange\">\r\n <w-address-field [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [operator]=\"rule.operator\" [segmentationApiUrl]=\"segmentationApiUrl\" [segmentationApiToken]=\"segmentationToken\" [selectPlaceholder]=\"translationsObject.fieldsPlaceholders.list\"></w-address-field>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.NullableSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display w-entity-nullable\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getNullableSelectOptions(options)\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.BooleanSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getBooleanSelectOptions(options)\" [ngModelOptions]=\"{standalone: true}\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.TranslatedSelect.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown class=\"field-gap w-edit-select-small\" appendTo=\"body\" [options]=\"getTranslatedSelectOptions(options)\" [ngModelOptions]=\"{standalone: true}\" [filter]=\"true\" [showClear]=\"false\" [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" optionLabel=\"name\" optionValue=\"value\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n </query-builder>\r\n\r\n <ng-container *ngIf=\"isAdvancedSearch && advancedQuery.rules.length==0\" >\r\n <ng-container *ngTemplateOutlet=\"noQueryData\"></ng-container>\r\n </ng-container>\r\n\r\n <!-- Grouped filter -->\r\n <div *ngIf=\"filterPanelObject.allowGrouped\">\r\n <div class=\"py-5\">\r\n <w-view-card-title-text [cardTitle]=\"translationsObject.groupedFilterTitle\"></w-view-card-title-text>\r\n </div>\r\n\r\n <query-builder *ngIf=\"groupedQuery.rules.length > 0\" class=\"w-filter-panel-grouped query-builder-style\" [formControl]='groupedQueryCtrl' [config]='advancedQueryConfig' [allowRuleset]='filterPanelObject.allowRuleSet' [allowCollapse]='filterPanelObject.allowColapse' [allowRuleset]=\"filterPanelObject.allowRuleSet\" [persistValueOnFieldChange]='persistValueOnFieldChange'>\r\n <ng-container *queryButtonGroup=\"let ruleset; let addRule=addRule; let addRuleSet=addRuleSet; let removeRuleSet=removeRuleSet\">\r\n <div class=\"flex gap-3\">\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleButtonLabel\" type=\"secondary\" size=\"small\" (onClick)=\"addRule()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.addRuleSetButtonLabel\" type=\"secondary\" icon=\"pi pi-plus\" size=\"small\" *ngIf=\"addRuleSet\" (onClick)=\"addRuleSet()\"></w-button>\r\n <w-button [label]=\"translationsObject.advancedSearch.removeRuleSetButtonLabel\" type=\"tertiary\" icon=\"pi pi-minus\" size=\"small\" *ngIf=\"removeRuleSet\" (onClick)=\"removeRuleSet()\"></w-button>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-container *queryArrowIcon>\r\n <button pButton pRipple type=\"button\" icon=\"pi pi-angle-right\" class=\"p-button-rounded p-button-text\"></button>\r\n </ng-container>\r\n\r\n <ng-container *queryRemoveButton=\"let rule; let removeRule=removeRule\">\r\n <w-button class=\"\" label=\"\" size=\"small\" type=\"tertiary\" icon=\"pi pi-times\" (onClick)=\"removeRule(rule)\"></w-button>\r\n </ng-container>\r\n\r\n <ng-container *querySwitchGroup=\"let ruleset; let onChange=onChange\">\r\n <div class=\"w-filter-panel-switch-group-padding q-inline-block-display inline-flex\" *ngIf=\"ruleset\">\r\n <w-select-button *ngIf=\"filterPanelObject.allowLogicalRule\" [stateOptions]=\"[{label: 'And', value: 'and'}, {label: 'Or', value: 'or'}]\"\r\n [(ngModel)]=\"ruleset.condition\"\r\n [size]=\"'small'\"\r\n (value)=\"ruleset.condition = $event\">\r\n </w-select-button>\r\n </div>\r\n </ng-container>\r\n\r\n <ng-container *queryEntity=\"let rule; let entities=entities; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width\" [ngClass]=\"{'w-no-entity-mode' : !filterPanelObject.enityMode}\">\r\n <p-dropdown class=\"w-edit-select-small field-gap w-entity-dropdown\" *ngIf=\"filterPanelObject.enityMode\" appendTo=\"body\" [options]=\"entities\" [(ngModel)]=\"rule.entity\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryField=\"let rule; let fields=fields; let onChange=onChange; let getFields = getFields\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [options]=\"getFields(rule.entity)\" [(ngModel)]=\"rule.field\" optionLabel=\"name\" optionValue=\"value\" (ngModelChange)=\"onChange($event, rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryOperator=\"let rule; let operators=operators; let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-operators q-inline-block-display\" [ngClass]=\"{'w-field-nullable' : operators.includes('nullable')}\">\r\n <p-dropdown class=\"w-edit-select-small\" appendTo=\"body\" [(ngModel)]=\"rule.operator\" [options]=\"operators\" (ngModelChange)=\"onChange(rule)\"></p-dropdown>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Boolean.toString(); let onChange=onChange\">\r\n <w-toggle-button class=\"field-gap toggle-button-align\" size=\"small\" [(ngModel)]=\"rule.value\" onLabel=\"True\" offLabel=\"False\" (ngModelChange)=\"onChange()\"></w-toggle-button>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; type: qbDataTypeEnum.Datetime.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-edit-calendar class=\"field-gap\" appendTo=\"body\" size=\"small\" [dataType]=\"isToKeepLocalDate(rule.field) ? 'date' : 'string'\" [showIcon]=\"false\" [(ngModel)]=\"rule.value\" (onChange)=\"onChange()\" [showTime]=\"true\" [showSeconds]=\"true\" [placeholder]=\"translationsObject.fieldsPlaceholders.datetime\" [displayInlineBlock]=\"true\"></w-edit-calendar>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Decimal.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber class=\"flex flex-1\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" mode=\"decimal\" [minFractionDigits]=\"2\" [maxFractionDigits]=\"5\" [min]=\"0\" [max]=\"100\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.decimal\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let options=options; type: qbDataTypeEnum.List.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <w-list-field [options]=\"options\" [(ngModel)]=\"rule.value\" [operator]=\"rule.operator\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.list\"></w-list-field>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Number.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width q-inline-block-display\">\r\n <p-inputNumber [useGrouping]=\"false\" inputStyleClass=\"flex flex-1\" styleClass=\"flex flex-1\" class=\"field-gap w-edit-input-number-small w-edit-input-number-small-height\" [(ngModel)]=\"rule.value\" inputId=\"minmax\" inputId=\"minmax\" [min]=\"0\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.number\"> </p-inputNumber>\r\n </span>\r\n </ng-container>\r\n\r\n <ng-container *queryInput=\"let rule; let field=field; type: qbDataTypeEnum.Text.toString(); let onChange=onChange\">\r\n <span class=\"w-filter-panel-advanced-query-builder-input-width\">\r\n <input class=\"field-gap w-edit-input-text-small-height w-edit-input-text-small\" type=\"text\" pInputText [(ngModel)]=\"rule.value\" (ngModelChange)=\"onChange()\" [placeholder]=\"translationsObject.fieldsPlaceholders.text\"/>\r\n </span>\r\n </ng-container>\r\n\r\n </query-builder>\r\n\r\n <ng-container *ngIf=\"isAdvancedSearch && groupedQuery.rules.length==0\" >\r\n <ng-container *ngTemplateOutlet=\"noQueryData\"></ng-container>\r\n </ng-container>\r\n </div>\r\n </div>\r\n </ng-template>\r\n\r\n <ng-template #noQueryData>\r\n <div class=\"flex justify-content-center flex-wrap card-container surface-50\">\r\n <div class=\"flex align-items-center justify-content-center w-full h-4rem text-gray-900 border-round m-2\">\r\n {{translationsObject.noRulesLabel}}\r\n </div>\r\n </div>\r\n </ng-template>\r\n", styles: [".heading1{font-size:2.6666666667rem;line-height:3rem;font-weight:700}.heading2{font-size:2.3333333333rem;line-height:2.6666666667rem;font-weight:700}.heading3{font-size:2rem;line-height:2.3333333333rem;font-weight:700}.heading4{font-size:1.6666666667rem;line-height:2rem;font-weight:700}.heading5,.w-sidebar-title-text{font-size:1.5rem;line-height:1.8333333333rem;font-weight:700}.heading6{font-size:1.3333333333rem;line-height:1.6666666667rem;font-weight:700}.subtitle1,.w-tab-text,.w-panel-title-text{font-size:1.1666666667rem;line-height:1.3333333333rem;font-weight:700}.subtitle2,.w-table-th-text,.w-panel-subtitle-text,.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled,.w-view-small-label-text-typography,.w-view-small-label-text,.w-button-small-text-label-text-typography,.w-button-small-text-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:600}.body,.w-image-file-uploader-navigators-text,.w-table-td-text,.w-chip-text,.w-panel-content,.w-input-small-select-options-text,.w-input-small-placeholder-text-typography,.w-input-small-placeholder-text-disabled,.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label,.w-view-small-value-text-typography,.w-view-small-value-text,.w-button-small-label-text-typography,.w-button-small-tertiary-label-text{font-size:1rem;line-height:1.1666666667rem;font-weight:400}.caption,.w-input-error-alert-text,.w-input-warning-alert-text,.w-input-success-alert-text{font-size:.6666666667rem;line-height:1rem;font-weight:400}.light,.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder,:host ::ng-deep .w-edit-select-small .p-dropdown .p-placeholder{font-size:.9166666667rem;line-height:1.0833333333rem;font-weight:300}.small,.w-button-small-label-text-typography-sm{font-size:.8333333333rem;line-height:1rem;font-weight:400}.textMainColor{color:#1f2224}.textSoftColor{color:#5f6468}.textSofterColor{color:#9aa0a7}.textSoftestColor{color:#e8ebee}.textInverseColor{color:#fff}.spacingXXS{padding:4px}.spacingXSM{padding:6px}.spacingXSMDivider{height:6px}.spacingXS{padding:8px}.spacingS{padding:12px}.spacingM{padding:16px}.spacingL{padding:20px}.spacingXL{padding:24px}.spacingXXL{padding:28px}.spacingXXXL{padding:32px}.panel-title-gap-divider{height:20px}.panel-section-gap-divider{height:32px}.input-vertical-gap-divider{height:24px}.input-label-gap-divider{height:6px}.focusedInput,:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-focus,:host ::ng-deep .w-edit-select-small .p-dropdown:not(.p-disabled).p-focus,::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus{border:1px solid rgba(0,157,253,.25);box-shadow:0 0 10px #00b3eb40}.focus{box-shadow:0 0 8px #00a6e980}.hover{border-radius:8px;border:1px solid #00b3eb}.hoveredInput,::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:hover{border-radius:8px;border:1px solid rgba(0,179,235,.5)}.input-generic-valid{border-radius:8px;border:1px solid #B3FFD3}.input-generic-valid-focus{border-radius:8px;border:1px solid #B3FFD3!important;box-shadow:0 0 8px #46ff9b80!important;padding-left:16px}.input-generic-warning{border-radius:8px;border:1px solid #FFECB8!important}.input-generic-warning-focus{border-radius:8px;border:1px solid #FFECB8!important;box-shadow:0 0 8px #ffcd4680!important;padding-left:16px}.input-generic-error-focus{border-radius:8px;border:1px solid #FFBDBD!important;box-shadow:0 0 8px #ff555580!important;padding-left:16px}.input-generic-error{border-radius:8px;border:1px solid #FFBDBD}.toggle-small-typography{font-size:12px;line-height:16px;font-weight:600}.w-button-small-label-text-typography,.w-button-small-tertiary-label-text,.w-button-small-label-text-typography-sm{font-weight:600}.w-button-small-tertiary-label-text{color:#5f6468}.w-button-small-text-label-text{color:#1f2224}.w-button-small-icon-text{font-size:12px;font-weight:600}.w-table-button-small-icon-text{font-size:12px;color:#9aa0a7}.w-control-button-small-label-text{font-size:12px;font-weight:600;line-height:16px}.w-control-button-x-small-icon-text{font-size:10px;font-weight:700}.w-control-button-small-icon-text{font-size:8px;font-weight:700}.w-button-medium-label-text-typography,.w-button-medium-tertiary-label-text{font-size:16px;font-weight:600;line-height:16px}.w-button-medium-tertiary-label-text{color:#1f2224}.w-button-medium-icon-text{font-size:16px}.w-control-button-medium-label-text{font-size:14px;font-weight:600;line-height:16px}.w-control-button-medium-icon-text{font-size:12px;font-weight:700}.w-button-large-label-text-typography,.w-button-large-tertiary-label-text{font-size:20px;font-weight:600;line-height:24px}.w-button-large-tertiary-label-text{color:#1f2224}.w-button-x-small-label-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{font-size:10px;font-weight:600;line-height:10px}.w-button-small-only-label-text{font-size:12px;font-weight:600;line-height:16px}.w-button-large-icon-text{font-size:24px}.w-view-small-label-text{color:#1f2224}.w-view-small-value-text{color:#5f6468}.w-input-no-label-height{height:14px}.w-input-disabled,:host ::ng-deep .w-edit-select-small .p-disabled,::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:disabled{background-color:#f1f3f4!important;border-color:#e8ebee!important;opacity:1!important}.w-input-small-label-text-typography,.w-input-small-label-text,.w-input-small-label-disabled{height:-moz-fit-content;height:fit-content}.w-input-small-label-text,.w-input-small-label-disabled{color:#1f2224}.w-input-small-label-disabled{color:#9aa0a7}.w-input-small-label-text-content{padding:12px 8px 8px 0;margin:0}.w-input-small-label-text-content-no-top{padding-top:0}.w-input-small-placeholder-text,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{color:#1f2224}.w-input-small-placeholder-text-only-color,:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label.p-placeholder,:host ::ng-deep .w-edit-select-small .p-dropdown .p-placeholder{color:#9aa0a7;line-height:1.3333333333rem}.w-input-small-placeholder-text-disabled{color:#5f6468}.w-input-small-placeholder-text-disabled-only-color,:host ::ng-deep .w-edit-select-small .p-disabled .p-inputtext{color:#5f6468}.w-input-small-text-icon,.w-input-small-select-options-text{color:#1f2224}.w-input-medium-label-text-typography,.w-input-medium-label-text,.w-input-medium-label-disabled{font-size:14px;font-weight:600;line-height:16px}.w-input-medium-label-text,.w-input-medium-label-disabled{color:#1f2224}.w-input-medium-label-disabled{color:#9aa0a7}.w-input-medium-placeholder-text-typography,.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text{font-size:16px;font-weight:400;line-height:24px}.w-input-medium-placeholder-text,.w-input-medium-placeholder-text-only-color{color:#1f2224}.w-input-medium-placeholder-text-disabled,.w-input-medium-placeholder-text-disabled-only-color{color:#5f6468}.w-input-medium-text-icon{color:#1f2224}.w-input-medium-select-options-text{font-size:16px;font-weight:400;line-height:24px;color:#1f2224}.w-input-success-alert-text{color:#00db5d;padding:8px 8px 0;margin-top:0}.w-input-warning-alert-text{color:#eeae00;padding:8px 8px 0;margin-top:0}.w-input-error-alert-text{color:#e50000;padding:8px 8px 0;margin-top:0}.w-input-alert-message-height{height:32px}.w-sidebar-title-text,.w-panel-title-text,.w-panel-subtitle-text{color:#1f2224}.w-panel-content{color:#5f6468}.w-tab-text,.w-chip-text{color:#1f2224}.w-badge-text{font-size:10px;font-weight:700;line-height:8px}.w-table-th-text{color:#1f2224}.w-table-td-text{color:#5f6468}.w-table-height{padding:6px 8px 5px}.w-table-no-buttons-height{padding:16px 8px 15px!important}.w-tree-table-height{padding:8px 8px 7px}.w-image-file-uploader-navigators-text{font-size:12px;color:#fff}.grid{margin:0}::ng-deep .p-tooltip,.p-tooltip{filter:0px 0px 1px 0px rgba(0,0,0,.1) inset,1px 1px 5px rgba(0,0,0,.06),1px 1px 1px rgba(0,0,0,.08)}::ng-deep .p-tooltip .p-tooltip-text,.p-tooltip .p-tooltip-text{background:#ffffff!important;color:#1f2224;padding:12px 16px;max-width:192px;width:max-content;margin-left:3px;pointer-events:none}::ng-deep .p-tooltip.p-tooltip-left,.p-tooltip.p-tooltip-left{margin-right:6px;width:max-content;transform:translate(-6px)}::ng-deep .p-tooltip.p-tooltip-left .p-tooltip-arrow,.p-tooltip.p-tooltip-left .p-tooltip-arrow{border-left-color:#fff!important;top:50%;right:-3px;margin-top:-4px;border-width:4px 0 4px 6px!important}::ng-deep .p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-right{margin-left:6px;width:max-content;transform:translateY(-1px)}::ng-deep .p-tooltip.p-tooltip-right .p-tooltip-arrow,.p-tooltip.p-tooltip-right .p-tooltip-arrow{border-right-color:#fff!important;top:50%;left:0;margin-top:-4px;border-width:4px 6px 4px 0!important}::ng-deep .p-tooltip.p-tooltip-bottom .p-tooltip-arrow,.p-tooltip.p-tooltip-bottom .p-tooltip-arrow{border-bottom-color:#fff!important;border-width:0 4px 6px 4px!important;margin-top:-3px}.grid{display:flex;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem;margin-top:-.5rem}.grid>.col,.grid>[class*=col]{box-sizing:border-box}.grid-nogutter{margin-right:0;margin-left:0;margin-top:0}.grid-nogutter>.col,.grid-nogutter>[class*=col-]{padding:0}.col{flex-grow:1;flex-basis:0;padding:.5rem}.col-fixed{flex:0 0 auto;padding:.5rem}.col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.col-3{flex:0 0 auto;padding:.5rem;width:25%}.col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.col-6{flex:0 0 auto;padding:.5rem;width:50%}.col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.col-9{flex:0 0 auto;padding:.5rem;width:75%}.col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.col-12{flex:0 0 auto;padding:.5rem;width:100%}@media screen and (min-width: 576px){.sm\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.sm\\:col-fixed{flex:0 0 auto;padding:.5rem}.sm\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.sm\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.sm\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.sm\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.sm\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.sm\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.sm\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.sm\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.sm\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.sm\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.sm\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.sm\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 768px){.md\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.md\\:col-fixed{flex:0 0 auto;padding:.5rem}.md\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.md\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.md\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.md\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.md\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.md\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.md\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.md\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.md\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.md\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.md\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.md\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 992px){.lg\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.lg\\:col-fixed{flex:0 0 auto;padding:.5rem}.lg\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.lg\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.lg\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.lg\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.lg\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.lg\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.lg\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.lg\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.lg\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.lg\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.lg\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.lg\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}@media screen and (min-width: 1200px){.xl\\:col{flex-grow:1;flex-basis:0;padding:.5rem}.xl\\:col-fixed{flex:0 0 auto;padding:.5rem}.xl\\:col-1{flex:0 0 auto;padding:.5rem;width:8.3333%}.xl\\:col-2{flex:0 0 auto;padding:.5rem;width:16.6667%}.xl\\:col-3{flex:0 0 auto;padding:.5rem;width:25%}.xl\\:col-4{flex:0 0 auto;padding:.5rem;width:33.3333%}.xl\\:col-5{flex:0 0 auto;padding:.5rem;width:41.6667%}.xl\\:col-6{flex:0 0 auto;padding:.5rem;width:50%}.xl\\:col-7{flex:0 0 auto;padding:.5rem;width:58.3333%}.xl\\:col-8{flex:0 0 auto;padding:.5rem;width:66.6667%}.xl\\:col-9{flex:0 0 auto;padding:.5rem;width:75%}.xl\\:col-10{flex:0 0 auto;padding:.5rem;width:83.3333%}.xl\\:col-11{flex:0 0 auto;padding:.5rem;width:91.6667%}.xl\\:col-12{flex:0 0 auto;padding:.5rem;width:100%}}.col-offset-0{margin-left:0!important}.col-offset-1{margin-left:8.3333%!important}.col-offset-2{margin-left:16.6667%!important}.col-offset-3{margin-left:25%!important}.col-offset-4{margin-left:33.3333%!important}.col-offset-5{margin-left:41.6667%!important}.col-offset-6{margin-left:50%!important}.col-offset-7{margin-left:58.3333%!important}.col-offset-8{margin-left:66.6667%!important}.col-offset-9{margin-left:75%!important}.col-offset-10{margin-left:83.3333%!important}.col-offset-11{margin-left:91.6667%!important}.col-offset-12{margin-left:100%!important}@media screen and (min-width: 576px){.sm\\:col-offset-0{margin-left:0!important}.sm\\:col-offset-1{margin-left:8.3333%!important}.sm\\:col-offset-2{margin-left:16.6667%!important}.sm\\:col-offset-3{margin-left:25%!important}.sm\\:col-offset-4{margin-left:33.3333%!important}.sm\\:col-offset-5{margin-left:41.6667%!important}.sm\\:col-offset-6{margin-left:50%!important}.sm\\:col-offset-7{margin-left:58.3333%!important}.sm\\:col-offset-8{margin-left:66.6667%!important}.sm\\:col-offset-9{margin-left:75%!important}.sm\\:col-offset-10{margin-left:83.3333%!important}.sm\\:col-offset-11{margin-left:91.6667%!important}.sm\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 768px){.md\\:col-offset-0{margin-left:0!important}.md\\:col-offset-1{margin-left:8.3333%!important}.md\\:col-offset-2{margin-left:16.6667%!important}.md\\:col-offset-3{margin-left:25%!important}.md\\:col-offset-4{margin-left:33.3333%!important}.md\\:col-offset-5{margin-left:41.6667%!important}.md\\:col-offset-6{margin-left:50%!important}.md\\:col-offset-7{margin-left:58.3333%!important}.md\\:col-offset-8{margin-left:66.6667%!important}.md\\:col-offset-9{margin-left:75%!important}.md\\:col-offset-10{margin-left:83.3333%!important}.md\\:col-offset-11{margin-left:91.6667%!important}.md\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 992px){.lg\\:col-offset-0{margin-left:0!important}.lg\\:col-offset-1{margin-left:8.3333%!important}.lg\\:col-offset-2{margin-left:16.6667%!important}.lg\\:col-offset-3{margin-left:25%!important}.lg\\:col-offset-4{margin-left:33.3333%!important}.lg\\:col-offset-5{margin-left:41.6667%!important}.lg\\:col-offset-6{margin-left:50%!important}.lg\\:col-offset-7{margin-left:58.3333%!important}.lg\\:col-offset-8{margin-left:66.6667%!important}.lg\\:col-offset-9{margin-left:75%!important}.lg\\:col-offset-10{margin-left:83.3333%!important}.lg\\:col-offset-11{margin-left:91.6667%!important}.lg\\:col-offset-12{margin-left:100%!important}}@media screen and (min-width: 1200px){.xl\\:col-offset-0{margin-left:0!important}.xl\\:col-offset-1{margin-left:8.3333%!important}.xl\\:col-offset-2{margin-left:16.6667%!important}.xl\\:col-offset-3{margin-left:25%!important}.xl\\:col-offset-4{margin-left:33.3333%!important}.xl\\:col-offset-5{margin-left:41.6667%!important}.xl\\:col-offset-6{margin-left:50%!important}.xl\\:col-offset-7{margin-left:58.3333%!important}.xl\\:col-offset-8{margin-left:66.6667%!important}.xl\\:col-offset-9{margin-left:75%!important}.xl\\:col-offset-10{margin-left:83.3333%!important}.xl\\:col-offset-11{margin-left:91.6667%!important}.xl\\:col-offset-12{margin-left:100%!important}}.text-0{color:var(--surface-0)!important}.text-50{color:var(--surface-50)!important}.text-100{color:var(--surface-100)!important}.text-200{color:var(--surface-200)!important}.text-300{color:var(--surface-300)!important}.text-400{color:var(--surface-400)!important}.text-500{color:var(--surface-500)!important}.text-600{color:var(--surface-600)!important}.text-700{color:var(--surface-700)!important}.text-800{color:var(--surface-800)!important}.text-900{color:var(--surface-900)!important}.focus\\:text-0:focus{color:var(--surface-0)!important}.hover\\:text-0:hover,.active\\:text-0:active{color:var(--surface-0)!important}.focus\\:text-50:focus{color:var(--surface-50)!important}.hover\\:text-50:hover,.active\\:text-50:active{color:var(--surface-50)!important}.focus\\:text-100:focus{color:var(--surface-100)!important}.hover\\:text-100:hover,.active\\:text-100:active{color:var(--surface-100)!important}.focus\\:text-200:focus{color:var(--surface-200)!important}.hover\\:text-200:hover,.active\\:text-200:active{color:var(--surface-200)!important}.focus\\:text-300:focus{color:var(--surface-300)!important}.hover\\:text-300:hover,.active\\:text-300:active{color:var(--surface-300)!important}.focus\\:text-400:focus{color:var(--surface-400)!important}.hover\\:text-400:hover,.active\\:text-400:active{color:var(--surface-400)!important}.focus\\:text-500:focus{color:var(--surface-500)!important}.hover\\:text-500:hover,.active\\:text-500:active{color:var(--surface-500)!important}.focus\\:text-600:focus{color:var(--surface-600)!important}.hover\\:text-600:hover,.active\\:text-600:active{color:var(--surface-600)!important}.focus\\:text-700:focus{color:var(--surface-700)!important}.hover\\:text-700:hover,.active\\:text-700:active{color:var(--surface-700)!important}.focus\\:text-800:focus{color:var(--surface-800)!important}.hover\\:text-800:hover,.active\\:text-800:active{color:var(--surface-800)!important}.focus\\:text-900:focus{color:var(--surface-900)!important}.hover\\:text-900:hover,.active\\:text-900:active{color:var(--surface-900)!important}.surface-0{background-color:var(--surface-0)!important}.surface-50{background-color:var(--surface-50)!important}.surface-100{background-color:var(--surface-100)!important}.surface-200{background-color:var(--surface-200)!important}.surface-300{background-color:var(--surface-300)!important}.surface-400{background-color:var(--surface-400)!important}.surface-500{background-color:var(--surface-500)!important}.surface-600{background-color:var(--surface-600)!important}.surface-700{background-color:var(--surface-700)!important}.surface-800{background-color:var(--surface-800)!important}.surface-900{background-color:var(--surface-900)!important}.focus\\:surface-0:focus{background-color:var(--surface-0)!important}.hover\\:surface-0:hover,.active\\:surface-0:active{background-color:var(--surface-0)!important}.focus\\:surface-50:focus{background-color:var(--surface-50)!important}.hover\\:surface-50:hover,.active\\:surface-50:active{background-color:var(--surface-50)!important}.focus\\:surface-100:focus{background-color:var(--surface-100)!important}.hover\\:surface-100:hover,.active\\:surface-100:active{background-color:var(--surface-100)!important}.focus\\:surface-200:focus{background-color:var(--surface-200)!important}.hover\\:surface-200:hover,.active\\:surface-200:active{background-color:var(--surface-200)!important}.focus\\:surface-300:focus{background-color:var(--surface-300)!important}.hover\\:surface-300:hover,.active\\:surface-300:active{background-color:var(--surface-300)!important}.focus\\:surface-400:focus{background-color:var(--surface-400)!important}.hover\\:surface-400:hover,.active\\:surface-400:active{background-color:var(--surface-400)!important}.focus\\:surface-500:focus{background-color:var(--surface-500)!important}.hover\\:surface-500:hover,.active\\:surface-500:active{background-color:var(--surface-500)!important}.focus\\:surface-600:focus{background-color:var(--surface-600)!important}.hover\\:surface-600:hover,.active\\:surface-600:active{background-color:var(--surface-600)!important}.focus\\:surface-700:focus{background-color:var(--surface-700)!important}.hover\\:surface-700:hover,.active\\:surface-700:active{background-color:var(--surface-700)!important}.focus\\:surface-800:focus{background-color:var(--surface-800)!important}.hover\\:surface-800:hover,.active\\:surface-800:active{background-color:var(--surface-800)!important}.focus\\:surface-900:focus{background-color:var(--surface-900)!important}.hover\\:surface-900:hover,.active\\:surface-900:active{background-color:var(--surface-900)!important}.border-0{border-color:var(--surface-0)!important}.border-50{border-color:var(--surface-50)!important}.border-100{border-color:var(--surface-100)!important}.border-200{border-color:var(--surface-200)!important}.border-300{border-color:var(--surface-300)!important}.border-400{border-color:var(--surface-400)!important}.border-500{border-color:var(--surface-500)!important}.border-600{border-color:var(--surface-600)!important}.border-700{border-color:var(--surface-700)!important}.border-800{border-color:var(--surface-800)!important}.border-900{border-color:var(--surface-900)!important}.focus\\:border-0:focus{border-color:var(--surface-0)!important}.hover\\:border-0:hover,.active\\:border-0:active{border-color:var(--surface-0)!important}.focus\\:border-50:focus{border-color:var(--surface-50)!important}.hover\\:border-50:hover,.active\\:border-50:active{border-color:var(--surface-50)!important}.focus\\:border-100:focus{border-color:var(--surface-100)!important}.hover\\:border-100:hover,.active\\:border-100:active{border-color:var(--surface-100)!important}.focus\\:border-200:focus{border-color:var(--surface-200)!important}.hover\\:border-200:hover,.active\\:border-200:active{border-color:var(--surface-200)!important}.focus\\:border-300:focus{border-color:var(--surface-300)!important}.hover\\:border-300:hover,.active\\:border-300:active{border-color:var(--surface-300)!important}.focus\\:border-400:focus{border-color:var(--surface-400)!important}.hover\\:border-400:hover,.active\\:border-400:active{border-color:var(--surface-400)!important}.focus\\:border-500:focus{border-color:var(--surface-500)!important}.hover\\:border-500:hover,.active\\:border-500:active{border-color:var(--surface-500)!important}.focus\\:border-600:focus{border-color:var(--surface-600)!important}.hover\\:border-600:hover,.active\\:border-600:active{border-color:var(--surface-600)!important}.focus\\:border-700:focus{border-color:var(--surface-700)!important}.hover\\:border-700:hover,.active\\:border-700:active{border-color:var(--surface-700)!important}.focus\\:border-800:focus{border-color:var(--surface-800)!important}.hover\\:border-800:hover,.active\\:border-800:active{border-color:var(--surface-800)!important}.focus\\:border-900:focus{border-color:var(--surface-900)!important}.hover\\:border-900:hover,.active\\:border-900:active{border-color:var(--surface-900)!important}.bg-transparent{background-color:transparent!important}@media screen and (min-width: 576px){.sm\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 768px){.md\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:bg-transparent{background-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:bg-transparent{background-color:transparent!important}}.border-transparent{border-color:transparent!important}@media screen and (min-width: 576px){.sm\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 768px){.md\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 992px){.lg\\:border-transparent{border-color:transparent!important}}@media screen and (min-width: 1200px){.xl\\:border-transparent{border-color:transparent!important}}.text-blue-50{color:var(--blue-50)!important}.text-blue-100{color:var(--blue-100)!important}.text-blue-200{color:var(--blue-200)!important}.text-blue-300{color:var(--blue-300)!important}.text-blue-400{color:var(--blue-400)!important}.text-blue-500{color:var(--blue-500)!important}.text-blue-600{color:var(--blue-600)!important}.text-blue-700{color:var(--blue-700)!important}.text-blue-800{color:var(--blue-800)!important}.text-blue-900{color:var(--blue-900)!important}.focus\\:text-blue-50:focus{color:var(--blue-50)!important}.focus\\:text-blue-100:focus{color:var(--blue-100)!important}.focus\\:text-blue-200:focus{color:var(--blue-200)!important}.focus\\:text-blue-300:focus{color:var(--blue-300)!important}.focus\\:text-blue-400:focus{color:var(--blue-400)!important}.focus\\:text-blue-500:focus{color:var(--blue-500)!important}.focus\\:text-blue-600:focus{color:var(--blue-600)!important}.focus\\:text-blue-700:focus{color:var(--blue-700)!important}.focus\\:text-blue-800:focus{color:var(--blue-800)!important}.focus\\:text-blue-900:focus{color:var(--blue-900)!important}.hover\\:text-blue-50:hover{color:var(--blue-50)!important}.hover\\:text-blue-100:hover{color:var(--blue-100)!important}.hover\\:text-blue-200:hover{color:var(--blue-200)!important}.hover\\:text-blue-300:hover{color:var(--blue-300)!important}.hover\\:text-blue-400:hover{color:var(--blue-400)!important}.hover\\:text-blue-500:hover{color:var(--blue-500)!important}.hover\\:text-blue-600:hover{color:var(--blue-600)!important}.hover\\:text-blue-700:hover{color:var(--blue-700)!important}.hover\\:text-blue-800:hover{color:var(--blue-800)!important}.hover\\:text-blue-900:hover{color:var(--blue-900)!important}.active\\:text-blue-50:active{color:var(--blue-50)!important}.active\\:text-blue-100:active{color:var(--blue-100)!important}.active\\:text-blue-200:active{color:var(--blue-200)!important}.active\\:text-blue-300:active{color:var(--blue-300)!important}.active\\:text-blue-400:active{color:var(--blue-400)!important}.active\\:text-blue-500:active{color:var(--blue-500)!important}.active\\:text-blue-600:active{color:var(--blue-600)!important}.active\\:text-blue-700:active{color:var(--blue-700)!important}.active\\:text-blue-800:active{color:var(--blue-800)!important}.active\\:text-blue-900:active{color:var(--blue-900)!important}.text-green-50{color:var(--green-50)!important}.text-green-100{color:var(--green-100)!important}.text-green-200{color:var(--green-200)!important}.text-green-300{color:var(--green-300)!important}.text-green-400{color:var(--green-400)!important}.text-green-500{color:var(--green-500)!important}.text-green-600{color:var(--green-600)!important}.text-green-700{color:var(--green-700)!important}.text-green-800{color:var(--green-800)!important}.text-green-900{color:var(--green-900)!important}.focus\\:text-green-50:focus{color:var(--green-50)!important}.focus\\:text-green-100:focus{color:var(--green-100)!important}.focus\\:text-green-200:focus{color:var(--green-200)!important}.focus\\:text-green-300:focus{color:var(--green-300)!important}.focus\\:text-green-400:focus{color:var(--green-400)!important}.focus\\:text-green-500:focus{color:var(--green-500)!important}.focus\\:text-green-600:focus{color:var(--green-600)!important}.focus\\:text-green-700:focus{color:var(--green-700)!important}.focus\\:text-green-800:focus{color:var(--green-800)!important}.focus\\:text-green-900:focus{color:var(--green-900)!important}.hover\\:text-green-50:hover{color:var(--green-50)!important}.hover\\:text-green-100:hover{color:var(--green-100)!important}.hover\\:text-green-200:hover{color:var(--green-200)!important}.hover\\:text-green-300:hover{color:var(--green-300)!important}.hover\\:text-green-400:hover{color:var(--green-400)!important}.hover\\:text-green-500:hover{color:var(--green-500)!important}.hover\\:text-green-600:hover{color:var(--green-600)!important}.hover\\:text-green-700:hover{color:var(--green-700)!important}.hover\\:text-green-800:hover{color:var(--green-800)!important}.hover\\:text-green-900:hover{color:var(--green-900)!important}.active\\:text-green-50:active{color:var(--green-50)!important}.active\\:text-green-100:active{color:var(--green-100)!important}.active\\:text-green-200:active{color:var(--green-200)!important}.active\\:text-green-300:active{color:var(--green-300)!important}.active\\:text-green-400:active{color:var(--green-400)!important}.active\\:text-green-500:active{color:var(--green-500)!important}.active\\:text-green-600:active{color:var(--green-600)!important}.active\\:text-green-700:active{color:var(--green-700)!important}.active\\:text-green-800:active{color:var(--green-800)!important}.active\\:text-green-900:active{color:var(--green-900)!important}.text-yellow-50{color:var(--yellow-50)!important}.text-yellow-100{color:var(--yellow-100)!important}.text-yellow-200{color:var(--yellow-200)!important}.text-yellow-300{color:var(--yellow-300)!important}.text-yellow-400{color:var(--yellow-400)!important}.text-yellow-500{color:var(--yellow-500)!important}.text-yellow-600{color:var(--yellow-600)!important}.text-yellow-700{color:var(--yellow-700)!important}.text-yellow-800{color:var(--yellow-800)!important}.text-yellow-900{color:var(--yellow-900)!important}.focus\\:text-yellow-50:focus{color:var(--yellow-50)!important}.focus\\:text-yellow-100:focus{color:var(--yellow-100)!important}.focus\\:text-yellow-200:focus{color:var(--yellow-200)!important}.focus\\:text-yellow-300:focus{color:var(--yellow-300)!important}.focus\\:text-yellow-400:focus{color:var(--yellow-400)!important}.focus\\:text-yellow-500:focus{color:var(--yellow-500)!important}.focus\\:text-yellow-600:focus{color:var(--yellow-600)!important}.focus\\:text-yellow-700:focus{color:var(--yellow-700)!important}.focus\\:text-yellow-800:focus{color:var(--yellow-800)!important}.focus\\:text-yellow-900:focus{color:var(--yellow-900)!important}.hover\\:text-yellow-50:hover{color:var(--yellow-50)!important}.hover\\:text-yellow-100:hover{color:var(--yellow-100)!important}.hover\\:text-yellow-200:hover{color:var(--yellow-200)!important}.hover\\:text-yellow-300:hover{color:var(--yellow-300)!important}.hover\\:text-yellow-400:hover{color:var(--yellow-400)!important}.hover\\:text-yellow-500:hover{color:var(--yellow-500)!important}.hover\\:text-yellow-600:hover{color:var(--yellow-600)!important}.hover\\:text-yellow-700:hover{color:var(--yellow-700)!important}.hover\\:text-yellow-800:hover{color:var(--yellow-800)!important}.hover\\:text-yellow-900:hover{color:var(--yellow-900)!important}.active\\:text-yellow-50:active{color:var(--yellow-50)!important}.active\\:text-yellow-100:active{color:var(--yellow-100)!important}.active\\:text-yellow-200:active{color:var(--yellow-200)!important}.active\\:text-yellow-300:active{color:var(--yellow-300)!important}.active\\:text-yellow-400:active{color:var(--yellow-400)!important}.active\\:text-yellow-500:active{color:var(--yellow-500)!important}.active\\:text-yellow-600:active{color:var(--yellow-600)!important}.active\\:text-yellow-700:active{color:var(--yellow-700)!important}.active\\:text-yellow-800:active{color:var(--yellow-800)!important}.active\\:text-yellow-900:active{color:var(--yellow-900)!important}.text-cyan-50{color:var(--cyan-50)!important}.text-cyan-100{color:var(--cyan-100)!important}.text-cyan-200{color:var(--cyan-200)!important}.text-cyan-300{color:var(--cyan-300)!important}.text-cyan-400{color:var(--cyan-400)!important}.text-cyan-500{color:var(--cyan-500)!important}.text-cyan-600{color:var(--cyan-600)!important}.text-cyan-700{color:var(--cyan-700)!important}.text-cyan-800{color:var(--cyan-800)!important}.text-cyan-900{color:var(--cyan-900)!important}.focus\\:text-cyan-50:focus{color:var(--cyan-50)!important}.focus\\:text-cyan-100:focus{color:var(--cyan-100)!important}.focus\\:text-cyan-200:focus{color:var(--cyan-200)!important}.focus\\:text-cyan-300:focus{color:var(--cyan-300)!important}.focus\\:text-cyan-400:focus{color:var(--cyan-400)!important}.focus\\:text-cyan-500:focus{color:var(--cyan-500)!important}.focus\\:text-cyan-600:focus{color:var(--cyan-600)!important}.focus\\:text-cyan-700:focus{color:var(--cyan-700)!important}.focus\\:text-cyan-800:focus{color:var(--cyan-800)!important}.focus\\:text-cyan-900:focus{color:var(--cyan-900)!important}.hover\\:text-cyan-50:hover{color:var(--cyan-50)!important}.hover\\:text-cyan-100:hover{color:var(--cyan-100)!important}.hover\\:text-cyan-200:hover{color:var(--cyan-200)!important}.hover\\:text-cyan-300:hover{color:var(--cyan-300)!important}.hover\\:text-cyan-400:hover{color:var(--cyan-400)!important}.hover\\:text-cyan-500:hover{color:var(--cyan-500)!important}.hover\\:text-cyan-600:hover{color:var(--cyan-600)!important}.hover\\:text-cyan-700:hover{color:var(--cyan-700)!important}.hover\\:text-cyan-800:hover{color:var(--cyan-800)!important}.hover\\:text-cyan-900:hover{color:var(--cyan-900)!important}.active\\:text-cyan-50:active{color:var(--cyan-50)!important}.active\\:text-cyan-100:active{color:var(--cyan-100)!important}.active\\:text-cyan-200:active{color:var(--cyan-200)!important}.active\\:text-cyan-300:active{color:var(--cyan-300)!important}.active\\:text-cyan-400:active{color:var(--cyan-400)!important}.active\\:text-cyan-500:active{color:var(--cyan-500)!important}.active\\:text-cyan-600:active{color:var(--cyan-600)!important}.active\\:text-cyan-700:active{color:var(--cyan-700)!important}.active\\:text-cyan-800:active{color:var(--cyan-800)!important}.active\\:text-cyan-900:active{color:var(--cyan-900)!important}.text-pink-50{color:var(--pink-50)!important}.text-pink-100{color:var(--pink-100)!important}.text-pink-200{color:var(--pink-200)!important}.text-pink-300{color:var(--pink-300)!important}.text-pink-400{color:var(--pink-400)!important}.text-pink-500{color:var(--pink-500)!important}.text-pink-600{color:var(--pink-600)!important}.text-pink-700{color:var(--pink-700)!important}.text-pink-800{color:var(--pink-800)!important}.text-pink-900{color:var(--pink-900)!important}.focus\\:text-pink-50:focus{color:var(--pink-50)!important}.focus\\:text-pink-100:focus{color:var(--pink-100)!important}.focus\\:text-pink-200:focus{color:var(--pink-200)!important}.focus\\:text-pink-300:focus{color:var(--pink-300)!important}.focus\\:text-pink-400:focus{color:var(--pink-400)!important}.focus\\:text-pink-500:focus{color:var(--pink-500)!important}.focus\\:text-pink-600:focus{color:var(--pink-600)!important}.focus\\:text-pink-700:focus{color:var(--pink-700)!important}.focus\\:text-pink-800:focus{color:var(--pink-800)!important}.focus\\:text-pink-900:focus{color:var(--pink-900)!important}.hover\\:text-pink-50:hover{color:var(--pink-50)!important}.hover\\:text-pink-100:hover{color:var(--pink-100)!important}.hover\\:text-pink-200:hover{color:var(--pink-200)!important}.hover\\:text-pink-300:hover{color:var(--pink-300)!important}.hover\\:text-pink-400:hover{color:var(--pink-400)!important}.hover\\:text-pink-500:hover{color:var(--pink-500)!important}.hover\\:text-pink-600:hover{color:var(--pink-600)!important}.hover\\:text-pink-700:hover{color:var(--pink-700)!important}.hover\\:text-pink-800:hover{color:var(--pink-800)!important}.hover\\:text-pink-900:hover{color:var(--pink-900)!important}.active\\:text-pink-50:active{color:var(--pink-50)!important}.active\\:text-pink-100:active{color:var(--pink-100)!important}.active\\:text-pink-200:active{color:var(--pink-200)!important}.active\\:text-pink-300:active{color:var(--pink-300)!important}.active\\:text-pink-400:active{color:var(--pink-400)!important}.active\\:text-pink-500:active{color:var(--pink-500)!important}.active\\:text-pink-600:active{color:var(--pink-600)!important}.active\\:text-pink-700:active{color:var(--pink-700)!important}.active\\:text-pink-800:active{color:var(--pink-800)!important}.active\\:text-pink-900:active{color:var(--pink-900)!important}.text-indigo-50{color:var(--indigo-50)!important}.text-indigo-100{color:var(--indigo-100)!important}.text-indigo-200{color:var(--indigo-200)!important}.text-indigo-300{color:var(--indigo-300)!important}.text-indigo-400{color:var(--indigo-400)!important}.text-indigo-500{color:var(--indigo-500)!important}.text-indigo-600{color:var(--indigo-600)!important}.text-indigo-700{color:var(--indigo-700)!important}.text-indigo-800{color:var(--indigo-800)!important}.text-indigo-900{color:var(--indigo-900)!important}.focus\\:text-indigo-50:focus{color:var(--indigo-50)!important}.focus\\:text-indigo-100:focus{color:var(--indigo-100)!important}.focus\\:text-indigo-200:focus{color:var(--indigo-200)!important}.focus\\:text-indigo-300:focus{color:var(--indigo-300)!important}.focus\\:text-indigo-400:focus{color:var(--indigo-400)!important}.focus\\:text-indigo-500:focus{color:var(--indigo-500)!important}.focus\\:text-indigo-600:focus{color:var(--indigo-600)!important}.focus\\:text-indigo-700:focus{color:var(--indigo-700)!important}.focus\\:text-indigo-800:focus{color:var(--indigo-800)!important}.focus\\:text-indigo-900:focus{color:var(--indigo-900)!important}.hover\\:text-indigo-50:hover{color:var(--indigo-50)!important}.hover\\:text-indigo-100:hover{color:var(--indigo-100)!important}.hover\\:text-indigo-200:hover{color:var(--indigo-200)!important}.hover\\:text-indigo-300:hover{color:var(--indigo-300)!important}.hover\\:text-indigo-400:hover{color:var(--indigo-400)!important}.hover\\:text-indigo-500:hover{color:var(--indigo-500)!important}.hover\\:text-indigo-600:hover{color:var(--indigo-600)!important}.hover\\:text-indigo-700:hover{color:var(--indigo-700)!important}.hover\\:text-indigo-800:hover{color:var(--indigo-800)!important}.hover\\:text-indigo-900:hover{color:var(--indigo-900)!important}.active\\:text-indigo-50:active{color:var(--indigo-50)!important}.active\\:text-indigo-100:active{color:var(--indigo-100)!important}.active\\:text-indigo-200:active{color:var(--indigo-200)!important}.active\\:text-indigo-300:active{color:var(--indigo-300)!important}.active\\:text-indigo-400:active{color:var(--indigo-400)!important}.active\\:text-indigo-500:active{color:var(--indigo-500)!important}.active\\:text-indigo-600:active{color:var(--indigo-600)!important}.active\\:text-indigo-700:active{color:var(--indigo-700)!important}.active\\:text-indigo-800:active{color:var(--indigo-800)!important}.active\\:text-indigo-900:active{color:var(--indigo-900)!important}.text-teal-50{color:var(--teal-50)!important}.text-teal-100{color:var(--teal-100)!important}.text-teal-200{color:var(--teal-200)!important}.text-teal-300{color:var(--teal-300)!important}.text-teal-400{color:var(--teal-400)!important}.text-teal-500{color:var(--teal-500)!important}.text-teal-600{color:var(--teal-600)!important}.text-teal-700{color:var(--teal-700)!important}.text-teal-800{color:var(--teal-800)!important}.text-teal-900{color:var(--teal-900)!important}.focus\\:text-teal-50:focus{color:var(--teal-50)!important}.focus\\:text-teal-100:focus{color:var(--teal-100)!important}.focus\\:text-teal-200:focus{color:var(--teal-200)!important}.focus\\:text-teal-300:focus{color:var(--teal-300)!important}.focus\\:text-teal-400:focus{color:var(--teal-400)!important}.focus\\:text-teal-500:focus{color:var(--teal-500)!important}.focus\\:text-teal-600:focus{color:var(--teal-600)!important}.focus\\:text-teal-700:focus{color:var(--teal-700)!important}.focus\\:text-teal-800:focus{color:var(--teal-800)!important}.focus\\:text-teal-900:focus{color:var(--teal-900)!important}.hover\\:text-teal-50:hover{color:var(--teal-50)!important}.hover\\:text-teal-100:hover{color:var(--teal-100)!important}.hover\\:text-teal-200:hover{color:var(--teal-200)!important}.hover\\:text-teal-300:hover{color:var(--teal-300)!important}.hover\\:text-teal-400:hover{color:var(--teal-400)!important}.hover\\:text-teal-500:hover{color:var(--teal-500)!important}.hover\\:text-teal-600:hover{color:var(--teal-600)!important}.hover\\:text-teal-700:hover{color:var(--teal-700)!important}.hover\\:text-teal-800:hover{color:var(--teal-800)!important}.hover\\:text-teal-900:hover{color:var(--teal-900)!important}.active\\:text-teal-50:active{color:var(--teal-50)!important}.active\\:text-teal-100:active{color:var(--teal-100)!important}.active\\:text-teal-200:active{color:var(--teal-200)!important}.active\\:text-teal-300:active{color:var(--teal-300)!important}.active\\:text-teal-400:active{color:var(--teal-400)!important}.active\\:text-teal-500:active{color:var(--teal-500)!important}.active\\:text-teal-600:active{color:var(--teal-600)!important}.active\\:text-teal-700:active{color:var(--teal-700)!important}.active\\:text-teal-800:active{color:var(--teal-800)!important}.active\\:text-teal-900:active{color:var(--teal-900)!important}.text-orange-50{color:var(--orange-50)!important}.text-orange-100{color:var(--orange-100)!important}.text-orange-200{color:var(--orange-200)!important}.text-orange-300{color:var(--orange-300)!important}.text-orange-400{color:var(--orange-400)!important}.text-orange-500{color:var(--orange-500)!important}.text-orange-600{color:var(--orange-600)!important}.text-orange-700{color:var(--orange-700)!important}.text-orange-800{color:var(--orange-800)!important}.text-orange-900{color:var(--orange-900)!important}.focus\\:text-orange-50:focus{color:var(--orange-50)!important}.focus\\:text-orange-100:focus{color:var(--orange-100)!important}.focus\\:text-orange-200:focus{color:var(--orange-200)!important}.focus\\:text-orange-300:focus{color:var(--orange-300)!important}.focus\\:text-orange-400:focus{color:var(--orange-400)!important}.focus\\:text-orange-500:focus{color:var(--orange-500)!important}.focus\\:text-orange-600:focus{color:var(--orange-600)!important}.focus\\:text-orange-700:focus{color:var(--orange-700)!important}.focus\\:text-orange-800:focus{color:var(--orange-800)!important}.focus\\:text-orange-900:focus{color:var(--orange-900)!important}.hover\\:text-orange-50:hover{color:var(--orange-50)!important}.hover\\:text-orange-100:hover{color:var(--orange-100)!important}.hover\\:text-orange-200:hover{color:var(--orange-200)!important}.hover\\:text-orange-300:hover{color:var(--orange-300)!important}.hover\\:text-orange-400:hover{color:var(--orange-400)!important}.hover\\:text-orange-500:hover{color:var(--orange-500)!important}.hover\\:text-orange-600:hover{color:var(--orange-600)!important}.hover\\:text-orange-700:hover{color:var(--orange-700)!important}.hover\\:text-orange-800:hover{color:var(--orange-800)!important}.hover\\:text-orange-900:hover{color:var(--orange-900)!important}.active\\:text-orange-50:active{color:var(--orange-50)!important}.active\\:text-orange-100:active{color:var(--orange-100)!important}.active\\:text-orange-200:active{color:var(--orange-200)!important}.active\\:text-orange-300:active{color:var(--orange-300)!important}.active\\:text-orange-400:active{color:var(--orange-400)!important}.active\\:text-orange-500:active{color:var(--orange-500)!important}.active\\:text-orange-600:active{color:var(--orange-600)!important}.active\\:text-orange-700:active{color:var(--orange-700)!important}.active\\:text-orange-800:active{color:var(--orange-800)!important}.active\\:text-orange-900:active{color:var(--orange-900)!important}.text-bluegray-50{color:var(--bluegray-50)!important}.text-bluegray-100{color:var(--bluegray-100)!important}.text-bluegray-200{color:var(--bluegray-200)!important}.text-bluegray-300{color:var(--bluegray-300)!important}.text-bluegray-400{color:var(--bluegray-400)!important}.text-bluegray-500{color:var(--bluegray-500)!important}.text-bluegray-600{color:var(--bluegray-600)!important}.text-bluegray-700{color:var(--bluegray-700)!important}.text-bluegray-800{color:var(--bluegray-800)!important}.text-bluegray-900{color:var(--bluegray-900)!important}.focus\\:text-bluegray-50:focus{color:var(--bluegray-50)!important}.focus\\:text-bluegray-100:focus{color:var(--bluegray-100)!important}.focus\\:text-bluegray-200:focus{color:var(--bluegray-200)!important}.focus\\:text-bluegray-300:focus{color:var(--bluegray-300)!important}.focus\\:text-bluegray-400:focus{color:var(--bluegray-400)!important}.focus\\:text-bluegray-500:focus{color:var(--bluegray-500)!important}.focus\\:text-bluegray-600:focus{color:var(--bluegray-600)!important}.focus\\:text-bluegray-700:focus{color:var(--bluegray-700)!important}.focus\\:text-bluegray-800:focus{color:var(--bluegray-800)!important}.focus\\:text-bluegray-900:focus{color:var(--bluegray-900)!important}.hover\\:text-bluegray-50:hover{color:var(--bluegray-50)!important}.hover\\:text-bluegray-100:hover{color:var(--bluegray-100)!important}.hover\\:text-bluegray-200:hover{color:var(--bluegray-200)!important}.hover\\:text-bluegray-300:hover{color:var(--bluegray-300)!important}.hover\\:text-bluegray-400:hover{color:var(--bluegray-400)!important}.hover\\:text-bluegray-500:hover{color:var(--bluegray-500)!important}.hover\\:text-bluegray-600:hover{color:var(--bluegray-600)!important}.hover\\:text-bluegray-700:hover{color:var(--bluegray-700)!important}.hover\\:text-bluegray-800:hover{color:var(--bluegray-800)!important}.hover\\:text-bluegray-900:hover{color:var(--bluegray-900)!important}.active\\:text-bluegray-50:active{color:var(--bluegray-50)!important}.active\\:text-bluegray-100:active{color:var(--bluegray-100)!important}.active\\:text-bluegray-200:active{color:var(--bluegray-200)!important}.active\\:text-bluegray-300:active{color:var(--bluegray-300)!important}.active\\:text-bluegray-400:active{color:var(--bluegray-400)!important}.active\\:text-bluegray-500:active{color:var(--bluegray-500)!important}.active\\:text-bluegray-600:active{color:var(--bluegray-600)!important}.active\\:text-bluegray-700:active{color:var(--bluegray-700)!important}.active\\:text-bluegray-800:active{color:var(--bluegray-800)!important}.active\\:text-bluegray-900:active{color:var(--bluegray-900)!important}.text-purple-50{color:var(--purple-50)!important}.text-purple-100{color:var(--purple-100)!important}.text-purple-200{color:var(--purple-200)!important}.text-purple-300{color:var(--purple-300)!important}.text-purple-400{color:var(--purple-400)!important}.text-purple-500{color:var(--purple-500)!important}.text-purple-600{color:var(--purple-600)!important}.text-purple-700{color:var(--purple-700)!important}.text-purple-800{color:var(--purple-800)!important}.text-purple-900{color:var(--purple-900)!important}.focus\\:text-purple-50:focus{color:var(--purple-50)!important}.focus\\:text-purple-100:focus{color:var(--purple-100)!important}.focus\\:text-purple-200:focus{color:var(--purple-200)!important}.focus\\:text-purple-300:focus{color:var(--purple-300)!important}.focus\\:text-purple-400:focus{color:var(--purple-400)!important}.focus\\:text-purple-500:focus{color:var(--purple-500)!important}.focus\\:text-purple-600:focus{color:var(--purple-600)!important}.focus\\:text-purple-700:focus{color:var(--purple-700)!important}.focus\\:text-purple-800:focus{color:var(--purple-800)!important}.focus\\:text-purple-900:focus{color:var(--purple-900)!important}.hover\\:text-purple-50:hover{color:var(--purple-50)!important}.hover\\:text-purple-100:hover{color:var(--purple-100)!important}.hover\\:text-purple-200:hover{color:var(--purple-200)!important}.hover\\:text-purple-300:hover{color:var(--purple-300)!important}.hover\\:text-purple-400:hover{color:var(--purple-400)!important}.hover\\:text-purple-500:hover{color:var(--purple-500)!important}.hover\\:text-purple-600:hover{color:var(--purple-600)!important}.hover\\:text-purple-700:hover{color:var(--purple-700)!important}.hover\\:text-purple-800:hover{color:var(--purple-800)!important}.hover\\:text-purple-900:hover{color:var(--purple-900)!important}.active\\:text-purple-50:active{color:var(--purple-50)!important}.active\\:text-purple-100:active{color:var(--purple-100)!important}.active\\:text-purple-200:active{color:var(--purple-200)!important}.active\\:text-purple-300:active{color:var(--purple-300)!important}.active\\:text-purple-400:active{color:var(--purple-400)!important}.active\\:text-purple-500:active{color:var(--purple-500)!important}.active\\:text-purple-600:active{color:var(--purple-600)!important}.active\\:text-purple-700:active{color:var(--purple-700)!important}.active\\:text-purple-800:active{color:var(--purple-800)!important}.active\\:text-purple-900:active{color:var(--purple-900)!important}.text-gray-50{color:var(--gray-50)!important}.text-gray-100{color:var(--gray-100)!important}.text-gray-200{color:var(--gray-200)!important}.text-gray-300{color:var(--gray-300)!important}.text-gray-400{color:var(--gray-400)!important}.text-gray-500{color:var(--gray-500)!important}.text-gray-600{color:var(--gray-600)!important}.text-gray-700{color:var(--gray-700)!important}.text-gray-800{color:var(--gray-800)!important}.text-gray-900{color:var(--gray-900)!important}.focus\\:text-gray-50:focus{color:var(--gray-50)!important}.focus\\:text-gray-100:focus{color:var(--gray-100)!important}.focus\\:text-gray-200:focus{color:var(--gray-200)!important}.focus\\:text-gray-300:focus{color:var(--gray-300)!important}.focus\\:text-gray-400:focus{color:var(--gray-400)!important}.focus\\:text-gray-500:focus{color:var(--gray-500)!important}.focus\\:text-gray-600:focus{color:var(--gray-600)!important}.focus\\:text-gray-700:focus{color:var(--gray-700)!important}.focus\\:text-gray-800:focus{color:var(--gray-800)!important}.focus\\:text-gray-900:focus{color:var(--gray-900)!important}.hover\\:text-gray-50:hover{color:var(--gray-50)!important}.hover\\:text-gray-100:hover{color:var(--gray-100)!important}.hover\\:text-gray-200:hover{color:var(--gray-200)!important}.hover\\:text-gray-300:hover{color:var(--gray-300)!important}.hover\\:text-gray-400:hover{color:var(--gray-400)!important}.hover\\:text-gray-500:hover{color:var(--gray-500)!important}.hover\\:text-gray-600:hover{color:var(--gray-600)!important}.hover\\:text-gray-700:hover{color:var(--gray-700)!important}.hover\\:text-gray-800:hover{color:var(--gray-800)!important}.hover\\:text-gray-900:hover{color:var(--gray-900)!important}.active\\:text-gray-50:active{color:var(--gray-50)!important}.active\\:text-gray-100:active{color:var(--gray-100)!important}.active\\:text-gray-200:active{color:var(--gray-200)!important}.active\\:text-gray-300:active{color:var(--gray-300)!important}.active\\:text-gray-400:active{color:var(--gray-400)!important}.active\\:text-gray-500:active{color:var(--gray-500)!important}.active\\:text-gray-600:active{color:var(--gray-600)!important}.active\\:text-gray-700:active{color:var(--gray-700)!important}.active\\:text-gray-800:active{color:var(--gray-800)!important}.active\\:text-gray-900:active{color:var(--gray-900)!important}.text-red-50{color:var(--red-50)!important}.text-red-100{color:var(--red-100)!important}.text-red-200{color:var(--red-200)!important}.text-red-300{color:var(--red-300)!important}.text-red-400{color:var(--red-400)!important}.text-red-500{color:var(--red-500)!important}.text-red-600{color:var(--red-600)!important}.text-red-700{color:var(--red-700)!important}.text-red-800{color:var(--red-800)!important}.text-red-900{color:var(--red-900)!important}.focus\\:text-red-50:focus{color:var(--red-50)!important}.focus\\:text-red-100:focus{color:var(--red-100)!important}.focus\\:text-red-200:focus{color:var(--red-200)!important}.focus\\:text-red-300:focus{color:var(--red-300)!important}.focus\\:text-red-400:focus{color:var(--red-400)!important}.focus\\:text-red-500:focus{color:var(--red-500)!important}.focus\\:text-red-600:focus{color:var(--red-600)!important}.focus\\:text-red-700:focus{color:var(--red-700)!important}.focus\\:text-red-800:focus{color:var(--red-800)!important}.focus\\:text-red-900:focus{color:var(--red-900)!important}.hover\\:text-red-50:hover{color:var(--red-50)!important}.hover\\:text-red-100:hover{color:var(--red-100)!important}.hover\\:text-red-200:hover{color:var(--red-200)!important}.hover\\:text-red-300:hover{color:var(--red-300)!important}.hover\\:text-red-400:hover{color:var(--red-400)!important}.hover\\:text-red-500:hover{color:var(--red-500)!important}.hover\\:text-red-600:hover{color:var(--red-600)!important}.hover\\:text-red-700:hover{color:var(--red-700)!important}.hover\\:text-red-800:hover{color:var(--red-800)!important}.hover\\:text-red-900:hover{color:var(--red-900)!important}.active\\:text-red-50:active{color:var(--red-50)!important}.active\\:text-red-100:active{color:var(--red-100)!important}.active\\:text-red-200:active{color:var(--red-200)!important}.active\\:text-red-300:active{color:var(--red-300)!important}.active\\:text-red-400:active{color:var(--red-400)!important}.active\\:text-red-500:active{color:var(--red-500)!important}.active\\:text-red-600:active{color:var(--red-600)!important}.active\\:text-red-700:active{color:var(--red-700)!important}.active\\:text-red-800:active{color:var(--red-800)!important}.active\\:text-red-900:active{color:var(--red-900)!important}.text-primary-50{color:var(--primary-50)!important}.text-primary-100{color:var(--primary-100)!important}.text-primary-200{color:var(--primary-200)!important}.text-primary-300{color:var(--primary-300)!important}.text-primary-400{color:var(--primary-400)!important}.text-primary-500{color:var(--primary-500)!important}.text-primary-600{color:var(--primary-600)!important}.text-primary-700{color:var(--primary-700)!important}.text-primary-800{color:var(--primary-800)!important}.text-primary-900{color:var(--primary-900)!important}.focus\\:text-primary-50:focus{color:var(--primary-50)!important}.focus\\:text-primary-100:focus{color:var(--primary-100)!important}.focus\\:text-primary-200:focus{color:var(--primary-200)!important}.focus\\:text-primary-300:focus{color:var(--primary-300)!important}.focus\\:text-primary-400:focus{color:var(--primary-400)!important}.focus\\:text-primary-500:focus{color:var(--primary-500)!important}.focus\\:text-primary-600:focus{color:var(--primary-600)!important}.focus\\:text-primary-700:focus{color:var(--primary-700)!important}.focus\\:text-primary-800:focus{color:var(--primary-800)!important}.focus\\:text-primary-900:focus{color:var(--primary-900)!important}.hover\\:text-primary-50:hover{color:var(--primary-50)!important}.hover\\:text-primary-100:hover{color:var(--primary-100)!important}.hover\\:text-primary-200:hover{color:var(--primary-200)!important}.hover\\:text-primary-300:hover{color:var(--primary-300)!important}.hover\\:text-primary-400:hover{color:var(--primary-400)!important}.hover\\:text-primary-500:hover{color:var(--primary-500)!important}.hover\\:text-primary-600:hover{color:var(--primary-600)!important}.hover\\:text-primary-700:hover{color:var(--primary-700)!important}.hover\\:text-primary-800:hover{color:var(--primary-800)!important}.hover\\:text-primary-900:hover{color:var(--primary-900)!important}.active\\:text-primary-50:active{color:var(--primary-50)!important}.active\\:text-primary-100:active{color:var(--primary-100)!important}.active\\:text-primary-200:active{color:var(--primary-200)!important}.active\\:text-primary-300:active{color:var(--primary-300)!important}.active\\:text-primary-400:active{color:var(--primary-400)!important}.active\\:text-primary-500:active{color:var(--primary-500)!important}.active\\:text-primary-600:active{color:var(--primary-600)!important}.active\\:text-primary-700:active{color:var(--primary-700)!important}.active\\:text-primary-800:active{color:var(--primary-800)!important}.active\\:text-primary-900:active{color:var(--primary-900)!important}.bg-blue-50{background-color:var(--blue-50)!important}.bg-blue-100{background-color:var(--blue-100)!important}.bg-blue-200{background-color:var(--blue-200)!important}.bg-blue-300{background-color:var(--blue-300)!important}.bg-blue-400{background-color:var(--blue-400)!important}.bg-blue-500{background-color:var(--blue-500)!important}.bg-blue-600{background-color:var(--blue-600)!important}.bg-blue-700{background-color:var(--blue-700)!important}.bg-blue-800{background-color:var(--blue-800)!important}.bg-blue-900{background-color:var(--blue-900)!important}.focus\\:bg-blue-50:focus{background-color:var(--blue-50)!important}.focus\\:bg-blue-100:focus{background-color:var(--blue-100)!important}.focus\\:bg-blue-200:focus{background-color:var(--blue-200)!important}.focus\\:bg-blue-300:focus{background-color:var(--blue-300)!important}.focus\\:bg-blue-400:focus{background-color:var(--blue-400)!important}.focus\\:bg-blue-500:focus{background-color:var(--blue-500)!important}.focus\\:bg-blue-600:focus{background-color:var(--blue-600)!important}.focus\\:bg-blue-700:focus{background-color:var(--blue-700)!important}.focus\\:bg-blue-800:focus{background-color:var(--blue-800)!important}.focus\\:bg-blue-900:focus{background-color:var(--blue-900)!important}.hover\\:bg-blue-50:hover{background-color:var(--blue-50)!important}.hover\\:bg-blue-100:hover{background-color:var(--blue-100)!important}.hover\\:bg-blue-200:hover{background-color:var(--blue-200)!important}.hover\\:bg-blue-300:hover{background-color:var(--blue-300)!important}.hover\\:bg-blue-400:hover{background-color:var(--blue-400)!important}.hover\\:bg-blue-500:hover{background-color:var(--blue-500)!important}.hover\\:bg-blue-600:hover{background-color:var(--blue-600)!important}.hover\\:bg-blue-700:hover{background-color:var(--blue-700)!important}.hover\\:bg-blue-800:hover{background-color:var(--blue-800)!important}.hover\\:bg-blue-900:hover{background-color:var(--blue-900)!important}.active\\:bg-blue-50:active{background-color:var(--blue-50)!important}.active\\:bg-blue-100:active{background-color:var(--blue-100)!important}.active\\:bg-blue-200:active{background-color:var(--blue-200)!important}.active\\:bg-blue-300:active{background-color:var(--blue-300)!important}.active\\:bg-blue-400:active{background-color:var(--blue-400)!important}.active\\:bg-blue-500:active{background-color:var(--blue-500)!important}.active\\:bg-blue-600:active{background-color:var(--blue-600)!important}.active\\:bg-blue-700:active{background-color:var(--blue-700)!important}.active\\:bg-blue-800:active{background-color:var(--blue-800)!important}.active\\:bg-blue-900:active{background-color:var(--blue-900)!important}.bg-green-50{background-color:var(--green-50)!important}.bg-green-100{background-color:var(--green-100)!important}.bg-green-200{background-color:var(--green-200)!important}.bg-green-300{background-color:var(--green-300)!important}.bg-green-400{background-color:var(--green-400)!important}.bg-green-500{background-color:var(--green-500)!important}.bg-green-600{background-color:var(--green-600)!important}.bg-green-700{background-color:var(--green-700)!important}.bg-green-800{background-color:var(--green-800)!important}.bg-green-900{background-color:var(--green-900)!important}.focus\\:bg-green-50:focus{background-color:var(--green-50)!important}.focus\\:bg-green-100:focus{background-color:var(--green-100)!important}.focus\\:bg-green-200:focus{background-color:var(--green-200)!important}.focus\\:bg-green-300:focus{background-color:var(--green-300)!important}.focus\\:bg-green-400:focus{background-color:var(--green-400)!important}.focus\\:bg-green-500:focus{background-color:var(--green-500)!important}.focus\\:bg-green-600:focus{background-color:var(--green-600)!important}.focus\\:bg-green-700:focus{background-color:var(--green-700)!important}.focus\\:bg-green-800:focus{background-color:var(--green-800)!important}.focus\\:bg-green-900:focus{background-color:var(--green-900)!important}.hover\\:bg-green-50:hover{background-color:var(--green-50)!important}.hover\\:bg-green-100:hover{background-color:var(--green-100)!important}.hover\\:bg-green-200:hover{background-color:var(--green-200)!important}.hover\\:bg-green-300:hover{background-color:var(--green-300)!important}.hover\\:bg-green-400:hover{background-color:var(--green-400)!important}.hover\\:bg-green-500:hover{background-color:var(--green-500)!important}.hover\\:bg-green-600:hover{background-color:var(--green-600)!important}.hover\\:bg-green-700:hover{background-color:var(--green-700)!important}.hover\\:bg-green-800:hover{background-color:var(--green-800)!important}.hover\\:bg-green-900:hover{background-color:var(--green-900)!important}.active\\:bg-green-50:active{background-color:var(--green-50)!important}.active\\:bg-green-100:active{background-color:var(--green-100)!important}.active\\:bg-green-200:active{background-color:var(--green-200)!important}.active\\:bg-green-300:active{background-color:var(--green-300)!important}.active\\:bg-green-400:active{background-color:var(--green-400)!important}.active\\:bg-green-500:active{background-color:var(--green-500)!important}.active\\:bg-green-600:active{background-color:var(--green-600)!important}.active\\:bg-green-700:active{background-color:var(--green-700)!important}.active\\:bg-green-800:active{background-color:var(--green-800)!important}.active\\:bg-green-900:active{background-color:var(--green-900)!important}.bg-yellow-50{background-color:var(--yellow-50)!important}.bg-yellow-100{background-color:var(--yellow-100)!important}.bg-yellow-200{background-color:var(--yellow-200)!important}.bg-yellow-300{background-color:var(--yellow-300)!important}.bg-yellow-400{background-color:var(--yellow-400)!important}.bg-yellow-500{background-color:var(--yellow-500)!important}.bg-yellow-600{background-color:var(--yellow-600)!important}.bg-yellow-700{background-color:var(--yellow-700)!important}.bg-yellow-800{background-color:var(--yellow-800)!important}.bg-yellow-900{background-color:var(--yellow-900)!important}.focus\\:bg-yellow-50:focus{background-color:var(--yellow-50)!important}.focus\\:bg-yellow-100:focus{background-color:var(--yellow-100)!important}.focus\\:bg-yellow-200:focus{background-color:var(--yellow-200)!important}.focus\\:bg-yellow-300:focus{background-color:var(--yellow-300)!important}.focus\\:bg-yellow-400:focus{background-color:var(--yellow-400)!important}.focus\\:bg-yellow-500:focus{background-color:var(--yellow-500)!important}.focus\\:bg-yellow-600:focus{background-color:var(--yellow-600)!important}.focus\\:bg-yellow-700:focus{background-color:var(--yellow-700)!important}.focus\\:bg-yellow-800:focus{background-color:var(--yellow-800)!important}.focus\\:bg-yellow-900:focus{background-color:var(--yellow-900)!important}.hover\\:bg-yellow-50:hover{background-color:var(--yellow-50)!important}.hover\\:bg-yellow-100:hover{background-color:var(--yellow-100)!important}.hover\\:bg-yellow-200:hover{background-color:var(--yellow-200)!important}.hover\\:bg-yellow-300:hover{background-color:var(--yellow-300)!important}.hover\\:bg-yellow-400:hover{background-color:var(--yellow-400)!important}.hover\\:bg-yellow-500:hover{background-color:var(--yellow-500)!important}.hover\\:bg-yellow-600:hover{background-color:var(--yellow-600)!important}.hover\\:bg-yellow-700:hover{background-color:var(--yellow-700)!important}.hover\\:bg-yellow-800:hover{background-color:var(--yellow-800)!important}.hover\\:bg-yellow-900:hover{background-color:var(--yellow-900)!important}.active\\:bg-yellow-50:active{background-color:var(--yellow-50)!important}.active\\:bg-yellow-100:active{background-color:var(--yellow-100)!important}.active\\:bg-yellow-200:active{background-color:var(--yellow-200)!important}.active\\:bg-yellow-300:active{background-color:var(--yellow-300)!important}.active\\:bg-yellow-400:active{background-color:var(--yellow-400)!important}.active\\:bg-yellow-500:active{background-color:var(--yellow-500)!important}.active\\:bg-yellow-600:active{background-color:var(--yellow-600)!important}.active\\:bg-yellow-700:active{background-color:var(--yellow-700)!important}.active\\:bg-yellow-800:active{background-color:var(--yellow-800)!important}.active\\:bg-yellow-900:active{background-color:var(--yellow-900)!important}.bg-cyan-50{background-color:var(--cyan-50)!important}.bg-cyan-100{background-color:var(--cyan-100)!important}.bg-cyan-200{background-color:var(--cyan-200)!important}.bg-cyan-300{background-color:var(--cyan-300)!important}.bg-cyan-400{background-color:var(--cyan-400)!important}.bg-cyan-500{background-color:var(--cyan-500)!important}.bg-cyan-600{background-color:var(--cyan-600)!important}.bg-cyan-700{background-color:var(--cyan-700)!important}.bg-cyan-800{background-color:var(--cyan-800)!important}.bg-cyan-900{background-color:var(--cyan-900)!important}.focus\\:bg-cyan-50:focus{background-color:var(--cyan-50)!important}.focus\\:bg-cyan-100:focus{background-color:var(--cyan-100)!important}.focus\\:bg-cyan-200:focus{background-color:var(--cyan-200)!important}.focus\\:bg-cyan-300:focus{background-color:var(--cyan-300)!important}.focus\\:bg-cyan-400:focus{background-color:var(--cyan-400)!important}.focus\\:bg-cyan-500:focus{background-color:var(--cyan-500)!important}.focus\\:bg-cyan-600:focus{background-color:var(--cyan-600)!important}.focus\\:bg-cyan-700:focus{background-color:var(--cyan-700)!important}.focus\\:bg-cyan-800:focus{background-color:var(--cyan-800)!important}.focus\\:bg-cyan-900:focus{background-color:var(--cyan-900)!important}.hover\\:bg-cyan-50:hover{background-color:var(--cyan-50)!important}.hover\\:bg-cyan-100:hover{background-color:var(--cyan-100)!important}.hover\\:bg-cyan-200:hover{background-color:var(--cyan-200)!important}.hover\\:bg-cyan-300:hover{background-color:var(--cyan-300)!important}.hover\\:bg-cyan-400:hover{background-color:var(--cyan-400)!important}.hover\\:bg-cyan-500:hover{background-color:var(--cyan-500)!important}.hover\\:bg-cyan-600:hover{background-color:var(--cyan-600)!important}.hover\\:bg-cyan-700:hover{background-color:var(--cyan-700)!important}.hover\\:bg-cyan-800:hover{background-color:var(--cyan-800)!important}.hover\\:bg-cyan-900:hover{background-color:var(--cyan-900)!important}.active\\:bg-cyan-50:active{background-color:var(--cyan-50)!important}.active\\:bg-cyan-100:active{background-color:var(--cyan-100)!important}.active\\:bg-cyan-200:active{background-color:var(--cyan-200)!important}.active\\:bg-cyan-300:active{background-color:var(--cyan-300)!important}.active\\:bg-cyan-400:active{background-color:var(--cyan-400)!important}.active\\:bg-cyan-500:active{background-color:var(--cyan-500)!important}.active\\:bg-cyan-600:active{background-color:var(--cyan-600)!important}.active\\:bg-cyan-700:active{background-color:var(--cyan-700)!important}.active\\:bg-cyan-800:active{background-color:var(--cyan-800)!important}.active\\:bg-cyan-900:active{background-color:var(--cyan-900)!important}.bg-pink-50{background-color:var(--pink-50)!important}.bg-pink-100{background-color:var(--pink-100)!important}.bg-pink-200{background-color:var(--pink-200)!important}.bg-pink-300{background-color:var(--pink-300)!important}.bg-pink-400{background-color:var(--pink-400)!important}.bg-pink-500{background-color:var(--pink-500)!important}.bg-pink-600{background-color:var(--pink-600)!important}.bg-pink-700{background-color:var(--pink-700)!important}.bg-pink-800{background-color:var(--pink-800)!important}.bg-pink-900{background-color:var(--pink-900)!important}.focus\\:bg-pink-50:focus{background-color:var(--pink-50)!important}.focus\\:bg-pink-100:focus{background-color:var(--pink-100)!important}.focus\\:bg-pink-200:focus{background-color:var(--pink-200)!important}.focus\\:bg-pink-300:focus{background-color:var(--pink-300)!important}.focus\\:bg-pink-400:focus{background-color:var(--pink-400)!important}.focus\\:bg-pink-500:focus{background-color:var(--pink-500)!important}.focus\\:bg-pink-600:focus{background-color:var(--pink-600)!important}.focus\\:bg-pink-700:focus{background-color:var(--pink-700)!important}.focus\\:bg-pink-800:focus{background-color:var(--pink-800)!important}.focus\\:bg-pink-900:focus{background-color:var(--pink-900)!important}.hover\\:bg-pink-50:hover{background-color:var(--pink-50)!important}.hover\\:bg-pink-100:hover{background-color:var(--pink-100)!important}.hover\\:bg-pink-200:hover{background-color:var(--pink-200)!important}.hover\\:bg-pink-300:hover{background-color:var(--pink-300)!important}.hover\\:bg-pink-400:hover{background-color:var(--pink-400)!important}.hover\\:bg-pink-500:hover{background-color:var(--pink-500)!important}.hover\\:bg-pink-600:hover{background-color:var(--pink-600)!important}.hover\\:bg-pink-700:hover{background-color:var(--pink-700)!important}.hover\\:bg-pink-800:hover{background-color:var(--pink-800)!important}.hover\\:bg-pink-900:hover{background-color:var(--pink-900)!important}.active\\:bg-pink-50:active{background-color:var(--pink-50)!important}.active\\:bg-pink-100:active{background-color:var(--pink-100)!important}.active\\:bg-pink-200:active{background-color:var(--pink-200)!important}.active\\:bg-pink-300:active{background-color:var(--pink-300)!important}.active\\:bg-pink-400:active{background-color:var(--pink-400)!important}.active\\:bg-pink-500:active{background-color:var(--pink-500)!important}.active\\:bg-pink-600:active{background-color:var(--pink-600)!important}.active\\:bg-pink-700:active{background-color:var(--pink-700)!important}.active\\:bg-pink-800:active{background-color:var(--pink-800)!important}.active\\:bg-pink-900:active{background-color:var(--pink-900)!important}.bg-indigo-50{background-color:var(--indigo-50)!important}.bg-indigo-100{background-color:var(--indigo-100)!important}.bg-indigo-200{background-color:var(--indigo-200)!important}.bg-indigo-300{background-color:var(--indigo-300)!important}.bg-indigo-400{background-color:var(--indigo-400)!important}.bg-indigo-500{background-color:var(--indigo-500)!important}.bg-indigo-600{background-color:var(--indigo-600)!important}.bg-indigo-700{background-color:var(--indigo-700)!important}.bg-indigo-800{background-color:var(--indigo-800)!important}.bg-indigo-900{background-color:var(--indigo-900)!important}.focus\\:bg-indigo-50:focus{background-color:var(--indigo-50)!important}.focus\\:bg-indigo-100:focus{background-color:var(--indigo-100)!important}.focus\\:bg-indigo-200:focus{background-color:var(--indigo-200)!important}.focus\\:bg-indigo-300:focus{background-color:var(--indigo-300)!important}.focus\\:bg-indigo-400:focus{background-color:var(--indigo-400)!important}.focus\\:bg-indigo-500:focus{background-color:var(--indigo-500)!important}.focus\\:bg-indigo-600:focus{background-color:var(--indigo-600)!important}.focus\\:bg-indigo-700:focus{background-color:var(--indigo-700)!important}.focus\\:bg-indigo-800:focus{background-color:var(--indigo-800)!important}.focus\\:bg-indigo-900:focus{background-color:var(--indigo-900)!important}.hover\\:bg-indigo-50:hover{background-color:var(--indigo-50)!important}.hover\\:bg-indigo-100:hover{background-color:var(--indigo-100)!important}.hover\\:bg-indigo-200:hover{background-color:var(--indigo-200)!important}.hover\\:bg-indigo-300:hover{background-color:var(--indigo-300)!important}.hover\\:bg-indigo-400:hover{background-color:var(--indigo-400)!important}.hover\\:bg-indigo-500:hover{background-color:var(--indigo-500)!important}.hover\\:bg-indigo-600:hover{background-color:var(--indigo-600)!important}.hover\\:bg-indigo-700:hover{background-color:var(--indigo-700)!important}.hover\\:bg-indigo-800:hover{background-color:var(--indigo-800)!important}.hover\\:bg-indigo-900:hover{background-color:var(--indigo-900)!important}.active\\:bg-indigo-50:active{background-color:var(--indigo-50)!important}.active\\:bg-indigo-100:active{background-color:var(--indigo-100)!important}.active\\:bg-indigo-200:active{background-color:var(--indigo-200)!important}.active\\:bg-indigo-300:active{background-color:var(--indigo-300)!important}.active\\:bg-indigo-400:active{background-color:var(--indigo-400)!important}.active\\:bg-indigo-500:active{background-color:var(--indigo-500)!important}.active\\:bg-indigo-600:active{background-color:var(--indigo-600)!important}.active\\:bg-indigo-700:active{background-color:var(--indigo-700)!important}.active\\:bg-indigo-800:active{background-color:var(--indigo-800)!important}.active\\:bg-indigo-900:active{background-color:var(--indigo-900)!important}.bg-teal-50{background-color:var(--teal-50)!important}.bg-teal-100{background-color:var(--teal-100)!important}.bg-teal-200{background-color:var(--teal-200)!important}.bg-teal-300{background-color:var(--teal-300)!important}.bg-teal-400{background-color:var(--teal-400)!important}.bg-teal-500{background-color:var(--teal-500)!important}.bg-teal-600{background-color:var(--teal-600)!important}.bg-teal-700{background-color:var(--teal-700)!important}.bg-teal-800{background-color:var(--teal-800)!important}.bg-teal-900{background-color:var(--teal-900)!important}.focus\\:bg-teal-50:focus{background-color:var(--teal-50)!important}.focus\\:bg-teal-100:focus{background-color:var(--teal-100)!important}.focus\\:bg-teal-200:focus{background-color:var(--teal-200)!important}.focus\\:bg-teal-300:focus{background-color:var(--teal-300)!important}.focus\\:bg-teal-400:focus{background-color:var(--teal-400)!important}.focus\\:bg-teal-500:focus{background-color:var(--teal-500)!important}.focus\\:bg-teal-600:focus{background-color:var(--teal-600)!important}.focus\\:bg-teal-700:focus{background-color:var(--teal-700)!important}.focus\\:bg-teal-800:focus{background-color:var(--teal-800)!important}.focus\\:bg-teal-900:focus{background-color:var(--teal-900)!important}.hover\\:bg-teal-50:hover{background-color:var(--teal-50)!important}.hover\\:bg-teal-100:hover{background-color:var(--teal-100)!important}.hover\\:bg-teal-200:hover{background-color:var(--teal-200)!important}.hover\\:bg-teal-300:hover{background-color:var(--teal-300)!important}.hover\\:bg-teal-400:hover{background-color:var(--teal-400)!important}.hover\\:bg-teal-500:hover{background-color:var(--teal-500)!important}.hover\\:bg-teal-600:hover{background-color:var(--teal-600)!important}.hover\\:bg-teal-700:hover{background-color:var(--teal-700)!important}.hover\\:bg-teal-800:hover{background-color:var(--teal-800)!important}.hover\\:bg-teal-900:hover{background-color:var(--teal-900)!important}.active\\:bg-teal-50:active{background-color:var(--teal-50)!important}.active\\:bg-teal-100:active{background-color:var(--teal-100)!important}.active\\:bg-teal-200:active{background-color:var(--teal-200)!important}.active\\:bg-teal-300:active{background-color:var(--teal-300)!important}.active\\:bg-teal-400:active{background-color:var(--teal-400)!important}.active\\:bg-teal-500:active{background-color:var(--teal-500)!important}.active\\:bg-teal-600:active{background-color:var(--teal-600)!important}.active\\:bg-teal-700:active{background-color:var(--teal-700)!important}.active\\:bg-teal-800:active{background-color:var(--teal-800)!important}.active\\:bg-teal-900:active{background-color:var(--teal-900)!important}.bg-orange-50{background-color:var(--orange-50)!important}.bg-orange-100{background-color:var(--orange-100)!important}.bg-orange-200{background-color:var(--orange-200)!important}.bg-orange-300{background-color:var(--orange-300)!important}.bg-orange-400{background-color:var(--orange-400)!important}.bg-orange-500{background-color:var(--orange-500)!important}.bg-orange-600{background-color:var(--orange-600)!important}.bg-orange-700{background-color:var(--orange-700)!important}.bg-orange-800{background-color:var(--orange-800)!important}.bg-orange-900{background-color:var(--orange-900)!important}.focus\\:bg-orange-50:focus{background-color:var(--orange-50)!important}.focus\\:bg-orange-100:focus{background-color:var(--orange-100)!important}.focus\\:bg-orange-200:focus{background-color:var(--orange-200)!important}.focus\\:bg-orange-300:focus{background-color:var(--orange-300)!important}.focus\\:bg-orange-400:focus{background-color:var(--orange-400)!important}.focus\\:bg-orange-500:focus{background-color:var(--orange-500)!important}.focus\\:bg-orange-600:focus{background-color:var(--orange-600)!important}.focus\\:bg-orange-700:focus{background-color:var(--orange-700)!important}.focus\\:bg-orange-800:focus{background-color:var(--orange-800)!important}.focus\\:bg-orange-900:focus{background-color:var(--orange-900)!important}.hover\\:bg-orange-50:hover{background-color:var(--orange-50)!important}.hover\\:bg-orange-100:hover{background-color:var(--orange-100)!important}.hover\\:bg-orange-200:hover{background-color:var(--orange-200)!important}.hover\\:bg-orange-300:hover{background-color:var(--orange-300)!important}.hover\\:bg-orange-400:hover{background-color:var(--orange-400)!important}.hover\\:bg-orange-500:hover{background-color:var(--orange-500)!important}.hover\\:bg-orange-600:hover{background-color:var(--orange-600)!important}.hover\\:bg-orange-700:hover{background-color:var(--orange-700)!important}.hover\\:bg-orange-800:hover{background-color:var(--orange-800)!important}.hover\\:bg-orange-900:hover{background-color:var(--orange-900)!important}.active\\:bg-orange-50:active{background-color:var(--orange-50)!important}.active\\:bg-orange-100:active{background-color:var(--orange-100)!important}.active\\:bg-orange-200:active{background-color:var(--orange-200)!important}.active\\:bg-orange-300:active{background-color:var(--orange-300)!important}.active\\:bg-orange-400:active{background-color:var(--orange-400)!important}.active\\:bg-orange-500:active{background-color:var(--orange-500)!important}.active\\:bg-orange-600:active{background-color:var(--orange-600)!important}.active\\:bg-orange-700:active{background-color:var(--orange-700)!important}.active\\:bg-orange-800:active{background-color:var(--orange-800)!important}.active\\:bg-orange-900:active{background-color:var(--orange-900)!important}.bg-bluegray-50{background-color:var(--bluegray-50)!important}.bg-bluegray-100{background-color:var(--bluegray-100)!important}.bg-bluegray-200{background-color:var(--bluegray-200)!important}.bg-bluegray-300{background-color:var(--bluegray-300)!important}.bg-bluegray-400{background-color:var(--bluegray-400)!important}.bg-bluegray-500{background-color:var(--bluegray-500)!important}.bg-bluegray-600{background-color:var(--bluegray-600)!important}.bg-bluegray-700{background-color:var(--bluegray-700)!important}.bg-bluegray-800{background-color:var(--bluegray-800)!important}.bg-bluegray-900{background-color:var(--bluegray-900)!important}.focus\\:bg-bluegray-50:focus{background-color:var(--bluegray-50)!important}.focus\\:bg-bluegray-100:focus{background-color:var(--bluegray-100)!important}.focus\\:bg-bluegray-200:focus{background-color:var(--bluegray-200)!important}.focus\\:bg-bluegray-300:focus{background-color:var(--bluegray-300)!important}.focus\\:bg-bluegray-400:focus{background-color:var(--bluegray-400)!important}.focus\\:bg-bluegray-500:focus{background-color:var(--bluegray-500)!important}.focus\\:bg-bluegray-600:focus{background-color:var(--bluegray-600)!important}.focus\\:bg-bluegray-700:focus{background-color:var(--bluegray-700)!important}.focus\\:bg-bluegray-800:focus{background-color:var(--bluegray-800)!important}.focus\\:bg-bluegray-900:focus{background-color:var(--bluegray-900)!important}.hover\\:bg-bluegray-50:hover{background-color:var(--bluegray-50)!important}.hover\\:bg-bluegray-100:hover{background-color:var(--bluegray-100)!important}.hover\\:bg-bluegray-200:hover{background-color:var(--bluegray-200)!important}.hover\\:bg-bluegray-300:hover{background-color:var(--bluegray-300)!important}.hover\\:bg-bluegray-400:hover{background-color:var(--bluegray-400)!important}.hover\\:bg-bluegray-500:hover{background-color:var(--bluegray-500)!important}.hover\\:bg-bluegray-600:hover{background-color:var(--bluegray-600)!important}.hover\\:bg-bluegray-700:hover{background-color:var(--bluegray-700)!important}.hover\\:bg-bluegray-800:hover{background-color:var(--bluegray-800)!important}.hover\\:bg-bluegray-900:hover{background-color:var(--bluegray-900)!important}.active\\:bg-bluegray-50:active{background-color:var(--bluegray-50)!important}.active\\:bg-bluegray-100:active{background-color:var(--bluegray-100)!important}.active\\:bg-bluegray-200:active{background-color:var(--bluegray-200)!important}.active\\:bg-bluegray-300:active{background-color:var(--bluegray-300)!important}.active\\:bg-bluegray-400:active{background-color:var(--bluegray-400)!important}.active\\:bg-bluegray-500:active{background-color:var(--bluegray-500)!important}.active\\:bg-bluegray-600:active{background-color:var(--bluegray-600)!important}.active\\:bg-bluegray-700:active{background-color:var(--bluegray-700)!important}.active\\:bg-bluegray-800:active{background-color:var(--bluegray-800)!important}.active\\:bg-bluegray-900:active{background-color:var(--bluegray-900)!important}.bg-purple-50{background-color:var(--purple-50)!important}.bg-purple-100{background-color:var(--purple-100)!important}.bg-purple-200{background-color:var(--purple-200)!important}.bg-purple-300{background-color:var(--purple-300)!important}.bg-purple-400{background-color:var(--purple-400)!important}.bg-purple-500{background-color:var(--purple-500)!important}.bg-purple-600{background-color:var(--purple-600)!important}.bg-purple-700{background-color:var(--purple-700)!important}.bg-purple-800{background-color:var(--purple-800)!important}.bg-purple-900{background-color:var(--purple-900)!important}.focus\\:bg-purple-50:focus{background-color:var(--purple-50)!important}.focus\\:bg-purple-100:focus{background-color:var(--purple-100)!important}.focus\\:bg-purple-200:focus{background-color:var(--purple-200)!important}.focus\\:bg-purple-300:focus{background-color:var(--purple-300)!important}.focus\\:bg-purple-400:focus{background-color:var(--purple-400)!important}.focus\\:bg-purple-500:focus{background-color:var(--purple-500)!important}.focus\\:bg-purple-600:focus{background-color:var(--purple-600)!important}.focus\\:bg-purple-700:focus{background-color:var(--purple-700)!important}.focus\\:bg-purple-800:focus{background-color:var(--purple-800)!important}.focus\\:bg-purple-900:focus{background-color:var(--purple-900)!important}.hover\\:bg-purple-50:hover{background-color:var(--purple-50)!important}.hover\\:bg-purple-100:hover{background-color:var(--purple-100)!important}.hover\\:bg-purple-200:hover{background-color:var(--purple-200)!important}.hover\\:bg-purple-300:hover{background-color:var(--purple-300)!important}.hover\\:bg-purple-400:hover{background-color:var(--purple-400)!important}.hover\\:bg-purple-500:hover{background-color:var(--purple-500)!important}.hover\\:bg-purple-600:hover{background-color:var(--purple-600)!important}.hover\\:bg-purple-700:hover{background-color:var(--purple-700)!important}.hover\\:bg-purple-800:hover{background-color:var(--purple-800)!important}.hover\\:bg-purple-900:hover{background-color:var(--purple-900)!important}.active\\:bg-purple-50:active{background-color:var(--purple-50)!important}.active\\:bg-purple-100:active{background-color:var(--purple-100)!important}.active\\:bg-purple-200:active{background-color:var(--purple-200)!important}.active\\:bg-purple-300:active{background-color:var(--purple-300)!important}.active\\:bg-purple-400:active{background-color:var(--purple-400)!important}.active\\:bg-purple-500:active{background-color:var(--purple-500)!important}.active\\:bg-purple-600:active{background-color:var(--purple-600)!important}.active\\:bg-purple-700:active{background-color:var(--purple-700)!important}.active\\:bg-purple-800:active{background-color:var(--purple-800)!important}.active\\:bg-purple-900:active{background-color:var(--purple-900)!important}.bg-gray-50{background-color:var(--gray-50)!important}.bg-gray-100{background-color:var(--gray-100)!important}.bg-gray-200{background-color:var(--gray-200)!important}.bg-gray-300{background-color:var(--gray-300)!important}.bg-gray-400{background-color:var(--gray-400)!important}.bg-gray-500{background-color:var(--gray-500)!important}.bg-gray-600{background-color:var(--gray-600)!important}.bg-gray-700{background-color:var(--gray-700)!important}.bg-gray-800{background-color:var(--gray-800)!important}.bg-gray-900{background-color:var(--gray-900)!important}.focus\\:bg-gray-50:focus{background-color:var(--gray-50)!important}.focus\\:bg-gray-100:focus{background-color:var(--gray-100)!important}.focus\\:bg-gray-200:focus{background-color:var(--gray-200)!important}.focus\\:bg-gray-300:focus{background-color:var(--gray-300)!important}.focus\\:bg-gray-400:focus{background-color:var(--gray-400)!important}.focus\\:bg-gray-500:focus{background-color:var(--gray-500)!important}.focus\\:bg-gray-600:focus{background-color:var(--gray-600)!important}.focus\\:bg-gray-700:focus{background-color:var(--gray-700)!important}.focus\\:bg-gray-800:focus{background-color:var(--gray-800)!important}.focus\\:bg-gray-900:focus{background-color:var(--gray-900)!important}.hover\\:bg-gray-50:hover{background-color:var(--gray-50)!important}.hover\\:bg-gray-100:hover{background-color:var(--gray-100)!important}.hover\\:bg-gray-200:hover{background-color:var(--gray-200)!important}.hover\\:bg-gray-300:hover{background-color:var(--gray-300)!important}.hover\\:bg-gray-400:hover{background-color:var(--gray-400)!important}.hover\\:bg-gray-500:hover{background-color:var(--gray-500)!important}.hover\\:bg-gray-600:hover{background-color:var(--gray-600)!important}.hover\\:bg-gray-700:hover{background-color:var(--gray-700)!important}.hover\\:bg-gray-800:hover{background-color:var(--gray-800)!important}.hover\\:bg-gray-900:hover{background-color:var(--gray-900)!important}.active\\:bg-gray-50:active{background-color:var(--gray-50)!important}.active\\:bg-gray-100:active{background-color:var(--gray-100)!important}.active\\:bg-gray-200:active{background-color:var(--gray-200)!important}.active\\:bg-gray-300:active{background-color:var(--gray-300)!important}.active\\:bg-gray-400:active{background-color:var(--gray-400)!important}.active\\:bg-gray-500:active{background-color:var(--gray-500)!important}.active\\:bg-gray-600:active{background-color:var(--gray-600)!important}.active\\:bg-gray-700:active{background-color:var(--gray-700)!important}.active\\:bg-gray-800:active{background-color:var(--gray-800)!important}.active\\:bg-gray-900:active{background-color:var(--gray-900)!important}.bg-red-50{background-color:var(--red-50)!important}.bg-red-100{background-color:var(--red-100)!important}.bg-red-200{background-color:var(--red-200)!important}.bg-red-300{background-color:var(--red-300)!important}.bg-red-400{background-color:var(--red-400)!important}.bg-red-500{background-color:var(--red-500)!important}.bg-red-600{background-color:var(--red-600)!important}.bg-red-700{background-color:var(--red-700)!important}.bg-red-800{background-color:var(--red-800)!important}.bg-red-900{background-color:var(--red-900)!important}.focus\\:bg-red-50:focus{background-color:var(--red-50)!important}.focus\\:bg-red-100:focus{background-color:var(--red-100)!important}.focus\\:bg-red-200:focus{background-color:var(--red-200)!important}.focus\\:bg-red-300:focus{background-color:var(--red-300)!important}.focus\\:bg-red-400:focus{background-color:var(--red-400)!important}.focus\\:bg-red-500:focus{background-color:var(--red-500)!important}.focus\\:bg-red-600:focus{background-color:var(--red-600)!important}.focus\\:bg-red-700:focus{background-color:var(--red-700)!important}.focus\\:bg-red-800:focus{background-color:var(--red-800)!important}.focus\\:bg-red-900:focus{background-color:var(--red-900)!important}.hover\\:bg-red-50:hover{background-color:var(--red-50)!important}.hover\\:bg-red-100:hover{background-color:var(--red-100)!important}.hover\\:bg-red-200:hover{background-color:var(--red-200)!important}.hover\\:bg-red-300:hover{background-color:var(--red-300)!important}.hover\\:bg-red-400:hover{background-color:var(--red-400)!important}.hover\\:bg-red-500:hover{background-color:var(--red-500)!important}.hover\\:bg-red-600:hover{background-color:var(--red-600)!important}.hover\\:bg-red-700:hover{background-color:var(--red-700)!important}.hover\\:bg-red-800:hover{background-color:var(--red-800)!important}.hover\\:bg-red-900:hover{background-color:var(--red-900)!important}.active\\:bg-red-50:active{background-color:var(--red-50)!important}.active\\:bg-red-100:active{background-color:var(--red-100)!important}.active\\:bg-red-200:active{background-color:var(--red-200)!important}.active\\:bg-red-300:active{background-color:var(--red-300)!important}.active\\:bg-red-400:active{background-color:var(--red-400)!important}.active\\:bg-red-500:active{background-color:var(--red-500)!important}.active\\:bg-red-600:active{background-color:var(--red-600)!important}.active\\:bg-red-700:active{background-color:var(--red-700)!important}.active\\:bg-red-800:active{background-color:var(--red-800)!important}.active\\:bg-red-900:active{background-color:var(--red-900)!important}.bg-primary-50{background-color:var(--primary-50)!important}.bg-primary-100{background-color:var(--primary-100)!important}.bg-primary-200{background-color:var(--primary-200)!important}.bg-primary-300{background-color:var(--primary-300)!important}.bg-primary-400{background-color:var(--primary-400)!important}.bg-primary-500{background-color:var(--primary-500)!important}.bg-primary-600{background-color:var(--primary-600)!important}.bg-primary-700{background-color:var(--primary-700)!important}.bg-primary-800{background-color:var(--primary-800)!important}.bg-primary-900{background-color:var(--primary-900)!important}.focus\\:bg-primary-50:focus{background-color:var(--primary-50)!important}.focus\\:bg-primary-100:focus{background-color:var(--primary-100)!important}.focus\\:bg-primary-200:focus{background-color:var(--primary-200)!important}.focus\\:bg-primary-300:focus{background-color:var(--primary-300)!important}.focus\\:bg-primary-400:focus{background-color:var(--primary-400)!important}.focus\\:bg-primary-500:focus{background-color:var(--primary-500)!important}.focus\\:bg-primary-600:focus{background-color:var(--primary-600)!important}.focus\\:bg-primary-700:focus{background-color:var(--primary-700)!important}.focus\\:bg-primary-800:focus{background-color:var(--primary-800)!important}.focus\\:bg-primary-900:focus{background-color:var(--primary-900)!important}.hover\\:bg-primary-50:hover{background-color:var(--primary-50)!important}.hover\\:bg-primary-100:hover{background-color:var(--primary-100)!important}.hover\\:bg-primary-200:hover{background-color:var(--primary-200)!important}.hover\\:bg-primary-300:hover{background-color:var(--primary-300)!important}.hover\\:bg-primary-400:hover{background-color:var(--primary-400)!important}.hover\\:bg-primary-500:hover{background-color:var(--primary-500)!important}.hover\\:bg-primary-600:hover{background-color:var(--primary-600)!important}.hover\\:bg-primary-700:hover{background-color:var(--primary-700)!important}.hover\\:bg-primary-800:hover{background-color:var(--primary-800)!important}.hover\\:bg-primary-900:hover{background-color:var(--primary-900)!important}.active\\:bg-primary-50:active{background-color:var(--primary-50)!important}.active\\:bg-primary-100:active{background-color:var(--primary-100)!important}.active\\:bg-primary-200:active{background-color:var(--primary-200)!important}.active\\:bg-primary-300:active{background-color:var(--primary-300)!important}.active\\:bg-primary-400:active{background-color:var(--primary-400)!important}.active\\:bg-primary-500:active{background-color:var(--primary-500)!important}.active\\:bg-primary-600:active{background-color:var(--primary-600)!important}.active\\:bg-primary-700:active{background-color:var(--primary-700)!important}.active\\:bg-primary-800:active{background-color:var(--primary-800)!important}.active\\:bg-primary-900:active{background-color:var(--primary-900)!important}.border-blue-50{border-color:var(--blue-50)!important}.border-blue-100{border-color:var(--blue-100)!important}.border-blue-200{border-color:var(--blue-200)!important}.border-blue-300{border-color:var(--blue-300)!important}.border-blue-400{border-color:var(--blue-400)!important}.border-blue-500{border-color:var(--blue-500)!important}.border-blue-600{border-color:var(--blue-600)!important}.border-blue-700{border-color:var(--blue-700)!important}.border-blue-800{border-color:var(--blue-800)!important}.border-blue-900{border-color:var(--blue-900)!important}.focus\\:border-blue-50:focus{border-color:var(--blue-50)!important}.focus\\:border-blue-100:focus{border-color:var(--blue-100)!important}.focus\\:border-blue-200:focus{border-color:var(--blue-200)!important}.focus\\:border-blue-300:focus{border-color:var(--blue-300)!important}.focus\\:border-blue-400:focus{border-color:var(--blue-400)!important}.focus\\:border-blue-500:focus{border-color:var(--blue-500)!important}.focus\\:border-blue-600:focus{border-color:var(--blue-600)!important}.focus\\:border-blue-700:focus{border-color:var(--blue-700)!important}.focus\\:border-blue-800:focus{border-color:var(--blue-800)!important}.focus\\:border-blue-900:focus{border-color:var(--blue-900)!important}.hover\\:border-blue-50:hover{border-color:var(--blue-50)!important}.hover\\:border-blue-100:hover{border-color:var(--blue-100)!important}.hover\\:border-blue-200:hover{border-color:var(--blue-200)!important}.hover\\:border-blue-300:hover{border-color:var(--blue-300)!important}.hover\\:border-blue-400:hover{border-color:var(--blue-400)!important}.hover\\:border-blue-500:hover{border-color:var(--blue-500)!important}.hover\\:border-blue-600:hover{border-color:var(--blue-600)!important}.hover\\:border-blue-700:hover{border-color:var(--blue-700)!important}.hover\\:border-blue-800:hover{border-color:var(--blue-800)!important}.hover\\:border-blue-900:hover{border-color:var(--blue-900)!important}.active\\:border-blue-50:active{border-color:var(--blue-50)!important}.active\\:border-blue-100:active{border-color:var(--blue-100)!important}.active\\:border-blue-200:active{border-color:var(--blue-200)!important}.active\\:border-blue-300:active{border-color:var(--blue-300)!important}.active\\:border-blue-400:active{border-color:var(--blue-400)!important}.active\\:border-blue-500:active{border-color:var(--blue-500)!important}.active\\:border-blue-600:active{border-color:var(--blue-600)!important}.active\\:border-blue-700:active{border-color:var(--blue-700)!important}.active\\:border-blue-800:active{border-color:var(--blue-800)!important}.active\\:border-blue-900:active{border-color:var(--blue-900)!important}.border-green-50{border-color:var(--green-50)!important}.border-green-100{border-color:var(--green-100)!important}.border-green-200{border-color:var(--green-200)!important}.border-green-300{border-color:var(--green-300)!important}.border-green-400{border-color:var(--green-400)!important}.border-green-500{border-color:var(--green-500)!important}.border-green-600{border-color:var(--green-600)!important}.border-green-700{border-color:var(--green-700)!important}.border-green-800{border-color:var(--green-800)!important}.border-green-900{border-color:var(--green-900)!important}.focus\\:border-green-50:focus{border-color:var(--green-50)!important}.focus\\:border-green-100:focus{border-color:var(--green-100)!important}.focus\\:border-green-200:focus{border-color:var(--green-200)!important}.focus\\:border-green-300:focus{border-color:var(--green-300)!important}.focus\\:border-green-400:focus{border-color:var(--green-400)!important}.focus\\:border-green-500:focus{border-color:var(--green-500)!important}.focus\\:border-green-600:focus{border-color:var(--green-600)!important}.focus\\:border-green-700:focus{border-color:var(--green-700)!important}.focus\\:border-green-800:focus{border-color:var(--green-800)!important}.focus\\:border-green-900:focus{border-color:var(--green-900)!important}.hover\\:border-green-50:hover{border-color:var(--green-50)!important}.hover\\:border-green-100:hover{border-color:var(--green-100)!important}.hover\\:border-green-200:hover{border-color:var(--green-200)!important}.hover\\:border-green-300:hover{border-color:var(--green-300)!important}.hover\\:border-green-400:hover{border-color:var(--green-400)!important}.hover\\:border-green-500:hover{border-color:var(--green-500)!important}.hover\\:border-green-600:hover{border-color:var(--green-600)!important}.hover\\:border-green-700:hover{border-color:var(--green-700)!important}.hover\\:border-green-800:hover{border-color:var(--green-800)!important}.hover\\:border-green-900:hover{border-color:var(--green-900)!important}.active\\:border-green-50:active{border-color:var(--green-50)!important}.active\\:border-green-100:active{border-color:var(--green-100)!important}.active\\:border-green-200:active{border-color:var(--green-200)!important}.active\\:border-green-300:active{border-color:var(--green-300)!important}.active\\:border-green-400:active{border-color:var(--green-400)!important}.active\\:border-green-500:active{border-color:var(--green-500)!important}.active\\:border-green-600:active{border-color:var(--green-600)!important}.active\\:border-green-700:active{border-color:var(--green-700)!important}.active\\:border-green-800:active{border-color:var(--green-800)!important}.active\\:border-green-900:active{border-color:var(--green-900)!important}.border-yellow-50{border-color:var(--yellow-50)!important}.border-yellow-100{border-color:var(--yellow-100)!important}.border-yellow-200{border-color:var(--yellow-200)!important}.border-yellow-300{border-color:var(--yellow-300)!important}.border-yellow-400{border-color:var(--yellow-400)!important}.border-yellow-500{border-color:var(--yellow-500)!important}.border-yellow-600{border-color:var(--yellow-600)!important}.border-yellow-700{border-color:var(--yellow-700)!important}.border-yellow-800{border-color:var(--yellow-800)!important}.border-yellow-900{border-color:var(--yellow-900)!important}.focus\\:border-yellow-50:focus{border-color:var(--yellow-50)!important}.focus\\:border-yellow-100:focus{border-color:var(--yellow-100)!important}.focus\\:border-yellow-200:focus{border-color:var(--yellow-200)!important}.focus\\:border-yellow-300:focus{border-color:var(--yellow-300)!important}.focus\\:border-yellow-400:focus{border-color:var(--yellow-400)!important}.focus\\:border-yellow-500:focus{border-color:var(--yellow-500)!important}.focus\\:border-yellow-600:focus{border-color:var(--yellow-600)!important}.focus\\:border-yellow-700:focus{border-color:var(--yellow-700)!important}.focus\\:border-yellow-800:focus{border-color:var(--yellow-800)!important}.focus\\:border-yellow-900:focus{border-color:var(--yellow-900)!important}.hover\\:border-yellow-50:hover{border-color:var(--yellow-50)!important}.hover\\:border-yellow-100:hover{border-color:var(--yellow-100)!important}.hover\\:border-yellow-200:hover{border-color:var(--yellow-200)!important}.hover\\:border-yellow-300:hover{border-color:var(--yellow-300)!important}.hover\\:border-yellow-400:hover{border-color:var(--yellow-400)!important}.hover\\:border-yellow-500:hover{border-color:var(--yellow-500)!important}.hover\\:border-yellow-600:hover{border-color:var(--yellow-600)!important}.hover\\:border-yellow-700:hover{border-color:var(--yellow-700)!important}.hover\\:border-yellow-800:hover{border-color:var(--yellow-800)!important}.hover\\:border-yellow-900:hover{border-color:var(--yellow-900)!important}.active\\:border-yellow-50:active{border-color:var(--yellow-50)!important}.active\\:border-yellow-100:active{border-color:var(--yellow-100)!important}.active\\:border-yellow-200:active{border-color:var(--yellow-200)!important}.active\\:border-yellow-300:active{border-color:var(--yellow-300)!important}.active\\:border-yellow-400:active{border-color:var(--yellow-400)!important}.active\\:border-yellow-500:active{border-color:var(--yellow-500)!important}.active\\:border-yellow-600:active{border-color:var(--yellow-600)!important}.active\\:border-yellow-700:active{border-color:var(--yellow-700)!important}.active\\:border-yellow-800:active{border-color:var(--yellow-800)!important}.active\\:border-yellow-900:active{border-color:var(--yellow-900)!important}.border-cyan-50{border-color:var(--cyan-50)!important}.border-cyan-100{border-color:var(--cyan-100)!important}.border-cyan-200{border-color:var(--cyan-200)!important}.border-cyan-300{border-color:var(--cyan-300)!important}.border-cyan-400{border-color:var(--cyan-400)!important}.border-cyan-500{border-color:var(--cyan-500)!important}.border-cyan-600{border-color:var(--cyan-600)!important}.border-cyan-700{border-color:var(--cyan-700)!important}.border-cyan-800{border-color:var(--cyan-800)!important}.border-cyan-900{border-color:var(--cyan-900)!important}.focus\\:border-cyan-50:focus{border-color:var(--cyan-50)!important}.focus\\:border-cyan-100:focus{border-color:var(--cyan-100)!important}.focus\\:border-cyan-200:focus{border-color:var(--cyan-200)!important}.focus\\:border-cyan-300:focus{border-color:var(--cyan-300)!important}.focus\\:border-cyan-400:focus{border-color:var(--cyan-400)!important}.focus\\:border-cyan-500:focus{border-color:var(--cyan-500)!important}.focus\\:border-cyan-600:focus{border-color:var(--cyan-600)!important}.focus\\:border-cyan-700:focus{border-color:var(--cyan-700)!important}.focus\\:border-cyan-800:focus{border-color:var(--cyan-800)!important}.focus\\:border-cyan-900:focus{border-color:var(--cyan-900)!important}.hover\\:border-cyan-50:hover{border-color:var(--cyan-50)!important}.hover\\:border-cyan-100:hover{border-color:var(--cyan-100)!important}.hover\\:border-cyan-200:hover{border-color:var(--cyan-200)!important}.hover\\:border-cyan-300:hover{border-color:var(--cyan-300)!important}.hover\\:border-cyan-400:hover{border-color:var(--cyan-400)!important}.hover\\:border-cyan-500:hover{border-color:var(--cyan-500)!important}.hover\\:border-cyan-600:hover{border-color:var(--cyan-600)!important}.hover\\:border-cyan-700:hover{border-color:var(--cyan-700)!important}.hover\\:border-cyan-800:hover{border-color:var(--cyan-800)!important}.hover\\:border-cyan-900:hover{border-color:var(--cyan-900)!important}.active\\:border-cyan-50:active{border-color:var(--cyan-50)!important}.active\\:border-cyan-100:active{border-color:var(--cyan-100)!important}.active\\:border-cyan-200:active{border-color:var(--cyan-200)!important}.active\\:border-cyan-300:active{border-color:var(--cyan-300)!important}.active\\:border-cyan-400:active{border-color:var(--cyan-400)!important}.active\\:border-cyan-500:active{border-color:var(--cyan-500)!important}.active\\:border-cyan-600:active{border-color:var(--cyan-600)!important}.active\\:border-cyan-700:active{border-color:var(--cyan-700)!important}.active\\:border-cyan-800:active{border-color:var(--cyan-800)!important}.active\\:border-cyan-900:active{border-color:var(--cyan-900)!important}.border-pink-50{border-color:var(--pink-50)!important}.border-pink-100{border-color:var(--pink-100)!important}.border-pink-200{border-color:var(--pink-200)!important}.border-pink-300{border-color:var(--pink-300)!important}.border-pink-400{border-color:var(--pink-400)!important}.border-pink-500{border-color:var(--pink-500)!important}.border-pink-600{border-color:var(--pink-600)!important}.border-pink-700{border-color:var(--pink-700)!important}.border-pink-800{border-color:var(--pink-800)!important}.border-pink-900{border-color:var(--pink-900)!important}.focus\\:border-pink-50:focus{border-color:var(--pink-50)!important}.focus\\:border-pink-100:focus{border-color:var(--pink-100)!important}.focus\\:border-pink-200:focus{border-color:var(--pink-200)!important}.focus\\:border-pink-300:focus{border-color:var(--pink-300)!important}.focus\\:border-pink-400:focus{border-color:var(--pink-400)!important}.focus\\:border-pink-500:focus{border-color:var(--pink-500)!important}.focus\\:border-pink-600:focus{border-color:var(--pink-600)!important}.focus\\:border-pink-700:focus{border-color:var(--pink-700)!important}.focus\\:border-pink-800:focus{border-color:var(--pink-800)!important}.focus\\:border-pink-900:focus{border-color:var(--pink-900)!important}.hover\\:border-pink-50:hover{border-color:var(--pink-50)!important}.hover\\:border-pink-100:hover{border-color:var(--pink-100)!important}.hover\\:border-pink-200:hover{border-color:var(--pink-200)!important}.hover\\:border-pink-300:hover{border-color:var(--pink-300)!important}.hover\\:border-pink-400:hover{border-color:var(--pink-400)!important}.hover\\:border-pink-500:hover{border-color:var(--pink-500)!important}.hover\\:border-pink-600:hover{border-color:var(--pink-600)!important}.hover\\:border-pink-700:hover{border-color:var(--pink-700)!important}.hover\\:border-pink-800:hover{border-color:var(--pink-800)!important}.hover\\:border-pink-900:hover{border-color:var(--pink-900)!important}.active\\:border-pink-50:active{border-color:var(--pink-50)!important}.active\\:border-pink-100:active{border-color:var(--pink-100)!important}.active\\:border-pink-200:active{border-color:var(--pink-200)!important}.active\\:border-pink-300:active{border-color:var(--pink-300)!important}.active\\:border-pink-400:active{border-color:var(--pink-400)!important}.active\\:border-pink-500:active{border-color:var(--pink-500)!important}.active\\:border-pink-600:active{border-color:var(--pink-600)!important}.active\\:border-pink-700:active{border-color:var(--pink-700)!important}.active\\:border-pink-800:active{border-color:var(--pink-800)!important}.active\\:border-pink-900:active{border-color:var(--pink-900)!important}.border-indigo-50{border-color:var(--indigo-50)!important}.border-indigo-100{border-color:var(--indigo-100)!important}.border-indigo-200{border-color:var(--indigo-200)!important}.border-indigo-300{border-color:var(--indigo-300)!important}.border-indigo-400{border-color:var(--indigo-400)!important}.border-indigo-500{border-color:var(--indigo-500)!important}.border-indigo-600{border-color:var(--indigo-600)!important}.border-indigo-700{border-color:var(--indigo-700)!important}.border-indigo-800{border-color:var(--indigo-800)!important}.border-indigo-900{border-color:var(--indigo-900)!important}.focus\\:border-indigo-50:focus{border-color:var(--indigo-50)!important}.focus\\:border-indigo-100:focus{border-color:var(--indigo-100)!important}.focus\\:border-indigo-200:focus{border-color:var(--indigo-200)!important}.focus\\:border-indigo-300:focus{border-color:var(--indigo-300)!important}.focus\\:border-indigo-400:focus{border-color:var(--indigo-400)!important}.focus\\:border-indigo-500:focus{border-color:var(--indigo-500)!important}.focus\\:border-indigo-600:focus{border-color:var(--indigo-600)!important}.focus\\:border-indigo-700:focus{border-color:var(--indigo-700)!important}.focus\\:border-indigo-800:focus{border-color:var(--indigo-800)!important}.focus\\:border-indigo-900:focus{border-color:var(--indigo-900)!important}.hover\\:border-indigo-50:hover{border-color:var(--indigo-50)!important}.hover\\:border-indigo-100:hover{border-color:var(--indigo-100)!important}.hover\\:border-indigo-200:hover{border-color:var(--indigo-200)!important}.hover\\:border-indigo-300:hover{border-color:var(--indigo-300)!important}.hover\\:border-indigo-400:hover{border-color:var(--indigo-400)!important}.hover\\:border-indigo-500:hover{border-color:var(--indigo-500)!important}.hover\\:border-indigo-600:hover{border-color:var(--indigo-600)!important}.hover\\:border-indigo-700:hover{border-color:var(--indigo-700)!important}.hover\\:border-indigo-800:hover{border-color:var(--indigo-800)!important}.hover\\:border-indigo-900:hover{border-color:var(--indigo-900)!important}.active\\:border-indigo-50:active{border-color:var(--indigo-50)!important}.active\\:border-indigo-100:active{border-color:var(--indigo-100)!important}.active\\:border-indigo-200:active{border-color:var(--indigo-200)!important}.active\\:border-indigo-300:active{border-color:var(--indigo-300)!important}.active\\:border-indigo-400:active{border-color:var(--indigo-400)!important}.active\\:border-indigo-500:active{border-color:var(--indigo-500)!important}.active\\:border-indigo-600:active{border-color:var(--indigo-600)!important}.active\\:border-indigo-700:active{border-color:var(--indigo-700)!important}.active\\:border-indigo-800:active{border-color:var(--indigo-800)!important}.active\\:border-indigo-900:active{border-color:var(--indigo-900)!important}.border-teal-50{border-color:var(--teal-50)!important}.border-teal-100{border-color:var(--teal-100)!important}.border-teal-200{border-color:var(--teal-200)!important}.border-teal-300{border-color:var(--teal-300)!important}.border-teal-400{border-color:var(--teal-400)!important}.border-teal-500{border-color:var(--teal-500)!important}.border-teal-600{border-color:var(--teal-600)!important}.border-teal-700{border-color:var(--teal-700)!important}.border-teal-800{border-color:var(--teal-800)!important}.border-teal-900{border-color:var(--teal-900)!important}.focus\\:border-teal-50:focus{border-color:var(--teal-50)!important}.focus\\:border-teal-100:focus{border-color:var(--teal-100)!important}.focus\\:border-teal-200:focus{border-color:var(--teal-200)!important}.focus\\:border-teal-300:focus{border-color:var(--teal-300)!important}.focus\\:border-teal-400:focus{border-color:var(--teal-400)!important}.focus\\:border-teal-500:focus{border-color:var(--teal-500)!important}.focus\\:border-teal-600:focus{border-color:var(--teal-600)!important}.focus\\:border-teal-700:focus{border-color:var(--teal-700)!important}.focus\\:border-teal-800:focus{border-color:var(--teal-800)!important}.focus\\:border-teal-900:focus{border-color:var(--teal-900)!important}.hover\\:border-teal-50:hover{border-color:var(--teal-50)!important}.hover\\:border-teal-100:hover{border-color:var(--teal-100)!important}.hover\\:border-teal-200:hover{border-color:var(--teal-200)!important}.hover\\:border-teal-300:hover{border-color:var(--teal-300)!important}.hover\\:border-teal-400:hover{border-color:var(--teal-400)!important}.hover\\:border-teal-500:hover{border-color:var(--teal-500)!important}.hover\\:border-teal-600:hover{border-color:var(--teal-600)!important}.hover\\:border-teal-700:hover{border-color:var(--teal-700)!important}.hover\\:border-teal-800:hover{border-color:var(--teal-800)!important}.hover\\:border-teal-900:hover{border-color:var(--teal-900)!important}.active\\:border-teal-50:active{border-color:var(--teal-50)!important}.active\\:border-teal-100:active{border-color:var(--teal-100)!important}.active\\:border-teal-200:active{border-color:var(--teal-200)!important}.active\\:border-teal-300:active{border-color:var(--teal-300)!important}.active\\:border-teal-400:active{border-color:var(--teal-400)!important}.active\\:border-teal-500:active{border-color:var(--teal-500)!important}.active\\:border-teal-600:active{border-color:var(--teal-600)!important}.active\\:border-teal-700:active{border-color:var(--teal-700)!important}.active\\:border-teal-800:active{border-color:var(--teal-800)!important}.active\\:border-teal-900:active{border-color:var(--teal-900)!important}.border-orange-50{border-color:var(--orange-50)!important}.border-orange-100{border-color:var(--orange-100)!important}.border-orange-200{border-color:var(--orange-200)!important}.border-orange-300{border-color:var(--orange-300)!important}.border-orange-400{border-color:var(--orange-400)!important}.border-orange-500{border-color:var(--orange-500)!important}.border-orange-600{border-color:var(--orange-600)!important}.border-orange-700{border-color:var(--orange-700)!important}.border-orange-800{border-color:var(--orange-800)!important}.border-orange-900{border-color:var(--orange-900)!important}.focus\\:border-orange-50:focus{border-color:var(--orange-50)!important}.focus\\:border-orange-100:focus{border-color:var(--orange-100)!important}.focus\\:border-orange-200:focus{border-color:var(--orange-200)!important}.focus\\:border-orange-300:focus{border-color:var(--orange-300)!important}.focus\\:border-orange-400:focus{border-color:var(--orange-400)!important}.focus\\:border-orange-500:focus{border-color:var(--orange-500)!important}.focus\\:border-orange-600:focus{border-color:var(--orange-600)!important}.focus\\:border-orange-700:focus{border-color:var(--orange-700)!important}.focus\\:border-orange-800:focus{border-color:var(--orange-800)!important}.focus\\:border-orange-900:focus{border-color:var(--orange-900)!important}.hover\\:border-orange-50:hover{border-color:var(--orange-50)!important}.hover\\:border-orange-100:hover{border-color:var(--orange-100)!important}.hover\\:border-orange-200:hover{border-color:var(--orange-200)!important}.hover\\:border-orange-300:hover{border-color:var(--orange-300)!important}.hover\\:border-orange-400:hover{border-color:var(--orange-400)!important}.hover\\:border-orange-500:hover{border-color:var(--orange-500)!important}.hover\\:border-orange-600:hover{border-color:var(--orange-600)!important}.hover\\:border-orange-700:hover{border-color:var(--orange-700)!important}.hover\\:border-orange-800:hover{border-color:var(--orange-800)!important}.hover\\:border-orange-900:hover{border-color:var(--orange-900)!important}.active\\:border-orange-50:active{border-color:var(--orange-50)!important}.active\\:border-orange-100:active{border-color:var(--orange-100)!important}.active\\:border-orange-200:active{border-color:var(--orange-200)!important}.active\\:border-orange-300:active{border-color:var(--orange-300)!important}.active\\:border-orange-400:active{border-color:var(--orange-400)!important}.active\\:border-orange-500:active{border-color:var(--orange-500)!important}.active\\:border-orange-600:active{border-color:var(--orange-600)!important}.active\\:border-orange-700:active{border-color:var(--orange-700)!important}.active\\:border-orange-800:active{border-color:var(--orange-800)!important}.active\\:border-orange-900:active{border-color:var(--orange-900)!important}.border-bluegray-50{border-color:var(--bluegray-50)!important}.border-bluegray-100{border-color:var(--bluegray-100)!important}.border-bluegray-200{border-color:var(--bluegray-200)!important}.border-bluegray-300{border-color:var(--bluegray-300)!important}.border-bluegray-400{border-color:var(--bluegray-400)!important}.border-bluegray-500{border-color:var(--bluegray-500)!important}.border-bluegray-600{border-color:var(--bluegray-600)!important}.border-bluegray-700{border-color:var(--bluegray-700)!important}.border-bluegray-800{border-color:var(--bluegray-800)!important}.border-bluegray-900{border-color:var(--bluegray-900)!important}.focus\\:border-bluegray-50:focus{border-color:var(--bluegray-50)!important}.focus\\:border-bluegray-100:focus{border-color:var(--bluegray-100)!important}.focus\\:border-bluegray-200:focus{border-color:var(--bluegray-200)!important}.focus\\:border-bluegray-300:focus{border-color:var(--bluegray-300)!important}.focus\\:border-bluegray-400:focus{border-color:var(--bluegray-400)!important}.focus\\:border-bluegray-500:focus{border-color:var(--bluegray-500)!important}.focus\\:border-bluegray-600:focus{border-color:var(--bluegray-600)!important}.focus\\:border-bluegray-700:focus{border-color:var(--bluegray-700)!important}.focus\\:border-bluegray-800:focus{border-color:var(--bluegray-800)!important}.focus\\:border-bluegray-900:focus{border-color:var(--bluegray-900)!important}.hover\\:border-bluegray-50:hover{border-color:var(--bluegray-50)!important}.hover\\:border-bluegray-100:hover{border-color:var(--bluegray-100)!important}.hover\\:border-bluegray-200:hover{border-color:var(--bluegray-200)!important}.hover\\:border-bluegray-300:hover{border-color:var(--bluegray-300)!important}.hover\\:border-bluegray-400:hover{border-color:var(--bluegray-400)!important}.hover\\:border-bluegray-500:hover{border-color:var(--bluegray-500)!important}.hover\\:border-bluegray-600:hover{border-color:var(--bluegray-600)!important}.hover\\:border-bluegray-700:hover{border-color:var(--bluegray-700)!important}.hover\\:border-bluegray-800:hover{border-color:var(--bluegray-800)!important}.hover\\:border-bluegray-900:hover{border-color:var(--bluegray-900)!important}.active\\:border-bluegray-50:active{border-color:var(--bluegray-50)!important}.active\\:border-bluegray-100:active{border-color:var(--bluegray-100)!important}.active\\:border-bluegray-200:active{border-color:var(--bluegray-200)!important}.active\\:border-bluegray-300:active{border-color:var(--bluegray-300)!important}.active\\:border-bluegray-400:active{border-color:var(--bluegray-400)!important}.active\\:border-bluegray-500:active{border-color:var(--bluegray-500)!important}.active\\:border-bluegray-600:active{border-color:var(--bluegray-600)!important}.active\\:border-bluegray-700:active{border-color:var(--bluegray-700)!important}.active\\:border-bluegray-800:active{border-color:var(--bluegray-800)!important}.active\\:border-bluegray-900:active{border-color:var(--bluegray-900)!important}.border-purple-50{border-color:var(--purple-50)!important}.border-purple-100{border-color:var(--purple-100)!important}.border-purple-200{border-color:var(--purple-200)!important}.border-purple-300{border-color:var(--purple-300)!important}.border-purple-400{border-color:var(--purple-400)!important}.border-purple-500{border-color:var(--purple-500)!important}.border-purple-600{border-color:var(--purple-600)!important}.border-purple-700{border-color:var(--purple-700)!important}.border-purple-800{border-color:var(--purple-800)!important}.border-purple-900{border-color:var(--purple-900)!important}.focus\\:border-purple-50:focus{border-color:var(--purple-50)!important}.focus\\:border-purple-100:focus{border-color:var(--purple-100)!important}.focus\\:border-purple-200:focus{border-color:var(--purple-200)!important}.focus\\:border-purple-300:focus{border-color:var(--purple-300)!important}.focus\\:border-purple-400:focus{border-color:var(--purple-400)!important}.focus\\:border-purple-500:focus{border-color:var(--purple-500)!important}.focus\\:border-purple-600:focus{border-color:var(--purple-600)!important}.focus\\:border-purple-700:focus{border-color:var(--purple-700)!important}.focus\\:border-purple-800:focus{border-color:var(--purple-800)!important}.focus\\:border-purple-900:focus{border-color:var(--purple-900)!important}.hover\\:border-purple-50:hover{border-color:var(--purple-50)!important}.hover\\:border-purple-100:hover{border-color:var(--purple-100)!important}.hover\\:border-purple-200:hover{border-color:var(--purple-200)!important}.hover\\:border-purple-300:hover{border-color:var(--purple-300)!important}.hover\\:border-purple-400:hover{border-color:var(--purple-400)!important}.hover\\:border-purple-500:hover{border-color:var(--purple-500)!important}.hover\\:border-purple-600:hover{border-color:var(--purple-600)!important}.hover\\:border-purple-700:hover{border-color:var(--purple-700)!important}.hover\\:border-purple-800:hover{border-color:var(--purple-800)!important}.hover\\:border-purple-900:hover{border-color:var(--purple-900)!important}.active\\:border-purple-50:active{border-color:var(--purple-50)!important}.active\\:border-purple-100:active{border-color:var(--purple-100)!important}.active\\:border-purple-200:active{border-color:var(--purple-200)!important}.active\\:border-purple-300:active{border-color:var(--purple-300)!important}.active\\:border-purple-400:active{border-color:var(--purple-400)!important}.active\\:border-purple-500:active{border-color:var(--purple-500)!important}.active\\:border-purple-600:active{border-color:var(--purple-600)!important}.active\\:border-purple-700:active{border-color:var(--purple-700)!important}.active\\:border-purple-800:active{border-color:var(--purple-800)!important}.active\\:border-purple-900:active{border-color:var(--purple-900)!important}.border-gray-50{border-color:var(--gray-50)!important}.border-gray-100{border-color:var(--gray-100)!important}.border-gray-200{border-color:var(--gray-200)!important}.border-gray-300{border-color:var(--gray-300)!important}.border-gray-400{border-color:var(--gray-400)!important}.border-gray-500{border-color:var(--gray-500)!important}.border-gray-600{border-color:var(--gray-600)!important}.border-gray-700{border-color:var(--gray-700)!important}.border-gray-800{border-color:var(--gray-800)!important}.border-gray-900{border-color:var(--gray-900)!important}.focus\\:border-gray-50:focus{border-color:var(--gray-50)!important}.focus\\:border-gray-100:focus{border-color:var(--gray-100)!important}.focus\\:border-gray-200:focus{border-color:var(--gray-200)!important}.focus\\:border-gray-300:focus{border-color:var(--gray-300)!important}.focus\\:border-gray-400:focus{border-color:var(--gray-400)!important}.focus\\:border-gray-500:focus{border-color:var(--gray-500)!important}.focus\\:border-gray-600:focus{border-color:var(--gray-600)!important}.focus\\:border-gray-700:focus{border-color:var(--gray-700)!important}.focus\\:border-gray-800:focus{border-color:var(--gray-800)!important}.focus\\:border-gray-900:focus{border-color:var(--gray-900)!important}.hover\\:border-gray-50:hover{border-color:var(--gray-50)!important}.hover\\:border-gray-100:hover{border-color:var(--gray-100)!important}.hover\\:border-gray-200:hover{border-color:var(--gray-200)!important}.hover\\:border-gray-300:hover{border-color:var(--gray-300)!important}.hover\\:border-gray-400:hover{border-color:var(--gray-400)!important}.hover\\:border-gray-500:hover{border-color:var(--gray-500)!important}.hover\\:border-gray-600:hover{border-color:var(--gray-600)!important}.hover\\:border-gray-700:hover{border-color:var(--gray-700)!important}.hover\\:border-gray-800:hover{border-color:var(--gray-800)!important}.hover\\:border-gray-900:hover{border-color:var(--gray-900)!important}.active\\:border-gray-50:active{border-color:var(--gray-50)!important}.active\\:border-gray-100:active{border-color:var(--gray-100)!important}.active\\:border-gray-200:active{border-color:var(--gray-200)!important}.active\\:border-gray-300:active{border-color:var(--gray-300)!important}.active\\:border-gray-400:active{border-color:var(--gray-400)!important}.active\\:border-gray-500:active{border-color:var(--gray-500)!important}.active\\:border-gray-600:active{border-color:var(--gray-600)!important}.active\\:border-gray-700:active{border-color:var(--gray-700)!important}.active\\:border-gray-800:active{border-color:var(--gray-800)!important}.active\\:border-gray-900:active{border-color:var(--gray-900)!important}.border-red-50{border-color:var(--red-50)!important}.border-red-100{border-color:var(--red-100)!important}.border-red-200{border-color:var(--red-200)!important}.border-red-300{border-color:var(--red-300)!important}.border-red-400{border-color:var(--red-400)!important}.border-red-500{border-color:var(--red-500)!important}.border-red-600{border-color:var(--red-600)!important}.border-red-700{border-color:var(--red-700)!important}.border-red-800{border-color:var(--red-800)!important}.border-red-900{border-color:var(--red-900)!important}.focus\\:border-red-50:focus{border-color:var(--red-50)!important}.focus\\:border-red-100:focus{border-color:var(--red-100)!important}.focus\\:border-red-200:focus{border-color:var(--red-200)!important}.focus\\:border-red-300:focus{border-color:var(--red-300)!important}.focus\\:border-red-400:focus{border-color:var(--red-400)!important}.focus\\:border-red-500:focus{border-color:var(--red-500)!important}.focus\\:border-red-600:focus{border-color:var(--red-600)!important}.focus\\:border-red-700:focus{border-color:var(--red-700)!important}.focus\\:border-red-800:focus{border-color:var(--red-800)!important}.focus\\:border-red-900:focus{border-color:var(--red-900)!important}.hover\\:border-red-50:hover{border-color:var(--red-50)!important}.hover\\:border-red-100:hover{border-color:var(--red-100)!important}.hover\\:border-red-200:hover{border-color:var(--red-200)!important}.hover\\:border-red-300:hover{border-color:var(--red-300)!important}.hover\\:border-red-400:hover{border-color:var(--red-400)!important}.hover\\:border-red-500:hover{border-color:var(--red-500)!important}.hover\\:border-red-600:hover{border-color:var(--red-600)!important}.hover\\:border-red-700:hover{border-color:var(--red-700)!important}.hover\\:border-red-800:hover{border-color:var(--red-800)!important}.hover\\:border-red-900:hover{border-color:var(--red-900)!important}.active\\:border-red-50:active{border-color:var(--red-50)!important}.active\\:border-red-100:active{border-color:var(--red-100)!important}.active\\:border-red-200:active{border-color:var(--red-200)!important}.active\\:border-red-300:active{border-color:var(--red-300)!important}.active\\:border-red-400:active{border-color:var(--red-400)!important}.active\\:border-red-500:active{border-color:var(--red-500)!important}.active\\:border-red-600:active{border-color:var(--red-600)!important}.active\\:border-red-700:active{border-color:var(--red-700)!important}.active\\:border-red-800:active{border-color:var(--red-800)!important}.active\\:border-red-900:active{border-color:var(--red-900)!important}.border-primary-50{border-color:var(--primary-50)!important}.border-primary-100{border-color:var(--primary-100)!important}.border-primary-200{border-color:var(--primary-200)!important}.border-primary-300{border-color:var(--primary-300)!important}.border-primary-400{border-color:var(--primary-400)!important}.border-primary-500{border-color:var(--primary-500)!important}.border-primary-600{border-color:var(--primary-600)!important}.border-primary-700{border-color:var(--primary-700)!important}.border-primary-800{border-color:var(--primary-800)!important}.border-primary-900{border-color:var(--primary-900)!important}.focus\\:border-primary-50:focus{border-color:var(--primary-50)!important}.focus\\:border-primary-100:focus{border-color:var(--primary-100)!important}.focus\\:border-primary-200:focus{border-color:var(--primary-200)!important}.focus\\:border-primary-300:focus{border-color:var(--primary-300)!important}.focus\\:border-primary-400:focus{border-color:var(--primary-400)!important}.focus\\:border-primary-500:focus{border-color:var(--primary-500)!important}.focus\\:border-primary-600:focus{border-color:var(--primary-600)!important}.focus\\:border-primary-700:focus{border-color:var(--primary-700)!important}.focus\\:border-primary-800:focus{border-color:var(--primary-800)!important}.focus\\:border-primary-900:focus{border-color:var(--primary-900)!important}.hover\\:border-primary-50:hover{border-color:var(--primary-50)!important}.hover\\:border-primary-100:hover{border-color:var(--primary-100)!important}.hover\\:border-primary-200:hover{border-color:var(--primary-200)!important}.hover\\:border-primary-300:hover{border-color:var(--primary-300)!important}.hover\\:border-primary-400:hover{border-color:var(--primary-400)!important}.hover\\:border-primary-500:hover{border-color:var(--primary-500)!important}.hover\\:border-primary-600:hover{border-color:var(--primary-600)!important}.hover\\:border-primary-700:hover{border-color:var(--primary-700)!important}.hover\\:border-primary-800:hover{border-color:var(--primary-800)!important}.hover\\:border-primary-900:hover{border-color:var(--primary-900)!important}.active\\:border-primary-50:active{border-color:var(--primary-50)!important}.active\\:border-primary-100:active{border-color:var(--primary-100)!important}.active\\:border-primary-200:active{border-color:var(--primary-200)!important}.active\\:border-primary-300:active{border-color:var(--primary-300)!important}.active\\:border-primary-400:active{border-color:var(--primary-400)!important}.active\\:border-primary-500:active{border-color:var(--primary-500)!important}.active\\:border-primary-600:active{border-color:var(--primary-600)!important}.active\\:border-primary-700:active{border-color:var(--primary-700)!important}.active\\:border-primary-800:active{border-color:var(--primary-800)!important}.active\\:border-primary-900:active{border-color:var(--primary-900)!important}.bg-white-alpha-10{background-color:#ffffff1a!important}.bg-white-alpha-20{background-color:#fff3!important}.bg-white-alpha-30{background-color:#ffffff4d!important}.bg-white-alpha-40{background-color:#fff6!important}.bg-white-alpha-50{background-color:#ffffff80!important}.bg-white-alpha-60{background-color:#fff9!important}.bg-white-alpha-70{background-color:#ffffffb3!important}.bg-white-alpha-80{background-color:#fffc!important}.bg-white-alpha-90{background-color:#ffffffe6!important}.hover\\:bg-white-alpha-10:hover{background-color:#ffffff1a!important}.hover\\:bg-white-alpha-20:hover{background-color:#fff3!important}.hover\\:bg-white-alpha-30:hover{background-color:#ffffff4d!important}.hover\\:bg-white-alpha-40:hover{background-color:#fff6!important}.hover\\:bg-white-alpha-50:hover{background-color:#ffffff80!important}.hover\\:bg-white-alpha-60:hover{background-color:#fff9!important}.hover\\:bg-white-alpha-70:hover{background-color:#ffffffb3!important}.hover\\:bg-white-alpha-80:hover{background-color:#fffc!important}.hover\\:bg-white-alpha-90:hover{background-color:#ffffffe6!important}.focus\\:bg-white-alpha-10:focus{background-color:#ffffff1a!important}.focus\\:bg-white-alpha-20:focus{background-color:#fff3!important}.focus\\:bg-white-alpha-30:focus{background-color:#ffffff4d!important}.focus\\:bg-white-alpha-40:focus{background-color:#fff6!important}.focus\\:bg-white-alpha-50:focus{background-color:#ffffff80!important}.focus\\:bg-white-alpha-60:focus{background-color:#fff9!important}.focus\\:bg-white-alpha-70:focus{background-color:#ffffffb3!important}.focus\\:bg-white-alpha-80:focus{background-color:#fffc!important}.focus\\:bg-white-alpha-90:focus{background-color:#ffffffe6!important}.active\\:bg-white-alpha-10:active{background-color:#ffffff1a!important}.active\\:bg-white-alpha-20:active{background-color:#fff3!important}.active\\:bg-white-alpha-30:active{background-color:#ffffff4d!important}.active\\:bg-white-alpha-40:active{background-color:#fff6!important}.active\\:bg-white-alpha-50:active{background-color:#ffffff80!important}.active\\:bg-white-alpha-60:active{background-color:#fff9!important}.active\\:bg-white-alpha-70:active{background-color:#ffffffb3!important}.active\\:bg-white-alpha-80:active{background-color:#fffc!important}.active\\:bg-white-alpha-90:active{background-color:#ffffffe6!important}.bg-black-alpha-10{background-color:#0000001a!important}.bg-black-alpha-20{background-color:#0003!important}.bg-black-alpha-30{background-color:#0000004d!important}.bg-black-alpha-40{background-color:#0006!important}.bg-black-alpha-50{background-color:#00000080!important}.bg-black-alpha-60{background-color:#0009!important}.bg-black-alpha-70{background-color:#000000b3!important}.bg-black-alpha-80{background-color:#000c!important}.bg-black-alpha-90{background-color:#000000e6!important}.hover\\:bg-black-alpha-10:hover{background-color:#0000001a!important}.hover\\:bg-black-alpha-20:hover{background-color:#0003!important}.hover\\:bg-black-alpha-30:hover{background-color:#0000004d!important}.hover\\:bg-black-alpha-40:hover{background-color:#0006!important}.hover\\:bg-black-alpha-50:hover{background-color:#00000080!important}.hover\\:bg-black-alpha-60:hover{background-color:#0009!important}.hover\\:bg-black-alpha-70:hover{background-color:#000000b3!important}.hover\\:bg-black-alpha-80:hover{background-color:#000c!important}.hover\\:bg-black-alpha-90:hover{background-color:#000000e6!important}.focus\\:bg-black-alpha-10:focus{background-color:#0000001a!important}.focus\\:bg-black-alpha-20:focus{background-color:#0003!important}.focus\\:bg-black-alpha-30:focus{background-color:#0000004d!important}.focus\\:bg-black-alpha-40:focus{background-color:#0006!important}.focus\\:bg-black-alpha-50:focus{background-color:#00000080!important}.focus\\:bg-black-alpha-60:focus{background-color:#0009!important}.focus\\:bg-black-alpha-70:focus{background-color:#000000b3!important}.focus\\:bg-black-alpha-80:focus{background-color:#000c!important}.focus\\:bg-black-alpha-90:focus{background-color:#000000e6!important}.active\\:bg-black-alpha-10:active{background-color:#0000001a!important}.active\\:bg-black-alpha-20:active{background-color:#0003!important}.active\\:bg-black-alpha-30:active{background-color:#0000004d!important}.active\\:bg-black-alpha-40:active{background-color:#0006!important}.active\\:bg-black-alpha-50:active{background-color:#00000080!important}.active\\:bg-black-alpha-60:active{background-color:#0009!important}.active\\:bg-black-alpha-70:active{background-color:#000000b3!important}.active\\:bg-black-alpha-80:active{background-color:#000c!important}.active\\:bg-black-alpha-90:active{background-color:#000000e6!important}.border-white-alpha-10{border-color:#ffffff1a!important}.border-white-alpha-20{border-color:#fff3!important}.border-white-alpha-30{border-color:#ffffff4d!important}.border-white-alpha-40{border-color:#fff6!important}.border-white-alpha-50{border-color:#ffffff80!important}.border-white-alpha-60{border-color:#fff9!important}.border-white-alpha-70{border-color:#ffffffb3!important}.border-white-alpha-80{border-color:#fffc!important}.border-white-alpha-90{border-color:#ffffffe6!important}.hover\\:border-white-alpha-10:hover{border-color:#ffffff1a!important}.hover\\:border-white-alpha-20:hover{border-color:#fff3!important}.hover\\:border-white-alpha-30:hover{border-color:#ffffff4d!important}.hover\\:border-white-alpha-40:hover{border-color:#fff6!important}.hover\\:border-white-alpha-50:hover{border-color:#ffffff80!important}.hover\\:border-white-alpha-60:hover{border-color:#fff9!important}.hover\\:border-white-alpha-70:hover{border-color:#ffffffb3!important}.hover\\:border-white-alpha-80:hover{border-color:#fffc!important}.hover\\:border-white-alpha-90:hover{border-color:#ffffffe6!important}.focus\\:border-white-alpha-10:focus{border-color:#ffffff1a!important}.focus\\:border-white-alpha-20:focus{border-color:#fff3!important}.focus\\:border-white-alpha-30:focus{border-color:#ffffff4d!important}.focus\\:border-white-alpha-40:focus{border-color:#fff6!important}.focus\\:border-white-alpha-50:focus{border-color:#ffffff80!important}.focus\\:border-white-alpha-60:focus{border-color:#fff9!important}.focus\\:border-white-alpha-70:focus{border-color:#ffffffb3!important}.focus\\:border-white-alpha-80:focus{border-color:#fffc!important}.focus\\:border-white-alpha-90:focus{border-color:#ffffffe6!important}.active\\:border-white-alpha-10:active{border-color:#ffffff1a!important}.active\\:border-white-alpha-20:active{border-color:#fff3!important}.active\\:border-white-alpha-30:active{border-color:#ffffff4d!important}.active\\:border-white-alpha-40:active{border-color:#fff6!important}.active\\:border-white-alpha-50:active{border-color:#ffffff80!important}.active\\:border-white-alpha-60:active{border-color:#fff9!important}.active\\:border-white-alpha-70:active{border-color:#ffffffb3!important}.active\\:border-white-alpha-80:active{border-color:#fffc!important}.active\\:border-white-alpha-90:active{border-color:#ffffffe6!important}.border-black-alpha-10{border-color:#0000001a!important}.border-black-alpha-20{border-color:#0003!important}.border-black-alpha-30{border-color:#0000004d!important}.border-black-alpha-40{border-color:#0006!important}.border-black-alpha-50{border-color:#00000080!important}.border-black-alpha-60{border-color:#0009!important}.border-black-alpha-70{border-color:#000000b3!important}.border-black-alpha-80{border-color:#000c!important}.border-black-alpha-90{border-color:#000000e6!important}.hover\\:border-black-alpha-10:hover{border-color:#0000001a!important}.hover\\:border-black-alpha-20:hover{border-color:#0003!important}.hover\\:border-black-alpha-30:hover{border-color:#0000004d!important}.hover\\:border-black-alpha-40:hover{border-color:#0006!important}.hover\\:border-black-alpha-50:hover{border-color:#00000080!important}.hover\\:border-black-alpha-60:hover{border-color:#0009!important}.hover\\:border-black-alpha-70:hover{border-color:#000000b3!important}.hover\\:border-black-alpha-80:hover{border-color:#000c!important}.hover\\:border-black-alpha-90:hover{border-color:#000000e6!important}.focus\\:border-black-alpha-10:focus{border-color:#0000001a!important}.focus\\:border-black-alpha-20:focus{border-color:#0003!important}.focus\\:border-black-alpha-30:focus{border-color:#0000004d!important}.focus\\:border-black-alpha-40:focus{border-color:#0006!important}.focus\\:border-black-alpha-50:focus{border-color:#00000080!important}.focus\\:border-black-alpha-60:focus{border-color:#0009!important}.focus\\:border-black-alpha-70:focus{border-color:#000000b3!important}.focus\\:border-black-alpha-80:focus{border-color:#000c!important}.focus\\:border-black-alpha-90:focus{border-color:#000000e6!important}.active\\:border-black-alpha-10:active{border-color:#0000001a!important}.active\\:border-black-alpha-20:active{border-color:#0003!important}.active\\:border-black-alpha-30:active{border-color:#0000004d!important}.active\\:border-black-alpha-40:active{border-color:#0006!important}.active\\:border-black-alpha-50:active{border-color:#00000080!important}.active\\:border-black-alpha-60:active{border-color:#0009!important}.active\\:border-black-alpha-70:active{border-color:#000000b3!important}.active\\:border-black-alpha-80:active{border-color:#000c!important}.active\\:border-black-alpha-90:active{border-color:#000000e6!important}.text-white-alpha-10{color:#ffffff1a!important}.text-white-alpha-20{color:#fff3!important}.text-white-alpha-30{color:#ffffff4d!important}.text-white-alpha-40{color:#fff6!important}.text-white-alpha-50{color:#ffffff80!important}.text-white-alpha-60{color:#fff9!important}.text-white-alpha-70{color:#ffffffb3!important}.text-white-alpha-80{color:#fffc!important}.text-white-alpha-90{color:#ffffffe6!important}.hover\\:text-white-alpha-10:hover{color:#ffffff1a!important}.hover\\:text-white-alpha-20:hover{color:#fff3!important}.hover\\:text-white-alpha-30:hover{color:#ffffff4d!important}.hover\\:text-white-alpha-40:hover{color:#fff6!important}.hover\\:text-white-alpha-50:hover{color:#ffffff80!important}.hover\\:text-white-alpha-60:hover{color:#fff9!important}.hover\\:text-white-alpha-70:hover{color:#ffffffb3!important}.hover\\:text-white-alpha-80:hover{color:#fffc!important}.hover\\:text-white-alpha-90:hover{color:#ffffffe6!important}.focus\\:text-white-alpha-10:focus{color:#ffffff1a!important}.focus\\:text-white-alpha-20:focus{color:#fff3!important}.focus\\:text-white-alpha-30:focus{color:#ffffff4d!important}.focus\\:text-white-alpha-40:focus{color:#fff6!important}.focus\\:text-white-alpha-50:focus{color:#ffffff80!important}.focus\\:text-white-alpha-60:focus{color:#fff9!important}.focus\\:text-white-alpha-70:focus{color:#ffffffb3!important}.focus\\:text-white-alpha-80:focus{color:#fffc!important}.focus\\:text-white-alpha-90:focus{color:#ffffffe6!important}.active\\:text-white-alpha-10:active{color:#ffffff1a!important}.active\\:text-white-alpha-20:active{color:#fff3!important}.active\\:text-white-alpha-30:active{color:#ffffff4d!important}.active\\:text-white-alpha-40:active{color:#fff6!important}.active\\:text-white-alpha-50:active{color:#ffffff80!important}.active\\:text-white-alpha-60:active{color:#fff9!important}.active\\:text-white-alpha-70:active{color:#ffffffb3!important}.active\\:text-white-alpha-80:active{color:#fffc!important}.active\\:text-white-alpha-90:active{color:#ffffffe6!important}.text-black-alpha-10{color:#0000001a!important}.text-black-alpha-20{color:#0003!important}.text-black-alpha-30{color:#0000004d!important}.text-black-alpha-40{color:#0006!important}.text-black-alpha-50{color:#00000080!important}.text-black-alpha-60{color:#0009!important}.text-black-alpha-70{color:#000000b3!important}.text-black-alpha-80{color:#000c!important}.text-black-alpha-90{color:#000000e6!important}.hover\\:text-black-alpha-10:hover{color:#0000001a!important}.hover\\:text-black-alpha-20:hover{color:#0003!important}.hover\\:text-black-alpha-30:hover{color:#0000004d!important}.hover\\:text-black-alpha-40:hover{color:#0006!important}.hover\\:text-black-alpha-50:hover{color:#00000080!important}.hover\\:text-black-alpha-60:hover{color:#0009!important}.hover\\:text-black-alpha-70:hover{color:#000000b3!important}.hover\\:text-black-alpha-80:hover{color:#000c!important}.hover\\:text-black-alpha-90:hover{color:#000000e6!important}.focus\\:text-black-alpha-10:focus{color:#0000001a!important}.focus\\:text-black-alpha-20:focus{color:#0003!important}.focus\\:text-black-alpha-30:focus{color:#0000004d!important}.focus\\:text-black-alpha-40:focus{color:#0006!important}.focus\\:text-black-alpha-50:focus{color:#00000080!important}.focus\\:text-black-alpha-60:focus{color:#0009!important}.focus\\:text-black-alpha-70:focus{color:#000000b3!important}.focus\\:text-black-alpha-80:focus{color:#000c!important}.focus\\:text-black-alpha-90:focus{color:#000000e6!important}.active\\:text-black-alpha-10:active{color:#0000001a!important}.active\\:text-black-alpha-20:active{color:#0003!important}.active\\:text-black-alpha-30:active{color:#0000004d!important}.active\\:text-black-alpha-40:active{color:#0006!important}.active\\:text-black-alpha-50:active{color:#00000080!important}.active\\:text-black-alpha-60:active{color:#0009!important}.active\\:text-black-alpha-70:active{color:#000000b3!important}.active\\:text-black-alpha-80:active{color:#000c!important}.active\\:text-black-alpha-90:active{color:#000000e6!important}.text-primary{color:var(--primary-color)!important}.bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.bg-white{background-color:#fff!important}.border-primary{border-color:var(--primary-color)!important}.text-white{color:#fff!important}.border-white{border-color:#fff!important}.text-color{color:var(--text-color)!important}.text-color-secondary{color:var(--text-color-secondary)!important}.surface-ground{background-color:var(--surface-ground)!important}.surface-section{background-color:var(--surface-section)!important}.surface-card{background-color:var(--surface-card)!important}.surface-overlay{background-color:var(--surface-overlay)!important}.surface-hover{background-color:var(--surface-hover)!important}.surface-border{border-color:var(--surface-border)!important}.focus\\:text-primary:focus{color:var(--primary-color)!important}.hover\\:text-primary:hover,.active\\:text-primary:active{color:var(--primary-color)!important}.focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.hover\\:bg-primary:hover,.active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.hover\\:bg-primary-reverse:hover,.active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.focus\\:bg-white:focus{background-color:#fff!important}.hover\\:bg-white:hover,.active\\:bg-white:active{background-color:#fff!important}.focus\\:border-primary:focus{border-color:var(--primary-color)!important}.hover\\:border-primary:hover,.active\\:border-primary:active{border-color:var(--primary-color)!important}.focus\\:text-white:focus{color:#fff!important}.hover\\:text-white:hover,.active\\:text-white:active{color:#fff!important}.focus\\:border-white:focus{border-color:#fff!important}.hover\\:border-white:hover,.active\\:border-white:active{border-color:#fff!important}.focus\\:text-color:focus{color:var(--text-color)!important}.hover\\:text-color:hover,.active\\:text-color:active{color:var(--text-color)!important}.focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.hover\\:text-color-secondary:hover,.active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.hover\\:surface-ground:hover,.active\\:surface-ground:active{background-color:var(--surface-ground)!important}.focus\\:surface-section:focus{background-color:var(--surface-section)!important}.hover\\:surface-section:hover,.active\\:surface-section:active{background-color:var(--surface-section)!important}.focus\\:surface-card:focus{background-color:var(--surface-card)!important}.hover\\:surface-card:hover,.active\\:surface-card:active{background-color:var(--surface-card)!important}.focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.hover\\:surface-overlay:hover,.active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.hover\\:surface-hover:hover,.active\\:surface-hover:active{background-color:var(--surface-hover)!important}.focus\\:surface-border:focus{border-color:var(--surface-border)!important}.hover\\:surface-border:hover,.active\\:surface-border:active{border-color:var(--surface-border)!important}@media screen and (min-width: 576px){.sm\\:text-primary{color:var(--primary-color)!important}.sm\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:bg-white{background-color:#fff!important}.sm\\:border-primary{border-color:var(--primary-color)!important}.sm\\:text-white{color:#fff!important}.sm\\:border-white{border-color:#fff!important}.sm\\:text-color{color:var(--text-color)!important}.sm\\:text-color-secondary{color:var(--text-color-secondary)!important}.sm\\:surface-ground{background-color:var(--surface-ground)!important}.sm\\:surface-section{background-color:var(--surface-section)!important}.sm\\:surface-card{background-color:var(--surface-card)!important}.sm\\:surface-overlay{background-color:var(--surface-overlay)!important}.sm\\:surface-hover{background-color:var(--surface-hover)!important}.sm\\:surface-border{border-color:var(--surface-border)!important}.sm\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.sm\\:hover\\:text-primary:hover,.sm\\:active\\:text-primary:active{color:var(--primary-color)!important}.sm\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:hover\\:bg-primary:hover,.sm\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.sm\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:hover\\:bg-primary-reverse:hover,.sm\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.sm\\:focus\\:bg-white:focus{background-color:#fff!important}.sm\\:hover\\:bg-white:hover,.sm\\:active\\:bg-white:active{background-color:#fff!important}.sm\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.sm\\:hover\\:border-primary:hover,.sm\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.sm\\:focus\\:text-white:focus{color:#fff!important}.sm\\:hover\\:text-white:hover,.sm\\:active\\:text-white:active{color:#fff!important}.sm\\:focus\\:border-white:focus{border-color:#fff!important}.sm\\:hover\\:border-white:hover,.sm\\:active\\:border-white:active{border-color:#fff!important}.sm\\:focus\\:text-color:focus{color:var(--text-color)!important}.sm\\:hover\\:text-color:hover,.sm\\:active\\:text-color:active{color:var(--text-color)!important}.sm\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.sm\\:hover\\:text-color-secondary:hover,.sm\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.sm\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.sm\\:hover\\:surface-ground:hover,.sm\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.sm\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.sm\\:hover\\:surface-section:hover,.sm\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.sm\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.sm\\:hover\\:surface-card:hover,.sm\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.sm\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.sm\\:hover\\:surface-overlay:hover,.sm\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.sm\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.sm\\:hover\\:surface-hover:hover,.sm\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.sm\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.sm\\:hover\\:surface-border:hover,.sm\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 768px){.md\\:text-primary{color:var(--primary-color)!important}.md\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:bg-white{background-color:#fff!important}.md\\:border-primary{border-color:var(--primary-color)!important}.md\\:text-white{color:#fff!important}.md\\:border-white{border-color:#fff!important}.md\\:text-color{color:var(--text-color)!important}.md\\:text-color-secondary{color:var(--text-color-secondary)!important}.md\\:surface-ground{background-color:var(--surface-ground)!important}.md\\:surface-section{background-color:var(--surface-section)!important}.md\\:surface-card{background-color:var(--surface-card)!important}.md\\:surface-overlay{background-color:var(--surface-overlay)!important}.md\\:surface-hover{background-color:var(--surface-hover)!important}.md\\:surface-border{border-color:var(--surface-border)!important}.md\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.md\\:hover\\:text-primary:hover,.md\\:active\\:text-primary:active{color:var(--primary-color)!important}.md\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:hover\\:bg-primary:hover,.md\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.md\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:hover\\:bg-primary-reverse:hover,.md\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.md\\:focus\\:bg-white:focus{background-color:#fff!important}.md\\:hover\\:bg-white:hover,.md\\:active\\:bg-white:active{background-color:#fff!important}.md\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.md\\:hover\\:border-primary:hover,.md\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.md\\:focus\\:text-white:focus{color:#fff!important}.md\\:hover\\:text-white:hover,.md\\:active\\:text-white:active{color:#fff!important}.md\\:focus\\:border-white:focus{border-color:#fff!important}.md\\:hover\\:border-white:hover,.md\\:active\\:border-white:active{border-color:#fff!important}.md\\:focus\\:text-color:focus{color:var(--text-color)!important}.md\\:hover\\:text-color:hover,.md\\:active\\:text-color:active{color:var(--text-color)!important}.md\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.md\\:hover\\:text-color-secondary:hover,.md\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.md\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.md\\:hover\\:surface-ground:hover,.md\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.md\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.md\\:hover\\:surface-section:hover,.md\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.md\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.md\\:hover\\:surface-card:hover,.md\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.md\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.md\\:hover\\:surface-overlay:hover,.md\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.md\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.md\\:hover\\:surface-hover:hover,.md\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.md\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.md\\:hover\\:surface-border:hover,.md\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 992px){.lg\\:text-primary{color:var(--primary-color)!important}.lg\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:bg-white{background-color:#fff!important}.lg\\:border-primary{border-color:var(--primary-color)!important}.lg\\:text-white{color:#fff!important}.lg\\:border-white{border-color:#fff!important}.lg\\:text-color{color:var(--text-color)!important}.lg\\:text-color-secondary{color:var(--text-color-secondary)!important}.lg\\:surface-ground{background-color:var(--surface-ground)!important}.lg\\:surface-section{background-color:var(--surface-section)!important}.lg\\:surface-card{background-color:var(--surface-card)!important}.lg\\:surface-overlay{background-color:var(--surface-overlay)!important}.lg\\:surface-hover{background-color:var(--surface-hover)!important}.lg\\:surface-border{border-color:var(--surface-border)!important}.lg\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.lg\\:hover\\:text-primary:hover,.lg\\:active\\:text-primary:active{color:var(--primary-color)!important}.lg\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:hover\\:bg-primary:hover,.lg\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.lg\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:hover\\:bg-primary-reverse:hover,.lg\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.lg\\:focus\\:bg-white:focus{background-color:#fff!important}.lg\\:hover\\:bg-white:hover,.lg\\:active\\:bg-white:active{background-color:#fff!important}.lg\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.lg\\:hover\\:border-primary:hover,.lg\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.lg\\:focus\\:text-white:focus{color:#fff!important}.lg\\:hover\\:text-white:hover,.lg\\:active\\:text-white:active{color:#fff!important}.lg\\:focus\\:border-white:focus{border-color:#fff!important}.lg\\:hover\\:border-white:hover,.lg\\:active\\:border-white:active{border-color:#fff!important}.lg\\:focus\\:text-color:focus{color:var(--text-color)!important}.lg\\:hover\\:text-color:hover,.lg\\:active\\:text-color:active{color:var(--text-color)!important}.lg\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.lg\\:hover\\:text-color-secondary:hover,.lg\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.lg\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.lg\\:hover\\:surface-ground:hover,.lg\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.lg\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.lg\\:hover\\:surface-section:hover,.lg\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.lg\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.lg\\:hover\\:surface-card:hover,.lg\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.lg\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.lg\\:hover\\:surface-overlay:hover,.lg\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.lg\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.lg\\:hover\\:surface-hover:hover,.lg\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.lg\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.lg\\:hover\\:surface-border:hover,.lg\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}@media screen and (min-width: 1200px){.xl\\:text-primary{color:var(--primary-color)!important}.xl\\:bg-primary{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:bg-primary-reverse{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:bg-white{background-color:#fff!important}.xl\\:border-primary{border-color:var(--primary-color)!important}.xl\\:text-white{color:#fff!important}.xl\\:border-white{border-color:#fff!important}.xl\\:text-color{color:var(--text-color)!important}.xl\\:text-color-secondary{color:var(--text-color-secondary)!important}.xl\\:surface-ground{background-color:var(--surface-ground)!important}.xl\\:surface-section{background-color:var(--surface-section)!important}.xl\\:surface-card{background-color:var(--surface-card)!important}.xl\\:surface-overlay{background-color:var(--surface-overlay)!important}.xl\\:surface-hover{background-color:var(--surface-hover)!important}.xl\\:surface-border{border-color:var(--surface-border)!important}.xl\\:focus\\:text-primary:focus{color:var(--primary-color)!important}.xl\\:hover\\:text-primary:hover,.xl\\:active\\:text-primary:active{color:var(--primary-color)!important}.xl\\:focus\\:bg-primary:focus{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:hover\\:bg-primary:hover,.xl\\:active\\:bg-primary:active{color:var(--primary-color-text)!important;background-color:var(--primary-color)!important}.xl\\:focus\\:bg-primary-reverse:focus{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:hover\\:bg-primary-reverse:hover,.xl\\:active\\:bg-primary-reverse:active{color:var(--primary-color)!important;background-color:var(--primary-color-text)!important}.xl\\:focus\\:bg-white:focus{background-color:#fff!important}.xl\\:hover\\:bg-white:hover,.xl\\:active\\:bg-white:active{background-color:#fff!important}.xl\\:focus\\:border-primary:focus{border-color:var(--primary-color)!important}.xl\\:hover\\:border-primary:hover,.xl\\:active\\:border-primary:active{border-color:var(--primary-color)!important}.xl\\:focus\\:text-white:focus{color:#fff!important}.xl\\:hover\\:text-white:hover,.xl\\:active\\:text-white:active{color:#fff!important}.xl\\:focus\\:border-white:focus{border-color:#fff!important}.xl\\:hover\\:border-white:hover,.xl\\:active\\:border-white:active{border-color:#fff!important}.xl\\:focus\\:text-color:focus{color:var(--text-color)!important}.xl\\:hover\\:text-color:hover,.xl\\:active\\:text-color:active{color:var(--text-color)!important}.xl\\:focus\\:text-color-secondary:focus{color:var(--text-color-secondary)!important}.xl\\:hover\\:text-color-secondary:hover,.xl\\:active\\:text-color-secondary:active{color:var(--text-color-secondary)!important}.xl\\:focus\\:surface-ground:focus{background-color:var(--surface-ground)!important}.xl\\:hover\\:surface-ground:hover,.xl\\:active\\:surface-ground:active{background-color:var(--surface-ground)!important}.xl\\:focus\\:surface-section:focus{background-color:var(--surface-section)!important}.xl\\:hover\\:surface-section:hover,.xl\\:active\\:surface-section:active{background-color:var(--surface-section)!important}.xl\\:focus\\:surface-card:focus{background-color:var(--surface-card)!important}.xl\\:hover\\:surface-card:hover,.xl\\:active\\:surface-card:active{background-color:var(--surface-card)!important}.xl\\:focus\\:surface-overlay:focus{background-color:var(--surface-overlay)!important}.xl\\:hover\\:surface-overlay:hover,.xl\\:active\\:surface-overlay:active{background-color:var(--surface-overlay)!important}.xl\\:focus\\:surface-hover:focus{background-color:var(--surface-hover)!important}.xl\\:hover\\:surface-hover:hover,.xl\\:active\\:surface-hover:active{background-color:var(--surface-hover)!important}.xl\\:focus\\:surface-border:focus{border-color:var(--surface-border)!important}.xl\\:hover\\:surface-border:hover,.xl\\:active\\:surface-border:active{border-color:var(--surface-border)!important}}.field{margin-bottom:1rem}.field>label{display:inline-block;margin-bottom:.5rem}.field.grid>label{display:flex;align-items:center}.field>small{margin-top:.25rem}.field.grid,.formgrid.grid{margin-top:0}.field.grid .col-fixed,.formgrid.grid .col-fixed,.field.grid .col,.formgrid.grid .col,.field.grid .col-1,.formgrid.grid .col-1,.field.grid .col-2,.formgrid.grid .col-2,.field.grid .col-3,.formgrid.grid .col-3,.field.grid .col-4,.formgrid.grid .col-4,.field.grid .col-5,.formgrid.grid .col-5,.field.grid .col-6,.formgrid.grid .col-6,.field.grid .col-7,.formgrid.grid .col-7,.field.grid .col-8,.formgrid.grid .col-8,.field.grid .col-9,.formgrid.grid .col-9,.field.grid .col-10,.formgrid.grid .col-10,.field.grid .col-11,.formgrid.grid .col-11,.field.grid .col-12,.formgrid.grid .col-12{padding-top:0;padding-bottom:0}.formgroup-inline{display:flex;flex-wrap:wrap;align-items:flex-start}.formgroup-inline .field,.formgroup-inline .field-checkbox,.formgroup-inline .field-radiobutton{margin-right:1rem}.formgroup-inline .field>label,.formgroup-inline .field-checkbox>label,.formgroup-inline .field-radiobutton>label{margin-right:.5rem;margin-bottom:0}.field-checkbox,.field-radiobutton{margin-bottom:1rem;display:flex;align-items:center}.field-checkbox>label,.field-radiobutton>label{margin-left:.5rem;line-height:1}.hidden{display:none!important}.block{display:block!important}.inline{display:inline!important}.inline-block{display:inline-block!important}.flex{display:flex!important}.inline-flex{display:inline-flex!important}@media screen and (min-width: 576px){.sm\\:hidden{display:none!important}.sm\\:block{display:block!important}.sm\\:inline{display:inline!important}.sm\\:inline-block{display:inline-block!important}.sm\\:flex{display:flex!important}.sm\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 768px){.md\\:hidden{display:none!important}.md\\:block{display:block!important}.md\\:inline{display:inline!important}.md\\:inline-block{display:inline-block!important}.md\\:flex{display:flex!important}.md\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 992px){.lg\\:hidden{display:none!important}.lg\\:block{display:block!important}.lg\\:inline{display:inline!important}.lg\\:inline-block{display:inline-block!important}.lg\\:flex{display:flex!important}.lg\\:inline-flex{display:inline-flex!important}}@media screen and (min-width: 1200px){.xl\\:hidden{display:none!important}.xl\\:block{display:block!important}.xl\\:inline{display:inline!important}.xl\\:inline-block{display:inline-block!important}.xl\\:flex{display:flex!important}.xl\\:inline-flex{display:inline-flex!important}}.text-center{text-align:center!important}.text-justify{text-align:justify!important}.text-left{text-align:left!important}.text-right{text-align:right!important}@media screen and (min-width: 576px){.sm\\:text-center{text-align:center!important}.sm\\:text-justify{text-align:justify!important}.sm\\:text-left{text-align:left!important}.sm\\:text-right{text-align:right!important}}@media screen and (min-width: 768px){.md\\:text-center{text-align:center!important}.md\\:text-justify{text-align:justify!important}.md\\:text-left{text-align:left!important}.md\\:text-right{text-align:right!important}}@media screen and (min-width: 992px){.lg\\:text-center{text-align:center!important}.lg\\:text-justify{text-align:justify!important}.lg\\:text-left{text-align:left!important}.lg\\:text-right{text-align:right!important}}@media screen and (min-width: 1200px){.xl\\:text-center{text-align:center!important}.xl\\:text-justify{text-align:justify!important}.xl\\:text-left{text-align:left!important}.xl\\:text-right{text-align:right!important}}.underline{text-decoration:underline!important}.line-through{text-decoration:line-through!important}.no-underline{text-decoration:none!important}.focus\\:underline:focus{text-decoration:underline!important}.hover\\:underline:hover,.active\\:underline:active{text-decoration:underline!important}.focus\\:line-through:focus{text-decoration:line-through!important}.hover\\:line-through:hover,.active\\:line-through:active{text-decoration:line-through!important}.focus\\:no-underline:focus{text-decoration:none!important}.hover\\:no-underline:hover,.active\\:no-underline:active{text-decoration:none!important}.lowercase{text-transform:lowercase!important}.uppercase{text-transform:uppercase!important}.capitalize{text-transform:capitalize!important}.text-overflow-clip{text-overflow:clip!important}.text-overflow-ellipsis{text-overflow:ellipsis!important}@media screen and (min-width: 576px){.sm\\:text-overflow-clip{text-overflow:clip!important}.sm\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 768px){.md\\:text-overflow-clip{text-overflow:clip!important}.md\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 992px){.lg\\:text-overflow-clip{text-overflow:clip!important}.lg\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}@media screen and (min-width: 1200px){.xl\\:text-overflow-clip{text-overflow:clip!important}.xl\\:text-overflow-ellipsis{text-overflow:ellipsis!important}}.font-light{font-weight:300!important}.font-normal{font-weight:400!important}.font-medium{font-weight:500!important}.font-semibold{font-weight:600!important}.font-bold{font-weight:700!important}@media screen and (min-width: 576px){.sm\\:font-light{font-weight:300!important}.sm\\:font-normal{font-weight:400!important}.sm\\:font-medium{font-weight:500!important}.sm\\:font-semibold{font-weight:600!important}.sm\\:font-bold{font-weight:700!important}}@media screen and (min-width: 768px){.md\\:font-light{font-weight:300!important}.md\\:font-normal{font-weight:400!important}.md\\:font-medium{font-weight:500!important}.md\\:font-semibold{font-weight:600!important}.md\\:font-bold{font-weight:700!important}}@media screen and (min-width: 992px){.lg\\:font-light{font-weight:300!important}.lg\\:font-normal{font-weight:400!important}.lg\\:font-medium{font-weight:500!important}.lg\\:font-semibold{font-weight:600!important}.lg\\:font-bold{font-weight:700!important}}@media screen and (min-width: 1200px){.xl\\:font-light{font-weight:300!important}.xl\\:font-normal{font-weight:400!important}.xl\\:font-medium{font-weight:500!important}.xl\\:font-semibold{font-weight:600!important}.xl\\:font-bold{font-weight:700!important}}.font-italic{font-style:italic!important}.text-xs{font-size:.75rem!important}.text-sm{font-size:.875rem!important}.text-base{font-size:1rem!important}.text-lg{font-size:1.125rem!important}.text-xl{font-size:1.25rem!important}.text-2xl{font-size:1.5rem!important}.text-3xl{font-size:1.75rem!important}.text-4xl{font-size:2rem!important}.text-5xl{font-size:2.5rem!important}.text-6xl{font-size:3rem!important}.text-7xl{font-size:4rem!important}.text-8xl{font-size:6rem!important}@media screen and (min-width: 576px){.sm\\:text-xs{font-size:.75rem!important}.sm\\:text-sm{font-size:.875rem!important}.sm\\:text-base{font-size:1rem!important}.sm\\:text-lg{font-size:1.125rem!important}.sm\\:text-xl{font-size:1.25rem!important}.sm\\:text-2xl{font-size:1.5rem!important}.sm\\:text-3xl{font-size:1.75rem!important}.sm\\:text-4xl{font-size:2rem!important}.sm\\:text-5xl{font-size:2.5rem!important}.sm\\:text-6xl{font-size:3rem!important}.sm\\:text-7xl{font-size:4rem!important}.sm\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 768px){.md\\:text-xs{font-size:.75rem!important}.md\\:text-sm{font-size:.875rem!important}.md\\:text-base{font-size:1rem!important}.md\\:text-lg{font-size:1.125rem!important}.md\\:text-xl{font-size:1.25rem!important}.md\\:text-2xl{font-size:1.5rem!important}.md\\:text-3xl{font-size:1.75rem!important}.md\\:text-4xl{font-size:2rem!important}.md\\:text-5xl{font-size:2.5rem!important}.md\\:text-6xl{font-size:3rem!important}.md\\:text-7xl{font-size:4rem!important}.md\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 992px){.lg\\:text-xs{font-size:.75rem!important}.lg\\:text-sm{font-size:.875rem!important}.lg\\:text-base{font-size:1rem!important}.lg\\:text-lg{font-size:1.125rem!important}.lg\\:text-xl{font-size:1.25rem!important}.lg\\:text-2xl{font-size:1.5rem!important}.lg\\:text-3xl{font-size:1.75rem!important}.lg\\:text-4xl{font-size:2rem!important}.lg\\:text-5xl{font-size:2.5rem!important}.lg\\:text-6xl{font-size:3rem!important}.lg\\:text-7xl{font-size:4rem!important}.lg\\:text-8xl{font-size:6rem!important}}@media screen and (min-width: 1200px){.xl\\:text-xs{font-size:.75rem!important}.xl\\:text-sm{font-size:.875rem!important}.xl\\:text-base{font-size:1rem!important}.xl\\:text-lg{font-size:1.125rem!important}.xl\\:text-xl{font-size:1.25rem!important}.xl\\:text-2xl{font-size:1.5rem!important}.xl\\:text-3xl{font-size:1.75rem!important}.xl\\:text-4xl{font-size:2rem!important}.xl\\:text-5xl{font-size:2.5rem!important}.xl\\:text-6xl{font-size:3rem!important}.xl\\:text-7xl{font-size:4rem!important}.xl\\:text-8xl{font-size:6rem!important}}.line-height-1{line-height:1!important}.line-height-2{line-height:1.25!important}.line-height-3{line-height:1.5!important}.line-height-4{line-height:2!important}.white-space-normal{white-space:normal!important}.white-space-nowrap{white-space:nowrap!important}.vertical-align-baseline{vertical-align:baseline!important}.vertical-align-top{vertical-align:top!important}.vertical-align-middle{vertical-align:middle!important}.vertical-align-bottom{vertical-align:bottom!important}.vertical-align-text-top{vertical-align:text-top!important}.vertical-align-text-bottom{vertical-align:text-bottom!important}.vertical-align-sub{vertical-align:sub!important}.vertical-align-super{vertical-align:super!important}@media screen and (min-width: 576px){.sm\\:vertical-align-baseline{vertical-align:baseline!important}.sm\\:vertical-align-top{vertical-align:top!important}.sm\\:vertical-align-middle{vertical-align:middle!important}.sm\\:vertical-align-bottom{vertical-align:bottom!important}.sm\\:vertical-align-text-top{vertical-align:text-top!important}.sm\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.sm\\:vertical-align-sub{vertical-align:sub!important}.sm\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 768px){.md\\:vertical-align-baseline{vertical-align:baseline!important}.md\\:vertical-align-top{vertical-align:top!important}.md\\:vertical-align-middle{vertical-align:middle!important}.md\\:vertical-align-bottom{vertical-align:bottom!important}.md\\:vertical-align-text-top{vertical-align:text-top!important}.md\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.md\\:vertical-align-sub{vertical-align:sub!important}.md\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 992px){.lg\\:vertical-align-baseline{vertical-align:baseline!important}.lg\\:vertical-align-top{vertical-align:top!important}.lg\\:vertical-align-middle{vertical-align:middle!important}.lg\\:vertical-align-bottom{vertical-align:bottom!important}.lg\\:vertical-align-text-top{vertical-align:text-top!important}.lg\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.lg\\:vertical-align-sub{vertical-align:sub!important}.lg\\:vertical-align-super{vertical-align:super!important}}@media screen and (min-width: 1200px){.xl\\:vertical-align-baseline{vertical-align:baseline!important}.xl\\:vertical-align-top{vertical-align:top!important}.xl\\:vertical-align-middle{vertical-align:middle!important}.xl\\:vertical-align-bottom{vertical-align:bottom!important}.xl\\:vertical-align-text-top{vertical-align:text-top!important}.xl\\:vertical-align-text-bottom{vertical-align:text-bottom!important}.xl\\:vertical-align-sub{vertical-align:sub!important}.xl\\:vertical-align-super{vertical-align:super!important}}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column{flex-direction:column!important}.flex-column-reverse{flex-direction:column-reverse!important}@media screen and (min-width: 576px){.sm\\:flex-row{flex-direction:row!important}.sm\\:flex-row-reverse{flex-direction:row-reverse!important}.sm\\:flex-column{flex-direction:column!important}.sm\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 768px){.md\\:flex-row{flex-direction:row!important}.md\\:flex-row-reverse{flex-direction:row-reverse!important}.md\\:flex-column{flex-direction:column!important}.md\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 992px){.lg\\:flex-row{flex-direction:row!important}.lg\\:flex-row-reverse{flex-direction:row-reverse!important}.lg\\:flex-column{flex-direction:column!important}.lg\\:flex-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width: 1200px){.xl\\:flex-row{flex-direction:row!important}.xl\\:flex-row-reverse{flex-direction:row-reverse!important}.xl\\:flex-column{flex-direction:column!important}.xl\\:flex-column-reverse{flex-direction:column-reverse!important}}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-nowrap{flex-wrap:nowrap!important}@media screen and (min-width: 576px){.sm\\:flex-wrap{flex-wrap:wrap!important}.sm\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.sm\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 768px){.md\\:flex-wrap{flex-wrap:wrap!important}.md\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.md\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 992px){.lg\\:flex-wrap{flex-wrap:wrap!important}.lg\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.lg\\:flex-nowrap{flex-wrap:nowrap!important}}@media screen and (min-width: 1200px){.xl\\:flex-wrap{flex-wrap:wrap!important}.xl\\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}.xl\\:flex-nowrap{flex-wrap:nowrap!important}}.justify-content-start{justify-content:flex-start!important}.justify-content-end,:host ::ng-deep .w-filter-panel-buttons{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:justify-content-start{justify-content:flex-start!important}.sm\\:justify-content-end{justify-content:flex-end!important}.sm\\:justify-content-center{justify-content:center!important}.sm\\:justify-content-between{justify-content:space-between!important}.sm\\:justify-content-around{justify-content:space-around!important}.sm\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:justify-content-start{justify-content:flex-start!important}.md\\:justify-content-end{justify-content:flex-end!important}.md\\:justify-content-center{justify-content:center!important}.md\\:justify-content-between{justify-content:space-between!important}.md\\:justify-content-around{justify-content:space-around!important}.md\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:justify-content-start{justify-content:flex-start!important}.lg\\:justify-content-end{justify-content:flex-end!important}.lg\\:justify-content-center{justify-content:center!important}.lg\\:justify-content-between{justify-content:space-between!important}.lg\\:justify-content-around{justify-content:space-around!important}.lg\\:justify-content-evenly{justify-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:justify-content-start{justify-content:flex-start!important}.xl\\:justify-content-end{justify-content:flex-end!important}.xl\\:justify-content-center{justify-content:center!important}.xl\\:justify-content-between{justify-content:space-between!important}.xl\\:justify-content-around{justify-content:space-around!important}.xl\\:justify-content-evenly{justify-content:space-evenly!important}}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-evenly{align-content:space-evenly!important}@media screen and (min-width: 576px){.sm\\:align-content-start{align-content:flex-start!important}.sm\\:align-content-end{align-content:flex-end!important}.sm\\:align-content-center{align-content:center!important}.sm\\:align-content-between{align-content:space-between!important}.sm\\:align-content-around{align-content:space-around!important}.sm\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 768px){.md\\:align-content-start{align-content:flex-start!important}.md\\:align-content-end{align-content:flex-end!important}.md\\:align-content-center{align-content:center!important}.md\\:align-content-between{align-content:space-between!important}.md\\:align-content-around{align-content:space-around!important}.md\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 992px){.lg\\:align-content-start{align-content:flex-start!important}.lg\\:align-content-end{align-content:flex-end!important}.lg\\:align-content-center{align-content:center!important}.lg\\:align-content-between{align-content:space-between!important}.lg\\:align-content-around{align-content:space-around!important}.lg\\:align-content-evenly{align-content:space-evenly!important}}@media screen and (min-width: 1200px){.xl\\:align-content-start{align-content:flex-start!important}.xl\\:align-content-end{align-content:flex-end!important}.xl\\:align-content-center{align-content:center!important}.xl\\:align-content-between{align-content:space-between!important}.xl\\:align-content-around{align-content:space-around!important}.xl\\:align-content-evenly{align-content:space-evenly!important}}.align-items-stretch{align-items:stretch!important}.align-items-start{align-items:flex-start!important}.align-items-center{align-items:center!important}.align-items-end,:host ::ng-deep .w-filter-panel-buttons{align-items:flex-end!important}.align-items-baseline{align-items:baseline!important}@media screen and (min-width: 576px){.sm\\:align-items-stretch{align-items:stretch!important}.sm\\:align-items-start{align-items:flex-start!important}.sm\\:align-items-center{align-items:center!important}.sm\\:align-items-end{align-items:flex-end!important}.sm\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 768px){.md\\:align-items-stretch{align-items:stretch!important}.md\\:align-items-start{align-items:flex-start!important}.md\\:align-items-center{align-items:center!important}.md\\:align-items-end{align-items:flex-end!important}.md\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-items-stretch{align-items:stretch!important}.lg\\:align-items-start{align-items:flex-start!important}.lg\\:align-items-center{align-items:center!important}.lg\\:align-items-end{align-items:flex-end!important}.lg\\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-items-stretch{align-items:stretch!important}.xl\\:align-items-start{align-items:flex-start!important}.xl\\:align-items-center{align-items:center!important}.xl\\:align-items-end{align-items:flex-end!important}.xl\\:align-items-baseline{align-items:baseline!important}}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-stretch{align-self:stretch!important}.align-self-baseline{align-self:baseline!important}@media screen and (min-width: 576px){.sm\\:align-self-auto{align-self:auto!important}.sm\\:align-self-start{align-self:flex-start!important}.sm\\:align-self-end{align-self:flex-end!important}.sm\\:align-self-center{align-self:center!important}.sm\\:align-self-stretch{align-self:stretch!important}.sm\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 768px){.md\\:align-self-auto{align-self:auto!important}.md\\:align-self-start{align-self:flex-start!important}.md\\:align-self-end{align-self:flex-end!important}.md\\:align-self-center{align-self:center!important}.md\\:align-self-stretch{align-self:stretch!important}.md\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 992px){.lg\\:align-self-auto{align-self:auto!important}.lg\\:align-self-start{align-self:flex-start!important}.lg\\:align-self-end{align-self:flex-end!important}.lg\\:align-self-center{align-self:center!important}.lg\\:align-self-stretch{align-self:stretch!important}.lg\\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width: 1200px){.xl\\:align-self-auto{align-self:auto!important}.xl\\:align-self-start{align-self:flex-start!important}.xl\\:align-self-end{align-self:flex-end!important}.xl\\:align-self-center{align-self:center!important}.xl\\:align-self-stretch{align-self:stretch!important}.xl\\:align-self-baseline{align-self:baseline!important}}.flex-order-0{order:0!important}.flex-order-1{order:1!important}.flex-order-2{order:2!important}.flex-order-3{order:3!important}.flex-order-4{order:4!important}.flex-order-5{order:5!important}.flex-order-6{order:6!important}@media screen and (min-width: 576px){.sm\\:flex-order-0{order:0!important}.sm\\:flex-order-1{order:1!important}.sm\\:flex-order-2{order:2!important}.sm\\:flex-order-3{order:3!important}.sm\\:flex-order-4{order:4!important}.sm\\:flex-order-5{order:5!important}.sm\\:flex-order-6{order:6!important}}@media screen and (min-width: 768px){.md\\:flex-order-0{order:0!important}.md\\:flex-order-1{order:1!important}.md\\:flex-order-2{order:2!important}.md\\:flex-order-3{order:3!important}.md\\:flex-order-4{order:4!important}.md\\:flex-order-5{order:5!important}.md\\:flex-order-6{order:6!important}}@media screen and (min-width: 992px){.lg\\:flex-order-0{order:0!important}.lg\\:flex-order-1{order:1!important}.lg\\:flex-order-2{order:2!important}.lg\\:flex-order-3{order:3!important}.lg\\:flex-order-4{order:4!important}.lg\\:flex-order-5{order:5!important}.lg\\:flex-order-6{order:6!important}}@media screen and (min-width: 1200px){.xl\\:flex-order-0{order:0!important}.xl\\:flex-order-1{order:1!important}.xl\\:flex-order-2{order:2!important}.xl\\:flex-order-3{order:3!important}.xl\\:flex-order-4{order:4!important}.xl\\:flex-order-5{order:5!important}.xl\\:flex-order-6{order:6!important}}.flex-1{flex:1 1 0%!important}.flex-auto{flex:1 1 auto!important}.flex-initial{flex:0 1 auto!important}.flex-none{flex:none!important}@media screen and (min-width: 576px){.sm\\:flex-1{flex:1 1 0%!important}.sm\\:flex-auto{flex:1 1 auto!important}.sm\\:flex-initial{flex:0 1 auto!important}.sm\\:flex-none{flex:none!important}}@media screen and (min-width: 768px){.md\\:flex-1{flex:1 1 0%!important}.md\\:flex-auto{flex:1 1 auto!important}.md\\:flex-initial{flex:0 1 auto!important}.md\\:flex-none{flex:none!important}}@media screen and (min-width: 992px){.lg\\:flex-1{flex:1 1 0%!important}.lg\\:flex-auto{flex:1 1 auto!important}.lg\\:flex-initial{flex:0 1 auto!important}.lg\\:flex-none{flex:none!important}}@media screen and (min-width: 1200px){.xl\\:flex-1{flex:1 1 0%!important}.xl\\:flex-auto{flex:1 1 auto!important}.xl\\:flex-initial{flex:0 1 auto!important}.xl\\:flex-none{flex:none!important}}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}@media screen and (min-width: 576px){.sm\\:flex-grow-0{flex-grow:0!important}.sm\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 768px){.md\\:flex-grow-0{flex-grow:0!important}.md\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 992px){.lg\\:flex-grow-0{flex-grow:0!important}.lg\\:flex-grow-1{flex-grow:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-grow-0{flex-grow:0!important}.xl\\:flex-grow-1{flex-grow:1!important}}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}@media screen and (min-width: 576px){.sm\\:flex-shrink-0{flex-shrink:0!important}.sm\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 768px){.md\\:flex-shrink-0{flex-shrink:0!important}.md\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 992px){.lg\\:flex-shrink-0{flex-shrink:0!important}.lg\\:flex-shrink-1{flex-shrink:1!important}}@media screen and (min-width: 1200px){.xl\\:flex-shrink-0{flex-shrink:0!important}.xl\\:flex-shrink-1{flex-shrink:1!important}}.gap-0{gap:0rem!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:2rem!important}.gap-6{gap:3rem!important}.gap-7{gap:4rem!important}.gap-8{gap:5rem!important}.row-gap-0{row-gap:0rem!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:2rem!important}.row-gap-6{row-gap:3rem!important}.row-gap-7{row-gap:4rem!important}.row-gap-8{row-gap:5rem!important}.column-gap-0{column-gap:0rem!important}.column-gap-1{column-gap:.25rem!important}.column-gap-2{column-gap:.5rem!important}.column-gap-3{column-gap:1rem!important}.column-gap-4{column-gap:1.5rem!important}.column-gap-5{column-gap:2rem!important}.column-gap-6{column-gap:3rem!important}.column-gap-7{column-gap:4rem!important}.column-gap-8{column-gap:5rem!important}@media screen and (min-width: 576px){.sm\\:gap-0{gap:0rem!important}.sm\\:gap-1{gap:.25rem!important}.sm\\:gap-2{gap:.5rem!important}.sm\\:gap-3{gap:1rem!important}.sm\\:gap-4{gap:1.5rem!important}.sm\\:gap-5{gap:2rem!important}.sm\\:gap-6{gap:3rem!important}.sm\\:gap-7{gap:4rem!important}.sm\\:gap-8{gap:5rem!important}.sm\\:row-gap-0{row-gap:0rem!important}.sm\\:row-gap-1{row-gap:.25rem!important}.sm\\:row-gap-2{row-gap:.5rem!important}.sm\\:row-gap-3{row-gap:1rem!important}.sm\\:row-gap-4{row-gap:1.5rem!important}.sm\\:row-gap-5{row-gap:2rem!important}.sm\\:row-gap-6{row-gap:3rem!important}.sm\\:row-gap-7{row-gap:4rem!important}.sm\\:row-gap-8{row-gap:5rem!important}.sm\\:column-gap-0{column-gap:0rem!important}.sm\\:column-gap-1{column-gap:.25rem!important}.sm\\:column-gap-2{column-gap:.5rem!important}.sm\\:column-gap-3{column-gap:1rem!important}.sm\\:column-gap-4{column-gap:1.5rem!important}.sm\\:column-gap-5{column-gap:2rem!important}.sm\\:column-gap-6{column-gap:3rem!important}.sm\\:column-gap-7{column-gap:4rem!important}.sm\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 768px){.md\\:gap-0{gap:0rem!important}.md\\:gap-1{gap:.25rem!important}.md\\:gap-2{gap:.5rem!important}.md\\:gap-3{gap:1rem!important}.md\\:gap-4{gap:1.5rem!important}.md\\:gap-5{gap:2rem!important}.md\\:gap-6{gap:3rem!important}.md\\:gap-7{gap:4rem!important}.md\\:gap-8{gap:5rem!important}.md\\:row-gap-0{row-gap:0rem!important}.md\\:row-gap-1{row-gap:.25rem!important}.md\\:row-gap-2{row-gap:.5rem!important}.md\\:row-gap-3{row-gap:1rem!important}.md\\:row-gap-4{row-gap:1.5rem!important}.md\\:row-gap-5{row-gap:2rem!important}.md\\:row-gap-6{row-gap:3rem!important}.md\\:row-gap-7{row-gap:4rem!important}.md\\:row-gap-8{row-gap:5rem!important}.md\\:column-gap-0{column-gap:0rem!important}.md\\:column-gap-1{column-gap:.25rem!important}.md\\:column-gap-2{column-gap:.5rem!important}.md\\:column-gap-3{column-gap:1rem!important}.md\\:column-gap-4{column-gap:1.5rem!important}.md\\:column-gap-5{column-gap:2rem!important}.md\\:column-gap-6{column-gap:3rem!important}.md\\:column-gap-7{column-gap:4rem!important}.md\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 992px){.lg\\:gap-0{gap:0rem!important}.lg\\:gap-1{gap:.25rem!important}.lg\\:gap-2{gap:.5rem!important}.lg\\:gap-3{gap:1rem!important}.lg\\:gap-4{gap:1.5rem!important}.lg\\:gap-5{gap:2rem!important}.lg\\:gap-6{gap:3rem!important}.lg\\:gap-7{gap:4rem!important}.lg\\:gap-8{gap:5rem!important}.lg\\:row-gap-0{row-gap:0rem!important}.lg\\:row-gap-1{row-gap:.25rem!important}.lg\\:row-gap-2{row-gap:.5rem!important}.lg\\:row-gap-3{row-gap:1rem!important}.lg\\:row-gap-4{row-gap:1.5rem!important}.lg\\:row-gap-5{row-gap:2rem!important}.lg\\:row-gap-6{row-gap:3rem!important}.lg\\:row-gap-7{row-gap:4rem!important}.lg\\:row-gap-8{row-gap:5rem!important}.lg\\:column-gap-0{column-gap:0rem!important}.lg\\:column-gap-1{column-gap:.25rem!important}.lg\\:column-gap-2{column-gap:.5rem!important}.lg\\:column-gap-3{column-gap:1rem!important}.lg\\:column-gap-4{column-gap:1.5rem!important}.lg\\:column-gap-5{column-gap:2rem!important}.lg\\:column-gap-6{column-gap:3rem!important}.lg\\:column-gap-7{column-gap:4rem!important}.lg\\:column-gap-8{column-gap:5rem!important}}@media screen and (min-width: 1200px){.xl\\:gap-0{gap:0rem!important}.xl\\:gap-1{gap:.25rem!important}.xl\\:gap-2{gap:.5rem!important}.xl\\:gap-3{gap:1rem!important}.xl\\:gap-4{gap:1.5rem!important}.xl\\:gap-5{gap:2rem!important}.xl\\:gap-6{gap:3rem!important}.xl\\:gap-7{gap:4rem!important}.xl\\:gap-8{gap:5rem!important}.xl\\:row-gap-0{row-gap:0rem!important}.xl\\:row-gap-1{row-gap:.25rem!important}.xl\\:row-gap-2{row-gap:.5rem!important}.xl\\:row-gap-3{row-gap:1rem!important}.xl\\:row-gap-4{row-gap:1.5rem!important}.xl\\:row-gap-5{row-gap:2rem!important}.xl\\:row-gap-6{row-gap:3rem!important}.xl\\:row-gap-7{row-gap:4rem!important}.xl\\:row-gap-8{row-gap:5rem!important}.xl\\:column-gap-0{column-gap:0rem!important}.xl\\:column-gap-1{column-gap:.25rem!important}.xl\\:column-gap-2{column-gap:.5rem!important}.xl\\:column-gap-3{column-gap:1rem!important}.xl\\:column-gap-4{column-gap:1.5rem!important}.xl\\:column-gap-5{column-gap:2rem!important}.xl\\:column-gap-6{column-gap:3rem!important}.xl\\:column-gap-7{column-gap:4rem!important}.xl\\:column-gap-8{column-gap:5rem!important}}.p-0{padding:0rem!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:2rem!important}.p-6{padding:3rem!important}.p-7{padding:4rem!important}.p-8{padding:5rem!important}.pt-0{padding-top:0rem!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:2rem!important}.pt-6{padding-top:3rem!important}.pt-7{padding-top:4rem!important}.pt-8{padding-top:5rem!important}.pr-0{padding-right:0rem!important}.pr-1{padding-right:.25rem!important}.pr-2{padding-right:.5rem!important}.pr-3{padding-right:1rem!important}.pr-4{padding-right:1.5rem!important}.pr-5{padding-right:2rem!important}.pr-6{padding-right:3rem!important}.pr-7{padding-right:4rem!important}.pr-8{padding-right:5rem!important}.pl-0{padding-left:0rem!important}.pl-1{padding-left:.25rem!important}.pl-2{padding-left:.5rem!important}.pl-3{padding-left:1rem!important}.pl-4{padding-left:1.5rem!important}.pl-5{padding-left:2rem!important}.pl-6{padding-left:3rem!important}.pl-7{padding-left:4rem!important}.pl-8{padding-left:5rem!important}.pb-0{padding-bottom:0rem!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:2rem!important}.pb-6{padding-bottom:3rem!important}.pb-7{padding-bottom:4rem!important}.pb-8{padding-bottom:5rem!important}.px-0{padding-left:0rem!important;padding-right:0rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:2rem!important;padding-right:2rem!important}.px-6{padding-left:3rem!important;padding-right:3rem!important}.px-7{padding-left:4rem!important;padding-right:4rem!important}.px-8{padding-left:5rem!important;padding-right:5rem!important}.py-0{padding-top:0rem!important;padding-bottom:0rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:2rem!important;padding-bottom:2rem!important}.py-6{padding-top:3rem!important;padding-bottom:3rem!important}.py-7{padding-top:4rem!important;padding-bottom:4rem!important}.py-8{padding-top:5rem!important;padding-bottom:5rem!important}@media screen and (min-width: 576px){.sm\\:p-0{padding:0rem!important}.sm\\:p-1{padding:.25rem!important}.sm\\:p-2{padding:.5rem!important}.sm\\:p-3{padding:1rem!important}.sm\\:p-4{padding:1.5rem!important}.sm\\:p-5{padding:2rem!important}.sm\\:p-6{padding:3rem!important}.sm\\:p-7{padding:4rem!important}.sm\\:p-8{padding:5rem!important}.sm\\:pt-0{padding-top:0rem!important}.sm\\:pt-1{padding-top:.25rem!important}.sm\\:pt-2{padding-top:.5rem!important}.sm\\:pt-3{padding-top:1rem!important}.sm\\:pt-4{padding-top:1.5rem!important}.sm\\:pt-5{padding-top:2rem!important}.sm\\:pt-6{padding-top:3rem!important}.sm\\:pt-7{padding-top:4rem!important}.sm\\:pt-8{padding-top:5rem!important}.sm\\:pr-0{padding-right:0rem!important}.sm\\:pr-1{padding-right:.25rem!important}.sm\\:pr-2{padding-right:.5rem!important}.sm\\:pr-3{padding-right:1rem!important}.sm\\:pr-4{padding-right:1.5rem!important}.sm\\:pr-5{padding-right:2rem!important}.sm\\:pr-6{padding-right:3rem!important}.sm\\:pr-7{padding-right:4rem!important}.sm\\:pr-8{padding-right:5rem!important}.sm\\:pl-0{padding-left:0rem!important}.sm\\:pl-1{padding-left:.25rem!important}.sm\\:pl-2{padding-left:.5rem!important}.sm\\:pl-3{padding-left:1rem!important}.sm\\:pl-4{padding-left:1.5rem!important}.sm\\:pl-5{padding-left:2rem!important}.sm\\:pl-6{padding-left:3rem!important}.sm\\:pl-7{padding-left:4rem!important}.sm\\:pl-8{padding-left:5rem!important}.sm\\:pb-0{padding-bottom:0rem!important}.sm\\:pb-1{padding-bottom:.25rem!important}.sm\\:pb-2{padding-bottom:.5rem!important}.sm\\:pb-3{padding-bottom:1rem!important}.sm\\:pb-4{padding-bottom:1.5rem!important}.sm\\:pb-5{padding-bottom:2rem!important}.sm\\:pb-6{padding-bottom:3rem!important}.sm\\:pb-7{padding-bottom:4rem!important}.sm\\:pb-8{padding-bottom:5rem!important}.sm\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.sm\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.sm\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.sm\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.sm\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.sm\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.sm\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.sm\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.sm\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.sm\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.sm\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.sm\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.sm\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.sm\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.sm\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.sm\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.sm\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.sm\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 768px){.md\\:p-0{padding:0rem!important}.md\\:p-1{padding:.25rem!important}.md\\:p-2{padding:.5rem!important}.md\\:p-3{padding:1rem!important}.md\\:p-4{padding:1.5rem!important}.md\\:p-5{padding:2rem!important}.md\\:p-6{padding:3rem!important}.md\\:p-7{padding:4rem!important}.md\\:p-8{padding:5rem!important}.md\\:pt-0{padding-top:0rem!important}.md\\:pt-1{padding-top:.25rem!important}.md\\:pt-2{padding-top:.5rem!important}.md\\:pt-3{padding-top:1rem!important}.md\\:pt-4{padding-top:1.5rem!important}.md\\:pt-5{padding-top:2rem!important}.md\\:pt-6{padding-top:3rem!important}.md\\:pt-7{padding-top:4rem!important}.md\\:pt-8{padding-top:5rem!important}.md\\:pr-0{padding-right:0rem!important}.md\\:pr-1{padding-right:.25rem!important}.md\\:pr-2{padding-right:.5rem!important}.md\\:pr-3{padding-right:1rem!important}.md\\:pr-4{padding-right:1.5rem!important}.md\\:pr-5{padding-right:2rem!important}.md\\:pr-6{padding-right:3rem!important}.md\\:pr-7{padding-right:4rem!important}.md\\:pr-8{padding-right:5rem!important}.md\\:pl-0{padding-left:0rem!important}.md\\:pl-1{padding-left:.25rem!important}.md\\:pl-2{padding-left:.5rem!important}.md\\:pl-3{padding-left:1rem!important}.md\\:pl-4{padding-left:1.5rem!important}.md\\:pl-5{padding-left:2rem!important}.md\\:pl-6{padding-left:3rem!important}.md\\:pl-7{padding-left:4rem!important}.md\\:pl-8{padding-left:5rem!important}.md\\:pb-0{padding-bottom:0rem!important}.md\\:pb-1{padding-bottom:.25rem!important}.md\\:pb-2{padding-bottom:.5rem!important}.md\\:pb-3{padding-bottom:1rem!important}.md\\:pb-4{padding-bottom:1.5rem!important}.md\\:pb-5{padding-bottom:2rem!important}.md\\:pb-6{padding-bottom:3rem!important}.md\\:pb-7{padding-bottom:4rem!important}.md\\:pb-8{padding-bottom:5rem!important}.md\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.md\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.md\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.md\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.md\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.md\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.md\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.md\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.md\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.md\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.md\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.md\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.md\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.md\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.md\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.md\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.md\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.md\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 992px){.lg\\:p-0{padding:0rem!important}.lg\\:p-1{padding:.25rem!important}.lg\\:p-2{padding:.5rem!important}.lg\\:p-3{padding:1rem!important}.lg\\:p-4{padding:1.5rem!important}.lg\\:p-5{padding:2rem!important}.lg\\:p-6{padding:3rem!important}.lg\\:p-7{padding:4rem!important}.lg\\:p-8{padding:5rem!important}.lg\\:pt-0{padding-top:0rem!important}.lg\\:pt-1{padding-top:.25rem!important}.lg\\:pt-2{padding-top:.5rem!important}.lg\\:pt-3{padding-top:1rem!important}.lg\\:pt-4{padding-top:1.5rem!important}.lg\\:pt-5{padding-top:2rem!important}.lg\\:pt-6{padding-top:3rem!important}.lg\\:pt-7{padding-top:4rem!important}.lg\\:pt-8{padding-top:5rem!important}.lg\\:pr-0{padding-right:0rem!important}.lg\\:pr-1{padding-right:.25rem!important}.lg\\:pr-2{padding-right:.5rem!important}.lg\\:pr-3{padding-right:1rem!important}.lg\\:pr-4{padding-right:1.5rem!important}.lg\\:pr-5{padding-right:2rem!important}.lg\\:pr-6{padding-right:3rem!important}.lg\\:pr-7{padding-right:4rem!important}.lg\\:pr-8{padding-right:5rem!important}.lg\\:pl-0{padding-left:0rem!important}.lg\\:pl-1{padding-left:.25rem!important}.lg\\:pl-2{padding-left:.5rem!important}.lg\\:pl-3{padding-left:1rem!important}.lg\\:pl-4{padding-left:1.5rem!important}.lg\\:pl-5{padding-left:2rem!important}.lg\\:pl-6{padding-left:3rem!important}.lg\\:pl-7{padding-left:4rem!important}.lg\\:pl-8{padding-left:5rem!important}.lg\\:pb-0{padding-bottom:0rem!important}.lg\\:pb-1{padding-bottom:.25rem!important}.lg\\:pb-2{padding-bottom:.5rem!important}.lg\\:pb-3{padding-bottom:1rem!important}.lg\\:pb-4{padding-bottom:1.5rem!important}.lg\\:pb-5{padding-bottom:2rem!important}.lg\\:pb-6{padding-bottom:3rem!important}.lg\\:pb-7{padding-bottom:4rem!important}.lg\\:pb-8{padding-bottom:5rem!important}.lg\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.lg\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.lg\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.lg\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.lg\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.lg\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.lg\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.lg\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.lg\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.lg\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.lg\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.lg\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.lg\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.lg\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.lg\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.lg\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.lg\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.lg\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width: 1200px){.xl\\:p-0{padding:0rem!important}.xl\\:p-1{padding:.25rem!important}.xl\\:p-2{padding:.5rem!important}.xl\\:p-3{padding:1rem!important}.xl\\:p-4{padding:1.5rem!important}.xl\\:p-5{padding:2rem!important}.xl\\:p-6{padding:3rem!important}.xl\\:p-7{padding:4rem!important}.xl\\:p-8{padding:5rem!important}.xl\\:pt-0{padding-top:0rem!important}.xl\\:pt-1{padding-top:.25rem!important}.xl\\:pt-2{padding-top:.5rem!important}.xl\\:pt-3{padding-top:1rem!important}.xl\\:pt-4{padding-top:1.5rem!important}.xl\\:pt-5{padding-top:2rem!important}.xl\\:pt-6{padding-top:3rem!important}.xl\\:pt-7{padding-top:4rem!important}.xl\\:pt-8{padding-top:5rem!important}.xl\\:pr-0{padding-right:0rem!important}.xl\\:pr-1{padding-right:.25rem!important}.xl\\:pr-2{padding-right:.5rem!important}.xl\\:pr-3{padding-right:1rem!important}.xl\\:pr-4{padding-right:1.5rem!important}.xl\\:pr-5{padding-right:2rem!important}.xl\\:pr-6{padding-right:3rem!important}.xl\\:pr-7{padding-right:4rem!important}.xl\\:pr-8{padding-right:5rem!important}.xl\\:pl-0{padding-left:0rem!important}.xl\\:pl-1{padding-left:.25rem!important}.xl\\:pl-2{padding-left:.5rem!important}.xl\\:pl-3{padding-left:1rem!important}.xl\\:pl-4{padding-left:1.5rem!important}.xl\\:pl-5{padding-left:2rem!important}.xl\\:pl-6{padding-left:3rem!important}.xl\\:pl-7{padding-left:4rem!important}.xl\\:pl-8{padding-left:5rem!important}.xl\\:pb-0{padding-bottom:0rem!important}.xl\\:pb-1{padding-bottom:.25rem!important}.xl\\:pb-2{padding-bottom:.5rem!important}.xl\\:pb-3{padding-bottom:1rem!important}.xl\\:pb-4{padding-bottom:1.5rem!important}.xl\\:pb-5{padding-bottom:2rem!important}.xl\\:pb-6{padding-bottom:3rem!important}.xl\\:pb-7{padding-bottom:4rem!important}.xl\\:pb-8{padding-bottom:5rem!important}.xl\\:px-0{padding-left:0rem!important;padding-right:0rem!important}.xl\\:px-1{padding-left:.25rem!important;padding-right:.25rem!important}.xl\\:px-2{padding-left:.5rem!important;padding-right:.5rem!important}.xl\\:px-3{padding-left:1rem!important;padding-right:1rem!important}.xl\\:px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.xl\\:px-5{padding-left:2rem!important;padding-right:2rem!important}.xl\\:px-6{padding-left:3rem!important;padding-right:3rem!important}.xl\\:px-7{padding-left:4rem!important;padding-right:4rem!important}.xl\\:px-8{padding-left:5rem!important;padding-right:5rem!important}.xl\\:py-0{padding-top:0rem!important;padding-bottom:0rem!important}.xl\\:py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.xl\\:py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.xl\\:py-3{padding-top:1rem!important;padding-bottom:1rem!important}.xl\\:py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.xl\\:py-5{padding-top:2rem!important;padding-bottom:2rem!important}.xl\\:py-6{padding-top:3rem!important;padding-bottom:3rem!important}.xl\\:py-7{padding-top:4rem!important;padding-bottom:4rem!important}.xl\\:py-8{padding-top:5rem!important;padding-bottom:5rem!important}}.m-0{margin:0rem!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:2rem!important}.m-6{margin:3rem!important}.m-7{margin:4rem!important}.m-8{margin:5rem!important}.-m-1{margin:-.25rem!important}.-m-2{margin:-.5rem!important}.-m-3{margin:-1rem!important}.-m-4{margin:-1.5rem!important}.-m-5{margin:-2rem!important}.-m-6{margin:-3rem!important}.-m-7{margin:-4rem!important}.-m-8{margin:-5rem!important}.m-auto{margin:auto!important}.mt-0{margin-top:0rem!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:2rem!important}.mt-6{margin-top:3rem!important}.mt-7{margin-top:4rem!important}.mt-8{margin-top:5rem!important}.-mt-1{margin-top:-.25rem!important}.-mt-2{margin-top:-.5rem!important}.-mt-3{margin-top:-1rem!important}.-mt-4{margin-top:-1.5rem!important}.-mt-5{margin-top:-2rem!important}.-mt-6{margin-top:-3rem!important}.-mt-7{margin-top:-4rem!important}.-mt-8{margin-top:-5rem!important}.mt-auto{margin-top:auto!important}.mr-0{margin-right:0rem!important}.mr-1{margin-right:.25rem!important}.mr-2{margin-right:.5rem!important}.mr-3{margin-right:1rem!important}.mr-4{margin-right:1.5rem!important}.mr-5{margin-right:2rem!important}.mr-6{margin-right:3rem!important}.mr-7{margin-right:4rem!important}.mr-8{margin-right:5rem!important}.-mr-1{margin-right:-.25rem!important}.-mr-2{margin-right:-.5rem!important}.-mr-3{margin-right:-1rem!important}.-mr-4{margin-right:-1.5rem!important}.-mr-5{margin-right:-2rem!important}.-mr-6{margin-right:-3rem!important}.-mr-7{margin-right:-4rem!important}.-mr-8{margin-right:-5rem!important}.mr-auto{margin-right:auto!important}.ml-0{margin-left:0rem!important}.ml-1{margin-left:.25rem!important}.ml-2{margin-left:.5rem!important}.ml-3{margin-left:1rem!important}.ml-4{margin-left:1.5rem!important}.ml-5{margin-left:2rem!important}.ml-6{margin-left:3rem!important}.ml-7{margin-left:4rem!important}.ml-8{margin-left:5rem!important}.-ml-1{margin-left:-.25rem!important}.-ml-2{margin-left:-.5rem!important}.-ml-3{margin-left:-1rem!important}.-ml-4{margin-left:-1.5rem!important}.-ml-5{margin-left:-2rem!important}.-ml-6{margin-left:-3rem!important}.-ml-7{margin-left:-4rem!important}.-ml-8{margin-left:-5rem!important}.ml-auto{margin-left:auto!important}.mb-0{margin-bottom:0rem!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:2rem!important}.mb-6{margin-bottom:3rem!important}.mb-7{margin-bottom:4rem!important}.mb-8{margin-bottom:5rem!important}.-mb-1{margin-bottom:-.25rem!important}.-mb-2{margin-bottom:-.5rem!important}.-mb-3{margin-bottom:-1rem!important}.-mb-4{margin-bottom:-1.5rem!important}.-mb-5{margin-bottom:-2rem!important}.-mb-6{margin-bottom:-3rem!important}.-mb-7{margin-bottom:-4rem!important}.-mb-8{margin-bottom:-5rem!important}.mb-auto{margin-bottom:auto!important}.mx-0{margin-left:0rem!important;margin-right:0rem!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:2rem!important;margin-right:2rem!important}.mx-6{margin-left:3rem!important;margin-right:3rem!important}.mx-7{margin-left:4rem!important;margin-right:4rem!important}.mx-8{margin-left:5rem!important;margin-right:5rem!important}.-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0rem!important;margin-bottom:0rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:2rem!important;margin-bottom:2rem!important}.my-6{margin-top:3rem!important;margin-bottom:3rem!important}.my-7{margin-top:4rem!important;margin-bottom:4rem!important}.my-8{margin-top:5rem!important;margin-bottom:5rem!important}.-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}@media screen and (min-width: 576px){.sm\\:m-0{margin:0rem!important}.sm\\:m-1{margin:.25rem!important}.sm\\:m-2{margin:.5rem!important}.sm\\:m-3{margin:1rem!important}.sm\\:m-4{margin:1.5rem!important}.sm\\:m-5{margin:2rem!important}.sm\\:m-6{margin:3rem!important}.sm\\:m-7{margin:4rem!important}.sm\\:m-8{margin:5rem!important}.sm\\:-m-1{margin:-.25rem!important}.sm\\:-m-2{margin:-.5rem!important}.sm\\:-m-3{margin:-1rem!important}.sm\\:-m-4{margin:-1.5rem!important}.sm\\:-m-5{margin:-2rem!important}.sm\\:-m-6{margin:-3rem!important}.sm\\:-m-7{margin:-4rem!important}.sm\\:-m-8{margin:-5rem!important}.sm\\:m-auto{margin:auto!important}.sm\\:mt-0{margin-top:0rem!important}.sm\\:mt-1{margin-top:.25rem!important}.sm\\:mt-2{margin-top:.5rem!important}.sm\\:mt-3{margin-top:1rem!important}.sm\\:mt-4{margin-top:1.5rem!important}.sm\\:mt-5{margin-top:2rem!important}.sm\\:mt-6{margin-top:3rem!important}.sm\\:mt-7{margin-top:4rem!important}.sm\\:mt-8{margin-top:5rem!important}.sm\\:-mt-1{margin-top:-.25rem!important}.sm\\:-mt-2{margin-top:-.5rem!important}.sm\\:-mt-3{margin-top:-1rem!important}.sm\\:-mt-4{margin-top:-1.5rem!important}.sm\\:-mt-5{margin-top:-2rem!important}.sm\\:-mt-6{margin-top:-3rem!important}.sm\\:-mt-7{margin-top:-4rem!important}.sm\\:-mt-8{margin-top:-5rem!important}.sm\\:mt-auto{margin-top:auto!important}.sm\\:mr-0{margin-right:0rem!important}.sm\\:mr-1{margin-right:.25rem!important}.sm\\:mr-2{margin-right:.5rem!important}.sm\\:mr-3{margin-right:1rem!important}.sm\\:mr-4{margin-right:1.5rem!important}.sm\\:mr-5{margin-right:2rem!important}.sm\\:mr-6{margin-right:3rem!important}.sm\\:mr-7{margin-right:4rem!important}.sm\\:mr-8{margin-right:5rem!important}.sm\\:-mr-1{margin-right:-.25rem!important}.sm\\:-mr-2{margin-right:-.5rem!important}.sm\\:-mr-3{margin-right:-1rem!important}.sm\\:-mr-4{margin-right:-1.5rem!important}.sm\\:-mr-5{margin-right:-2rem!important}.sm\\:-mr-6{margin-right:-3rem!important}.sm\\:-mr-7{margin-right:-4rem!important}.sm\\:-mr-8{margin-right:-5rem!important}.sm\\:mr-auto{margin-right:auto!important}.sm\\:ml-0{margin-left:0rem!important}.sm\\:ml-1{margin-left:.25rem!important}.sm\\:ml-2{margin-left:.5rem!important}.sm\\:ml-3{margin-left:1rem!important}.sm\\:ml-4{margin-left:1.5rem!important}.sm\\:ml-5{margin-left:2rem!important}.sm\\:ml-6{margin-left:3rem!important}.sm\\:ml-7{margin-left:4rem!important}.sm\\:ml-8{margin-left:5rem!important}.sm\\:-ml-1{margin-left:-.25rem!important}.sm\\:-ml-2{margin-left:-.5rem!important}.sm\\:-ml-3{margin-left:-1rem!important}.sm\\:-ml-4{margin-left:-1.5rem!important}.sm\\:-ml-5{margin-left:-2rem!important}.sm\\:-ml-6{margin-left:-3rem!important}.sm\\:-ml-7{margin-left:-4rem!important}.sm\\:-ml-8{margin-left:-5rem!important}.sm\\:ml-auto{margin-left:auto!important}.sm\\:mb-0{margin-bottom:0rem!important}.sm\\:mb-1{margin-bottom:.25rem!important}.sm\\:mb-2{margin-bottom:.5rem!important}.sm\\:mb-3{margin-bottom:1rem!important}.sm\\:mb-4{margin-bottom:1.5rem!important}.sm\\:mb-5{margin-bottom:2rem!important}.sm\\:mb-6{margin-bottom:3rem!important}.sm\\:mb-7{margin-bottom:4rem!important}.sm\\:mb-8{margin-bottom:5rem!important}.sm\\:-mb-1{margin-bottom:-.25rem!important}.sm\\:-mb-2{margin-bottom:-.5rem!important}.sm\\:-mb-3{margin-bottom:-1rem!important}.sm\\:-mb-4{margin-bottom:-1.5rem!important}.sm\\:-mb-5{margin-bottom:-2rem!important}.sm\\:-mb-6{margin-bottom:-3rem!important}.sm\\:-mb-7{margin-bottom:-4rem!important}.sm\\:-mb-8{margin-bottom:-5rem!important}.sm\\:mb-auto{margin-bottom:auto!important}.sm\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.sm\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.sm\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.sm\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.sm\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.sm\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.sm\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.sm\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.sm\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.sm\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.sm\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.sm\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.sm\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.sm\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.sm\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.sm\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.sm\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.sm\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.sm\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.sm\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.sm\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.sm\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.sm\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.sm\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.sm\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.sm\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.sm\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.sm\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.sm\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.sm\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.sm\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.sm\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.sm\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.sm\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.sm\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.sm\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 768px){.md\\:m-0{margin:0rem!important}.md\\:m-1{margin:.25rem!important}.md\\:m-2{margin:.5rem!important}.md\\:m-3{margin:1rem!important}.md\\:m-4{margin:1.5rem!important}.md\\:m-5{margin:2rem!important}.md\\:m-6{margin:3rem!important}.md\\:m-7{margin:4rem!important}.md\\:m-8{margin:5rem!important}.md\\:-m-1{margin:-.25rem!important}.md\\:-m-2{margin:-.5rem!important}.md\\:-m-3{margin:-1rem!important}.md\\:-m-4{margin:-1.5rem!important}.md\\:-m-5{margin:-2rem!important}.md\\:-m-6{margin:-3rem!important}.md\\:-m-7{margin:-4rem!important}.md\\:-m-8{margin:-5rem!important}.md\\:m-auto{margin:auto!important}.md\\:mt-0{margin-top:0rem!important}.md\\:mt-1{margin-top:.25rem!important}.md\\:mt-2{margin-top:.5rem!important}.md\\:mt-3{margin-top:1rem!important}.md\\:mt-4{margin-top:1.5rem!important}.md\\:mt-5{margin-top:2rem!important}.md\\:mt-6{margin-top:3rem!important}.md\\:mt-7{margin-top:4rem!important}.md\\:mt-8{margin-top:5rem!important}.md\\:-mt-1{margin-top:-.25rem!important}.md\\:-mt-2{margin-top:-.5rem!important}.md\\:-mt-3{margin-top:-1rem!important}.md\\:-mt-4{margin-top:-1.5rem!important}.md\\:-mt-5{margin-top:-2rem!important}.md\\:-mt-6{margin-top:-3rem!important}.md\\:-mt-7{margin-top:-4rem!important}.md\\:-mt-8{margin-top:-5rem!important}.md\\:mt-auto{margin-top:auto!important}.md\\:mr-0{margin-right:0rem!important}.md\\:mr-1{margin-right:.25rem!important}.md\\:mr-2{margin-right:.5rem!important}.md\\:mr-3{margin-right:1rem!important}.md\\:mr-4{margin-right:1.5rem!important}.md\\:mr-5{margin-right:2rem!important}.md\\:mr-6{margin-right:3rem!important}.md\\:mr-7{margin-right:4rem!important}.md\\:mr-8{margin-right:5rem!important}.md\\:-mr-1{margin-right:-.25rem!important}.md\\:-mr-2{margin-right:-.5rem!important}.md\\:-mr-3{margin-right:-1rem!important}.md\\:-mr-4{margin-right:-1.5rem!important}.md\\:-mr-5{margin-right:-2rem!important}.md\\:-mr-6{margin-right:-3rem!important}.md\\:-mr-7{margin-right:-4rem!important}.md\\:-mr-8{margin-right:-5rem!important}.md\\:mr-auto{margin-right:auto!important}.md\\:ml-0{margin-left:0rem!important}.md\\:ml-1{margin-left:.25rem!important}.md\\:ml-2{margin-left:.5rem!important}.md\\:ml-3{margin-left:1rem!important}.md\\:ml-4{margin-left:1.5rem!important}.md\\:ml-5{margin-left:2rem!important}.md\\:ml-6{margin-left:3rem!important}.md\\:ml-7{margin-left:4rem!important}.md\\:ml-8{margin-left:5rem!important}.md\\:-ml-1{margin-left:-.25rem!important}.md\\:-ml-2{margin-left:-.5rem!important}.md\\:-ml-3{margin-left:-1rem!important}.md\\:-ml-4{margin-left:-1.5rem!important}.md\\:-ml-5{margin-left:-2rem!important}.md\\:-ml-6{margin-left:-3rem!important}.md\\:-ml-7{margin-left:-4rem!important}.md\\:-ml-8{margin-left:-5rem!important}.md\\:ml-auto{margin-left:auto!important}.md\\:mb-0{margin-bottom:0rem!important}.md\\:mb-1{margin-bottom:.25rem!important}.md\\:mb-2{margin-bottom:.5rem!important}.md\\:mb-3{margin-bottom:1rem!important}.md\\:mb-4{margin-bottom:1.5rem!important}.md\\:mb-5{margin-bottom:2rem!important}.md\\:mb-6{margin-bottom:3rem!important}.md\\:mb-7{margin-bottom:4rem!important}.md\\:mb-8{margin-bottom:5rem!important}.md\\:-mb-1{margin-bottom:-.25rem!important}.md\\:-mb-2{margin-bottom:-.5rem!important}.md\\:-mb-3{margin-bottom:-1rem!important}.md\\:-mb-4{margin-bottom:-1.5rem!important}.md\\:-mb-5{margin-bottom:-2rem!important}.md\\:-mb-6{margin-bottom:-3rem!important}.md\\:-mb-7{margin-bottom:-4rem!important}.md\\:-mb-8{margin-bottom:-5rem!important}.md\\:mb-auto{margin-bottom:auto!important}.md\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.md\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.md\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.md\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.md\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.md\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.md\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.md\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.md\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.md\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.md\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.md\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.md\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.md\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.md\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.md\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.md\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.md\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.md\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.md\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.md\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.md\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.md\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.md\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.md\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.md\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.md\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.md\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.md\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.md\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.md\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.md\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.md\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.md\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.md\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.md\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 992px){.lg\\:m-0{margin:0rem!important}.lg\\:m-1{margin:.25rem!important}.lg\\:m-2{margin:.5rem!important}.lg\\:m-3{margin:1rem!important}.lg\\:m-4{margin:1.5rem!important}.lg\\:m-5{margin:2rem!important}.lg\\:m-6{margin:3rem!important}.lg\\:m-7{margin:4rem!important}.lg\\:m-8{margin:5rem!important}.lg\\:-m-1{margin:-.25rem!important}.lg\\:-m-2{margin:-.5rem!important}.lg\\:-m-3{margin:-1rem!important}.lg\\:-m-4{margin:-1.5rem!important}.lg\\:-m-5{margin:-2rem!important}.lg\\:-m-6{margin:-3rem!important}.lg\\:-m-7{margin:-4rem!important}.lg\\:-m-8{margin:-5rem!important}.lg\\:m-auto{margin:auto!important}.lg\\:mt-0{margin-top:0rem!important}.lg\\:mt-1{margin-top:.25rem!important}.lg\\:mt-2{margin-top:.5rem!important}.lg\\:mt-3{margin-top:1rem!important}.lg\\:mt-4{margin-top:1.5rem!important}.lg\\:mt-5{margin-top:2rem!important}.lg\\:mt-6{margin-top:3rem!important}.lg\\:mt-7{margin-top:4rem!important}.lg\\:mt-8{margin-top:5rem!important}.lg\\:-mt-1{margin-top:-.25rem!important}.lg\\:-mt-2{margin-top:-.5rem!important}.lg\\:-mt-3{margin-top:-1rem!important}.lg\\:-mt-4{margin-top:-1.5rem!important}.lg\\:-mt-5{margin-top:-2rem!important}.lg\\:-mt-6{margin-top:-3rem!important}.lg\\:-mt-7{margin-top:-4rem!important}.lg\\:-mt-8{margin-top:-5rem!important}.lg\\:mt-auto{margin-top:auto!important}.lg\\:mr-0{margin-right:0rem!important}.lg\\:mr-1{margin-right:.25rem!important}.lg\\:mr-2{margin-right:.5rem!important}.lg\\:mr-3{margin-right:1rem!important}.lg\\:mr-4{margin-right:1.5rem!important}.lg\\:mr-5{margin-right:2rem!important}.lg\\:mr-6{margin-right:3rem!important}.lg\\:mr-7{margin-right:4rem!important}.lg\\:mr-8{margin-right:5rem!important}.lg\\:-mr-1{margin-right:-.25rem!important}.lg\\:-mr-2{margin-right:-.5rem!important}.lg\\:-mr-3{margin-right:-1rem!important}.lg\\:-mr-4{margin-right:-1.5rem!important}.lg\\:-mr-5{margin-right:-2rem!important}.lg\\:-mr-6{margin-right:-3rem!important}.lg\\:-mr-7{margin-right:-4rem!important}.lg\\:-mr-8{margin-right:-5rem!important}.lg\\:mr-auto{margin-right:auto!important}.lg\\:ml-0{margin-left:0rem!important}.lg\\:ml-1{margin-left:.25rem!important}.lg\\:ml-2{margin-left:.5rem!important}.lg\\:ml-3{margin-left:1rem!important}.lg\\:ml-4{margin-left:1.5rem!important}.lg\\:ml-5{margin-left:2rem!important}.lg\\:ml-6{margin-left:3rem!important}.lg\\:ml-7{margin-left:4rem!important}.lg\\:ml-8{margin-left:5rem!important}.lg\\:-ml-1{margin-left:-.25rem!important}.lg\\:-ml-2{margin-left:-.5rem!important}.lg\\:-ml-3{margin-left:-1rem!important}.lg\\:-ml-4{margin-left:-1.5rem!important}.lg\\:-ml-5{margin-left:-2rem!important}.lg\\:-ml-6{margin-left:-3rem!important}.lg\\:-ml-7{margin-left:-4rem!important}.lg\\:-ml-8{margin-left:-5rem!important}.lg\\:ml-auto{margin-left:auto!important}.lg\\:mb-0{margin-bottom:0rem!important}.lg\\:mb-1{margin-bottom:.25rem!important}.lg\\:mb-2{margin-bottom:.5rem!important}.lg\\:mb-3{margin-bottom:1rem!important}.lg\\:mb-4{margin-bottom:1.5rem!important}.lg\\:mb-5{margin-bottom:2rem!important}.lg\\:mb-6{margin-bottom:3rem!important}.lg\\:mb-7{margin-bottom:4rem!important}.lg\\:mb-8{margin-bottom:5rem!important}.lg\\:-mb-1{margin-bottom:-.25rem!important}.lg\\:-mb-2{margin-bottom:-.5rem!important}.lg\\:-mb-3{margin-bottom:-1rem!important}.lg\\:-mb-4{margin-bottom:-1.5rem!important}.lg\\:-mb-5{margin-bottom:-2rem!important}.lg\\:-mb-6{margin-bottom:-3rem!important}.lg\\:-mb-7{margin-bottom:-4rem!important}.lg\\:-mb-8{margin-bottom:-5rem!important}.lg\\:mb-auto{margin-bottom:auto!important}.lg\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.lg\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.lg\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.lg\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.lg\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.lg\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.lg\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.lg\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.lg\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.lg\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.lg\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.lg\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.lg\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.lg\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.lg\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.lg\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.lg\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.lg\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.lg\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.lg\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.lg\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.lg\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.lg\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.lg\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.lg\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.lg\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.lg\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.lg\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.lg\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.lg\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.lg\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.lg\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.lg\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.lg\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.lg\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.lg\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}@media screen and (min-width: 1200px){.xl\\:m-0{margin:0rem!important}.xl\\:m-1{margin:.25rem!important}.xl\\:m-2{margin:.5rem!important}.xl\\:m-3{margin:1rem!important}.xl\\:m-4{margin:1.5rem!important}.xl\\:m-5{margin:2rem!important}.xl\\:m-6{margin:3rem!important}.xl\\:m-7{margin:4rem!important}.xl\\:m-8{margin:5rem!important}.xl\\:-m-1{margin:-.25rem!important}.xl\\:-m-2{margin:-.5rem!important}.xl\\:-m-3{margin:-1rem!important}.xl\\:-m-4{margin:-1.5rem!important}.xl\\:-m-5{margin:-2rem!important}.xl\\:-m-6{margin:-3rem!important}.xl\\:-m-7{margin:-4rem!important}.xl\\:-m-8{margin:-5rem!important}.xl\\:m-auto{margin:auto!important}.xl\\:mt-0{margin-top:0rem!important}.xl\\:mt-1{margin-top:.25rem!important}.xl\\:mt-2{margin-top:.5rem!important}.xl\\:mt-3{margin-top:1rem!important}.xl\\:mt-4{margin-top:1.5rem!important}.xl\\:mt-5{margin-top:2rem!important}.xl\\:mt-6{margin-top:3rem!important}.xl\\:mt-7{margin-top:4rem!important}.xl\\:mt-8{margin-top:5rem!important}.xl\\:-mt-1{margin-top:-.25rem!important}.xl\\:-mt-2{margin-top:-.5rem!important}.xl\\:-mt-3{margin-top:-1rem!important}.xl\\:-mt-4{margin-top:-1.5rem!important}.xl\\:-mt-5{margin-top:-2rem!important}.xl\\:-mt-6{margin-top:-3rem!important}.xl\\:-mt-7{margin-top:-4rem!important}.xl\\:-mt-8{margin-top:-5rem!important}.xl\\:mt-auto{margin-top:auto!important}.xl\\:mr-0{margin-right:0rem!important}.xl\\:mr-1{margin-right:.25rem!important}.xl\\:mr-2{margin-right:.5rem!important}.xl\\:mr-3{margin-right:1rem!important}.xl\\:mr-4{margin-right:1.5rem!important}.xl\\:mr-5{margin-right:2rem!important}.xl\\:mr-6{margin-right:3rem!important}.xl\\:mr-7{margin-right:4rem!important}.xl\\:mr-8{margin-right:5rem!important}.xl\\:-mr-1{margin-right:-.25rem!important}.xl\\:-mr-2{margin-right:-.5rem!important}.xl\\:-mr-3{margin-right:-1rem!important}.xl\\:-mr-4{margin-right:-1.5rem!important}.xl\\:-mr-5{margin-right:-2rem!important}.xl\\:-mr-6{margin-right:-3rem!important}.xl\\:-mr-7{margin-right:-4rem!important}.xl\\:-mr-8{margin-right:-5rem!important}.xl\\:mr-auto{margin-right:auto!important}.xl\\:ml-0{margin-left:0rem!important}.xl\\:ml-1{margin-left:.25rem!important}.xl\\:ml-2{margin-left:.5rem!important}.xl\\:ml-3{margin-left:1rem!important}.xl\\:ml-4{margin-left:1.5rem!important}.xl\\:ml-5{margin-left:2rem!important}.xl\\:ml-6{margin-left:3rem!important}.xl\\:ml-7{margin-left:4rem!important}.xl\\:ml-8{margin-left:5rem!important}.xl\\:-ml-1{margin-left:-.25rem!important}.xl\\:-ml-2{margin-left:-.5rem!important}.xl\\:-ml-3{margin-left:-1rem!important}.xl\\:-ml-4{margin-left:-1.5rem!important}.xl\\:-ml-5{margin-left:-2rem!important}.xl\\:-ml-6{margin-left:-3rem!important}.xl\\:-ml-7{margin-left:-4rem!important}.xl\\:-ml-8{margin-left:-5rem!important}.xl\\:ml-auto{margin-left:auto!important}.xl\\:mb-0{margin-bottom:0rem!important}.xl\\:mb-1{margin-bottom:.25rem!important}.xl\\:mb-2{margin-bottom:.5rem!important}.xl\\:mb-3{margin-bottom:1rem!important}.xl\\:mb-4{margin-bottom:1.5rem!important}.xl\\:mb-5{margin-bottom:2rem!important}.xl\\:mb-6{margin-bottom:3rem!important}.xl\\:mb-7{margin-bottom:4rem!important}.xl\\:mb-8{margin-bottom:5rem!important}.xl\\:-mb-1{margin-bottom:-.25rem!important}.xl\\:-mb-2{margin-bottom:-.5rem!important}.xl\\:-mb-3{margin-bottom:-1rem!important}.xl\\:-mb-4{margin-bottom:-1.5rem!important}.xl\\:-mb-5{margin-bottom:-2rem!important}.xl\\:-mb-6{margin-bottom:-3rem!important}.xl\\:-mb-7{margin-bottom:-4rem!important}.xl\\:-mb-8{margin-bottom:-5rem!important}.xl\\:mb-auto{margin-bottom:auto!important}.xl\\:mx-0{margin-left:0rem!important;margin-right:0rem!important}.xl\\:mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.xl\\:mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.xl\\:mx-3{margin-left:1rem!important;margin-right:1rem!important}.xl\\:mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.xl\\:mx-5{margin-left:2rem!important;margin-right:2rem!important}.xl\\:mx-6{margin-left:3rem!important;margin-right:3rem!important}.xl\\:mx-7{margin-left:4rem!important;margin-right:4rem!important}.xl\\:mx-8{margin-left:5rem!important;margin-right:5rem!important}.xl\\:-mx-1{margin-left:-.25rem!important;margin-right:-.25rem!important}.xl\\:-mx-2{margin-left:-.5rem!important;margin-right:-.5rem!important}.xl\\:-mx-3{margin-left:-1rem!important;margin-right:-1rem!important}.xl\\:-mx-4{margin-left:-1.5rem!important;margin-right:-1.5rem!important}.xl\\:-mx-5{margin-left:-2rem!important;margin-right:-2rem!important}.xl\\:-mx-6{margin-left:-3rem!important;margin-right:-3rem!important}.xl\\:-mx-7{margin-left:-4rem!important;margin-right:-4rem!important}.xl\\:-mx-8{margin-left:-5rem!important;margin-right:-5rem!important}.xl\\:mx-auto{margin-left:auto!important;margin-right:auto!important}.xl\\:my-0{margin-top:0rem!important;margin-bottom:0rem!important}.xl\\:my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.xl\\:my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.xl\\:my-3{margin-top:1rem!important;margin-bottom:1rem!important}.xl\\:my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.xl\\:my-5{margin-top:2rem!important;margin-bottom:2rem!important}.xl\\:my-6{margin-top:3rem!important;margin-bottom:3rem!important}.xl\\:my-7{margin-top:4rem!important;margin-bottom:4rem!important}.xl\\:my-8{margin-top:5rem!important;margin-bottom:5rem!important}.xl\\:-my-1{margin-top:-.25rem!important;margin-bottom:-.25rem!important}.xl\\:-my-2{margin-top:-.5rem!important;margin-bottom:-.5rem!important}.xl\\:-my-3{margin-top:-1rem!important;margin-bottom:-1rem!important}.xl\\:-my-4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important}.xl\\:-my-5{margin-top:-2rem!important;margin-bottom:-2rem!important}.xl\\:-my-6{margin-top:-3rem!important;margin-bottom:-3rem!important}.xl\\:-my-7{margin-top:-4rem!important;margin-bottom:-4rem!important}.xl\\:-my-8{margin-top:-5rem!important;margin-bottom:-5rem!important}.xl\\:my-auto{margin-top:auto!important;margin-bottom:auto!important}}.shadow-none{box-shadow:none!important}.shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.focus\\:shadow-none:focus{box-shadow:none!important}.hover\\:shadow-none:hover,.active\\:shadow-none:active{box-shadow:none!important}.focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.hover\\:shadow-1:hover,.active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.hover\\:shadow-2:hover,.active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.hover\\:shadow-3:hover,.active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.hover\\:shadow-4:hover,.active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.hover\\:shadow-5:hover,.active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.hover\\:shadow-6:hover,.active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.hover\\:shadow-7:hover,.active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.hover\\:shadow-8:hover,.active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}@media screen and (min-width: 576px){.sm\\:shadow-none{box-shadow:none!important}.sm\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:focus\\:shadow-none:focus{box-shadow:none!important}.sm\\:hover\\:shadow-none:hover,.sm\\:active\\:shadow-none:active{box-shadow:none!important}.sm\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:hover\\:shadow-1:hover,.sm\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.sm\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:hover\\:shadow-2:hover,.sm\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.sm\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:hover\\:shadow-3:hover,.sm\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.sm\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:hover\\:shadow-4:hover,.sm\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.sm\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:hover\\:shadow-5:hover,.sm\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.sm\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:hover\\:shadow-6:hover,.sm\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.sm\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:hover\\:shadow-7:hover,.sm\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.sm\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.sm\\:hover\\:shadow-8:hover,.sm\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 768px){.md\\:shadow-none{box-shadow:none!important}.md\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:focus\\:shadow-none:focus{box-shadow:none!important}.md\\:hover\\:shadow-none:hover,.md\\:active\\:shadow-none:active{box-shadow:none!important}.md\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:hover\\:shadow-1:hover,.md\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.md\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:hover\\:shadow-2:hover,.md\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.md\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:hover\\:shadow-3:hover,.md\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.md\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:hover\\:shadow-4:hover,.md\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.md\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:hover\\:shadow-5:hover,.md\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.md\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:hover\\:shadow-6:hover,.md\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.md\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:hover\\:shadow-7:hover,.md\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.md\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.md\\:hover\\:shadow-8:hover,.md\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 992px){.lg\\:shadow-none{box-shadow:none!important}.lg\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:focus\\:shadow-none:focus{box-shadow:none!important}.lg\\:hover\\:shadow-none:hover,.lg\\:active\\:shadow-none:active{box-shadow:none!important}.lg\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:hover\\:shadow-1:hover,.lg\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.lg\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:hover\\:shadow-2:hover,.lg\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.lg\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:hover\\:shadow-3:hover,.lg\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.lg\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:hover\\:shadow-4:hover,.lg\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.lg\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:hover\\:shadow-5:hover,.lg\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.lg\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:hover\\:shadow-6:hover,.lg\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.lg\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:hover\\:shadow-7:hover,.lg\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.lg\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.lg\\:hover\\:shadow-8:hover,.lg\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}@media screen and (min-width: 1200px){.xl\\:shadow-none{box-shadow:none!important}.xl\\:shadow-1{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:shadow-2{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:shadow-3{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:shadow-4{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:shadow-5{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:shadow-6{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:shadow-7{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:shadow-8{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:focus\\:shadow-none:focus{box-shadow:none!important}.xl\\:hover\\:shadow-none:hover,.xl\\:active\\:shadow-none:active{box-shadow:none!important}.xl\\:focus\\:shadow-1:focus{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:hover\\:shadow-1:hover,.xl\\:active\\:shadow-1:active{box-shadow:0 3px 5px #00000005,0 0 2px #0000000d,0 1px 4px #00000014!important}.xl\\:focus\\:shadow-2:focus{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:hover\\:shadow-2:hover,.xl\\:active\\:shadow-2:active{box-shadow:0 4px 10px #00000008,0 0 2px #0000000f,0 2px 6px #0000001f!important}.xl\\:focus\\:shadow-3:focus{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:hover\\:shadow-3:hover,.xl\\:active\\:shadow-3:active{box-shadow:0 1px 8px #00000014,0 3px 4px #0000001a,0 1px 4px -1px #0000001a!important}.xl\\:focus\\:shadow-4:focus{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:hover\\:shadow-4:hover,.xl\\:active\\:shadow-4:active{box-shadow:0 1px 10px #0000001f,0 4px 5px #00000024,0 2px 4px -1px #0003!important}.xl\\:focus\\:shadow-5:focus{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:hover\\:shadow-5:hover,.xl\\:active\\:shadow-5:active{box-shadow:0 1px 7px #0000001a,0 4px 5px -2px #0000001f,0 10px 15px -5px #0003!important}.xl\\:focus\\:shadow-6:focus{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:hover\\:shadow-6:hover,.xl\\:active\\:shadow-6:active{box-shadow:0 3px 5px #0000000f,0 7px 9px #0000001f,0 20px 25px -8px #0000002e!important}.xl\\:focus\\:shadow-7:focus{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:hover\\:shadow-7:hover,.xl\\:active\\:shadow-7:active{box-shadow:0 7px 30px #00000014,0 22px 30px 2px #00000026,0 8px 10px #00000026!important}.xl\\:focus\\:shadow-8:focus{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}.xl\\:hover\\:shadow-8:hover,.xl\\:active\\:shadow-8:active{box-shadow:0 9px 46px 8px #0000001f,0 24px 38px 3px #00000024,0 11px 15px #0003!important}}.border-none{border-width:0px!important;border-style:none}.border-1{border-width:1px!important;border-style:solid}.border-2{border-width:2px!important;border-style:solid}.border-3{border-width:3px!important;border-style:solid}.border-top-none{border-top-width:0px!important;border-top-style:none}.border-top-1{border-top-width:1px!important;border-top-style:solid}.border-top-2{border-top-width:2px!important;border-top-style:solid}.border-top-3{border-top-width:3px!important;border-top-style:solid}.border-right-none{border-right-width:0px!important;border-right-style:none}.border-right-1{border-right-width:1px!important;border-right-style:solid}.border-right-2{border-right-width:2px!important;border-right-style:solid}.border-right-3{border-right-width:3px!important;border-right-style:solid}.border-left-none{border-left-width:0px!important;border-left-style:none}.border-left-1{border-left-width:1px!important;border-left-style:solid}.border-left-2{border-left-width:2px!important;border-left-style:solid}.border-left-3{border-left-width:3px!important;border-left-style:solid}.border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}@media screen and (min-width: 576px){.sm\\:border-none{border-width:0px!important;border-style:none}.sm\\:border-1{border-width:1px!important;border-style:solid}.sm\\:border-2{border-width:2px!important;border-style:solid}.sm\\:border-3{border-width:3px!important;border-style:solid}.sm\\:border-top-none{border-top-width:0px!important;border-top-style:none}.sm\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.sm\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.sm\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.sm\\:border-right-none{border-right-width:0px!important;border-right-style:none}.sm\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.sm\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.sm\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.sm\\:border-left-none{border-left-width:0px!important;border-left-style:none}.sm\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.sm\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.sm\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.sm\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.sm\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.sm\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.sm\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.sm\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.sm\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.sm\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.sm\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.sm\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 768px){.md\\:border-none{border-width:0px!important;border-style:none}.md\\:border-1{border-width:1px!important;border-style:solid}.md\\:border-2{border-width:2px!important;border-style:solid}.md\\:border-3{border-width:3px!important;border-style:solid}.md\\:border-top-none{border-top-width:0px!important;border-top-style:none}.md\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.md\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.md\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.md\\:border-right-none{border-right-width:0px!important;border-right-style:none}.md\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.md\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.md\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.md\\:border-left-none{border-left-width:0px!important;border-left-style:none}.md\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.md\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.md\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.md\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.md\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.md\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.md\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.md\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.md\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.md\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.md\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.md\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 992px){.lg\\:border-none{border-width:0px!important;border-style:none}.lg\\:border-1{border-width:1px!important;border-style:solid}.lg\\:border-2{border-width:2px!important;border-style:solid}.lg\\:border-3{border-width:3px!important;border-style:solid}.lg\\:border-top-none{border-top-width:0px!important;border-top-style:none}.lg\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.lg\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.lg\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.lg\\:border-right-none{border-right-width:0px!important;border-right-style:none}.lg\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.lg\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.lg\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.lg\\:border-left-none{border-left-width:0px!important;border-left-style:none}.lg\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.lg\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.lg\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.lg\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.lg\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.lg\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.lg\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.lg\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.lg\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.lg\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.lg\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.lg\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}@media screen and (min-width: 1200px){.xl\\:border-none{border-width:0px!important;border-style:none}.xl\\:border-1{border-width:1px!important;border-style:solid}.xl\\:border-2{border-width:2px!important;border-style:solid}.xl\\:border-3{border-width:3px!important;border-style:solid}.xl\\:border-top-none{border-top-width:0px!important;border-top-style:none}.xl\\:border-top-1{border-top-width:1px!important;border-top-style:solid}.xl\\:border-top-2{border-top-width:2px!important;border-top-style:solid}.xl\\:border-top-3{border-top-width:3px!important;border-top-style:solid}.xl\\:border-right-none{border-right-width:0px!important;border-right-style:none}.xl\\:border-right-1{border-right-width:1px!important;border-right-style:solid}.xl\\:border-right-2{border-right-width:2px!important;border-right-style:solid}.xl\\:border-right-3{border-right-width:3px!important;border-right-style:solid}.xl\\:border-left-none{border-left-width:0px!important;border-left-style:none}.xl\\:border-left-1{border-left-width:1px!important;border-left-style:solid}.xl\\:border-left-2{border-left-width:2px!important;border-left-style:solid}.xl\\:border-left-3{border-left-width:3px!important;border-left-style:solid}.xl\\:border-bottom-none{border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-bottom-1{border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-bottom-2{border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-bottom-3{border-bottom-width:3px!important;border-bottom-style:solid}.xl\\:border-x-none{border-left-width:0px!important;border-left-style:none;border-right-width:0px!important;border-right-style:none}.xl\\:border-x-1{border-left-width:1px!important;border-left-style:solid;border-right-width:1px!important;border-right-style:solid}.xl\\:border-x-2{border-left-width:2px!important;border-left-style:solid;border-right-width:2px!important;border-right-style:solid}.xl\\:border-x-3{border-left-width:3px!important;border-left-style:solid;border-right-width:3px!important;border-right-style:solid}.xl\\:border-y-none{border-top-width:0px!important;border-top-style:none;border-bottom-width:0px!important;border-bottom-style:none}.xl\\:border-y-1{border-top-width:1px!important;border-top-style:solid;border-bottom-width:1px!important;border-bottom-style:solid}.xl\\:border-y-2{border-top-width:2px!important;border-top-style:solid;border-bottom-width:2px!important;border-bottom-style:solid}.xl\\:border-y-3{border-top-width:3px!important;border-top-style:solid;border-bottom-width:3px!important;border-bottom-style:solid}}.border-solid{border-style:solid!important}.border-dashed{border-style:dashed!important}.border-dotted{border-style:dotted!important}.border-double{border-style:double!important}@media screen and (min-width: 576px){.sm\\:border-solid{border-style:solid!important}.sm\\:border-dashed{border-style:dashed!important}.sm\\:border-dotted{border-style:dotted!important}.sm\\:border-double{border-style:double!important}}@media screen and (min-width: 768px){.md\\:border-solid{border-style:solid!important}.md\\:border-dashed{border-style:dashed!important}.md\\:border-dotted{border-style:dotted!important}.md\\:border-double{border-style:double!important}}@media screen and (min-width: 992px){.lg\\:border-solid{border-style:solid!important}.lg\\:border-dashed{border-style:dashed!important}.lg\\:border-dotted{border-style:dotted!important}.lg\\:border-double{border-style:double!important}}@media screen and (min-width: 1200px){.xl\\:border-solid{border-style:solid!important}.xl\\:border-dashed{border-style:dashed!important}.xl\\:border-dotted{border-style:dotted!important}.xl\\:border-double{border-style:double!important}}.border-noround{border-radius:0!important}.border-round{border-radius:var(--border-radius)!important}.border-round-xs{border-radius:.125rem!important}.border-round-sm{border-radius:.25rem!important}.border-round-md{border-radius:.375rem!important}.border-round-lg{border-radius:.5rem!important}.border-round-xl{border-radius:.75rem!important}.border-round-2xl{border-radius:1rem!important}.border-round-3xl{border-radius:1.5rem!important}.border-circle{border-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround{border-radius:0!important}.sm\\:border-round{border-radius:var(--border-radius)!important}.sm\\:border-round-xs{border-radius:.125rem!important}.sm\\:border-round-sm{border-radius:.25rem!important}.sm\\:border-round-md{border-radius:.375rem!important}.sm\\:border-round-lg{border-radius:.5rem!important}.sm\\:border-round-xl{border-radius:.75rem!important}.sm\\:border-round-2xl{border-radius:1rem!important}.sm\\:border-round-3xl{border-radius:1.5rem!important}.sm\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround{border-radius:0!important}.md\\:border-round{border-radius:var(--border-radius)!important}.md\\:border-round-xs{border-radius:.125rem!important}.md\\:border-round-sm{border-radius:.25rem!important}.md\\:border-round-md{border-radius:.375rem!important}.md\\:border-round-lg{border-radius:.5rem!important}.md\\:border-round-xl{border-radius:.75rem!important}.md\\:border-round-2xl{border-radius:1rem!important}.md\\:border-round-3xl{border-radius:1.5rem!important}.md\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround{border-radius:0!important}.lg\\:border-round{border-radius:var(--border-radius)!important}.lg\\:border-round-xs{border-radius:.125rem!important}.lg\\:border-round-sm{border-radius:.25rem!important}.lg\\:border-round-md{border-radius:.375rem!important}.lg\\:border-round-lg{border-radius:.5rem!important}.lg\\:border-round-xl{border-radius:.75rem!important}.lg\\:border-round-2xl{border-radius:1rem!important}.lg\\:border-round-3xl{border-radius:1.5rem!important}.lg\\:border-circle{border-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround{border-radius:0!important}.xl\\:border-round{border-radius:var(--border-radius)!important}.xl\\:border-round-xs{border-radius:.125rem!important}.xl\\:border-round-sm{border-radius:.25rem!important}.xl\\:border-round-md{border-radius:.375rem!important}.xl\\:border-round-lg{border-radius:.5rem!important}.xl\\:border-round-xl{border-radius:.75rem!important}.xl\\:border-round-2xl{border-radius:1rem!important}.xl\\:border-round-3xl{border-radius:1.5rem!important}.xl\\:border-circle{border-radius:50%!important}}.border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}@media screen and (min-width: 576px){.sm\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.sm\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.sm\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.sm\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.sm\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.sm\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.sm\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.sm\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.sm\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.sm\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.sm\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.sm\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.sm\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.sm\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.sm\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.sm\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.sm\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.sm\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.sm\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.sm\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.sm\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.sm\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.sm\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.sm\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.sm\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.sm\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.sm\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.sm\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.sm\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.sm\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.sm\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 768px){.md\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.md\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.md\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.md\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.md\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.md\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.md\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.md\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.md\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.md\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.md\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.md\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.md\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.md\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.md\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.md\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.md\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.md\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.md\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.md\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.md\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.md\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.md\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.md\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.md\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.md\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.md\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.md\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.md\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.md\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.md\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 992px){.lg\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.lg\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.lg\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.lg\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.lg\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.lg\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.lg\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.lg\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.lg\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.lg\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.lg\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.lg\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.lg\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.lg\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.lg\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.lg\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.lg\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.lg\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.lg\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.lg\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.lg\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.lg\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.lg\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.lg\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.lg\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.lg\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.lg\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.lg\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.lg\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.lg\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.lg\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}@media screen and (min-width: 1200px){.xl\\:border-noround-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.xl\\:border-noround-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.xl\\:border-noround-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-noround-bottom{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.xl\\:border-round-left{border-top-left-radius:var(--border-radius)!important;border-bottom-left-radius:var(--border-radius)!important}.xl\\:border-round-top{border-top-left-radius:var(--border-radius)!important;border-top-right-radius:var(--border-radius)!important}.xl\\:border-round-right{border-top-right-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-bottom{border-bottom-left-radius:var(--border-radius)!important;border-bottom-right-radius:var(--border-radius)!important}.xl\\:border-round-left-xs{border-top-left-radius:.125rem!important;border-bottom-left-radius:.125rem!important}.xl\\:border-round-top-xs{border-top-left-radius:.125rem!important;border-top-right-radius:.125rem!important}.xl\\:border-round-right-xs{border-top-right-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-bottom-xs{border-bottom-left-radius:.125rem!important;border-bottom-right-radius:.125rem!important}.xl\\:border-round-left-sm{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.xl\\:border-round-top-sm{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.xl\\:border-round-right-sm{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-bottom-sm{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.xl\\:border-round-left-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.xl\\:border-round-top-md{border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important}.xl\\:border-round-right-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-bottom-md{border-bottom-left-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.xl\\:border-round-left-lg{border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.xl\\:border-round-top-lg{border-top-left-radius:.5rem!important;border-top-right-radius:.5rem!important}.xl\\:border-round-right-lg{border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-bottom-lg{border-bottom-left-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.xl\\:border-round-left-xl{border-top-left-radius:.75rem!important;border-bottom-left-radius:.75rem!important}.xl\\:border-round-top-xl{border-top-left-radius:.75rem!important;border-top-right-radius:.75rem!important}.xl\\:border-round-right-xl{border-top-right-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-bottom-xl{border-bottom-left-radius:.75rem!important;border-bottom-right-radius:.75rem!important}.xl\\:border-round-left-2xl{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.xl\\:border-round-top-2xl{border-top-left-radius:1rem!important;border-top-right-radius:1rem!important}.xl\\:border-round-right-2xl{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-bottom-2xl{border-bottom-left-radius:1rem!important;border-bottom-right-radius:1rem!important}.xl\\:border-round-left-3xl{border-top-left-radius:1.5rem!important;border-bottom-left-radius:1.5rem!important}.xl\\:border-round-top-3xl{border-top-left-radius:1.5rem!important;border-top-right-radius:1.5rem!important}.xl\\:border-round-right-3xl{border-top-right-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-round-bottom-3xl{border-bottom-left-radius:1.5rem!important;border-bottom-right-radius:1.5rem!important}.xl\\:border-circle-left{border-top-left-radius:50%!important;border-bottom-left-radius:50%!important}.xl\\:border-circle-top{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.xl\\:border-circle-right{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.xl\\:border-circle-bottom{border-bottom-left-radius:50%!important;border-bottom-right-radius:50%!important}}.w-full{width:100%!important}.w-screen{width:100vw!important}.w-auto{width:auto!important}.w-1{width:8.3333%!important}.w-2{width:16.6667%!important}.w-3{width:25%!important}.w-4{width:33.3333%!important}.w-5{width:41.6667%!important}.w-6{width:50%!important}.w-7{width:58.3333%!important}.w-8{width:66.6667%!important}.w-9{width:75%!important}.w-10{width:83.3333%!important}.w-11{width:91.6667%!important}.w-12{width:100%!important}.w-min{width:min-content!important}.w-max{width:max-content!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-1rem{width:1rem!important}.w-2rem{width:2rem!important}.w-3rem{width:3rem!important}.w-4rem{width:4rem!important}.w-5rem{width:5rem!important}.w-6rem{width:6rem!important}.w-7rem{width:7rem!important}.w-8rem{width:8rem!important}.w-9rem{width:9rem!important}.w-10rem{width:10rem!important}.w-11rem{width:11rem!important}.w-12rem{width:12rem!important}.w-13rem{width:13rem!important}.w-14rem{width:14rem!important}.w-15rem{width:15rem!important}.w-16rem{width:16rem!important}.w-17rem{width:17rem!important}.w-18rem{width:18rem!important}.w-19rem{width:19rem!important}.w-20rem{width:20rem!important}.w-21rem{width:21rem!important}.w-22rem{width:22rem!important}.w-23rem{width:23rem!important}.w-24rem{width:24rem!important}.w-25rem{width:25rem!important}.w-26rem{width:26rem!important}.w-27rem{width:27rem!important}.w-28rem{width:28rem!important}.w-29rem{width:29rem!important}.w-30rem{width:30rem!important}@media screen and (min-width: 576px){.sm\\:w-full{width:100%!important}.sm\\:w-screen{width:100vw!important}.sm\\:w-auto{width:auto!important}.sm\\:w-1{width:8.3333%!important}.sm\\:w-2{width:16.6667%!important}.sm\\:w-3{width:25%!important}.sm\\:w-4{width:33.3333%!important}.sm\\:w-5{width:41.6667%!important}.sm\\:w-6{width:50%!important}.sm\\:w-7{width:58.3333%!important}.sm\\:w-8{width:66.6667%!important}.sm\\:w-9{width:75%!important}.sm\\:w-10{width:83.3333%!important}.sm\\:w-11{width:91.6667%!important}.sm\\:w-12{width:100%!important}.sm\\:w-min{width:min-content!important}.sm\\:w-max{width:max-content!important}.sm\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.sm\\:w-1rem{width:1rem!important}.sm\\:w-2rem{width:2rem!important}.sm\\:w-3rem{width:3rem!important}.sm\\:w-4rem{width:4rem!important}.sm\\:w-5rem{width:5rem!important}.sm\\:w-6rem{width:6rem!important}.sm\\:w-7rem{width:7rem!important}.sm\\:w-8rem{width:8rem!important}.sm\\:w-9rem{width:9rem!important}.sm\\:w-10rem{width:10rem!important}.sm\\:w-11rem{width:11rem!important}.sm\\:w-12rem{width:12rem!important}.sm\\:w-13rem{width:13rem!important}.sm\\:w-14rem{width:14rem!important}.sm\\:w-15rem{width:15rem!important}.sm\\:w-16rem{width:16rem!important}.sm\\:w-17rem{width:17rem!important}.sm\\:w-18rem{width:18rem!important}.sm\\:w-19rem{width:19rem!important}.sm\\:w-20rem{width:20rem!important}.sm\\:w-21rem{width:21rem!important}.sm\\:w-22rem{width:22rem!important}.sm\\:w-23rem{width:23rem!important}.sm\\:w-24rem{width:24rem!important}.sm\\:w-25rem{width:25rem!important}.sm\\:w-26rem{width:26rem!important}.sm\\:w-27rem{width:27rem!important}.sm\\:w-28rem{width:28rem!important}.sm\\:w-29rem{width:29rem!important}.sm\\:w-30rem{width:30rem!important}}@media screen and (min-width: 768px){.md\\:w-full{width:100%!important}.md\\:w-screen{width:100vw!important}.md\\:w-auto{width:auto!important}.md\\:w-1{width:8.3333%!important}.md\\:w-2{width:16.6667%!important}.md\\:w-3{width:25%!important}.md\\:w-4{width:33.3333%!important}.md\\:w-5{width:41.6667%!important}.md\\:w-6{width:50%!important}.md\\:w-7{width:58.3333%!important}.md\\:w-8{width:66.6667%!important}.md\\:w-9{width:75%!important}.md\\:w-10{width:83.3333%!important}.md\\:w-11{width:91.6667%!important}.md\\:w-12{width:100%!important}.md\\:w-min{width:min-content!important}.md\\:w-max{width:max-content!important}.md\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.md\\:w-1rem{width:1rem!important}.md\\:w-2rem{width:2rem!important}.md\\:w-3rem{width:3rem!important}.md\\:w-4rem{width:4rem!important}.md\\:w-5rem{width:5rem!important}.md\\:w-6rem{width:6rem!important}.md\\:w-7rem{width:7rem!important}.md\\:w-8rem{width:8rem!important}.md\\:w-9rem{width:9rem!important}.md\\:w-10rem{width:10rem!important}.md\\:w-11rem{width:11rem!important}.md\\:w-12rem{width:12rem!important}.md\\:w-13rem{width:13rem!important}.md\\:w-14rem{width:14rem!important}.md\\:w-15rem{width:15rem!important}.md\\:w-16rem{width:16rem!important}.md\\:w-17rem{width:17rem!important}.md\\:w-18rem{width:18rem!important}.md\\:w-19rem{width:19rem!important}.md\\:w-20rem{width:20rem!important}.md\\:w-21rem{width:21rem!important}.md\\:w-22rem{width:22rem!important}.md\\:w-23rem{width:23rem!important}.md\\:w-24rem{width:24rem!important}.md\\:w-25rem{width:25rem!important}.md\\:w-26rem{width:26rem!important}.md\\:w-27rem{width:27rem!important}.md\\:w-28rem{width:28rem!important}.md\\:w-29rem{width:29rem!important}.md\\:w-30rem{width:30rem!important}}@media screen and (min-width: 992px){.lg\\:w-full{width:100%!important}.lg\\:w-screen{width:100vw!important}.lg\\:w-auto{width:auto!important}.lg\\:w-1{width:8.3333%!important}.lg\\:w-2{width:16.6667%!important}.lg\\:w-3{width:25%!important}.lg\\:w-4{width:33.3333%!important}.lg\\:w-5{width:41.6667%!important}.lg\\:w-6{width:50%!important}.lg\\:w-7{width:58.3333%!important}.lg\\:w-8{width:66.6667%!important}.lg\\:w-9{width:75%!important}.lg\\:w-10{width:83.3333%!important}.lg\\:w-11{width:91.6667%!important}.lg\\:w-12{width:100%!important}.lg\\:w-min{width:min-content!important}.lg\\:w-max{width:max-content!important}.lg\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.lg\\:w-1rem{width:1rem!important}.lg\\:w-2rem{width:2rem!important}.lg\\:w-3rem{width:3rem!important}.lg\\:w-4rem{width:4rem!important}.lg\\:w-5rem{width:5rem!important}.lg\\:w-6rem{width:6rem!important}.lg\\:w-7rem{width:7rem!important}.lg\\:w-8rem{width:8rem!important}.lg\\:w-9rem{width:9rem!important}.lg\\:w-10rem{width:10rem!important}.lg\\:w-11rem{width:11rem!important}.lg\\:w-12rem{width:12rem!important}.lg\\:w-13rem{width:13rem!important}.lg\\:w-14rem{width:14rem!important}.lg\\:w-15rem{width:15rem!important}.lg\\:w-16rem{width:16rem!important}.lg\\:w-17rem{width:17rem!important}.lg\\:w-18rem{width:18rem!important}.lg\\:w-19rem{width:19rem!important}.lg\\:w-20rem{width:20rem!important}.lg\\:w-21rem{width:21rem!important}.lg\\:w-22rem{width:22rem!important}.lg\\:w-23rem{width:23rem!important}.lg\\:w-24rem{width:24rem!important}.lg\\:w-25rem{width:25rem!important}.lg\\:w-26rem{width:26rem!important}.lg\\:w-27rem{width:27rem!important}.lg\\:w-28rem{width:28rem!important}.lg\\:w-29rem{width:29rem!important}.lg\\:w-30rem{width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:w-full{width:100%!important}.xl\\:w-screen{width:100vw!important}.xl\\:w-auto{width:auto!important}.xl\\:w-1{width:8.3333%!important}.xl\\:w-2{width:16.6667%!important}.xl\\:w-3{width:25%!important}.xl\\:w-4{width:33.3333%!important}.xl\\:w-5{width:41.6667%!important}.xl\\:w-6{width:50%!important}.xl\\:w-7{width:58.3333%!important}.xl\\:w-8{width:66.6667%!important}.xl\\:w-9{width:75%!important}.xl\\:w-10{width:83.3333%!important}.xl\\:w-11{width:91.6667%!important}.xl\\:w-12{width:100%!important}.xl\\:w-min{width:min-content!important}.xl\\:w-max{width:max-content!important}.xl\\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.xl\\:w-1rem{width:1rem!important}.xl\\:w-2rem{width:2rem!important}.xl\\:w-3rem{width:3rem!important}.xl\\:w-4rem{width:4rem!important}.xl\\:w-5rem{width:5rem!important}.xl\\:w-6rem{width:6rem!important}.xl\\:w-7rem{width:7rem!important}.xl\\:w-8rem{width:8rem!important}.xl\\:w-9rem{width:9rem!important}.xl\\:w-10rem{width:10rem!important}.xl\\:w-11rem{width:11rem!important}.xl\\:w-12rem{width:12rem!important}.xl\\:w-13rem{width:13rem!important}.xl\\:w-14rem{width:14rem!important}.xl\\:w-15rem{width:15rem!important}.xl\\:w-16rem{width:16rem!important}.xl\\:w-17rem{width:17rem!important}.xl\\:w-18rem{width:18rem!important}.xl\\:w-19rem{width:19rem!important}.xl\\:w-20rem{width:20rem!important}.xl\\:w-21rem{width:21rem!important}.xl\\:w-22rem{width:22rem!important}.xl\\:w-23rem{width:23rem!important}.xl\\:w-24rem{width:24rem!important}.xl\\:w-25rem{width:25rem!important}.xl\\:w-26rem{width:26rem!important}.xl\\:w-27rem{width:27rem!important}.xl\\:w-28rem{width:28rem!important}.xl\\:w-29rem{width:29rem!important}.xl\\:w-30rem{width:30rem!important}}.h-full{height:100%!important}.h-screen{height:100vh!important}.h-auto{height:auto!important}.h-min{height:min-content!important}.h-max{height:max-content!important}.h-fit{height:-moz-fit-content!important;height:fit-content!important}.h-1rem{height:1rem!important}.h-2rem{height:2rem!important}.h-3rem{height:3rem!important}.h-4rem{height:4rem!important}.h-5rem{height:5rem!important}.h-6rem{height:6rem!important}.h-7rem{height:7rem!important}.h-8rem{height:8rem!important}.h-9rem{height:9rem!important}.h-10rem{height:10rem!important}.h-11rem{height:11rem!important}.h-12rem{height:12rem!important}.h-13rem{height:13rem!important}.h-14rem{height:14rem!important}.h-15rem{height:15rem!important}.h-16rem{height:16rem!important}.h-17rem{height:17rem!important}.h-18rem{height:18rem!important}.h-19rem{height:19rem!important}.h-20rem{height:20rem!important}.h-21rem{height:21rem!important}.h-22rem{height:22rem!important}.h-23rem{height:23rem!important}.h-24rem{height:24rem!important}.h-25rem{height:25rem!important}.h-26rem{height:26rem!important}.h-27rem{height:27rem!important}.h-28rem{height:28rem!important}.h-29rem{height:29rem!important}.h-30rem{height:30rem!important}@media screen and (min-width: 576px){.sm\\:h-full{height:100%!important}.sm\\:h-screen{height:100vh!important}.sm\\:h-auto{height:auto!important}.sm\\:h-min{height:min-content!important}.sm\\:h-max{height:max-content!important}.sm\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.sm\\:h-1rem{height:1rem!important}.sm\\:h-2rem{height:2rem!important}.sm\\:h-3rem{height:3rem!important}.sm\\:h-4rem{height:4rem!important}.sm\\:h-5rem{height:5rem!important}.sm\\:h-6rem{height:6rem!important}.sm\\:h-7rem{height:7rem!important}.sm\\:h-8rem{height:8rem!important}.sm\\:h-9rem{height:9rem!important}.sm\\:h-10rem{height:10rem!important}.sm\\:h-11rem{height:11rem!important}.sm\\:h-12rem{height:12rem!important}.sm\\:h-13rem{height:13rem!important}.sm\\:h-14rem{height:14rem!important}.sm\\:h-15rem{height:15rem!important}.sm\\:h-16rem{height:16rem!important}.sm\\:h-17rem{height:17rem!important}.sm\\:h-18rem{height:18rem!important}.sm\\:h-19rem{height:19rem!important}.sm\\:h-20rem{height:20rem!important}.sm\\:h-21rem{height:21rem!important}.sm\\:h-22rem{height:22rem!important}.sm\\:h-23rem{height:23rem!important}.sm\\:h-24rem{height:24rem!important}.sm\\:h-25rem{height:25rem!important}.sm\\:h-26rem{height:26rem!important}.sm\\:h-27rem{height:27rem!important}.sm\\:h-28rem{height:28rem!important}.sm\\:h-29rem{height:29rem!important}.sm\\:h-30rem{height:30rem!important}}@media screen and (min-width: 768px){.md\\:h-full{height:100%!important}.md\\:h-screen{height:100vh!important}.md\\:h-auto{height:auto!important}.md\\:h-min{height:min-content!important}.md\\:h-max{height:max-content!important}.md\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.md\\:h-1rem{height:1rem!important}.md\\:h-2rem{height:2rem!important}.md\\:h-3rem{height:3rem!important}.md\\:h-4rem{height:4rem!important}.md\\:h-5rem{height:5rem!important}.md\\:h-6rem{height:6rem!important}.md\\:h-7rem{height:7rem!important}.md\\:h-8rem{height:8rem!important}.md\\:h-9rem{height:9rem!important}.md\\:h-10rem{height:10rem!important}.md\\:h-11rem{height:11rem!important}.md\\:h-12rem{height:12rem!important}.md\\:h-13rem{height:13rem!important}.md\\:h-14rem{height:14rem!important}.md\\:h-15rem{height:15rem!important}.md\\:h-16rem{height:16rem!important}.md\\:h-17rem{height:17rem!important}.md\\:h-18rem{height:18rem!important}.md\\:h-19rem{height:19rem!important}.md\\:h-20rem{height:20rem!important}.md\\:h-21rem{height:21rem!important}.md\\:h-22rem{height:22rem!important}.md\\:h-23rem{height:23rem!important}.md\\:h-24rem{height:24rem!important}.md\\:h-25rem{height:25rem!important}.md\\:h-26rem{height:26rem!important}.md\\:h-27rem{height:27rem!important}.md\\:h-28rem{height:28rem!important}.md\\:h-29rem{height:29rem!important}.md\\:h-30rem{height:30rem!important}}@media screen and (min-width: 992px){.lg\\:h-full{height:100%!important}.lg\\:h-screen{height:100vh!important}.lg\\:h-auto{height:auto!important}.lg\\:h-min{height:min-content!important}.lg\\:h-max{height:max-content!important}.lg\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.lg\\:h-1rem{height:1rem!important}.lg\\:h-2rem{height:2rem!important}.lg\\:h-3rem{height:3rem!important}.lg\\:h-4rem{height:4rem!important}.lg\\:h-5rem{height:5rem!important}.lg\\:h-6rem{height:6rem!important}.lg\\:h-7rem{height:7rem!important}.lg\\:h-8rem{height:8rem!important}.lg\\:h-9rem{height:9rem!important}.lg\\:h-10rem{height:10rem!important}.lg\\:h-11rem{height:11rem!important}.lg\\:h-12rem{height:12rem!important}.lg\\:h-13rem{height:13rem!important}.lg\\:h-14rem{height:14rem!important}.lg\\:h-15rem{height:15rem!important}.lg\\:h-16rem{height:16rem!important}.lg\\:h-17rem{height:17rem!important}.lg\\:h-18rem{height:18rem!important}.lg\\:h-19rem{height:19rem!important}.lg\\:h-20rem{height:20rem!important}.lg\\:h-21rem{height:21rem!important}.lg\\:h-22rem{height:22rem!important}.lg\\:h-23rem{height:23rem!important}.lg\\:h-24rem{height:24rem!important}.lg\\:h-25rem{height:25rem!important}.lg\\:h-26rem{height:26rem!important}.lg\\:h-27rem{height:27rem!important}.lg\\:h-28rem{height:28rem!important}.lg\\:h-29rem{height:29rem!important}.lg\\:h-30rem{height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:h-full{height:100%!important}.xl\\:h-screen{height:100vh!important}.xl\\:h-auto{height:auto!important}.xl\\:h-min{height:min-content!important}.xl\\:h-max{height:max-content!important}.xl\\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.xl\\:h-1rem{height:1rem!important}.xl\\:h-2rem{height:2rem!important}.xl\\:h-3rem{height:3rem!important}.xl\\:h-4rem{height:4rem!important}.xl\\:h-5rem{height:5rem!important}.xl\\:h-6rem{height:6rem!important}.xl\\:h-7rem{height:7rem!important}.xl\\:h-8rem{height:8rem!important}.xl\\:h-9rem{height:9rem!important}.xl\\:h-10rem{height:10rem!important}.xl\\:h-11rem{height:11rem!important}.xl\\:h-12rem{height:12rem!important}.xl\\:h-13rem{height:13rem!important}.xl\\:h-14rem{height:14rem!important}.xl\\:h-15rem{height:15rem!important}.xl\\:h-16rem{height:16rem!important}.xl\\:h-17rem{height:17rem!important}.xl\\:h-18rem{height:18rem!important}.xl\\:h-19rem{height:19rem!important}.xl\\:h-20rem{height:20rem!important}.xl\\:h-21rem{height:21rem!important}.xl\\:h-22rem{height:22rem!important}.xl\\:h-23rem{height:23rem!important}.xl\\:h-24rem{height:24rem!important}.xl\\:h-25rem{height:25rem!important}.xl\\:h-26rem{height:26rem!important}.xl\\:h-27rem{height:27rem!important}.xl\\:h-28rem{height:28rem!important}.xl\\:h-29rem{height:29rem!important}.xl\\:h-30rem{height:30rem!important}}.min-w-0{min-width:0px!important}.min-w-full{min-width:100%!important}.min-w-screen{min-width:100vw!important}.min-w-min{min-width:min-content!important}.min-w-max{min-width:max-content!important}@media screen and (min-width: 576px){.sm\\:min-w-0{min-width:0px!important}.sm\\:min-w-full{min-width:100%!important}.sm\\:min-w-screen{min-width:100vw!important}.sm\\:min-w-min{min-width:min-content!important}.sm\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 768px){.md\\:min-w-0{min-width:0px!important}.md\\:min-w-full{min-width:100%!important}.md\\:min-w-screen{min-width:100vw!important}.md\\:min-w-min{min-width:min-content!important}.md\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 992px){.lg\\:min-w-0{min-width:0px!important}.lg\\:min-w-full{min-width:100%!important}.lg\\:min-w-screen{min-width:100vw!important}.lg\\:min-w-min{min-width:min-content!important}.lg\\:min-w-max{min-width:max-content!important}}@media screen and (min-width: 1200px){.xl\\:min-w-0{min-width:0px!important}.xl\\:min-w-full{min-width:100%!important}.xl\\:min-w-screen{min-width:100vw!important}.xl\\:min-w-min{min-width:min-content!important}.xl\\:min-w-max{min-width:max-content!important}}.max-w-0{max-width:0px!important}.max-w-full{max-width:100%!important}.max-w-screen{max-width:100vw!important}.max-w-min{max-width:min-content!important}.max-w-max{max-width:max-content!important}.max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.max-w-1rem{max-width:1rem!important}.max-w-2rem{max-width:2rem!important}.max-w-3rem{max-width:3rem!important}.max-w-4rem{max-width:4rem!important}.max-w-5rem{max-width:5rem!important}.max-w-6rem{max-width:6rem!important}.max-w-7rem{max-width:7rem!important}.max-w-8rem{max-width:8rem!important}.max-w-9rem{max-width:9rem!important}.max-w-10rem{max-width:10rem!important}.max-w-11rem{max-width:11rem!important}.max-w-12rem{max-width:12rem!important}.max-w-13rem{max-width:13rem!important}.max-w-14rem{max-width:14rem!important}.max-w-15rem{max-width:15rem!important}.max-w-16rem{max-width:16rem!important}.max-w-17rem{max-width:17rem!important}.max-w-18rem{max-width:18rem!important}.max-w-19rem{max-width:19rem!important}.max-w-20rem{max-width:20rem!important}.max-w-21rem{max-width:21rem!important}.max-w-22rem{max-width:22rem!important}.max-w-23rem{max-width:23rem!important}.max-w-24rem{max-width:24rem!important}.max-w-25rem{max-width:25rem!important}.max-w-26rem{max-width:26rem!important}.max-w-27rem{max-width:27rem!important}.max-w-28rem{max-width:28rem!important}.max-w-29rem{max-width:29rem!important}.max-w-30rem{max-width:30rem!important}@media screen and (min-width: 576px){.sm\\:max-w-0{max-width:0px!important}.sm\\:max-w-full{max-width:100%!important}.sm\\:max-w-screen{max-width:100vw!important}.sm\\:max-w-min{max-width:min-content!important}.sm\\:max-w-max{max-width:max-content!important}.sm\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.sm\\:max-w-1rem{max-width:1rem!important}.sm\\:max-w-2rem{max-width:2rem!important}.sm\\:max-w-3rem{max-width:3rem!important}.sm\\:max-w-4rem{max-width:4rem!important}.sm\\:max-w-5rem{max-width:5rem!important}.sm\\:max-w-6rem{max-width:6rem!important}.sm\\:max-w-7rem{max-width:7rem!important}.sm\\:max-w-8rem{max-width:8rem!important}.sm\\:max-w-9rem{max-width:9rem!important}.sm\\:max-w-10rem{max-width:10rem!important}.sm\\:max-w-11rem{max-width:11rem!important}.sm\\:max-w-12rem{max-width:12rem!important}.sm\\:max-w-13rem{max-width:13rem!important}.sm\\:max-w-14rem{max-width:14rem!important}.sm\\:max-w-15rem{max-width:15rem!important}.sm\\:max-w-16rem{max-width:16rem!important}.sm\\:max-w-17rem{max-width:17rem!important}.sm\\:max-w-18rem{max-width:18rem!important}.sm\\:max-w-19rem{max-width:19rem!important}.sm\\:max-w-20rem{max-width:20rem!important}.sm\\:max-w-21rem{max-width:21rem!important}.sm\\:max-w-22rem{max-width:22rem!important}.sm\\:max-w-23rem{max-width:23rem!important}.sm\\:max-w-24rem{max-width:24rem!important}.sm\\:max-w-25rem{max-width:25rem!important}.sm\\:max-w-26rem{max-width:26rem!important}.sm\\:max-w-27rem{max-width:27rem!important}.sm\\:max-w-28rem{max-width:28rem!important}.sm\\:max-w-29rem{max-width:29rem!important}.sm\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 768px){.md\\:max-w-0{max-width:0px!important}.md\\:max-w-full{max-width:100%!important}.md\\:max-w-screen{max-width:100vw!important}.md\\:max-w-min{max-width:min-content!important}.md\\:max-w-max{max-width:max-content!important}.md\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.md\\:max-w-1rem{max-width:1rem!important}.md\\:max-w-2rem{max-width:2rem!important}.md\\:max-w-3rem{max-width:3rem!important}.md\\:max-w-4rem{max-width:4rem!important}.md\\:max-w-5rem{max-width:5rem!important}.md\\:max-w-6rem{max-width:6rem!important}.md\\:max-w-7rem{max-width:7rem!important}.md\\:max-w-8rem{max-width:8rem!important}.md\\:max-w-9rem{max-width:9rem!important}.md\\:max-w-10rem{max-width:10rem!important}.md\\:max-w-11rem{max-width:11rem!important}.md\\:max-w-12rem{max-width:12rem!important}.md\\:max-w-13rem{max-width:13rem!important}.md\\:max-w-14rem{max-width:14rem!important}.md\\:max-w-15rem{max-width:15rem!important}.md\\:max-w-16rem{max-width:16rem!important}.md\\:max-w-17rem{max-width:17rem!important}.md\\:max-w-18rem{max-width:18rem!important}.md\\:max-w-19rem{max-width:19rem!important}.md\\:max-w-20rem{max-width:20rem!important}.md\\:max-w-21rem{max-width:21rem!important}.md\\:max-w-22rem{max-width:22rem!important}.md\\:max-w-23rem{max-width:23rem!important}.md\\:max-w-24rem{max-width:24rem!important}.md\\:max-w-25rem{max-width:25rem!important}.md\\:max-w-26rem{max-width:26rem!important}.md\\:max-w-27rem{max-width:27rem!important}.md\\:max-w-28rem{max-width:28rem!important}.md\\:max-w-29rem{max-width:29rem!important}.md\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-w-0{max-width:0px!important}.lg\\:max-w-full{max-width:100%!important}.lg\\:max-w-screen{max-width:100vw!important}.lg\\:max-w-min{max-width:min-content!important}.lg\\:max-w-max{max-width:max-content!important}.lg\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.lg\\:max-w-1rem{max-width:1rem!important}.lg\\:max-w-2rem{max-width:2rem!important}.lg\\:max-w-3rem{max-width:3rem!important}.lg\\:max-w-4rem{max-width:4rem!important}.lg\\:max-w-5rem{max-width:5rem!important}.lg\\:max-w-6rem{max-width:6rem!important}.lg\\:max-w-7rem{max-width:7rem!important}.lg\\:max-w-8rem{max-width:8rem!important}.lg\\:max-w-9rem{max-width:9rem!important}.lg\\:max-w-10rem{max-width:10rem!important}.lg\\:max-w-11rem{max-width:11rem!important}.lg\\:max-w-12rem{max-width:12rem!important}.lg\\:max-w-13rem{max-width:13rem!important}.lg\\:max-w-14rem{max-width:14rem!important}.lg\\:max-w-15rem{max-width:15rem!important}.lg\\:max-w-16rem{max-width:16rem!important}.lg\\:max-w-17rem{max-width:17rem!important}.lg\\:max-w-18rem{max-width:18rem!important}.lg\\:max-w-19rem{max-width:19rem!important}.lg\\:max-w-20rem{max-width:20rem!important}.lg\\:max-w-21rem{max-width:21rem!important}.lg\\:max-w-22rem{max-width:22rem!important}.lg\\:max-w-23rem{max-width:23rem!important}.lg\\:max-w-24rem{max-width:24rem!important}.lg\\:max-w-25rem{max-width:25rem!important}.lg\\:max-w-26rem{max-width:26rem!important}.lg\\:max-w-27rem{max-width:27rem!important}.lg\\:max-w-28rem{max-width:28rem!important}.lg\\:max-w-29rem{max-width:29rem!important}.lg\\:max-w-30rem{max-width:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-w-0{max-width:0px!important}.xl\\:max-w-full{max-width:100%!important}.xl\\:max-w-screen{max-width:100vw!important}.xl\\:max-w-min{max-width:min-content!important}.xl\\:max-w-max{max-width:max-content!important}.xl\\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}.xl\\:max-w-1rem{max-width:1rem!important}.xl\\:max-w-2rem{max-width:2rem!important}.xl\\:max-w-3rem{max-width:3rem!important}.xl\\:max-w-4rem{max-width:4rem!important}.xl\\:max-w-5rem{max-width:5rem!important}.xl\\:max-w-6rem{max-width:6rem!important}.xl\\:max-w-7rem{max-width:7rem!important}.xl\\:max-w-8rem{max-width:8rem!important}.xl\\:max-w-9rem{max-width:9rem!important}.xl\\:max-w-10rem{max-width:10rem!important}.xl\\:max-w-11rem{max-width:11rem!important}.xl\\:max-w-12rem{max-width:12rem!important}.xl\\:max-w-13rem{max-width:13rem!important}.xl\\:max-w-14rem{max-width:14rem!important}.xl\\:max-w-15rem{max-width:15rem!important}.xl\\:max-w-16rem{max-width:16rem!important}.xl\\:max-w-17rem{max-width:17rem!important}.xl\\:max-w-18rem{max-width:18rem!important}.xl\\:max-w-19rem{max-width:19rem!important}.xl\\:max-w-20rem{max-width:20rem!important}.xl\\:max-w-21rem{max-width:21rem!important}.xl\\:max-w-22rem{max-width:22rem!important}.xl\\:max-w-23rem{max-width:23rem!important}.xl\\:max-w-24rem{max-width:24rem!important}.xl\\:max-w-25rem{max-width:25rem!important}.xl\\:max-w-26rem{max-width:26rem!important}.xl\\:max-w-27rem{max-width:27rem!important}.xl\\:max-w-28rem{max-width:28rem!important}.xl\\:max-w-29rem{max-width:29rem!important}.xl\\:max-w-30rem{max-width:30rem!important}}.min-h-0{min-height:0px!important}.min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh!important}@media screen and (min-width: 576px){.sm\\:min-h-0{min-height:0px!important}.sm\\:min-h-full{min-height:100%!important}.sm\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 768px){.md\\:min-h-0{min-height:0px!important}.md\\:min-h-full{min-height:100%!important}.md\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 992px){.lg\\:min-h-0{min-height:0px!important}.lg\\:min-h-full{min-height:100%!important}.lg\\:min-h-screen{min-height:100vh!important}}@media screen and (min-width: 1200px){.xl\\:min-h-0{min-height:0px!important}.xl\\:min-h-full{min-height:100%!important}.xl\\:min-h-screen{min-height:100vh!important}}.max-h-0{max-height:0px!important}.max-h-full{max-height:100%!important}.max-h-screen{max-height:100vh!important}.max-h-min{max-height:min-content!important}.max-h-max{max-height:max-content!important}.max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.max-h-1rem{max-height:1rem!important}.max-h-2rem{max-height:2rem!important}.max-h-3rem{max-height:3rem!important}.max-h-4rem{max-height:4rem!important}.max-h-5rem{max-height:5rem!important}.max-h-6rem{max-height:6rem!important}.max-h-7rem{max-height:7rem!important}.max-h-8rem{max-height:8rem!important}.max-h-9rem{max-height:9rem!important}.max-h-10rem{max-height:10rem!important}.max-h-11rem{max-height:11rem!important}.max-h-12rem{max-height:12rem!important}.max-h-13rem{max-height:13rem!important}.max-h-14rem{max-height:14rem!important}.max-h-15rem{max-height:15rem!important}.max-h-16rem{max-height:16rem!important}.max-h-17rem{max-height:17rem!important}.max-h-18rem{max-height:18rem!important}.max-h-19rem{max-height:19rem!important}.max-h-20rem{max-height:20rem!important}.max-h-21rem{max-height:21rem!important}.max-h-22rem{max-height:22rem!important}.max-h-23rem{max-height:23rem!important}.max-h-24rem{max-height:24rem!important}.max-h-25rem{max-height:25rem!important}.max-h-26rem{max-height:26rem!important}.max-h-27rem{max-height:27rem!important}.max-h-28rem{max-height:28rem!important}.max-h-29rem{max-height:29rem!important}.max-h-30rem{max-height:30rem!important}@media screen and (min-width: 576px){.sm\\:max-h-0{max-height:0px!important}.sm\\:max-h-full{max-height:100%!important}.sm\\:max-h-screen{max-height:100vh!important}.sm\\:max-h-min{max-height:min-content!important}.sm\\:max-h-max{max-height:max-content!important}.sm\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.sm\\:max-h-1rem{max-height:1rem!important}.sm\\:max-h-2rem{max-height:2rem!important}.sm\\:max-h-3rem{max-height:3rem!important}.sm\\:max-h-4rem{max-height:4rem!important}.sm\\:max-h-5rem{max-height:5rem!important}.sm\\:max-h-6rem{max-height:6rem!important}.sm\\:max-h-7rem{max-height:7rem!important}.sm\\:max-h-8rem{max-height:8rem!important}.sm\\:max-h-9rem{max-height:9rem!important}.sm\\:max-h-10rem{max-height:10rem!important}.sm\\:max-h-11rem{max-height:11rem!important}.sm\\:max-h-12rem{max-height:12rem!important}.sm\\:max-h-13rem{max-height:13rem!important}.sm\\:max-h-14rem{max-height:14rem!important}.sm\\:max-h-15rem{max-height:15rem!important}.sm\\:max-h-16rem{max-height:16rem!important}.sm\\:max-h-17rem{max-height:17rem!important}.sm\\:max-h-18rem{max-height:18rem!important}.sm\\:max-h-19rem{max-height:19rem!important}.sm\\:max-h-20rem{max-height:20rem!important}.sm\\:max-h-21rem{max-height:21rem!important}.sm\\:max-h-22rem{max-height:22rem!important}.sm\\:max-h-23rem{max-height:23rem!important}.sm\\:max-h-24rem{max-height:24rem!important}.sm\\:max-h-25rem{max-height:25rem!important}.sm\\:max-h-26rem{max-height:26rem!important}.sm\\:max-h-27rem{max-height:27rem!important}.sm\\:max-h-28rem{max-height:28rem!important}.sm\\:max-h-29rem{max-height:29rem!important}.sm\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 768px){.md\\:max-h-0{max-height:0px!important}.md\\:max-h-full{max-height:100%!important}.md\\:max-h-screen{max-height:100vh!important}.md\\:max-h-min{max-height:min-content!important}.md\\:max-h-max{max-height:max-content!important}.md\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.md\\:max-h-1rem{max-height:1rem!important}.md\\:max-h-2rem{max-height:2rem!important}.md\\:max-h-3rem{max-height:3rem!important}.md\\:max-h-4rem{max-height:4rem!important}.md\\:max-h-5rem{max-height:5rem!important}.md\\:max-h-6rem{max-height:6rem!important}.md\\:max-h-7rem{max-height:7rem!important}.md\\:max-h-8rem{max-height:8rem!important}.md\\:max-h-9rem{max-height:9rem!important}.md\\:max-h-10rem{max-height:10rem!important}.md\\:max-h-11rem{max-height:11rem!important}.md\\:max-h-12rem{max-height:12rem!important}.md\\:max-h-13rem{max-height:13rem!important}.md\\:max-h-14rem{max-height:14rem!important}.md\\:max-h-15rem{max-height:15rem!important}.md\\:max-h-16rem{max-height:16rem!important}.md\\:max-h-17rem{max-height:17rem!important}.md\\:max-h-18rem{max-height:18rem!important}.md\\:max-h-19rem{max-height:19rem!important}.md\\:max-h-20rem{max-height:20rem!important}.md\\:max-h-21rem{max-height:21rem!important}.md\\:max-h-22rem{max-height:22rem!important}.md\\:max-h-23rem{max-height:23rem!important}.md\\:max-h-24rem{max-height:24rem!important}.md\\:max-h-25rem{max-height:25rem!important}.md\\:max-h-26rem{max-height:26rem!important}.md\\:max-h-27rem{max-height:27rem!important}.md\\:max-h-28rem{max-height:28rem!important}.md\\:max-h-29rem{max-height:29rem!important}.md\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 992px){.lg\\:max-h-0{max-height:0px!important}.lg\\:max-h-full{max-height:100%!important}.lg\\:max-h-screen{max-height:100vh!important}.lg\\:max-h-min{max-height:min-content!important}.lg\\:max-h-max{max-height:max-content!important}.lg\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.lg\\:max-h-1rem{max-height:1rem!important}.lg\\:max-h-2rem{max-height:2rem!important}.lg\\:max-h-3rem{max-height:3rem!important}.lg\\:max-h-4rem{max-height:4rem!important}.lg\\:max-h-5rem{max-height:5rem!important}.lg\\:max-h-6rem{max-height:6rem!important}.lg\\:max-h-7rem{max-height:7rem!important}.lg\\:max-h-8rem{max-height:8rem!important}.lg\\:max-h-9rem{max-height:9rem!important}.lg\\:max-h-10rem{max-height:10rem!important}.lg\\:max-h-11rem{max-height:11rem!important}.lg\\:max-h-12rem{max-height:12rem!important}.lg\\:max-h-13rem{max-height:13rem!important}.lg\\:max-h-14rem{max-height:14rem!important}.lg\\:max-h-15rem{max-height:15rem!important}.lg\\:max-h-16rem{max-height:16rem!important}.lg\\:max-h-17rem{max-height:17rem!important}.lg\\:max-h-18rem{max-height:18rem!important}.lg\\:max-h-19rem{max-height:19rem!important}.lg\\:max-h-20rem{max-height:20rem!important}.lg\\:max-h-21rem{max-height:21rem!important}.lg\\:max-h-22rem{max-height:22rem!important}.lg\\:max-h-23rem{max-height:23rem!important}.lg\\:max-h-24rem{max-height:24rem!important}.lg\\:max-h-25rem{max-height:25rem!important}.lg\\:max-h-26rem{max-height:26rem!important}.lg\\:max-h-27rem{max-height:27rem!important}.lg\\:max-h-28rem{max-height:28rem!important}.lg\\:max-h-29rem{max-height:29rem!important}.lg\\:max-h-30rem{max-height:30rem!important}}@media screen and (min-width: 1200px){.xl\\:max-h-0{max-height:0px!important}.xl\\:max-h-full{max-height:100%!important}.xl\\:max-h-screen{max-height:100vh!important}.xl\\:max-h-min{max-height:min-content!important}.xl\\:max-h-max{max-height:max-content!important}.xl\\:max-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.xl\\:max-h-1rem{max-height:1rem!important}.xl\\:max-h-2rem{max-height:2rem!important}.xl\\:max-h-3rem{max-height:3rem!important}.xl\\:max-h-4rem{max-height:4rem!important}.xl\\:max-h-5rem{max-height:5rem!important}.xl\\:max-h-6rem{max-height:6rem!important}.xl\\:max-h-7rem{max-height:7rem!important}.xl\\:max-h-8rem{max-height:8rem!important}.xl\\:max-h-9rem{max-height:9rem!important}.xl\\:max-h-10rem{max-height:10rem!important}.xl\\:max-h-11rem{max-height:11rem!important}.xl\\:max-h-12rem{max-height:12rem!important}.xl\\:max-h-13rem{max-height:13rem!important}.xl\\:max-h-14rem{max-height:14rem!important}.xl\\:max-h-15rem{max-height:15rem!important}.xl\\:max-h-16rem{max-height:16rem!important}.xl\\:max-h-17rem{max-height:17rem!important}.xl\\:max-h-18rem{max-height:18rem!important}.xl\\:max-h-19rem{max-height:19rem!important}.xl\\:max-h-20rem{max-height:20rem!important}.xl\\:max-h-21rem{max-height:21rem!important}.xl\\:max-h-22rem{max-height:22rem!important}.xl\\:max-h-23rem{max-height:23rem!important}.xl\\:max-h-24rem{max-height:24rem!important}.xl\\:max-h-25rem{max-height:25rem!important}.xl\\:max-h-26rem{max-height:26rem!important}.xl\\:max-h-27rem{max-height:27rem!important}.xl\\:max-h-28rem{max-height:28rem!important}.xl\\:max-h-29rem{max-height:29rem!important}.xl\\:max-h-30rem{max-height:30rem!important}}.static{position:static!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.sticky{position:sticky!important}@media screen and (min-width: 576px){.sm\\:static{position:static!important}.sm\\:fixed{position:fixed!important}.sm\\:absolute{position:absolute!important}.sm\\:relative{position:relative!important}.sm\\:sticky{position:sticky!important}}@media screen and (min-width: 768px){.md\\:static{position:static!important}.md\\:fixed{position:fixed!important}.md\\:absolute{position:absolute!important}.md\\:relative{position:relative!important}.md\\:sticky{position:sticky!important}}@media screen and (min-width: 992px){.lg\\:static{position:static!important}.lg\\:fixed{position:fixed!important}.lg\\:absolute{position:absolute!important}.lg\\:relative{position:relative!important}.lg\\:sticky{position:sticky!important}}@media screen and (min-width: 1200px){.xl\\:static{position:static!important}.xl\\:fixed{position:fixed!important}.xl\\:absolute{position:absolute!important}.xl\\:relative{position:relative!important}.xl\\:sticky{position:sticky!important}}.top-auto{top:auto!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}@media screen and (min-width: 576px){.sm\\:top-auto{top:auto!important}.sm\\:top-0{top:0!important}.sm\\:top-50{top:50%!important}.sm\\:top-100{top:100%!important}}@media screen and (min-width: 768px){.md\\:top-auto{top:auto!important}.md\\:top-0{top:0!important}.md\\:top-50{top:50%!important}.md\\:top-100{top:100%!important}}@media screen and (min-width: 992px){.lg\\:top-auto{top:auto!important}.lg\\:top-0{top:0!important}.lg\\:top-50{top:50%!important}.lg\\:top-100{top:100%!important}}@media screen and (min-width: 1200px){.xl\\:top-auto{top:auto!important}.xl\\:top-0{top:0!important}.xl\\:top-50{top:50%!important}.xl\\:top-100{top:100%!important}}.left-auto{left:auto!important}.left-0{left:0!important}.left-50{left:50%!important}.left-100{left:100%!important}@media screen and (min-width: 576px){.sm\\:left-auto{left:auto!important}.sm\\:left-0{left:0!important}.sm\\:left-50{left:50%!important}.sm\\:left-100{left:100%!important}}@media screen and (min-width: 768px){.md\\:left-auto{left:auto!important}.md\\:left-0{left:0!important}.md\\:left-50{left:50%!important}.md\\:left-100{left:100%!important}}@media screen and (min-width: 992px){.lg\\:left-auto{left:auto!important}.lg\\:left-0{left:0!important}.lg\\:left-50{left:50%!important}.lg\\:left-100{left:100%!important}}@media screen and (min-width: 1200px){.xl\\:left-auto{left:auto!important}.xl\\:left-0{left:0!important}.xl\\:left-50{left:50%!important}.xl\\:left-100{left:100%!important}}.right-auto{right:auto!important}.right-0{right:0!important}.right-50{right:50%!important}.right-100{right:100%!important}@media screen and (min-width: 576px){.sm\\:right-auto{right:auto!important}.sm\\:right-0{right:0!important}.sm\\:right-50{right:50%!important}.sm\\:right-100{right:100%!important}}@media screen and (min-width: 768px){.md\\:right-auto{right:auto!important}.md\\:right-0{right:0!important}.md\\:right-50{right:50%!important}.md\\:right-100{right:100%!important}}@media screen and (min-width: 992px){.lg\\:right-auto{right:auto!important}.lg\\:right-0{right:0!important}.lg\\:right-50{right:50%!important}.lg\\:right-100{right:100%!important}}@media screen and (min-width: 1200px){.xl\\:right-auto{right:auto!important}.xl\\:right-0{right:0!important}.xl\\:right-50{right:50%!important}.xl\\:right-100{right:100%!important}}.bottom-auto{bottom:auto!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}@media screen and (min-width: 576px){.sm\\:bottom-auto{bottom:auto!important}.sm\\:bottom-0{bottom:0!important}.sm\\:bottom-50{bottom:50%!important}.sm\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 768px){.md\\:bottom-auto{bottom:auto!important}.md\\:bottom-0{bottom:0!important}.md\\:bottom-50{bottom:50%!important}.md\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 992px){.lg\\:bottom-auto{bottom:auto!important}.lg\\:bottom-0{bottom:0!important}.lg\\:bottom-50{bottom:50%!important}.lg\\:bottom-100{bottom:100%!important}}@media screen and (min-width: 1200px){.xl\\:bottom-auto{bottom:auto!important}.xl\\:bottom-0{bottom:0!important}.xl\\:bottom-50{bottom:50%!important}.xl\\:bottom-100{bottom:100%!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-auto{overflow:auto!important}.sm\\:overflow-hidden{overflow:hidden!important}.sm\\:overflow-visible{overflow:visible!important}.sm\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-auto{overflow:auto!important}.md\\:overflow-hidden{overflow:hidden!important}.md\\:overflow-visible{overflow:visible!important}.md\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-auto{overflow:auto!important}.lg\\:overflow-hidden{overflow:hidden!important}.lg\\:overflow-visible{overflow:visible!important}.lg\\:overflow-scroll{overflow:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-auto{overflow:auto!important}.xl\\:overflow-hidden{overflow:hidden!important}.xl\\:overflow-visible{overflow:visible!important}.xl\\:overflow-scroll{overflow:scroll!important}}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-x-auto{overflow-x:auto!important}.sm\\:overflow-x-hidden{overflow-x:hidden!important}.sm\\:overflow-x-visible{overflow-x:visible!important}.sm\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-x-auto{overflow-x:auto!important}.md\\:overflow-x-hidden{overflow-x:hidden!important}.md\\:overflow-x-visible{overflow-x:visible!important}.md\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-x-auto{overflow-x:auto!important}.lg\\:overflow-x-hidden{overflow-x:hidden!important}.lg\\:overflow-x-visible{overflow-x:visible!important}.lg\\:overflow-x-scroll{overflow-x:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-x-auto{overflow-x:auto!important}.xl\\:overflow-x-hidden{overflow-x:hidden!important}.xl\\:overflow-x-visible{overflow-x:visible!important}.xl\\:overflow-x-scroll{overflow-x:scroll!important}}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}@media screen and (min-width: 576px){.sm\\:overflow-y-auto{overflow-y:auto!important}.sm\\:overflow-y-hidden{overflow-y:hidden!important}.sm\\:overflow-y-visible{overflow-y:visible!important}.sm\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 768px){.md\\:overflow-y-auto{overflow-y:auto!important}.md\\:overflow-y-hidden{overflow-y:hidden!important}.md\\:overflow-y-visible{overflow-y:visible!important}.md\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 992px){.lg\\:overflow-y-auto{overflow-y:auto!important}.lg\\:overflow-y-hidden{overflow-y:hidden!important}.lg\\:overflow-y-visible{overflow-y:visible!important}.lg\\:overflow-y-scroll{overflow-y:scroll!important}}@media screen and (min-width: 1200px){.xl\\:overflow-y-auto{overflow-y:auto!important}.xl\\:overflow-y-hidden{overflow-y:hidden!important}.xl\\:overflow-y-visible{overflow-y:visible!important}.xl\\:overflow-y-scroll{overflow-y:scroll!important}}.z-auto{z-index:auto!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}.z-4{z-index:4!important}.z-5{z-index:5!important}@media screen and (min-width: 576px){.sm\\:z-auto{z-index:auto!important}.sm\\:z-0{z-index:0!important}.sm\\:z-1{z-index:1!important}.sm\\:z-2{z-index:2!important}.sm\\:z-3{z-index:3!important}.sm\\:z-4{z-index:4!important}.sm\\:z-5{z-index:5!important}}@media screen and (min-width: 768px){.md\\:z-auto{z-index:auto!important}.md\\:z-0{z-index:0!important}.md\\:z-1{z-index:1!important}.md\\:z-2{z-index:2!important}.md\\:z-3{z-index:3!important}.md\\:z-4{z-index:4!important}.md\\:z-5{z-index:5!important}}@media screen and (min-width: 992px){.lg\\:z-auto{z-index:auto!important}.lg\\:z-0{z-index:0!important}.lg\\:z-1{z-index:1!important}.lg\\:z-2{z-index:2!important}.lg\\:z-3{z-index:3!important}.lg\\:z-4{z-index:4!important}.lg\\:z-5{z-index:5!important}}@media screen and (min-width: 1200px){.xl\\:z-auto{z-index:auto!important}.xl\\:z-0{z-index:0!important}.xl\\:z-1{z-index:1!important}.xl\\:z-2{z-index:2!important}.xl\\:z-3{z-index:3!important}.xl\\:z-4{z-index:4!important}.xl\\:z-5{z-index:5!important}}.bg-repeat{background-repeat:repeat!important}.bg-no-repeat{background-repeat:no-repeat!important}.bg-repeat-x{background-repeat:repeat-x!important}.bg-repeat-y{background-repeat:repeat-y!important}.bg-repeat-round{background-repeat:round!important}.bg-repeat-space{background-repeat:space!important}@media screen and (min-width: 576px){.sm\\:bg-repeat{background-repeat:repeat!important}.sm\\:bg-no-repeat{background-repeat:no-repeat!important}.sm\\:bg-repeat-x{background-repeat:repeat-x!important}.sm\\:bg-repeat-y{background-repeat:repeat-y!important}.sm\\:bg-repeat-round{background-repeat:round!important}.sm\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 768px){.md\\:bg-repeat{background-repeat:repeat!important}.md\\:bg-no-repeat{background-repeat:no-repeat!important}.md\\:bg-repeat-x{background-repeat:repeat-x!important}.md\\:bg-repeat-y{background-repeat:repeat-y!important}.md\\:bg-repeat-round{background-repeat:round!important}.md\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 992px){.lg\\:bg-repeat{background-repeat:repeat!important}.lg\\:bg-no-repeat{background-repeat:no-repeat!important}.lg\\:bg-repeat-x{background-repeat:repeat-x!important}.lg\\:bg-repeat-y{background-repeat:repeat-y!important}.lg\\:bg-repeat-round{background-repeat:round!important}.lg\\:bg-repeat-space{background-repeat:space!important}}@media screen and (min-width: 1200px){.xl\\:bg-repeat{background-repeat:repeat!important}.xl\\:bg-no-repeat{background-repeat:no-repeat!important}.xl\\:bg-repeat-x{background-repeat:repeat-x!important}.xl\\:bg-repeat-y{background-repeat:repeat-y!important}.xl\\:bg-repeat-round{background-repeat:round!important}.xl\\:bg-repeat-space{background-repeat:space!important}}.bg-auto{background-size:auto!important}.bg-cover{background-size:cover!important}.bg-contain{background-size:contain!important}@media screen and (min-width: 576px){.sm\\:bg-auto{background-size:auto!important}.sm\\:bg-cover{background-size:cover!important}.sm\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 768px){.md\\:bg-auto{background-size:auto!important}.md\\:bg-cover{background-size:cover!important}.md\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 992px){.lg\\:bg-auto{background-size:auto!important}.lg\\:bg-cover{background-size:cover!important}.lg\\:bg-contain{background-size:contain!important}}@media screen and (min-width: 1200px){.xl\\:bg-auto{background-size:auto!important}.xl\\:bg-cover{background-size:cover!important}.xl\\:bg-contain{background-size:contain!important}}.bg-bottom{background-position:bottom!important}.bg-center{background-position:center!important}.bg-left{background-position:left!important}.bg-left-bottom{background-position:left bottom!important}.bg-left-top{background-position:left top!important}.bg-right{background-position:right!important}.bg-right-bottom{background-position:right bottom!important}.bg-right-top{background-position:right top!important}.bg-top{background-position:top!important}@media screen and (min-width: 576px){.sm\\:bg-bottom{background-position:bottom!important}.sm\\:bg-center{background-position:center!important}.sm\\:bg-left{background-position:left!important}.sm\\:bg-left-bottom{background-position:left bottom!important}.sm\\:bg-left-top{background-position:left top!important}.sm\\:bg-right{background-position:right!important}.sm\\:bg-right-bottom{background-position:right bottom!important}.sm\\:bg-right-top{background-position:right top!important}.sm\\:bg-top{background-position:top!important}}@media screen and (min-width: 768px){.md\\:bg-bottom{background-position:bottom!important}.md\\:bg-center{background-position:center!important}.md\\:bg-left{background-position:left!important}.md\\:bg-left-bottom{background-position:left bottom!important}.md\\:bg-left-top{background-position:left top!important}.md\\:bg-right{background-position:right!important}.md\\:bg-right-bottom{background-position:right bottom!important}.md\\:bg-right-top{background-position:right top!important}.md\\:bg-top{background-position:top!important}}@media screen and (min-width: 992px){.lg\\:bg-bottom{background-position:bottom!important}.lg\\:bg-center{background-position:center!important}.lg\\:bg-left{background-position:left!important}.lg\\:bg-left-bottom{background-position:left bottom!important}.lg\\:bg-left-top{background-position:left top!important}.lg\\:bg-right{background-position:right!important}.lg\\:bg-right-bottom{background-position:right bottom!important}.lg\\:bg-right-top{background-position:right top!important}.lg\\:bg-top{background-position:top!important}}@media screen and (min-width: 1200px){.xl\\:bg-bottom{background-position:bottom!important}.xl\\:bg-center{background-position:center!important}.xl\\:bg-left{background-position:left!important}.xl\\:bg-left-bottom{background-position:left bottom!important}.xl\\:bg-left-top{background-position:left top!important}.xl\\:bg-right{background-position:right!important}.xl\\:bg-right-bottom{background-position:right bottom!important}.xl\\:bg-right-top{background-position:right top!important}.xl\\:bg-top{background-position:top!important}}.list-none{list-style:none!important}.list-disc{list-style:disc!important}.list-decimal{list-style:decimal!important}.appearance-none{-webkit-appearance:none!important;appearance:none!important}.outline-none{outline:none!important}.pointer-events-none{pointer-events:none!important}.pointer-events-auto{pointer-events:auto!important}.cursor-auto{cursor:auto!important}.cursor-pointer{cursor:pointer!important}.cursor-wait{cursor:wait!important}.cursor-move{cursor:move!important}.select-none{-webkit-user-select:none!important;user-select:none!important}.select-text{-webkit-user-select:text!important;user-select:text!important}.select-all{-webkit-user-select:all!important;user-select:all!important}.select-auto{-webkit-user-select:auto!important;user-select:auto!important}.opacity-0{opacity:0!important}.opacity-10{opacity:.1!important}.opacity-20{opacity:.2!important}.opacity-30{opacity:.3!important}.opacity-40{opacity:.4!important}.opacity-50{opacity:.5!important}.opacity-60{opacity:.6!important}.opacity-70{opacity:.7!important}.opacity-80{opacity:.8!important}.opacity-90{opacity:.9!important}.opacity-100{opacity:1!important}.reset{all:unset}.transition-none{transition-property:none!important}.transition-all{transition-property:all!important}.transition-colors{transition-property:background-color,border-color,color!important}.transition-transform{transition-property:transform!important}.transition-duration-100{transition-duration:.1s!important}.transition-duration-150{transition-duration:.15s!important}.transition-duration-200{transition-duration:.2s!important}.transition-duration-300{transition-duration:.3s!important}.transition-duration-400{transition-duration:.4s!important}.transition-duration-500{transition-duration:.5s!important}.transition-duration-1000{transition-duration:1s!important}.transition-duration-2000{transition-duration:2s!important}.transition-duration-3000{transition-duration:3s!important}.transition-linear{transition-timing-function:linear!important}.transition-ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.transition-ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.transition-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.transition-delay-100{transition-delay:.1s!important}.transition-delay-150{transition-delay:.15s!important}.transition-delay-200{transition-delay:.2s!important}.transition-delay-300{transition-delay:.3s!important}.transition-delay-400{transition-delay:.4s!important}.transition-delay-500{transition-delay:.5s!important}.transition-delay-1000{transition-delay:1s!important}.translate-x-0{transform:translate(0)!important}.translate-x-100{transform:translate(100%)!important}.-translate-x-100{transform:translate(-100%)!important}.translate-y-0{transform:translateY(0)!important}.translate-y-100{transform:translateY(100%)!important}.-translate-y-100{transform:translateY(-100%)!important}@media screen and (min-width: 576px){.sm\\:translate-x-0{transform:translate(0)!important}.sm\\:translate-x-100{transform:translate(100%)!important}.sm\\:-translate-x-100{transform:translate(-100%)!important}.sm\\:translate-y-0{transform:translateY(0)!important}.sm\\:translate-y-100{transform:translateY(100%)!important}.sm\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 768px){.md\\:translate-x-0{transform:translate(0)!important}.md\\:translate-x-100{transform:translate(100%)!important}.md\\:-translate-x-100{transform:translate(-100%)!important}.md\\:translate-y-0{transform:translateY(0)!important}.md\\:translate-y-100{transform:translateY(100%)!important}.md\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 992px){.lg\\:translate-x-0{transform:translate(0)!important}.lg\\:translate-x-100{transform:translate(100%)!important}.lg\\:-translate-x-100{transform:translate(-100%)!important}.lg\\:translate-y-0{transform:translateY(0)!important}.lg\\:translate-y-100{transform:translateY(100%)!important}.lg\\:-translate-y-100{transform:translateY(-100%)!important}}@media screen and (min-width: 1200px){.xl\\:translate-x-0{transform:translate(0)!important}.xl\\:translate-x-100{transform:translate(100%)!important}.xl\\:-translate-x-100{transform:translate(-100%)!important}.xl\\:translate-y-0{transform:translateY(0)!important}.xl\\:translate-y-100{transform:translateY(100%)!important}.xl\\:-translate-y-100{transform:translateY(-100%)!important}}.rotate-45{transform:rotate(45deg)!important}.-rotate-45{transform:rotate(-45deg)!important}.rotate-90{transform:rotate(90deg)!important}.-rotate-90{transform:rotate(-90deg)!important}.rotate-180{transform:rotate(180deg)!important}.-rotate-180{transform:rotate(-180deg)!important}@media screen and (min-width: 576px){.sm\\:rotate-45{transform:rotate(45deg)!important}.sm\\:-rotate-45{transform:rotate(-45deg)!important}.sm\\:rotate-90{transform:rotate(90deg)!important}.sm\\:-rotate-90{transform:rotate(-90deg)!important}.sm\\:rotate-180{transform:rotate(180deg)!important}.sm\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 768px){.md\\:rotate-45{transform:rotate(45deg)!important}.md\\:-rotate-45{transform:rotate(-45deg)!important}.md\\:rotate-90{transform:rotate(90deg)!important}.md\\:-rotate-90{transform:rotate(-90deg)!important}.md\\:rotate-180{transform:rotate(180deg)!important}.md\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 992px){.lg\\:rotate-45{transform:rotate(45deg)!important}.lg\\:-rotate-45{transform:rotate(-45deg)!important}.lg\\:rotate-90{transform:rotate(90deg)!important}.lg\\:-rotate-90{transform:rotate(-90deg)!important}.lg\\:rotate-180{transform:rotate(180deg)!important}.lg\\:-rotate-180{transform:rotate(-180deg)!important}}@media screen and (min-width: 1200px){.xl\\:rotate-45{transform:rotate(45deg)!important}.xl\\:-rotate-45{transform:rotate(-45deg)!important}.xl\\:rotate-90{transform:rotate(90deg)!important}.xl\\:-rotate-90{transform:rotate(-90deg)!important}.xl\\:rotate-180{transform:rotate(180deg)!important}.xl\\:-rotate-180{transform:rotate(-180deg)!important}}.origin-center{transform-origin:center!important}.origin-top{transform-origin:top!important}.origin-top-right{transform-origin:top right!important}.origin-right{transform-origin:right!important}.origin-bottom-right{transform-origin:bottom right!important}.origin-bottom{transform-origin:bottom!important}.origin-bottom-left{transform-origin:bottom left!important}.origin-left{transform-origin:left!important}.origin-top-left{transform-origin:top-left!important}@media screen and (min-width: 576px){.sm\\:origin-center{transform-origin:center!important}.sm\\:origin-top{transform-origin:top!important}.sm\\:origin-top-right{transform-origin:top right!important}.sm\\:origin-right{transform-origin:right!important}.sm\\:origin-bottom-right{transform-origin:bottom right!important}.sm\\:origin-bottom{transform-origin:bottom!important}.sm\\:origin-bottom-left{transform-origin:bottom left!important}.sm\\:origin-left{transform-origin:left!important}.sm\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 768px){.md\\:origin-center{transform-origin:center!important}.md\\:origin-top{transform-origin:top!important}.md\\:origin-top-right{transform-origin:top right!important}.md\\:origin-right{transform-origin:right!important}.md\\:origin-bottom-right{transform-origin:bottom right!important}.md\\:origin-bottom{transform-origin:bottom!important}.md\\:origin-bottom-left{transform-origin:bottom left!important}.md\\:origin-left{transform-origin:left!important}.md\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 992px){.lg\\:origin-center{transform-origin:center!important}.lg\\:origin-top{transform-origin:top!important}.lg\\:origin-top-right{transform-origin:top right!important}.lg\\:origin-right{transform-origin:right!important}.lg\\:origin-bottom-right{transform-origin:bottom right!important}.lg\\:origin-bottom{transform-origin:bottom!important}.lg\\:origin-bottom-left{transform-origin:bottom left!important}.lg\\:origin-left{transform-origin:left!important}.lg\\:origin-top-left{transform-origin:top-left!important}}@media screen and (min-width: 1200px){.xl\\:origin-center{transform-origin:center!important}.xl\\:origin-top{transform-origin:top!important}.xl\\:origin-top-right{transform-origin:top right!important}.xl\\:origin-right{transform-origin:right!important}.xl\\:origin-bottom-right{transform-origin:bottom right!important}.xl\\:origin-bottom{transform-origin:bottom!important}.xl\\:origin-bottom-left{transform-origin:bottom left!important}.xl\\:origin-left{transform-origin:left!important}.xl\\:origin-top-left{transform-origin:top-left!important}}@keyframes fadein{0%{opacity:0}to{opacity:1}}@keyframes fadeout{0%{opacity:1}to{opacity:0}}@keyframes scalein{0%{opacity:0;transform:scaleY(.8);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:scaleY(1)}}@keyframes slidedown{0%{max-height:0}to{max-height:auto}}@keyframes slideup{0%{max-height:1000px}to{max-height:0}}@keyframes fadeinleft{0%{opacity:0;transform:translate(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutleft{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(-100%)}}@keyframes fadeinright{0%{opacity:0;transform:translate(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutright{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(100%)}}@keyframes fadeinup{0%{opacity:0;transform:translateY(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutup{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(-100%)}}@keyframes fadeindown{0%{opacity:0;transform:translateY(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutdown{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(100%)}}@keyframes animate-width{0%{width:0}to{width:100%}}@keyframes flip{0%{transform:perspective(2000px) rotateX(-100deg)}to{transform:perspective(2000px) rotateX(0)}}@keyframes flipleft{0%{transform:perspective(2000px) rotateY(-100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipright{0%{transform:perspective(2000px) rotateY(100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipup{0%{transform:perspective(2000px) rotateX(-100deg);opacity:0}to{transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes zoomin{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomindown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0)}}@keyframes zoominleft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0)}}@keyframes zoominright{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0)}}@keyframes zoominup{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0)}}.fadein{animation:fadein .15s linear}.fadeout{animation:fadeout .15s linear}.slidedown{animation:slidedown .45s ease-in-out}.slideup{animation:slideup .45s cubic-bezier(0,1,0,1)}.scalein{animation:scalein .15s linear}.fadeinleft{animation:fadeinleft .15s linear}.fadeoutleft{animation:fadeoutleft .15s linear}.fadeinright{animation:fadeinright .15s linear}.fadeoutright{animation:fadeoutright .15s linear}.fadeinup{animation:fadeinup .15s linear}.fadeoutup{animation:fadeoutup .15s linear}.fadeindown{animation:fadeindown .15s linear}.fadeoutdown{animation:fadeoutdown .15s linear}.animate-width{animation:animate-width 1s linear}.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flip .15s linear}.flipup{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipup .15s linear}.flipleft{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipleft .15s linear}.flipright{-webkit-backface-visibility:visible;backface-visibility:visible;animation:flipright .15s linear}.zoomin{animation:zoomin .15s linear}.zoomindown{animation:zoomindown .15s linear}.zoominleft{animation:zoominleft .15s linear}.zoominright{animation:zoominright .15s linear}.zoominup{animation:zoominup .15s linear}.animation-duration-100{animation-duration:.1s!important}.animation-duration-150{animation-duration:.15s!important}.animation-duration-200{animation-duration:.2s!important}.animation-duration-300{animation-duration:.3s!important}.animation-duration-400{animation-duration:.4s!important}.animation-duration-500{animation-duration:.5s!important}.animation-duration-1000{animation-duration:1s!important}.animation-duration-2000{animation-duration:2s!important}.animation-duration-3000{animation-duration:3s!important}.animation-delay-100{animation-delay:.1s!important}.animation-delay-150{animation-delay:.15s!important}.animation-delay-200{animation-delay:.2s!important}.animation-delay-300{animation-delay:.3s!important}.animation-delay-400{animation-delay:.4s!important}.animation-delay-500{animation-delay:.5s!important}.animation-delay-1000{animation-delay:1s!important}.animation-iteration-1{animation-iteration-count:1!important}.animation-iteration-2{animation-iteration-count:2!important}.animation-iteration-infinite{animation-iteration-count:infinite!important}.animation-linear{animation-timing-function:linear!important}.animation-ease-in{animation-timing-function:cubic-bezier(.4,0,1,1)!important}.animation-ease-out{animation-timing-function:cubic-bezier(0,0,.2,1)!important}.animation-ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)!important}.animation-fill-none{animation-fill-mode:none!important}.animation-fill-forwards{animation-fill-mode:forwards!important}.animation-fill-backwards{animation-fill-mode:backwards!important}.animation-fill-both{animation-fill-mode:both!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card{background-color:#fff;border-radius:8px;box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a}:host ::ng-deep .w-filter-panel-no-style-card.p-card .p-card-content{padding:0!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card .p-card-body{padding:0!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button{padding:0!important;height:auto!important;overflow:visible!important}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button .p-button-icon{font-size:9px!important;transform:translatey(1px) translate(2px)!important;color:#5f6468}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button>.p-button-label{color:#5f6468}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button:hover>.p-button-label{color:#1f2224}:host ::ng-deep .w-filter-panel-no-style-card.p-card .change-filter-button:hover .p-button-icon{color:#1f2224}:host ::ng-deep .w-filter-panel-buttons{display:flex;padding:0!important;margin-top:12px}:host ::ng-deep .w-filter-panel-buttons:has(button){flex-grow:10!important;flex-shrink:10!important;max-width:none!important;flex-basis:100%!important;gap:12px!important}:host ::ng-deep .w-filter-panel-buttons button{gap:8px;height:24px!important;padding-left:12px!important;padding-right:12px!important}:host ::ng-deep .w-filter-panel-buttons button>.p-button-label{font-size:11px!important;font-weight:700!important}:host ::ng-deep .w-filter-panel-buttons button.cancel-filter-button .p-button-icon.p-button-icon-left{font-size:12px}:host ::ng-deep .w-filter-panel-buttons button.set-filter-button .p-button-icon.p-button-icon-left{font-size:9px}.w-filter-panel-container-basic,.w-filter-panel-container-advanced{padding:20px 24px!important;display:grid;gap:12px}::ng-deep .query-builder-style ul li{border:none!important;background:transparent!important;padding-left:0!important}::ng-deep .w-filter-panel-basic .q-tree-container{margin:0;overflow:visible!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree{margin:0!important;padding:0!important;display:flex;flex-wrap:wrap;justify-content:flex-start;gap:20px 24px}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row{padding:0;margin:0;width:0}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row:not(:nth-child(3n)){display:flex!important;flex-direction:column;flex-basis:calc(16.6666666667% - 20px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row:nth-child(3n){display:flex!important;flex-direction:column;flex-basis:calc(16.6666666667% - 20px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row:has(.w-filter-panel-notifications-event-field){display:flex!important;flex-direction:column;flex-basis:calc(33.3333333333% - 16px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row.q-connector:before{content:none!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row.q-connector:after{border-width:0px!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-input-text-label{font-size:11px;font-weight:600;color:#1f2224;margin-bottom:6px;width:100%}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width{flex-basis:calc(16.6666666667% - 20px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.notifications-event-field-width{flex-basis:calc(50% - 12px)!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch{width:100%;background-color:#fff;height:24px!important;font-size:10.5px!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext>span,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch>span{padding-top:4px!important;padding-left:8px!important;width:50px!important}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext .pi,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch .pi{line-height:14px}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width.w-notifications-event-field .w-edit-select-field .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-select-small .p-dropdown .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-multiselect-small .p-multiselect .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-calendar-small .p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-toggle-small .p-inputswitch .p-dropdown-trigger{margin-right:4px!important;padding-bottom:2px}::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .w-edit-input-number-small,::ng-deep .w-filter-panel-basic .q-tree-container .q-tree .q-row .w-filter-panel-basic-query-builder-input-width .p-multiselect{width:100%}::ng-deep .w-filter-panel-advanced div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-button-group{width:auto!important;overflow:visible!important;margin:8px}::ng-deep .w-filter-panel-advanced div .q-button-group button,::ng-deep .w-filter-panel-grouped div .q-button-group button{height:24px!important}::ng-deep .w-filter-panel-advanced div .q-button-group.q-right-align,::ng-deep .w-filter-panel-grouped div .q-button-group.q-right-align{margin-right:0}::ng-deep .w-filter-panel-advanced div .w-filter-panel-switch-group-padding w-select-button .w-button-small .p-selectbutton .p-button,::ng-deep .w-filter-panel-grouped div .w-filter-panel-switch-group-padding w-select-button .w-button-small .p-selectbutton .p-button{height:24px}::ng-deep .w-filter-panel-advanced div .q-inline-block-display,::ng-deep .w-filter-panel-advanced div .q-tree-container .q-tree .q-rule .q-button-group,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule div .q-button-group,::ng-deep .w-filter-panel-advanced div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-inline-block-display,::ng-deep .w-filter-panel-grouped div .q-tree-container .q-tree .q-rule .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-button-group{margin:8px}::ng-deep .w-filter-panel-advanced .q-tree-container,::ng-deep .w-filter-panel-grouped .q-tree-container{margin:0;padding:0;overflow:visible!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-ruleset,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-ruleset{border:none!important;padding:6px 0!important;margin:12px 0!important;border-radius:8px;background-color:#005c7a08!important;box-shadow:0 0 1px #0000001a inset,0 4px 8px #005c7a0d,0 1px 3px #005c7a1a}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule{background:none!important;border:none!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group{overflow:visible!important;margin:8px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group .p-button span:not(*:hover),::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group .p-button span:not(*:hover){color:#1f2224}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group .p-button,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group .p-button{box-shadow:0 0 1px 0 rgba #000,.1 inset,1px 1px 5px rgba #000,.06,1px 1px 1px rgba #000,.08;height:24px;width:24px;border:1px solid #e8ebee!important;border:none!important;padding:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group .p-button span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group .p-button span{margin-left:8px!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-button-group.q-right-align,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-button-group.q-right-align{margin-right:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row{padding:0;margin-top:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .q-inline-block-display,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row div .q-button-group,::ng-deep .w-filter-panel-advanced div .q-tree-container .q-tree .q-row .q-button-group,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .q-rule .q-button-group,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-rule .q-row .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .q-inline-block-display,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row div .q-button-group,::ng-deep .w-filter-panel-grouped div .q-tree-container .q-tree .q-row .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .q-rule .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-rule .q-row .q-button-group{vertical-align:middle!important;margin:8px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width{display:inline-flex;vertical-align:middle!important;width:200px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-no-entity-mode,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-no-entity-mode{width:0px;padding:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-entity-nullable,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.w-entity-nullable{padding:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators{width:100px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators.w-field-nullable,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width.q-operators.w-field-nullable{width:0px;padding:0;margin:0}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch{width:100%;background-color:#fff;height:24px!important;font-size:10.5px!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar>span,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar>span,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch>span{padding-top:4px!important;padding-left:8px!important;width:50px!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .pi,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .pi,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .pi{line-height:14px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .p-dropdown-trigger,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small .p-inputnumber .p-inputnumber-input .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small .p-dropdown .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-multiselect-small .p-multiselect .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-calendar-small .p-calendar .p-dropdown-trigger,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-toggle-small .p-inputswitch .p-dropdown-trigger{margin-right:4px!important;padding-bottom:2px}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .p-dropdown,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-list-field,::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-edit-calendar,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-text-small.p-inputtext,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-input-number-small,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .w-edit-select-small,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width .p-dropdown,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-list-field,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-row .w-filter-panel-advanced-query-builder-input-width w-edit-calendar{width:100%}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-button-group,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-button-group{overflow:visible!important}::ng-deep .w-filter-panel-advanced .q-tree-container .q-tree .q-button-group button,::ng-deep .w-filter-panel-grouped .q-tree-container .q-tree .q-button-group button{box-shadow:0 0 1px 0 rgba #000,.1 inset,1px 1px 5px rgba #000,.06,1px 1px 1px rgba #000,.08!important;background:white!important}.advanced-query-button-group{position:absolute;bottom:0;left:0;margin-bottom:-46px}.w-filter-panel-container{position:relative}::ng-deep .w-filter-panel-blockui.p-blockui{opacity:0!important}::ng-deep .w-filter-panel-basic-query-builder-input-width p-dropdown .p-dropdown{width:100%}::ng-deep .w-filter-panel-basic-query-builder-input-width input .p-inputtext{width:100%}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input{border:1px solid #e8ebee;border-radius:8px;padding:8px;width:100%}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus{border-radius:8px}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input::-webkit-input-placeholder{color:#9aa0a7!important}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input::-moz-placeholder{color:#9aa0a7!important}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus:-ms-input-placeholder{color:#9aa0a7!important}::ng-deep .w-edit-input-number-small .p-inputnumber .p-inputnumber-input:focus:-moz-placeholder{color:#9aa0a7!important}:host ::ng-deep .w-edit-select-small .p-dropdown .p-dropdown-label{padding-right:24px;height:100%}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open:not(.p-disabled):hover{border-color:#e8ebee}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open .p-dropdown-label{padding-right:7px}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open .p-dropdown-trigger{visibility:hidden;margin:0;padding:0;width:0px;height:0px}:host ::ng-deep .w-edit-select-small .p-dropdown.p-dropdown-open .p-dropdown-clear-icon{right:12px}:host ::ng-deep .w-edit-select-small .p-dropdown:not(.p-dropdown-open){box-shadow:none!important;border-color:#e8ebee}:host ::ng-deep .w-edit-select-small .p-inputtext{align-content:center}:host ::ng-deep .w-edit-select-small .p-dropdown:not(.p-disabled):hover{border-color:#00b3eb}:host ::ng-deep .w-edit-select-small .p-dropdown .p-dropdown-trigger{width:auto;height:26px;padding-right:6px;padding-left:6px;margin-right:8px}:host ::ng-deep .w-edit-select-small .p-dropdown .p-dropdown-clear-icon{right:38px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect{border:1px solid #e8ebee;border-radius:8px;display:flex}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container{display:flex;padding:0!important;align-items:center}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label{padding:0 8px;align-content:center;margin-right:20px;display:flex;width:100%;gap:6px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token{height:20px;padding:0 6px;gap:4px;border-radius:6px;border-width:1px;color:#1f2224;background-color:#e0f5fc}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon{margin-left:0;font-size:8px;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-label .p-multiselect-token .p-multiselect-token-icon:before{content:\"\\e90b\"!important;color:#1f2224}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times:before{content:\"\\e90c\"!important;color:#5f6468!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-label-container .p-multiselect-clear-icon.pi-times{right:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open:not(.p-disabled):hover{border-color:#e8ebee}:host ::ng-deep .w-edit-multiselect-small .p-multiselect .p-multiselect-trigger{width:30px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-label{margin-right:32px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-trigger{display:none;margin:0;padding:0;width:0px;height:0px}:host ::ng-deep .w-edit-multiselect-small .p-multiselect.p-multiselect-open .p-multiselect-clear-icon{right:15px!important}:host ::ng-deep .w-edit-multiselect-small .p-multiselect:hover{border:1px solid #00b3eb}.w-filter-panel-notifications-event-field{display:flex;gap:20px 24px}\n"] }]
|
|
692
704
|
}], ctorParameters: function () { return [{ type: i1.FormBuilder }, { type: i2.ApiService }, { type: i3.SessionStorageService }]; }, propDecorators: { authorizationApiUrl: [{
|
|
693
705
|
type: Input,
|
|
694
706
|
args: ['apiUrl']
|
|
@@ -753,4 +765,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
753
765
|
type: ViewChild,
|
|
754
766
|
args: ['basicQueryBuilderObject']
|
|
755
767
|
}] } });
|
|
756
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidy1maWx0ZXItcGFuZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvd2FwcC1jb21wb25lbnRzL3NyYy9saWIvbWlzYy93LWZpbHRlci1wYW5lbC93LWZpbHRlci1wYW5lbC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93YXBwLWNvbXBvbmVudHMvc3JjL2xpYi9taXNjL3ctZmlsdGVyLXBhbmVsL3ctZmlsdGVyLXBhbmVsLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRTFGLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxZQUFZLEVBQUUsY0FBYyxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFJdkcsT0FBTyxFQUFFLGVBQWUsRUFBZ0IsTUFBTSxzREFBc0QsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBZ0JyRyxNQUFNLE9BQU8scUJBQXFCO0lBb0hoQyxZQUNVLFdBQXdCLEVBQ3hCLFVBQXNCLEVBQ3RCLGNBQXFDO1FBRnJDLGdCQUFXLEdBQVgsV0FBVyxDQUFhO1FBQ3hCLGVBQVUsR0FBVixVQUFVLENBQVk7UUFDdEIsbUJBQWMsR0FBZCxjQUFjLENBQXVCO1FBbkh4Qyw4QkFBeUIsR0FBWSxLQUFLLENBQUM7UUFFbEQscUJBQWdCLEdBQVksS0FBSyxDQUFDO1FBQ2xDLHFCQUFnQixHQUFZLEtBQUssQ0FBQztRQUNsQyxtQkFBYyxHQUFHLGNBQWMsQ0FBQztRQUNoQyxnQkFBVyxHQUFHLE1BQU0sQ0FBQyxNQUFNLENBQUMsY0FBYyxDQUFDLENBQUM7UUFHNUMsZUFBVSxHQUFRO1lBQ2hCLFNBQVMsRUFBRSxLQUFLO1lBQ2hCLEtBQUssRUFBRSxFQUFFO1NBQ1YsQ0FBQztRQUNGLGlCQUFZLEdBQVE7WUFDbEIsU0FBUyxFQUFFLEtBQUs7WUFDaEIsS0FBSyxFQUFFLEVBQUU7U0FDVixDQUFDO1FBQ0Ysa0JBQWEsR0FBUTtZQUNuQixTQUFTLEVBQUUsS0FBSztZQUNoQixLQUFLLEVBQUUsRUFBRTtTQUNWLENBQUM7UUFFRix3QkFBbUIsR0FBdUIsRUFBRSxNQUFNLEVBQUUsRUFBRSxFQUFFLENBQUM7UUFDekQsYUFBUSxHQUFVLEVBQUUsQ0FBQztRQUNyQixrQkFBYSxHQUFVLEVBQUUsQ0FBQztRQUMxQixxQkFBZ0IsR0FBVSxFQUFFLENBQUM7UUFHN0IsMkJBQXNCLEdBQVcsbUJBQW1CLENBQUM7UUFDckQsZ0NBQTJCLEdBQVMsRUFBRSxDQUFDO1FBVUgsOEJBQXlCLEdBQVksS0FBSyxDQUFDO1FBRy9DLDBCQUFxQixHQUFhLEVBQUUsQ0FBQztRQUNoQywrQkFBMEIsR0FBYSxFQUFFLENBQUM7UUFHbEQsdUJBQWtCLEdBQTRCO1lBQ3pFLG1CQUFtQixFQUFFLGNBQWM7WUFDbkMsc0JBQXNCLEVBQUUsaUJBQWlCO1lBQ3pDLGtCQUFrQixFQUFFLGdCQUFnQjtZQUNwQyxjQUFjLEVBQUU7Z0JBQ2QsY0FBYyxFQUFFLEtBQUs7Z0JBQ3JCLGFBQWEsRUFBRSxJQUFJO2dCQUNuQixrQkFBa0IsRUFBRSxZQUFZO2dCQUNoQyxxQkFBcUIsRUFBRSxnQkFBZ0I7Z0JBQ3ZDLHdCQUF3QixFQUFFLGlCQUFpQjthQUM1QztZQUNELFlBQVksRUFBRSxtQ0FBbUM7WUFDakQsaUJBQWlCLEVBQUUsT0FBTztZQUMxQixnQkFBZ0IsRUFBRSxPQUFPO1lBQ3pCLGtCQUFrQixFQUFFO2dCQUNsQixPQUFPLEVBQUU7b0JBQ0wsSUFBSSxFQUFFLE1BQU07b0JBQ1osS0FBSyxFQUFFLE9BQU87aUJBQ2pCO2dCQUNELE9BQU8sRUFBRSx1QkFBdUI7Z0JBQ2hDLElBQUksRUFBRSxrQkFBa0I7Z0JBQ3hCLE1BQU0sRUFBRSxpQkFBaUI7Z0JBQ3pCLElBQUksRUFBRSxhQUFhO2dCQUNuQixRQUFRLEVBQUUsZUFBZTthQUMxQjtZQUNELGNBQWMsRUFBRSxDQUFDO1lBQ2pCLFNBQVMsRUFBRTtnQkFDVCxRQUFRLEVBQUMsVUFBVTthQUNwQjtZQUNELE1BQU0sRUFBRTtnQkFDTixZQUFZLEVBQUUsSUFBSTtnQkFDbEIsSUFBSSxFQUFFLE1BQU07Z0JBQ1osSUFBSSxFQUFFLE1BQU07Z0JBQ1osTUFBTSxFQUFFLFNBQVM7Z0JBQ2pCLE9BQU8sRUFBRSxTQUFTO2FBQ25CO1lBQ0QscUJBQXFCLEVBQUU7Z0JBQ3JCLGlCQUFpQixFQUFFO29CQUNqQixZQUFZLEVBQUUsY0FBYztvQkFDNUIsZUFBZSxFQUFFLFdBQVc7aUJBQzdCO2FBQ0Y7WUFDRCxvQkFBb0IsRUFBRTtnQkFDcEIsZUFBZSxFQUFFO29CQUNmLFlBQVksRUFBRSxXQUFXO29CQUN6QixlQUFlLEVBQUUsUUFBUTtpQkFDMUI7YUFDRjtZQUNELHVCQUF1QixFQUFFO2dCQUN2QixPQUFPLEVBQUUsWUFBWTtnQkFDckIsU0FBUyxFQUFFLHNCQUFzQjtnQkFDakMsT0FBTyxFQUFFLFFBQVE7Z0JBQ2pCLHFCQUFxQixFQUFFLFFBQVE7Z0JBQy9CLE1BQU0sRUFBRyxRQUFRO2FBQ2xCO1NBQ0YsQ0FBQztRQUV1QixrQkFBYSxHQUFHLElBQUksWUFBWSxFQUFnQixDQUFDO1FBQ2xELGlCQUFZLEdBQUcsSUFBSSxZQUFZLEVBQVcsQ0FBQztRQUM5QyxjQUFTLEdBQUcsSUFBSSxZQUFZLEVBQWdCLENBQUM7UUFDdEMscUJBQWdCLEdBQUcsSUFBSSxZQUFZLEVBQVcsQ0FBQztRQUUzRSxpQkFBWSxHQUFVLENBQUMsRUFBRSxLQUFLLEVBQUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGNBQWMsQ0FBQyxjQUFjLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxFQUFFLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxjQUFjLENBQUMsYUFBYSxFQUFFLEtBQUssRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBU2pMLENBQUM7SUFFTCxRQUFRO1FBQ04sSUFBSSxDQUFDLGdCQUFnQixHQUFHLElBQUksQ0FBQyxjQUFjLENBQUMsdUJBQXVCLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLEVBQUUsa0JBQWtCLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDO1FBQ3JJLElBQUcsQ0FBQyxJQUFJLENBQUMsV0FBVyxFQUFFLGtCQUFrQixJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsa0JBQWtCLENBQUMsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLENBQUMsSUFBSyxDQUFDLElBQUksQ0FBQyxXQUFXLEVBQUUsZUFBZSxJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsZUFBZSxDQUFDLEtBQUssQ0FBQyxNQUFNLElBQUksQ0FBQyxDQUFDLEVBQUU7WUFDbE0sWUFBWTtTQUNiO2FBQU07WUFDTCxJQUFJLENBQUMsV0FBVyxHQUFFLElBQUksQ0FBQyxjQUFjLENBQUMsdUJBQXVCLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUE7U0FDNUY7UUFDRCxJQUFJLENBQUMsMEJBQTBCLEVBQUUsQ0FBQztJQUNwQyxDQUFDO0lBRUQsd0JBQXdCO1FBQ3RCLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQzNELElBQUksQ0FBQyxpQkFBaUIsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUM7UUFDdEUsSUFBRyxJQUFJLENBQUMsaUJBQWlCLENBQUMsWUFBWSxFQUFFO1lBQ3RDLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7U0FDckU7UUFFRCxJQUFHLENBQUMsSUFBSSxDQUFDLFdBQVcsRUFBRSxrQkFBa0IsSUFBSSxJQUFJLENBQUMsV0FBVyxFQUFFLGtCQUFrQixDQUFDLEtBQUssQ0FBQyxNQUFNLElBQUksQ0FBQyxDQUFDLElBQUssQ0FBQyxJQUFJLENBQUMsV0FBVyxFQUFFLGVBQWUsSUFBSSxJQUFJLENBQUMsV0FBVyxFQUFFLGVBQWUsQ0FBQyxLQUFLLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxFQUFFO1lBQ2xNLFlBQVk7U0FDYjthQUFNO1lBQ0wsSUFBSSxTQUFTLEdBQWlCO2dCQUM1QixJQUFJLEVBQUUsSUFBSSxDQUFDLFlBQVksRUFBRTtnQkFDekIsS0FBSyxFQUFFLElBQUksQ0FBQyxXQUFXLEVBQUUsZUFBZSxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsV0FBVyxFQUFFLGVBQWUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJO2dCQUN0RyxRQUFRLEVBQUUsSUFBSSxDQUFDLFdBQVcsRUFBRSxrQkFBa0IsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLFdBQVcsRUFBRSxrQkFBa0IsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJO2dCQUMvRyxPQUFPLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixJQUFJLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxZQUFZLElBQUksSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUk7YUFDeEosQ0FBQTtZQUVDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxTQUFTLENBQUM7aUJBQ3BDLElBQUksQ0FBQyxDQUFDLEdBQUcsRUFBRSxFQUFFO2dCQUNaLFNBQVMsR0FBRyxJQUFJLENBQUMsd0JBQXdCLENBQUMsU0FBUyxDQUFDLENBQUM7Z0JBQ3JELFNBQVMsR0FBRyxJQUFJLENBQUMsc0JBQXNCLENBQUMsU0FBUyxDQUFDLENBQUM7Z0JBQ25ELElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDO1lBQ2pDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUU7Z0JBQ1gsSUFBSSxDQUFDLG9DQUFvQyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsQ0FBQztZQUMxRSxDQUFDLENBQUM7aUJBQ0QsSUFBSSxDQUFDLEdBQUcsRUFBRTtnQkFDVCxJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7WUFDekIsQ0FBQyxDQUFDLENBQUM7U0FDTjtJQUNILENBQUM7SUFFRCx5QkFBeUIsQ0FBQyxJQUFVLEVBQUUsT0FBK0I7UUFDbkUsSUFBRyxJQUFJLENBQUMsUUFBUSxJQUFJLElBQUksSUFBSSxJQUFJLENBQUMsS0FBSyxJQUFJLE1BQU0sRUFBRTtZQUNoRCxJQUFJLENBQUMsS0FBSyxHQUFHLENBQUMsQ0FBQztZQUNmLE9BQU8sSUFBSSxDQUFDLGtCQUFrQixDQUFDLHFCQUFzQixDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxZQUFZLENBQUM7U0FDckY7UUFDRCxJQUFHLElBQUksQ0FBQyxRQUFRLElBQUksUUFBUSxJQUFJLElBQUksQ0FBQyxLQUFLLElBQUksTUFBTSxFQUFFO1lBQ3BELElBQUksQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDO1lBQ2YsT0FBTyxJQUFJLENBQUMsa0JBQWtCLENBQUMscUJBQXNCLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLGVBQWUsQ0FBQztTQUN4RjtRQUNELE9BQU8sSUFBSSxDQUFDLGtCQUFrQixDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQztJQUN6RCxDQUFDO0lBRUQsb0JBQW9CLENBQUMsS0FBVTtRQUM3QixJQUFJLE9BQU8sSUFBSSxLQUFLLEVBQUU7WUFDcEIsS0FBSyxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFvQixFQUFFLEVBQUU7Z0JBQzNDLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztZQUNsQyxDQUFDLENBQUMsQ0FBQztTQUNKO2FBQU07WUFDTCxJQUFJLEtBQUssQ0FBQyxLQUFLLFlBQVksS0FBSyxJQUFJLEtBQUssQ0FBQyxLQUFLLENBQUMsTUFBTSxJQUFJLENBQUMsRUFBRTtnQkFDM0QsS0FBSyxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7YUFDcEI7U0FDRjtJQUNILENBQUM7SUFFRCxnQkFBZ0I7UUFDZCxJQUFJLENBQUMsZ0JBQWdCLEdBQUcsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUM7UUFDL0MsSUFBRyxJQUFJLENBQUMsZ0JBQWdCLEVBQUU7WUFDeEIsVUFBVSxDQUFDLEdBQUcsRUFBRTtnQkFDZCxJQUFJLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLENBQUE7WUFDOUQsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO1NBQ1Y7SUFDSCxDQUFDO0lBRUQsc0JBQXNCLENBQUMsUUFBZ0M7UUFDckQsS0FBSyxNQUFNLEdBQUcsSUFBSSxRQUFRLEVBQUU7WUFDeEIsSUFBSSxRQUFRLENBQUMsY0FBYyxDQUFDLEdBQUcsQ0FBQyxFQUFFO2dCQUM5QixNQUFNLE9BQU8sR0FBRyxRQUFRLENBQUMsR0FBRyxDQUFDLENBQUM7Z0JBQzlCLElBQUksT0FBTyxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsVUFBVSxDQUFDLElBQUksT0FBTyxDQUFDLFlBQVksSUFBSSxJQUFJLEVBQUU7b0JBQ3hFLE9BQU8sQ0FBQyxZQUFZLEdBQUcsQ0FBQyxDQUFDO2lCQUM1QjthQUNKO1NBQ0o7SUFDSCxDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksT0FBTyxHQUFpQjtZQUMxQixJQUFJLEVBQUUsSUFBSSxDQUFDLFlBQVksRUFBRTtZQUN6QixLQUFLLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDO1lBQzdFLFFBQVEsRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSTtZQUN4RixPQUFPLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixJQUFJLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSTtTQUM5SCxDQUFBO1FBRUQsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUV4QixPQUFPLEdBQUcsSUFBSSxDQUFDLG1CQUFtQixDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBRTVDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxVQUFjLEVBQUUsRUFBRTtZQUMxRCxJQUFHLFVBQVUsQ0FBQyxJQUFJLElBQUksQ0FBQyxFQUFDO2dCQUN0QixJQUFJLENBQUMsNkJBQTZCLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDO2FBQ3RGO1FBQ0gsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsVUFBYyxFQUFFLEVBQUU7WUFDekIsSUFBSSxXQUFXLEdBQTJCO2dCQUN4QyxFQUFFLEVBQUUsSUFBSSxDQUFDLFFBQVE7Z0JBQ2pCLGVBQWUsRUFBRSxPQUFPLENBQUMsS0FBSztnQkFDOUIsa0JBQWtCLEVBQUUsT0FBTyxDQUFDLFFBQVE7Z0JBQ3BDLGlCQUFpQixFQUFFLE9BQU8sQ0FBQyxPQUFPO2FBQ25DLENBQUE7WUFDRCxJQUFJLENBQUMsb0JBQW9CLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBQzVFLElBQUcsV0FBVyxDQUFDLGtCQUFrQixJQUFJLFdBQVcsQ0FBQyxrQkFBa0IsQ0FBQyxLQUFLLElBQUksQ0FBQyxFQUFFO2dCQUM5RSxZQUFZO2FBQ2I7aUJBQU07Z0JBQ0wsSUFBSSxDQUFDLGNBQWMsQ0FBQyx1QkFBdUIsQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFLFdBQVcsQ0FBQyxDQUFDO2FBQ3pFO1lBQ0QsSUFBSSxDQUFDLGtDQUFrQyxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUM1RixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxVQUFlLEVBQUUsRUFBRTtZQUMxQixPQUFPLEdBQUcsSUFBSSxDQUFDLHdCQUF3QixDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQ2pELE9BQU8sR0FBRyxJQUFJLENBQUMsc0JBQXNCLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDL0MsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDbkMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsRUFBRTtZQUNYLElBQUksQ0FBQyxvQ0FBb0MsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDMUUsQ0FBQyxDQUFDO2FBQ0QsS0FBSyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUU7WUFDZixPQUFPLENBQUMsS0FBSyxDQUFDLHNCQUFzQixFQUFFLEtBQUssQ0FBQyxDQUFDO1FBQy9DLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELHFCQUFxQixDQUFDLE9BQVc7UUFDL0IsT0FBTyxJQUFJLE9BQU8sQ0FBQyxDQUFDLE9BQU8sRUFBRSxNQUFNLEVBQUUsRUFBRTtZQUNyQyxPQUFPLEdBQUcsSUFBSSxDQUFDLHNCQUFzQixDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQzdDLE9BQU8sQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUNyQixDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRCxjQUFjO1FBQ1osSUFBSSxDQUFDLHFCQUFxQixFQUFFLENBQUM7UUFDN0IsSUFBSSxDQUFDLGFBQWEsQ0FBQyxLQUFLLEdBQUcsRUFBRSxDQUFDO1FBQzlCLElBQUksQ0FBQyxZQUFZLENBQUMsS0FBSyxHQUFHLEVBQUUsQ0FBQztRQUM3QixJQUFJLENBQUMsY0FBYyxDQUFDLDBCQUEwQixDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQzdFLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQy9CLENBQUM7SUFFRCxzQkFBc0IsQ0FBQyxPQUFxQjtRQUMxQyxJQUFHLE9BQU8sQ0FBQyxRQUFRLElBQUksSUFBSSxJQUFJLE9BQU8sQ0FBQyxRQUFRLEVBQUUsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUU7WUFDbEUsT0FBTyxDQUFDLElBQUksR0FBRyxDQUFDLENBQUE7U0FDakI7UUFDRCxJQUFHLE9BQU8sQ0FBQyxLQUFLLElBQUksSUFBSSxJQUFJLE9BQU8sQ0FBQyxLQUFLLEVBQUUsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUU7WUFDNUQsT0FBTyxDQUFDLElBQUksR0FBRyxDQUFDLENBQUE7U0FDakI7UUFDRCxJQUFHLE9BQU8sQ0FBQyxPQUFPLElBQUksSUFBSSxJQUFJLE9BQU8sQ0FBQyxPQUFPLEVBQUUsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUU7WUFDaEUsT0FBTyxDQUFDLElBQUksR0FBRyxDQUFDLENBQUE7U0FDakI7UUFDRCxPQUFPLE9BQU8sQ0FBQztJQUNqQixDQUFDO0lBRUQsNkJBQTZCLENBQUMsS0FBVTtRQUN0QyxJQUFJLE9BQU8sSUFBSSxLQUFLLEVBQUU7WUFDcEIsS0FBSyxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFvQixFQUFFLEVBQUU7Z0JBQzNDLElBQUksQ0FBQyw2QkFBNkIsQ0FBQyxJQUFJLENBQUMsQ0FBQztZQUMzQyxDQUFDLENBQUMsQ0FBQztTQUNKO2FBQU07WUFDTCxJQUFJLEtBQUssQ0FBQyxRQUFRLEtBQUssWUFBWSxDQUFDLFFBQVEsSUFBSSxDQUFDLENBQUMsS0FBSyxDQUFDLFFBQVEsSUFBSSxJQUFJLElBQUksS0FBSyxDQUFDLFFBQVEsSUFBSSxRQUFRLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLElBQUksQ0FBQyxJQUFJLEtBQUssQ0FBQyxLQUFLLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRTtnQkFDbEosSUFBRyxLQUFLLENBQUMsS0FBSyxJQUFJLENBQUMsRUFBRTtvQkFDbkIsS0FBSyxDQUFDLFFBQVEsR0FBRyxRQUFRLENBQUM7aUJBQzNCO2dCQUNELElBQUcsS0FBSyxDQUFDLEtBQUssSUFBSSxDQUFDLEVBQUU7b0JBQ25CLEtBQUssQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDO2lCQUN2QjtnQkFDRCxLQUFLLENBQUMsS0FBSyxHQUFHLE1BQU0sQ0FBQzthQUN0QjtTQUNGO0lBQ0gsQ0FBQztJQUVELG9DQUFvQyxDQUFDLEtBQVU7UUFDN0MsSUFBSSxPQUFPLElBQUksS0FBSyxFQUFFO1lBQ3BCLEtBQUssQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBb0IsRUFBRSxFQUFFO2dCQUMzQyxJQUFJLENBQUMsb0NBQW9DLENBQUMsSUFBSSxDQUFDLENBQUM7WUFDbEQsQ0FBQyxDQUFDLENBQUM7U0FDSjthQUFNO1lBQ0wsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLElBQUksUUFBUSxJQUFJLEtBQUssQ0FBQyxRQUFRLElBQUksSUFBSSxDQUFDLElBQUksS0FBSyxDQUFDLEtBQUssSUFBSSxNQUFNLEVBQUU7Z0JBQ25GLElBQUcsS0FBSyxDQUFDLFFBQVEsSUFBSSxRQUFRLEVBQUU7b0JBQzdCLEtBQUssQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDO2lCQUNqQjtnQkFDRCxJQUFHLEtBQUssQ0FBQyxRQUFRLElBQUksSUFBSSxFQUFFO29CQUN6QixLQUFLLENBQUMsS0FBSyxHQUFHLENBQUMsQ0FBQztpQkFDakI7YUFDRjtTQUNGO0lBQ0gsQ0FBQztJQUVELGtDQUFrQyxDQUFDLEtBQVU7UUFDM0MsSUFBRyxJQUFJLENBQUMscUJBQXFCLENBQUMsTUFBTSxHQUFHLENBQUMsRUFBQztZQUN2QyxJQUFHLE9BQU8sSUFBSSxLQUFLLEVBQUM7Z0JBQ2xCLEtBQUssQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBb0IsRUFBRSxFQUFFO29CQUMzQyxJQUFJLENBQUMsa0NBQWtDLENBQUMsSUFBSSxDQUFDLENBQUM7Z0JBQ2hELENBQUMsQ0FBQyxDQUFDO2FBQ0o7aUJBQUk7Z0JBQ0gsSUFBSSxJQUFJLENBQUMscUJBQXFCLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsSUFBSSxLQUFLLENBQUMsS0FBSyxFQUFFO29CQUNuRSxNQUFNLFNBQVMsR0FBRyxJQUFJLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLENBQUM7b0JBQ3hDLE1BQU0sU0FBUyxHQUFHLElBQUksSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsU0FBUyxDQUFDLFdBQVcsRUFBRSxFQUFFLFNBQVMsQ0FBQyxRQUFRLEVBQUUsRUFBRSxTQUFTLENBQUMsT0FBTyxFQUFFLEVBQUUsU0FBUyxDQUFDLFFBQVEsRUFBRSxFQUFFLFNBQVMsQ0FBQyxVQUFVLEVBQUUsQ0FBQyxDQUFDLENBQUM7b0JBQ3ZKLEtBQUssQ0FBQyxLQUFLLEdBQUcsU0FBUyxDQUFDO2lCQUN6QjthQUNGO1NBQ0Y7SUFDSCxDQUFDO0lBRUQsNEJBQTRCLENBQUMsS0FBVTtRQUNyQyxJQUFHLElBQUksQ0FBQywwQkFBMEIsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxJQUFJLElBQUksQ0FBQyx1QkFBdUIsSUFBSSxLQUFLLEVBQUM7WUFDckYsSUFBSSxPQUFPLElBQUksS0FBSyxFQUFFO2dCQUNwQixLQUFLLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQW9CLEVBQUUsRUFBRTtvQkFDM0MsSUFBSSxDQUFDLDRCQUE0QixDQUFDLElBQUksQ0FBQyxDQUFDO2dCQUMxQyxDQUFDLENBQUMsQ0FBQztnQkFFSCxJQUFHLElBQUksQ0FBQywyQkFBMkIsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFDO29CQUM3QyxLQUFLLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQywyQkFBMkIsQ0FBQyxDQUFBO29CQUNyRCxLQUFLLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsR0FBTyxFQUFFLEVBQUUsQ0FBQyxHQUFHLENBQUMsS0FBSyxLQUFLLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO29CQUN6RixJQUFJLENBQUMsMkJBQTJCLEdBQUcsRUFBRSxDQUFDO2lCQUN2QzthQUNGO2lCQUFJO2dCQUNILElBQUksS0FBSyxDQUFDLEtBQUssSUFBSSxLQUFLLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxzQkFBc0IsSUFBSSxLQUFLLENBQUMsTUFBTSxJQUFJLElBQUksQ0FBQyx1QkFBdUIsRUFBRTtvQkFDN0csS0FBSyxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUMsS0FBSyxDQUFDO29CQUMxQixJQUFJLEtBQUssR0FBRyxFQUFFLENBQUM7b0JBRWYsSUFBRyxLQUFLLENBQUMsS0FBSyxDQUFDLFFBQVEsSUFBSSxzQkFBc0IsQ0FBQyxVQUFVLEVBQUM7d0JBQzNELEtBQUssR0FBRzs0QkFDTjtnQ0FDRSxLQUFLLEVBQUUsSUFBSSxDQUFDLDBCQUEwQixDQUFDLHNCQUFzQixDQUFDLFVBQVUsR0FBRyxDQUFDLENBQUM7Z0NBQzdFLFFBQVEsRUFBRSxHQUFHO2dDQUNiLEtBQUssRUFBRSxLQUFLLENBQUMsS0FBSyxDQUFDLElBQUk7Z0NBQ3ZCLE1BQU0sRUFBRSxJQUFJLENBQUMsdUJBQXVCOzZCQUNyQzt5QkFDRixDQUFDO3FCQUNIO3lCQUFJO3dCQUNILEtBQUssR0FBRzs0QkFDTjtnQ0FDRSxLQUFLLEVBQUUsSUFBSSxDQUFDLDBCQUEwQixDQUFDLHNCQUFzQixDQUFDLFVBQVUsR0FBRyxDQUFDLENBQUM7Z0NBQzdFLFFBQVEsRUFBRSxHQUFHO2dDQUNiLEtBQUssRUFBRSxLQUFLLENBQUMsS0FBSyxDQUFDLGVBQWU7Z0NBQ2xDLE1BQU0sRUFBRSxJQUFJLENBQUMsdUJBQXVCOzZCQUNyQzs0QkFDRDtnQ0FDRSxLQUFLLEVBQUUsSUFBSSxDQUFDLDBCQUEwQixDQUFDLHNCQUFzQixDQUFDLEtBQUssR0FBRyxDQUFDLENBQUM7Z0NBQ3hFLFFBQVEsRUFBRSxHQUFHO2dDQUNiLEtBQUssRUFBRSxLQUFLLENBQUMsS0FBSyxDQUFDLElBQUk7Z0NBQ3ZCLE1BQU0sRUFBRSxJQUFJLENBQUMsdUJBQXVCOzZCQUNyQzt5QkFDRixDQUFDO3FCQUNIO29CQUNELElBQUksQ0FBQywyQkFBMkIsQ0FBQyxJQUFJLENBQUMsR0FBRyxLQUFLLENBQUMsQ0FBQztpQkFDakQ7YUFDRjtZQUNELE9BQU8sS0FBSyxDQUFDO1NBQ2Q7SUFDSCxDQUFDO0lBRUQsWUFBWTtRQUNWLElBQUcsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLEVBQUU7WUFDekIsT0FBTyxlQUFlLENBQUMsS0FBSyxDQUFDO1NBQzlCO2FBQU07WUFDTCxJQUFHLElBQUksQ0FBQyxnQkFBZ0IsSUFBSSxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsS0FBSyxFQUFFO2dCQUN4RCxPQUFPLGVBQWUsQ0FBQyxPQUFPLENBQUE7YUFDL0I7aUJBQU07Z0JBQ0wsT0FBTyxlQUFlLENBQUMsUUFBUSxDQUFDO2FBQ2pDO1NBQ0Y7SUFDSCxDQUFDO0lBRUQsU0FBUyxDQUFDLE9BQXFCO1FBQzdCLElBQUcsSUFBSSxDQUFDLFlBQVksRUFBRSxJQUFJLGVBQWUsQ0FBQyxLQUFLLEVBQUU7WUFDL0MsT0FBTyxDQUFDLEtBQU0sQ0FBQyxLQUFLLEdBQUcsT0FBTyxDQUFDLEtBQU0sQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBSyxFQUFFLEVBQUU7Z0JBQ3hELE9BQU87b0JBQ0wsS0FBSyxFQUFFLENBQUMsQ0FBQyxLQUFLO29CQUNkLFFBQVEsRUFBRSxDQUFDLENBQUMsUUFBUTtvQkFDcEIsS0FBSyxFQUFFLENBQUMsQ0FBQyxLQUFLO29CQUNkLE1BQU0sRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxhQUFhLElBQUksQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLE1BQU07aUJBQ25FLENBQUE7WUFDSCxDQUFDLENBQUMsQ0FBQTtTQUNIO0lBQ0gsQ0FBQztJQUVELDBCQUEwQjtRQUN4QixJQUFJLENBQUMsVUFBVSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLEtBQUssRUFBRSxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsSUFBSSxDQUFDLGVBQWUsRUFBRSxJQUFJLENBQUMsUUFBUSxFQUFFLElBQUksQ0FBQyxhQUFhLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQzthQUNoSyxTQUFTLENBQUMsQ0FBQyxhQUE0QixFQUFFLEVBQUU7WUFDMUMsSUFBSSxDQUFDLGlCQUFpQixHQUFHLGFBQWEsQ0FBQztZQUN2QyxJQUFJLGNBQWMsR0FBYSxhQUFhLENBQUMsZUFBZSxDQUFDLE1BQU0sQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQyxHQUFHLENBQUMsWUFBWSxDQUFDLEVBQUUsQ0FBQyxZQUFZLENBQUMsZUFBZSxDQUFDLENBQUM7WUFDMUosSUFBSSxpQkFBaUIsR0FBYSxhQUFhLENBQUMsZUFBZSxDQUFDLE1BQU0sQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDLEdBQUcsQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDLFlBQVksQ0FBQyxlQUFlLENBQUMsQ0FBQztZQUM5SixJQUFJLENBQUMsYUFBYSxHQUFHLGFBQWEsQ0FBQyxlQUFlLENBQUMsR0FBRyxDQUFDLFlBQVksQ0FBQyxFQUFFO2dCQUNwRSxPQUFPO29CQUNMLGVBQWUsRUFBRSxZQUFZLENBQUMsZUFBZTtvQkFDN0MsS0FBSyxFQUFFLFlBQVksQ0FBQyxLQUFLO29CQUN6QixZQUFZLEVBQUUsSUFBSSxDQUFDLG1CQUFtQixDQUFDLFlBQVksQ0FBQyxZQUFZLENBQUM7aUJBQ2xFLENBQUE7WUFDSCxDQUFDLENBQUMsQ0FBQTtZQUNGLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxZQUFZLElBQUksSUFBSSxDQUFDLENBQUMsQ0FBQztZQUNuRixJQUFJLENBQUMsZ0JBQWdCLEdBQUcsYUFBYSxDQUFDLGVBQWUsQ0FBQyxHQUFHLENBQUMsWUFBWSxDQUFDLEVBQUU7Z0JBQ3ZFLE9BQU87b0JBQ0wsZUFBZSxFQUFFLFlBQVksQ0FBQyxlQUFlO29CQUM3QyxpQkFBaUIsRUFBRSxZQUFZLENBQUMsaUJBQWlCO2lCQUNsRCxDQUFBO1lBQ0gsQ0FBQyxDQUFDLENBQUE7WUFDRixJQUFJLFlBQVksR0FBcUIsYUFBYSxDQUFDLGVBQWUsQ0FBQyxHQUFHLENBQUMsWUFBWSxDQUFDLEVBQUU7Z0JBQ3BGLE9BQU87b0JBQ0wsRUFBRSxFQUFFLFlBQVksQ0FBQyxhQUFhLENBQUMsY0FBYyxDQUFDLEVBQUU7b0JBQ2hELEtBQUssRUFBRSxZQUFZLENBQUMsS0FBSztvQkFDekIsSUFBSSxFQUFFLFlBQVksQ0FBQyxhQUFhLENBQUMsY0FBYyxDQUFDLElBQUk7b0JBQ3BELFFBQVEsRUFBRSxZQUFZLENBQUMsYUFBYSxDQUFDLGNBQWMsQ0FBQyxRQUFRO29CQUM1RCxNQUFNLEVBQUUsRUFBRTtpQkFDWCxDQUFBO1lBQ0gsQ0FBQyxDQUFDLENBQUM7WUFFSCxJQUFJLFlBQVksR0FBa0IsYUFBYSxDQUFDLGVBQWUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsYUFBYSxDQUFDLENBQUM7WUFDMUYsWUFBWSxDQUFDLE9BQU8sQ0FBQyxDQUFDLE1BQXNCLEVBQUUsS0FBYSxFQUFFLEVBQUU7Z0JBQzVELElBQUksTUFBTSxHQUFHLFlBQVksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsY0FBYyxDQUFDLEVBQUUsSUFBSSxNQUFNLENBQUMsRUFBRSxDQUFDLENBQUM7Z0JBQ3hFLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFFO1lBQ3hDLENBQUMsQ0FBQyxDQUFBO1lBRUYsSUFBSSxDQUFDLGdCQUFnQixHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxZQUFZLEVBQUUsSUFBSSxDQUFDLENBQUM7WUFDbEUsSUFBSSxDQUFDLGdCQUFnQixHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsY0FBYyxDQUFDLENBQUM7WUFDckYsSUFBSSxDQUFDLGdCQUFnQixDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxNQUFNLENBQUMsQ0FBQztZQUNsRixJQUFJLENBQUMsbUJBQW1CLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDLFlBQVksRUFBRSxLQUFLLENBQUMsQ0FBQztZQUN0RSxJQUFJLENBQUMsbUJBQW1CLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxtQkFBbUIsRUFBRSxpQkFBaUIsQ0FBQyxDQUFDO1lBQzlGLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsbUJBQW1CLENBQUMsTUFBTSxDQUFDLENBQUM7WUFDeEYsSUFBSSxLQUFLLEdBQUcsTUFBTSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsTUFBTSxDQUFDO2lCQUNsRCxHQUFHLENBQUMsUUFBUSxDQUFDLEVBQUU7Z0JBQ2QsSUFBSSxlQUFlLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDLFFBQVEsQ0FBQyxlQUFlLElBQUksSUFBSSxDQUFDLGdCQUFnQixDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQyxFQUFFLElBQUksUUFBUSxDQUFDLGlCQUFpQixJQUFJLElBQUksQ0FBQyxDQUFDO2dCQUMxSyxPQUFPO29CQUNMLEtBQUssRUFBRSxRQUFRO29CQUNmLEtBQUssRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDLFlBQWE7b0JBQzNELFFBQVEsRUFBRSxlQUFlLENBQUMsQ0FBQyxDQUFDLGVBQWUsQ0FBQyxpQkFBaUIsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLElBQUk7aUJBQzVFLENBQUE7WUFDSCxDQUFDLENBQUMsQ0FBQztZQUVILElBQUcsSUFBSSxDQUFDLFdBQVcsSUFBSSxJQUFJLENBQUMsV0FBVyxFQUFFLEVBQUUsSUFBSSxJQUFJLENBQUMsUUFBUSxJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsZUFBZSxJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsZUFBZSxDQUFDLEtBQUssQ0FBQyxNQUFNLElBQUksQ0FBQyxFQUFFO2dCQUN4SixJQUFJLENBQUMsVUFBVSxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsZUFBZSxDQUFDO2FBQ3BEO2lCQUFNO2dCQUNMLElBQUksQ0FBQyxVQUFVLEdBQUc7b0JBQ2hCLFNBQVMsRUFBRSxLQUFLO29CQUNoQixLQUFLLEVBQUUsS0FBSztpQkFDYixDQUFDO2FBQ0g7WUFDRCxJQUFHLElBQUksQ0FBQyxXQUFXLElBQUksSUFBSSxDQUFDLFdBQVcsRUFBRSxFQUFFLElBQUksSUFBSSxDQUFDLFFBQVEsSUFBSSxJQUFJLENBQUMsV0FBVyxFQUFFLGtCQUFrQixJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsa0JBQWtCLENBQUMsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUU7Z0JBQzlKLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxrQkFBa0IsQ0FBQzthQUMxRDtpQkFBTTtnQkFDTCxJQUFJLENBQUMsYUFBYSxHQUFHO29CQUNuQixTQUFTLEVBQUUsS0FBSztvQkFDaEIsS0FBSyxFQUFFLEVBQUU7aUJBQ1YsQ0FBQzthQUNIO1lBRUgsSUFBSSxDQUFDLGdCQUFnQixHQUFHLElBQUksQ0FBQztZQUM3QixJQUFJLENBQUMsd0JBQXdCLEVBQUUsQ0FBQztRQUNsQyxDQUFDLENBQUMsQ0FBQTtJQUNOLENBQUM7SUFFRCxtQkFBbUIsQ0FBQyxLQUFVO1FBQzVCLElBQUcsS0FBSyxJQUFJLHlCQUF5QixFQUFFO1lBQ3JDLE9BQU8sQ0FBQyxDQUFDO1NBQ1Y7UUFFRCxJQUFHLEtBQUssSUFBSSw0QkFBNEIsRUFBRTtZQUN4QyxPQUFPLENBQUMsQ0FBQztTQUNWO1FBRUQsSUFBRyxLQUFLLElBQUksR0FBRyxFQUFFO1lBQ2YsT0FBTyxDQUFDLENBQUM7U0FDVjtRQUVELElBQUcsS0FBSyxJQUFJLEdBQUcsRUFBRTtZQUNmLE9BQU8sQ0FBQyxDQUFDO1NBQ1Y7UUFDRCxJQUFHLEtBQUssSUFBSSxpQkFBaUIsRUFBRTtZQUM3QixPQUFPLElBQUksSUFBSSxDQUFDLElBQUksSUFBSSxDQUFDLElBQUksSUFBSSxFQUFFLENBQUMsV0FBVyxFQUFFLEVBQUUsSUFBSSxJQUFJLEVBQUUsQ0FBQyxRQUFRLEVBQUUsRUFBRSxJQUFJLElBQUksRUFBRSxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsRUFBQyxDQUFDLEVBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztTQUN6RztRQUNELElBQUcsS0FBSyxJQUFJLGVBQWUsRUFBRTtZQUMzQixPQUFPLElBQUksSUFBSSxDQUFDLElBQUksSUFBSSxDQUFDLElBQUksSUFBSSxFQUFFLENBQUMsV0FBVyxFQUFFLEVBQUUsSUFBSSxJQUFJLEVBQUUsQ0FBQyxRQUFRLEVBQUUsRUFBRSxJQUFJLElBQUksRUFBRSxDQUFDLE9BQU8sRUFBRSxFQUFFLEVBQUUsRUFBQyxFQUFFLEVBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQztTQUM1RztRQUNELE9BQU8sS0FBSyxDQUFDO0lBQ2YsQ0FBQztJQUVELGdCQUFnQixDQUFDLGNBQWdDLEVBQUUsT0FBZ0I7UUFDakUsSUFBSSxlQUFlLEdBQXVCLEVBQUUsTUFBTSxFQUFFLEVBQUUsRUFBRSxDQUFDO1FBQ3pELElBQUksYUFBYSxHQUFnQixFQUFFLENBQUM7UUFFcEMsY0FBYyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxLQUFLLEVBQUUsRUFBRTtZQUM5QixJQUFJLE1BQU0sR0FBVyxFQUFFLElBQUksRUFBRSxDQUFDLENBQUMsUUFBUSxFQUFFLENBQUM7WUFDMUMsT0FBTyxhQUFhLENBQUMsS0FBSyxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsRUFBRSxNQUFNLEVBQUUsQ0FBQztRQUN6RCxDQUFDLENBQUMsQ0FBQztRQUVILElBQUksV0FBVyxHQUFjLEVBQUUsQ0FBQztRQUVoQyxLQUFLLE1BQU0sTUFBTSxJQUFJLGFBQWEsRUFBRTtZQUNsQyxNQUFNLElBQUksR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1lBRWpDLElBQUksQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLEVBQUU7Z0JBQ2pCLElBQUcsSUFBSSxDQUFDLGtCQUFrQixDQUFDLFFBQVEsRUFBRTtvQkFDbkMsSUFBSSx3QkFBd0IsR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxRQUFRLENBQUMsQ0FBQztvQkFDN0UsSUFBSSxXQUFXLEdBQUcsd0JBQXdCLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxFQUFFLENBQUMsY0FBYyxJQUFJLEdBQUcsQ0FBQyxDQUFDO29CQUN6RixJQUFHLFdBQVcsRUFBRTt3QkFDZCxXQUFXLENBQUMsR0FBRyxDQUFDLEdBQUcsRUFBRSxJQUFJLEVBQUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFBO3FCQUNuRTt5QkFBTTt3QkFDTCxXQUFXLENBQUMsR0FBRyxDQUFDLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFBO3FCQUMvQjtpQkFDRjtxQkFBTTtvQkFDTCxXQUFXLENBQUMsR0FBRyxDQUFDLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFBO2lCQUMvQjtZQUNILENBQUMsQ0FBQyxDQUFDO1lBRUgsZUFBZSxDQUFDLFFBQVEsR0FBRyxXQUFXLENBQUM7U0FDeEM7UUFFRCxJQUFJLE1BQU0sR0FBZSxFQUFFLENBQUM7UUFDNUIsY0FBYyxDQUFDLE9BQU8sQ0FBQyxDQUFDLFlBQVksRUFBRSxFQUFFO1lBQ3RDLE9BQU8sWUFBWSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQyxXQUF3QixFQUFFLEVBQUU7Z0JBQzdELElBQUksS0FBSyxHQUFXLE1BQU0sQ0FBQyxNQUFNLElBQUksQ0FBQyxDQUFDO2dCQUN2QyxJQUFJLGtCQUFrQixHQUFHLFdBQVcsQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLENBQUM7Z0JBQ3hFLElBQUksZUFBZSxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLEVBQUUsQ0FBQyxRQUFRLENBQUMsZUFBZSxJQUFJLFdBQVcsQ0FBQyxFQUFFLENBQUMsQ0FBQztnQkFDekcsSUFBSSxLQUFLLEdBQVU7b0JBQ2pCLEVBQUUsRUFBRSxXQUFXLENBQUMsRUFBRTtvQkFDbEIsSUFBSSxFQUFFLFdBQVcsQ0FBQyxJQUFJO29CQUN0QixTQUFTLEVBQUUsZUFBZSxDQUFDLGlCQUFpQixFQUFFLE1BQU0sQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLHVCQUF1QixDQUFDLGtCQUFrQixFQUFFLGVBQWUsQ0FBQyxpQkFBaUIsRUFBRSxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUMsa0JBQWtCO29CQUN2SyxJQUFJLEVBQUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDO29CQUM1QyxZQUFZLEVBQUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLGVBQWUsSUFBSSxXQUFXLENBQUMsRUFBRSxJQUFJLEtBQUssQ0FBQyxLQUFLLElBQUksT0FBTyxDQUFDLEVBQUUsWUFBWSxFQUFFLFdBQVcsQ0FBQyxRQUFRLENBQUM7b0JBQzlLLGVBQWUsRUFBRSxlQUFlLENBQUMsaUJBQWlCLEVBQUUsTUFBTTtvQkFDMUQsTUFBTSxFQUFFLFlBQVksQ0FBQyxRQUFRO29CQUM3QixPQUFPLEVBQUUsV0FBVyxDQUFDLFlBQVk7b0JBQ2pDLFNBQVMsRUFBRSxDQUFDLElBQVUsRUFBRSxNQUFlLEVBQWMsRUFBRTt3QkFDckQsSUFBSSxJQUFJLENBQUMsUUFBUSxLQUFLLFNBQVMsSUFBSSxJQUFJLENBQUMsUUFBUSxLQUFLLGFBQWEsRUFBRTs0QkFDbEUsSUFBSSxJQUFJLENBQUMsS0FBSyxLQUFLLFNBQVMsSUFBSSxJQUFJLENBQUMsS0FBSyxLQUFLLElBQUksSUFBSSxJQUFJLENBQUMsS0FBSyxLQUFLLEVBQUUsSUFBSSxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUU7Z0NBQ2xHLE9BQU8sRUFBRSxRQUFRLEVBQUUsYUFBYSxFQUFFLENBQUM7NkJBQ3BDO3lCQUNGO3dCQUNELE9BQU8sSUFBSSxDQUFDO29CQUNkLENBQUM7aUJBQ0YsQ0FBQTtnQkFDRCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxFQUFDLGFBQWEsRUFBRSxXQUFXLENBQUMsUUFBUSxFQUFFLE1BQU0sRUFBRSxLQUFLLENBQUMsTUFBTSxFQUFDLENBQUMsQ0FBQztnQkFDaEYsTUFBTSxDQUFDLEtBQUssQ0FBQyxHQUFHLEVBQUUsQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLEVBQUUsS0FBSyxFQUFFLENBQUM7WUFDcEQsQ0FBQyxDQUFDLENBQUM7UUFDTCxDQUFDLENBQUMsQ0FBQztRQUVILElBQUksU0FBUyxHQUFhLEVBQUUsQ0FBQztRQUU3QixLQUFLLE1BQU0sS0FBSyxJQUFJLE1BQU0sRUFBRTtZQUMxQixNQUFNLElBQUksR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1lBQ2hDLElBQUksQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLEVBQUU7Z0JBQ2pCLFNBQVMsQ0FBQyxHQUFHLENBQUMsR0FBRyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUM7WUFDOUIsQ0FBQyxDQUFDLENBQUM7WUFFSCxlQUFlLENBQUMsTUFBTSxHQUFHLFNBQVMsQ0FBQztTQUNwQztRQUNELE9BQU8sZUFBZSxDQUFDO0lBQ3pCLENBQUM7SUFFRCxnQkFBZ0IsQ0FBQyxTQUFjLEVBQUUsT0FBaUI7UUFDaEQsTUFBTSxjQUFjLEdBQVEsRUFBRSxDQUFDO1FBRS9CLEtBQUssTUFBTSxHQUFHLElBQUksU0FBUyxDQUFDLE1BQU0sRUFBRTtZQUNsQyxNQUFNLEtBQUssR0FBRyxTQUFTLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFDO1lBQ3BDLElBQUksT0FBTyxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLEVBQUU7Z0JBQzlCLGNBQWMsQ0FBQyxHQUFHLENBQUMsR0FBRyxLQUFLLENBQUM7YUFDN0I7U0FDRjtRQUVELE9BQU87WUFDTCxHQUFHLFNBQVM7WUFDWixNQUFNLEVBQUUsY0FBYztTQUN2QixDQUFDO0lBQ0osQ0FBQztJQUVELGVBQWUsQ0FBQyxNQUFnQjtRQUM5QixLQUFLLE1BQU0sR0FBRyxJQUFJLE1BQU0sRUFBRTtZQUN4QixJQUFJLE1BQU0sQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLEVBQUU7Z0JBQzlCLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLEdBQUcsR0FBRyxDQUFDO2dCQUN4QixNQUFNLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLENBQUM7YUFDeEQ7U0FDRjtRQUNELE9BQU8sTUFBTSxDQUFDO0lBQ2hCLENBQUM7SUFFRCx1QkFBdUIsQ0FBQyxLQUFZLEVBQUUsbUJBQTJCO1FBQy9ELE1BQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUMsbUJBQW1CLENBQUMsQ0FBQztRQUNqRCxJQUFJLEtBQUssS0FBSyxDQUFDLENBQUMsRUFBRTtZQUNoQixLQUFLLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQztZQUN2QixLQUFLLENBQUMsT0FBTyxDQUFDLG1CQUFtQixDQUFDLENBQUM7U0FDcEM7UUFDRCxPQUFPLEtBQUssQ0FBQztJQUNmLENBQUM7SUFFRCxrQkFBa0IsQ0FBQyxLQUFVLEVBQUUsSUFBb0I7UUFDakQsSUFBRyxLQUFLLEVBQUU7WUFDUixJQUFHLElBQUksSUFBSSxjQUFjLENBQUMsT0FBTyxFQUFFO2dCQUNqQyxPQUFPLEtBQUssQ0FBQyxXQUFXLEVBQUUsS0FBSyxNQUFNLENBQUM7YUFDdkM7WUFDRCxJQUFHLElBQUksSUFBSSxJQUFJLENBQUMsY0FBYyxDQUFDLE1BQU0sSUFBSSxJQUFJLElBQUksSUFBSSxDQUFDLGNBQWMsQ0FBQyxPQUFPLElBQUksSUFBSSxJQUFJLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxFQUFDO2dCQUMvRyxPQUFPLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQzthQUN0QjtZQUNELElBQUcsSUFBSSxJQUFJLElBQUksQ0FBQyxjQUFjLENBQUMsY0FBYyxFQUFFO2dCQUM3QyxPQUFPLENBQUMsQ0FBQzthQUNWO1lBQ0QsSUFBRyxJQUFJLElBQUksSUFBSSxDQUFDLGNBQWMsQ0FBQyxhQUFhLEVBQUU7Z0JBQzVDLE9BQU8sQ0FBQyxDQUFDO2FBQ1Y7U0FDRjtRQUNELE9BQU8sS0FBSyxDQUFDO0lBQ2YsQ0FBQztJQUVELFdBQVcsQ0FBQyxFQUFVO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxLQUFLLEtBQUssRUFBRSxDQUFDLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxDQUFDO0lBQ3hFLENBQUM7SUFFRCx3QkFBd0IsQ0FBQyxJQUFTO1FBQ2hDLElBQUksSUFBSSxDQUFDLEtBQUssSUFBSSxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssRUFBRTtZQUNsQyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFTLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxLQUFLLElBQUksSUFBSSxDQUFDLENBQUM7WUFDOUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBUyxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsS0FBSyxJQUFJLFNBQVMsQ0FBQyxDQUFDO1lBQ25GLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQVMsRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLEtBQUssS0FBSyxFQUFFLENBQUMsQ0FBQztZQUM3RSxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFTLEVBQUUsRUFBRSxHQUFHLE9BQU8sQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLEtBQUssVUFBVSxJQUFJLElBQUksQ0FBQyxLQUFLLEtBQUssTUFBTSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztTQUNqSTtRQUNELElBQUcsSUFBSSxDQUFDLFFBQVEsSUFBSSxJQUFJLENBQUMsUUFBUSxDQUFDLEtBQUssRUFBRSxNQUFNLElBQUksQ0FBQyxFQUFFO1lBQ3BELElBQUksQ0FBQyxRQUFRLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQVMsRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLEtBQUssRUFBRSxNQUFNLElBQUksQ0FBQyxDQUFDLENBQUM7U0FDMUY7UUFDRCxJQUFHLElBQUksQ0FBQyxPQUFPLElBQUksSUFBSSxDQUFDLE9BQU8sRUFBRSxLQUFLLENBQUMsTUFBTSxJQUFJLENBQUMsRUFBRTtZQUNsRCxJQUFJLENBQUMsT0FBTyxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFTLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDO1NBQ3hGO1FBQ0QsSUFBRyxJQUFJLENBQUMsT0FBTyxJQUFJLElBQUksQ0FBQyxPQUFPLEVBQUUsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUU7WUFDbEQsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUM7U0FDckI7UUFDRCxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFFRCxtQkFBbUIsQ0FBQyxJQUFTO1FBQzNCLElBQUksSUFBSSxDQUFDLEtBQUssSUFBSSxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssRUFBRTtZQUNsQyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFRLEVBQUUsRUFBRTtnQkFDcEMsSUFBRyxDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUU7b0JBQ2pCLElBQUksQ0FBQyxRQUFRLEdBQUcsR0FBRyxDQUFDO2lCQUNyQjtZQUNILENBQUMsQ0FBQyxDQUFDO1NBQ0o7UUFDRCxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFFRCxxQkFBcUI7UUFDbkIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBVSxFQUFFLEVBQUU7WUFDM0MsSUFBRyxJQUFJLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxLQUFLLElBQUksQ0FBQyxFQUFDO2dCQUMvQixJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQTthQUNsQjtRQUNILENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELGlCQUFpQixDQUFDLFNBQWlCLEVBQUUsTUFBZ0I7UUFDbkQsTUFBTSxVQUFVLEdBQUcsTUFBTSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLENBQUMsS0FBSyxLQUFLLFNBQVMsQ0FBQyxDQUFDO1FBRXBGLE9BQU8sVUFBVSxJQUFJLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztJQUNyRixDQUFDO0lBRUQsd0JBQXdCLENBQUMsT0FBK0I7UUFDdEQsT0FBTyxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUMsTUFBNEIsRUFBRSxFQUFFO1lBQ2xELE9BQU87Z0JBQ0wsSUFBSSxFQUFFLE1BQU0sQ0FBQyxLQUFLLEtBQUssQ0FBQyxDQUFDLENBQUM7b0JBQ3hCLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxxQkFBc0IsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsZUFBZSxDQUFDLENBQUM7b0JBQzdFLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxxQkFBc0IsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsWUFBWTtnQkFDMUUsS0FBSyxFQUFFLE1BQU0sQ0FBQyxLQUFLO2FBQ3BCLENBQUE7UUFDSCxDQUFDLENBQUMsQ0FBQTtJQUNKLENBQUM7SUFFRCx1QkFBdUIsQ0FBQyxPQUE4QjtRQUNwRCxPQUFPLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQyxNQUEyQixFQUFFLEVBQUU7WUFDakQsT0FBTztnQkFDTCxJQUFJLEVBQUUsTUFBTSxDQUFDLEtBQUssS0FBSyxDQUFDLENBQUMsQ0FBQztvQkFDeEIsSUFBSSxDQUFDLGtCQUFrQixDQUFDLG9CQUFxQixDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxlQUFlLENBQUMsQ0FBQztvQkFDNUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLG9CQUFxQixDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxZQUFZO2dCQUN6RSxLQUFLLEVBQUUsTUFBTSxDQUFDLEtBQUs7YUFDcEIsQ0FBQTtRQUNILENBQUMsQ0FBQyxDQUFBO0lBQ0osQ0FBQztJQUVELDBCQUEwQixDQUFDLE9BQWlDO1FBQzFELE9BQU8sT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDLE1BQThCLEVBQUUsRUFBRTtZQUNwRCxPQUFPO2dCQUNMLElBQUksRUFBRSxJQUFJLENBQUMsa0JBQWtCLENBQUMsdUJBQXdCLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUMsV0FBVyxFQUFFLEdBQUcsTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ2xILEtBQUssRUFBRSxNQUFNLENBQUMsS0FBSzthQUNwQixDQUFBO1FBQ0gsQ0FBQyxDQUFDLENBQUE7SUFDSixDQUFDO0lBRUQsY0FBYyxDQUFDLFNBQWlCLEVBQUUsTUFBZ0I7UUFDaEQsTUFBTSxVQUFVLEdBQUcsTUFBTSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLENBQUMsS0FBSyxLQUFLLFNBQVMsQ0FBQyxDQUFDO1FBRXBGLE9BQU8sTUFBTSxDQUFDLFVBQVcsQ0FBQyxDQUFDLElBQUksSUFBSSxjQUFjLENBQUMsT0FBTyxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQztJQUN0RixDQUFDO0lBRUQsYUFBYSxDQUFDLElBQVU7UUFDdEIsSUFBRyxJQUFJLENBQUMsUUFBUSxJQUFJLElBQUksSUFBSSxJQUFJLENBQUMsUUFBUSxJQUFJLFFBQVEsSUFBSSxJQUFJLENBQUMsUUFBUSxJQUFJLFNBQVMsSUFBSSxJQUFJLENBQUMsUUFBUSxJQUFJLGFBQWEsRUFBRTtZQUNySCxJQUFHLElBQUksQ0FBQyxLQUFLLEVBQUU7Z0JBQ2IsSUFBRyxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxFQUFFO29CQUM3QixJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQztpQkFDbkI7YUFDRjtZQUNELE9BQU8sSUFBSSxDQUFDO1NBQ2I7YUFBTTtZQUNMLElBQUcsSUFBSSxDQUFDLEtBQUssRUFBRTtnQkFDYixJQUFHLEtBQUssQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQztvQkFDNUIsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7YUFDbkI7WUFDRCxPQUFPLEtBQUssQ0FBQztTQUNkO0lBQ0gsQ0FBQztJQUVELGlCQUFpQixDQUFDLEtBQWE7UUFDN0IsT0FBTyxJQUFJLENBQUMscUJBQXFCLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFBO0lBQ3BHLENBQUM7O2tIQTN0QlUscUJBQXFCO3NHQUFyQixxQkFBcUIsZ2hDQ3RCbEMsczdoQ0EyWEE7MkZEcldhLHFCQUFxQjtrQkFMakMsU0FBUzsrQkFDRSxnQkFBZ0I7K0pBc0NULG1CQUFtQjtzQkFBbkMsS0FBSzt1QkFBQyxRQUFRO2dCQUNZLGdCQUFnQjtzQkFBMUMsS0FBSzt1QkFBQyxrQkFBa0I7Z0JBQ0ksa0JBQWtCO3NCQUE5QyxLQUFLO3VCQUFDLG9CQUFvQjtnQkFDRSxrQkFBa0I7c0JBQTlDLEtBQUs7dUJBQUMsb0JBQW9CO2dCQUNYLEtBQUs7c0JBQXBCLEtBQUs7dUJBQUMsT0FBTztnQkFDWSxlQUFlO3NCQUF4QyxLQUFLO3VCQUFDLGlCQUFpQjtnQkFDSSxpQkFBaUI7c0JBQTVDLEtBQUs7dUJBQUMsbUJBQW1CO2dCQUNQLFFBQVE7c0JBQTFCLEtBQUs7dUJBQUMsVUFBVTtnQkFDbUIseUJBQXlCO3NCQUE1RCxLQUFLO3VCQUFDLDJCQUEyQjtnQkFDZixRQUFRO3NCQUExQixLQUFLO3VCQUFDLFVBQVU7Z0JBQ08sYUFBYTtzQkFBcEMsS0FBSzt1QkFBQyxlQUFlO2dCQUNVLHFCQUFxQjtzQkFBcEQsS0FBSzt1QkFBQyx1QkFBdUI7Z0JBQ08sMEJBQTBCO3NCQUE5RCxLQUFLO3VCQUFDLDRCQUE0QjtnQkFDRCx1QkFBdUI7c0JBQXhELEtBQUs7dUJBQUMseUJBQXlCO2dCQUVILGtCQUFrQjtzQkFBOUMsS0FBSzt1QkFBQyxvQkFBb0I7Z0JBeURGLGFBQWE7c0JBQXJDLE1BQU07dUJBQUMsZUFBZTtnQkFDQyxZQUFZO3NCQUFuQyxNQUFNO3VCQUFDLGNBQWM7Z0JBQ0QsU0FBUztzQkFBN0IsTUFBTTt1QkFBQyxXQUFXO2dCQUNTLGdCQUFnQjtzQkFBM0MsTUFBTTt1QkFBQyxrQkFBa0I7Z0JBSTRCLFlBQVk7c0JBQWpFLFNBQVM7dUJBQUMsc0JBQXNCLEVBQUUsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFO2dCQUNkLHVCQUF1QjtzQkFBNUQsU0FBUzt1QkFBQyx5QkFBeUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0LCBWaWV3Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgRm9ybUJ1aWxkZXIsIEZvcm1Db250cm9sIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5pbXBvcnQgeyBOb3RpZmljYXRpb25zRXZlbnRFbnVtLCBPcGVyYXRvckVudW0sIFFCRGF0YVR5cGVFbnVtIH0gZnJvbSAnLi4vLi4vc2hhcmVkL21vZGVscy9lbnVtcy5tb2RlbCc7XHJcbmltcG9ydCB7IFFiUGFuZWxGaWx0ZXIgfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL2ZpbHRlci1wYW5lbC9xYi1wYW5lbC1maWx0ZXIubW9kZWwnO1xyXG5pbXBvcnQgeyBFbnRpdHksIEVudGl0eU1hcCwgRmllbGQsIEZpZWxkTWFwLCBRdWVyeUJ1aWxkZXJDb25maWcsIFJ1bGUsIFJ1bGVTZXQgfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL2ZpbHRlci1wYW5lbC9maWVsZC5tb2RlbCc7XHJcbmltcG9ydCB7IEZpbHRlclBhbmVsVHJhbnNsYXRpb25zIH0gZnJvbSAnLi4vLi4vc2hhcmVkL21vZGVscy9maWx0ZXItcGFuZWwvZmlsdGVyLXBhbmVsLXRyYW5zbGF0aW9ucy5tb2RlbCc7XHJcbmltcG9ydCB7IFF1ZXJ5UmVzdWx0VHlwZSwgUXVlcnlSZXN1bHRzIH0gZnJvbSAnLi4vLi4vc2hhcmVkL21vZGVscy9maWx0ZXItcGFuZWwvcXVlcnktcmVzdWx0cy5tb2RlbCc7XHJcbmltcG9ydCB7IEZpbHRlckZpZWxkIH0gZnJvbSAnLi4vLi4vc2hhcmVkL21vZGVscy9maWx0ZXItcGFuZWwvZmlsdGVyLWZpZWxkLm1vZGVscyc7XHJcbmltcG9ydCB7IFFiRmlsdGVyRW50aXR5IH0gZnJvbSAnLi4vLi4vc2hhcmVkL21vZGVscy9maWx0ZXItcGFuZWwvcWItZmlsdGVyLWVudGl0eS5tb2RlbCc7XHJcbmltcG9ydCB7IEFwaVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zaGFyZWQvc2VydmljZS9hcGkvYXBpLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBTdG9yZWRGaWx0ZXJQYW5lbFF1ZXJ5IH0gZnJvbSAnLi4vLi4vc2hhcmVkL21vZGVscy9zdG9yZWQtZmlsdGVyLXBhbmVsLXF1ZXJ5Lm1vZGVsJztcclxuaW1wb3J0IHsgU2Vzc2lvblN0b3JhZ2VTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2hhcmVkL3NlcnZpY2VzL3Nlc3Npb24tc3RvcmFnZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgTnVsbGFibGVTZWxlY3RPcHRpb24gfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL2ZpbHRlci1wYW5lbC9udWxsYWJsZS1zZWxlY3Qtb3B0aW9uLm1vZGVsJztcclxuaW1wb3J0IHsgQm9vbGVhblNlbGVjdE9wdGlvbiB9IGZyb20gJy4uLy4uL3NoYXJlZC9tb2RlbHMvZmlsdGVyLXBhbmVsL2Jvb2xlYW4tc2VsZWN0LW9wdGlvbi5tb2RlbCc7XHJcbmltcG9ydCB7IFF1ZXJ5QnVpbGRlckNvbXBvbmVudCB9IGZyb20gJ2FuZ3VsYXIyLXF1ZXJ5LWJ1aWxkZXInO1xyXG5pbXBvcnQgeyBUcmFuc2xhdGVkU2VsZWN0T3B0aW9uIH0gZnJvbSAnLi4vLi4vc2hhcmVkL21vZGVscy9maWx0ZXItcGFuZWwvdHJhbnNsYXRlZC1zZWxlY3Qtb3B0aW5vbi5tb2RlbCc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ3ctZmlsdGVyLXBhbmVsJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vdy1maWx0ZXItcGFuZWwuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL3ctZmlsdGVyLXBhbmVsLmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIFdGaWx0ZXJQYW5lbENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgcHVibGljIHF1ZXJ5Q3RybCE6IEZvcm1Db250cm9sO1xyXG4gIHB1YmxpYyBhZHZhbmNlZFF1ZXJ5Q3RybCE6IEZvcm1Db250cm9sO1xyXG4gIHB1YmxpYyBncm91cGVkUXVlcnlDdHJsITogRm9ybUNvbnRyb2w7XHJcbiAgcHVibGljIHBlcnNpc3RWYWx1ZU9uRmllbGRDaGFuZ2U6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBcclxuICBxdWVyeUNvbmZpZ1JlYWR5OiBib29sZWFuID0gZmFsc2U7XHJcbiAgaXNBZHZhbmNlZFNlYXJjaDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIHFiRGF0YVR5cGVFbnVtID0gUUJEYXRhVHlwZUVudW07XHJcbiAgcWJEYXRhRW51bXMgPSBPYmplY3QudmFsdWVzKFFCRGF0YVR5cGVFbnVtKTtcclxuICBiYXNpY1F1ZXJ5Q29uZmlnITogYW55O1xyXG4gIGFkdmFuY2VkUXVlcnlDb25maWchOiBhbnk7XHJcbiAgYmFzaWNRdWVyeTogYW55ID0ge1xyXG4gICAgY29uZGl0aW9uOiAnYW5kJyxcclxuICAgIHJ1bGVzOiBbXVxyXG4gIH07XHJcbiAgZ3JvdXBlZFF1ZXJ5OiBhbnkgPSB7XHJcbiAgICBjb25kaXRpb246ICdhbmQnLFxyXG4gICAgcnVsZXM6IFtdXHJcbiAgfTtcclxuICBhZHZhbmNlZFF1ZXJ5OiBhbnkgPSB7XHJcbiAgICBjb25kaXRpb246ICdhbmQnLFxyXG4gICAgcnVsZXM6IFtdXHJcbiAgfTtcclxuICBmaWx0ZXJQYW5lbE9iamVjdCE6IFFiUGFuZWxGaWx0ZXI7XHJcbiAgZW50aXR5Q29uZmlnR3JvdXBlZDogUXVlcnlCdWlsZGVyQ29uZmlnID0geyBmaWVsZHM6IHt9IH07XHJcbiAgZW50aXRpZXM6IGFueVtdID0gW107XHJcbiAgZGVmYXVsdFZhbHVlczogYW55W10gPSBbXTtcclxuICBkZWZhdWx0T3BlcmF0b3JzOiBhbnlbXSA9IFtdO1xyXG4gIHN0b3JlZFF1ZXJ5ITogU3RvcmVkRmlsdGVyUGFuZWxRdWVyeTtcclxuICBwYXJlbnRSb3V0ZSE6IHN0cmluZztcclxuICBub3RpZmljYXRpb25FdmVudEZpZWxkOiBzdHJpbmcgPSAnbm90aWZpY2F0aW9uZXZlbnQnO1xyXG4gIG5vdGlmaWNhdGlvbkV2ZW50UnVsZXNUb0FkZDphbnlbXSA9IFtdOyBcclxuXHJcbiAgQElucHV0KCdhcGlVcmwnKSBhdXRob3JpemF0aW9uQXBpVXJsITogc3RyaW5nO1xyXG4gIEBJbnB1dCgnY29tbW9uRGF0YUFwaVVybCcpIGNvbW1vbkRhdGFBcGlVcmwhOiBzdHJpbmc7XHJcbiAgQElucHV0KCdub3RpZmljYXRpb25BcGlVcmwnKSBub3RpZmljYXRpb25BcGlVcmwhOiBzdHJpbmc7XHJcbiAgQElucHV0KCdzZWdtZW50YXRpb25BcGlVcmwnKSBzZWdtZW50YXRpb25BcGlVcmwhOiBzdHJpbmc7XHJcbiAgQElucHV0KCd0b2tlbicpIHRva2VuITogc3RyaW5nO1xyXG4gIEBJbnB1dCgnY29tbW9uRGF0YVRva2VuJykgY29tbW9uRGF0YVRva2VuITogc3RyaW5nO1xyXG4gIEBJbnB1dCgnc2VnbWVudGF0aW9uVG9rZW4nKSBzZWdtZW50YXRpb25Ub2tlbiE6IHN0cmluZztcclxuICBASW5wdXQoJ2ZpbHRlcklkJykgZmlsdGVySWQhOiBzdHJpbmc7XHJcbiAgQElucHV0KCdkYXRhSXNMb2FkaW5nU2VhcmNoQnV0dG9uJykgZGF0YUlzTG9hZGluZ1NlYXJjaEJ1dHRvbjogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgndGVuYW50SWQnKSB0ZW5hbnRJZCE6IHN0cmluZztcclxuICBASW5wdXQoJ2FwcGxpY2F0aW9uSWQnKSBhcHBsaWNhdGlvbklkITogc3RyaW5nO1xyXG4gIEBJbnB1dCgnZmllbGRzVG9LZWVwTG9jYWxEYXRlJykgZmllbGRzVG9LZWVwTG9jYWxEYXRlOiBzdHJpbmdbXSA9IFtdO1xyXG4gIEBJbnB1dCgnZmllbGRzRm9yTm90aWZpY2F0aW9uRXZlbnQnKSBmaWVsZHNGb3JOb3RpZmljYXRpb25FdmVudDogc3RyaW5nW10gPSBbXTtcclxuICBASW5wdXQoJ25vdGlmaWNhdGlvbkV2ZW50RW50aXR5Jykgbm90aWZpY2F0aW9uRXZlbnRFbnRpdHkhOiBzdHJpbmc7XHJcblxyXG4gIEBJbnB1dCgndHJhbnNsYXRpb25zT2JqZWN0JykgdHJhbnNsYXRpb25zT2JqZWN0OiBGaWx0ZXJQYW5lbFRyYW5zbGF0aW9ucyA9IHtcclxuICAgIGJhc2ljU2VhcmNoVGFiTGFiZWw6ICdCYXNpYyBzZWFyY2gnLFxyXG4gICAgYWR2YW5jZWRTZWFyY2hUYWJMYWJlbDogJ0FkdmFuY2VkIHNlYXJjaCcsXHJcbiAgICBncm91cGVkRmlsdGVyVGl0bGU6ICdHcm91cGVkIGZpbHRlcicsXHJcbiAgICBhZHZhbmNlZFNlYXJjaDoge1xyXG4gICAgICBhbmRCdXR0b25MYWJlbDogJ0FuZCcsXHJcbiAgICAgIG9yQnV0dG9uTGFiZWw6ICdPcicsXHJcbiAgICAgIGFkZFJ1bGVCdXR0b25MYWJlbDogJ0FkZCBmaWx0ZXInLFxyXG4gICAgICBhZGRSdWxlU2V0QnV0dG9uTGFiZWw6ICdBZGQgZmlsdGVyIHNldCcsXHJcbiAgICAgIHJlbW92ZVJ1bGVTZXRCdXR0b25MYWJlbDogJ1JlbW92ZSBydWxlIHNldCdcclxuICAgIH0sXHJcbiAgICBub1J1bGVzTGFiZWw6ICdBZGQgZmlsdGVyIG9yIGZpbHRlciBzZXQgdG8gc3RhcnQnLFxyXG4gICAgc2VhcmNoQnV0dG9uTGFiZWw6ICdDbGVhcicsXHJcbiAgICBjbGVhckJ1dHRvbkxhYmVsOiAnQ2xlYXInLFxyXG4gICAgZmllbGRzUGxhY2Vob2xkZXJzOiB7XHJcbiAgICAgIGJvb2xlYW46IHtcclxuICAgICAgICAgIHRydWU6ICdUcnVlJyxcclxuICAgICAgICAgIGZhbHNlOiAnRmFsc2UnXHJcbiAgICAgIH0sXHJcbiAgICAgIGRlY2ltYWw6ICdJbnNlcnQgZGVjaW1hbCBudW1iZXInLFxyXG4gICAgICBsaXN0OiAnU2VsZWN0IGFuIG9wdGlvbicsXHJcbiAgICAgIG51bWJlcjogJ0luc2VydCBhIG51bWJlcicsXHJcbiAgICAgIHRleHQ6ICdJbnNlcnQgdGV4dCcsXHJcbiAgICAgIGRhdGV0aW1lOiAnU2VsZWN0IGEgZGF0ZSdcclxuICAgIH0sXHJcbiAgICBmaXJzdERheU9mV2VlazogMCxcclxuICAgIG9wZXJhdG9yczoge1xyXG4gICAgICBjb250YWluczonY29udGFpbnMnXHJcbiAgICB9LFxyXG4gICAgZmllbGRzOiB7XHJcbiAgICAgIElkbGVEZWFkbGluZTogJ0lkJyxcclxuICAgICAgbmFtZTogJ05hbWUnLFxyXG4gICAgICBjb2RlOiAnQ29kZScsXHJcbiAgICAgIGRlbGV0ZTogJ0RlbGV0ZWQnLFxyXG4gICAgICBjb3VudHJ5OiAnQ291bnRyeSdcclxuICAgIH0sXHJcbiAgICBudWxsYWJsZVNlbGVjdE9wdGlvbnM6IHtcclxuICAgICAgY3VzdG9tZXJvcGVyYXRpb246IHtcclxuICAgICAgICBpc051bGxPcHRpb246ICdObyBjdXN0b21lcnMnLFxyXG4gICAgICAgIGlzTm90TnVsbE9wdGlvbjogJ0N1c3RvbWVycydcclxuICAgICAgfVxyXG4gICAgfSxcclxuICAgIGJvb2xlYW5TZWxlY3RPcHRpb25zOiB7XHJcbiAgICAgIHZvaWRlZG9wZXJhdGlvbjoge1xyXG4gICAgICAgIGlzTnVsbE9wdGlvbjogJ05vIHZvaWRlZCcsXHJcbiAgICAgICAgaXNOb3ROdWxsT3B0aW9uOiAnVm9pZGVkJ1xyXG4gICAgICB9XHJcbiAgICB9LFxyXG4gICAgdHJhbnNsYXRlZFNlbGVjdE9wdGlvbnM6IHtcclxuICAgICAgd2VsY29tZTogXCJCaWVudmVuaWRhXCIsXHJcbiAgICAgIHNlZ21lbnRlZDogXCJTZWdtZW50b3MgZGUgY2xpZW50ZVwiLFxyXG4gICAgICBsb3R0ZXJ5OiBcIlNvcnRlb1wiLFxyXG4gICAgICBjb25kaXRpb25hbE9uUHVyY2hhc2U6IFwiQ29tcHJhXCIsXHJcbiAgICAgIG1hbnVhbCA6IFwiTWFudWFsXCJcclxuICAgIH1cclxuICB9O1xyXG4gIFxyXG4gIEBPdXRwdXQoJ3NlYXJjaENsaWNrZWQnKSBzZWFyY2hDbGlja2VkID0gbmV3IEV2ZW50RW1pdHRlcjxRdWVyeVJlc3VsdHM+KCk7XHJcbiAgQE91dHB1dCgnY2xlYXJDbGlja2VkJykgY2xlYXJDbGlja2VkID0gbmV3IEV2ZW50RW1pdHRlcjxib29sZWFuPigpO1xyXG4gIEBPdXRwdXQoJ2xhc3RRdWVyeScpIGxhc3RRdWVyeSA9IG5ldyBFdmVudEVtaXR0ZXI8UXVlcnlSZXN1bHRzPigpO1xyXG4gIEBPdXRwdXQoJ2hhc0RlZmF1bHRWYWx1ZXMnKSBoYXNEZWZhdWx0VmFsdWVzID0gbmV3IEV2ZW50RW1pdHRlcjxib29sZWFuPigpO1xyXG4gIFxyXG4gIHN0YXRlT3B0aW9uczogYW55W10gPSBbeyBsYWJlbDogdGhpcy50cmFuc2xhdGlvbnNPYmplY3QuYWR2YW5jZWRTZWFyY2guYW5kQnV0dG9uTGFiZWwsIHZhbHVlOiAnYW5kJyB9LCB7IGxhYmVsOiB0aGlzLnRyYW5zbGF0aW9uc09iamVjdC5hZHZhbmNlZFNlYXJjaC5vckJ1dHRvbkxhYmVsLCB2YWx1ZTogJ29yJyB9XTtcclxuICBcclxuICBAVmlld0NoaWxkKCdhZHZhbmNlZFF1ZXJ5QnVpbGRlcicsIHsgc3RhdGljOiBmYWxzZSB9KSBxdWVyeUJ1aWxkZXIhOiBRdWVyeUJ1aWxkZXJDb21wb25lbnQ7XHJcbiAgQFZpZXdDaGlsZCgnYmFzaWNRdWVyeUJ1aWxkZXJPYmplY3QnKSBiYXNpY1F1ZXJ5QnVpbGRlck9iamVjdCE6IFF1ZXJ5QnVpbGRlckNvbXBvbmVudDtcclxuICBcclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHByaXZhdGUgZm9ybUJ1aWxkZXI6IEZvcm1CdWlsZGVyLCBcclxuICAgIHByaXZhdGUgYXBpU2VydmljZTogQXBpU2VydmljZSxcclxuICAgIHByaXZhdGUgc2Vzc2lvblN0b3JhZ2U6IFNlc3Npb25TdG9yYWdlU2VydmljZVxyXG4gICkgeyB9XHJcblxyXG4gIG5nT25Jbml0KCkge1xyXG4gICAgdGhpcy5pc0FkdmFuY2VkU2VhcmNoID0gdGhpcy5zZXNzaW9uU3RvcmFnZS5nZXRMYXN0RmlsdGVyUGFuZWxRdWVyeSh0aGlzLnRlbmFudElkLCB0aGlzLmZpbHRlcklkKT8uYWR2YW5jZWRRdWVyeVZhbHVlID8gdHJ1ZSA6IGZhbHNlO1xyXG4gICAgaWYoKHRoaXMuc3RvcmVkUXVlcnk/LmFkdmFuY2VkUXVlcnlWYWx1ZSAmJiB0aGlzLnN0b3JlZFF1ZXJ5Py5hZHZhbmNlZFF1ZXJ5VmFsdWUucnVsZXMubGVuZ3RoID09IDApIHx8ICAodGhpcy5zdG9yZWRRdWVyeT8uYmFzaWNRdWVyeVZhbHVlICYmIHRoaXMuc3RvcmVkUXVlcnk/LmJhc2ljUXVlcnlWYWx1ZS5ydWxlcy5sZW5ndGggPT0gMCkpIHtcclxuICAgICAgLy9EbyBub3RoaW5nXHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICB0aGlzLnN0b3JlZFF1ZXJ5PSB0aGlzLnNlc3Npb25TdG9yYWdlLmdldExhc3RGaWx0ZXJQYW5lbFF1ZXJ5KHRoaXMudGVuYW50SWQsIHRoaXMuZmlsdGVySWQpXHJcbiAgICB9XHJcbiAgICB0aGlzLmdldFF1ZXJ5QnVpbGRlckZpbHRlclBhbmVsKCk7XHJcbiAgfVxyXG5cclxuICBpbml0UXVlcnlCdWlsZGVyQ29udHJvbHMoKSB7XHJcbiAgICB0aGlzLnF1ZXJ5Q3RybCA9IHRoaXMuZm9ybUJ1aWxkZXIuY29udHJvbCh0aGlzLmJhc2ljUXVlcnkpO1xyXG4gICAgdGhpcy5hZHZhbmNlZFF1ZXJ5Q3RybCA9IHRoaXMuZm9ybUJ1aWxkZXIuY29udHJvbCh0aGlzLmFkdmFuY2VkUXVlcnkpO1xyXG4gICAgaWYodGhpcy5maWx0ZXJQYW5lbE9iamVjdC5hbGxvd0dyb3VwZWQpIHtcclxuICAgICAgdGhpcy5ncm91cGVkUXVlcnlDdHJsID0gdGhpcy5mb3JtQnVpbGRlci5jb250cm9sKHRoaXMuZ3JvdXBlZFF1ZXJ5KTtcclxuICAgIH1cclxuICAgIFxyXG4gICAgaWYoKHRoaXMuc3RvcmVkUXVlcnk/LmFkdmFuY2VkUXVlcnlWYWx1ZSAmJiB0aGlzLnN0b3JlZFF1ZXJ5Py5hZHZhbmNlZFF1ZXJ5VmFsdWUucnVsZXMubGVuZ3RoID09IDApIHx8ICAodGhpcy5zdG9yZWRRdWVyeT8uYmFzaWNRdWVyeVZhbHVlICYmIHRoaXMuc3RvcmVkUXVlcnk/LmJhc2ljUXVlcnlWYWx1ZS5ydWxlcy5sZW5ndGggPT0gMCkpIHtcclxuICAgICAgLy9EbyBub3RoaW5nXHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICBsZXQgbGFzdFF1ZXJ5OiBRdWVyeVJlc3VsdHMgPSB7XHJcbiAgICAgICAgdHlwZTogdGhpcy5nZXRRdWVyeVR5cGUoKSxcclxuICAgICAgICBiYXNpYzogdGhpcy5zdG9yZWRRdWVyeT8uYmFzaWNRdWVyeVZhbHVlID8gT2JqZWN0LmFzc2lnbih7fSwgdGhpcy5zdG9yZWRRdWVyeT8uYmFzaWNRdWVyeVZhbHVlKSA6IG51bGwsXHJcbiAgICAgICAgYWR2YW5jZWQ6IHRoaXMuc3RvcmVkUXVlcnk/LmFkdmFuY2VkUXVlcnlWYWx1ZSA/IE9iamVjdC5hc3NpZ24oe30sIHRoaXMuc3RvcmVkUXVlcnk/LmFkdmFuY2VkUXVlcnlWYWx1ZSkgOiBudWxsLFxyXG4gICAgICAgIGdyb3VwZWQ6IHRoaXMuaXNBZHZhbmNlZFNlYXJjaCAmJiB0aGlzLmZpbHRlclBhbmVsT2JqZWN0LmFsbG93R3JvdXBlZCAmJiB0aGlzLmdyb3VwZWRRdWVyeUN0cmwgPyBPYmplY3QuYXNzaWduKHt9LCB0aGlzLmdyb3VwZWRRdWVyeUN0cmw/LnZhbHVlKSA6IG51bGxcclxuICAgICAgfVxyXG5cclxuICAgICAgICB0aGlzLnNldE5vRmlsdGVyc1F1ZXJ5VHlwZShsYXN0UXVlcnkpXHJcbiAgICAgICAgLnRoZW4oKHJlcykgPT4ge1xyXG4gICAgICAgICAgbGFzdFF1ZXJ5ID0gdGhpcy5kZWxldGVGaWVsZHNXaXRob3V0VmFsdWUobGFzdFF1ZXJ5KTtcclxuICAgICAgICAgIGxhc3RRdWVyeSA9IHRoaXMuaGFuZGxlRW1wdHlGaWVsZHNRdWVyeShsYXN0UXVlcnkpO1xyXG4gICAgICAgICAgdGhpcy5sYXN0UXVlcnkuZW1pdChsYXN0UXVlcnkpO1xyXG4gICAgICAgIH0pLnRoZW4oKCkgPT4ge1xyXG4gICAgICAgICAgdGhpcy5pbnZlcnNlTnVsbGFibGVGaWx0ZXJPcGVyYXRpb25IYW5kbGUodGhpcy5hZHZhbmNlZFF1ZXJ5Q3RybC52YWx1ZSk7XHJcbiAgICAgICAgfSlcclxuICAgICAgICAudGhlbigoKSA9PiB7XHJcbiAgICAgICAgICB0aGlzLm9uU2VhcmNoQ2xpY2tlZCgpO1xyXG4gICAgICAgIH0pO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgbnVsbGFibGVTZWxlY3RQbGFjZWhvbGRlcihydWxlOiBSdWxlLCBvcHRpb25zOiBOdWxsYWJsZVNlbGVjdE9wdGlvbltdKSB7XHJcbiAgICBpZihydWxlLm9wZXJhdG9yID09ICdpcycgJiYgcnVsZS52YWx1ZSA9PSAnbnVsbCcpIHtcclxuICAgICAgcnVsZS52YWx1ZSA9IDA7XHJcbiAgICAgIHJldHVybiB0aGlzLnRyYW5zbGF0aW9uc09iamVjdC5udWxsYWJsZVNlbGVjdE9wdGlvbnMhW29wdGlvbnNbMF0ubmFtZV0uaXNOdWxsT3B0aW9uO1xyXG4gICAgfVxyXG4gICAgaWYocnVsZS5vcGVyYXRvciA9PSAnaXMgbm90JyAmJiBydWxlLnZhbHVlID09ICdudWxsJykge1xyXG4gICAgICBydWxlLnZhbHVlID0gMTtcclxuICAgICAgcmV0dXJuIHRoaXMudHJhbnNsYXRpb25zT2JqZWN0Lm51bGxhYmxlU2VsZWN0T3B0aW9ucyFbb3B0aW9uc1swXS5uYW1lXS5pc05vdE51bGxPcHRpb247XHJcbiAgICB9XHJcbiAgICByZXR1cm4gdGhpcy50cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLmxpc3Q7XHJcbiAgfVxyXG4gIFxyXG4gIHNldEVtdHB5QXJyYXlzVG9OdWxsKHF1ZXJ5OiBhbnkpIHtcclxuICAgIGlmIChcInJ1bGVzXCIgaW4gcXVlcnkpIHtcclxuICAgICAgcXVlcnkucnVsZXMuZm9yRWFjaCgocnVsZTogUnVsZVNldCB8IFJ1bGUpID0+IHtcclxuICAgICAgICB0aGlzLnNldEVtdHB5QXJyYXlzVG9OdWxsKHJ1bGUpO1xyXG4gICAgICB9KTtcclxuICAgIH0gZWxzZSB7XHJcbiAgICAgIGlmIChxdWVyeS52YWx1ZSBpbnN0YW5jZW9mIEFycmF5ICYmIHF1ZXJ5LnZhbHVlLmxlbmd0aCA9PSAwKSB7XHJcbiAgICAgICAgcXVlcnkudmFsdWUgPSBudWxsO1xyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICB1cGRhdGVTZWFyY2hUeXBlKCkge1xyXG4gICAgdGhpcy5pc0FkdmFuY2VkU2VhcmNoID0gIXRoaXMuaXNBZHZhbmNlZFNlYXJjaDtcclxuICAgIGlmKHRoaXMuaXNBZHZhbmNlZFNlYXJjaCkge1xyXG4gICAgICBzZXRUaW1lb3V0KCgpID0+IHtcclxuICAgICAgICB0aGlzLnVwZGF0ZU51bGxhYmxlRWxlbWVudHModGhpcy5xdWVyeUJ1aWxkZXIuY29uZmlnLmZpZWxkcylcclxuICAgICAgfSwgMzAwMCk7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICB1cGRhdGVOdWxsYWJsZUVsZW1lbnRzKGVsZW1lbnRzOiB7IFtrZXk6IHN0cmluZ106IGFueSB9KTogdm9pZCB7XHJcbiAgICBmb3IgKGNvbnN0IGtleSBpbiBlbGVtZW50cykge1xyXG4gICAgICAgIGlmIChlbGVtZW50cy5oYXNPd25Qcm9wZXJ0eShrZXkpKSB7XHJcbiAgICAgICAgICAgIGNvbnN0IGVsZW1lbnQgPSBlbGVtZW50c1trZXldO1xyXG4gICAgICAgICAgICBpZiAoZWxlbWVudC5vcGVyYXRvcnMuaW5jbHVkZXMoJ251bGxhYmxlJykgJiYgZWxlbWVudC5kZWZhdWx0VmFsdWUgPT0gbnVsbCkge1xyXG4gICAgICAgICAgICAgICAgZWxlbWVudC5kZWZhdWx0VmFsdWUgPSAwO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgfVxyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgb25TZWFyY2hDbGlja2VkKCkge1xyXG4gICAgbGV0IHF1ZXJpZXM6IFF1ZXJ5UmVzdWx0cyA9IHtcclxuICAgICAgdHlwZTogdGhpcy5nZXRRdWVyeVR5cGUoKSxcclxuICAgICAgYmFzaWM6IHRoaXMuaXNBZHZhbmNlZFNlYXJjaCA/IG51bGwgOiBPYmplY3QuYXNzaWduKHt9LCB0aGlzLnF1ZXJ5Q3RybC52YWx1ZSksXHJcbiAgICAgIGFkdmFuY2VkOiB0aGlzLmlzQWR2YW5jZWRTZWFyY2ggPyBPYmplY3QuYXNzaWduKHt9LCB0aGlzLmFkdmFuY2VkUXVlcnlDdHJsLnZhbHVlKSA6IG51bGwsXHJcbiAgICAgIGdyb3VwZWQ6IHRoaXMuaXNBZHZhbmNlZFNlYXJjaCAmJiB0aGlzLmZpbHRlclBhbmVsT2JqZWN0LmFsbG93R3JvdXBlZCA/IE9iamVjdC5hc3NpZ24oe30sIHRoaXMuZ3JvdXBlZFF1ZXJ5Q3RybC52YWx1ZSkgOiBudWxsXHJcbiAgICB9XHJcbiAgICBcclxuICAgIHRoaXMuc2V0RW50aXR5KHF1ZXJpZXMpO1xyXG5cclxuICAgIHF1ZXJpZXMgPSB0aGlzLmluaXRpYWxpemVPcGVyYXRvcnMocXVlcmllcyk7XHJcbiAgICBcclxuICAgIHRoaXMuc2V0Tm9GaWx0ZXJzUXVlcnlUeXBlKHF1ZXJpZXMpLnRoZW4oKHJlc1F1ZXJpZXM6YW55KSA9PiB7XHJcbiAgICAgIGlmKHJlc1F1ZXJpZXMudHlwZSAhPSAwKXtcclxuICAgICAgICB0aGlzLm51bGxhYmxlRmlsdGVyT3BlcmF0aW9uSGFuZGxlKHF1ZXJpZXMuYmFzaWMgPyBxdWVyaWVzLmJhc2ljIDogcXVlcmllcy5hZHZhbmNlZCk7XHJcbiAgICAgIH1cclxuICAgIH0pLnRoZW4oKHJlc1F1ZXJpZXM6YW55KSA9PiB7XHJcbiAgICAgIGxldCBzdG9yZWRRdWVyeTogU3RvcmVkRmlsdGVyUGFuZWxRdWVyeSA9IHtcclxuICAgICAgICBpZDogdGhpcy5maWx0ZXJJZCxcclxuICAgICAgICBiYXNpY1F1ZXJ5VmFsdWU6IHF1ZXJpZXMuYmFzaWMsXHJcbiAgICAgICAgYWR2YW5jZWRRdWVyeVZhbHVlOiBxdWVyaWVzLmFkdmFuY2VkLFxyXG4gICAgICAgIGdyb3VwZWRRdWVyeVZhbHVlOiBxdWVyaWVzLmdyb3VwZWRcclxuICAgICAgfVxyXG4gICAgICB0aGlzLnNldEVtdHB5QXJyYXlzVG9OdWxsKHF1ZXJpZXMuYmFzaWMgPyBxdWVyaWVzLmJhc2ljIDogcXVlcmllcy5hZHZhbmNlZCk7XHJcbiAgICAgIGlmKHN0b3JlZFF1ZXJ5LmFkdmFuY2VkUXVlcnlWYWx1ZSAmJiBzdG9yZWRRdWVyeS5hZHZhbmNlZFF1ZXJ5VmFsdWUucnVsZXMgPT0gMCkge1xyXG4gICAgICAgIC8vRG8gbm90aGluZ1xyXG4gICAgICB9IGVsc2Uge1xyXG4gICAgICAgIHRoaXMuc2Vzc2lvblN0b3JhZ2Uuc2V0TGFzdEZpbHRlclBhbmVsUXVlcnkodGhpcy50ZW5hbnRJZCwgc3RvcmVkUXVlcnkpO1xyXG4gICAgICB9XHJcbiAgICAgIHRoaXMua2VlcExvY2FsRGF0ZUZpbHRlck9wZXJhdGlvbkhhbmRsZShxdWVyaWVzLmJhc2ljID8gcXVlcmllcy5iYXNpYyA6IHF1ZXJpZXMuYWR2YW5jZWQpO1xyXG4gICAgfSkudGhlbigocmVzUXVlcmllczogYW55KSA9PiB7XHJcbiAgICAgIHF1ZXJpZXMgPSB0aGlzLmRlbGV0ZUZpZWxkc1dpdGhvdXRWYWx1ZShxdWVyaWVzKTtcclxuICAgICAgcXVlcmllcyA9IHRoaXMuaGFuZGxlRW1wdHlGaWVsZHNRdWVyeShxdWVyaWVzKTtcclxuICAgICAgdGhpcy5zZWFyY2hDbGlja2VkLmVtaXQocXVlcmllcyk7XHJcbiAgICB9KS50aGVuKCgpID0+IHtcclxuICAgICAgdGhpcy5pbnZlcnNlTnVsbGFibGVGaWx0ZXJPcGVyYXRpb25IYW5kbGUodGhpcy5hZHZhbmNlZFF1ZXJ5Q3RybC52YWx1ZSk7XHJcbiAgICB9KVxyXG4gICAgLmNhdGNoKChlcnJvcikgPT4ge1xyXG4gICAgICBjb25zb2xlLmVycm9yKFwiRXJyb3IgZW4gbGEgcHJvbWVzYTpcIiwgZXJyb3IpO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBzZXROb0ZpbHRlcnNRdWVyeVR5cGUocXVlcmllczphbnkpIHtcclxuICAgIHJldHVybiBuZXcgUHJvbWlzZSgocmVzb2x2ZSwgcmVqZWN0KSA9PiB7XHJcbiAgICAgIHF1ZXJpZXMgPSB0aGlzLmhhbmRsZUVtcHR5RmllbGRzUXVlcnkocXVlcmllcyk7XHJcbiAgICAgICAgcmVzb2x2ZShxdWVyaWVzKTtcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgb25DbGVhckNsaWNrZWQoKSB7XHJcbiAgICB0aGlzLnJlc2V0QmFzaWNRdWVyeVZhbHVlcygpO1xyXG4gICAgdGhpcy5hZHZhbmNlZFF1ZXJ5LnJ1bGVzID0gW107XHJcbiAgICB0aGlzLmdyb3VwZWRRdWVyeS5ydWxlcyA9IFtdO1xyXG4gICAgdGhpcy5zZXNzaW9uU3RvcmFnZS5yZW1vdmVMYXN0RmlsdGVyUGFuZWxRdWVyeSh0aGlzLnRlbmFudElkLCB0aGlzLmZpbHRlcklkKTtcclxuICAgIHRoaXMuY2xlYXJDbGlja2VkLmVtaXQodHJ1ZSk7XHJcbiAgfVxyXG5cclxuICBoYW5kbGVFbXB0eUZpZWxkc1F1ZXJ5KHF1ZXJpZXM6IFF1ZXJ5UmVzdWx0cyk6IFF1ZXJ5UmVzdWx0cyB7XHJcbiAgICBpZihxdWVyaWVzLmFkdmFuY2VkICE9IG51bGwgJiYgcXVlcmllcy5hZHZhbmNlZD8ucnVsZXMubGVuZ3RoID09IDApIHtcclxuICAgICAgcXVlcmllcy50eXBlID0gMFxyXG4gICAgfVxyXG4gICAgaWYocXVlcmllcy5iYXNpYyAhPSBudWxsICYmIHF1ZXJpZXMuYmFzaWM/LnJ1bGVzLmxlbmd0aCA9PSAwKSB7XHJcbiAgICAgIHF1ZXJpZXMudHlwZSA9IDBcclxuICAgIH1cclxuICAgIGlmKHF1ZXJpZXMuZ3JvdXBlZCAhPSBudWxsICYmIHF1ZXJpZXMuZ3JvdXBlZD8ucnVsZXMubGVuZ3RoID09IDApIHtcclxuICAgICAgcXVlcmllcy50eXBlID0gMFxyXG4gICAgfVxyXG4gICAgcmV0dXJuIHF1ZXJpZXM7XHJcbiAgfVxyXG5cclxuICBudWxsYWJsZUZpbHRlck9wZXJhdGlvbkhhbmRsZShxdWVyeTogYW55KSB7XHJcbiAgICBpZiAoXCJydWxlc1wiIGluIHF1ZXJ5KSB7XHJcbiAgICAgIHF1ZXJ5LnJ1bGVzLmZvckVhY2goKHJ1bGU6IFJ1bGVTZXQgfCBSdWxlKSA9PiB7XHJcbiAgICAgICAgdGhpcy5udWxsYWJsZUZpbHRlck9wZXJhdGlvbkhhbmRsZShydWxlKTtcclxuICAgICAgfSk7XHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICBpZiAocXVlcnkub3BlcmF0b3IgPT09IE9wZXJhdG9yRW51bS5OdWxsYWJsZSB8fCAoKHF1ZXJ5Lm9wZXJhdG9yID09ICdpcycgfHwgcXVlcnkub3BlcmF0b3IgPT0gJ2lzIG5vdCcpICYmIChxdWVyeS52YWx1ZSA9PSAxIHx8IHF1ZXJ5LnZhbHVlID09IDApKSkge1xyXG4gICAgICAgIGlmKHF1ZXJ5LnZhbHVlID09IDEpIHtcclxuICAgICAgICAgIHF1ZXJ5Lm9wZXJhdG9yID0gJ2lzIG5vdCc7XHJcbiAgICAgICAgfVxyXG4gICAgICAgIGlmKHF1ZXJ5LnZhbHVlID09IDApIHtcclxuICAgICAgICAgIHF1ZXJ5Lm9wZXJhdG9yID0gJ2lzJztcclxuICAgICAgICB9XHJcbiAgICAgICAgcXVlcnkudmFsdWUgPSAnbnVsbCc7XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIGludmVyc2VOdWxsYWJsZUZpbHRlck9wZXJhdGlvbkhhbmRsZShxdWVyeTogYW55KSB7XHJcbiAgICBpZiAoXCJydWxlc1wiIGluIHF1ZXJ5KSB7XHJcbiAgICAgIHF1ZXJ5LnJ1bGVzLmZvckVhY2goKHJ1bGU6IFJ1bGVTZXQgfCBSdWxlKSA9PiB7XHJcbiAgICAgICAgdGhpcy5pbnZlcnNlTnVsbGFibGVGaWx0ZXJPcGVyYXRpb25IYW5kbGUocnVsZSk7XHJcbiAgICAgIH0pO1xyXG4gICAgfSBlbHNlIHtcclxuICAgICAgaWYgKChxdWVyeS5vcGVyYXRvciA9PSAnaXMgbm90JyB8fCBxdWVyeS5vcGVyYXRvciA9PSAnaXMnKSAmJiBxdWVyeS52YWx1ZSA9PSAnbnVsbCcpIHtcclxuICAgICAgICBpZihxdWVyeS5vcGVyYXRvciA9PSAnaXMgbm90Jykge1xyXG4gICAgICAgICAgcXVlcnkudmFsdWUgPSAxO1xyXG4gICAgICAgIH1cclxuICAgICAgICBpZihxdWVyeS5vcGVyYXRvciA9PSAnaXMnKSB7XHJcbiAgICAgICAgICBxdWVyeS52YWx1ZSA9IDA7XHJcbiAgICAgICAgfVxyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBrZWVwTG9jYWxEYXRlRmlsdGVyT3BlcmF0aW9uSGFuZGxlKHF1ZXJ5OiBhbnkpe1xyXG4gICAgaWYodGhpcy5maWVsZHNUb0tlZXBMb2NhbERhdGUubGVuZ3RoID4gMCl7XHJcbiAgICAgIGlmKFwicnVsZXNcIiBpbiBxdWVyeSl7XHJcbiAgICAgICAgcXVlcnkucnVsZXMuZm9yRWFjaCgocnVsZTogUnVsZVNldCB8IFJ1bGUpID0+IHtcclxuICAgICAgICAgIHRoaXMua2VlcExvY2FsRGF0ZUZpbHRlck9wZXJhdGlvbkhhbmRsZShydWxlKTtcclxuICAgICAgICB9KTtcclxuICAgICAgfWVsc2V7XHJcbiAgICAgICAgaWYgKHRoaXMuZmllbGRzVG9LZWVwTG9jYWxEYXRlLmluY2x1ZGVzKHF1ZXJ5LmZpZWxkKSAmJiBxdWVyeS52YWx1ZSkge1xyXG4gICAgICAgICAgY29uc3QgZGF0ZVZhbHVlID0gbmV3IERhdGUocXVlcnkudmFsdWUpO1xyXG4gICAgICAgICAgY29uc3QgdG9VVENEYXRlID0gbmV3IERhdGUoRGF0ZS5VVEMoZGF0ZVZhbHVlLmdldEZ1bGxZZWFyKCksIGRhdGVWYWx1ZS5nZXRNb250aCgpLCBkYXRlVmFsdWUuZ2V0RGF0ZSgpLCBkYXRlVmFsdWUuZ2V0SG91cnMoKSwgZGF0ZVZhbHVlLmdldE1pbnV0ZXMoKSkpO1xyXG4gICAgICAgICAgcXVlcnkudmFsdWUgPSB0b1VUQ0RhdGU7XHJcbiAgICAgICAgfVxyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBtb2RpZnlOb3RpZmljYXRpb25FdmVudFZhbHVlKHF1ZXJ5OiBhbnkpe1xyXG4gICAgaWYodGhpcy5maWVsZHNGb3JOb3RpZmljYXRpb25FdmVudC5sZW5ndGggPiAwICYmIHRoaXMubm90aWZpY2F0aW9uRXZlbnRFbnRpdHkgJiYgcXVlcnkpe1xyXG4gICAgICBpZiAoXCJydWxlc1wiIGluIHF1ZXJ5KSB7XHJcbiAgICAgICAgcXVlcnkucnVsZXMuZm9yRWFjaCgocnVsZTogUnVsZVNldCB8IFJ1bGUpID0+IHtcclxuICAgICAgICAgIHRoaXMubW9kaWZ5Tm90aWZpY2F0aW9uRXZlbnRWYWx1ZShydWxlKTtcclxuICAgICAgICB9KTtcclxuXHJcbiAgICAgICAgaWYodGhpcy5ub3RpZmljYXRpb25FdmVudFJ1bGVzVG9BZGQubGVuZ3RoID4gMCl7XHJcbiAgICAgICAgICBxdWVyeS5ydWxlcy5wdXNoKC4uLnRoaXMubm90aWZpY2F0aW9uRXZlbnRSdWxlc1RvQWRkKVxyXG4gICAgICAgICAgcXVlcnkucnVsZXMgPSBxdWVyeS5ydWxlcy5maWx0ZXIoKG9iajphbnkpID0+IG9iai5maWVsZCAhPT0gdGhpcy5ub3RpZmljYXRpb25FdmVudEZpZWxkKTtcclxuICAgICAgICAgIHRoaXMubm90aWZpY2F0aW9uRXZlbnRSdWxlc1RvQWRkID0gW107XHJcbiAgICAgICAgfVxyXG4gICAgICB9ZWxzZXtcclxuICAgICAgICBpZiAocXVlcnkudmFsdWUgJiYgcXVlcnkuZmllbGQgPT0gdGhpcy5ub3RpZmljYXRpb25FdmVudEZpZWxkICYmIHF1ZXJ5LmVudGl0eSA9PSB0aGlzLm5vdGlmaWNhdGlvbkV2ZW50RW50aXR5KSB7XHJcbiAgICAgICAgICBxdWVyeS5leHRyYSA9IHF1ZXJ5LnZhbHVlOyBcclxuICAgICAgICAgIGxldCBydWxlcyA9IFtdO1xyXG5cclxuICAgICAgICAgIGlmKHF1ZXJ5LmV4dHJhLnByb3BlcnR5ID09IE5vdGlmaWNhdGlvbnNFdmVudEVudW0uRXZlbnRHcm91cCl7XHJcbiAgICAgICAgICAgIHJ1bGVzID0gW1xyXG4gICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgIGZpZWxkOiB0aGlzLmZpZWxkc0Zvck5vdGlmaWNhdGlvbkV2ZW50W05vdGlmaWNhdGlvbnNFdmVudEVudW0uRXZlbnRHcm91cCAtIDFdLFxyXG4gICAgICAgICAgICAgICAgb3BlcmF0b3I6IFwiPVwiLCBcclxuICAgICAgICAgICAgICAgIHZhbHVlOiBxdWVyeS5leHRyYS5kYXRhLCBcclxuICAgICAgICAgICAgICAgIGVudGl0eTogdGhpcy5ub3RpZmljYXRpb25FdmVudEVudGl0eVxyXG4gICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgXTsgXHJcbiAgICAgICAgICB9ZWxzZXtcclxuICAgICAgICAgICAgcnVsZXMgPSBbXHJcbiAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgZmllbGQ6IHRoaXMuZmllbGRzRm9yTm90aWZpY2F0aW9uRXZlbnRbTm90aWZpY2F0aW9uc0V2ZW50RW51bS5FdmVudEdyb3VwIC0gMV0sXHJcbiAgICAgICAgICAgICAgICBvcGVyYXRvcjogXCI9XCIsIFxyXG4gICAgICAgICAgICAgICAgdmFsdWU6IHF1ZXJ5LmV4dHJhLmV2ZW50Q2F0ZWdvcnlJZCwgXHJcbiAgICAgICAgICAgICAgICBlbnRpdHk6IHRoaXMubm90aWZpY2F0aW9uRXZlbnRFbnRpdHlcclxuICAgICAgICAgICAgICB9LCBcclxuICAgICAgICAgICAgICB7XHJcbiAgICAgICAgICAgICAgICBmaWVsZDogdGhpcy5maWVsZHNGb3JOb3RpZmljYXRpb25FdmVudFtOb3RpZmljYXRpb25zRXZlbnRFbnVtLkV2ZW50IC0gMV0sXHJcbiAgICAgICAgICAgICAgICBvcGVyYXRvcjogXCI9XCIsIFxyXG4gICAgICAgICAgICAgICAgdmFsdWU6IHF1ZXJ5LmV4dHJhLmRhdGEsIFxyXG4gICAgICAgICAgICAgICAgZW50aXR5OiB0aGlzLm5vdGlmaWNhdGlvbkV2ZW50RW50aXR5XHJcbiAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICBdOyBcclxuICAgICAgICAgIH1cclxuICAgICAgICAgIHRoaXMubm90aWZpY2F0aW9uRXZlbnRSdWxlc1RvQWRkLnB1c2goLi4ucnVsZXMpOyBcclxuICAgICAgICB9XHJcbiAgICAgIH1cclxuICAgICAgcmV0dXJuIHF1ZXJ5O1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgZ2V0UXVlcnlUeXBlKCk6IFF1ZXJ5UmVzdWx0VHlwZSB7XHJcbiAgICBpZighdGhpcy5pc0FkdmFuY2VkU2VhcmNoKSB7XHJcbiAgICAgIHJldHVybiBRdWVyeVJlc3VsdFR5cGUuQmFzaWM7XHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICBpZih0aGlzLmlzQWR2YW5jZWRTZWFyY2ggJiYgdGhpcy5ncm91cGVkUXVlcnlDdHJsPy52YWx1ZSkge1xyXG4gICAgICAgIHJldHVybiBRdWVyeVJlc3VsdFR5cGUuR3JvdXBlZFxyXG4gICAgICB9IGVsc2Uge1xyXG4gICAgICAgIHJldHVybiBRdWVyeVJlc3VsdFR5cGUuQWR2YW5jZWQ7XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIHNldEVudGl0eShxdWVyaWVzOiBRdWVyeVJlc3VsdHMpIHtcclxuICAgIGlmKHRoaXMuZ2V0UXVlcnlUeXBlKCkgPT0gUXVlcnlSZXN1bHRUeXBlLkJhc2ljKSB7XHJcbiAgICAgIHF1ZXJpZXMuYmFzaWMhLnJ1bGVzID0gcXVlcmllcy5iYXNpYyEucnVsZXMubWFwKChyOmFueSkgPT4ge1xyXG4gICAgICAgIHJldHVybiB7XHJcbiAgICAgICAgICBmaWVsZDogci5maWVsZCxcclxuICAgICAgICAgIG9wZXJhdG9yOiByLm9wZXJhdG9yLFxyXG4gICAgICAgICAgdmFsdWU6IHIudmFsdWUsXHJcbiAgICAgICAgICBlbnRpdHk6IHRoaXMuZW50aXRpZXMuZmluZChlID0+IGUuZmllbGRKc29uTmFtZSA9PSByLmZpZWxkKS5lbnRpdHlcclxuICAgICAgICB9XHJcbiAgICAgIH0pXHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBnZXRRdWVyeUJ1aWxkZXJGaWx0ZXJQYW5lbCgpIHtcclxuICAgIHRoaXMuYXBpU2VydmljZS5nZXRGaWx0ZXJQYW5lbCh0aGlzLmF1dGhvcml6YXRpb25BcGlVcmwsIHRoaXMudG9rZW4sIHRoaXMuY29tbW9uRGF0YUFwaVVybCwgdGhpcy5jb21tb25EYXRhVG9rZW4sIHRoaXMudGVuYW50SWQsIHRoaXMuYXBwbGljYXRpb25JZCwgdGhpcy5maWx0ZXJJZClcclxuICAgICAgLnN1YnNjcmliZSgocWJQYW5lbEZpbHRlcjogUWJQYW5lbEZpbHRlcikgPT4ge1xyXG4gICAgICAgIHRoaXMuZmlsdGVyUGFuZWxPYmplY3QgPSBxYlBhbmVsRmlsdGVyO1xyXG4gICAgICAgIGxldCBiYXNpY0ZpbHRlcklkczogbnVtYmVyW10gPSBxYlBhbmVsRmlsdGVyLnFicGFuZWxUb0ZpZWxkcy5maWx0ZXIocGFuZWxUb0ZpZWxkID0+IHBhbmVsVG9GaWVsZC5iYXNpYykubWFwKHBhbmVsVG9GaWVsZCA9PiBwYW5lbFRvRmllbGQucWJmaWx0ZXJGaWVsZElkKTtcclxuICAgICAgICBsZXQgYWR2YW5jZWRGaWx0ZXJJZHM6IG51bWJlcltdID0gcWJQYW5lbEZpbHRlci5xYnBhbmVsVG9GaWVsZHMuZmlsdGVyKHBhbmVsVG9GaWVsZCA9PiAhcGFuZWxUb0ZpZWxkLmJhc2ljKS5tYXAocGFuZWxUb0ZpZWxkID0+IHBhbmVsVG9GaWVsZC5xYmZpbHRlckZpZWxkSWQpO1xyXG4gICAgICAgIHRoaXMuZGVmYXVsdFZhbHVlcyA9IHFiUGFuZWxGaWx0ZXIucWJwYW5lbFRvRmllbGRzLm1hcChwYW5lbFRvRmllbGQgPT4ge1xyXG4gICAgICAgICAgcmV0dXJuIHtcclxuICAgICAgICAgICAgcWJmaWx0ZXJGaWVsZElkOiBwYW5lbFRvRmllbGQucWJmaWx0ZXJGaWVsZElkLCBcclxuICAgICAgICAgICAgYmFzaWM6IHBhbmVsVG9GaWVsZC5iYXNpYywgXHJcbiAgICAgICAgICAgIGRlZmF1bHRWYWx1ZTogdGhpcy5kZWZhdWx0VmFsdWVBZGFwdGVyKHBhbmVsVG9GaWVsZC5kZWZhdWx0VmFsdWUpXHJcbiAgICAgICAgICB9XHJcbiAgICAgICAgfSlcclxuICAgICAgICB0aGlzLmhhc0RlZmF1bHRWYWx1ZXMuZW1pdCh0aGlzLmRlZmF1bHRWYWx1ZXMuc29tZSgodikgPT4gdi5kZWZhdWx0VmFsdWUgIT0gbnVsbCkpO1xyXG4gICAgICAgIHRoaXMuZGVmYXVsdE9wZXJhdG9ycyA9IHFiUGFuZWxGaWx0ZXIucWJwYW5lbFRvRmllbGRzLm1hcChwYW5lbFRvRmllbGQgPT4ge1xyXG4gICAgICAgICAgcmV0dXJuIHtcclxuICAgICAgICAgICAgcWJmaWx0ZXJGaWVsZElkOiBwYW5lbFRvRmllbGQucWJmaWx0ZXJGaWVsZElkLFxyXG4gICAgICAgICAgICBxYmRlZmF1bHRPcGVyYXRvcjogcGFuZWxUb0ZpZWxkLnFiZGVmYXVsdE9wZXJhdG9yXHJcbiAgICAgICAgICB9XHJcbiAgICAgICAgfSlcclxuICAgICAgICBsZXQgZmlsdGVyRW50aXR5OiBRYkZpbHRlckVudGl0eVtdID0gcWJQYW5lbEZpbHRlci5xYnBhbmVsVG9GaWVsZHMubWFwKHBhbmVsVG9GaWVsZCA9PiB7XHJcbiAgICAgICAgICByZXR1cm4ge1xyXG4gICAgICAgICAgICBpZDogcGFuZWxUb0ZpZWxkLnFiZmlsdGVyRmllbGQucWJmaWx0ZXJFbnRpdHkuaWQsIFxyXG4gICAgICAgICAgICBiYXNpYzogcGFuZWxUb0ZpZWxkLmJhc2ljLFxyXG4gICAgICAgICAgICBuYW1lOiBwYW5lbFRvRmllbGQucWJmaWx0ZXJGaWVsZC5xYmZpbHRlckVudGl0eS5uYW1lLCBcclxuICAgICAgICAgICAganNvbk5hbWU6IHBhbmVsVG9GaWVsZC5xYmZpbHRlckZpZWxkLnFiZmlsdGVyRW50aXR5Lmpzb25OYW1lLCBcclxuICAgICAgICAgICAgZmllbGRzOiBbXVxyXG4gICAgICAgICAgfVxyXG4gICAgICAgIH0pO1xyXG5cclxuICAgICAgICBsZXQgZmlsdGVyRmllbGRzOiBGaWx0ZXJGaWVsZFtdID0gcWJQYW5lbEZpbHRlci5xYnBhbmVsVG9GaWVsZHMubWFwKHAgPT4gcC5xYmZpbHRlckZpZWxkKTtcclxuICAgICAgICBmaWx0ZXJFbnRpdHkuZm9yRWFjaCgoZW50aXR5OiBRYkZpbHRlckVudGl0eSwgaW5kZXg6IG51bWJlcikgPT4ge1xyXG4gICAgICAgICAgIGxldCBmaWVsZHMgPSBmaWx0ZXJGaWVsZHMuZmlsdGVyKGUgPT4gZS5xYmZpbHRlckVudGl0eS5pZCA9PSBlbnRpdHkuaWQpO1xyXG4gICAgICAgICAgIGZpbHRlckVudGl0eVtpbmRleF0uZmllbGRzID0gZmllbGRzIDtcclxuICAgICAgICB9KVxyXG4gICAgICAgIFxyXG4gICAgICAgIHRoaXMuYmFzaWNRdWVyeUNvbmZpZyA9IHRoaXMuaW5pdFF1ZXJ5QnVpbGRlcihmaWx0ZXJFbnRpdHksIHRydWUpO1xyXG4gICAgICAgIHRoaXMuYmFzaWNRdWVyeUNvbmZpZyA9IHRoaXMuZmlsdGVyRmllbGRzQnlJZCh0aGlzLmJhc2ljUXVlcnlDb25maWcsIGJhc2ljRmlsdGVySWRzKTtcclxuICAgICAgICB0aGlzLmJhc2ljUXVlcnlDb25maWcuZmllbGRzID0gdGhpcy50cmFuc2xhdGVGaWVsZHModGhpcy5iYXNpY1F1ZXJ5Q29uZmlnLmZpZWxkcyk7XHJcbiAgICAgICAgdGhpcy5hZHZhbmNlZFF1ZXJ5Q29uZmlnID0gdGhpcy5pbml0UXVlcnlCdWlsZGVyKGZpbHRlckVudGl0eSwgZmFsc2UpO1xyXG4gICAgICAgIHRoaXMuYWR2YW5jZWRRdWVyeUNvbmZpZyA9IHRoaXMuZmlsdGVyRmllbGRzQnlJZCh0aGlzLmFkdmFuY2VkUXVlcnlDb25maWcsIGFkdmFuY2VkRmlsdGVySWRzKTtcclxuICAgICAgICB0aGlzLmFkdmFuY2VkUXVlcnlDb25maWcuZmllbGRzID0gdGhpcy50cmFuc2xhdGVGaWVsZHModGhpcy5hZHZhbmNlZFF1ZXJ5Q29uZmlnLmZpZWxkcyk7XHJcbiAgICAgICAgbGV0IHJ1bGVzID0gT2JqZWN0LmtleXModGhpcy5iYXNpY1F1ZXJ5Q29uZmlnLmZpZWxkcylcclxuICAgICAgICAgIC5tYXAoZmllbGRLZXkgPT4geyBcclxuICAgICAgICAgICAgbGV0IGRlZmF1bHRPcGVyYXRvciA9IHRoaXMuZGVmYXVsdE9wZXJhdG9ycy5maW5kKG9wZXJhdG9yID0+IG9wZXJhdG9yLnFiZmlsdGVyRmllbGRJZCA9PSB0aGlzLmJhc2ljUXVlcnlDb25maWcuZmllbGRzW2ZpZWxkS2V5XS5pZCAmJiBvcGVyYXRvci5xYmRlZmF1bHRPcGVyYXRvciAhPSBudWxsKTtcclxuICAgICAgICAgICAgcmV0dXJuIHtcclxuICAgICAgICAgICAgICBmaWVsZDogZmllbGRLZXksIFxyXG4gICAgICAgICAgICAgIHZhbHVlOiB0aGlzLmJhc2ljUXVlcnlDb25maWcuZmllbGRzW2ZpZWxkS2V5XS5kZWZhdWx0VmFsdWUhLFxyXG4gICAgICAgICAgICAgIG9wZXJhdG9yOiBkZWZhdWx0T3BlcmF0b3IgPyBkZWZhdWx0T3BlcmF0b3IucWJkZWZhdWx0T3BlcmF0b3Iuc3ltYm9sIDogbnVsbFxyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgICB9KTtcclxuXHJcbiAgICAgICAgICBpZih0aGlzLnN0b3JlZFF1ZXJ5ICYmIHRoaXMuc3RvcmVkUXVlcnk/LmlkID09IHRoaXMuZmlsdGVySWQgJiYgdGhpcy5zdG9yZWRRdWVyeT8uYmFzaWNRdWVyeVZhbHVlICYmIHRoaXMuc3RvcmVkUXVlcnk/LmJhc2ljUXVlcnlWYWx1ZS5ydWxlcy5sZW5ndGggIT0gMCkge1xyXG4gICAgICAgICAgICB0aGlzLmJhc2ljUXVlcnkgPSB0aGlzLnN0b3JlZFF1ZXJ5LmJhc2ljUXVlcnlWYWx1ZTtcclxuICAgICAgICAgIH0gZWxzZSB7XHJcbiAgICAgICAgICAgIHRoaXMuYmFzaWNRdWVyeSA9IHtcclxuICAgICAgICAgICAgICBjb25kaXRpb246ICdhbmQnLFxyXG4gICAgICAgICAgICAgIHJ1bGVzOiBydWxlc1xyXG4gICAgICAgICAgICB9O1xyXG4gICAgICAgICAgfVxyXG4gICAgICAgICAgaWYodGhpcy5zdG9yZWRRdWVyeSAmJiB0aGlzLnN0b3JlZFF1ZXJ5Py5pZCA9PSB0aGlzLmZpbHRlcklkICYmIHRoaXMuc3RvcmVkUXVlcnk/LmFkdmFuY2VkUXVlcnlWYWx1ZSAmJiB0aGlzLnN0b3JlZFF1ZXJ5Py5hZHZhbmNlZFF1ZXJ5VmFsdWUucnVsZXMubGVuZ3RoICE9IDApIHtcclxuICAgICAgICAgICAgdGhpcy5hZHZhbmNlZFF1ZXJ5ID0gdGhpcy5zdG9yZWRRdWVyeS5hZHZhbmNlZFF1ZXJ5VmFsdWU7XHJcbiAgICAgICAgICB9IGVsc2Uge1xyXG4gICAgICAgICAgICB0aGlzLmFkdmFuY2VkUXVlcnkgPSB7XHJcbiAgICAgICAgICAgICAgY29uZGl0aW9uOiAnYW5kJyxcclxuICAgICAgICAgICAgICBydWxlczogW11cclxuICAgICAgICAgICAgfTtcclxuICAgICAgICAgIH1cclxuXHJcbiAgICAgICAgdGhpcy5xdWVyeUNvbmZpZ1JlYWR5ID0gdHJ1ZTtcclxuICAgICAgICB0aGlzLmluaXRRdWVyeUJ1aWxkZXJDb250cm9scygpO1xyXG4gICAgICB9KVxyXG4gIH1cclxuXHJcbiAgZGVmYXVsdFZhbHVlQWRhcHRlcih2YWx1ZTogYW55KSB7XHJcbiAgICBpZih2YWx1ZSA9PSAnUUJGaWx0ZXJPcHRpb25zRW51bU51bGwnKSB7XHJcbiAgICAgIHJldHVybiAwO1xyXG4gICAgfVxyXG5cclxuICAgIGlmKHZhbHVlID09ICdRQkZpbHRlck9wdGlvbnNFbnVtTm90TnVsbCcpIHtcclxuICAgICAgcmV0dXJuIDE7XHJcbiAgICB9XHJcbiAgICBcclxuICAgIGlmKHZhbHVlID09ICcwJykge1xyXG4gICAgICByZXR1cm4gMDtcclxuICAgIH1cclxuXHJcbiAgICBpZih2YWx1ZSA9PSAnMScpIHtcclxuICAgICAgcmV0dXJuIDE7XHJcbiAgICB9XHJcbiAgICBpZih2YWx1ZSA9PSAnRnJvbURhdGVUaW1lTm93Jykge1xyXG4gICAgICByZXR1cm4gbmV3IERhdGUobmV3IERhdGUobmV3IERhdGUoKS5nZXRGdWxsWWVhcigpLCBuZXcgRGF0ZSgpLmdldE1vbnRoKCksIG5ldyBEYXRlKCkuZ2V0RGF0ZSgpLCAwLDAsMCkpO1xyXG4gICAgfVxyXG4gICAgaWYodmFsdWUgPT0gJ1RvRGF0ZVRpbWVOb3cnKSB7XHJcbiAgICAgIHJldHVybiBuZXcgRGF0ZShuZXcgRGF0ZShuZXcgRGF0ZSgpLmdldEZ1bGxZZWFyKCksIG5ldyBEYXRlKCkuZ2V0TW9udGgoKSwgbmV3IERhdGUoKS5nZXREYXRlKCksIDIzLDU5LDU5KSk7XHJcbiAgICB9XHJcbiAgICByZXR1cm4gdmFsdWU7XHJcbiAgfVxyXG5cclxuICBpbml0UXVlcnlCdWlsZGVyKGZpbHRlckVudGl0aWVzOiBRYkZpbHRlckVudGl0eVtdLCBpc0Jhc2ljOiBib29sZWFuKSB7XHJcbiAgICBsZXQgZW50aXR5Q29uZmlnQXV4OiBRdWVyeUJ1aWxkZXJDb25maWcgPSB7IGZpZWxkczoge30gfTtcclxuICAgIGxldCBlbnRpdGllc0FycmF5OiBFbnRpdHlNYXBbXSA9IFtdO1xyXG4gICAgXHJcbiAgICBmaWx0ZXJFbnRpdGllcy5tYXAoKGUsIGluZGV4KSA9PiB7XHJcbiAgICAgIGxldCBlbnRpdHk6IEVudGl0eSA9IHsgbmFtZTogZS5qc29uTmFtZSB9O1xyXG4gICAgICByZXR1cm4gZW50aXRpZXNBcnJheVtpbmRleF0gPSB7IFtlLmpzb25OYW1lXTogZW50aXR5IH07XHJcbiAgICB9KTtcclxuXHJcbiAgICBsZXQgZW50aXRpZXNNYXA6IEVudGl0eU1hcCA9IHt9O1xyXG5cclxuICAgIGZvciAoY29uc3QgZW50aXR5IG9mIGVudGl0aWVzQXJyYXkpIHtcclxuICAgICAgY29uc3Qga2V5cyA9IE9iamVjdC5rZXlzKGVudGl0eSk7XHJcblxyXG4gICAgICBrZXlzLmZvckVhY2goa2V5ID0+IHtcclxuICAgICAgICBpZih0aGlzLnRyYW5zbGF0aW9uc09iamVjdC5lbnRpdGllcykge1xyXG4gICAgICAgICAgbGV0IGVudGl0aWVzVHJhbnNsYXRpb25zS2V5cyA9IE9iamVjdC5rZXlzKHRoaXMudHJhbnNsYXRpb25zT2JqZWN0LmVudGl0aWVzKTtcclxuICAgICAgICAgIGxldCB0cmFuc2xhdGlvbiA9IGVudGl0aWVzVHJhbnNsYXRpb25zS2V5cy5maW5kKHRyYW5zbGF0aW9uS2V5ID0+IHRyYW5zbGF0aW9uS2V5ID09IGtleSk7XHJcbiAgICAgICAgICBpZih0cmFuc2xhdGlvbikge1xyXG4gICAgICAgICAgICBlbnRpdGllc01hcFtrZXldID0geyBuYW1lOiB0aGlzLnRyYW5zbGF0aW9uc09iamVjdC5lbnRpdGllc1trZXldIH1cclxuICAgICAgICAgIH0gZWxzZSB7XHJcbiAgICAgICAgICAgIGVudGl0aWVzTWFwW2tleV0gPSBlbnRpdHlba2V5XVxyXG4gICAgICAgICAgfVxyXG4gICAgICAgIH0gZWxzZSB7XHJcbiAgICAgICAgICBlbnRpdGllc01hcFtrZXldID0gZW50aXR5W2tleV1cclxuICAgICAgICB9XHJcbiAgICAgIH0pO1xyXG5cclxuICAgICAgZW50aXR5Q29uZmlnQXV4LmVudGl0aWVzID0gZW50aXRpZXNNYXA7XHJcbiAgICB9XHJcblxyXG4gICAgbGV0IGZpZWxkczogRmllbGRNYXBbXSA9IFtdO1xyXG4gICAgZmlsdGVyRW50aXRpZXMuZm9yRWFjaCgoZmlsdGVyRW50aXR5KSA9PiB7XHJcbiAgICAgIHJldHVybiBmaWx0ZXJFbnRpdHkuZmllbGRzLmZpbHRlcigoZmlsdGVyRmllbGQ6IEZpbHRlckZpZWxkKSA9PiB7XHJcbiAgICAgICAgbGV0IGluZGV4OiBudW1iZXIgPSBmaWVsZHMubGVuZ3RoID8/IDA7XHJcbiAgICAgICAgbGV0IG9wZXJhdG9yc0ZsYXRBcnJheSA9IGZpbHRlckZpZWxkLm9wZXJhdG9ycy5tYXAoKG86YW55KSA9PiBvLnN5bWJvbCk7XHJcbiAgICAgICAgbGV0IGRlZmF1bHRPcGVyYXRvciA9IHRoaXMuZGVmYXVsdE9wZXJhdG9ycy5maW5kKG9wZXJhdG9yID0+IG9wZXJhdG9yLnFiZmlsdGVyRmllbGRJZCA9PSBmaWx0ZXJGaWVsZC5pZCk7XHJcbiAgICAgICAgbGV0IGZpZWxkOiBGaWVsZCA9IHtcclxuICAgICAgICAgIGlkOiBmaWx0ZXJGaWVsZC5pZCxcclxuICAgICAgICAgIG5hbWU6IGZpbHRlckZpZWxkLm5hbWUsXHJcbiAgICAgICAgICBvcGVyYXRvcnM6IGRlZmF1bHRPcGVyYXRvci5xYmRlZmF1bHRPcGVyYXRvcj8uc3ltYm9sID8gdGhpcy5tb3ZlRWxlbWVudFRvRmlyc3RQbGFjZShvcGVyYXRvcnNGbGF0QXJyYXksIGRlZmF1bHRPcGVyYXRvci5xYmRlZmF1bHRPcGVyYXRvcj8uc3ltYm9sKSA6IG9wZXJhdG9yc0ZsYXRBcnJheSxcclxuICAgICAgICAgIHR5cGU6IHRoaXMuZ2V0RGF0YVR5cGUoZmlsdGVyRmllbGQuZGF0YVR5cGUpLFxyXG4gICAgICAgICAgZGVmYXVsdFZhbHVlOiB0aGlzLmZvcm1hdERlZmF1bHRWYWx1ZSh0aGlzLmRlZmF1bHRWYWx1ZXMuZmluZCh2YWx1ZSA9PiB2YWx1ZS5xYmZpbHRlckZpZWxkSWQgPT0gZmlsdGVyRmllbGQuaWQgJiYgdmFsdWUuYmFzaWMgPT0gaXNCYXNpYyk/LmRlZmF1bHRWYWx1ZSwgZmlsdGVyRmllbGQuZGF0YVR5cGUpLFxyXG4gICAgICAgICAgZGVmYXVsdE9wZXJhdG9yOiBkZWZhdWx0T3BlcmF0b3IucWJkZWZhdWx0T3BlcmF0b3I/LnN5bWJvbCxcclxuICAgICAgICAgIGVudGl0eTogZmlsdGVyRW50aXR5Lmpzb25OYW1lLFxyXG4gICAgICAgICAgb3B0aW9uczogZmlsdGVyRmllbGQubGlzdE9mVmFsdWVzLFxyXG4gICAgICAgICAgdmFsaWRhdG9yOiAocnVsZTogUnVsZSwgcGFyZW50OiBSdWxlU2V0KTogYW55IHwgbnVsbCA9PiB7XHJcbiAgICAgICAgICAgIGlmIChydWxlLm9wZXJhdG9yICE9PSBcImlzIG51bGxcIiAmJiBydWxlLm9wZXJhdG9yICE9PSBcImlzIG5vdCBudWxsXCIpIHtcclxuICAgICAgICAgICAgICBpZiAocnVsZS52YWx1ZSA9PT0gdW5kZWZpbmVkIHx8IHJ1bGUudmFsdWUgPT09IG51bGwgfHwgcnVsZS52YWx1ZSA9PT0gJycgfHwgcnVsZS52YWx1ZS5sZW5ndGggPT0gMCkge1xyXG4gICAgICAgICAgICAgICAgcmV0dXJuIHsgcmVxdWlyZWQ6ICdlbXB0eSBmaWVsZCcgfTtcclxuICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgcmV0dXJuIG51bGw7XHJcbiAgICAgICAgICB9XHJcbiAgICAgICAgfVxyXG4gICAgICAgIHRoaXMuZW50aXRpZXMucHVzaCh7ZmllbGRKc29uTmFtZTogZmlsdGVyRmllbGQuanNvbk5hbWUsIGVudGl0eTogZmllbGQuZW50aXR5fSk7XHJcbiAgICAgICAgZmllbGRzW2luZGV4XSA9IHsgW2ZpbHRlckZpZWxkLmpzb25OYW1lXTogZmllbGQgfTtcclxuICAgICAgfSk7XHJcbiAgICB9KTtcclxuXHJcbiAgICBsZXQgZmllbGRzTWFwOiBGaWVsZE1hcCA9IHt9O1xyXG5cclxuICAgIGZvciAoY29uc3QgZmllbGQgb2YgZmllbGRzKSB7XHJcbiAgICAgIGNvbnN0IGtleXMgPSBPYmplY3Qua2V5cyhmaWVsZCk7XHJcbiAgICAgIGtleXMuZm9yRWFjaChrZXkgPT4ge1xyXG4gICAgICAgIGZpZWxkc01hcFtrZXldID0gZmllbGRba2V5XTtcclxuICAgICAgfSk7XHJcblxyXG4gICAgICBlbnRpdHlDb25maWdBdXguZmllbGRzID0gZmllbGRzTWFwO1xyXG4gICAgfVxyXG4gICAgcmV0dXJuIGVudGl0eUNvbmZpZ0F1eDtcclxuICB9XHJcblxyXG4gIGZpbHRlckZpZWxkc0J5SWQoZmllbGRzT2JqOiBhbnksIGlkQXJyYXk6IG51bWJlcltdKTogYW55IHtcclxuICAgIGNvbnN0IGZpbHRlcmVkRmllbGRzOiBhbnkgPSB7fTtcclxuICAgIFxyXG4gICAgZm9yIChjb25zdCBrZXkgaW4gZmllbGRzT2JqLmZpZWxkcykge1xyXG4gICAgICBjb25zdCBmaWVsZCA9IGZpZWxkc09iai5maWVsZHNba2V5XTtcclxuICAgICAgaWYgKGlkQXJyYXkuaW5jbHVkZXMoZmllbGQuaWQpKSB7XHJcbiAgICAgICAgZmlsdGVyZWRGaWVsZHNba2V5XSA9IGZpZWxkO1xyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgICBcclxuICAgIHJldHVybiB7XHJcbiAgICAgIC4uLmZpZWxkc09iaixcclxuICAgICAgZmllbGRzOiBmaWx0ZXJlZEZpZWxkcyxcclxuICAgIH07XHJcbiAgfVxyXG5cclxuICB0cmFuc2xhdGVGaWVsZHMoZmllbGRzOiBGaWVsZE1hcCkge1xyXG4gICAgZm9yIChjb25zdCBrZXkgaW4gZmllbGRzKSB7XHJcbiAgICAgIGlmIChmaWVsZHMuaGFzT3duUHJvcGVydHkoa2V5KSkge1xyXG4gICAgICAgIGZpZWxkc1trZXldLmZpZWxkID0ga2V5O1xyXG4gICAgICAgIGZpZWxkc1trZXldLm5hbWUgPSB0aGlzLnRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNba2V5XTtcclxuICAgICAgfVxyXG4gICAgfVxyXG4gICAgcmV0dXJuIGZpZWxkcztcclxuICB9XHJcblxyXG4gIG1vdmVFbGVtZW50VG9GaXJzdFBsYWNlKGFycmF5OiBhbnlbXSwgZWxlbWVudFRvRmlyc3RQbGFjZTogc3RyaW5nKSB7XHJcbiAgICBjb25zdCBpbmRleCA9IGFycmF5LmluZGV4T2YoZWxlbWVudFRvRmlyc3RQbGFjZSk7XHJcbiAgICBpZiAoaW5kZXggIT09IC0xKSB7XHJcbiAgICAgIGFycmF5LnNwbGljZShpbmRleCwgMSk7XHJcbiAgICAgIGFycmF5LnVuc2hpZnQoZWxlbWVudFRvRmlyc3RQbGFjZSk7IFxyXG4gICAgfVxyXG4gICAgcmV0dXJuIGFycmF5O1xyXG4gIH1cclxuXHJcbiAgZm9ybWF0RGVmYXVsdFZhbHVlKHZhbHVlOiBhbnksIHR5cGU6IFFCRGF0YVR5cGVFbnVtKSB7XHJcbiAgICBpZih2YWx1ZSkge1xyXG4gICAgICBpZih0eXBlID09IFFCRGF0YVR5cGVFbnVtLkJvb2xlYW4pIHtcclxuICAgICAgICByZXR1cm4gdmFsdWUudG9Mb3dlckNhc2UoKSA9PT0gJ3RydWUnO1xyXG4gICAgICB9XHJcbiAgICAgIGlmKHR5cGUgPT0gdGhpcy5xYkRhdGFUeXBlRW51bS5OdW1iZXIgfHwgdHlwZSA9PSB0aGlzLnFiRGF0YVR5cGVFbnVtLkRlY2ltYWwgfHwgdHlwZSA9PSB0aGlzLnFiRGF0YVR5cGVFbnVtLkxpc3Qpe1xyXG4gICAgICAgIHJldHVybiBOdW1iZXIodmFsdWUpO1xyXG4gICAgICB9XHJcbiAgICAgIGlmKHR5cGUgPT0gdGhpcy5xYkRhdGFUeXBlRW51bS5OdWxsYWJsZVNlbGVjdCkge1xyXG4gICAgICAgIHJldHVybiAxO1xyXG4gICAgICB9XHJcbiAgICAgIGlmKHR5cGUgPT0gdGhpcy5xYkRhdGFUeXBlRW51bS5Cb29sZWFuU2VsZWN0KSB7XHJcbiAgICAgICAgcmV0dXJuIDE7XHJcbiAgICAgIH1cclxuICAgIH0gXHJcbiAgICByZXR1cm4gdmFsdWU7XHJcbiAgfVxyXG5cclxuICBnZXREYXRhVHlwZShpZDogbnVtYmVyKSB7XHJcbiAgICByZXR1cm4gdGhpcy5xYkRhdGFFbnVtcy5maW5kKHZhbHVlID0+IHZhbHVlID09PSBpZCk/LnRvU3RyaW5nKCkgPz8gXCJcIjtcclxuICB9XHJcblxyXG4gIGRlbGV0ZUZpZWxkc1dpdGhvdXRWYWx1ZShqc29uOiBhbnkpIHtcclxuICAgIGlmIChqc29uLmJhc2ljICYmIGpzb24uYmFzaWMucnVsZXMpIHtcclxuICAgICAganNvbi5iYXNpYy5ydWxlcyA9IGpzb24uYmFzaWMucnVsZXMuZmlsdGVyKChydWxlOiBhbnkpID0+IHJ1bGUudmFsdWUgIT0gbnVsbCk7XHJcbiAgICAgIGpzb24uYmFzaWMucnVsZXMgPSBqc29uLmJhc2ljLnJ1bGVzLmZpbHRlcigocnVsZTogYW55KSA9PiBydWxlLnZhbHVlICE9IHVuZGVmaW5lZCk7XHJcbiAgICAgIGpzb24uYmFzaWMucnVsZXMgPSBqc29uLmJhc2ljLnJ1bGVzLmZpbHRlcigocnVsZTogYW55KSA9PiBydWxlLnZhbHVlICE9PSBcIlwiKTtcclxuICAgICAganNvbi5iYXNpYy5ydWxlcyA9IGpzb24uYmFzaWMucnVsZXMuZmlsdGVyKChydWxlOiBhbnkpID0+IHsgcmV0dXJuICEocnVsZS5vcGVyYXRvciA9PT0gXCJudWxsYWJsZVwiICYmIHJ1bGUudmFsdWUgPT09IFwibnVsbFwiKTsgfSk7XHJcbiAgICB9XHJcbiAgICBpZihqc29uLmFkdmFuY2VkICYmIGpzb24uYWR2YW5jZWQucnVsZXM/Lmxlbmd0aCAhPSAwKSB7XHJcbiAgICAgIGpzb24uYWR2YW5jZWQucnVsZXMgPSBqc29uLmFkdmFuY2VkLnJ1bGVzLmZpbHRlcigocnVsZTogYW55KSA9PiBydWxlLnJ1bGVzPy5sZW5ndGggIT0gMCk7XHJcbiAgICB9XHJcbiAgICBpZihqc29uLmdyb3VwZWQgJiYganNvbi5ncm91cGVkPy5ydWxlcy5sZW5ndGggIT0gMCkge1xyXG4gICAgICBqc29uLmdyb3VwZWQucnVsZXMgPSBqc29uLmdyb3VwZWQucnVsZXMuZmlsdGVyKChydWxlOiBhbnkpID0+IHJ1bGUucnVsZXM/Lmxlbmd0aCAhPSAwKTtcclxuICAgIH1cclxuICAgIGlmKGpzb24uZ3JvdXBlZCAmJiBqc29uLmdyb3VwZWQ/LnJ1bGVzLmxlbmd0aCA9PSAwKSB7XHJcbiAgICAgIGpzb24uZ3JvdXBlZCA9IG51bGw7XHJcbiAgICB9XHJcbiAgICByZXR1cm4ganNvbjtcclxuICB9XHJcbiAgXHJcbiAgaW5pdGlhbGl6ZU9wZXJhdG9ycyhqc29uOiBhbnkpIHtcclxuICAgIGlmIChqc29uLmJhc2ljICYmIGpzb24uYmFzaWMucnVsZXMpIHtcclxuICAgICAganNvbi5iYXNpYy5ydWxlcy5mb3JFYWNoKChydWxlOmFueSkgPT4ge1xyXG4gICAgICAgIGlmKCFydWxlLm9wZXJhdG9yKSB7XHJcbiAgICAgICAgICBydWxlLm9wZXJhdG9yID0gXCI9XCI7XHJcbiAgICAgICAgfVxyXG4gICAgICB9KTtcclxuICAgIH1cclxuICAgIHJldHVybiBqc29uO1xyXG4gIH1cclxuXHJcbiAgcmVzZXRCYXNpY1F1ZXJ5VmFsdWVzKCkge1xyXG4gICAgdGhpcy5iYXNpY1F1ZXJ5LnJ1bGVzLmZvckVhY2goKHJ1bGU6IFJ1bGUpID0+IHtcclxuICAgICAgaWYocnVsZS52YWx1ZSB8fCBydWxlLnZhbHVlID09IDApe1xyXG4gICAgICAgIHJ1bGUudmFsdWUgPSBudWxsXHJcbiAgICAgIH1cclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgZ2V0UXVlcnlGaWVsZE5hbWUoZmllbGROYW1lOiBzdHJpbmcsIGZpZWxkczogRmllbGRNYXApIHtcclxuICAgIGNvbnN0IGZpZWxkRW50cnkgPSBPYmplY3Qua2V5cyhmaWVsZHMpLmZpbmQoa2V5ID0+IGZpZWxkc1trZXldLmZpZWxkID09PSBmaWVsZE5hbWUpO1xyXG5cclxuICAgIHJldHVybiBmaWVsZEVudHJ5ICYmIGZpZWxkc1tmaWVsZEVudHJ5XS5uYW1lID8gZmllbGRzW2ZpZWxkRW50cnldLm5hbWUgOiBmaWVsZE5hbWU7XHJcbiAgfVxyXG5cclxuICBnZXROdWxsYWJsZVNlbGVjdE9wdGlvbnMob3B0aW9uczogTnVsbGFibGVTZWxlY3RPcHRpb25bXSkge1xyXG4gICAgcmV0dXJuIG9wdGlvbnMubWFwKChvcHRpb246IE51bGxhYmxlU2VsZWN0T3B0aW9uKSA9PiB7XHJcbiAgICAgIHJldHVybiB7XHJcbiAgICAgICAgbmFtZTogb3B0aW9uLnZhbHVlID09PSAxID8gXHJcbiAgICAgICAgICB0aGlzLnRyYW5zbGF0aW9uc09iamVjdC5udWxsYWJsZVNlbGVjdE9wdGlvbnMhW29wdGlvbi5uYW1lXS5pc05vdE51bGxPcHRpb24gOlxyXG4gICAgICAgICAgdGhpcy50cmFuc2xhdGlvbnNPYmplY3QubnVsbGFibGVTZWxlY3RPcHRpb25zIVtvcHRpb24ubmFtZV0uaXNOdWxsT3B0aW9uLFxyXG4gICAgICAgIHZhbHVlOiBvcHRpb24udmFsdWUsXHJcbiAgICAgIH1cclxuICAgIH0pXHJcbiAgfVxyXG4gIFxyXG4gIGdldEJvb2xlYW5TZWxlY3RPcHRpb25zKG9wdGlvbnM6IEJvb2xlYW5TZWxlY3RPcHRpb25bXSkge1xyXG4gICAgcmV0dXJuIG9wdGlvbnMubWFwKChvcHRpb246IEJvb2xlYW5TZWxlY3RPcHRpb24pID0+IHtcclxuICAgICAgcmV0dXJuIHtcclxuICAgICAgICBuYW1lOiBvcHRpb24udmFsdWUgPT09IDEgPyBcclxuICAgICAgICAgIHRoaXMudHJhbnNsYXRpb25zT2JqZWN0LmJvb2xlYW5TZWxlY3RPcHRpb25zIVtvcHRpb24ubmFtZV0uaXNOb3ROdWxsT3B0aW9uIDpcclxuICAgICAgICAgIHRoaXMudHJhbnNsYXRpb25zT2JqZWN0LmJvb2xlYW5TZWxlY3RPcHRpb25zIVtvcHRpb24ubmFtZV0uaXNOdWxsT3B0aW9uLFxyXG4gICAgICAgIHZhbHVlOiBvcHRpb24udmFsdWUsXHJcbiAgICAgIH1cclxuICAgIH0pXHJcbiAgfVxyXG5cclxuICBnZXRUcmFuc2xhdGVkU2VsZWN0T3B0aW9ucyhvcHRpb25zOiBUcmFuc2xhdGVkU2VsZWN0T3B0aW9uW10pIHtcclxuICAgIHJldHVybiBvcHRpb25zLm1hcCgob3B0aW9uOiBUcmFuc2xhdGVkU2VsZWN0T3B0aW9uKSA9PiB7XHJcbiAgICAgIHJldHVybiB7XHJcbiAgICAgICAgbmFtZTogdGhpcy50cmFuc2xhdGlvbnNPYmplY3QudHJhbnNsYXRlZFNlbGVjdE9wdGlvbnMhW29wdGlvbi5uYW1lLmNoYXJBdCgwKS50b0xvd2VyQ2FzZSgpICsgb3B0aW9uLm5hbWUuc2xpY2UoMSldLFxyXG4gICAgICAgIHZhbHVlOiBvcHRpb24udmFsdWVcclxuICAgICAgfVxyXG4gICAgfSlcclxuICB9XHJcblxyXG4gIGZpZWxkSXNCb29sZWFuKGZpZWxkTmFtZTogc3RyaW5nLCBmaWVsZHM6IEZpZWxkTWFwKSB7XHJcbiAgICBjb25zdCBmaWVsZEVudHJ5ID0gT2JqZWN0LmtleXMoZmllbGRzKS5maW5kKGtleSA9PiBmaWVsZHNba2V5XS5maWVsZCA9PT0gZmllbGROYW1lKTtcclxuXHJcbiAgICByZXR1cm4gZmllbGRzW2ZpZWxkRW50cnkhXS50eXBlID09IFFCRGF0YVR5cGVFbnVtLkJvb2xlYW4udG9TdHJpbmcoKSA/IHRydWUgOiBmYWxzZTtcclxuICB9XHJcblxyXG4gIGlzTXVsdGlzZWxlY3QocnVsZTogUnVsZSkge1xyXG4gICAgaWYocnVsZS5vcGVyYXRvciA9PSAnaW4nIHx8IHJ1bGUub3BlcmF0b3IgPT0gJ25vdCBpbicgfHwgcnVsZS5vcGVyYXRvciA9PSAnaXMgbnVsbCcgfHwgcnVsZS5vcGVyYXRvciA9PSAnaXMgbm90IG51bGwnKSB7XHJcbiAgICAgIGlmKHJ1bGUudmFsdWUpIHtcclxuICAgICAgICBpZighQXJyYXkuaXNBcnJheShydWxlLnZhbHVlKSkge1xyXG4gICAgICAgICAgcnVsZS52YWx1ZSA9IG51bGw7XHJcbiAgICAgICAgfVxyXG4gICAgICB9XHJcbiAgICAgIHJldHVybiB0cnVlO1xyXG4gICAgfSBlbHNlIHtcclxuICAgICAgaWYocnVsZS52YWx1ZSkge1xyXG4gICAgICAgIGlmKEFycmF5LmlzQXJyYXkocnVsZS52YWx1ZSkpXHJcbiAgICAgICAgcnVsZS52YWx1ZSA9IG51bGw7XHJcbiAgICAgIH1cclxuICAgICAgcmV0dXJuIGZhbHNlO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgaXNUb0tlZXBMb2NhbERhdGUoZmllbGQ6IHN0cmluZyl7XHJcbiAgICByZXR1cm4gdGhpcy5maWVsZHNUb0tlZXBMb2NhbERhdGUubGVuZ3RoID09IDAgPyBmYWxzZSA6IHRoaXMuZmllbGRzVG9LZWVwTG9jYWxEYXRlLmluY2x1ZGVzKGZpZWxkKVxyXG4gIH1cclxufVxyXG4iLCI8IS0tIFRPRE86IEludGVudGFyIG90cmEgdmV6IHBhc2FyIGxvcyBjb21wb25lbnRlcyBhIGxvcyBkZSB3LSBwb3JxdWUgbm8gc2UgYWxpbmVuYSB5IGVsIHctZWRpdC1zZWxlY3Qgbm8gdmEgYmllbiBlbiBmaWVsZC4gXHJcbiAgQWhvcmEgc2UgY29uc2VydmFuIGxvcyBkZSBwLXcgY29uIGVzdGlsb3MuIC0tPlxyXG48cC1ibG9ja1VJIHN0eWxlQ2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1ibG9ja3VpXCIgW2F1dG9aSW5kZXhdPVwiZmFsc2VcIiBbdGFyZ2V0XT1cImZpbHRlclBhbmVsXCIgW2Jsb2NrZWRdPVwiZGF0YUlzTG9hZGluZ1NlYXJjaEJ1dHRvblwiPjwvcC1ibG9ja1VJPlxyXG5cclxuPHAtY2FyZCBzdHlsZUNsYXNzPVwidy1maWx0ZXItcGFuZWwtbm8tc3R5bGUtY2FyZFwiICNmaWx0ZXJQYW5lbD5cclxuICA8ZGl2ICpuZ0lmPVwicXVlcnlDb25maWdSZWFkeVwiIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtc3R5bGVzXCI+XHJcbiAgICA8ZGl2ICpuZ0lmPVwiIWZpbHRlclBhbmVsT2JqZWN0LmFsbG93QWR2YW5jZWRTZWFyY2g7IGVsc2UgYmFpc2NBbmRBZHZhbmNlZFwiPlxyXG4gICAgICA8ZGl2IFtuZ0NsYXNzXT1cInsgJ3ctZmlsdGVyLXBhbmVsLWNvbnRhaW5lci1hZHZhbmNlZCcgOiBpc0FkdmFuY2VkU2VhcmNoLCAndy1maWx0ZXItcGFuZWwtY29udGFpbmVyLWJhc2ljJyA6ICFpc0FkdmFuY2VkU2VhcmNoIH1cIj5cclxuICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiYmFzaWNcIj48L25nLWNvbnRhaW5lcj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYnV0dG9uc1wiPlxyXG4gICAgICAgICAgPHctYnV0dG9uIGljb249XCJ3LWljb24gY2xvc2VDaXJjbGVcIiBidXR0b25DbGFzcz1cImNhbmNlbC1maWx0ZXItYnV0dG9uXCIgW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5jbGVhckJ1dHRvbkxhYmVsXCIgdHlwZT1cInRlcnRpYXJ5XCIgc2l6ZT1cInNtYWxsXCIgKG9uQ2xpY2spPVwib25DbGVhckNsaWNrZWQoKVwiPjwvdy1idXR0b24+XHJcbiAgICAgICAgICA8dy1idXR0b24gaWNvbj1cInBpIHBpLWZpbHRlci1maWxsXCIgYnV0dG9uQ2xhc3M9XCJzZXQtZmlsdGVyLWJ1dHRvblwiIFtsYWJlbF09XCJ0cmFuc2xhdGlvbnNPYmplY3Quc2VhcmNoQnV0dG9uTGFiZWxcIiBzaXplPVwic21hbGxcIiAob25DbGljayk9XCJvblNlYXJjaENsaWNrZWQoKVwiPjwvdy1idXR0b24+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcblxyXG4gICAgPG5nLXRlbXBsYXRlICNiYWlzY0FuZEFkdmFuY2VkPlxyXG4gICAgICA8ZGl2IFtuZ0NsYXNzXT1cInsgJ3ctZmlsdGVyLXBhbmVsLWNvbnRhaW5lci1hZHZhbmNlZCcgOiBpc0FkdmFuY2VkU2VhcmNoLCAndy1maWx0ZXItcGFuZWwtY29udGFpbmVyLWJhc2ljJyA6ICFpc0FkdmFuY2VkU2VhcmNoIH1cIj5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCIhaXNBZHZhbmNlZFNlYXJjaDsgZWxzZSBhZHZhbmNlZFZpZXdcIj5cclxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImJhc2ljXCI+PC9uZy1jb250YWluZXI+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjYWR2YW5jZWRWaWV3PlxyXG4gICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiYWR2YW5jZWRcIj48L25nLWNvbnRhaW5lcj5cclxuICAgICAgICAgIDwvbmctdGVtcGxhdGU+XHJcblxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWJ1dHRvbnNcIiBbY2xhc3MucHQtM109XCJpc0FkdmFuY2VkU2VhcmNoXCI+XHJcbiAgICAgICAgICAgIDx3LWJ1dHRvbiBidXR0b25DbGFzcz1cImNhbmNlbC1maWx0ZXItYnV0dG9uXCIgW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5jbGVhckJ1dHRvbkxhYmVsXCIgaWNvbj1cInctaWNvbiBjbG9zZUNpcmNsZVwiIHR5cGU9XCJ0ZXJ0aWFyeVwiIHNpemU9XCJzbWFsbFwiIChvbkNsaWNrKT1cIm9uQ2xlYXJDbGlja2VkKClcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgICA8dy1idXR0b24gYnV0dG9uQ2xhc3M9XCJzZXQtZmlsdGVyLWJ1dHRvblwiIFtsYWJlbF09XCJ0cmFuc2xhdGlvbnNPYmplY3Quc2VhcmNoQnV0dG9uTGFiZWxcIiBpY29uPVwicGkgcGktZmlsdGVyLWZpbGxcIiBzaXplPVwic21hbGxcIiAob25DbGljayk9XCJvblNlYXJjaENsaWNrZWQoKVwiIFtsb2FkaW5nXT1cImRhdGFJc0xvYWRpbmdTZWFyY2hCdXR0b25cIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9uZy10ZW1wbGF0ZT5cclxuICA8L2Rpdj5cclxuPC9wLWNhcmQ+XHJcblxyXG4gIDxuZy10ZW1wbGF0ZSAjYmFzaWM+XHJcbiAgICA8ZGl2ICpuZ0lmPVwiZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dBZHZhbmNlZFNlYXJjaFwiIGNsYXNzPVwiZmxleCBqdXN0aWZ5LWNvbnRlbnQtZW5kIGZsZXgtd3JhcFwiPlxyXG4gICAgICA8dy1idXR0b24gYnV0dG9uQ2xhc3M9XCJjaGFuZ2UtZmlsdGVyLWJ1dHRvblwiIGljb249XCJwaSBwaS1zeW5jXCIgW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5hZHZhbmNlZFNlYXJjaFRhYkxhYmVsXCIgdHlwZT1cInRleHRcIiAob25DbGljayk9XCJ1cGRhdGVTZWFyY2hUeXBlKClcIj48L3ctYnV0dG9uPlxyXG4gICAgPC9kaXY+XHJcbiAgICA8ZGl2ICpuZ0lmPVwiYmFzaWNRdWVyeS5ydWxlcy5sZW5ndGggPiAwXCIgY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1iYXNpYyBxdWVyeS1idWlsZGVyLXN0eWxlIGZhZGVpbiBhbmltYXRpb24tZHVyYXRpb24tNTAwXCI+XHJcbiAgICAgIDxxdWVyeS1idWlsZGVyICNiYXNpY1F1ZXJ5QnVpbGRlck9iamVjdCBbZm9ybUNvbnRyb2xdPSdxdWVyeUN0cmwnIFtjb25maWddPSdiYXNpY1F1ZXJ5Q29uZmlnJyBbYWxsb3dSdWxlc2V0XT0nZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dSdWxlU2V0JyBbYWxsb3dSdWxlc2V0XT1cImZpbHRlclBhbmVsT2JqZWN0LmFsbG93UnVsZVNldFwiIFtwZXJzaXN0VmFsdWVPbkZpZWxkQ2hhbmdlXT0ncGVyc2lzdFZhbHVlT25GaWVsZENoYW5nZSc+XHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlCdXR0b25Hcm91cD1cImxldCBydWxlc2V0O1wiPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeVJlbW92ZUJ1dHRvbj1cImxldCBydWxlOyBsZXQgcmVtb3ZlUnVsZT1yZW1vdmVSdWxlXCI+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5U3dpdGNoR3JvdXA9XCJsZXQgcnVsZXNldDsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5RW50aXR5PVwibGV0IHJ1bGU7IGxldCBlbnRpdGllcz1lbnRpdGllczsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICA8cC1kcm9wZG93biBbZGlzYWJsZWRdPVwidHJ1ZVwiIGNsYXNzPVwiIHctZWRpdC1zZWxlY3Qtc21hbGxcIiAqbmdJZj1cImZhbHNlXCIgYXBwZW5kVG89XCJib2R5XCIgW29wdGlvbnNdPVwiZW50aXRpZXNcIiBbKG5nTW9kZWwpXT1cInJ1bGUuZW50aXR5XCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgb3B0aW9uVmFsdWU9XCJ2YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKCRldmVudCwgcnVsZSlcIj48L3AtZHJvcGRvd24+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5RmllbGQ9XCJsZXQgcnVsZTsgbGV0IGZpZWxkcz1maWVsZHM7IGxldCBvbkNoYW5nZT1vbkNoYW5nZTsgbGV0IGdldEZpZWxkcyA9IGdldEZpZWxkczsgbGV0IHZhbHVlPXZhbHVlOyBsZXQgbmFtZT1uYW1lOyBsZXQgaW5kZXg9aW5kZXhcIj5cclxuICAgICAgICAgICAgICA8c3BhbiBhcHBlbmRUbz1cImJvZHlcIiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWlucHV0LXRleHQtbGFiZWxcIiBbY2xhc3Mudy1maWx0ZXItcGFuZWwtYm9vbGVhbi1sYWJlbC13aWR0aF09XCJmaWVsZElzQm9vbGVhbihydWxlLmZpZWxkLCBnZXRGaWVsZHMocnVsZS5lbnRpdHkpKVwiIG9wdGlvbkxhYmVsPVwibmFtZVwiIG9wdGlvblZhbHVlPVwidmFsdWVcIj57eyBnZXRRdWVyeUZpZWxkTmFtZShydWxlLmZpZWxkLCBnZXRGaWVsZHMocnVsZS5lbnRpdHkpKX19PC9zcGFuPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeU9wZXJhdG9yPVwibGV0IHJ1bGU7IGxldCBvcGVyYXRvcnM9b3BlcmF0b3JzOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJxdWVyeS1idWlsZGVyLW9wZXJhdG9yLXdpZHRoXCI+XHJcbiAgICAgICAgICAgICAgPHAtZHJvcGRvd24gY2xhc3M9XCIgdy1lZGl0LXNlbGVjdC1zbWFsbFwiICpuZ0lmPVwiaXNBZHZhbmNlZFNlYXJjaFwiIGFwcGVuZFRvPVwiYm9keVwiIFsobmdNb2RlbCldPVwicnVsZS5vcGVyYXRvclwiIFtvcHRpb25zXT1cIm9wZXJhdG9yc1wiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKHJ1bGUpXCI+PC9wLWRyb3Bkb3duPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgdHlwZTogcWJEYXRhVHlwZUVudW0uQm9vbGVhbi50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwicXVlcnktYnVpbGRlci1vcGVyYXRvci13aWR0aFwiPlxyXG4gICAgICAgICAgICA8dy10b2dnbGUtYnV0dG9uIHNpemU9XCJzbWFsbFwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIG9uTGFiZWw9XCJUcnVlXCIgb2ZmTGFiZWw9XCJGYWxzZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIj48L3ctdG9nZ2xlLWJ1dHRvbj5cclxuICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5EYXRldGltZS50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1iYXNpYy1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoXCI+XHJcbiAgICAgICAgICAgICAgPHctZWRpdC1jYWxlbmRhciBhcHBlbmRUbz1cImJvZHlcIiBzaXplPVwic21hbGxcIiBbc2hvd0ljb25dPVwiZmFsc2VcIiBbZGF0YVR5cGVdPVwiaXNUb0tlZXBMb2NhbERhdGUocnVsZS5maWVsZCkgPyAnZGF0ZScgOiAnc3RyaW5nJ1wiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChvbkNoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW3Nob3dUaW1lXT1cInRydWVcIiBbc2hvd1NlY29uZHNdPVwidHJ1ZVwiIFtmaXJzdERheU9mV2Vla109XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmlyc3REYXlPZldlZWsgPz8gMVwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLmRhdGV0aW1lXCIgW3Nob3dMYWJlbF09XCJmYWxzZVwiPjwvdy1lZGl0LWNhbGVuZGFyPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IGZpZWxkPWZpZWxkOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5EZWNpbWFsLnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWJhc2ljLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGhcIj5cclxuICAgICAgICAgICAgICA8cC1pbnB1dE51bWJlciBpbnB1dFN0eWxlQ2xhc3M9XCJmbGV4IGZsZXgtMVwiIHN0eWxlQ2xhc3M9XCJmbGV4IGZsZXgtMVwiIGNsYXNzPVwidy1lZGl0LWlucHV0LW51bWJlci1zbWFsbFwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIGlucHV0SWQ9XCJtaW5tYXhcIiBpbnB1dElkPVwibWlubWF4XCIgbW9kZT1cImRlY2ltYWxcIiBbbWluRnJhY3Rpb25EaWdpdHNdPVwiMlwiIFttYXhGcmFjdGlvbkRpZ2l0c109XCI1XCIgW21pbl09XCIwXCIgW21heF09XCIxMDBcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMuZGVjaW1hbFwiPiA8L3AtaW5wdXROdW1iZXI+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgb3B0aW9ucz1vcHRpb25zOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5MaXN0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWJhc2ljLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGhcIj5cclxuICAgICAgICAgICAgICA8cC1kcm9wZG93biBjbGFzcz1cInctZWRpdC1zZWxlY3Qtc21hbGxcIiBhcHBlbmRUbz1cImJvZHlcIiBbb3B0aW9uc109XCJvcHRpb25zXCIgW2ZpbHRlcl09XCJ0cnVlXCIgW3Nob3dDbGVhcl09XCJ0cnVlXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIG9wdGlvbkxhYmVsPVwibmFtZVwiIG9wdGlvblZhbHVlPVwidmFsdWVcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5saXN0XCI+PC9wLWRyb3Bkb3duPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IGZpZWxkPWZpZWxkOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5OdW1iZXIudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWJhc2ljLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGhcIj5cclxuICAgICAgICAgICAgPHAtaW5wdXROdW1iZXIgW3VzZUdyb3VwaW5nXT1cImZhbHNlXCIgaW5wdXRTdHlsZUNsYXNzPVwiZmxleCBmbGV4LTFcIiBzdHlsZUNsYXNzPVwiZmxleCBmbGV4LTFcIiBjbGFzcz1cInctZWRpdC1pbnB1dC1udW1iZXItc21hbGxcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiBpbnB1dElkPVwibWlubWF4XCIgaW5wdXRJZD1cIm1pbm1heFwiIFttaW5dPVwiMFwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5udW1iZXJcIj4gPC9wLWlucHV0TnVtYmVyPlxyXG4gICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBmaWVsZD1maWVsZDsgdHlwZTogcWJEYXRhVHlwZUVudW0uVGV4dC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYmFzaWMtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aFwiPlxyXG4gICAgICAgICAgICA8dy1lZGl0LWlucHV0LXRleHQgY2xhc3M9XCJ3LWVkaXQtaW5wdXQtdGV4dC1zbWFsbC1oZWlnaHRcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMudGV4dFwiIFtzaG93TGFiZWxdPVwiZmFsc2VcIj48L3ctZWRpdC1pbnB1dC10ZXh0PlxyXG4gICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBvcHRpb25zPW9wdGlvbnM7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLk11bHRpc2VsZWN0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWJhc2ljLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGhcIj5cclxuICAgICAgICAgICAgICA8cC1tdWx0aVNlbGVjdCBjbGFzcz1cInctZWRpdC1tdWx0aXNlbGVjdC1zbWFsbFwiIFthcHBlbmRUb109XCInYm9keSdcIiBbb3B0aW9uc109XCJvcHRpb25zXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIG9wdGlvbkxhYmVsPVwibmFtZVwiIG9wdGlvblZhbHVlPVwidmFsdWVcIiBkaXNwbGF5PVwiY2hpcFwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLmxpc3RcIj48L3AtbXVsdGlTZWxlY3Q+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgb3B0aW9ucz1vcHRpb25zOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5OdWxsYWJsZVNlbGVjdC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYmFzaWMtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aFwiPlxyXG4gICAgICAgICAgICA8cC1kcm9wZG93biBjbGFzcz1cInctZWRpdC1zZWxlY3Qtc21hbGxcIiBhcHBlbmRUbz1cImJvZHlcIiBbb3B0aW9uc109XCJnZXROdWxsYWJsZVNlbGVjdE9wdGlvbnMob3B0aW9ucylcIiBbZmlsdGVyXT1cInRydWVcIiBbc2hvd0NsZWFyXT1cInRydWVcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgb3B0aW9uVmFsdWU9XCJ2YWx1ZVwiIFxyXG4gICAgICAgICAgICAgICAgICAgICAgICBbcGxhY2Vob2xkZXJdPVwibnVsbGFibGVTZWxlY3RQbGFjZWhvbGRlcihydWxlLCBvcHRpb25zKVwiPlxyXG4gICAgICAgICAgICA8L3AtZHJvcGRvd24+XHJcbiAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IG9wdGlvbnM9b3B0aW9uczsgdHlwZTogcWJEYXRhVHlwZUVudW0uQm9vbGVhblNlbGVjdC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYmFzaWMtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aFwiPlxyXG4gICAgICAgICAgICA8cC1kcm9wZG93biBjbGFzcz1cInctZWRpdC1zZWxlY3Qtc21hbGxcIiBhcHBlbmRUbz1cImJvZHlcIiBbb3B0aW9uc109XCJnZXRCb29sZWFuU2VsZWN0T3B0aW9ucyhvcHRpb25zKVwiIFtmaWx0ZXJdPVwidHJ1ZVwiIFtzaG93Q2xlYXJdPVwidHJ1ZVwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBvcHRpb25MYWJlbD1cIm5hbWVcIiBvcHRpb25WYWx1ZT1cInZhbHVlXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMubGlzdFwiPjwvcC1kcm9wZG93bj5cclxuICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgb3B0aW9ucz1vcHRpb25zOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5BZGRyZXNzLnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgPHctYWRkcmVzcy1maWVsZCBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW29wZXJhdG9yXT1cInJ1bGUub3BlcmF0b3JcIiBbc2VnbWVudGF0aW9uQXBpVXJsXT1cInNlZ21lbnRhdGlvbkFwaVVybFwiIFtzZWdtZW50YXRpb25BcGlUb2tlbl09XCJzZWdtZW50YXRpb25Ub2tlblwiPjwvdy1hZGRyZXNzLWZpZWxkPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBvcHRpb25zPW9wdGlvbnM7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLlRyYW5zbGF0ZWRTZWxlY3QudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWJhc2ljLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGhcIj5cclxuICAgICAgICAgICAgPHAtZHJvcGRvd24gY2xhc3M9XCJmaWVsZC1nYXAgdy1lZGl0LXNlbGVjdC1zbWFsbFwiIGFwcGVuZFRvPVwiYm9keVwiIFtvcHRpb25zXT1cImdldFRyYW5zbGF0ZWRTZWxlY3RPcHRpb25zKG9wdGlvbnMpXCIgW25nTW9kZWxPcHRpb25zXT1cIntzdGFuZGFsb25lOiB0cnVlfVwiIFtmaWx0ZXJdPVwidHJ1ZVwiIFtzaG93Q2xlYXJdPVwiZmFsc2VcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgb3B0aW9uVmFsdWU9XCJ2YWx1ZVwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLmxpc3RcIj48L3AtZHJvcGRvd24+XHJcbiAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IG9wdGlvbnM9b3B0aW9uczsgdHlwZTogcWJEYXRhVHlwZUVudW0uTm90aWZpY2F0aW9uRXZlbnRMaXN0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgPHctbm90aWZpY2F0aW9ucy1ldmVudC1maWVsZCBjbGFzcz1cInctZmlsdGVyLXBhbmVsLW5vdGlmaWNhdGlvbnMtZXZlbnQtZmllbGRcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW29wZXJhdG9yXT1cInJ1bGUub3BlcmF0b3JcIiBbbm90aWZpY2F0aW9uQXBpVXJsXT1cIm5vdGlmaWNhdGlvbkFwaVVybFwiIFtub3RpZmljYXRpb25BcGlUb2tlbl09XCJjb21tb25EYXRhVG9rZW5cIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5saXN0XCI+PC93LW5vdGlmaWNhdGlvbnMtZXZlbnQtZmllbGQ+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcbiAgICAgIDwvcXVlcnktYnVpbGRlcj5cclxuICAgIDwvZGl2PlxyXG5cclxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCIhaXNBZHZhbmNlZFNlYXJjaCAmJiBiYXNpY1F1ZXJ5LnJ1bGVzLmxlbmd0aD09MFwiID5cclxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cIm5vUXVlcnlEYXRhXCI+PC9uZy1jb250YWluZXI+XHJcbiAgICA8L25nLWNvbnRhaW5lcj5cclxuICA8L25nLXRlbXBsYXRlPlxyXG5cclxuICA8bmctdGVtcGxhdGUgI2FkdmFuY2VkPlxyXG4gICAgPGRpdiBbY2xhc3MucXVlcnktYnVpbGRlci1zdHlsZV09XCIhZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dSdWxlU2V0XCIgY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1jb250YWluZXIgZmFkZWluIGFuaW1hdGlvbi1kdXJhdGlvbi01MDBcIj5cclxuICAgICAgPGRpdiAqbmdJZj1cImZpbHRlclBhbmVsT2JqZWN0LmFsbG93UnVsZVNldFwiIGNsYXNzPVwiZmxleCBqdXN0aWZ5LWNvbnRlbnQtZW5kIGZsZXgtd3JhcFwiPlxyXG4gICAgICAgIDx3LWJ1dHRvbiBidXR0b25DbGFzcz1cImNoYW5nZS1maWx0ZXItYnV0dG9uXCIgaWNvbj1cInBpIHBpLXN5bmNcIiBjbGFzcz1cIm1iLTJcIiBbbGFiZWxdPVwidHJhbnNsYXRpb25zT2JqZWN0LmJhc2ljU2VhcmNoVGFiTGFiZWxcIiB0eXBlPVwidGV4dFwiIChvbkNsaWNrKT1cInVwZGF0ZVNlYXJjaFR5cGUoKVwiPjwvdy1idXR0b24+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgICA8cXVlcnktYnVpbGRlciBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkIHF1ZXJ5LWJ1aWxkZXItc3R5bGVcIiAjYWR2YW5jZWRRdWVyeUJ1aWxkZXIgW2Zvcm1Db250cm9sXT0nYWR2YW5jZWRRdWVyeUN0cmwnIFtjb25maWddPSdhZHZhbmNlZFF1ZXJ5Q29uZmlnJyBbYWxsb3dSdWxlc2V0XT0nZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dSdWxlU2V0JyBbYWxsb3dDb2xsYXBzZV09J2ZpbHRlclBhbmVsT2JqZWN0LmFsbG93Q29sYXBzZScgW2FsbG93UnVsZXNldF09XCJmaWx0ZXJQYW5lbE9iamVjdC5hbGxvd1J1bGVTZXRcIiBbcGVyc2lzdFZhbHVlT25GaWVsZENoYW5nZV09J3BlcnNpc3RWYWx1ZU9uRmllbGRDaGFuZ2UnPlxyXG4gICAgICAgICAgPGRpdiAqbmdJZj1cImZpbHRlclBhbmVsT2JqZWN0LmFsbG93UnVsZVNldDsgZWxzZSBub1J1bGVTZXRcIj5cclxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlCdXR0b25Hcm91cD1cImxldCBydWxlc2V0OyBsZXQgYWRkUnVsZT1hZGRSdWxlOyBsZXQgYWRkUnVsZVNldD1hZGRSdWxlU2V0OyBsZXQgcmVtb3ZlUnVsZVNldD1yZW1vdmVSdWxlU2V0XCI+XHJcbiAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJmbGV4IGdhcC0zXCI+XHJcbiAgICAgICAgICAgICAgICA8dy1idXR0b24gW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5hZHZhbmNlZFNlYXJjaC5hZGRSdWxlQnV0dG9uTGFiZWxcIiB0eXBlPVwic2Vjb25kYXJ5XCIgc2l6ZT1cInNtYWxsXCIgKG9uQ2xpY2spPVwiYWRkUnVsZSgpXCI+PC93LWJ1dHRvbj5cclxuICAgICAgICAgICAgICAgIDx3LWJ1dHRvbiBbbGFiZWxdPVwidHJhbnNsYXRpb25zT2JqZWN0LmFkdmFuY2VkU2VhcmNoLmFkZFJ1bGVTZXRCdXR0b25MYWJlbFwiIHR5cGU9XCJzZWNvbmRhcnlcIiBpY29uPVwicGkgcGktcGx1c1wiIHNpemU9XCJzbWFsbFwiICpuZ0lmPVwiYWRkUnVsZVNldFwiIChvbkNsaWNrKT1cImFkZFJ1bGVTZXQoKVwiPjwvdy1idXR0b24+XHJcbiAgICAgICAgICAgICAgICA8dy1idXR0b24gW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5hZHZhbmNlZFNlYXJjaC5yZW1vdmVSdWxlU2V0QnV0dG9uTGFiZWxcIiB0eXBlPVwidGVydGlhcnlcIiBpY29uPVwicGkgcGktbWludXNcIiBzaXplPVwic21hbGxcIiAqbmdJZj1cInJlbW92ZVJ1bGVTZXRcIiAob25DbGljayk9XCJyZW1vdmVSdWxlU2V0KClcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuXHJcbiAgICAgICAgICA8bmctdGVtcGxhdGUgI25vUnVsZVNldD5cclxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlCdXR0b25Hcm91cD1cImxldCBydWxlc2V0OyBsZXQgYWRkUnVsZT1hZGRSdWxlOyBsZXQgYWRkUnVsZVNldD1hZGRSdWxlU2V0OyBsZXQgcmVtb3ZlUnVsZVNldD1yZW1vdmVSdWxlU2V0XCI+XHJcbiAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImZsZXgganVzdGlmeS1jb250ZW50LWVuZCBmbGV4LXdyYXBcIj5cclxuICAgICAgICAgICAgICAgIDx3LWJ1dHRvbiBbbGFiZWxdPVwidHJhbnNsYXRpb25zT2JqZWN0LmJhc2ljU2VhcmNoVGFiTGFiZWxcIiB0eXBlPVwidGV4dFwiIChvbkNsaWNrKT1cInVwZGF0ZVNlYXJjaFR5cGUoKVwiPjwvdy1idXR0b24+XHJcbiAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJhZHZhbmNlZC1xdWVyeS1idXR0b24tZ3JvdXAgZmxleCBnYXAtM1wiPlxyXG4gICAgICAgICAgICAgICAgPHctYnV0dG9uIFtsYWJlbF09XCJ0cmFuc2xhdGlvbnNPYmplY3QuYWR2YW5jZWRTZWFyY2guYWRkUnVsZUJ1dHRvbkxhYmVsXCIgdHlwZT1cInNlY29uZGFyeVwiIHNpemU9XCJzbWFsbFwiIChvbkNsaWNrKT1cImFkZFJ1bGUoKVwiPjwvdy1idXR0b24+XHJcbiAgICAgICAgICAgICAgICA8dy1idXR0b24gW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5hZHZhbmNlZFNlYXJjaC5hZGRSdWxlU2V0QnV0dG9uTGFiZWxcIiB0eXBlPVwic2Vjb25kYXJ5XCIgaWNvbj1cInBpIHBpLXBsdXNcIiBzaXplPVwic21hbGxcIiAqbmdJZj1cImFkZFJ1bGVTZXRcIiAob25DbGljayk9XCJhZGRSdWxlU2V0KClcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgICAgICAgPHctYnV0dG9uIFtsYWJlbF09XCJ0cmFuc2xhdGlvbnNPYmplY3QuYWR2YW5jZWRTZWFyY2gucmVtb3ZlUnVsZVNldEJ1dHRvbkxhYmVsXCIgdHlwZT1cInRlcnRpYXJ5XCIgaWNvbj1cInBpIHBpLW1pbnVzXCIgc2l6ZT1cInNtYWxsXCIgKm5nSWY9XCJyZW1vdmVSdWxlU2V0XCIgKG9uQ2xpY2spPVwicmVtb3ZlUnVsZVNldCgpXCI+PC93LWJ1dHRvbj5cclxuICAgICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5QXJyb3dJY29uPlxyXG4gICAgICAgICAgICA8YnV0dG9uIHBCdXR0b24gcFJpcHBsZSB0eXBlPVwiYnV0dG9uXCIgaWNvbj1cInBpIHBpLWFuZ2xlLXJpZ2h0XCIgY2xhc3M9XCJwLWJ1dHRvbi1yb3VuZGVkIHAtYnV0dG9uLXRleHRcIj48L2J1dHRvbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5UmVtb3ZlQnV0dG9uPVwibGV0IHJ1bGU7IGxldCByZW1vdmVSdWxlPXJlbW92ZVJ1bGVcIj5cclxuICAgICAgICAgICAgPHctYnV0dG9uIGNsYXNzPVwiXCIgbGFiZWw9XCJcIiBzaXplPVwic21hbGxcIiB0eXBlPVwidGVydGlhcnlcIiBpY29uPVwicGkgcGktdGltZXNcIiAob25DbGljayk9XCJyZW1vdmVSdWxlKHJ1bGUpXCI+PC93LWJ1dHRvbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5U3dpdGNoR3JvdXA9XCJsZXQgcnVsZXNldDsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJydWxlc2V0XCIgY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1zd2l0Y2gtZ3JvdXAtcGFkZGluZyBxLWlubGluZS1ibG9jay1kaXNwbGF5IGlubGluZS1mbGV4XCI+XHJcbiAgICAgICAgICAgICAgPHctc2VsZWN0LWJ1dHRvbiAqbmdJZj1cImZpbHRlclBhbmVsT2JqZWN0LmFsbG93TG9naWNhbFJ1bGVcIiBbc3RhdGVPcHRpb25zXT1cIlt7bGFiZWw6ICdBbmQnLCB2YWx1ZTogJ2FuZCd9LCB7bGFiZWw6ICdPcicsIHZhbHVlOiAnb3InfV1cIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgWyhuZ01vZGVsKV09XCJydWxlc2V0LmNvbmRpdGlvblwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbc2l6ZV09XCInc21hbGwnXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICh2YWx1ZSk9XCJydWxlc2V0LmNvbmRpdGlvbiA9ICRldmVudFwiPlxyXG4gICAgICAgICAgICAgIDwvdy1zZWxlY3QtYnV0dG9uPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5RW50aXR5PVwibGV0IHJ1bGU7IGxldCBlbnRpdGllcz1lbnRpdGllczsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aFwiIFtuZ0NsYXNzXT1cInsndy1uby1lbnRpdHktbW9kZScgOiAhZmlsdGVyUGFuZWxPYmplY3QuZW5pdHlNb2RlfVwiPlxyXG4gICAgICAgICAgICAgIDxwLWRyb3Bkb3duICpuZ0lmPVwiZmlsdGVyUGFuZWxPYmplY3QuZW5pdHlNb2RlXCIgY2xhc3M9XCJmaWVsZC1nYXAgdy1lZGl0LXNlbGVjdC1zbWFsbCB3LWVudGl0eS1kcm9wZG93blwiIGFwcGVuZFRvPVwiYm9keVwiIFtvcHRpb25zXT1cImVudGl0aWVzXCIgWyhuZ01vZGVsKV09XCJydWxlLmVudGl0eVwiIG9wdGlvbkxhYmVsPVwibmFtZVwiIG9wdGlvblZhbHVlPVwidmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgkZXZlbnQsIHJ1bGUpXCI+PC9wLWRyb3Bkb3duPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUZpZWxkPVwibGV0IHJ1bGU7IGxldCBmaWVsZHM9ZmllbGRzOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2U7IGxldCBnZXRGaWVsZHMgPSBnZXRGaWVsZHNcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXlcIj5cclxuICAgICAgICAgICAgICA8dy1saXN0LWZpZWxkIGNsYXNzPVwiZmllbGQtZ2FwXCIgYXBwZW5kVG89XCJib2R5XCIgW29wdGlvbnNdPVwiZ2V0RmllbGRzKHJ1bGUuZW50aXR5KVwiIFsobmdNb2RlbCldPVwicnVsZS5maWVsZFwiIFtvcGVyYXRvcl09XCInPSdcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgkZXZlbnQsIHJ1bGUpXCIgW29ubHlEcm9wZG93bl09XCJ0cnVlXCI+PC93LWxpc3QtZmllbGQ+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5T3BlcmF0b3I9XCJsZXQgcnVsZTsgbGV0IG9wZXJhdG9ycz1vcGVyYXRvcnM7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGggcS1vcGVyYXRvcnMgcS1pbmxpbmUtYmxvY2stZGlzcGxheVwiIFtuZ0NsYXNzXT1cInsndy1maWVsZC1udWxsYWJsZScgOiBvcGVyYXRvcnMuaW5jbHVkZXMoJ251bGxhYmxlJyl9XCI+XHJcbiAgICAgICAgICAgICAgPHAtZHJvcGRvd24gKm5nSWY9XCIhb3BlcmF0b3JzLmluY2x1ZGVzKCdudWxsYWJsZScpXCIgY2xhc3M9XCJmaWVsZC1nYXAgdy1lZGl0LXNlbGVjdC1zbWFsbFwiIGFwcGVuZFRvPVwiYm9keVwiIFsobmdNb2RlbCldPVwicnVsZS5vcGVyYXRvclwiIFtvcHRpb25zXT1cIm9wZXJhdG9yc1wiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKHJ1bGUpXCI+PC9wLWRyb3Bkb3duPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLkJvb2xlYW4udG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDx3LXRvZ2dsZS1idXR0b24gY2xhc3M9XCJmaWVsZC1nYXAgdG9nZ2xlLWJ1dHRvbi1hbGlnblwiIHNpemU9XCJzbWFsbFwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIG9uTGFiZWw9XCJUcnVlXCIgb2ZmTGFiZWw9XCJGYWxzZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIj48L3ctdG9nZ2xlLWJ1dHRvbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgdHlwZTogcWJEYXRhVHlwZUVudW0uRGF0ZXRpbWUudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aCBxLWlubGluZS1ibG9jay1kaXNwbGF5XCI+XHJcbiAgICAgICAgICAgICAgPHctZWRpdC1jYWxlbmRhciBjbGFzcz1cImZpZWxkLWdhcFwiIGFwcGVuZFRvPVwiYm9keVwiIHNpemU9XCJzbWFsbFwiIFtkYXRhVHlwZV09XCJpc1RvS2VlcExvY2FsRGF0ZShydWxlLmZpZWxkKSA/ICdkYXRlJyA6ICdzdHJpbmcnXCIgW3Nob3dJY29uXT1cImZhbHNlXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgKG9uQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbc2hvd1RpbWVdPVwidHJ1ZVwiIFtzaG93U2Vjb25kc109XCJ0cnVlXCIgW2ZpcnN0RGF5T2ZXZWVrXT1cInRyYW5zbGF0aW9uc09iamVjdC5maXJzdERheU9mV2VlayA/PyAxXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMuZGF0ZXRpbWVcIiBbZGlzcGxheUlubGluZUJsb2NrXT1cInRydWVcIiBbc2hvd0xhYmVsXT1cImZhbHNlXCI+PC93LWVkaXQtY2FsZW5kYXI+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IGZpZWxkPWZpZWxkOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5EZWNpbWFsLnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGggcS1pbmxpbmUtYmxvY2stZGlzcGxheVwiPlxyXG4gICAgICAgICAgICAgIDxwLWlucHV0TnVtYmVyIGlucHV0U3R5bGVDbGFzcz1cImZsZXggZmxleC0xXCIgc3R5bGVDbGFzcz1cImZsZXggZmxleC0xXCIgY2xhc3M9XCJmaWVsZC1nYXAgdy1lZGl0LWlucHV0LW51bWJlci1zbWFsbCB3LWVkaXQtaW5wdXQtbnVtYmVyLXNtYWxsLWhlaWdodFwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIGlucHV0SWQ9XCJtaW5tYXhcIiBpbnB1dElkPVwibWlubWF4XCIgbW9kZT1cImRlY2ltYWxcIiBbbWluRnJhY3Rpb25EaWdpdHNdPVwiMlwiIFttYXhGcmFjdGlvbkRpZ2l0c109XCI1XCIgW21pbl09XCIwXCIgW21heF09XCIxMDBcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMuZGVjaW1hbFwiPiA8L3AtaW5wdXROdW1iZXI+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IG9wdGlvbnM9b3B0aW9uczsgdHlwZTogcWJEYXRhVHlwZUVudW0uTGlzdC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXlcIj5cclxuICAgICAgICAgICAgICA8cC1kcm9wZG93biAqbmdJZj1cIiFpc011bHRpc2VsZWN0KHJ1bGUpXCIgY2xhc3M9XCJmaWVsZC1nYXAgdy1lZGl0LXNlbGVjdC1zbWFsbFwiIGFwcGVuZFRvPVwiYm9keVwiIFtvcHRpb25zXT1cIm9wdGlvbnNcIiBbZmlsdGVyXT1cInRydWVcIiBbc2hvd0NsZWFyXT1cInRydWVcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgb3B0aW9uVmFsdWU9XCJ2YWx1ZVwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLmxpc3RcIj48L3AtZHJvcGRvd24+XHJcbiAgICAgICAgICAgICAgPHAtbXVsdGlTZWxlY3QgKm5nSWY9XCJpc011bHRpc2VsZWN0KHJ1bGUpXCIgY2xhc3M9XCJ3LWVkaXQtbXVsdGlzZWxlY3Qtc21hbGxcIiBbYXBwZW5kVG9dPVwiJ2JvZHknXCIgW29wdGlvbnNdPVwib3B0aW9uc1wiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBvcHRpb25MYWJlbD1cIm5hbWVcIiBvcHRpb25WYWx1ZT1cInZhbHVlXCIgZGlzcGxheT1cImNoaXBcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5saXN0XCI+PC9wLW11bHRpU2VsZWN0PlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBvcHRpb25zPW9wdGlvbnM7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLkxpc3QudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aCBxLWlubGluZS1ibG9jay1kaXNwbGF5IGZpZWxkLWdhcFwiPlxyXG4gICAgICAgICAgICAgIDx3LWxpc3QtZmllbGQgW29wdGlvbnNdPVwib3B0aW9uc1wiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIFtvcGVyYXRvcl09XCJydWxlLm9wZXJhdG9yXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLmxpc3RcIj48L3ctbGlzdC1maWVsZD5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgZmllbGQ9ZmllbGQ7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLk51bWJlci50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXlcIj5cclxuICAgICAgICAgICAgICA8cC1pbnB1dE51bWJlciBbdXNlR3JvdXBpbmddPVwiZmFsc2VcIiBpbnB1dFN0eWxlQ2xhc3M9XCJmbGV4IGZsZXgtMVwiIHN0eWxlQ2xhc3M9XCJmbGV4IGZsZXgtMVwiIGNsYXNzPVwiZmllbGQtZ2FwIHctZWRpdC1pbnB1dC1udW1iZXItc21hbGwgdy1lZGl0LWlucHV0LW51bWJlci1zbWFsbC1oZWlnaHRcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiBpbnB1dElkPVwibWlubWF4XCIgaW5wdXRJZD1cIm1pbm1heFwiIFttaW5dPVwiMFwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5udW1iZXJcIj4gPC9wLWlucHV0TnVtYmVyPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBmaWVsZD1maWVsZDsgdHlwZTogcWJEYXRhVHlwZUVudW0uVGV4dC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXlcIj5cclxuICAgICAgICAgICAgICA8aW5wdXQgY2xhc3M9XCJmaWVsZC1nYXAgdy1lZGl0LWlucHV0LXRleHQtc21hbGwtaGVpZ2h0IHctZWRpdC1pbnB1dC10ZXh0LXNtYWxsXCIgdHlwZT1cInRleHRcIiBwSW5wdXRUZXh0IFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy50ZXh0XCIvPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBvcHRpb25zPW9wdGlvbnM7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLk11bHRpc2VsZWN0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGggcS1pbmxpbmUtYmxvY2stZGlzcGxheVwiPlxyXG4gICAgICAgICAgICAgIDxwLW11bHRpU2VsZWN0IGNsYXNzPVwidy1lZGl0LW11bHRpc2VsZWN0LXNtYWxsXCIgW2FwcGVuZFRvXT1cIidib2R5J1wiIFtvcHRpb25zXT1cIm9wdGlvbnNcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgb3B0aW9uVmFsdWU9XCJ2YWx1ZVwiIGRpc3BsYXk9XCJjaGlwXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMubGlzdFwiPjwvcC1tdWx0aVNlbGVjdD5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgb3B0aW9ucz1vcHRpb25zOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5BZGRyZXNzLnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8dy1hZGRyZXNzLWZpZWxkIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbb3BlcmF0b3JdPVwicnVsZS5vcGVyYXRvclwiIFtzZWdtZW50YXRpb25BcGlVcmxdPVwic2VnbWVudGF0aW9uQXBpVXJsXCIgW3NlZ21lbnRhdGlvbkFwaVRva2VuXT1cInNlZ21lbnRhdGlvblRva2VuXCIgW3NlbGVjdFBsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMubGlzdFwiPjwvdy1hZGRyZXNzLWZpZWxkPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgb3B0aW9ucz1vcHRpb25zOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5OdWxsYWJsZVNlbGVjdC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXkgdy1lbnRpdHktbnVsbGFibGVcIj5cclxuICAgICAgICAgICAgICA8cC1kcm9wZG93biBjbGFzcz1cImZpZWxkLWdhcCB3LWVkaXQtc2VsZWN0LXNtYWxsXCIgYXBwZW5kVG89XCJib2R5XCIgW29wdGlvbnNdPVwiZ2V0TnVsbGFibGVTZWxlY3RPcHRpb25zKG9wdGlvbnMpXCIgW2ZpbHRlcl09XCJ0cnVlXCIgW3Nob3dDbGVhcl09XCJmYWxzZVwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBvcHRpb25MYWJlbD1cIm5hbWVcIiBvcHRpb25WYWx1ZT1cInZhbHVlXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMubGlzdFwiPjwvcC1kcm9wZG93bj5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgb3B0aW9ucz1vcHRpb25zOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5Cb29sZWFuU2VsZWN0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGggcS1pbmxpbmUtYmxvY2stZGlzcGxheVwiPlxyXG4gICAgICAgICAgICAgIDxwLWRyb3Bkb3duIGNsYXNzPVwiZmllbGQtZ2FwIHctZWRpdC1zZWxlY3Qtc21hbGxcIiBhcHBlbmRUbz1cImJvZHlcIiBbb3B0aW9uc109XCJnZXRCb29sZWFuU2VsZWN0T3B0aW9ucyhvcHRpb25zKVwiIFtuZ01vZGVsT3B0aW9uc109XCJ7c3RhbmRhbG9uZTogdHJ1ZX1cIiBbZmlsdGVyXT1cInRydWVcIiBbc2hvd0NsZWFyXT1cImZhbHNlXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIG9wdGlvbkxhYmVsPVwibmFtZVwiIG9wdGlvblZhbHVlPVwidmFsdWVcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5saXN0XCI+PC9wLWRyb3Bkb3duPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBvcHRpb25zPW9wdGlvbnM7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLlRyYW5zbGF0ZWRTZWxlY3QudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aCBxLWlubGluZS1ibG9jay1kaXNwbGF5XCI+XHJcbiAgICAgICAgICAgICAgPHAtZHJvcGRvd24gY2xhc3M9XCJmaWVsZC1nYXAgdy1lZGl0LXNlbGVjdC1zbWFsbFwiIGFwcGVuZFRvPVwiYm9keVwiIFtvcHRpb25zXT1cImdldFRyYW5zbGF0ZWRTZWxlY3RPcHRpb25zKG9wdGlvbnMpXCIgW25nTW9kZWxPcHRpb25zXT1cIntzdGFuZGFsb25lOiB0cnVlfVwiIFtmaWx0ZXJdPVwidHJ1ZVwiIFtzaG93Q2xlYXJdPVwiZmFsc2VcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgb3B0aW9uVmFsdWU9XCJ2YWx1ZVwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLmxpc3RcIj48L3AtZHJvcGRvd24+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICA8L3F1ZXJ5LWJ1aWxkZXI+XHJcblxyXG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNBZHZhbmNlZFNlYXJjaCAmJiBhZHZhbmNlZFF1ZXJ5LnJ1bGVzLmxlbmd0aD09MFwiID5cclxuICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwibm9RdWVyeURhdGFcIj48L25nLWNvbnRhaW5lcj5cclxuICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICA8IS0tIEdyb3VwZWQgZmlsdGVyIC0tPlxyXG4gICAgICA8ZGl2ICpuZ0lmPVwiZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dHcm91cGVkXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInB5LTVcIj5cclxuICAgICAgICAgIDx3LXZpZXctY2FyZC10aXRsZS10ZXh0IFtjYXJkVGl0bGVdPVwidHJhbnNsYXRpb25zT2JqZWN0Lmdyb3VwZWRGaWx0ZXJUaXRsZVwiPjwvdy12aWV3LWNhcmQtdGl0bGUtdGV4dD5cclxuICAgICAgICA8L2Rpdj5cclxuXHJcbiAgICAgICAgPHF1ZXJ5LWJ1aWxkZXIgKm5nSWY9XCJncm91cGVkUXVlcnkucnVsZXMubGVuZ3RoID4gMFwiIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtZ3JvdXBlZCBxdWVyeS1idWlsZGVyLXN0eWxlXCIgW2Zvcm1Db250cm9sXT0nZ3JvdXBlZFF1ZXJ5Q3RybCcgW2NvbmZpZ109J2FkdmFuY2VkUXVlcnlDb25maWcnIFthbGxvd1J1bGVzZXRdPSdmaWx0ZXJQYW5lbE9iamVjdC5hbGxvd1J1bGVTZXQnIFthbGxvd0NvbGxhcHNlXT0nZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dDb2xhcHNlJyBbYWxsb3dSdWxlc2V0XT1cImZpbHRlclBhbmVsT2JqZWN0LmFsbG93UnVsZVNldFwiIFtwZXJzaXN0VmFsdWVPbkZpZWxkQ2hhbmdlXT0ncGVyc2lzdFZhbHVlT25GaWVsZENoYW5nZSc+XHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUJ1dHRvbkdyb3VwPVwibGV0IHJ1bGVzZXQ7IGxldCBhZGRSdWxlPWFkZFJ1bGU7IGxldCBhZGRSdWxlU2V0PWFkZFJ1bGVTZXQ7IGxldCByZW1vdmVSdWxlU2V0PXJlbW92ZVJ1bGVTZXRcIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImZsZXggZ2FwLTNcIj5cclxuICAgICAgICAgICAgICA8dy1idXR0b24gW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5hZHZhbmNlZFNlYXJjaC5hZGRSdWxlQnV0dG9uTGFiZWxcIiB0eXBlPVwic2Vjb25kYXJ5XCIgc2l6ZT1cInNtYWxsXCIgKG9uQ2xpY2spPVwiYWRkUnVsZSgpXCI+PC93LWJ1dHRvbj5cclxuICAgICAgICAgICAgICA8dy1idXR0b24gW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5hZHZhbmNlZFNlYXJjaC5hZGRSdWxlU2V0QnV0dG9uTGFiZWxcIiB0eXBlPVwic2Vjb25kYXJ5XCIgaWNvbj1cInBpIHBpLXBsdXNcIiBzaXplPVwic21hbGxcIiAqbmdJZj1cImFkZFJ1bGVTZXRcIiAob25DbGljayk9XCJhZGRSdWxlU2V0KClcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgICAgIDx3LWJ1dHRvbiBbbGFiZWxdPVwidHJhbnNsYXRpb25zT2JqZWN0LmFkdmFuY2VkU2VhcmNoLnJlbW92ZVJ1bGVTZXRCdXR0b25MYWJlbFwiIHR5cGU9XCJ0ZXJ0aWFyeVwiIGljb249XCJwaSBwaS1taW51c1wiIHNpemU9XCJzbWFsbFwiICpuZ0lmPVwicmVtb3ZlUnVsZVNldFwiIChvbkNsaWNrKT1cInJlbW92ZVJ1bGVTZXQoKVwiPjwvdy1idXR0b24+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlBcnJvd0ljb24+XHJcbiAgICAgICAgICAgIDxidXR0b24gcEJ1dHRvbiBwUmlwcGxlIHR5cGU9XCJidXR0b25cIiBpY29uPVwicGkgcGktYW5nbGUtcmlnaHRcIiBjbGFzcz1cInAtYnV0dG9uLXJvdW5kZWQgcC1idXR0b24tdGV4dFwiPjwvYnV0dG9uPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlSZW1vdmVCdXR0b249XCJsZXQgcnVsZTsgbGV0IHJlbW92ZVJ1bGU9cmVtb3ZlUnVsZVwiPlxyXG4gICAgICAgICAgICA8dy1idXR0b24gY2xhc3M9XCJcIiBsYWJlbD1cIlwiIHNpemU9XCJzbWFsbFwiIHR5cGU9XCJ0ZXJ0aWFyeVwiIGljb249XCJwaSBwaS10aW1lc1wiIChvbkNsaWNrKT1cInJlbW92ZVJ1bGUocnVsZSlcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlTd2l0Y2hHcm91cD1cImxldCBydWxlc2V0OyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLXN3aXRjaC1ncm91cC1wYWRkaW5nIHEtaW5saW5lLWJsb2NrLWRpc3BsYXkgaW5saW5lLWZsZXhcIiAqbmdJZj1cInJ1bGVzZXRcIj5cclxuICAgICAgICAgICAgICA8dy1zZWxlY3QtYnV0dG9uICpuZ0lmPVwiZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dMb2dpY2FsUnVsZVwiIFtzdGF0ZU9wdGlvbnNdPVwiW3tsYWJlbDogJ0FuZCcsIHZhbHVlOiAnYW5kJ30sIHtsYWJlbDogJ09yJywgdmFsdWU6ICdvcid9XVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbKG5nTW9kZWwpXT1cInJ1bGVzZXQuY29uZGl0aW9uXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtzaXplXT1cIidzbWFsbCdcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKHZhbHVlKT1cInJ1bGVzZXQuY29uZGl0aW9uID0gJGV2ZW50XCI+XHJcbiAgICAgICAgICAgICAgPC93LXNlbGVjdC1idXR0b24+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlFbnRpdHk9XCJsZXQgcnVsZTsgbGV0IGVudGl0aWVzPWVudGl0aWVzOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoXCIgW25nQ2xhc3NdPVwieyd3LW5vLWVudGl0eS1tb2RlJyA6ICFmaWx0ZXJQYW5lbE9iamVjdC5lbml0eU1vZGV9XCI+XHJcbiAgICAgICAgICAgICAgPHAtZHJvcGRvd24gY2xhc3M9XCJ3LWVkaXQtc2VsZWN0LXNtYWxsIGZpZWxkLWdhcCB3LWVudGl0eS1kcm9wZG93blwiICpuZ0lmPVwiZmlsdGVyUGFuZWxPYmplY3QuZW5pdHlNb2RlXCIgYXBwZW5kVG89XCJib2R5XCIgW29wdGlvbnNdPVwiZW50aXRpZXNcIiBbKG5nTW9kZWwpXT1cInJ1bGUuZW50aXR5XCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgb3B0aW9uVmFsdWU9XCJ2YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKCRldmVudCwgcnVsZSlcIj48L3AtZHJvcGRvd24+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlGaWVsZD1cImxldCBydWxlOyBsZXQgZmllbGRzPWZpZWxkczsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlOyBsZXQgZ2V0RmllbGRzID0gZ2V0RmllbGRzXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aCBxLWlubGluZS1ibG9jay1kaXNwbGF5XCI+XHJcbiAgICAgICAgICAgICAgPHAtZHJvcGRvd24gY2xhc3M9XCJ3LWVkaXQtc2VsZWN0LXNtYWxsXCIgYXBwZW5kVG89XCJib2R5XCIgW29wdGlvbnNdPVwiZ2V0RmllbGRzKHJ1bGUuZW50aXR5KVwiIFsobmdNb2RlbCldPVwicnVsZS5maWVsZFwiIG9wdGlvbkxhYmVsPVwibmFtZVwiIG9wdGlvblZhbHVlPVwidmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgkZXZlbnQsIHJ1bGUpXCI+PC9wLWRyb3Bkb3duPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeU9wZXJhdG9yPVwibGV0IHJ1bGU7IGxldCBvcGVyYXRvcnM9b3BlcmF0b3JzOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtb3BlcmF0b3JzIHEtaW5saW5lLWJsb2NrLWRpc3BsYXlcIiBbbmdDbGFzc109XCJ7J3ctZmllbGQtbnVsbGFibGUnIDogb3BlcmF0b3JzLmluY2x1ZGVzKCdudWxsYWJsZScpfVwiPlxyXG4gICAgICAgICAgICAgIDxwLWRyb3Bkb3duIGNsYXNzPVwidy1lZGl0LXNlbGVjdC1zbWFsbFwiIGFwcGVuZFRvPVwiYm9keVwiIFsobmdNb2RlbCldPVwicnVsZS5vcGVyYXRvclwiIFtvcHRpb25zXT1cIm9wZXJhdG9yc1wiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKHJ1bGUpXCI+PC9wLWRyb3Bkb3duPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLkJvb2xlYW4udG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDx3LXRvZ2dsZS1idXR0b24gY2xhc3M9XCJmaWVsZC1nYXAgdG9nZ2xlLWJ1dHRvbi1hbGlnblwiIHNpemU9XCJzbWFsbFwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIG9uTGFiZWw9XCJUcnVlXCIgb2ZmTGFiZWw9XCJGYWxzZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIj48L3ctdG9nZ2xlLWJ1dHRvbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgdHlwZTogcWJEYXRhVHlwZUVudW0uRGF0ZXRpbWUudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aCBxLWlubGluZS1ibG9jay1kaXNwbGF5XCI+XHJcbiAgICAgICAgICAgICAgPHctZWRpdC1jYWxlbmRhciBjbGFzcz1cImZpZWxkLWdhcFwiIGFwcGVuZFRvPVwiYm9keVwiIHNpemU9XCJzbWFsbFwiIFtkYXRhVHlwZV09XCJpc1RvS2VlcExvY2FsRGF0ZShydWxlLmZpZWxkKSA/ICdkYXRlJyA6ICdzdHJpbmcnXCIgW3Nob3dJY29uXT1cImZhbHNlXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgKG9uQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbc2hvd1RpbWVdPVwidHJ1ZVwiIFtzaG93U2Vjb25kc109XCJ0cnVlXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMuZGF0ZXRpbWVcIiBbZGlzcGxheUlubGluZUJsb2NrXT1cInRydWVcIj48L3ctZWRpdC1jYWxlbmRhcj5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgZmllbGQ9ZmllbGQ7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLkRlY2ltYWwudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aCBxLWlubGluZS1ibG9jay1kaXNwbGF5XCI+XHJcbiAgICAgICAgICAgICAgPHAtaW5wdXROdW1iZXIgY2xhc3M9XCJmbGV4IGZsZXgtMVwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIGlucHV0SWQ9XCJtaW5tYXhcIiBpbnB1dElkPVwibWlubWF4XCIgbW9kZT1cImRlY2ltYWxcIiBbbWluRnJhY3Rpb25EaWdpdHNdPVwiMlwiIFttYXhGcmFjdGlvbkRpZ2l0c109XCI1XCIgW21pbl09XCIwXCIgW21heF09XCIxMDBcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMuZGVjaW1hbFwiPiA8L3AtaW5wdXROdW1iZXI+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IG9wdGlvbnM9b3B0aW9uczsgdHlwZTogcWJEYXRhVHlwZUVudW0uTGlzdC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXlcIj5cclxuICAgICAgICAgICAgICA8dy1saXN0LWZpZWxkIFtvcHRpb25zXT1cIm9wdGlvbnNcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiBbb3BlcmF0b3JdPVwicnVsZS5vcGVyYXRvclwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5saXN0XCI+PC93LWxpc3QtZmllbGQ+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IGZpZWxkPWZpZWxkOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5OdW1iZXIudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aCBxLWlubGluZS1ibG9jay1kaXNwbGF5XCI+XHJcbiAgICAgICAgICAgICAgPHAtaW5wdXROdW1iZXIgW3VzZUdyb3VwaW5nXT1cImZhbHNlXCIgaW5wdXRTdHlsZUNsYXNzPVwiZmxleCBmbGV4LTFcIiBzdHlsZUNsYXNzPVwiZmxleCBmbGV4LTFcIiBjbGFzcz1cImZpZWxkLWdhcCB3LWVkaXQtaW5wdXQtbnVtYmVyLXNtYWxsIHctZWRpdC1pbnB1dC1udW1iZXItc21hbGwtaGVpZ2h0XCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgaW5wdXRJZD1cIm1pbm1heFwiIGlucHV0SWQ9XCJtaW5tYXhcIiBbbWluXT1cIjBcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMubnVtYmVyXCI+IDwvcC1pbnB1dE51bWJlcj5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgZmllbGQ9ZmllbGQ7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLlRleHQudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aFwiPlxyXG4gICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz1cImZpZWxkLWdhcCB3LWVkaXQtaW5wdXQtdGV4dC1zbWFsbC1oZWlnaHQgdy1lZGl0LWlucHV0LXRleHQtc21hbGxcIiB0eXBlPVwidGV4dFwiIHBJbnB1dFRleHQgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLnRleHRcIi8+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgPC9xdWVyeS1idWlsZGVyPlxyXG5cclxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNBZHZhbmNlZFNlYXJjaCAmJiBncm91cGVkUXVlcnkucnVsZXMubGVuZ3RoPT0wXCIgPlxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cIm5vUXVlcnlEYXRhXCI+PC9uZy1jb250YWluZXI+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlICNub1F1ZXJ5RGF0YT5cclxuICAgIDxkaXYgY2xhc3M9XCJmbGV4IGp1c3RpZnktY29udGVudC1jZW50ZXIgZmxleC13cmFwIGNhcmQtY29udGFpbmVyIHN1cmZhY2UtNTBcIj5cclxuICAgICAgPGRpdiBjbGFzcz1cImZsZXggYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1jZW50ZXIgdy1mdWxsIGgtNHJlbSB0ZXh0LWdyYXktOTAwIGJvcmRlci1yb3VuZCBtLTJcIj5cclxuICAgICAgICB7e3RyYW5zbGF0aW9uc09iamVjdC5ub1J1bGVzTGFiZWx9fVxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gIDwvbmctdGVtcGxhdGU+XHJcbiJdfQ==
|
|
768
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidy1maWx0ZXItcGFuZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvd2FwcC1jb21wb25lbnRzL3NyYy9saWIvbWlzYy93LWZpbHRlci1wYW5lbC93LWZpbHRlci1wYW5lbC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy93YXBwLWNvbXBvbmVudHMvc3JjL2xpYi9taXNjL3ctZmlsdGVyLXBhbmVsL3ctZmlsdGVyLXBhbmVsLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRTFGLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxZQUFZLEVBQUUsY0FBYyxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFJdkcsT0FBTyxFQUFFLGVBQWUsRUFBZ0IsTUFBTSxzREFBc0QsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBZ0JyRyxNQUFNLE9BQU8scUJBQXFCO0lBb0hoQyxZQUNVLFdBQXdCLEVBQ3hCLFVBQXNCLEVBQ3RCLGNBQXFDO1FBRnJDLGdCQUFXLEdBQVgsV0FBVyxDQUFhO1FBQ3hCLGVBQVUsR0FBVixVQUFVLENBQVk7UUFDdEIsbUJBQWMsR0FBZCxjQUFjLENBQXVCO1FBbkh4Qyw4QkFBeUIsR0FBWSxLQUFLLENBQUM7UUFFbEQscUJBQWdCLEdBQVksS0FBSyxDQUFDO1FBQ2xDLHFCQUFnQixHQUFZLEtBQUssQ0FBQztRQUNsQyxtQkFBYyxHQUFHLGNBQWMsQ0FBQztRQUNoQyxnQkFBVyxHQUFHLE1BQU0sQ0FBQyxNQUFNLENBQUMsY0FBYyxDQUFDLENBQUM7UUFHNUMsZUFBVSxHQUFRO1lBQ2hCLFNBQVMsRUFBRSxLQUFLO1lBQ2hCLEtBQUssRUFBRSxFQUFFO1NBQ1YsQ0FBQztRQUNGLGlCQUFZLEdBQVE7WUFDbEIsU0FBUyxFQUFFLEtBQUs7WUFDaEIsS0FBSyxFQUFFLEVBQUU7U0FDVixDQUFDO1FBQ0Ysa0JBQWEsR0FBUTtZQUNuQixTQUFTLEVBQUUsS0FBSztZQUNoQixLQUFLLEVBQUUsRUFBRTtTQUNWLENBQUM7UUFFRix3QkFBbUIsR0FBdUIsRUFBRSxNQUFNLEVBQUUsRUFBRSxFQUFFLENBQUM7UUFDekQsYUFBUSxHQUFVLEVBQUUsQ0FBQztRQUNyQixrQkFBYSxHQUFVLEVBQUUsQ0FBQztRQUMxQixxQkFBZ0IsR0FBVSxFQUFFLENBQUM7UUFHN0IsMkJBQXNCLEdBQVcsbUJBQW1CLENBQUM7UUFDckQsZ0NBQTJCLEdBQVMsRUFBRSxDQUFDO1FBVUgsOEJBQXlCLEdBQVksS0FBSyxDQUFDO1FBRy9DLDBCQUFxQixHQUFhLEVBQUUsQ0FBQztRQUNoQywrQkFBMEIsR0FBYSxFQUFFLENBQUM7UUFHbEQsdUJBQWtCLEdBQTRCO1lBQ3pFLG1CQUFtQixFQUFFLGNBQWM7WUFDbkMsc0JBQXNCLEVBQUUsaUJBQWlCO1lBQ3pDLGtCQUFrQixFQUFFLGdCQUFnQjtZQUNwQyxjQUFjLEVBQUU7Z0JBQ2QsY0FBYyxFQUFFLEtBQUs7Z0JBQ3JCLGFBQWEsRUFBRSxJQUFJO2dCQUNuQixrQkFBa0IsRUFBRSxZQUFZO2dCQUNoQyxxQkFBcUIsRUFBRSxnQkFBZ0I7Z0JBQ3ZDLHdCQUF3QixFQUFFLGlCQUFpQjthQUM1QztZQUNELFlBQVksRUFBRSxtQ0FBbUM7WUFDakQsaUJBQWlCLEVBQUUsT0FBTztZQUMxQixnQkFBZ0IsRUFBRSxPQUFPO1lBQ3pCLGtCQUFrQixFQUFFO2dCQUNsQixPQUFPLEVBQUU7b0JBQ0wsSUFBSSxFQUFFLE1BQU07b0JBQ1osS0FBSyxFQUFFLE9BQU87aUJBQ2pCO2dCQUNELE9BQU8sRUFBRSx1QkFBdUI7Z0JBQ2hDLElBQUksRUFBRSxrQkFBa0I7Z0JBQ3hCLE1BQU0sRUFBRSxpQkFBaUI7Z0JBQ3pCLElBQUksRUFBRSxhQUFhO2dCQUNuQixRQUFRLEVBQUUsZUFBZTthQUMxQjtZQUNELGNBQWMsRUFBRSxDQUFDO1lBQ2pCLFNBQVMsRUFBRTtnQkFDVCxRQUFRLEVBQUMsVUFBVTthQUNwQjtZQUNELE1BQU0sRUFBRTtnQkFDTixZQUFZLEVBQUUsSUFBSTtnQkFDbEIsSUFBSSxFQUFFLE1BQU07Z0JBQ1osSUFBSSxFQUFFLE1BQU07Z0JBQ1osTUFBTSxFQUFFLFNBQVM7Z0JBQ2pCLE9BQU8sRUFBRSxTQUFTO2FBQ25CO1lBQ0QscUJBQXFCLEVBQUU7Z0JBQ3JCLGlCQUFpQixFQUFFO29CQUNqQixZQUFZLEVBQUUsY0FBYztvQkFDNUIsZUFBZSxFQUFFLFdBQVc7aUJBQzdCO2FBQ0Y7WUFDRCxvQkFBb0IsRUFBRTtnQkFDcEIsZUFBZSxFQUFFO29CQUNmLFlBQVksRUFBRSxXQUFXO29CQUN6QixlQUFlLEVBQUUsUUFBUTtpQkFDMUI7YUFDRjtZQUNELHVCQUF1QixFQUFFO2dCQUN2QixPQUFPLEVBQUUsWUFBWTtnQkFDckIsU0FBUyxFQUFFLHNCQUFzQjtnQkFDakMsT0FBTyxFQUFFLFFBQVE7Z0JBQ2pCLHFCQUFxQixFQUFFLFFBQVE7Z0JBQy9CLE1BQU0sRUFBRyxRQUFRO2FBQ2xCO1NBQ0YsQ0FBQztRQUV1QixrQkFBYSxHQUFHLElBQUksWUFBWSxFQUFnQixDQUFDO1FBQ2xELGlCQUFZLEdBQUcsSUFBSSxZQUFZLEVBQVcsQ0FBQztRQUM5QyxjQUFTLEdBQUcsSUFBSSxZQUFZLEVBQWdCLENBQUM7UUFDdEMscUJBQWdCLEdBQUcsSUFBSSxZQUFZLEVBQVcsQ0FBQztRQUUzRSxpQkFBWSxHQUFVLENBQUMsRUFBRSxLQUFLLEVBQUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGNBQWMsQ0FBQyxjQUFjLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxFQUFFLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxjQUFjLENBQUMsYUFBYSxFQUFFLEtBQUssRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBU2pMLENBQUM7SUFFTCxRQUFRO1FBQ04sSUFBSSxDQUFDLGdCQUFnQixHQUFHLElBQUksQ0FBQyxjQUFjLENBQUMsdUJBQXVCLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLEVBQUUsa0JBQWtCLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDO1FBQ3JJLElBQUcsQ0FBQyxJQUFJLENBQUMsV0FBVyxFQUFFLGtCQUFrQixJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsa0JBQWtCLENBQUMsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLENBQUMsSUFBSyxDQUFDLElBQUksQ0FBQyxXQUFXLEVBQUUsZUFBZSxJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsZUFBZSxDQUFDLEtBQUssQ0FBQyxNQUFNLElBQUksQ0FBQyxDQUFDLEVBQUU7WUFDbE0sWUFBWTtTQUNiO2FBQU07WUFDTCxJQUFJLENBQUMsV0FBVyxHQUFFLElBQUksQ0FBQyxjQUFjLENBQUMsdUJBQXVCLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUE7U0FDNUY7UUFDRCxJQUFJLENBQUMsMEJBQTBCLEVBQUUsQ0FBQztJQUNwQyxDQUFDO0lBRUQsd0JBQXdCO1FBQ3RCLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQzNELElBQUksQ0FBQyxpQkFBaUIsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUM7UUFDdEUsSUFBRyxJQUFJLENBQUMsaUJBQWlCLENBQUMsWUFBWSxFQUFFO1lBQ3RDLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUM7U0FDckU7UUFFRCxJQUFHLENBQUMsSUFBSSxDQUFDLFdBQVcsRUFBRSxrQkFBa0IsSUFBSSxJQUFJLENBQUMsV0FBVyxFQUFFLGtCQUFrQixDQUFDLEtBQUssQ0FBQyxNQUFNLElBQUksQ0FBQyxDQUFDLElBQUssQ0FBQyxJQUFJLENBQUMsV0FBVyxFQUFFLGVBQWUsSUFBSSxJQUFJLENBQUMsV0FBVyxFQUFFLGVBQWUsQ0FBQyxLQUFLLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxFQUFFO1lBQ2xNLFlBQVk7U0FDYjthQUFNO1lBQ0wsSUFBSSxTQUFTLEdBQWlCO2dCQUM1QixJQUFJLEVBQUUsSUFBSSxDQUFDLFlBQVksRUFBRTtnQkFDekIsS0FBSyxFQUFFLElBQUksQ0FBQyxXQUFXLEVBQUUsZUFBZSxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsV0FBVyxFQUFFLGVBQWUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJO2dCQUN0RyxRQUFRLEVBQUUsSUFBSSxDQUFDLFdBQVcsRUFBRSxrQkFBa0IsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLFdBQVcsRUFBRSxrQkFBa0IsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJO2dCQUMvRyxPQUFPLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixJQUFJLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxZQUFZLElBQUksSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsRUFBRSxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUk7YUFDeEosQ0FBQTtZQUVDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxTQUFTLENBQUM7aUJBQ3BDLElBQUksQ0FBQyxDQUFDLEdBQUcsRUFBRSxFQUFFO2dCQUNaLFNBQVMsR0FBRyxJQUFJLENBQUMsd0JBQXdCLENBQUMsU0FBUyxDQUFDLENBQUM7Z0JBQ3JELFNBQVMsR0FBRyxJQUFJLENBQUMsc0JBQXNCLENBQUMsU0FBUyxDQUFDLENBQUM7Z0JBQ25ELElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDO1lBQ2pDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUU7Z0JBQ1gsSUFBSSxDQUFDLG9DQUFvQyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsQ0FBQztZQUMxRSxDQUFDLENBQUM7aUJBQ0QsSUFBSSxDQUFDLEdBQUcsRUFBRTtnQkFDVCxJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7WUFDekIsQ0FBQyxDQUFDLENBQUM7U0FDTjtJQUNILENBQUM7SUFFRCx5QkFBeUIsQ0FBQyxJQUFVLEVBQUUsT0FBK0I7UUFDbkUsSUFBRyxJQUFJLENBQUMsUUFBUSxJQUFJLElBQUksSUFBSSxJQUFJLENBQUMsS0FBSyxJQUFJLE1BQU0sRUFBRTtZQUNoRCxJQUFJLENBQUMsS0FBSyxHQUFHLENBQUMsQ0FBQztZQUNmLE9BQU8sSUFBSSxDQUFDLGtCQUFrQixDQUFDLHFCQUFzQixDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxZQUFZLENBQUM7U0FDckY7UUFDRCxJQUFHLElBQUksQ0FBQyxRQUFRLElBQUksUUFBUSxJQUFJLElBQUksQ0FBQyxLQUFLLElBQUksTUFBTSxFQUFFO1lBQ3BELElBQUksQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDO1lBQ2YsT0FBTyxJQUFJLENBQUMsa0JBQWtCLENBQUMscUJBQXNCLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLGVBQWUsQ0FBQztTQUN4RjtRQUNELE9BQU8sSUFBSSxDQUFDLGtCQUFrQixDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQztJQUN6RCxDQUFDO0lBRUQsb0JBQW9CLENBQUMsS0FBVTtRQUM3QixJQUFJLE9BQU8sSUFBSSxLQUFLLEVBQUU7WUFDcEIsS0FBSyxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFvQixFQUFFLEVBQUU7Z0JBQzNDLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztZQUNsQyxDQUFDLENBQUMsQ0FBQztTQUNKO2FBQU07WUFDTCxJQUFJLEtBQUssQ0FBQyxLQUFLLFlBQVksS0FBSyxJQUFJLEtBQUssQ0FBQyxLQUFLLENBQUMsTUFBTSxJQUFJLENBQUMsRUFBRTtnQkFDM0QsS0FBSyxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7YUFDcEI7U0FDRjtJQUNILENBQUM7SUFFRCxnQkFBZ0I7UUFDZCxJQUFJLENBQUMsZ0JBQWdCLEdBQUcsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUM7UUFDL0MsSUFBRyxJQUFJLENBQUMsZ0JBQWdCLEVBQUU7WUFDeEIsVUFBVSxDQUFDLEdBQUcsRUFBRTtnQkFDZCxJQUFJLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLENBQUE7WUFDOUQsQ0FBQyxFQUFFLElBQUksQ0FBQyxDQUFDO1NBQ1Y7SUFDSCxDQUFDO0lBRUQsc0JBQXNCLENBQUMsUUFBZ0M7UUFDckQsS0FBSyxNQUFNLEdBQUcsSUFBSSxRQUFRLEVBQUU7WUFDeEIsSUFBSSxRQUFRLENBQUMsY0FBYyxDQUFDLEdBQUcsQ0FBQyxFQUFFO2dCQUM5QixNQUFNLE9BQU8sR0FBRyxRQUFRLENBQUMsR0FBRyxDQUFDLENBQUM7Z0JBQzlCLElBQUksT0FBTyxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsVUFBVSxDQUFDLElBQUksT0FBTyxDQUFDLFlBQVksSUFBSSxJQUFJLEVBQUU7b0JBQ3hFLE9BQU8sQ0FBQyxZQUFZLEdBQUcsQ0FBQyxDQUFDO2lCQUM1QjthQUNKO1NBQ0o7SUFDSCxDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksT0FBTyxHQUFpQjtZQUMxQixJQUFJLEVBQUUsSUFBSSxDQUFDLFlBQVksRUFBRTtZQUN6QixLQUFLLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDO1lBQzdFLFFBQVEsRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSTtZQUN4RixPQUFPLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixJQUFJLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxFQUFFLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSTtTQUM5SCxDQUFBO1FBRUQsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUV4QixPQUFPLEdBQUcsSUFBSSxDQUFDLG1CQUFtQixDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBRTVDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxVQUFjLEVBQUUsRUFBRTtZQUMxRCxJQUFHLFVBQVUsQ0FBQyxJQUFJLElBQUksQ0FBQyxFQUFDO2dCQUN0QixJQUFJLENBQUMsNkJBQTZCLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDO2FBQ3RGO1FBQ0gsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsVUFBYyxFQUFFLEVBQUU7WUFDekIsSUFBSSxXQUFXLEdBQTJCO2dCQUN4QyxFQUFFLEVBQUUsSUFBSSxDQUFDLFFBQVE7Z0JBQ2pCLGVBQWUsRUFBRSxPQUFPLENBQUMsS0FBSztnQkFDOUIsa0JBQWtCLEVBQUUsT0FBTyxDQUFDLFFBQVE7Z0JBQ3BDLGlCQUFpQixFQUFFLE9BQU8sQ0FBQyxPQUFPO2FBQ25DLENBQUE7WUFDRCxJQUFJLENBQUMsb0JBQW9CLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBQzVFLElBQUcsV0FBVyxDQUFDLGtCQUFrQixJQUFJLFdBQVcsQ0FBQyxrQkFBa0IsQ0FBQyxLQUFLLElBQUksQ0FBQyxFQUFFO2dCQUM5RSxZQUFZO2FBQ2I7aUJBQU07Z0JBQ0wsSUFBSSxDQUFDLGNBQWMsQ0FBQyx1QkFBdUIsQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFLFdBQVcsQ0FBQyxDQUFDO2FBQ3pFO1lBQ0QsSUFBSSxDQUFDLGtDQUFrQyxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUM1RixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxVQUFlLEVBQUUsRUFBRTtZQUMxQixPQUFPLEdBQUcsSUFBSSxDQUFDLHdCQUF3QixDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQ2pELE9BQU8sR0FBRyxJQUFJLENBQUMsc0JBQXNCLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDL0MsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDbkMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsRUFBRTtZQUNYLElBQUksQ0FBQyxvQ0FBb0MsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDMUUsQ0FBQyxDQUFDO2FBQ0QsS0FBSyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUU7WUFDZixPQUFPLENBQUMsS0FBSyxDQUFDLHNCQUFzQixFQUFFLEtBQUssQ0FBQyxDQUFDO1FBQy9DLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELHFCQUFxQixDQUFDLE9BQVc7UUFDL0IsT0FBTyxJQUFJLE9BQU8sQ0FBQyxDQUFDLE9BQU8sRUFBRSxNQUFNLEVBQUUsRUFBRTtZQUNyQyxPQUFPLEdBQUcsSUFBSSxDQUFDLHNCQUFzQixDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQzdDLE9BQU8sQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUNyQixDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRCxjQUFjO1FBQ1osSUFBSSxDQUFDLHFCQUFxQixFQUFFLENBQUM7UUFDN0IsSUFBSSxDQUFDLGFBQWEsQ0FBQyxLQUFLLEdBQUcsRUFBRSxDQUFDO1FBQzlCLElBQUksQ0FBQyxZQUFZLENBQUMsS0FBSyxHQUFHLEVBQUUsQ0FBQztRQUM3QixJQUFJLENBQUMsY0FBYyxDQUFDLDBCQUEwQixDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQzdFLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQy9CLENBQUM7SUFFRCxzQkFBc0IsQ0FBQyxPQUFxQjtRQUMxQyxJQUFHLE9BQU8sQ0FBQyxRQUFRLElBQUksSUFBSSxJQUFJLE9BQU8sQ0FBQyxRQUFRLEVBQUUsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUU7WUFDbEUsT0FBTyxDQUFDLElBQUksR0FBRyxDQUFDLENBQUE7U0FDakI7UUFDRCxJQUFHLE9BQU8sQ0FBQyxLQUFLLElBQUksSUFBSSxJQUFJLE9BQU8sQ0FBQyxLQUFLLEVBQUUsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUU7WUFDNUQsT0FBTyxDQUFDLElBQUksR0FBRyxDQUFDLENBQUE7U0FDakI7UUFDRCxJQUFHLE9BQU8sQ0FBQyxPQUFPLElBQUksSUFBSSxJQUFJLE9BQU8sQ0FBQyxPQUFPLEVBQUUsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUU7WUFDaEUsT0FBTyxDQUFDLElBQUksR0FBRyxDQUFDLENBQUE7U0FDakI7UUFDRCxPQUFPLE9BQU8sQ0FBQztJQUNqQixDQUFDO0lBRUQsNkJBQTZCLENBQUMsS0FBVTtRQUN0QyxJQUFJLE9BQU8sSUFBSSxLQUFLLEVBQUU7WUFDcEIsS0FBSyxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFvQixFQUFFLEVBQUU7Z0JBQzNDLElBQUksQ0FBQyw2QkFBNkIsQ0FBQyxJQUFJLENBQUMsQ0FBQztZQUMzQyxDQUFDLENBQUMsQ0FBQztTQUNKO2FBQU07WUFDTCxJQUFJLEtBQUssQ0FBQyxRQUFRLEtBQUssWUFBWSxDQUFDLFFBQVEsSUFBSSxDQUFDLENBQUMsS0FBSyxDQUFDLFFBQVEsSUFBSSxJQUFJLElBQUksS0FBSyxDQUFDLFFBQVEsSUFBSSxRQUFRLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLElBQUksQ0FBQyxJQUFJLEtBQUssQ0FBQyxLQUFLLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRTtnQkFDbEosSUFBRyxLQUFLLENBQUMsS0FBSyxJQUFJLENBQUMsRUFBRTtvQkFDbkIsS0FBSyxDQUFDLFFBQVEsR0FBRyxRQUFRLENBQUM7aUJBQzNCO2dCQUNELElBQUcsS0FBSyxDQUFDLEtBQUssSUFBSSxDQUFDLEVBQUU7b0JBQ25CLEtBQUssQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDO2lCQUN2QjtnQkFDRCxLQUFLLENBQUMsS0FBSyxHQUFHLE1BQU0sQ0FBQzthQUN0QjtTQUNGO0lBQ0gsQ0FBQztJQUVELG9DQUFvQyxDQUFDLEtBQVU7UUFDN0MsSUFBSSxPQUFPLElBQUksS0FBSyxFQUFFO1lBQ3BCLEtBQUssQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBb0IsRUFBRSxFQUFFO2dCQUMzQyxJQUFJLENBQUMsb0NBQW9DLENBQUMsSUFBSSxDQUFDLENBQUM7WUFDbEQsQ0FBQyxDQUFDLENBQUM7U0FDSjthQUFNO1lBQ0wsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLElBQUksUUFBUSxJQUFJLEtBQUssQ0FBQyxRQUFRLElBQUksSUFBSSxDQUFDLElBQUksS0FBSyxDQUFDLEtBQUssSUFBSSxNQUFNLEVBQUU7Z0JBQ25GLElBQUcsS0FBSyxDQUFDLFFBQVEsSUFBSSxRQUFRLEVBQUU7b0JBQzdCLEtBQUssQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDO2lCQUNqQjtnQkFDRCxJQUFHLEtBQUssQ0FBQyxRQUFRLElBQUksSUFBSSxFQUFFO29CQUN6QixLQUFLLENBQUMsS0FBSyxHQUFHLENBQUMsQ0FBQztpQkFDakI7YUFDRjtTQUNGO0lBQ0gsQ0FBQztJQUVELGtDQUFrQyxDQUFDLEtBQVU7UUFDM0MsSUFBRyxJQUFJLENBQUMscUJBQXFCLENBQUMsTUFBTSxHQUFHLENBQUMsRUFBQztZQUN2QyxJQUFHLE9BQU8sSUFBSSxLQUFLLEVBQUM7Z0JBQ2xCLEtBQUssQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBb0IsRUFBRSxFQUFFO29CQUMzQyxJQUFJLENBQUMsa0NBQWtDLENBQUMsSUFBSSxDQUFDLENBQUM7Z0JBQ2hELENBQUMsQ0FBQyxDQUFDO2FBQ0o7aUJBQUk7Z0JBQ0gsSUFBSSxJQUFJLENBQUMscUJBQXFCLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsSUFBSSxLQUFLLENBQUMsS0FBSyxFQUFFO29CQUNuRSxNQUFNLFNBQVMsR0FBRyxJQUFJLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLENBQUM7b0JBQ3hDLE1BQU0sU0FBUyxHQUFHLElBQUksSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsU0FBUyxDQUFDLFdBQVcsRUFBRSxFQUFFLFNBQVMsQ0FBQyxRQUFRLEVBQUUsRUFBRSxTQUFTLENBQUMsT0FBTyxFQUFFLEVBQUUsU0FBUyxDQUFDLFFBQVEsRUFBRSxFQUFFLFNBQVMsQ0FBQyxVQUFVLEVBQUUsQ0FBQyxDQUFDLENBQUM7b0JBQ3ZKLEtBQUssQ0FBQyxLQUFLLEdBQUcsU0FBUyxDQUFDO2lCQUN6QjthQUNGO1NBQ0Y7SUFDSCxDQUFDO0lBRUQsNEJBQTRCLENBQUMsS0FBVTtRQUNyQyxJQUFHLElBQUksQ0FBQywwQkFBMEIsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxJQUFJLElBQUksQ0FBQyx1QkFBdUIsSUFBSSxLQUFLLEVBQUM7WUFDckYsSUFBSSxPQUFPLElBQUksS0FBSyxFQUFFO2dCQUNwQixLQUFLLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQW9CLEVBQUUsRUFBRTtvQkFDM0MsSUFBSSxDQUFDLDRCQUE0QixDQUFDLElBQUksQ0FBQyxDQUFDO2dCQUMxQyxDQUFDLENBQUMsQ0FBQztnQkFFSCxJQUFHLElBQUksQ0FBQywyQkFBMkIsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFDO29CQUM3QyxLQUFLLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQywyQkFBMkIsQ0FBQyxDQUFBO29CQUNyRCxLQUFLLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsR0FBTyxFQUFFLEVBQUUsQ0FBQyxHQUFHLENBQUMsS0FBSyxLQUFLLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO29CQUN6RixJQUFJLENBQUMsMkJBQTJCLEdBQUcsRUFBRSxDQUFDO2lCQUN2QzthQUNGO2lCQUFJO2dCQUNILElBQUksS0FBSyxDQUFDLEtBQUssSUFBSSxLQUFLLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxzQkFBc0IsSUFBSSxLQUFLLENBQUMsTUFBTSxJQUFJLElBQUksQ0FBQyx1QkFBdUIsRUFBRTtvQkFDN0csS0FBSyxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUMsS0FBSyxDQUFDO29CQUMxQixJQUFJLEtBQUssR0FBRyxFQUFFLENBQUM7b0JBRWYsSUFBRyxLQUFLLENBQUMsS0FBSyxDQUFDLFFBQVEsSUFBSSxzQkFBc0IsQ0FBQyxVQUFVLEVBQUM7d0JBQzNELEtBQUssR0FBRzs0QkFDTjtnQ0FDRSxLQUFLLEVBQUUsSUFBSSxDQUFDLDBCQUEwQixDQUFDLHNCQUFzQixDQUFDLFVBQVUsR0FBRyxDQUFDLENBQUM7Z0NBQzdFLFFBQVEsRUFBRSxHQUFHO2dDQUNiLEtBQUssRUFBRSxLQUFLLENBQUMsS0FBSyxDQUFDLElBQUk7Z0NBQ3ZCLE1BQU0sRUFBRSxJQUFJLENBQUMsdUJBQXVCOzZCQUNyQzt5QkFDRixDQUFDO3FCQUNIO3lCQUFJO3dCQUNILEtBQUssR0FBRzs0QkFDTjtnQ0FDRSxLQUFLLEVBQUUsSUFBSSxDQUFDLDBCQUEwQixDQUFDLHNCQUFzQixDQUFDLFVBQVUsR0FBRyxDQUFDLENBQUM7Z0NBQzdFLFFBQVEsRUFBRSxHQUFHO2dDQUNiLEtBQUssRUFBRSxLQUFLLENBQUMsS0FBSyxDQUFDLGVBQWU7Z0NBQ2xDLE1BQU0sRUFBRSxJQUFJLENBQUMsdUJBQXVCOzZCQUNyQzs0QkFDRDtnQ0FDRSxLQUFLLEVBQUUsSUFBSSxDQUFDLDBCQUEwQixDQUFDLHNCQUFzQixDQUFDLEtBQUssR0FBRyxDQUFDLENBQUM7Z0NBQ3hFLFFBQVEsRUFBRSxHQUFHO2dDQUNiLEtBQUssRUFBRSxLQUFLLENBQUMsS0FBSyxDQUFDLElBQUk7Z0NBQ3ZCLE1BQU0sRUFBRSxJQUFJLENBQUMsdUJBQXVCOzZCQUNyQzt5QkFDRixDQUFDO3FCQUNIO29CQUNELElBQUksQ0FBQywyQkFBMkIsQ0FBQyxJQUFJLENBQUMsR0FBRyxLQUFLLENBQUMsQ0FBQztpQkFDakQ7YUFDRjtZQUNELE9BQU8sS0FBSyxDQUFDO1NBQ2Q7SUFDSCxDQUFDO0lBRUQsWUFBWTtRQUNWLElBQUcsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLEVBQUU7WUFDekIsT0FBTyxlQUFlLENBQUMsS0FBSyxDQUFDO1NBQzlCO2FBQU07WUFDTCxJQUFHLElBQUksQ0FBQyxnQkFBZ0IsSUFBSSxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsS0FBSyxFQUFFO2dCQUN4RCxPQUFPLGVBQWUsQ0FBQyxPQUFPLENBQUE7YUFDL0I7aUJBQU07Z0JBQ0wsT0FBTyxlQUFlLENBQUMsUUFBUSxDQUFDO2FBQ2pDO1NBQ0Y7SUFDSCxDQUFDO0lBRUQsU0FBUyxDQUFDLE9BQXFCO1FBQzdCLElBQUcsSUFBSSxDQUFDLFlBQVksRUFBRSxJQUFJLGVBQWUsQ0FBQyxLQUFLLEVBQUU7WUFDL0MsT0FBTyxDQUFDLEtBQU0sQ0FBQyxLQUFLLEdBQUcsT0FBTyxDQUFDLEtBQU0sQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBSyxFQUFFLEVBQUU7Z0JBQ3hELE9BQU87b0JBQ0wsS0FBSyxFQUFFLENBQUMsQ0FBQyxLQUFLO29CQUNkLFFBQVEsRUFBRSxDQUFDLENBQUMsUUFBUTtvQkFDcEIsS0FBSyxFQUFFLENBQUMsQ0FBQyxLQUFLO29CQUNkLE1BQU0sRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxhQUFhLElBQUksQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLE1BQU07aUJBQ25FLENBQUE7WUFDSCxDQUFDLENBQUMsQ0FBQTtTQUNIO0lBQ0gsQ0FBQztJQUVELDBCQUEwQjtRQUN4QixJQUFJLENBQUMsVUFBVSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLEtBQUssRUFBRSxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsSUFBSSxDQUFDLGVBQWUsRUFBRSxJQUFJLENBQUMsUUFBUSxFQUFFLElBQUksQ0FBQyxhQUFhLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQzthQUNoSyxTQUFTLENBQUMsQ0FBQyxhQUE0QixFQUFFLEVBQUU7WUFDMUMsSUFBSSxDQUFDLGlCQUFpQixHQUFHLGFBQWEsQ0FBQztZQUN2QyxJQUFJLGNBQWMsR0FBYSxhQUFhLENBQUMsZUFBZSxDQUFDLE1BQU0sQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQyxHQUFHLENBQUMsWUFBWSxDQUFDLEVBQUUsQ0FBQyxZQUFZLENBQUMsZUFBZSxDQUFDLENBQUM7WUFDMUosSUFBSSxpQkFBaUIsR0FBYSxhQUFhLENBQUMsZUFBZSxDQUFDLE1BQU0sQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDLEdBQUcsQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDLFlBQVksQ0FBQyxlQUFlLENBQUMsQ0FBQztZQUM5SixJQUFJLENBQUMsYUFBYSxHQUFHLGFBQWEsQ0FBQyxlQUFlLENBQUMsR0FBRyxDQUFDLFlBQVksQ0FBQyxFQUFFO2dCQUNwRSxPQUFPO29CQUNMLGVBQWUsRUFBRSxZQUFZLENBQUMsZUFBZTtvQkFDN0MsS0FBSyxFQUFFLFlBQVksQ0FBQyxLQUFLO29CQUN6QixZQUFZLEVBQUUsSUFBSSxDQUFDLG1CQUFtQixDQUFDLFlBQVksQ0FBQyxZQUFZLENBQUM7aUJBQ2xFLENBQUE7WUFDSCxDQUFDLENBQUMsQ0FBQTtZQUNGLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxZQUFZLElBQUksSUFBSSxDQUFDLENBQUMsQ0FBQztZQUNuRixJQUFJLENBQUMsZ0JBQWdCLEdBQUcsYUFBYSxDQUFDLGVBQWUsQ0FBQyxHQUFHLENBQUMsWUFBWSxDQUFDLEVBQUU7Z0JBQ3ZFLE9BQU87b0JBQ0wsZUFBZSxFQUFFLFlBQVksQ0FBQyxlQUFlO29CQUM3QyxpQkFBaUIsRUFBRSxZQUFZLENBQUMsaUJBQWlCO2lCQUNsRCxDQUFBO1lBQ0gsQ0FBQyxDQUFDLENBQUE7WUFDRixJQUFJLFlBQVksR0FBcUIsYUFBYSxDQUFDLGVBQWUsQ0FBQyxHQUFHLENBQUMsWUFBWSxDQUFDLEVBQUU7Z0JBQ3BGLE9BQU87b0JBQ0wsRUFBRSxFQUFFLFlBQVksQ0FBQyxhQUFhLENBQUMsY0FBYyxDQUFDLEVBQUU7b0JBQ2hELEtBQUssRUFBRSxZQUFZLENBQUMsS0FBSztvQkFDekIsSUFBSSxFQUFFLFlBQVksQ0FBQyxhQUFhLENBQUMsY0FBYyxDQUFDLElBQUk7b0JBQ3BELFFBQVEsRUFBRSxZQUFZLENBQUMsYUFBYSxDQUFDLGNBQWMsQ0FBQyxRQUFRO29CQUM1RCxNQUFNLEVBQUUsRUFBRTtpQkFDWCxDQUFBO1lBQ0gsQ0FBQyxDQUFDLENBQUM7WUFFSCxJQUFJLFlBQVksR0FBa0IsYUFBYSxDQUFDLGVBQWUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsYUFBYSxDQUFDLENBQUM7WUFDMUYsWUFBWSxDQUFDLE9BQU8sQ0FBQyxDQUFDLE1BQXNCLEVBQUUsS0FBYSxFQUFFLEVBQUU7Z0JBQzVELElBQUksTUFBTSxHQUFHLFlBQVksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsY0FBYyxDQUFDLEVBQUUsSUFBSSxNQUFNLENBQUMsRUFBRSxDQUFDLENBQUM7Z0JBQ3hFLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFFO1lBQ3hDLENBQUMsQ0FBQyxDQUFBO1lBRUYsSUFBSSxDQUFDLGdCQUFnQixHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxZQUFZLEVBQUUsSUFBSSxDQUFDLENBQUM7WUFDbEUsSUFBSSxDQUFDLGdCQUFnQixHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsY0FBYyxDQUFDLENBQUM7WUFDckYsSUFBSSxDQUFDLGdCQUFnQixDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxNQUFNLENBQUMsQ0FBQztZQUNsRixJQUFJLENBQUMsbUJBQW1CLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDLFlBQVksRUFBRSxLQUFLLENBQUMsQ0FBQztZQUN0RSxJQUFJLENBQUMsbUJBQW1CLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxtQkFBbUIsRUFBRSxpQkFBaUIsQ0FBQyxDQUFDO1lBQzlGLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsbUJBQW1CLENBQUMsTUFBTSxDQUFDLENBQUM7WUFDeEYsSUFBSSxLQUFLLEdBQUcsTUFBTSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsTUFBTSxDQUFDO2lCQUNsRCxHQUFHLENBQUMsUUFBUSxDQUFDLEVBQUU7Z0JBQ2QsSUFBSSxlQUFlLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDLFFBQVEsQ0FBQyxlQUFlLElBQUksSUFBSSxDQUFDLGdCQUFnQixDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQyxFQUFFLElBQUksUUFBUSxDQUFDLGlCQUFpQixJQUFJLElBQUksQ0FBQyxDQUFDO2dCQUMxSyxPQUFPO29CQUNMLEtBQUssRUFBRSxRQUFRO29CQUNmLEtBQUssRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDLFlBQWE7b0JBQzNELFFBQVEsRUFBRSxlQUFlLENBQUMsQ0FBQyxDQUFDLGVBQWUsQ0FBQyxpQkFBaUIsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLElBQUk7aUJBQzVFLENBQUE7WUFDSCxDQUFDLENBQUMsQ0FBQztZQUVILElBQUcsSUFBSSxDQUFDLFdBQVcsSUFBSSxJQUFJLENBQUMsV0FBVyxFQUFFLEVBQUUsSUFBSSxJQUFJLENBQUMsUUFBUSxJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsZUFBZSxJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsZUFBZSxDQUFDLEtBQUssQ0FBQyxNQUFNLElBQUksQ0FBQyxFQUFFO2dCQUN4SixJQUFJLENBQUMsVUFBVSxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsZUFBZSxDQUFDO2FBQ3BEO2lCQUFNO2dCQUNMLElBQUksQ0FBQyxVQUFVLEdBQUc7b0JBQ2hCLFNBQVMsRUFBRSxLQUFLO29CQUNoQixLQUFLLEVBQUUsS0FBSztpQkFDYixDQUFDO2FBQ0g7WUFDRCxJQUFHLElBQUksQ0FBQyxXQUFXLElBQUksSUFBSSxDQUFDLFdBQVcsRUFBRSxFQUFFLElBQUksSUFBSSxDQUFDLFFBQVEsSUFBSSxJQUFJLENBQUMsV0FBVyxFQUFFLGtCQUFrQixJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsa0JBQWtCLENBQUMsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUU7Z0JBQzlKLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxrQkFBa0IsQ0FBQzthQUMxRDtpQkFBTTtnQkFDTCxJQUFJLENBQUMsYUFBYSxHQUFHO29CQUNuQixTQUFTLEVBQUUsS0FBSztvQkFDaEIsS0FBSyxFQUFFLEVBQUU7aUJBQ1YsQ0FBQzthQUNIO1lBRUgsSUFBSSxDQUFDLGdCQUFnQixHQUFHLElBQUksQ0FBQztZQUM3QixJQUFJLENBQUMsd0JBQXdCLEVBQUUsQ0FBQztRQUNsQyxDQUFDLENBQUMsQ0FBQTtJQUNOLENBQUM7SUFFRCxtQkFBbUIsQ0FBQyxLQUFVO1FBQzVCLElBQUcsS0FBSyxJQUFJLHlCQUF5QixFQUFFO1lBQ3JDLE9BQU8sQ0FBQyxDQUFDO1NBQ1Y7UUFFRCxJQUFHLEtBQUssSUFBSSw0QkFBNEIsRUFBRTtZQUN4QyxPQUFPLENBQUMsQ0FBQztTQUNWO1FBRUQsSUFBRyxLQUFLLElBQUksR0FBRyxFQUFFO1lBQ2YsT0FBTyxDQUFDLENBQUM7U0FDVjtRQUVELElBQUcsS0FBSyxJQUFJLEdBQUcsRUFBRTtZQUNmLE9BQU8sQ0FBQyxDQUFDO1NBQ1Y7UUFDRCxJQUFHLEtBQUssSUFBSSxpQkFBaUIsRUFBRTtZQUM3QixPQUFPLElBQUksSUFBSSxDQUFDLElBQUksSUFBSSxDQUFDLElBQUksSUFBSSxFQUFFLENBQUMsV0FBVyxFQUFFLEVBQUUsSUFBSSxJQUFJLEVBQUUsQ0FBQyxRQUFRLEVBQUUsRUFBRSxJQUFJLElBQUksRUFBRSxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsRUFBQyxDQUFDLEVBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztTQUN6RztRQUNELElBQUcsS0FBSyxJQUFJLGVBQWUsRUFBRTtZQUMzQixPQUFPLElBQUksSUFBSSxDQUFDLElBQUksSUFBSSxDQUFDLElBQUksSUFBSSxFQUFFLENBQUMsV0FBVyxFQUFFLEVBQUUsSUFBSSxJQUFJLEVBQUUsQ0FBQyxRQUFRLEVBQUUsRUFBRSxJQUFJLElBQUksRUFBRSxDQUFDLE9BQU8sRUFBRSxFQUFFLEVBQUUsRUFBQyxFQUFFLEVBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQztTQUM1RztRQUNELE9BQU8sS0FBSyxDQUFDO0lBQ2YsQ0FBQztJQUVELGdCQUFnQixDQUFDLGNBQWdDLEVBQUUsT0FBZ0I7UUFDakUsSUFBSSxlQUFlLEdBQXVCLEVBQUUsTUFBTSxFQUFFLEVBQUUsRUFBRSxDQUFDO1FBQ3pELElBQUksYUFBYSxHQUFnQixFQUFFLENBQUM7UUFFcEMsY0FBYyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxLQUFLLEVBQUUsRUFBRTtZQUM5QixJQUFJLE1BQU0sR0FBVyxFQUFFLElBQUksRUFBRSxDQUFDLENBQUMsUUFBUSxFQUFFLENBQUM7WUFDMUMsT0FBTyxhQUFhLENBQUMsS0FBSyxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsRUFBRSxNQUFNLEVBQUUsQ0FBQztRQUN6RCxDQUFDLENBQUMsQ0FBQztRQUVILElBQUksV0FBVyxHQUFjLEVBQUUsQ0FBQztRQUVoQyxLQUFLLE1BQU0sTUFBTSxJQUFJLGFBQWEsRUFBRTtZQUNsQyxNQUFNLElBQUksR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1lBRWpDLElBQUksQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLEVBQUU7Z0JBQ2pCLElBQUcsSUFBSSxDQUFDLGtCQUFrQixDQUFDLFFBQVEsRUFBRTtvQkFDbkMsSUFBSSx3QkFBd0IsR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxRQUFRLENBQUMsQ0FBQztvQkFDN0UsSUFBSSxXQUFXLEdBQUcsd0JBQXdCLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxFQUFFLENBQUMsY0FBYyxJQUFJLEdBQUcsQ0FBQyxDQUFDO29CQUN6RixJQUFHLFdBQVcsRUFBRTt3QkFDZCxXQUFXLENBQUMsR0FBRyxDQUFDLEdBQUcsRUFBRSxJQUFJLEVBQUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFBO3FCQUNuRTt5QkFBTTt3QkFDTCxXQUFXLENBQUMsR0FBRyxDQUFDLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFBO3FCQUMvQjtpQkFDRjtxQkFBTTtvQkFDTCxXQUFXLENBQUMsR0FBRyxDQUFDLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFBO2lCQUMvQjtZQUNILENBQUMsQ0FBQyxDQUFDO1lBRUgsZUFBZSxDQUFDLFFBQVEsR0FBRyxXQUFXLENBQUM7U0FDeEM7UUFFRCxJQUFJLE1BQU0sR0FBZSxFQUFFLENBQUM7UUFDNUIsY0FBYyxDQUFDLE9BQU8sQ0FBQyxDQUFDLFlBQVksRUFBRSxFQUFFO1lBQ3RDLE9BQU8sWUFBWSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQyxXQUF3QixFQUFFLEVBQUU7Z0JBQzdELElBQUksS0FBSyxHQUFXLE1BQU0sQ0FBQyxNQUFNLElBQUksQ0FBQyxDQUFDO2dCQUN2QyxJQUFJLGtCQUFrQixHQUFHLFdBQVcsQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBSyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLENBQUM7Z0JBQ3hFLElBQUksZUFBZSxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLEVBQUUsQ0FBQyxRQUFRLENBQUMsZUFBZSxJQUFJLFdBQVcsQ0FBQyxFQUFFLENBQUMsQ0FBQztnQkFDekcsSUFBSSxLQUFLLEdBQVU7b0JBQ2pCLEVBQUUsRUFBRSxXQUFXLENBQUMsRUFBRTtvQkFDbEIsSUFBSSxFQUFFLFdBQVcsQ0FBQyxJQUFJO29CQUN0QixTQUFTLEVBQUUsZUFBZSxDQUFDLGlCQUFpQixFQUFFLE1BQU0sQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLHVCQUF1QixDQUFDLGtCQUFrQixFQUFFLGVBQWUsQ0FBQyxpQkFBaUIsRUFBRSxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUMsa0JBQWtCO29CQUN2SyxJQUFJLEVBQUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDO29CQUM1QyxZQUFZLEVBQUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsS0FBSyxDQUFDLGVBQWUsSUFBSSxXQUFXLENBQUMsRUFBRSxJQUFJLEtBQUssQ0FBQyxLQUFLLElBQUksT0FBTyxDQUFDLEVBQUUsWUFBWSxFQUFFLFdBQVcsQ0FBQyxRQUFRLENBQUM7b0JBQzlLLGVBQWUsRUFBRSxlQUFlLENBQUMsaUJBQWlCLEVBQUUsTUFBTTtvQkFDMUQsTUFBTSxFQUFFLFlBQVksQ0FBQyxRQUFRO29CQUM3QixPQUFPLEVBQUUsV0FBVyxDQUFDLFlBQVk7b0JBQ2pDLFNBQVMsRUFBRSxDQUFDLElBQVUsRUFBRSxNQUFlLEVBQWMsRUFBRTt3QkFDckQsSUFBSSxJQUFJLENBQUMsUUFBUSxLQUFLLFNBQVMsSUFBSSxJQUFJLENBQUMsUUFBUSxLQUFLLGFBQWEsRUFBRTs0QkFDbEUsSUFBSSxJQUFJLENBQUMsS0FBSyxLQUFLLFNBQVMsSUFBSSxJQUFJLENBQUMsS0FBSyxLQUFLLElBQUksSUFBSSxJQUFJLENBQUMsS0FBSyxLQUFLLEVBQUUsSUFBSSxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUU7Z0NBQ2xHLE9BQU8sRUFBRSxRQUFRLEVBQUUsYUFBYSxFQUFFLENBQUM7NkJBQ3BDO3lCQUNGO3dCQUNELE9BQU8sSUFBSSxDQUFDO29CQUNkLENBQUM7aUJBQ0YsQ0FBQTtnQkFDRCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxFQUFDLGFBQWEsRUFBRSxXQUFXLENBQUMsUUFBUSxFQUFFLE1BQU0sRUFBRSxLQUFLLENBQUMsTUFBTSxFQUFDLENBQUMsQ0FBQztnQkFDaEYsTUFBTSxDQUFDLEtBQUssQ0FBQyxHQUFHLEVBQUUsQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLEVBQUUsS0FBSyxFQUFFLENBQUM7WUFDcEQsQ0FBQyxDQUFDLENBQUM7UUFDTCxDQUFDLENBQUMsQ0FBQztRQUVILElBQUksU0FBUyxHQUFhLEVBQUUsQ0FBQztRQUU3QixLQUFLLE1BQU0sS0FBSyxJQUFJLE1BQU0sRUFBRTtZQUMxQixNQUFNLElBQUksR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1lBQ2hDLElBQUksQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLEVBQUU7Z0JBQ2pCLFNBQVMsQ0FBQyxHQUFHLENBQUMsR0FBRyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUM7WUFDOUIsQ0FBQyxDQUFDLENBQUM7WUFFSCxlQUFlLENBQUMsTUFBTSxHQUFHLFNBQVMsQ0FBQztTQUNwQztRQUNELE9BQU8sZUFBZSxDQUFDO0lBQ3pCLENBQUM7SUFFRCxnQkFBZ0IsQ0FBQyxTQUFjLEVBQUUsT0FBaUI7UUFDaEQsTUFBTSxjQUFjLEdBQVEsRUFBRSxDQUFDO1FBRS9CLEtBQUssTUFBTSxHQUFHLElBQUksU0FBUyxDQUFDLE1BQU0sRUFBRTtZQUNsQyxNQUFNLEtBQUssR0FBRyxTQUFTLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFDO1lBQ3BDLElBQUksT0FBTyxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLEVBQUU7Z0JBQzlCLGNBQWMsQ0FBQyxHQUFHLENBQUMsR0FBRyxLQUFLLENBQUM7YUFDN0I7U0FDRjtRQUVELE9BQU87WUFDTCxHQUFHLFNBQVM7WUFDWixNQUFNLEVBQUUsY0FBYztTQUN2QixDQUFDO0lBQ0osQ0FBQztJQUVELGVBQWUsQ0FBQyxNQUFnQjtRQUM5QixLQUFLLE1BQU0sR0FBRyxJQUFJLE1BQU0sRUFBRTtZQUN4QixJQUFJLE1BQU0sQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLEVBQUU7Z0JBQzlCLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLEdBQUcsR0FBRyxDQUFDO2dCQUN4QixNQUFNLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLENBQUM7YUFDeEQ7U0FDRjtRQUNELE9BQU8sTUFBTSxDQUFDO0lBQ2hCLENBQUM7SUFFRCx1QkFBdUIsQ0FBQyxLQUFZLEVBQUUsbUJBQTJCO1FBQy9ELE1BQU0sS0FBSyxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUMsbUJBQW1CLENBQUMsQ0FBQztRQUNqRCxJQUFJLEtBQUssS0FBSyxDQUFDLENBQUMsRUFBRTtZQUNoQixLQUFLLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQztZQUN2QixLQUFLLENBQUMsT0FBTyxDQUFDLG1CQUFtQixDQUFDLENBQUM7U0FDcEM7UUFDRCxPQUFPLEtBQUssQ0FBQztJQUNmLENBQUM7SUFFRCxrQkFBa0IsQ0FBQyxLQUFVLEVBQUUsSUFBb0I7UUFDakQsSUFBRyxLQUFLLEVBQUU7WUFDUixJQUFHLElBQUksSUFBSSxjQUFjLENBQUMsT0FBTyxFQUFFO2dCQUNqQyxPQUFPLEtBQUssQ0FBQyxXQUFXLEVBQUUsS0FBSyxNQUFNLENBQUM7YUFDdkM7WUFDRCxJQUFHLElBQUksSUFBSSxJQUFJLENBQUMsY0FBYyxDQUFDLE1BQU0sSUFBSSxJQUFJLElBQUksSUFBSSxDQUFDLGNBQWMsQ0FBQyxPQUFPLElBQUksSUFBSSxJQUFJLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxFQUFDO2dCQUMvRyxPQUFPLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQzthQUN0QjtZQUNELElBQUcsSUFBSSxJQUFJLElBQUksQ0FBQyxjQUFjLENBQUMsY0FBYyxFQUFFO2dCQUM3QyxPQUFPLENBQUMsQ0FBQzthQUNWO1lBQ0QsSUFBRyxJQUFJLElBQUksSUFBSSxDQUFDLGNBQWMsQ0FBQyxhQUFhLEVBQUU7Z0JBQzVDLE9BQU8sQ0FBQyxDQUFDO2FBQ1Y7WUFDRCxJQUFHLElBQUksSUFBSSxJQUFJLENBQUMsY0FBYyxDQUFDLFdBQVcsRUFBRTtnQkFDMUMsT0FBTyxJQUFJLENBQUMsd0JBQXdCLENBQUMsS0FBSyxDQUFDLENBQUM7YUFDN0M7WUFDRCxJQUFHLElBQUksSUFBSSxJQUFJLENBQUMsY0FBYyxDQUFDLGdCQUFnQixFQUFFO2dCQUMvQyxPQUFPLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQzthQUN0QjtTQUNGO1FBQ0QsT0FBTyxLQUFLLENBQUM7SUFDZixDQUFDO0lBRUQsd0JBQXdCLENBQUMsS0FBYTtRQUNwQyxPQUFPLEtBQUs7YUFDVCxLQUFLLENBQUMsR0FBRyxDQUFDO2FBQ1YsR0FBRyxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDO2FBQzlCLE1BQU0sQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUM7SUFDbEMsQ0FBQztJQUVDLFdBQVcsQ0FBQyxFQUFVO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxLQUFLLEtBQUssRUFBRSxDQUFDLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxDQUFDO0lBQ3hFLENBQUM7SUFFRCx3QkFBd0IsQ0FBQyxJQUFTO1FBQ2hDLElBQUksSUFBSSxDQUFDLEtBQUssSUFBSSxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssRUFBRTtZQUNsQyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFTLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxLQUFLLElBQUksSUFBSSxDQUFDLENBQUM7WUFDOUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBUyxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsS0FBSyxJQUFJLFNBQVMsQ0FBQyxDQUFDO1lBQ25GLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQVMsRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLEtBQUssS0FBSyxFQUFFLENBQUMsQ0FBQztZQUM3RSxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFTLEVBQUUsRUFBRSxHQUFHLE9BQU8sQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLEtBQUssVUFBVSxJQUFJLElBQUksQ0FBQyxLQUFLLEtBQUssTUFBTSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztTQUNqSTtRQUNELElBQUcsSUFBSSxDQUFDLFFBQVEsSUFBSSxJQUFJLENBQUMsUUFBUSxDQUFDLEtBQUssRUFBRSxNQUFNLElBQUksQ0FBQyxFQUFFO1lBQ3BELElBQUksQ0FBQyxRQUFRLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQVMsRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLEtBQUssRUFBRSxNQUFNLElBQUksQ0FBQyxDQUFDLENBQUM7U0FDMUY7UUFDRCxJQUFHLElBQUksQ0FBQyxPQUFPLElBQUksSUFBSSxDQUFDLE9BQU8sRUFBRSxLQUFLLENBQUMsTUFBTSxJQUFJLENBQUMsRUFBRTtZQUNsRCxJQUFJLENBQUMsT0FBTyxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFTLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDO1NBQ3hGO1FBQ0QsSUFBRyxJQUFJLENBQUMsT0FBTyxJQUFJLElBQUksQ0FBQyxPQUFPLEVBQUUsS0FBSyxDQUFDLE1BQU0sSUFBSSxDQUFDLEVBQUU7WUFDbEQsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUM7U0FDckI7UUFDRCxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFFRCxtQkFBbUIsQ0FBQyxJQUFTO1FBQzNCLElBQUksSUFBSSxDQUFDLEtBQUssSUFBSSxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssRUFBRTtZQUNsQyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFRLEVBQUUsRUFBRTtnQkFDcEMsSUFBRyxDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUU7b0JBQ2pCLElBQUksQ0FBQyxRQUFRLEdBQUcsR0FBRyxDQUFDO2lCQUNyQjtZQUNILENBQUMsQ0FBQyxDQUFDO1NBQ0o7UUFDRCxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFFRCxxQkFBcUI7UUFDbkIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLENBQUMsSUFBVSxFQUFFLEVBQUU7WUFDM0MsSUFBRyxJQUFJLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxLQUFLLElBQUksQ0FBQyxFQUFDO2dCQUMvQixJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQTthQUNsQjtRQUNILENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELGlCQUFpQixDQUFDLFNBQWlCLEVBQUUsTUFBZ0I7UUFDbkQsTUFBTSxVQUFVLEdBQUcsTUFBTSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLENBQUMsS0FBSyxLQUFLLFNBQVMsQ0FBQyxDQUFDO1FBRXBGLE9BQU8sVUFBVSxJQUFJLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztJQUNyRixDQUFDO0lBRUQsd0JBQXdCLENBQUMsT0FBK0I7UUFDdEQsT0FBTyxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUMsTUFBNEIsRUFBRSxFQUFFO1lBQ2xELE9BQU87Z0JBQ0wsSUFBSSxFQUFFLE1BQU0sQ0FBQyxLQUFLLEtBQUssQ0FBQyxDQUFDLENBQUM7b0JBQ3hCLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxxQkFBc0IsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsZUFBZSxDQUFDLENBQUM7b0JBQzdFLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxxQkFBc0IsQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsWUFBWTtnQkFDMUUsS0FBSyxFQUFFLE1BQU0sQ0FBQyxLQUFLO2FBQ3BCLENBQUE7UUFDSCxDQUFDLENBQUMsQ0FBQTtJQUNKLENBQUM7SUFFRCx1QkFBdUIsQ0FBQyxPQUE4QjtRQUNwRCxPQUFPLE9BQU8sQ0FBQyxHQUFHLENBQUMsQ0FBQyxNQUEyQixFQUFFLEVBQUU7WUFDakQsT0FBTztnQkFDTCxJQUFJLEVBQUUsTUFBTSxDQUFDLEtBQUssS0FBSyxDQUFDLENBQUMsQ0FBQztvQkFDeEIsSUFBSSxDQUFDLGtCQUFrQixDQUFDLG9CQUFxQixDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxlQUFlLENBQUMsQ0FBQztvQkFDNUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLG9CQUFxQixDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxZQUFZO2dCQUN6RSxLQUFLLEVBQUUsTUFBTSxDQUFDLEtBQUs7YUFDcEIsQ0FBQTtRQUNILENBQUMsQ0FBQyxDQUFBO0lBQ0osQ0FBQztJQUVELDBCQUEwQixDQUFDLE9BQWlDO1FBQzFELE9BQU8sT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDLE1BQThCLEVBQUUsRUFBRTtZQUNwRCxPQUFPO2dCQUNMLElBQUksRUFBRSxJQUFJLENBQUMsa0JBQWtCLENBQUMsdUJBQXdCLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUMsV0FBVyxFQUFFLEdBQUcsTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxNQUFNLENBQUMsSUFBSTtnQkFDakksS0FBSyxFQUFFLE1BQU0sQ0FBQyxLQUFLO2FBQ3BCLENBQUE7UUFDSCxDQUFDLENBQUMsQ0FBQTtJQUNKLENBQUM7SUFFRCxjQUFjLENBQUMsU0FBaUIsRUFBRSxNQUFnQjtRQUNoRCxNQUFNLFVBQVUsR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLEtBQUssU0FBUyxDQUFDLENBQUM7UUFFcEYsT0FBTyxNQUFNLENBQUMsVUFBVyxDQUFDLENBQUMsSUFBSSxJQUFJLGNBQWMsQ0FBQyxPQUFPLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDO0lBQ3RGLENBQUM7SUFFRCxhQUFhLENBQUMsSUFBVTtRQUN0QixJQUFHLElBQUksQ0FBQyxRQUFRLElBQUksSUFBSSxJQUFJLElBQUksQ0FBQyxRQUFRLElBQUksUUFBUSxJQUFJLElBQUksQ0FBQyxRQUFRLElBQUksU0FBUyxJQUFJLElBQUksQ0FBQyxRQUFRLElBQUksYUFBYSxFQUFFO1lBQ3JILElBQUcsSUFBSSxDQUFDLEtBQUssRUFBRTtnQkFDYixJQUFHLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLEVBQUU7b0JBQzdCLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDO2lCQUNuQjthQUNGO1lBQ0QsT0FBTyxJQUFJLENBQUM7U0FDYjthQUFNO1lBQ0wsSUFBRyxJQUFJLENBQUMsS0FBSyxFQUFFO2dCQUNiLElBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDO29CQUM1QixJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQzthQUNuQjtZQUNELE9BQU8sS0FBSyxDQUFDO1NBQ2Q7SUFDSCxDQUFDO0lBRUQsaUJBQWlCLENBQUMsS0FBYTtRQUM3QixPQUFPLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxNQUFNLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUE7SUFDcEcsQ0FBQzs7a0hBeHVCVSxxQkFBcUI7c0dBQXJCLHFCQUFxQixnaENDdEJsQyxtOWhDQTJYQTsyRkRyV2EscUJBQXFCO2tCQUxqQyxTQUFTOytCQUNFLGdCQUFnQjsrSkFzQ1QsbUJBQW1CO3NCQUFuQyxLQUFLO3VCQUFDLFFBQVE7Z0JBQ1ksZ0JBQWdCO3NCQUExQyxLQUFLO3VCQUFDLGtCQUFrQjtnQkFDSSxrQkFBa0I7c0JBQTlDLEtBQUs7dUJBQUMsb0JBQW9CO2dCQUNFLGtCQUFrQjtzQkFBOUMsS0FBSzt1QkFBQyxvQkFBb0I7Z0JBQ1gsS0FBSztzQkFBcEIsS0FBSzt1QkFBQyxPQUFPO2dCQUNZLGVBQWU7c0JBQXhDLEtBQUs7dUJBQUMsaUJBQWlCO2dCQUNJLGlCQUFpQjtzQkFBNUMsS0FBSzt1QkFBQyxtQkFBbUI7Z0JBQ1AsUUFBUTtzQkFBMUIsS0FBSzt1QkFBQyxVQUFVO2dCQUNtQix5QkFBeUI7c0JBQTVELEtBQUs7dUJBQUMsMkJBQTJCO2dCQUNmLFFBQVE7c0JBQTFCLEtBQUs7dUJBQUMsVUFBVTtnQkFDTyxhQUFhO3NCQUFwQyxLQUFLO3VCQUFDLGVBQWU7Z0JBQ1UscUJBQXFCO3NCQUFwRCxLQUFLO3VCQUFDLHVCQUF1QjtnQkFDTywwQkFBMEI7c0JBQTlELEtBQUs7dUJBQUMsNEJBQTRCO2dCQUNELHVCQUF1QjtzQkFBeEQsS0FBSzt1QkFBQyx5QkFBeUI7Z0JBRUgsa0JBQWtCO3NCQUE5QyxLQUFLO3VCQUFDLG9CQUFvQjtnQkF5REYsYUFBYTtzQkFBckMsTUFBTTt1QkFBQyxlQUFlO2dCQUNDLFlBQVk7c0JBQW5DLE1BQU07dUJBQUMsY0FBYztnQkFDRCxTQUFTO3NCQUE3QixNQUFNO3VCQUFDLFdBQVc7Z0JBQ1MsZ0JBQWdCO3NCQUEzQyxNQUFNO3VCQUFDLGtCQUFrQjtnQkFJNEIsWUFBWTtzQkFBakUsU0FBUzt1QkFBQyxzQkFBc0IsRUFBRSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUU7Z0JBQ2QsdUJBQXVCO3NCQUE1RCxTQUFTO3VCQUFDLHlCQUF5QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25Jbml0LCBPdXRwdXQsIFZpZXdDaGlsZCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGb3JtQnVpbGRlciwgRm9ybUNvbnRyb2wgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcbmltcG9ydCB7IE5vdGlmaWNhdGlvbnNFdmVudEVudW0sIE9wZXJhdG9yRW51bSwgUUJEYXRhVHlwZUVudW0gfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL2VudW1zLm1vZGVsJztcclxuaW1wb3J0IHsgUWJQYW5lbEZpbHRlciB9IGZyb20gJy4uLy4uL3NoYXJlZC9tb2RlbHMvZmlsdGVyLXBhbmVsL3FiLXBhbmVsLWZpbHRlci5tb2RlbCc7XHJcbmltcG9ydCB7IEVudGl0eSwgRW50aXR5TWFwLCBGaWVsZCwgRmllbGRNYXAsIFF1ZXJ5QnVpbGRlckNvbmZpZywgUnVsZSwgUnVsZVNldCB9IGZyb20gJy4uLy4uL3NoYXJlZC9tb2RlbHMvZmlsdGVyLXBhbmVsL2ZpZWxkLm1vZGVsJztcclxuaW1wb3J0IHsgRmlsdGVyUGFuZWxUcmFuc2xhdGlvbnMgfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL2ZpbHRlci1wYW5lbC9maWx0ZXItcGFuZWwtdHJhbnNsYXRpb25zLm1vZGVsJztcclxuaW1wb3J0IHsgUXVlcnlSZXN1bHRUeXBlLCBRdWVyeVJlc3VsdHMgfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL2ZpbHRlci1wYW5lbC9xdWVyeS1yZXN1bHRzLm1vZGVsJztcclxuaW1wb3J0IHsgRmlsdGVyRmllbGQgfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL2ZpbHRlci1wYW5lbC9maWx0ZXItZmllbGQubW9kZWxzJztcclxuaW1wb3J0IHsgUWJGaWx0ZXJFbnRpdHkgfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL2ZpbHRlci1wYW5lbC9xYi1maWx0ZXItZW50aXR5Lm1vZGVsJztcclxuaW1wb3J0IHsgQXBpU2VydmljZSB9IGZyb20gJy4uLy4uL3NoYXJlZC9zZXJ2aWNlL2FwaS9hcGkuc2VydmljZSc7XHJcbmltcG9ydCB7IFN0b3JlZEZpbHRlclBhbmVsUXVlcnkgfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL3N0b3JlZC1maWx0ZXItcGFuZWwtcXVlcnkubW9kZWwnO1xyXG5pbXBvcnQgeyBTZXNzaW9uU3RvcmFnZVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zaGFyZWQvc2VydmljZXMvc2Vzc2lvbi1zdG9yYWdlLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBOdWxsYWJsZVNlbGVjdE9wdGlvbiB9IGZyb20gJy4uLy4uL3NoYXJlZC9tb2RlbHMvZmlsdGVyLXBhbmVsL251bGxhYmxlLXNlbGVjdC1vcHRpb24ubW9kZWwnO1xyXG5pbXBvcnQgeyBCb29sZWFuU2VsZWN0T3B0aW9uIH0gZnJvbSAnLi4vLi4vc2hhcmVkL21vZGVscy9maWx0ZXItcGFuZWwvYm9vbGVhbi1zZWxlY3Qtb3B0aW9uLm1vZGVsJztcclxuaW1wb3J0IHsgUXVlcnlCdWlsZGVyQ29tcG9uZW50IH0gZnJvbSAnYW5ndWxhcjItcXVlcnktYnVpbGRlcic7XHJcbmltcG9ydCB7IFRyYW5zbGF0ZWRTZWxlY3RPcHRpb24gfSBmcm9tICcuLi8uLi9zaGFyZWQvbW9kZWxzL2ZpbHRlci1wYW5lbC90cmFuc2xhdGVkLXNlbGVjdC1vcHRpbm9uLm1vZGVsJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAndy1maWx0ZXItcGFuZWwnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi93LWZpbHRlci1wYW5lbC5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vdy1maWx0ZXItcGFuZWwuY29tcG9uZW50LnNjc3MnXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgV0ZpbHRlclBhbmVsQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICBwdWJsaWMgcXVlcnlDdHJsITogRm9ybUNvbnRyb2w7XHJcbiAgcHVibGljIGFkdmFuY2VkUXVlcnlDdHJsITogRm9ybUNvbnRyb2w7XHJcbiAgcHVibGljIGdyb3VwZWRRdWVyeUN0cmwhOiBGb3JtQ29udHJvbDtcclxuICBwdWJsaWMgcGVyc2lzdFZhbHVlT25GaWVsZENoYW5nZTogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIFxyXG4gIHF1ZXJ5Q29uZmlnUmVhZHk6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBpc0FkdmFuY2VkU2VhcmNoOiBib29sZWFuID0gZmFsc2U7XHJcbiAgcWJEYXRhVHlwZUVudW0gPSBRQkRhdGFUeXBlRW51bTtcclxuICBxYkRhdGFFbnVtcyA9IE9iamVjdC52YWx1ZXMoUUJEYXRhVHlwZUVudW0pO1xyXG4gIGJhc2ljUXVlcnlDb25maWchOiBhbnk7XHJcbiAgYWR2YW5jZWRRdWVyeUNvbmZpZyE6IGFueTtcclxuICBiYXNpY1F1ZXJ5OiBhbnkgPSB7XHJcbiAgICBjb25kaXRpb246ICdhbmQnLFxyXG4gICAgcnVsZXM6IFtdXHJcbiAgfTtcclxuICBncm91cGVkUXVlcnk6IGFueSA9IHtcclxuICAgIGNvbmRpdGlvbjogJ2FuZCcsXHJcbiAgICBydWxlczogW11cclxuICB9O1xyXG4gIGFkdmFuY2VkUXVlcnk6IGFueSA9IHtcclxuICAgIGNvbmRpdGlvbjogJ2FuZCcsXHJcbiAgICBydWxlczogW11cclxuICB9O1xyXG4gIGZpbHRlclBhbmVsT2JqZWN0ITogUWJQYW5lbEZpbHRlcjtcclxuICBlbnRpdHlDb25maWdHcm91cGVkOiBRdWVyeUJ1aWxkZXJDb25maWcgPSB7IGZpZWxkczoge30gfTtcclxuICBlbnRpdGllczogYW55W10gPSBbXTtcclxuICBkZWZhdWx0VmFsdWVzOiBhbnlbXSA9IFtdO1xyXG4gIGRlZmF1bHRPcGVyYXRvcnM6IGFueVtdID0gW107XHJcbiAgc3RvcmVkUXVlcnkhOiBTdG9yZWRGaWx0ZXJQYW5lbFF1ZXJ5O1xyXG4gIHBhcmVudFJvdXRlITogc3RyaW5nO1xyXG4gIG5vdGlmaWNhdGlvbkV2ZW50RmllbGQ6IHN0cmluZyA9ICdub3RpZmljYXRpb25ldmVudCc7XHJcbiAgbm90aWZpY2F0aW9uRXZlbnRSdWxlc1RvQWRkOmFueVtdID0gW107IFxyXG5cclxuICBASW5wdXQoJ2FwaVVybCcpIGF1dGhvcml6YXRpb25BcGlVcmwhOiBzdHJpbmc7XHJcbiAgQElucHV0KCdjb21tb25EYXRhQXBpVXJsJykgY29tbW9uRGF0YUFwaVVybCE6IHN0cmluZztcclxuICBASW5wdXQoJ25vdGlmaWNhdGlvbkFwaVVybCcpIG5vdGlmaWNhdGlvbkFwaVVybCE6IHN0cmluZztcclxuICBASW5wdXQoJ3NlZ21lbnRhdGlvbkFwaVVybCcpIHNlZ21lbnRhdGlvbkFwaVVybCE6IHN0cmluZztcclxuICBASW5wdXQoJ3Rva2VuJykgdG9rZW4hOiBzdHJpbmc7XHJcbiAgQElucHV0KCdjb21tb25EYXRhVG9rZW4nKSBjb21tb25EYXRhVG9rZW4hOiBzdHJpbmc7XHJcbiAgQElucHV0KCdzZWdtZW50YXRpb25Ub2tlbicpIHNlZ21lbnRhdGlvblRva2VuITogc3RyaW5nO1xyXG4gIEBJbnB1dCgnZmlsdGVySWQnKSBmaWx0ZXJJZCE6IHN0cmluZztcclxuICBASW5wdXQoJ2RhdGFJc0xvYWRpbmdTZWFyY2hCdXR0b24nKSBkYXRhSXNMb2FkaW5nU2VhcmNoQnV0dG9uOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCd0ZW5hbnRJZCcpIHRlbmFudElkITogc3RyaW5nO1xyXG4gIEBJbnB1dCgnYXBwbGljYXRpb25JZCcpIGFwcGxpY2F0aW9uSWQhOiBzdHJpbmc7XHJcbiAgQElucHV0KCdmaWVsZHNUb0tlZXBMb2NhbERhdGUnKSBmaWVsZHNUb0tlZXBMb2NhbERhdGU6IHN0cmluZ1tdID0gW107XHJcbiAgQElucHV0KCdmaWVsZHNGb3JOb3RpZmljYXRpb25FdmVudCcpIGZpZWxkc0Zvck5vdGlmaWNhdGlvbkV2ZW50OiBzdHJpbmdbXSA9IFtdO1xyXG4gIEBJbnB1dCgnbm90aWZpY2F0aW9uRXZlbnRFbnRpdHknKSBub3RpZmljYXRpb25FdmVudEVudGl0eSE6IHN0cmluZztcclxuXHJcbiAgQElucHV0KCd0cmFuc2xhdGlvbnNPYmplY3QnKSB0cmFuc2xhdGlvbnNPYmplY3Q6IEZpbHRlclBhbmVsVHJhbnNsYXRpb25zID0ge1xyXG4gICAgYmFzaWNTZWFyY2hUYWJMYWJlbDogJ0Jhc2ljIHNlYXJjaCcsXHJcbiAgICBhZHZhbmNlZFNlYXJjaFRhYkxhYmVsOiAnQWR2YW5jZWQgc2VhcmNoJyxcclxuICAgIGdyb3VwZWRGaWx0ZXJUaXRsZTogJ0dyb3VwZWQgZmlsdGVyJyxcclxuICAgIGFkdmFuY2VkU2VhcmNoOiB7XHJcbiAgICAgIGFuZEJ1dHRvbkxhYmVsOiAnQW5kJyxcclxuICAgICAgb3JCdXR0b25MYWJlbDogJ09yJyxcclxuICAgICAgYWRkUnVsZUJ1dHRvbkxhYmVsOiAnQWRkIGZpbHRlcicsXHJcbiAgICAgIGFkZFJ1bGVTZXRCdXR0b25MYWJlbDogJ0FkZCBmaWx0ZXIgc2V0JyxcclxuICAgICAgcmVtb3ZlUnVsZVNldEJ1dHRvbkxhYmVsOiAnUmVtb3ZlIHJ1bGUgc2V0J1xyXG4gICAgfSxcclxuICAgIG5vUnVsZXNMYWJlbDogJ0FkZCBmaWx0ZXIgb3IgZmlsdGVyIHNldCB0byBzdGFydCcsXHJcbiAgICBzZWFyY2hCdXR0b25MYWJlbDogJ0NsZWFyJyxcclxuICAgIGNsZWFyQnV0dG9uTGFiZWw6ICdDbGVhcicsXHJcbiAgICBmaWVsZHNQbGFjZWhvbGRlcnM6IHtcclxuICAgICAgYm9vbGVhbjoge1xyXG4gICAgICAgICAgdHJ1ZTogJ1RydWUnLFxyXG4gICAgICAgICAgZmFsc2U6ICdGYWxzZSdcclxuICAgICAgfSxcclxuICAgICAgZGVjaW1hbDogJ0luc2VydCBkZWNpbWFsIG51bWJlcicsXHJcbiAgICAgIGxpc3Q6ICdTZWxlY3QgYW4gb3B0aW9uJyxcclxuICAgICAgbnVtYmVyOiAnSW5zZXJ0IGEgbnVtYmVyJyxcclxuICAgICAgdGV4dDogJ0luc2VydCB0ZXh0JyxcclxuICAgICAgZGF0ZXRpbWU6ICdTZWxlY3QgYSBkYXRlJ1xyXG4gICAgfSxcclxuICAgIGZpcnN0RGF5T2ZXZWVrOiAwLFxyXG4gICAgb3BlcmF0b3JzOiB7XHJcbiAgICAgIGNvbnRhaW5zOidjb250YWlucydcclxuICAgIH0sXHJcbiAgICBmaWVsZHM6IHtcclxuICAgICAgSWRsZURlYWRsaW5lOiAnSWQnLFxyXG4gICAgICBuYW1lOiAnTmFtZScsXHJcbiAgICAgIGNvZGU6ICdDb2RlJyxcclxuICAgICAgZGVsZXRlOiAnRGVsZXRlZCcsXHJcbiAgICAgIGNvdW50cnk6ICdDb3VudHJ5J1xyXG4gICAgfSxcclxuICAgIG51bGxhYmxlU2VsZWN0T3B0aW9uczoge1xyXG4gICAgICBjdXN0b21lcm9wZXJhdGlvbjoge1xyXG4gICAgICAgIGlzTnVsbE9wdGlvbjogJ05vIGN1c3RvbWVycycsXHJcbiAgICAgICAgaXNOb3ROdWxsT3B0aW9uOiAnQ3VzdG9tZXJzJ1xyXG4gICAgICB9XHJcbiAgICB9LFxyXG4gICAgYm9vbGVhblNlbGVjdE9wdGlvbnM6IHtcclxuICAgICAgdm9pZGVkb3BlcmF0aW9uOiB7XHJcbiAgICAgICAgaXNOdWxsT3B0aW9uOiAnTm8gdm9pZGVkJyxcclxuICAgICAgICBpc05vdE51bGxPcHRpb246ICdWb2lkZWQnXHJcbiAgICAgIH1cclxuICAgIH0sXHJcbiAgICB0cmFuc2xhdGVkU2VsZWN0T3B0aW9uczoge1xyXG4gICAgICB3ZWxjb21lOiBcIkJpZW52ZW5pZGFcIixcclxuICAgICAgc2VnbWVudGVkOiBcIlNlZ21lbnRvcyBkZSBjbGllbnRlXCIsXHJcbiAgICAgIGxvdHRlcnk6IFwiU29ydGVvXCIsXHJcbiAgICAgIGNvbmRpdGlvbmFsT25QdXJjaGFzZTogXCJDb21wcmFcIixcclxuICAgICAgbWFudWFsIDogXCJNYW51YWxcIlxyXG4gICAgfVxyXG4gIH07XHJcbiAgXHJcbiAgQE91dHB1dCgnc2VhcmNoQ2xpY2tlZCcpIHNlYXJjaENsaWNrZWQgPSBuZXcgRXZlbnRFbWl0dGVyPFF1ZXJ5UmVzdWx0cz4oKTtcclxuICBAT3V0cHV0KCdjbGVhckNsaWNrZWQnKSBjbGVhckNsaWNrZWQgPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XHJcbiAgQE91dHB1dCgnbGFzdFF1ZXJ5JykgbGFzdFF1ZXJ5ID0gbmV3IEV2ZW50RW1pdHRlcjxRdWVyeVJlc3VsdHM+KCk7XHJcbiAgQE91dHB1dCgnaGFzRGVmYXVsdFZhbHVlcycpIGhhc0RlZmF1bHRWYWx1ZXMgPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XHJcbiAgXHJcbiAgc3RhdGVPcHRpb25zOiBhbnlbXSA9IFt7IGxhYmVsOiB0aGlzLnRyYW5zbGF0aW9uc09iamVjdC5hZHZhbmNlZFNlYXJjaC5hbmRCdXR0b25MYWJlbCwgdmFsdWU6ICdhbmQnIH0sIHsgbGFiZWw6IHRoaXMudHJhbnNsYXRpb25zT2JqZWN0LmFkdmFuY2VkU2VhcmNoLm9yQnV0dG9uTGFiZWwsIHZhbHVlOiAnb3InIH1dO1xyXG4gIFxyXG4gIEBWaWV3Q2hpbGQoJ2FkdmFuY2VkUXVlcnlCdWlsZGVyJywgeyBzdGF0aWM6IGZhbHNlIH0pIHF1ZXJ5QnVpbGRlciE6IFF1ZXJ5QnVpbGRlckNvbXBvbmVudDtcclxuICBAVmlld0NoaWxkKCdiYXNpY1F1ZXJ5QnVpbGRlck9iamVjdCcpIGJhc2ljUXVlcnlCdWlsZGVyT2JqZWN0ITogUXVlcnlCdWlsZGVyQ29tcG9uZW50O1xyXG4gIFxyXG4gIGNvbnN0cnVjdG9yKFxyXG4gICAgcHJpdmF0ZSBmb3JtQnVpbGRlcjogRm9ybUJ1aWxkZXIsIFxyXG4gICAgcHJpdmF0ZSBhcGlTZXJ2aWNlOiBBcGlTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBzZXNzaW9uU3RvcmFnZTogU2Vzc2lvblN0b3JhZ2VTZXJ2aWNlXHJcbiAgKSB7IH1cclxuXHJcbiAgbmdPbkluaXQoKSB7XHJcbiAgICB0aGlzLmlzQWR2YW5jZWRTZWFyY2ggPSB0aGlzLnNlc3Npb25TdG9yYWdlLmdldExhc3RGaWx0ZXJQYW5lbFF1ZXJ5KHRoaXMudGVuYW50SWQsIHRoaXMuZmlsdGVySWQpPy5hZHZhbmNlZFF1ZXJ5VmFsdWUgPyB0cnVlIDogZmFsc2U7XHJcbiAgICBpZigodGhpcy5zdG9yZWRRdWVyeT8uYWR2YW5jZWRRdWVyeVZhbHVlICYmIHRoaXMuc3RvcmVkUXVlcnk/LmFkdmFuY2VkUXVlcnlWYWx1ZS5ydWxlcy5sZW5ndGggPT0gMCkgfHwgICh0aGlzLnN0b3JlZFF1ZXJ5Py5iYXNpY1F1ZXJ5VmFsdWUgJiYgdGhpcy5zdG9yZWRRdWVyeT8uYmFzaWNRdWVyeVZhbHVlLnJ1bGVzLmxlbmd0aCA9PSAwKSkge1xyXG4gICAgICAvL0RvIG5vdGhpbmdcclxuICAgIH0gZWxzZSB7XHJcbiAgICAgIHRoaXMuc3RvcmVkUXVlcnk9IHRoaXMuc2Vzc2lvblN0b3JhZ2UuZ2V0TGFzdEZpbHRlclBhbmVsUXVlcnkodGhpcy50ZW5hbnRJZCwgdGhpcy5maWx0ZXJJZClcclxuICAgIH1cclxuICAgIHRoaXMuZ2V0UXVlcnlCdWlsZGVyRmlsdGVyUGFuZWwoKTtcclxuICB9XHJcblxyXG4gIGluaXRRdWVyeUJ1aWxkZXJDb250cm9scygpIHtcclxuICAgIHRoaXMucXVlcnlDdHJsID0gdGhpcy5mb3JtQnVpbGRlci5jb250cm9sKHRoaXMuYmFzaWNRdWVyeSk7XHJcbiAgICB0aGlzLmFkdmFuY2VkUXVlcnlDdHJsID0gdGhpcy5mb3JtQnVpbGRlci5jb250cm9sKHRoaXMuYWR2YW5jZWRRdWVyeSk7XHJcbiAgICBpZih0aGlzLmZpbHRlclBhbmVsT2JqZWN0LmFsbG93R3JvdXBlZCkge1xyXG4gICAgICB0aGlzLmdyb3VwZWRRdWVyeUN0cmwgPSB0aGlzLmZvcm1CdWlsZGVyLmNvbnRyb2wodGhpcy5ncm91cGVkUXVlcnkpO1xyXG4gICAgfVxyXG4gICAgXHJcbiAgICBpZigodGhpcy5zdG9yZWRRdWVyeT8uYWR2YW5jZWRRdWVyeVZhbHVlICYmIHRoaXMuc3RvcmVkUXVlcnk/LmFkdmFuY2VkUXVlcnlWYWx1ZS5ydWxlcy5sZW5ndGggPT0gMCkgfHwgICh0aGlzLnN0b3JlZFF1ZXJ5Py5iYXNpY1F1ZXJ5VmFsdWUgJiYgdGhpcy5zdG9yZWRRdWVyeT8uYmFzaWNRdWVyeVZhbHVlLnJ1bGVzLmxlbmd0aCA9PSAwKSkge1xyXG4gICAgICAvL0RvIG5vdGhpbmdcclxuICAgIH0gZWxzZSB7XHJcbiAgICAgIGxldCBsYXN0UXVlcnk6IFF1ZXJ5UmVzdWx0cyA9IHtcclxuICAgICAgICB0eXBlOiB0aGlzLmdldFF1ZXJ5VHlwZSgpLFxyXG4gICAgICAgIGJhc2ljOiB0aGlzLnN0b3JlZFF1ZXJ5Py5iYXNpY1F1ZXJ5VmFsdWUgPyBPYmplY3QuYXNzaWduKHt9LCB0aGlzLnN0b3JlZFF1ZXJ5Py5iYXNpY1F1ZXJ5VmFsdWUpIDogbnVsbCxcclxuICAgICAgICBhZHZhbmNlZDogdGhpcy5zdG9yZWRRdWVyeT8uYWR2YW5jZWRRdWVyeVZhbHVlID8gT2JqZWN0LmFzc2lnbih7fSwgdGhpcy5zdG9yZWRRdWVyeT8uYWR2YW5jZWRRdWVyeVZhbHVlKSA6IG51bGwsXHJcbiAgICAgICAgZ3JvdXBlZDogdGhpcy5pc0FkdmFuY2VkU2VhcmNoICYmIHRoaXMuZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dHcm91cGVkICYmIHRoaXMuZ3JvdXBlZFF1ZXJ5Q3RybCA/IE9iamVjdC5hc3NpZ24oe30sIHRoaXMuZ3JvdXBlZFF1ZXJ5Q3RybD8udmFsdWUpIDogbnVsbFxyXG4gICAgICB9XHJcblxyXG4gICAgICAgIHRoaXMuc2V0Tm9GaWx0ZXJzUXVlcnlUeXBlKGxhc3RRdWVyeSlcclxuICAgICAgICAudGhlbigocmVzKSA9PiB7XHJcbiAgICAgICAgICBsYXN0UXVlcnkgPSB0aGlzLmRlbGV0ZUZpZWxkc1dpdGhvdXRWYWx1ZShsYXN0UXVlcnkpO1xyXG4gICAgICAgICAgbGFzdFF1ZXJ5ID0gdGhpcy5oYW5kbGVFbXB0eUZpZWxkc1F1ZXJ5KGxhc3RRdWVyeSk7XHJcbiAgICAgICAgICB0aGlzLmxhc3RRdWVyeS5lbWl0KGxhc3RRdWVyeSk7XHJcbiAgICAgICAgfSkudGhlbigoKSA9PiB7XHJcbiAgICAgICAgICB0aGlzLmludmVyc2VOdWxsYWJsZUZpbHRlck9wZXJhdGlvbkhhbmRsZSh0aGlzLmFkdmFuY2VkUXVlcnlDdHJsLnZhbHVlKTtcclxuICAgICAgICB9KVxyXG4gICAgICAgIC50aGVuKCgpID0+IHtcclxuICAgICAgICAgIHRoaXMub25TZWFyY2hDbGlja2VkKCk7XHJcbiAgICAgICAgfSk7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBudWxsYWJsZVNlbGVjdFBsYWNlaG9sZGVyKHJ1bGU6IFJ1bGUsIG9wdGlvbnM6IE51bGxhYmxlU2VsZWN0T3B0aW9uW10pIHtcclxuICAgIGlmKHJ1bGUub3BlcmF0b3IgPT0gJ2lzJyAmJiBydWxlLnZhbHVlID09ICdudWxsJykge1xyXG4gICAgICBydWxlLnZhbHVlID0gMDtcclxuICAgICAgcmV0dXJuIHRoaXMudHJhbnNsYXRpb25zT2JqZWN0Lm51bGxhYmxlU2VsZWN0T3B0aW9ucyFbb3B0aW9uc1swXS5uYW1lXS5pc051bGxPcHRpb247XHJcbiAgICB9XHJcbiAgICBpZihydWxlLm9wZXJhdG9yID09ICdpcyBub3QnICYmIHJ1bGUudmFsdWUgPT0gJ251bGwnKSB7XHJcbiAgICAgIHJ1bGUudmFsdWUgPSAxO1xyXG4gICAgICByZXR1cm4gdGhpcy50cmFuc2xhdGlvbnNPYmplY3QubnVsbGFibGVTZWxlY3RPcHRpb25zIVtvcHRpb25zWzBdLm5hbWVdLmlzTm90TnVsbE9wdGlvbjtcclxuICAgIH1cclxuICAgIHJldHVybiB0aGlzLnRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMubGlzdDtcclxuICB9XHJcbiAgXHJcbiAgc2V0RW10cHlBcnJheXNUb051bGwocXVlcnk6IGFueSkge1xyXG4gICAgaWYgKFwicnVsZXNcIiBpbiBxdWVyeSkge1xyXG4gICAgICBxdWVyeS5ydWxlcy5mb3JFYWNoKChydWxlOiBSdWxlU2V0IHwgUnVsZSkgPT4ge1xyXG4gICAgICAgIHRoaXMuc2V0RW10cHlBcnJheXNUb051bGwocnVsZSk7XHJcbiAgICAgIH0pO1xyXG4gICAgfSBlbHNlIHtcclxuICAgICAgaWYgKHF1ZXJ5LnZhbHVlIGluc3RhbmNlb2YgQXJyYXkgJiYgcXVlcnkudmFsdWUubGVuZ3RoID09IDApIHtcclxuICAgICAgICBxdWVyeS52YWx1ZSA9IG51bGw7XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIHVwZGF0ZVNlYXJjaFR5cGUoKSB7XHJcbiAgICB0aGlzLmlzQWR2YW5jZWRTZWFyY2ggPSAhdGhpcy5pc0FkdmFuY2VkU2VhcmNoO1xyXG4gICAgaWYodGhpcy5pc0FkdmFuY2VkU2VhcmNoKSB7XHJcbiAgICAgIHNldFRpbWVvdXQoKCkgPT4ge1xyXG4gICAgICAgIHRoaXMudXBkYXRlTnVsbGFibGVFbGVtZW50cyh0aGlzLnF1ZXJ5QnVpbGRlci5jb25maWcuZmllbGRzKVxyXG4gICAgICB9LCAzMDAwKTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIHVwZGF0ZU51bGxhYmxlRWxlbWVudHMoZWxlbWVudHM6IHsgW2tleTogc3RyaW5nXTogYW55IH0pOiB2b2lkIHtcclxuICAgIGZvciAoY29uc3Qga2V5IGluIGVsZW1lbnRzKSB7XHJcbiAgICAgICAgaWYgKGVsZW1lbnRzLmhhc093blByb3BlcnR5KGtleSkpIHtcclxuICAgICAgICAgICAgY29uc3QgZWxlbWVudCA9IGVsZW1lbnRzW2tleV07XHJcbiAgICAgICAgICAgIGlmIChlbGVtZW50Lm9wZXJhdG9ycy5pbmNsdWRlcygnbnVsbGFibGUnKSAmJiBlbGVtZW50LmRlZmF1bHRWYWx1ZSA9PSBudWxsKSB7XHJcbiAgICAgICAgICAgICAgICBlbGVtZW50LmRlZmF1bHRWYWx1ZSA9IDA7XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICB9XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBvblNlYXJjaENsaWNrZWQoKSB7XHJcbiAgICBsZXQgcXVlcmllczogUXVlcnlSZXN1bHRzID0ge1xyXG4gICAgICB0eXBlOiB0aGlzLmdldFF1ZXJ5VHlwZSgpLFxyXG4gICAgICBiYXNpYzogdGhpcy5pc0FkdmFuY2VkU2VhcmNoID8gbnVsbCA6IE9iamVjdC5hc3NpZ24oe30sIHRoaXMucXVlcnlDdHJsLnZhbHVlKSxcclxuICAgICAgYWR2YW5jZWQ6IHRoaXMuaXNBZHZhbmNlZFNlYXJjaCA/IE9iamVjdC5hc3NpZ24oe30sIHRoaXMuYWR2YW5jZWRRdWVyeUN0cmwudmFsdWUpIDogbnVsbCxcclxuICAgICAgZ3JvdXBlZDogdGhpcy5pc0FkdmFuY2VkU2VhcmNoICYmIHRoaXMuZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dHcm91cGVkID8gT2JqZWN0LmFzc2lnbih7fSwgdGhpcy5ncm91cGVkUXVlcnlDdHJsLnZhbHVlKSA6IG51bGxcclxuICAgIH1cclxuICAgIFxyXG4gICAgdGhpcy5zZXRFbnRpdHkocXVlcmllcyk7XHJcblxyXG4gICAgcXVlcmllcyA9IHRoaXMuaW5pdGlhbGl6ZU9wZXJhdG9ycyhxdWVyaWVzKTtcclxuICAgIFxyXG4gICAgdGhpcy5zZXROb0ZpbHRlcnNRdWVyeVR5cGUocXVlcmllcykudGhlbigocmVzUXVlcmllczphbnkpID0+IHtcclxuICAgICAgaWYocmVzUXVlcmllcy50eXBlICE9IDApe1xyXG4gICAgICAgIHRoaXMubnVsbGFibGVGaWx0ZXJPcGVyYXRpb25IYW5kbGUocXVlcmllcy5iYXNpYyA/IHF1ZXJpZXMuYmFzaWMgOiBxdWVyaWVzLmFkdmFuY2VkKTtcclxuICAgICAgfVxyXG4gICAgfSkudGhlbigocmVzUXVlcmllczphbnkpID0+IHtcclxuICAgICAgbGV0IHN0b3JlZFF1ZXJ5OiBTdG9yZWRGaWx0ZXJQYW5lbFF1ZXJ5ID0ge1xyXG4gICAgICAgIGlkOiB0aGlzLmZpbHRlcklkLFxyXG4gICAgICAgIGJhc2ljUXVlcnlWYWx1ZTogcXVlcmllcy5iYXNpYyxcclxuICAgICAgICBhZHZhbmNlZFF1ZXJ5VmFsdWU6IHF1ZXJpZXMuYWR2YW5jZWQsXHJcbiAgICAgICAgZ3JvdXBlZFF1ZXJ5VmFsdWU6IHF1ZXJpZXMuZ3JvdXBlZFxyXG4gICAgICB9XHJcbiAgICAgIHRoaXMuc2V0RW10cHlBcnJheXNUb051bGwocXVlcmllcy5iYXNpYyA/IHF1ZXJpZXMuYmFzaWMgOiBxdWVyaWVzLmFkdmFuY2VkKTtcclxuICAgICAgaWYoc3RvcmVkUXVlcnkuYWR2YW5jZWRRdWVyeVZhbHVlICYmIHN0b3JlZFF1ZXJ5LmFkdmFuY2VkUXVlcnlWYWx1ZS5ydWxlcyA9PSAwKSB7XHJcbiAgICAgICAgLy9EbyBub3RoaW5nXHJcbiAgICAgIH0gZWxzZSB7XHJcbiAgICAgICAgdGhpcy5zZXNzaW9uU3RvcmFnZS5zZXRMYXN0RmlsdGVyUGFuZWxRdWVyeSh0aGlzLnRlbmFudElkLCBzdG9yZWRRdWVyeSk7XHJcbiAgICAgIH1cclxuICAgICAgdGhpcy5rZWVwTG9jYWxEYXRlRmlsdGVyT3BlcmF0aW9uSGFuZGxlKHF1ZXJpZXMuYmFzaWMgPyBxdWVyaWVzLmJhc2ljIDogcXVlcmllcy5hZHZhbmNlZCk7XHJcbiAgICB9KS50aGVuKChyZXNRdWVyaWVzOiBhbnkpID0+IHtcclxuICAgICAgcXVlcmllcyA9IHRoaXMuZGVsZXRlRmllbGRzV2l0aG91dFZhbHVlKHF1ZXJpZXMpO1xyXG4gICAgICBxdWVyaWVzID0gdGhpcy5oYW5kbGVFbXB0eUZpZWxkc1F1ZXJ5KHF1ZXJpZXMpO1xyXG4gICAgICB0aGlzLnNlYXJjaENsaWNrZWQuZW1pdChxdWVyaWVzKTtcclxuICAgIH0pLnRoZW4oKCkgPT4ge1xyXG4gICAgICB0aGlzLmludmVyc2VOdWxsYWJsZUZpbHRlck9wZXJhdGlvbkhhbmRsZSh0aGlzLmFkdmFuY2VkUXVlcnlDdHJsLnZhbHVlKTtcclxuICAgIH0pXHJcbiAgICAuY2F0Y2goKGVycm9yKSA9PiB7XHJcbiAgICAgIGNvbnNvbGUuZXJyb3IoXCJFcnJvciBlbiBsYSBwcm9tZXNhOlwiLCBlcnJvcik7XHJcbiAgICB9KTtcclxuICB9XHJcblxyXG4gIHNldE5vRmlsdGVyc1F1ZXJ5VHlwZShxdWVyaWVzOmFueSkge1xyXG4gICAgcmV0dXJuIG5ldyBQcm9taXNlKChyZXNvbHZlLCByZWplY3QpID0+IHtcclxuICAgICAgcXVlcmllcyA9IHRoaXMuaGFuZGxlRW1wdHlGaWVsZHNRdWVyeShxdWVyaWVzKTtcclxuICAgICAgICByZXNvbHZlKHF1ZXJpZXMpO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBvbkNsZWFyQ2xpY2tlZCgpIHtcclxuICAgIHRoaXMucmVzZXRCYXNpY1F1ZXJ5VmFsdWVzKCk7XHJcbiAgICB0aGlzLmFkdmFuY2VkUXVlcnkucnVsZXMgPSBbXTtcclxuICAgIHRoaXMuZ3JvdXBlZFF1ZXJ5LnJ1bGVzID0gW107XHJcbiAgICB0aGlzLnNlc3Npb25TdG9yYWdlLnJlbW92ZUxhc3RGaWx0ZXJQYW5lbFF1ZXJ5KHRoaXMudGVuYW50SWQsIHRoaXMuZmlsdGVySWQpO1xyXG4gICAgdGhpcy5jbGVhckNsaWNrZWQuZW1pdCh0cnVlKTtcclxuICB9XHJcblxyXG4gIGhhbmRsZUVtcHR5RmllbGRzUXVlcnkocXVlcmllczogUXVlcnlSZXN1bHRzKTogUXVlcnlSZXN1bHRzIHtcclxuICAgIGlmKHF1ZXJpZXMuYWR2YW5jZWQgIT0gbnVsbCAmJiBxdWVyaWVzLmFkdmFuY2VkPy5ydWxlcy5sZW5ndGggPT0gMCkge1xyXG4gICAgICBxdWVyaWVzLnR5cGUgPSAwXHJcbiAgICB9XHJcbiAgICBpZihxdWVyaWVzLmJhc2ljICE9IG51bGwgJiYgcXVlcmllcy5iYXNpYz8ucnVsZXMubGVuZ3RoID09IDApIHtcclxuICAgICAgcXVlcmllcy50eXBlID0gMFxyXG4gICAgfVxyXG4gICAgaWYocXVlcmllcy5ncm91cGVkICE9IG51bGwgJiYgcXVlcmllcy5ncm91cGVkPy5ydWxlcy5sZW5ndGggPT0gMCkge1xyXG4gICAgICBxdWVyaWVzLnR5cGUgPSAwXHJcbiAgICB9XHJcbiAgICByZXR1cm4gcXVlcmllcztcclxuICB9XHJcblxyXG4gIG51bGxhYmxlRmlsdGVyT3BlcmF0aW9uSGFuZGxlKHF1ZXJ5OiBhbnkpIHtcclxuICAgIGlmIChcInJ1bGVzXCIgaW4gcXVlcnkpIHtcclxuICAgICAgcXVlcnkucnVsZXMuZm9yRWFjaCgocnVsZTogUnVsZVNldCB8IFJ1bGUpID0+IHtcclxuICAgICAgICB0aGlzLm51bGxhYmxlRmlsdGVyT3BlcmF0aW9uSGFuZGxlKHJ1bGUpO1xyXG4gICAgICB9KTtcclxuICAgIH0gZWxzZSB7XHJcbiAgICAgIGlmIChxdWVyeS5vcGVyYXRvciA9PT0gT3BlcmF0b3JFbnVtLk51bGxhYmxlIHx8ICgocXVlcnkub3BlcmF0b3IgPT0gJ2lzJyB8fCBxdWVyeS5vcGVyYXRvciA9PSAnaXMgbm90JykgJiYgKHF1ZXJ5LnZhbHVlID09IDEgfHwgcXVlcnkudmFsdWUgPT0gMCkpKSB7XHJcbiAgICAgICAgaWYocXVlcnkudmFsdWUgPT0gMSkge1xyXG4gICAgICAgICAgcXVlcnkub3BlcmF0b3IgPSAnaXMgbm90JztcclxuICAgICAgICB9XHJcbiAgICAgICAgaWYocXVlcnkudmFsdWUgPT0gMCkge1xyXG4gICAgICAgICAgcXVlcnkub3BlcmF0b3IgPSAnaXMnO1xyXG4gICAgICAgIH1cclxuICAgICAgICBxdWVyeS52YWx1ZSA9ICdudWxsJztcclxuICAgICAgfVxyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgaW52ZXJzZU51bGxhYmxlRmlsdGVyT3BlcmF0aW9uSGFuZGxlKHF1ZXJ5OiBhbnkpIHtcclxuICAgIGlmIChcInJ1bGVzXCIgaW4gcXVlcnkpIHtcclxuICAgICAgcXVlcnkucnVsZXMuZm9yRWFjaCgocnVsZTogUnVsZVNldCB8IFJ1bGUpID0+IHtcclxuICAgICAgICB0aGlzLmludmVyc2VOdWxsYWJsZUZpbHRlck9wZXJhdGlvbkhhbmRsZShydWxlKTtcclxuICAgICAgfSk7XHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICBpZiAoKHF1ZXJ5Lm9wZXJhdG9yID09ICdpcyBub3QnIHx8IHF1ZXJ5Lm9wZXJhdG9yID09ICdpcycpICYmIHF1ZXJ5LnZhbHVlID09ICdudWxsJykge1xyXG4gICAgICAgIGlmKHF1ZXJ5Lm9wZXJhdG9yID09ICdpcyBub3QnKSB7XHJcbiAgICAgICAgICBxdWVyeS52YWx1ZSA9IDE7XHJcbiAgICAgICAgfVxyXG4gICAgICAgIGlmKHF1ZXJ5Lm9wZXJhdG9yID09ICdpcycpIHtcclxuICAgICAgICAgIHF1ZXJ5LnZhbHVlID0gMDtcclxuICAgICAgICB9XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIGtlZXBMb2NhbERhdGVGaWx0ZXJPcGVyYXRpb25IYW5kbGUocXVlcnk6IGFueSl7XHJcbiAgICBpZih0aGlzLmZpZWxkc1RvS2VlcExvY2FsRGF0ZS5sZW5ndGggPiAwKXtcclxuICAgICAgaWYoXCJydWxlc1wiIGluIHF1ZXJ5KXtcclxuICAgICAgICBxdWVyeS5ydWxlcy5mb3JFYWNoKChydWxlOiBSdWxlU2V0IHwgUnVsZSkgPT4ge1xyXG4gICAgICAgICAgdGhpcy5rZWVwTG9jYWxEYXRlRmlsdGVyT3BlcmF0aW9uSGFuZGxlKHJ1bGUpO1xyXG4gICAgICAgIH0pO1xyXG4gICAgICB9ZWxzZXtcclxuICAgICAgICBpZiAodGhpcy5maWVsZHNUb0tlZXBMb2NhbERhdGUuaW5jbHVkZXMocXVlcnkuZmllbGQpICYmIHF1ZXJ5LnZhbHVlKSB7XHJcbiAgICAgICAgICBjb25zdCBkYXRlVmFsdWUgPSBuZXcgRGF0ZShxdWVyeS52YWx1ZSk7XHJcbiAgICAgICAgICBjb25zdCB0b1VUQ0RhdGUgPSBuZXcgRGF0ZShEYXRlLlVUQyhkYXRlVmFsdWUuZ2V0RnVsbFllYXIoKSwgZGF0ZVZhbHVlLmdldE1vbnRoKCksIGRhdGVWYWx1ZS5nZXREYXRlKCksIGRhdGVWYWx1ZS5nZXRIb3VycygpLCBkYXRlVmFsdWUuZ2V0TWludXRlcygpKSk7XHJcbiAgICAgICAgICBxdWVyeS52YWx1ZSA9IHRvVVRDRGF0ZTtcclxuICAgICAgICB9XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIG1vZGlmeU5vdGlmaWNhdGlvbkV2ZW50VmFsdWUocXVlcnk6IGFueSl7XHJcbiAgICBpZih0aGlzLmZpZWxkc0Zvck5vdGlmaWNhdGlvbkV2ZW50Lmxlbmd0aCA+IDAgJiYgdGhpcy5ub3RpZmljYXRpb25FdmVudEVudGl0eSAmJiBxdWVyeSl7XHJcbiAgICAgIGlmIChcInJ1bGVzXCIgaW4gcXVlcnkpIHtcclxuICAgICAgICBxdWVyeS5ydWxlcy5mb3JFYWNoKChydWxlOiBSdWxlU2V0IHwgUnVsZSkgPT4ge1xyXG4gICAgICAgICAgdGhpcy5tb2RpZnlOb3RpZmljYXRpb25FdmVudFZhbHVlKHJ1bGUpO1xyXG4gICAgICAgIH0pO1xyXG5cclxuICAgICAgICBpZih0aGlzLm5vdGlmaWNhdGlvbkV2ZW50UnVsZXNUb0FkZC5sZW5ndGggPiAwKXtcclxuICAgICAgICAgIHF1ZXJ5LnJ1bGVzLnB1c2goLi4udGhpcy5ub3RpZmljYXRpb25FdmVudFJ1bGVzVG9BZGQpXHJcbiAgICAgICAgICBxdWVyeS5ydWxlcyA9IHF1ZXJ5LnJ1bGVzLmZpbHRlcigob2JqOmFueSkgPT4gb2JqLmZpZWxkICE9PSB0aGlzLm5vdGlmaWNhdGlvbkV2ZW50RmllbGQpO1xyXG4gICAgICAgICAgdGhpcy5ub3RpZmljYXRpb25FdmVudFJ1bGVzVG9BZGQgPSBbXTtcclxuICAgICAgICB9XHJcbiAgICAgIH1lbHNle1xyXG4gICAgICAgIGlmIChxdWVyeS52YWx1ZSAmJiBxdWVyeS5maWVsZCA9PSB0aGlzLm5vdGlmaWNhdGlvbkV2ZW50RmllbGQgJiYgcXVlcnkuZW50aXR5ID09IHRoaXMubm90aWZpY2F0aW9uRXZlbnRFbnRpdHkpIHtcclxuICAgICAgICAgIHF1ZXJ5LmV4dHJhID0gcXVlcnkudmFsdWU7IFxyXG4gICAgICAgICAgbGV0IHJ1bGVzID0gW107XHJcblxyXG4gICAgICAgICAgaWYocXVlcnkuZXh0cmEucHJvcGVydHkgPT0gTm90aWZpY2F0aW9uc0V2ZW50RW51bS5FdmVudEdyb3VwKXtcclxuICAgICAgICAgICAgcnVsZXMgPSBbXHJcbiAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgZmllbGQ6IHRoaXMuZmllbGRzRm9yTm90aWZpY2F0aW9uRXZlbnRbTm90aWZpY2F0aW9uc0V2ZW50RW51bS5FdmVudEdyb3VwIC0gMV0sXHJcbiAgICAgICAgICAgICAgICBvcGVyYXRvcjogXCI9XCIsIFxyXG4gICAgICAgICAgICAgICAgdmFsdWU6IHF1ZXJ5LmV4dHJhLmRhdGEsIFxyXG4gICAgICAgICAgICAgICAgZW50aXR5OiB0aGlzLm5vdGlmaWNhdGlvbkV2ZW50RW50aXR5XHJcbiAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICBdOyBcclxuICAgICAgICAgIH1lbHNle1xyXG4gICAgICAgICAgICBydWxlcyA9IFtcclxuICAgICAgICAgICAgICB7XHJcbiAgICAgICAgICAgICAgICBmaWVsZDogdGhpcy5maWVsZHNGb3JOb3RpZmljYXRpb25FdmVudFtOb3RpZmljYXRpb25zRXZlbnRFbnVtLkV2ZW50R3JvdXAgLSAxXSxcclxuICAgICAgICAgICAgICAgIG9wZXJhdG9yOiBcIj1cIiwgXHJcbiAgICAgICAgICAgICAgICB2YWx1ZTogcXVlcnkuZXh0cmEuZXZlbnRDYXRlZ29yeUlkLCBcclxuICAgICAgICAgICAgICAgIGVudGl0eTogdGhpcy5ub3RpZmljYXRpb25FdmVudEVudGl0eVxyXG4gICAgICAgICAgICAgIH0sIFxyXG4gICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgIGZpZWxkOiB0aGlzLmZpZWxkc0Zvck5vdGlmaWNhdGlvbkV2ZW50W05vdGlmaWNhdGlvbnNFdmVudEVudW0uRXZlbnQgLSAxXSxcclxuICAgICAgICAgICAgICAgIG9wZXJhdG9yOiBcIj1cIiwgXHJcbiAgICAgICAgICAgICAgICB2YWx1ZTogcXVlcnkuZXh0cmEuZGF0YSwgXHJcbiAgICAgICAgICAgICAgICBlbnRpdHk6IHRoaXMubm90aWZpY2F0aW9uRXZlbnRFbnRpdHlcclxuICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIF07IFxyXG4gICAgICAgICAgfVxyXG4gICAgICAgICAgdGhpcy5ub3RpZmljYXRpb25FdmVudFJ1bGVzVG9BZGQucHVzaCguLi5ydWxlcyk7IFxyXG4gICAgICAgIH1cclxuICAgICAgfVxyXG4gICAgICByZXR1cm4gcXVlcnk7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBnZXRRdWVyeVR5cGUoKTogUXVlcnlSZXN1bHRUeXBlIHtcclxuICAgIGlmKCF0aGlzLmlzQWR2YW5jZWRTZWFyY2gpIHtcclxuICAgICAgcmV0dXJuIFF1ZXJ5UmVzdWx0VHlwZS5CYXNpYztcclxuICAgIH0gZWxzZSB7XHJcbiAgICAgIGlmKHRoaXMuaXNBZHZhbmNlZFNlYXJjaCAmJiB0aGlzLmdyb3VwZWRRdWVyeUN0cmw/LnZhbHVlKSB7XHJcbiAgICAgICAgcmV0dXJuIFF1ZXJ5UmVzdWx0VHlwZS5Hcm91cGVkXHJcbiAgICAgIH0gZWxzZSB7XHJcbiAgICAgICAgcmV0dXJuIFF1ZXJ5UmVzdWx0VHlwZS5BZHZhbmNlZDtcclxuICAgICAgfVxyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgc2V0RW50aXR5KHF1ZXJpZXM6IFF1ZXJ5UmVzdWx0cykge1xyXG4gICAgaWYodGhpcy5nZXRRdWVyeVR5cGUoKSA9PSBRdWVyeVJlc3VsdFR5cGUuQmFzaWMpIHtcclxuICAgICAgcXVlcmllcy5iYXNpYyEucnVsZXMgPSBxdWVyaWVzLmJhc2ljIS5ydWxlcy5tYXAoKHI6YW55KSA9PiB7XHJcbiAgICAgICAgcmV0dXJuIHtcclxuICAgICAgICAgIGZpZWxkOiByLmZpZWxkLFxyXG4gICAgICAgICAgb3BlcmF0b3I6IHIub3BlcmF0b3IsXHJcbiAgICAgICAgICB2YWx1ZTogci52YWx1ZSxcclxuICAgICAgICAgIGVudGl0eTogdGhpcy5lbnRpdGllcy5maW5kKGUgPT4gZS5maWVsZEpzb25OYW1lID09IHIuZmllbGQpLmVudGl0eVxyXG4gICAgICAgIH1cclxuICAgICAgfSlcclxuICAgIH1cclxuICB9XHJcblxyXG4gIGdldFF1ZXJ5QnVpbGRlckZpbHRlclBhbmVsKCkge1xyXG4gICAgdGhpcy5hcGlTZXJ2aWNlLmdldEZpbHRlclBhbmVsKHRoaXMuYXV0aG9yaXphdGlvbkFwaVVybCwgdGhpcy50b2tlbiwgdGhpcy5jb21tb25EYXRhQXBpVXJsLCB0aGlzLmNvbW1vbkRhdGFUb2tlbiwgdGhpcy50ZW5hbnRJZCwgdGhpcy5hcHBsaWNhdGlvbklkLCB0aGlzLmZpbHRlcklkKVxyXG4gICAgICAuc3Vic2NyaWJlKChxYlBhbmVsRmlsdGVyOiBRYlBhbmVsRmlsdGVyKSA9PiB7XHJcbiAgICAgICAgdGhpcy5maWx0ZXJQYW5lbE9iamVjdCA9IHFiUGFuZWxGaWx0ZXI7XHJcbiAgICAgICAgbGV0IGJhc2ljRmlsdGVySWRzOiBudW1iZXJbXSA9IHFiUGFuZWxGaWx0ZXIucWJwYW5lbFRvRmllbGRzLmZpbHRlcihwYW5lbFRvRmllbGQgPT4gcGFuZWxUb0ZpZWxkLmJhc2ljKS5tYXAocGFuZWxUb0ZpZWxkID0+IHBhbmVsVG9GaWVsZC5xYmZpbHRlckZpZWxkSWQpO1xyXG4gICAgICAgIGxldCBhZHZhbmNlZEZpbHRlcklkczogbnVtYmVyW10gPSBxYlBhbmVsRmlsdGVyLnFicGFuZWxUb0ZpZWxkcy5maWx0ZXIocGFuZWxUb0ZpZWxkID0+ICFwYW5lbFRvRmllbGQuYmFzaWMpLm1hcChwYW5lbFRvRmllbGQgPT4gcGFuZWxUb0ZpZWxkLnFiZmlsdGVyRmllbGRJZCk7XHJcbiAgICAgICAgdGhpcy5kZWZhdWx0VmFsdWVzID0gcWJQYW5lbEZpbHRlci5xYnBhbmVsVG9GaWVsZHMubWFwKHBhbmVsVG9GaWVsZCA9PiB7XHJcbiAgICAgICAgICByZXR1cm4ge1xyXG4gICAgICAgICAgICBxYmZpbHRlckZpZWxkSWQ6IHBhbmVsVG9GaWVsZC5xYmZpbHRlckZpZWxkSWQsIFxyXG4gICAgICAgICAgICBiYXNpYzogcGFuZWxUb0ZpZWxkLmJhc2ljLCBcclxuICAgICAgICAgICAgZGVmYXVsdFZhbHVlOiB0aGlzLmRlZmF1bHRWYWx1ZUFkYXB0ZXIocGFuZWxUb0ZpZWxkLmRlZmF1bHRWYWx1ZSlcclxuICAgICAgICAgIH1cclxuICAgICAgICB9KVxyXG4gICAgICAgIHRoaXMuaGFzRGVmYXVsdFZhbHVlcy5lbWl0KHRoaXMuZGVmYXVsdFZhbHVlcy5zb21lKCh2KSA9PiB2LmRlZmF1bHRWYWx1ZSAhPSBudWxsKSk7XHJcbiAgICAgICAgdGhpcy5kZWZhdWx0T3BlcmF0b3JzID0gcWJQYW5lbEZpbHRlci5xYnBhbmVsVG9GaWVsZHMubWFwKHBhbmVsVG9GaWVsZCA9PiB7XHJcbiAgICAgICAgICByZXR1cm4ge1xyXG4gICAgICAgICAgICBxYmZpbHRlckZpZWxkSWQ6IHBhbmVsVG9GaWVsZC5xYmZpbHRlckZpZWxkSWQsXHJcbiAgICAgICAgICAgIHFiZGVmYXVsdE9wZXJhdG9yOiBwYW5lbFRvRmllbGQucWJkZWZhdWx0T3BlcmF0b3JcclxuICAgICAgICAgIH1cclxuICAgICAgICB9KVxyXG4gICAgICAgIGxldCBmaWx0ZXJFbnRpdHk6IFFiRmlsdGVyRW50aXR5W10gPSBxYlBhbmVsRmlsdGVyLnFicGFuZWxUb0ZpZWxkcy5tYXAocGFuZWxUb0ZpZWxkID0+IHtcclxuICAgICAgICAgIHJldHVybiB7XHJcbiAgICAgICAgICAgIGlkOiBwYW5lbFRvRmllbGQucWJmaWx0ZXJGaWVsZC5xYmZpbHRlckVudGl0eS5pZCwgXHJcbiAgICAgICAgICAgIGJhc2ljOiBwYW5lbFRvRmllbGQuYmFzaWMsXHJcbiAgICAgICAgICAgIG5hbWU6IHBhbmVsVG9GaWVsZC5xYmZpbHRlckZpZWxkLnFiZmlsdGVyRW50aXR5Lm5hbWUsIFxyXG4gICAgICAgICAgICBqc29uTmFtZTogcGFuZWxUb0ZpZWxkLnFiZmlsdGVyRmllbGQucWJmaWx0ZXJFbnRpdHkuanNvbk5hbWUsIFxyXG4gICAgICAgICAgICBmaWVsZHM6IFtdXHJcbiAgICAgICAgICB9XHJcbiAgICAgICAgfSk7XHJcblxyXG4gICAgICAgIGxldCBmaWx0ZXJGaWVsZHM6IEZpbHRlckZpZWxkW10gPSBxYlBhbmVsRmlsdGVyLnFicGFuZWxUb0ZpZWxkcy5tYXAocCA9PiBwLnFiZmlsdGVyRmllbGQpO1xyXG4gICAgICAgIGZpbHRlckVudGl0eS5mb3JFYWNoKChlbnRpdHk6IFFiRmlsdGVyRW50aXR5LCBpbmRleDogbnVtYmVyKSA9PiB7XHJcbiAgICAgICAgICAgbGV0IGZpZWxkcyA9IGZpbHRlckZpZWxkcy5maWx0ZXIoZSA9PiBlLnFiZmlsdGVyRW50aXR5LmlkID09IGVudGl0eS5pZCk7XHJcbiAgICAgICAgICAgZmlsdGVyRW50aXR5W2luZGV4XS5maWVsZHMgPSBmaWVsZHMgO1xyXG4gICAgICAgIH0pXHJcbiAgICAgICAgXHJcbiAgICAgICAgdGhpcy5iYXNpY1F1ZXJ5Q29uZmlnID0gdGhpcy5pbml0UXVlcnlCdWlsZGVyKGZpbHRlckVudGl0eSwgdHJ1ZSk7XHJcbiAgICAgICAgdGhpcy5iYXNpY1F1ZXJ5Q29uZmlnID0gdGhpcy5maWx0ZXJGaWVsZHNCeUlkKHRoaXMuYmFzaWNRdWVyeUNvbmZpZywgYmFzaWNGaWx0ZXJJZHMpO1xyXG4gICAgICAgIHRoaXMuYmFzaWNRdWVyeUNvbmZpZy5maWVsZHMgPSB0aGlzLnRyYW5zbGF0ZUZpZWxkcyh0aGlzLmJhc2ljUXVlcnlDb25maWcuZmllbGRzKTtcclxuICAgICAgICB0aGlzLmFkdmFuY2VkUXVlcnlDb25maWcgPSB0aGlzLmluaXRRdWVyeUJ1aWxkZXIoZmlsdGVyRW50aXR5LCBmYWxzZSk7XHJcbiAgICAgICAgdGhpcy5hZHZhbmNlZFF1ZXJ5Q29uZmlnID0gdGhpcy5maWx0ZXJGaWVsZHNCeUlkKHRoaXMuYWR2YW5jZWRRdWVyeUNvbmZpZywgYWR2YW5jZWRGaWx0ZXJJZHMpO1xyXG4gICAgICAgIHRoaXMuYWR2YW5jZWRRdWVyeUNvbmZpZy5maWVsZHMgPSB0aGlzLnRyYW5zbGF0ZUZpZWxkcyh0aGlzLmFkdmFuY2VkUXVlcnlDb25maWcuZmllbGRzKTtcclxuICAgICAgICBsZXQgcnVsZXMgPSBPYmplY3Qua2V5cyh0aGlzLmJhc2ljUXVlcnlDb25maWcuZmllbGRzKVxyXG4gICAgICAgICAgLm1hcChmaWVsZEtleSA9PiB7IFxyXG4gICAgICAgICAgICBsZXQgZGVmYXVsdE9wZXJhdG9yID0gdGhpcy5kZWZhdWx0T3BlcmF0b3JzLmZpbmQob3BlcmF0b3IgPT4gb3BlcmF0b3IucWJmaWx0ZXJGaWVsZElkID09IHRoaXMuYmFzaWNRdWVyeUNvbmZpZy5maWVsZHNbZmllbGRLZXldLmlkICYmIG9wZXJhdG9yLnFiZGVmYXVsdE9wZXJhdG9yICE9IG51bGwpO1xyXG4gICAgICAgICAgICByZXR1cm4ge1xyXG4gICAgICAgICAgICAgIGZpZWxkOiBmaWVsZEtleSwgXHJcbiAgICAgICAgICAgICAgdmFsdWU6IHRoaXMuYmFzaWNRdWVyeUNvbmZpZy5maWVsZHNbZmllbGRLZXldLmRlZmF1bHRWYWx1ZSEsXHJcbiAgICAgICAgICAgICAgb3BlcmF0b3I6IGRlZmF1bHRPcGVyYXRvciA/IGRlZmF1bHRPcGVyYXRvci5xYmRlZmF1bHRPcGVyYXRvci5zeW1ib2wgOiBudWxsXHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgIH0pO1xyXG5cclxuICAgICAgICAgIGlmKHRoaXMuc3RvcmVkUXVlcnkgJiYgdGhpcy5zdG9yZWRRdWVyeT8uaWQgPT0gdGhpcy5maWx0ZXJJZCAmJiB0aGlzLnN0b3JlZFF1ZXJ5Py5iYXNpY1F1ZXJ5VmFsdWUgJiYgdGhpcy5zdG9yZWRRdWVyeT8uYmFzaWNRdWVyeVZhbHVlLnJ1bGVzLmxlbmd0aCAhPSAwKSB7XHJcbiAgICAgICAgICAgIHRoaXMuYmFzaWNRdWVyeSA9IHRoaXMuc3RvcmVkUXVlcnkuYmFzaWNRdWVyeVZhbHVlO1xyXG4gICAgICAgICAgfSBlbHNlIHtcclxuICAgICAgICAgICAgdGhpcy5iYXNpY1F1ZXJ5ID0ge1xyXG4gICAgICAgICAgICAgIGNvbmRpdGlvbjogJ2FuZCcsXHJcbiAgICAgICAgICAgICAgcnVsZXM6IHJ1bGVzXHJcbiAgICAgICAgICAgIH07XHJcbiAgICAgICAgICB9XHJcbiAgICAgICAgICBpZih0aGlzLnN0b3JlZFF1ZXJ5ICYmIHRoaXMuc3RvcmVkUXVlcnk/LmlkID09IHRoaXMuZmlsdGVySWQgJiYgdGhpcy5zdG9yZWRRdWVyeT8uYWR2YW5jZWRRdWVyeVZhbHVlICYmIHRoaXMuc3RvcmVkUXVlcnk/LmFkdmFuY2VkUXVlcnlWYWx1ZS5ydWxlcy5sZW5ndGggIT0gMCkge1xyXG4gICAgICAgICAgICB0aGlzLmFkdmFuY2VkUXVlcnkgPSB0aGlzLnN0b3JlZFF1ZXJ5LmFkdmFuY2VkUXVlcnlWYWx1ZTtcclxuICAgICAgICAgIH0gZWxzZSB7XHJcbiAgICAgICAgICAgIHRoaXMuYWR2YW5jZWRRdWVyeSA9IHtcclxuICAgICAgICAgICAgICBjb25kaXRpb246ICdhbmQnLFxyXG4gICAgICAgICAgICAgIHJ1bGVzOiBbXVxyXG4gICAgICAgICAgICB9O1xyXG4gICAgICAgICAgfVxyXG5cclxuICAgICAgICB0aGlzLnF1ZXJ5Q29uZmlnUmVhZHkgPSB0cnVlO1xyXG4gICAgICAgIHRoaXMuaW5pdFF1ZXJ5QnVpbGRlckNvbnRyb2xzKCk7XHJcbiAgICAgIH0pXHJcbiAgfVxyXG5cclxuICBkZWZhdWx0VmFsdWVBZGFwdGVyKHZhbHVlOiBhbnkpIHtcclxuICAgIGlmKHZhbHVlID09ICdRQkZpbHRlck9wdGlvbnNFbnVtTnVsbCcpIHtcclxuICAgICAgcmV0dXJuIDA7XHJcbiAgICB9XHJcblxyXG4gICAgaWYodmFsdWUgPT0gJ1FCRmlsdGVyT3B0aW9uc0VudW1Ob3ROdWxsJykge1xyXG4gICAgICByZXR1cm4gMTtcclxuICAgIH1cclxuICAgIFxyXG4gICAgaWYodmFsdWUgPT0gJzAnKSB7XHJcbiAgICAgIHJldHVybiAwO1xyXG4gICAgfVxyXG5cclxuICAgIGlmKHZhbHVlID09ICcxJykge1xyXG4gICAgICByZXR1cm4gMTtcclxuICAgIH1cclxuICAgIGlmKHZhbHVlID09ICdGcm9tRGF0ZVRpbWVOb3cnKSB7XHJcbiAgICAgIHJldHVybiBuZXcgRGF0ZShuZXcgRGF0ZShuZXcgRGF0ZSgpLmdldEZ1bGxZZWFyKCksIG5ldyBEYXRlKCkuZ2V0TW9udGgoKSwgbmV3IERhdGUoKS5nZXREYXRlKCksIDAsMCwwKSk7XHJcbiAgICB9XHJcbiAgICBpZih2YWx1ZSA9PSAnVG9EYXRlVGltZU5vdycpIHtcclxuICAgICAgcmV0dXJuIG5ldyBEYXRlKG5ldyBEYXRlKG5ldyBEYXRlKCkuZ2V0RnVsbFllYXIoKSwgbmV3IERhdGUoKS5nZXRNb250aCgpLCBuZXcgRGF0ZSgpLmdldERhdGUoKSwgMjMsNTksNTkpKTtcclxuICAgIH1cclxuICAgIHJldHVybiB2YWx1ZTtcclxuICB9XHJcblxyXG4gIGluaXRRdWVyeUJ1aWxkZXIoZmlsdGVyRW50aXRpZXM6IFFiRmlsdGVyRW50aXR5W10sIGlzQmFzaWM6IGJvb2xlYW4pIHtcclxuICAgIGxldCBlbnRpdHlDb25maWdBdXg6IFF1ZXJ5QnVpbGRlckNvbmZpZyA9IHsgZmllbGRzOiB7fSB9O1xyXG4gICAgbGV0IGVudGl0aWVzQXJyYXk6IEVudGl0eU1hcFtdID0gW107XHJcbiAgICBcclxuICAgIGZpbHRlckVudGl0aWVzLm1hcCgoZSwgaW5kZXgpID0+IHtcclxuICAgICAgbGV0IGVudGl0eTogRW50aXR5ID0geyBuYW1lOiBlLmpzb25OYW1lIH07XHJcbiAgICAgIHJldHVybiBlbnRpdGllc0FycmF5W2luZGV4XSA9IHsgW2UuanNvbk5hbWVdOiBlbnRpdHkgfTtcclxuICAgIH0pO1xyXG5cclxuICAgIGxldCBlbnRpdGllc01hcDogRW50aXR5TWFwID0ge307XHJcblxyXG4gICAgZm9yIChjb25zdCBlbnRpdHkgb2YgZW50aXRpZXNBcnJheSkge1xyXG4gICAgICBjb25zdCBrZXlzID0gT2JqZWN0LmtleXMoZW50aXR5KTtcclxuXHJcbiAgICAgIGtleXMuZm9yRWFjaChrZXkgPT4ge1xyXG4gICAgICAgIGlmKHRoaXMudHJhbnNsYXRpb25zT2JqZWN0LmVudGl0aWVzKSB7XHJcbiAgICAgICAgICBsZXQgZW50aXRpZXNUcmFuc2xhdGlvbnNLZXlzID0gT2JqZWN0LmtleXModGhpcy50cmFuc2xhdGlvbnNPYmplY3QuZW50aXRpZXMpO1xyXG4gICAgICAgICAgbGV0IHRyYW5zbGF0aW9uID0gZW50aXRpZXNUcmFuc2xhdGlvbnNLZXlzLmZpbmQodHJhbnNsYXRpb25LZXkgPT4gdHJhbnNsYXRpb25LZXkgPT0ga2V5KTtcclxuICAgICAgICAgIGlmKHRyYW5zbGF0aW9uKSB7XHJcbiAgICAgICAgICAgIGVudGl0aWVzTWFwW2tleV0gPSB7IG5hbWU6IHRoaXMudHJhbnNsYXRpb25zT2JqZWN0LmVudGl0aWVzW2tleV0gfVxyXG4gICAgICAgICAgfSBlbHNlIHtcclxuICAgICAgICAgICAgZW50aXRpZXNNYXBba2V5XSA9IGVudGl0eVtrZXldXHJcbiAgICAgICAgICB9XHJcbiAgICAgICAgfSBlbHNlIHtcclxuICAgICAgICAgIGVudGl0aWVzTWFwW2tleV0gPSBlbnRpdHlba2V5XVxyXG4gICAgICAgIH1cclxuICAgICAgfSk7XHJcblxyXG4gICAgICBlbnRpdHlDb25maWdBdXguZW50aXRpZXMgPSBlbnRpdGllc01hcDtcclxuICAgIH1cclxuXHJcbiAgICBsZXQgZmllbGRzOiBGaWVsZE1hcFtdID0gW107XHJcbiAgICBmaWx0ZXJFbnRpdGllcy5mb3JFYWNoKChmaWx0ZXJFbnRpdHkpID0+IHtcclxuICAgICAgcmV0dXJuIGZpbHRlckVudGl0eS5maWVsZHMuZmlsdGVyKChmaWx0ZXJGaWVsZDogRmlsdGVyRmllbGQpID0+IHtcclxuICAgICAgICBsZXQgaW5kZXg6IG51bWJlciA9IGZpZWxkcy5sZW5ndGggPz8gMDtcclxuICAgICAgICBsZXQgb3BlcmF0b3JzRmxhdEFycmF5ID0gZmlsdGVyRmllbGQub3BlcmF0b3JzLm1hcCgobzphbnkpID0+IG8uc3ltYm9sKTtcclxuICAgICAgICBsZXQgZGVmYXVsdE9wZXJhdG9yID0gdGhpcy5kZWZhdWx0T3BlcmF0b3JzLmZpbmQob3BlcmF0b3IgPT4gb3BlcmF0b3IucWJmaWx0ZXJGaWVsZElkID09IGZpbHRlckZpZWxkLmlkKTtcclxuICAgICAgICBsZXQgZmllbGQ6IEZpZWxkID0ge1xyXG4gICAgICAgICAgaWQ6IGZpbHRlckZpZWxkLmlkLFxyXG4gICAgICAgICAgbmFtZTogZmlsdGVyRmllbGQubmFtZSxcclxuICAgICAgICAgIG9wZXJhdG9yczogZGVmYXVsdE9wZXJhdG9yLnFiZGVmYXVsdE9wZXJhdG9yPy5zeW1ib2wgPyB0aGlzLm1vdmVFbGVtZW50VG9GaXJzdFBsYWNlKG9wZXJhdG9yc0ZsYXRBcnJheSwgZGVmYXVsdE9wZXJhdG9yLnFiZGVmYXVsdE9wZXJhdG9yPy5zeW1ib2wpIDogb3BlcmF0b3JzRmxhdEFycmF5LFxyXG4gICAgICAgICAgdHlwZTogdGhpcy5nZXREYXRhVHlwZShmaWx0ZXJGaWVsZC5kYXRhVHlwZSksXHJcbiAgICAgICAgICBkZWZhdWx0VmFsdWU6IHRoaXMuZm9ybWF0RGVmYXVsdFZhbHVlKHRoaXMuZGVmYXVsdFZhbHVlcy5maW5kKHZhbHVlID0+IHZhbHVlLnFiZmlsdGVyRmllbGRJZCA9PSBmaWx0ZXJGaWVsZC5pZCAmJiB2YWx1ZS5iYXNpYyA9PSBpc0Jhc2ljKT8uZGVmYXVsdFZhbHVlLCBmaWx0ZXJGaWVsZC5kYXRhVHlwZSksXHJcbiAgICAgICAgICBkZWZhdWx0T3BlcmF0b3I6IGRlZmF1bHRPcGVyYXRvci5xYmRlZmF1bHRPcGVyYXRvcj8uc3ltYm9sLFxyXG4gICAgICAgICAgZW50aXR5OiBmaWx0ZXJFbnRpdHkuanNvbk5hbWUsXHJcbiAgICAgICAgICBvcHRpb25zOiBmaWx0ZXJGaWVsZC5saXN0T2ZWYWx1ZXMsXHJcbiAgICAgICAgICB2YWxpZGF0b3I6IChydWxlOiBSdWxlLCBwYXJlbnQ6IFJ1bGVTZXQpOiBhbnkgfCBudWxsID0+IHtcclxuICAgICAgICAgICAgaWYgKHJ1bGUub3BlcmF0b3IgIT09IFwiaXMgbnVsbFwiICYmIHJ1bGUub3BlcmF0b3IgIT09IFwiaXMgbm90IG51bGxcIikge1xyXG4gICAgICAgICAgICAgIGlmIChydWxlLnZhbHVlID09PSB1bmRlZmluZWQgfHwgcnVsZS52YWx1ZSA9PT0gbnVsbCB8fCBydWxlLnZhbHVlID09PSAnJyB8fCBydWxlLnZhbHVlLmxlbmd0aCA9PSAwKSB7XHJcbiAgICAgICAgICAgICAgICByZXR1cm4geyByZXF1aXJlZDogJ2VtcHR5IGZpZWxkJyB9O1xyXG4gICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICByZXR1cm4gbnVsbDtcclxuICAgICAgICAgIH1cclxuICAgICAgICB9XHJcbiAgICAgICAgdGhpcy5lbnRpdGllcy5wdXNoKHtmaWVsZEpzb25OYW1lOiBmaWx0ZXJGaWVsZC5qc29uTmFtZSwgZW50aXR5OiBmaWVsZC5lbnRpdHl9KTtcclxuICAgICAgICBmaWVsZHNbaW5kZXhdID0geyBbZmlsdGVyRmllbGQuanNvbk5hbWVdOiBmaWVsZCB9O1xyXG4gICAgICB9KTtcclxuICAgIH0pO1xyXG5cclxuICAgIGxldCBmaWVsZHNNYXA6IEZpZWxkTWFwID0ge307XHJcblxyXG4gICAgZm9yIChjb25zdCBmaWVsZCBvZiBmaWVsZHMpIHtcclxuICAgICAgY29uc3Qga2V5cyA9IE9iamVjdC5rZXlzKGZpZWxkKTtcclxuICAgICAga2V5cy5mb3JFYWNoKGtleSA9PiB7XHJcbiAgICAgICAgZmllbGRzTWFwW2tleV0gPSBmaWVsZFtrZXldO1xyXG4gICAgICB9KTtcclxuXHJcbiAgICAgIGVudGl0eUNvbmZpZ0F1eC5maWVsZHMgPSBmaWVsZHNNYXA7XHJcbiAgICB9XHJcbiAgICByZXR1cm4gZW50aXR5Q29uZmlnQXV4O1xyXG4gIH1cclxuXHJcbiAgZmlsdGVyRmllbGRzQnlJZChmaWVsZHNPYmo6IGFueSwgaWRBcnJheTogbnVtYmVyW10pOiBhbnkge1xyXG4gICAgY29uc3QgZmlsdGVyZWRGaWVsZHM6IGFueSA9IHt9O1xyXG4gICAgXHJcbiAgICBmb3IgKGNvbnN0IGtleSBpbiBmaWVsZHNPYmouZmllbGRzKSB7XHJcbiAgICAgIGNvbnN0IGZpZWxkID0gZmllbGRzT2JqLmZpZWxkc1trZXldO1xyXG4gICAgICBpZiAoaWRBcnJheS5pbmNsdWRlcyhmaWVsZC5pZCkpIHtcclxuICAgICAgICBmaWx0ZXJlZEZpZWxkc1trZXldID0gZmllbGQ7XHJcbiAgICAgIH1cclxuICAgIH1cclxuICAgIFxyXG4gICAgcmV0dXJuIHtcclxuICAgICAgLi4uZmllbGRzT2JqLFxyXG4gICAgICBmaWVsZHM6IGZpbHRlcmVkRmllbGRzLFxyXG4gICAgfTtcclxuICB9XHJcblxyXG4gIHRyYW5zbGF0ZUZpZWxkcyhmaWVsZHM6IEZpZWxkTWFwKSB7XHJcbiAgICBmb3IgKGNvbnN0IGtleSBpbiBmaWVsZHMpIHtcclxuICAgICAgaWYgKGZpZWxkcy5oYXNPd25Qcm9wZXJ0eShrZXkpKSB7XHJcbiAgICAgICAgZmllbGRzW2tleV0uZmllbGQgPSBrZXk7XHJcbiAgICAgICAgZmllbGRzW2tleV0ubmFtZSA9IHRoaXMudHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1trZXldO1xyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgICByZXR1cm4gZmllbGRzO1xyXG4gIH1cclxuXHJcbiAgbW92ZUVsZW1lbnRUb0ZpcnN0UGxhY2UoYXJyYXk6IGFueVtdLCBlbGVtZW50VG9GaXJzdFBsYWNlOiBzdHJpbmcpIHtcclxuICAgIGNvbnN0IGluZGV4ID0gYXJyYXkuaW5kZXhPZihlbGVtZW50VG9GaXJzdFBsYWNlKTtcclxuICAgIGlmIChpbmRleCAhPT0gLTEpIHtcclxuICAgICAgYXJyYXkuc3BsaWNlKGluZGV4LCAxKTtcclxuICAgICAgYXJyYXkudW5zaGlmdChlbGVtZW50VG9GaXJzdFBsYWNlKTsgXHJcbiAgICB9XHJcbiAgICByZXR1cm4gYXJyYXk7XHJcbiAgfVxyXG5cclxuICBmb3JtYXREZWZhdWx0VmFsdWUodmFsdWU6IGFueSwgdHlwZTogUUJEYXRhVHlwZUVudW0pIHtcclxuICAgIGlmKHZhbHVlKSB7XHJcbiAgICAgIGlmKHR5cGUgPT0gUUJEYXRhVHlwZUVudW0uQm9vbGVhbikge1xyXG4gICAgICAgIHJldHVybiB2YWx1ZS50b0xvd2VyQ2FzZSgpID09PSAndHJ1ZSc7XHJcbiAgICAgIH1cclxuICAgICAgaWYodHlwZSA9PSB0aGlzLnFiRGF0YVR5cGVFbnVtLk51bWJlciB8fCB0eXBlID09IHRoaXMucWJEYXRhVHlwZUVudW0uRGVjaW1hbCB8fCB0eXBlID09IHRoaXMucWJEYXRhVHlwZUVudW0uTGlzdCl7XHJcbiAgICAgICAgcmV0dXJuIE51bWJlcih2YWx1ZSk7XHJcbiAgICAgIH1cclxuICAgICAgaWYodHlwZSA9PSB0aGlzLnFiRGF0YVR5cGVFbnVtLk51bGxhYmxlU2VsZWN0KSB7XHJcbiAgICAgICAgcmV0dXJuIDE7XHJcbiAgICAgIH1cclxuICAgICAgaWYodHlwZSA9PSB0aGlzLnFiRGF0YVR5cGVFbnVtLkJvb2xlYW5TZWxlY3QpIHtcclxuICAgICAgICByZXR1cm4gMTtcclxuICAgICAgfVxyXG4gICAgICBpZih0eXBlID09IHRoaXMucWJEYXRhVHlwZUVudW0uTXVsdGlzZWxlY3QpIHtcclxuICAgICAgICByZXR1cm4gdGhpcy5wYXJzZVN0cmluZ1RvTnVtYmVyQXJyYXkodmFsdWUpO1xyXG4gICAgICB9XHJcbiAgICAgIGlmKHR5cGUgPT0gdGhpcy5xYkRhdGFUeXBlRW51bS5UcmFuc2xhdGVkU2VsZWN0KSB7XHJcbiAgICAgICAgcmV0dXJuIE51bWJlcih2YWx1ZSk7XHJcbiAgICAgIH1cclxuICAgIH0gXHJcbiAgICByZXR1cm4gdmFsdWU7XHJcbiAgfVxyXG5cclxuICBwYXJzZVN0cmluZ1RvTnVtYmVyQXJyYXkoaW5wdXQ6IHN0cmluZyk6IG51bWJlcltdIHtcclxuICAgIHJldHVybiBpbnB1dFxyXG4gICAgICAuc3BsaXQoJywnKVxyXG4gICAgICAubWFwKG51bSA9PiBOdW1iZXIobnVtLnRyaW0oKSkpXHJcbiAgICAgIC5maWx0ZXIobnVtID0+ICFpc05hTihudW0pKTtcclxufVxyXG5cclxuICBnZXREYXRhVHlwZShpZDogbnVtYmVyKSB7XHJcbiAgICByZXR1cm4gdGhpcy5xYkRhdGFFbnVtcy5maW5kKHZhbHVlID0+IHZhbHVlID09PSBpZCk/LnRvU3RyaW5nKCkgPz8gXCJcIjtcclxuICB9XHJcblxyXG4gIGRlbGV0ZUZpZWxkc1dpdGhvdXRWYWx1ZShqc29uOiBhbnkpIHtcclxuICAgIGlmIChqc29uLmJhc2ljICYmIGpzb24uYmFzaWMucnVsZXMpIHtcclxuICAgICAganNvbi5iYXNpYy5ydWxlcyA9IGpzb24uYmFzaWMucnVsZXMuZmlsdGVyKChydWxlOiBhbnkpID0+IHJ1bGUudmFsdWUgIT0gbnVsbCk7XHJcbiAgICAgIGpzb24uYmFzaWMucnVsZXMgPSBqc29uLmJhc2ljLnJ1bGVzLmZpbHRlcigocnVsZTogYW55KSA9PiBydWxlLnZhbHVlICE9IHVuZGVmaW5lZCk7XHJcbiAgICAgIGpzb24uYmFzaWMucnVsZXMgPSBqc29uLmJhc2ljLnJ1bGVzLmZpbHRlcigocnVsZTogYW55KSA9PiBydWxlLnZhbHVlICE9PSBcIlwiKTtcclxuICAgICAganNvbi5iYXNpYy5ydWxlcyA9IGpzb24uYmFzaWMucnVsZXMuZmlsdGVyKChydWxlOiBhbnkpID0+IHsgcmV0dXJuICEocnVsZS5vcGVyYXRvciA9PT0gXCJudWxsYWJsZVwiICYmIHJ1bGUudmFsdWUgPT09IFwibnVsbFwiKTsgfSk7XHJcbiAgICB9XHJcbiAgICBpZihqc29uLmFkdmFuY2VkICYmIGpzb24uYWR2YW5jZWQucnVsZXM/Lmxlbmd0aCAhPSAwKSB7XHJcbiAgICAgIGpzb24uYWR2YW5jZWQucnVsZXMgPSBqc29uLmFkdmFuY2VkLnJ1bGVzLmZpbHRlcigocnVsZTogYW55KSA9PiBydWxlLnJ1bGVzPy5sZW5ndGggIT0gMCk7XHJcbiAgICB9XHJcbiAgICBpZihqc29uLmdyb3VwZWQgJiYganNvbi5ncm91cGVkPy5ydWxlcy5sZW5ndGggIT0gMCkge1xyXG4gICAgICBqc29uLmdyb3VwZWQucnVsZXMgPSBqc29uLmdyb3VwZWQucnVsZXMuZmlsdGVyKChydWxlOiBhbnkpID0+IHJ1bGUucnVsZXM/Lmxlbmd0aCAhPSAwKTtcclxuICAgIH1cclxuICAgIGlmKGpzb24uZ3JvdXBlZCAmJiBqc29uLmdyb3VwZWQ/LnJ1bGVzLmxlbmd0aCA9PSAwKSB7XHJcbiAgICAgIGpzb24uZ3JvdXBlZCA9IG51bGw7XHJcbiAgICB9XHJcbiAgICByZXR1cm4ganNvbjtcclxuICB9XHJcbiAgXHJcbiAgaW5pdGlhbGl6ZU9wZXJhdG9ycyhqc29uOiBhbnkpIHtcclxuICAgIGlmIChqc29uLmJhc2ljICYmIGpzb24uYmFzaWMucnVsZXMpIHtcclxuICAgICAganNvbi5iYXNpYy5ydWxlcy5mb3JFYWNoKChydWxlOmFueSkgPT4ge1xyXG4gICAgICAgIGlmKCFydWxlLm9wZXJhdG9yKSB7XHJcbiAgICAgICAgICBydWxlLm9wZXJhdG9yID0gXCI9XCI7XHJcbiAgICAgICAgfVxyXG4gICAgICB9KTtcclxuICAgIH1cclxuICAgIHJldHVybiBqc29uO1xyXG4gIH1cclxuXHJcbiAgcmVzZXRCYXNpY1F1ZXJ5VmFsdWVzKCkge1xyXG4gICAgdGhpcy5iYXNpY1F1ZXJ5LnJ1bGVzLmZvckVhY2goKHJ1bGU6IFJ1bGUpID0+IHtcclxuICAgICAgaWYocnVsZS52YWx1ZSB8fCBydWxlLnZhbHVlID09IDApe1xyXG4gICAgICAgIHJ1bGUudmFsdWUgPSBudWxsXHJcbiAgICAgIH1cclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgZ2V0UXVlcnlGaWVsZE5hbWUoZmllbGROYW1lOiBzdHJpbmcsIGZpZWxkczogRmllbGRNYXApIHtcclxuICAgIGNvbnN0IGZpZWxkRW50cnkgPSBPYmplY3Qua2V5cyhmaWVsZHMpLmZpbmQoa2V5ID0+IGZpZWxkc1trZXldLmZpZWxkID09PSBmaWVsZE5hbWUpO1xyXG5cclxuICAgIHJldHVybiBmaWVsZEVudHJ5ICYmIGZpZWxkc1tmaWVsZEVudHJ5XS5uYW1lID8gZmllbGRzW2ZpZWxkRW50cnldLm5hbWUgOiBmaWVsZE5hbWU7XHJcbiAgfVxyXG5cclxuICBnZXROdWxsYWJsZVNlbGVjdE9wdGlvbnMob3B0aW9uczogTnVsbGFibGVTZWxlY3RPcHRpb25bXSkge1xyXG4gICAgcmV0dXJuIG9wdGlvbnMubWFwKChvcHRpb246IE51bGxhYmxlU2VsZWN0T3B0aW9uKSA9PiB7XHJcbiAgICAgIHJldHVybiB7XHJcbiAgICAgICAgbmFtZTogb3B0aW9uLnZhbHVlID09PSAxID8gXHJcbiAgICAgICAgICB0aGlzLnRyYW5zbGF0aW9uc09iamVjdC5udWxsYWJsZVNlbGVjdE9wdGlvbnMhW29wdGlvbi5uYW1lXS5pc05vdE51bGxPcHRpb24gOlxyXG4gICAgICAgICAgdGhpcy50cmFuc2xhdGlvbnNPYmplY3QubnVsbGFibGVTZWxlY3RPcHRpb25zIVtvcHRpb24ubmFtZV0uaXNOdWxsT3B0aW9uLFxyXG4gICAgICAgIHZhbHVlOiBvcHRpb24udmFsdWUsXHJcbiAgICAgIH1cclxuICAgIH0pXHJcbiAgfVxyXG4gIFxyXG4gIGdldEJvb2xlYW5TZWxlY3RPcHRpb25zKG9wdGlvbnM6IEJvb2xlYW5TZWxlY3RPcHRpb25bXSkge1xyXG4gICAgcmV0dXJuIG9wdGlvbnMubWFwKChvcHRpb246IEJvb2xlYW5TZWxlY3RPcHRpb24pID0+IHtcclxuICAgICAgcmV0dXJuIHtcclxuICAgICAgICBuYW1lOiBvcHRpb24udmFsdWUgPT09IDEgPyBcclxuICAgICAgICAgIHRoaXMudHJhbnNsYXRpb25zT2JqZWN0LmJvb2xlYW5TZWxlY3RPcHRpb25zIVtvcHRpb24ubmFtZV0uaXNOb3ROdWxsT3B0aW9uIDpcclxuICAgICAgICAgIHRoaXMudHJhbnNsYXRpb25zT2JqZWN0LmJvb2xlYW5TZWxlY3RPcHRpb25zIVtvcHRpb24ubmFtZV0uaXNOdWxsT3B0aW9uLFxyXG4gICAgICAgIHZhbHVlOiBvcHRpb24udmFsdWUsXHJcbiAgICAgIH1cclxuICAgIH0pXHJcbiAgfVxyXG5cclxuICBnZXRUcmFuc2xhdGVkU2VsZWN0T3B0aW9ucyhvcHRpb25zOiBUcmFuc2xhdGVkU2VsZWN0T3B0aW9uW10pIHtcclxuICAgIHJldHVybiBvcHRpb25zLm1hcCgob3B0aW9uOiBUcmFuc2xhdGVkU2VsZWN0T3B0aW9uKSA9PiB7XHJcbiAgICAgIHJldHVybiB7XHJcbiAgICAgICAgbmFtZTogdGhpcy50cmFuc2xhdGlvbnNPYmplY3QudHJhbnNsYXRlZFNlbGVjdE9wdGlvbnMhW29wdGlvbi5uYW1lLmNoYXJBdCgwKS50b0xvd2VyQ2FzZSgpICsgb3B0aW9uLm5hbWUuc2xpY2UoMSldID8/IG9wdGlvbi5uYW1lLFxyXG4gICAgICAgIHZhbHVlOiBvcHRpb24udmFsdWVcclxuICAgICAgfVxyXG4gICAgfSlcclxuICB9XHJcblxyXG4gIGZpZWxkSXNCb29sZWFuKGZpZWxkTmFtZTogc3RyaW5nLCBmaWVsZHM6IEZpZWxkTWFwKSB7XHJcbiAgICBjb25zdCBmaWVsZEVudHJ5ID0gT2JqZWN0LmtleXMoZmllbGRzKS5maW5kKGtleSA9PiBmaWVsZHNba2V5XS5maWVsZCA9PT0gZmllbGROYW1lKTtcclxuXHJcbiAgICByZXR1cm4gZmllbGRzW2ZpZWxkRW50cnkhXS50eXBlID09IFFCRGF0YVR5cGVFbnVtLkJvb2xlYW4udG9TdHJpbmcoKSA/IHRydWUgOiBmYWxzZTtcclxuICB9XHJcblxyXG4gIGlzTXVsdGlzZWxlY3QocnVsZTogUnVsZSkge1xyXG4gICAgaWYocnVsZS5vcGVyYXRvciA9PSAnaW4nIHx8IHJ1bGUub3BlcmF0b3IgPT0gJ25vdCBpbicgfHwgcnVsZS5vcGVyYXRvciA9PSAnaXMgbnVsbCcgfHwgcnVsZS5vcGVyYXRvciA9PSAnaXMgbm90IG51bGwnKSB7XHJcbiAgICAgIGlmKHJ1bGUudmFsdWUpIHtcclxuICAgICAgICBpZighQXJyYXkuaXNBcnJheShydWxlLnZhbHVlKSkge1xyXG4gICAgICAgICAgcnVsZS52YWx1ZSA9IG51bGw7XHJcbiAgICAgICAgfVxyXG4gICAgICB9XHJcbiAgICAgIHJldHVybiB0cnVlO1xyXG4gICAgfSBlbHNlIHtcclxuICAgICAgaWYocnVsZS52YWx1ZSkge1xyXG4gICAgICAgIGlmKEFycmF5LmlzQXJyYXkocnVsZS52YWx1ZSkpXHJcbiAgICAgICAgcnVsZS52YWx1ZSA9IG51bGw7XHJcbiAgICAgIH1cclxuICAgICAgcmV0dXJuIGZhbHNlO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgaXNUb0tlZXBMb2NhbERhdGUoZmllbGQ6IHN0cmluZyl7XHJcbiAgICByZXR1cm4gdGhpcy5maWVsZHNUb0tlZXBMb2NhbERhdGUubGVuZ3RoID09IDAgPyBmYWxzZSA6IHRoaXMuZmllbGRzVG9LZWVwTG9jYWxEYXRlLmluY2x1ZGVzKGZpZWxkKVxyXG4gIH1cclxufVxyXG4iLCI8IS0tIFRPRE86IEludGVudGFyIG90cmEgdmV6IHBhc2FyIGxvcyBjb21wb25lbnRlcyBhIGxvcyBkZSB3LSBwb3JxdWUgbm8gc2UgYWxpbmVuYSB5IGVsIHctZWRpdC1zZWxlY3Qgbm8gdmEgYmllbiBlbiBmaWVsZC4gXHJcbiAgQWhvcmEgc2UgY29uc2VydmFuIGxvcyBkZSBwLXcgY29uIGVzdGlsb3MuIC0tPlxyXG48cC1ibG9ja1VJIHN0eWxlQ2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1ibG9ja3VpXCIgW2F1dG9aSW5kZXhdPVwiZmFsc2VcIiBbdGFyZ2V0XT1cImZpbHRlclBhbmVsXCIgW2Jsb2NrZWRdPVwiZGF0YUlzTG9hZGluZ1NlYXJjaEJ1dHRvblwiPjwvcC1ibG9ja1VJPlxyXG5cclxuPHAtY2FyZCBzdHlsZUNsYXNzPVwidy1maWx0ZXItcGFuZWwtbm8tc3R5bGUtY2FyZFwiICNmaWx0ZXJQYW5lbD5cclxuICA8ZGl2ICpuZ0lmPVwicXVlcnlDb25maWdSZWFkeVwiIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtc3R5bGVzXCI+XHJcbiAgICA8ZGl2ICpuZ0lmPVwiIWZpbHRlclBhbmVsT2JqZWN0LmFsbG93QWR2YW5jZWRTZWFyY2g7IGVsc2UgYmFpc2NBbmRBZHZhbmNlZFwiPlxyXG4gICAgICA8ZGl2IFtuZ0NsYXNzXT1cInsgJ3ctZmlsdGVyLXBhbmVsLWNvbnRhaW5lci1hZHZhbmNlZCcgOiBpc0FkdmFuY2VkU2VhcmNoLCAndy1maWx0ZXItcGFuZWwtY29udGFpbmVyLWJhc2ljJyA6ICFpc0FkdmFuY2VkU2VhcmNoIH1cIj5cclxuICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiYmFzaWNcIj48L25nLWNvbnRhaW5lcj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYnV0dG9uc1wiPlxyXG4gICAgICAgICAgPHctYnV0dG9uIGljb249XCJ3LWljb24gY2xvc2VDaXJjbGVcIiBidXR0b25DbGFzcz1cImNhbmNlbC1maWx0ZXItYnV0dG9uXCIgW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5jbGVhckJ1dHRvbkxhYmVsXCIgdHlwZT1cInRlcnRpYXJ5XCIgc2l6ZT1cInNtYWxsXCIgKG9uQ2xpY2spPVwib25DbGVhckNsaWNrZWQoKVwiPjwvdy1idXR0b24+XHJcbiAgICAgICAgICA8dy1idXR0b24gaWNvbj1cInBpIHBpLWZpbHRlci1maWxsXCIgYnV0dG9uQ2xhc3M9XCJzZXQtZmlsdGVyLWJ1dHRvblwiIFtsYWJlbF09XCJ0cmFuc2xhdGlvbnNPYmplY3Quc2VhcmNoQnV0dG9uTGFiZWxcIiBzaXplPVwic21hbGxcIiAob25DbGljayk9XCJvblNlYXJjaENsaWNrZWQoKVwiPjwvdy1idXR0b24+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcblxyXG4gICAgPG5nLXRlbXBsYXRlICNiYWlzY0FuZEFkdmFuY2VkPlxyXG4gICAgICA8ZGl2IFtuZ0NsYXNzXT1cInsgJ3ctZmlsdGVyLXBhbmVsLWNvbnRhaW5lci1hZHZhbmNlZCcgOiBpc0FkdmFuY2VkU2VhcmNoLCAndy1maWx0ZXItcGFuZWwtY29udGFpbmVyLWJhc2ljJyA6ICFpc0FkdmFuY2VkU2VhcmNoIH1cIj5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCIhaXNBZHZhbmNlZFNlYXJjaDsgZWxzZSBhZHZhbmNlZFZpZXdcIj5cclxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImJhc2ljXCI+PC9uZy1jb250YWluZXI+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjYWR2YW5jZWRWaWV3PlxyXG4gICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiYWR2YW5jZWRcIj48L25nLWNvbnRhaW5lcj5cclxuICAgICAgICAgIDwvbmctdGVtcGxhdGU+XHJcblxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWJ1dHRvbnNcIiBbY2xhc3MucHQtM109XCJpc0FkdmFuY2VkU2VhcmNoXCI+XHJcbiAgICAgICAgICAgIDx3LWJ1dHRvbiBidXR0b25DbGFzcz1cImNhbmNlbC1maWx0ZXItYnV0dG9uXCIgW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5jbGVhckJ1dHRvbkxhYmVsXCIgaWNvbj1cInctaWNvbiBjbG9zZUNpcmNsZVwiIHR5cGU9XCJ0ZXJ0aWFyeVwiIHNpemU9XCJzbWFsbFwiIChvbkNsaWNrKT1cIm9uQ2xlYXJDbGlja2VkKClcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgICA8dy1idXR0b24gYnV0dG9uQ2xhc3M9XCJzZXQtZmlsdGVyLWJ1dHRvblwiIFtsYWJlbF09XCJ0cmFuc2xhdGlvbnNPYmplY3Quc2VhcmNoQnV0dG9uTGFiZWxcIiBpY29uPVwicGkgcGktZmlsdGVyLWZpbGxcIiBzaXplPVwic21hbGxcIiAob25DbGljayk9XCJvblNlYXJjaENsaWNrZWQoKVwiIFtsb2FkaW5nXT1cImRhdGFJc0xvYWRpbmdTZWFyY2hCdXR0b25cIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9uZy10ZW1wbGF0ZT5cclxuICA8L2Rpdj5cclxuPC9wLWNhcmQ+XHJcblxyXG4gIDxuZy10ZW1wbGF0ZSAjYmFzaWM+XHJcbiAgICA8ZGl2ICpuZ0lmPVwiZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dBZHZhbmNlZFNlYXJjaFwiIGNsYXNzPVwiZmxleCBqdXN0aWZ5LWNvbnRlbnQtZW5kIGZsZXgtd3JhcFwiPlxyXG4gICAgICA8dy1idXR0b24gYnV0dG9uQ2xhc3M9XCJjaGFuZ2UtZmlsdGVyLWJ1dHRvblwiIGljb249XCJwaSBwaS1zeW5jXCIgW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5hZHZhbmNlZFNlYXJjaFRhYkxhYmVsXCIgdHlwZT1cInRleHRcIiAob25DbGljayk9XCJ1cGRhdGVTZWFyY2hUeXBlKClcIj48L3ctYnV0dG9uPlxyXG4gICAgPC9kaXY+XHJcbiAgICA8ZGl2ICpuZ0lmPVwiYmFzaWNRdWVyeS5ydWxlcy5sZW5ndGggPiAwXCIgY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1iYXNpYyBxdWVyeS1idWlsZGVyLXN0eWxlIGZhZGVpbiBhbmltYXRpb24tZHVyYXRpb24tNTAwXCI+XHJcbiAgICAgIDxxdWVyeS1idWlsZGVyICNiYXNpY1F1ZXJ5QnVpbGRlck9iamVjdCBbZm9ybUNvbnRyb2xdPSdxdWVyeUN0cmwnIFtjb25maWddPSdiYXNpY1F1ZXJ5Q29uZmlnJyBbYWxsb3dSdWxlc2V0XT0nZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dSdWxlU2V0JyBbYWxsb3dSdWxlc2V0XT1cImZpbHRlclBhbmVsT2JqZWN0LmFsbG93UnVsZVNldFwiIFtwZXJzaXN0VmFsdWVPbkZpZWxkQ2hhbmdlXT0ncGVyc2lzdFZhbHVlT25GaWVsZENoYW5nZSc+XHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlCdXR0b25Hcm91cD1cImxldCBydWxlc2V0O1wiPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeVJlbW92ZUJ1dHRvbj1cImxldCBydWxlOyBsZXQgcmVtb3ZlUnVsZT1yZW1vdmVSdWxlXCI+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5U3dpdGNoR3JvdXA9XCJsZXQgcnVsZXNldDsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5RW50aXR5PVwibGV0IHJ1bGU7IGxldCBlbnRpdGllcz1lbnRpdGllczsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICA8cC1kcm9wZG93biBbZGlzYWJsZWRdPVwidHJ1ZVwiIGNsYXNzPVwiIHctZWRpdC1zZWxlY3Qtc21hbGxcIiAqbmdJZj1cImZhbHNlXCIgYXBwZW5kVG89XCJib2R5XCIgW29wdGlvbnNdPVwiZW50aXRpZXNcIiBbKG5nTW9kZWwpXT1cInJ1bGUuZW50aXR5XCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgb3B0aW9uVmFsdWU9XCJ2YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKCRldmVudCwgcnVsZSlcIj48L3AtZHJvcGRvd24+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5RmllbGQ9XCJsZXQgcnVsZTsgbGV0IGZpZWxkcz1maWVsZHM7IGxldCBvbkNoYW5nZT1vbkNoYW5nZTsgbGV0IGdldEZpZWxkcyA9IGdldEZpZWxkczsgbGV0IHZhbHVlPXZhbHVlOyBsZXQgbmFtZT1uYW1lOyBsZXQgaW5kZXg9aW5kZXhcIj5cclxuICAgICAgICAgICAgICA8c3BhbiBhcHBlbmRUbz1cImJvZHlcIiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWlucHV0LXRleHQtbGFiZWxcIiBbY2xhc3Mudy1maWx0ZXItcGFuZWwtYm9vbGVhbi1sYWJlbC13aWR0aF09XCJmaWVsZElzQm9vbGVhbihydWxlLmZpZWxkLCBnZXRGaWVsZHMocnVsZS5lbnRpdHkpKVwiIG9wdGlvbkxhYmVsPVwibmFtZVwiIG9wdGlvblZhbHVlPVwidmFsdWVcIj57eyBnZXRRdWVyeUZpZWxkTmFtZShydWxlLmZpZWxkLCBnZXRGaWVsZHMocnVsZS5lbnRpdHkpKX19PC9zcGFuPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeU9wZXJhdG9yPVwibGV0IHJ1bGU7IGxldCBvcGVyYXRvcnM9b3BlcmF0b3JzOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJxdWVyeS1idWlsZGVyLW9wZXJhdG9yLXdpZHRoXCI+XHJcbiAgICAgICAgICAgICAgPHAtZHJvcGRvd24gY2xhc3M9XCIgdy1lZGl0LXNlbGVjdC1zbWFsbFwiICpuZ0lmPVwiaXNBZHZhbmNlZFNlYXJjaFwiIGFwcGVuZFRvPVwiYm9keVwiIFsobmdNb2RlbCldPVwicnVsZS5vcGVyYXRvclwiIFtvcHRpb25zXT1cIm9wZXJhdG9yc1wiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKHJ1bGUpXCI+PC9wLWRyb3Bkb3duPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgdHlwZTogcWJEYXRhVHlwZUVudW0uQm9vbGVhbi50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwicXVlcnktYnVpbGRlci1vcGVyYXRvci13aWR0aFwiPlxyXG4gICAgICAgICAgICA8dy10b2dnbGUtYnV0dG9uIHNpemU9XCJzbWFsbFwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIG9uTGFiZWw9XCJUcnVlXCIgb2ZmTGFiZWw9XCJGYWxzZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIj48L3ctdG9nZ2xlLWJ1dHRvbj5cclxuICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5EYXRldGltZS50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1iYXNpYy1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoXCI+XHJcbiAgICAgICAgICAgICAgPHctZWRpdC1jYWxlbmRhciBhcHBlbmRUbz1cImJvZHlcIiBzaXplPVwic21hbGxcIiBbc2hvd0ljb25dPVwiZmFsc2VcIiBbZGF0YVR5cGVdPVwiaXNUb0tlZXBMb2NhbERhdGUocnVsZS5maWVsZCkgPyAnZGF0ZScgOiAnc3RyaW5nJ1wiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChvbkNoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW3Nob3dUaW1lXT1cInRydWVcIiBbc2hvd1NlY29uZHNdPVwidHJ1ZVwiIFtmaXJzdERheU9mV2Vla109XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmlyc3REYXlPZldlZWsgPz8gMVwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLmRhdGV0aW1lXCIgW3Nob3dMYWJlbF09XCJmYWxzZVwiPjwvdy1lZGl0LWNhbGVuZGFyPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IGZpZWxkPWZpZWxkOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5EZWNpbWFsLnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWJhc2ljLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGhcIj5cclxuICAgICAgICAgICAgICA8cC1pbnB1dE51bWJlciBpbnB1dFN0eWxlQ2xhc3M9XCJmbGV4IGZsZXgtMVwiIHN0eWxlQ2xhc3M9XCJmbGV4IGZsZXgtMVwiIGNsYXNzPVwidy1lZGl0LWlucHV0LW51bWJlci1zbWFsbFwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIGlucHV0SWQ9XCJtaW5tYXhcIiBpbnB1dElkPVwibWlubWF4XCIgbW9kZT1cImRlY2ltYWxcIiBbbWluRnJhY3Rpb25EaWdpdHNdPVwiMlwiIFttYXhGcmFjdGlvbkRpZ2l0c109XCI1XCIgW21pbl09XCIwXCIgW21heF09XCIxMDBcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMuZGVjaW1hbFwiPiA8L3AtaW5wdXROdW1iZXI+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgb3B0aW9ucz1vcHRpb25zOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5MaXN0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWJhc2ljLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGhcIj5cclxuICAgICAgICAgICAgICA8cC1kcm9wZG93biBjbGFzcz1cInctZWRpdC1zZWxlY3Qtc21hbGxcIiBhcHBlbmRUbz1cImJvZHlcIiBbb3B0aW9uc109XCJvcHRpb25zXCIgW2ZpbHRlcl09XCJ0cnVlXCIgW3Nob3dDbGVhcl09XCJ0cnVlXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIG9wdGlvbkxhYmVsPVwibmFtZVwiIG9wdGlvblZhbHVlPVwidmFsdWVcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5saXN0XCI+PC9wLWRyb3Bkb3duPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IGZpZWxkPWZpZWxkOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5OdW1iZXIudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWJhc2ljLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGhcIj5cclxuICAgICAgICAgICAgPHAtaW5wdXROdW1iZXIgW3VzZUdyb3VwaW5nXT1cImZhbHNlXCIgaW5wdXRTdHlsZUNsYXNzPVwiZmxleCBmbGV4LTFcIiBzdHlsZUNsYXNzPVwiZmxleCBmbGV4LTFcIiBjbGFzcz1cInctZWRpdC1pbnB1dC1udW1iZXItc21hbGxcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiBpbnB1dElkPVwibWlubWF4XCIgaW5wdXRJZD1cIm1pbm1heFwiIFttaW5dPVwiMFwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5udW1iZXJcIj4gPC9wLWlucHV0TnVtYmVyPlxyXG4gICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBmaWVsZD1maWVsZDsgdHlwZTogcWJEYXRhVHlwZUVudW0uVGV4dC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYmFzaWMtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aFwiPlxyXG4gICAgICAgICAgICA8dy1lZGl0LWlucHV0LXRleHQgY2xhc3M9XCJ3LWVkaXQtaW5wdXQtdGV4dC1zbWFsbC1oZWlnaHRcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMudGV4dFwiIFtzaG93TGFiZWxdPVwiZmFsc2VcIj48L3ctZWRpdC1pbnB1dC10ZXh0PlxyXG4gICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBvcHRpb25zPW9wdGlvbnM7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLk11bHRpc2VsZWN0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWJhc2ljLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGhcIj5cclxuICAgICAgICAgICAgICA8cC1tdWx0aVNlbGVjdCBjbGFzcz1cInctZWRpdC1tdWx0aXNlbGVjdC1zbWFsbFwiIFthcHBlbmRUb109XCInYm9keSdcIiBbb3B0aW9uc109XCJnZXRUcmFuc2xhdGVkU2VsZWN0T3B0aW9ucyhvcHRpb25zKSBcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgb3B0aW9uVmFsdWU9XCJ2YWx1ZVwiIGRpc3BsYXk9XCJjaGlwXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMubGlzdFwiPjwvcC1tdWx0aVNlbGVjdD5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBvcHRpb25zPW9wdGlvbnM7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLk51bGxhYmxlU2VsZWN0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1iYXNpYy1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoXCI+XHJcbiAgICAgICAgICAgIDxwLWRyb3Bkb3duIGNsYXNzPVwidy1lZGl0LXNlbGVjdC1zbWFsbFwiIGFwcGVuZFRvPVwiYm9keVwiIFtvcHRpb25zXT1cImdldE51bGxhYmxlU2VsZWN0T3B0aW9ucyhvcHRpb25zKVwiIFtmaWx0ZXJdPVwidHJ1ZVwiIFtzaG93Q2xlYXJdPVwidHJ1ZVwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBvcHRpb25MYWJlbD1cIm5hbWVcIiBvcHRpb25WYWx1ZT1cInZhbHVlXCIgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCJudWxsYWJsZVNlbGVjdFBsYWNlaG9sZGVyKHJ1bGUsIG9wdGlvbnMpXCI+XHJcbiAgICAgICAgICAgIDwvcC1kcm9wZG93bj5cclxuICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgb3B0aW9ucz1vcHRpb25zOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5Cb29sZWFuU2VsZWN0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1iYXNpYy1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoXCI+XHJcbiAgICAgICAgICAgIDxwLWRyb3Bkb3duIGNsYXNzPVwidy1lZGl0LXNlbGVjdC1zbWFsbFwiIGFwcGVuZFRvPVwiYm9keVwiIFtvcHRpb25zXT1cImdldEJvb2xlYW5TZWxlY3RPcHRpb25zKG9wdGlvbnMpXCIgW2ZpbHRlcl09XCJ0cnVlXCIgW3Nob3dDbGVhcl09XCJ0cnVlXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIG9wdGlvbkxhYmVsPVwibmFtZVwiIG9wdGlvblZhbHVlPVwidmFsdWVcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5saXN0XCI+PC9wLWRyb3Bkb3duPlxyXG4gICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBvcHRpb25zPW9wdGlvbnM7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLkFkZHJlc3MudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICA8dy1hZGRyZXNzLWZpZWxkIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbb3BlcmF0b3JdPVwicnVsZS5vcGVyYXRvclwiIFtzZWdtZW50YXRpb25BcGlVcmxdPVwic2VnbWVudGF0aW9uQXBpVXJsXCIgW3NlZ21lbnRhdGlvbkFwaVRva2VuXT1cInNlZ21lbnRhdGlvblRva2VuXCI+PC93LWFkZHJlc3MtZmllbGQ+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IG9wdGlvbnM9b3B0aW9uczsgdHlwZTogcWJEYXRhVHlwZUVudW0uVHJhbnNsYXRlZFNlbGVjdC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYmFzaWMtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aFwiPlxyXG4gICAgICAgICAgICA8cC1kcm9wZG93biBjbGFzcz1cImZpZWxkLWdhcCB3LWVkaXQtc2VsZWN0LXNtYWxsXCIgYXBwZW5kVG89XCJib2R5XCIgW29wdGlvbnNdPVwiZ2V0VHJhbnNsYXRlZFNlbGVjdE9wdGlvbnMob3B0aW9ucylcIiBbbmdNb2RlbE9wdGlvbnNdPVwie3N0YW5kYWxvbmU6IHRydWV9XCIgW2ZpbHRlcl09XCJ0cnVlXCIgW3Nob3dDbGVhcl09XCJmYWxzZVwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBvcHRpb25MYWJlbD1cIm5hbWVcIiBvcHRpb25WYWx1ZT1cInZhbHVlXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMubGlzdFwiPjwvcC1kcm9wZG93bj5cclxuICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgb3B0aW9ucz1vcHRpb25zOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5Ob3RpZmljYXRpb25FdmVudExpc3QudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICA8dy1ub3RpZmljYXRpb25zLWV2ZW50LWZpZWxkIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtbm90aWZpY2F0aW9ucy1ldmVudC1maWVsZFwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbb3BlcmF0b3JdPVwicnVsZS5vcGVyYXRvclwiIFtub3RpZmljYXRpb25BcGlVcmxdPVwibm90aWZpY2F0aW9uQXBpVXJsXCIgW25vdGlmaWNhdGlvbkFwaVRva2VuXT1cImNvbW1vbkRhdGFUb2tlblwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLmxpc3RcIj48L3ctbm90aWZpY2F0aW9ucy1ldmVudC1maWVsZD5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgPC9xdWVyeS1idWlsZGVyPlxyXG4gICAgPC9kaXY+XHJcblxyXG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIiFpc0FkdmFuY2VkU2VhcmNoICYmIGJhc2ljUXVlcnkucnVsZXMubGVuZ3RoPT0wXCIgPlxyXG4gICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwibm9RdWVyeURhdGFcIj48L25nLWNvbnRhaW5lcj5cclxuICAgIDwvbmctY29udGFpbmVyPlxyXG4gIDwvbmctdGVtcGxhdGU+XHJcblxyXG4gIDxuZy10ZW1wbGF0ZSAjYWR2YW5jZWQ+XHJcbiAgICA8ZGl2IFtjbGFzcy5xdWVyeS1idWlsZGVyLXN0eWxlXT1cIiFmaWx0ZXJQYW5lbE9iamVjdC5hbGxvd1J1bGVTZXRcIiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWNvbnRhaW5lciBmYWRlaW4gYW5pbWF0aW9uLWR1cmF0aW9uLTUwMFwiPlxyXG4gICAgICA8ZGl2ICpuZ0lmPVwiZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dSdWxlU2V0XCIgY2xhc3M9XCJmbGV4IGp1c3RpZnktY29udGVudC1lbmQgZmxleC13cmFwXCI+XHJcbiAgICAgICAgPHctYnV0dG9uIGJ1dHRvbkNsYXNzPVwiY2hhbmdlLWZpbHRlci1idXR0b25cIiBpY29uPVwicGkgcGktc3luY1wiIGNsYXNzPVwibWItMlwiIFtsYWJlbF09XCJ0cmFuc2xhdGlvbnNPYmplY3QuYmFzaWNTZWFyY2hUYWJMYWJlbFwiIHR5cGU9XCJ0ZXh0XCIgKG9uQ2xpY2spPVwidXBkYXRlU2VhcmNoVHlwZSgpXCI+PC93LWJ1dHRvbj5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIDxxdWVyeS1idWlsZGVyIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQgcXVlcnktYnVpbGRlci1zdHlsZVwiICNhZHZhbmNlZFF1ZXJ5QnVpbGRlciBbZm9ybUNvbnRyb2xdPSdhZHZhbmNlZFF1ZXJ5Q3RybCcgW2NvbmZpZ109J2FkdmFuY2VkUXVlcnlDb25maWcnIFthbGxvd1J1bGVzZXRdPSdmaWx0ZXJQYW5lbE9iamVjdC5hbGxvd1J1bGVTZXQnIFthbGxvd0NvbGxhcHNlXT0nZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dDb2xhcHNlJyBbYWxsb3dSdWxlc2V0XT1cImZpbHRlclBhbmVsT2JqZWN0LmFsbG93UnVsZVNldFwiIFtwZXJzaXN0VmFsdWVPbkZpZWxkQ2hhbmdlXT0ncGVyc2lzdFZhbHVlT25GaWVsZENoYW5nZSc+XHJcbiAgICAgICAgICA8ZGl2ICpuZ0lmPVwiZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dSdWxlU2V0OyBlbHNlIG5vUnVsZVNldFwiPlxyXG4gICAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUJ1dHRvbkdyb3VwPVwibGV0IHJ1bGVzZXQ7IGxldCBhZGRSdWxlPWFkZFJ1bGU7IGxldCBhZGRSdWxlU2V0PWFkZFJ1bGVTZXQ7IGxldCByZW1vdmVSdWxlU2V0PXJlbW92ZVJ1bGVTZXRcIj5cclxuICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImZsZXggZ2FwLTNcIj5cclxuICAgICAgICAgICAgICAgIDx3LWJ1dHRvbiBbbGFiZWxdPVwidHJhbnNsYXRpb25zT2JqZWN0LmFkdmFuY2VkU2VhcmNoLmFkZFJ1bGVCdXR0b25MYWJlbFwiIHR5cGU9XCJzZWNvbmRhcnlcIiBzaXplPVwic21hbGxcIiAob25DbGljayk9XCJhZGRSdWxlKClcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgICAgICAgPHctYnV0dG9uIFtsYWJlbF09XCJ0cmFuc2xhdGlvbnNPYmplY3QuYWR2YW5jZWRTZWFyY2guYWRkUnVsZVNldEJ1dHRvbkxhYmVsXCIgdHlwZT1cInNlY29uZGFyeVwiIGljb249XCJwaSBwaS1wbHVzXCIgc2l6ZT1cInNtYWxsXCIgKm5nSWY9XCJhZGRSdWxlU2V0XCIgKG9uQ2xpY2spPVwiYWRkUnVsZVNldCgpXCI+PC93LWJ1dHRvbj5cclxuICAgICAgICAgICAgICAgIDx3LWJ1dHRvbiBbbGFiZWxdPVwidHJhbnNsYXRpb25zT2JqZWN0LmFkdmFuY2VkU2VhcmNoLnJlbW92ZVJ1bGVTZXRCdXR0b25MYWJlbFwiIHR5cGU9XCJ0ZXJ0aWFyeVwiIGljb249XCJwaSBwaS1taW51c1wiIHNpemU9XCJzbWFsbFwiICpuZ0lmPVwicmVtb3ZlUnVsZVNldFwiIChvbkNsaWNrKT1cInJlbW92ZVJ1bGVTZXQoKVwiPjwvdy1idXR0b24+XHJcbiAgICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgICAgIDwvZGl2PlxyXG5cclxuICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjbm9SdWxlU2V0PlxyXG4gICAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUJ1dHRvbkdyb3VwPVwibGV0IHJ1bGVzZXQ7IGxldCBhZGRSdWxlPWFkZFJ1bGU7IGxldCBhZGRSdWxlU2V0PWFkZFJ1bGVTZXQ7IGxldCByZW1vdmVSdWxlU2V0PXJlbW92ZVJ1bGVTZXRcIj5cclxuICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleCBqdXN0aWZ5LWNvbnRlbnQtZW5kIGZsZXgtd3JhcFwiPlxyXG4gICAgICAgICAgICAgICAgPHctYnV0dG9uIFtsYWJlbF09XCJ0cmFuc2xhdGlvbnNPYmplY3QuYmFzaWNTZWFyY2hUYWJMYWJlbFwiIHR5cGU9XCJ0ZXh0XCIgKG9uQ2xpY2spPVwidXBkYXRlU2VhcmNoVHlwZSgpXCI+PC93LWJ1dHRvbj5cclxuICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImFkdmFuY2VkLXF1ZXJ5LWJ1dHRvbi1ncm91cCBmbGV4IGdhcC0zXCI+XHJcbiAgICAgICAgICAgICAgICA8dy1idXR0b24gW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5hZHZhbmNlZFNlYXJjaC5hZGRSdWxlQnV0dG9uTGFiZWxcIiB0eXBlPVwic2Vjb25kYXJ5XCIgc2l6ZT1cInNtYWxsXCIgKG9uQ2xpY2spPVwiYWRkUnVsZSgpXCI+PC93LWJ1dHRvbj5cclxuICAgICAgICAgICAgICAgIDx3LWJ1dHRvbiBbbGFiZWxdPVwidHJhbnNsYXRpb25zT2JqZWN0LmFkdmFuY2VkU2VhcmNoLmFkZFJ1bGVTZXRCdXR0b25MYWJlbFwiIHR5cGU9XCJzZWNvbmRhcnlcIiBpY29uPVwicGkgcGktcGx1c1wiIHNpemU9XCJzbWFsbFwiICpuZ0lmPVwiYWRkUnVsZVNldFwiIChvbkNsaWNrKT1cImFkZFJ1bGVTZXQoKVwiPjwvdy1idXR0b24+XHJcbiAgICAgICAgICAgICAgICA8dy1idXR0b24gW2xhYmVsXT1cInRyYW5zbGF0aW9uc09iamVjdC5hZHZhbmNlZFNlYXJjaC5yZW1vdmVSdWxlU2V0QnV0dG9uTGFiZWxcIiB0eXBlPVwidGVydGlhcnlcIiBpY29uPVwicGkgcGktbWludXNcIiBzaXplPVwic21hbGxcIiAqbmdJZj1cInJlbW92ZVJ1bGVTZXRcIiAob25DbGljayk9XCJyZW1vdmVSdWxlU2V0KClcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcbiAgICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlBcnJvd0ljb24+XHJcbiAgICAgICAgICAgIDxidXR0b24gcEJ1dHRvbiBwUmlwcGxlIHR5cGU9XCJidXR0b25cIiBpY29uPVwicGkgcGktYW5nbGUtcmlnaHRcIiBjbGFzcz1cInAtYnV0dG9uLXJvdW5kZWQgcC1idXR0b24tdGV4dFwiPjwvYnV0dG9uPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlSZW1vdmVCdXR0b249XCJsZXQgcnVsZTsgbGV0IHJlbW92ZVJ1bGU9cmVtb3ZlUnVsZVwiPlxyXG4gICAgICAgICAgICA8dy1idXR0b24gY2xhc3M9XCJcIiBsYWJlbD1cIlwiIHNpemU9XCJzbWFsbFwiIHR5cGU9XCJ0ZXJ0aWFyeVwiIGljb249XCJwaSBwaS10aW1lc1wiIChvbkNsaWNrKT1cInJlbW92ZVJ1bGUocnVsZSlcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlTd2l0Y2hHcm91cD1cImxldCBydWxlc2V0OyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPGRpdiAqbmdJZj1cInJ1bGVzZXRcIiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLXN3aXRjaC1ncm91cC1wYWRkaW5nIHEtaW5saW5lLWJsb2NrLWRpc3BsYXkgaW5saW5lLWZsZXhcIj5cclxuICAgICAgICAgICAgICA8dy1zZWxlY3QtYnV0dG9uICpuZ0lmPVwiZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dMb2dpY2FsUnVsZVwiIFtzdGF0ZU9wdGlvbnNdPVwiW3tsYWJlbDogJ0FuZCcsIHZhbHVlOiAnYW5kJ30sIHtsYWJlbDogJ09yJywgdmFsdWU6ICdvcid9XVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbKG5nTW9kZWwpXT1cInJ1bGVzZXQuY29uZGl0aW9uXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtzaXplXT1cIidzbWFsbCdcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKHZhbHVlKT1cInJ1bGVzZXQuY29uZGl0aW9uID0gJGV2ZW50XCI+XHJcbiAgICAgICAgICAgICAgPC93LXNlbGVjdC1idXR0b24+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlFbnRpdHk9XCJsZXQgcnVsZTsgbGV0IGVudGl0aWVzPWVudGl0aWVzOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoXCIgW25nQ2xhc3NdPVwieyd3LW5vLWVudGl0eS1tb2RlJyA6ICFmaWx0ZXJQYW5lbE9iamVjdC5lbml0eU1vZGV9XCI+XHJcbiAgICAgICAgICAgICAgPHAtZHJvcGRvd24gKm5nSWY9XCJmaWx0ZXJQYW5lbE9iamVjdC5lbml0eU1vZGVcIiBjbGFzcz1cImZpZWxkLWdhcCB3LWVkaXQtc2VsZWN0LXNtYWxsIHctZW50aXR5LWRyb3Bkb3duXCIgYXBwZW5kVG89XCJib2R5XCIgW29wdGlvbnNdPVwiZW50aXRpZXNcIiBbKG5nTW9kZWwpXT1cInJ1bGUuZW50aXR5XCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgb3B0aW9uVmFsdWU9XCJ2YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKCRldmVudCwgcnVsZSlcIj48L3AtZHJvcGRvd24+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5RmllbGQ9XCJsZXQgcnVsZTsgbGV0IGZpZWxkcz1maWVsZHM7IGxldCBvbkNoYW5nZT1vbkNoYW5nZTsgbGV0IGdldEZpZWxkcyA9IGdldEZpZWxkc1wiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGggcS1pbmxpbmUtYmxvY2stZGlzcGxheVwiPlxyXG4gICAgICAgICAgICAgIDx3LWxpc3QtZmllbGQgY2xhc3M9XCJmaWVsZC1nYXBcIiBhcHBlbmRUbz1cImJvZHlcIiBbb3B0aW9uc109XCJnZXRGaWVsZHMocnVsZS5lbnRpdHkpXCIgWyhuZ01vZGVsKV09XCJydWxlLmZpZWxkXCIgW29wZXJhdG9yXT1cIic9J1wiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKCRldmVudCwgcnVsZSlcIiBbb25seURyb3Bkb3duXT1cInRydWVcIj48L3ctbGlzdC1maWVsZD5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlPcGVyYXRvcj1cImxldCBydWxlOyBsZXQgb3BlcmF0b3JzPW9wZXJhdG9yczsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aCBxLW9wZXJhdG9ycyBxLWlubGluZS1ibG9jay1kaXNwbGF5XCIgW25nQ2xhc3NdPVwieyd3LWZpZWxkLW51bGxhYmxlJyA6IG9wZXJhdG9ycy5pbmNsdWRlcygnbnVsbGFibGUnKX1cIj5cclxuICAgICAgICAgICAgICA8cC1kcm9wZG93biAqbmdJZj1cIiFvcGVyYXRvcnMuaW5jbHVkZXMoJ251bGxhYmxlJylcIiBjbGFzcz1cImZpZWxkLWdhcCB3LWVkaXQtc2VsZWN0LXNtYWxsXCIgYXBwZW5kVG89XCJib2R5XCIgWyhuZ01vZGVsKV09XCJydWxlLm9wZXJhdG9yXCIgW29wdGlvbnNdPVwib3BlcmF0b3JzXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UocnVsZSlcIj48L3AtZHJvcGRvd24+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgdHlwZTogcWJEYXRhVHlwZUVudW0uQm9vbGVhbi50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHctdG9nZ2xlLWJ1dHRvbiBjbGFzcz1cImZpZWxkLWdhcCB0b2dnbGUtYnV0dG9uLWFsaWduXCIgc2l6ZT1cInNtYWxsXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgb25MYWJlbD1cIlRydWVcIiBvZmZMYWJlbD1cIkZhbHNlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiPjwvdy10b2dnbGUtYnV0dG9uPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5EYXRldGltZS50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXlcIj5cclxuICAgICAgICAgICAgICA8dy1lZGl0LWNhbGVuZGFyIGNsYXNzPVwiZmllbGQtZ2FwXCIgYXBwZW5kVG89XCJib2R5XCIgc2l6ZT1cInNtYWxsXCIgW2RhdGFUeXBlXT1cImlzVG9LZWVwTG9jYWxEYXRlKHJ1bGUuZmllbGQpID8gJ2RhdGUnIDogJ3N0cmluZydcIiBbc2hvd0ljb25dPVwiZmFsc2VcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAob25DaGFuZ2UpPVwib25DaGFuZ2UoKVwiIFtzaG93VGltZV09XCJ0cnVlXCIgW3Nob3dTZWNvbmRzXT1cInRydWVcIiBbZmlyc3REYXlPZldlZWtdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpcnN0RGF5T2ZXZWVrID8/IDFcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5kYXRldGltZVwiIFtkaXNwbGF5SW5saW5lQmxvY2tdPVwidHJ1ZVwiIFtzaG93TGFiZWxdPVwiZmFsc2VcIj48L3ctZWRpdC1jYWxlbmRhcj5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgZmllbGQ9ZmllbGQ7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLkRlY2ltYWwudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aCBxLWlubGluZS1ibG9jay1kaXNwbGF5XCI+XHJcbiAgICAgICAgICAgICAgPHAtaW5wdXROdW1iZXIgaW5wdXRTdHlsZUNsYXNzPVwiZmxleCBmbGV4LTFcIiBzdHlsZUNsYXNzPVwiZmxleCBmbGV4LTFcIiBjbGFzcz1cImZpZWxkLWdhcCB3LWVkaXQtaW5wdXQtbnVtYmVyLXNtYWxsIHctZWRpdC1pbnB1dC1udW1iZXItc21hbGwtaGVpZ2h0XCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgaW5wdXRJZD1cIm1pbm1heFwiIGlucHV0SWQ9XCJtaW5tYXhcIiBtb2RlPVwiZGVjaW1hbFwiIFttaW5GcmFjdGlvbkRpZ2l0c109XCIyXCIgW21heEZyYWN0aW9uRGlnaXRzXT1cIjVcIiBbbWluXT1cIjBcIiBbbWF4XT1cIjEwMFwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5kZWNpbWFsXCI+IDwvcC1pbnB1dE51bWJlcj5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgb3B0aW9ucz1vcHRpb25zOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5MaXN0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGggcS1pbmxpbmUtYmxvY2stZGlzcGxheVwiPlxyXG4gICAgICAgICAgICAgIDxwLWRyb3Bkb3duICpuZ0lmPVwiIWlzTXVsdGlzZWxlY3QocnVsZSlcIiBjbGFzcz1cImZpZWxkLWdhcCB3LWVkaXQtc2VsZWN0LXNtYWxsXCIgYXBwZW5kVG89XCJib2R5XCIgW29wdGlvbnNdPVwib3B0aW9uc1wiIFtmaWx0ZXJdPVwidHJ1ZVwiIFtzaG93Q2xlYXJdPVwidHJ1ZVwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBvcHRpb25MYWJlbD1cIm5hbWVcIiBvcHRpb25WYWx1ZT1cInZhbHVlXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMubGlzdFwiPjwvcC1kcm9wZG93bj5cclxuICAgICAgICAgICAgICA8cC1tdWx0aVNlbGVjdCAqbmdJZj1cImlzTXVsdGlzZWxlY3QocnVsZSlcIiBjbGFzcz1cInctZWRpdC1tdWx0aXNlbGVjdC1zbWFsbFwiIFthcHBlbmRUb109XCInYm9keSdcIiBbb3B0aW9uc109XCJvcHRpb25zXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIG9wdGlvbkxhYmVsPVwibmFtZVwiIG9wdGlvblZhbHVlPVwidmFsdWVcIiBkaXNwbGF5PVwiY2hpcFwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLmxpc3RcIj48L3AtbXVsdGlTZWxlY3Q+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IG9wdGlvbnM9b3B0aW9uczsgdHlwZTogcWJEYXRhVHlwZUVudW0uTGlzdC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXkgZmllbGQtZ2FwXCI+XHJcbiAgICAgICAgICAgICAgPHctbGlzdC1maWVsZCBbb3B0aW9uc109XCJvcHRpb25zXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgW29wZXJhdG9yXT1cInJ1bGUub3BlcmF0b3JcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMubGlzdFwiPjwvdy1saXN0LWZpZWxkPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBmaWVsZD1maWVsZDsgdHlwZTogcWJEYXRhVHlwZUVudW0uTnVtYmVyLnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGggcS1pbmxpbmUtYmxvY2stZGlzcGxheVwiPlxyXG4gICAgICAgICAgICAgIDxwLWlucHV0TnVtYmVyIFt1c2VHcm91cGluZ109XCJmYWxzZVwiIGlucHV0U3R5bGVDbGFzcz1cImZsZXggZmxleC0xXCIgc3R5bGVDbGFzcz1cImZsZXggZmxleC0xXCIgY2xhc3M9XCJmaWVsZC1nYXAgdy1lZGl0LWlucHV0LW51bWJlci1zbWFsbCB3LWVkaXQtaW5wdXQtbnVtYmVyLXNtYWxsLWhlaWdodFwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIGlucHV0SWQ9XCJtaW5tYXhcIiBpbnB1dElkPVwibWlubWF4XCIgW21pbl09XCIwXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLm51bWJlclwiPiA8L3AtaW5wdXROdW1iZXI+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IGZpZWxkPWZpZWxkOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5UZXh0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGggcS1pbmxpbmUtYmxvY2stZGlzcGxheVwiPlxyXG4gICAgICAgICAgICAgIDxpbnB1dCBjbGFzcz1cImZpZWxkLWdhcCB3LWVkaXQtaW5wdXQtdGV4dC1zbWFsbC1oZWlnaHQgdy1lZGl0LWlucHV0LXRleHQtc21hbGxcIiB0eXBlPVwidGV4dFwiIHBJbnB1dFRleHQgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLnRleHRcIi8+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IG9wdGlvbnM9b3B0aW9uczsgdHlwZTogcWJEYXRhVHlwZUVudW0uTXVsdGlzZWxlY3QudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aCBxLWlubGluZS1ibG9jay1kaXNwbGF5XCI+XHJcbiAgICAgICAgICAgICAgPHAtbXVsdGlTZWxlY3QgY2xhc3M9XCJ3LWVkaXQtbXVsdGlzZWxlY3Qtc21hbGxcIiBbYXBwZW5kVG9dPVwiJ2JvZHknXCIgW29wdGlvbnNdPVwib3B0aW9uc1wiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBvcHRpb25MYWJlbD1cIm5hbWVcIiBvcHRpb25WYWx1ZT1cInZhbHVlXCIgZGlzcGxheT1cImNoaXBcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5saXN0XCI+PC9wLW11bHRpU2VsZWN0PlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBvcHRpb25zPW9wdGlvbnM7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLkFkZHJlc3MudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDx3LWFkZHJlc3MtZmllbGQgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIFtvcGVyYXRvcl09XCJydWxlLm9wZXJhdG9yXCIgW3NlZ21lbnRhdGlvbkFwaVVybF09XCJzZWdtZW50YXRpb25BcGlVcmxcIiBbc2VnbWVudGF0aW9uQXBpVG9rZW5dPVwic2VnbWVudGF0aW9uVG9rZW5cIiBbc2VsZWN0UGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5saXN0XCI+PC93LWFkZHJlc3MtZmllbGQ+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBvcHRpb25zPW9wdGlvbnM7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLk51bGxhYmxlU2VsZWN0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGggcS1pbmxpbmUtYmxvY2stZGlzcGxheSB3LWVudGl0eS1udWxsYWJsZVwiPlxyXG4gICAgICAgICAgICAgIDxwLWRyb3Bkb3duIGNsYXNzPVwiZmllbGQtZ2FwIHctZWRpdC1zZWxlY3Qtc21hbGxcIiBhcHBlbmRUbz1cImJvZHlcIiBbb3B0aW9uc109XCJnZXROdWxsYWJsZVNlbGVjdE9wdGlvbnMob3B0aW9ucylcIiBbZmlsdGVyXT1cInRydWVcIiBbc2hvd0NsZWFyXT1cImZhbHNlXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIG9wdGlvbkxhYmVsPVwibmFtZVwiIG9wdGlvblZhbHVlPVwidmFsdWVcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5saXN0XCI+PC9wLWRyb3Bkb3duPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBvcHRpb25zPW9wdGlvbnM7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLkJvb2xlYW5TZWxlY3QudG9TdHJpbmcoKTsgbGV0IG9uQ2hhbmdlPW9uQ2hhbmdlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidy1maWx0ZXItcGFuZWwtYWR2YW5jZWQtcXVlcnktYnVpbGRlci1pbnB1dC13aWR0aCBxLWlubGluZS1ibG9jay1kaXNwbGF5XCI+XHJcbiAgICAgICAgICAgICAgPHAtZHJvcGRvd24gY2xhc3M9XCJmaWVsZC1nYXAgdy1lZGl0LXNlbGVjdC1zbWFsbFwiIGFwcGVuZFRvPVwiYm9keVwiIFtvcHRpb25zXT1cImdldEJvb2xlYW5TZWxlY3RPcHRpb25zKG9wdGlvbnMpXCIgW25nTW9kZWxPcHRpb25zXT1cIntzdGFuZGFsb25lOiB0cnVlfVwiIFtmaWx0ZXJdPVwidHJ1ZVwiIFtzaG93Q2xlYXJdPVwiZmFsc2VcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgb3B0aW9uVmFsdWU9XCJ2YWx1ZVwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLmxpc3RcIj48L3AtZHJvcGRvd24+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgbGV0IG9wdGlvbnM9b3B0aW9uczsgdHlwZTogcWJEYXRhVHlwZUVudW0uVHJhbnNsYXRlZFNlbGVjdC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXlcIj5cclxuICAgICAgICAgICAgICA8cC1kcm9wZG93biBjbGFzcz1cImZpZWxkLWdhcCB3LWVkaXQtc2VsZWN0LXNtYWxsXCIgYXBwZW5kVG89XCJib2R5XCIgW29wdGlvbnNdPVwiZ2V0VHJhbnNsYXRlZFNlbGVjdE9wdGlvbnMob3B0aW9ucylcIiBbbmdNb2RlbE9wdGlvbnNdPVwie3N0YW5kYWxvbmU6IHRydWV9XCIgW2ZpbHRlcl09XCJ0cnVlXCIgW3Nob3dDbGVhcl09XCJmYWxzZVwiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBvcHRpb25MYWJlbD1cIm5hbWVcIiBvcHRpb25WYWx1ZT1cInZhbHVlXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMubGlzdFwiPjwvcC1kcm9wZG93bj5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcbiAgICAgIDwvcXVlcnktYnVpbGRlcj5cclxuXHJcbiAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc0FkdmFuY2VkU2VhcmNoICYmIGFkdmFuY2VkUXVlcnkucnVsZXMubGVuZ3RoPT0wXCIgPlxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJub1F1ZXJ5RGF0YVwiPjwvbmctY29udGFpbmVyPlxyXG4gICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgIDwhLS0gR3JvdXBlZCBmaWx0ZXIgLS0+XHJcbiAgICAgIDxkaXYgKm5nSWY9XCJmaWx0ZXJQYW5lbE9iamVjdC5hbGxvd0dyb3VwZWRcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwicHktNVwiPlxyXG4gICAgICAgICAgPHctdmlldy1jYXJkLXRpdGxlLXRleHQgW2NhcmRUaXRsZV09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZ3JvdXBlZEZpbHRlclRpdGxlXCI+PC93LXZpZXctY2FyZC10aXRsZS10ZXh0PlxyXG4gICAgICAgIDwvZGl2PlxyXG5cclxuICAgICAgICA8cXVlcnktYnVpbGRlciAqbmdJZj1cImdyb3VwZWRRdWVyeS5ydWxlcy5sZW5ndGggPiAwXCIgY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1ncm91cGVkIHF1ZXJ5LWJ1aWxkZXItc3R5bGVcIiBbZm9ybUNvbnRyb2xdPSdncm91cGVkUXVlcnlDdHJsJyBbY29uZmlnXT0nYWR2YW5jZWRRdWVyeUNvbmZpZycgW2FsbG93UnVsZXNldF09J2ZpbHRlclBhbmVsT2JqZWN0LmFsbG93UnVsZVNldCcgW2FsbG93Q29sbGFwc2VdPSdmaWx0ZXJQYW5lbE9iamVjdC5hbGxvd0NvbGFwc2UnIFthbGxvd1J1bGVzZXRdPVwiZmlsdGVyUGFuZWxPYmplY3QuYWxsb3dSdWxlU2V0XCIgW3BlcnNpc3RWYWx1ZU9uRmllbGRDaGFuZ2VdPSdwZXJzaXN0VmFsdWVPbkZpZWxkQ2hhbmdlJz5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5QnV0dG9uR3JvdXA9XCJsZXQgcnVsZXNldDsgbGV0IGFkZFJ1bGU9YWRkUnVsZTsgbGV0IGFkZFJ1bGVTZXQ9YWRkUnVsZVNldDsgbGV0IHJlbW92ZVJ1bGVTZXQ9cmVtb3ZlUnVsZVNldFwiPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZmxleCBnYXAtM1wiPlxyXG4gICAgICAgICAgICAgIDx3LWJ1dHRvbiBbbGFiZWxdPVwidHJhbnNsYXRpb25zT2JqZWN0LmFkdmFuY2VkU2VhcmNoLmFkZFJ1bGVCdXR0b25MYWJlbFwiIHR5cGU9XCJzZWNvbmRhcnlcIiBzaXplPVwic21hbGxcIiAob25DbGljayk9XCJhZGRSdWxlKClcIj48L3ctYnV0dG9uPlxyXG4gICAgICAgICAgICAgIDx3LWJ1dHRvbiBbbGFiZWxdPVwidHJhbnNsYXRpb25zT2JqZWN0LmFkdmFuY2VkU2VhcmNoLmFkZFJ1bGVTZXRCdXR0b25MYWJlbFwiIHR5cGU9XCJzZWNvbmRhcnlcIiBpY29uPVwicGkgcGktcGx1c1wiIHNpemU9XCJzbWFsbFwiICpuZ0lmPVwiYWRkUnVsZVNldFwiIChvbkNsaWNrKT1cImFkZFJ1bGVTZXQoKVwiPjwvdy1idXR0b24+XHJcbiAgICAgICAgICAgICAgPHctYnV0dG9uIFtsYWJlbF09XCJ0cmFuc2xhdGlvbnNPYmplY3QuYWR2YW5jZWRTZWFyY2gucmVtb3ZlUnVsZVNldEJ1dHRvbkxhYmVsXCIgdHlwZT1cInRlcnRpYXJ5XCIgaWNvbj1cInBpIHBpLW1pbnVzXCIgc2l6ZT1cInNtYWxsXCIgKm5nSWY9XCJyZW1vdmVSdWxlU2V0XCIgKG9uQ2xpY2spPVwicmVtb3ZlUnVsZVNldCgpXCI+PC93LWJ1dHRvbj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUFycm93SWNvbj5cclxuICAgICAgICAgICAgPGJ1dHRvbiBwQnV0dG9uIHBSaXBwbGUgdHlwZT1cImJ1dHRvblwiIGljb249XCJwaSBwaS1hbmdsZS1yaWdodFwiIGNsYXNzPVwicC1idXR0b24tcm91bmRlZCBwLWJ1dHRvbi10ZXh0XCI+PC9idXR0b24+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeVJlbW92ZUJ1dHRvbj1cImxldCBydWxlOyBsZXQgcmVtb3ZlUnVsZT1yZW1vdmVSdWxlXCI+XHJcbiAgICAgICAgICAgIDx3LWJ1dHRvbiBjbGFzcz1cIlwiIGxhYmVsPVwiXCIgc2l6ZT1cInNtYWxsXCIgdHlwZT1cInRlcnRpYXJ5XCIgaWNvbj1cInBpIHBpLXRpbWVzXCIgKG9uQ2xpY2spPVwicmVtb3ZlUnVsZShydWxlKVwiPjwvdy1idXR0b24+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeVN3aXRjaEdyb3VwPVwibGV0IHJ1bGVzZXQ7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwidy1maWx0ZXItcGFuZWwtc3dpdGNoLWdyb3VwLXBhZGRpbmcgcS1pbmxpbmUtYmxvY2stZGlzcGxheSBpbmxpbmUtZmxleFwiICpuZ0lmPVwicnVsZXNldFwiPlxyXG4gICAgICAgICAgICAgIDx3LXNlbGVjdC1idXR0b24gKm5nSWY9XCJmaWx0ZXJQYW5lbE9iamVjdC5hbGxvd0xvZ2ljYWxSdWxlXCIgW3N0YXRlT3B0aW9uc109XCJbe2xhYmVsOiAnQW5kJywgdmFsdWU6ICdhbmQnfSwge2xhYmVsOiAnT3InLCB2YWx1ZTogJ29yJ31dXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFsobmdNb2RlbCldPVwicnVsZXNldC5jb25kaXRpb25cIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW3NpemVdPVwiJ3NtYWxsJ1wiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAodmFsdWUpPVwicnVsZXNldC5jb25kaXRpb24gPSAkZXZlbnRcIj5cclxuICAgICAgICAgICAgICA8L3ctc2VsZWN0LWJ1dHRvbj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUVudGl0eT1cImxldCBydWxlOyBsZXQgZW50aXRpZXM9ZW50aXRpZXM7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGhcIiBbbmdDbGFzc109XCJ7J3ctbm8tZW50aXR5LW1vZGUnIDogIWZpbHRlclBhbmVsT2JqZWN0LmVuaXR5TW9kZX1cIj5cclxuICAgICAgICAgICAgICA8cC1kcm9wZG93biBjbGFzcz1cInctZWRpdC1zZWxlY3Qtc21hbGwgZmllbGQtZ2FwIHctZW50aXR5LWRyb3Bkb3duXCIgKm5nSWY9XCJmaWx0ZXJQYW5lbE9iamVjdC5lbml0eU1vZGVcIiBhcHBlbmRUbz1cImJvZHlcIiBbb3B0aW9uc109XCJlbnRpdGllc1wiIFsobmdNb2RlbCldPVwicnVsZS5lbnRpdHlcIiBvcHRpb25MYWJlbD1cIm5hbWVcIiBvcHRpb25WYWx1ZT1cInZhbHVlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoJGV2ZW50LCBydWxlKVwiPjwvcC1kcm9wZG93bj5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUZpZWxkPVwibGV0IHJ1bGU7IGxldCBmaWVsZHM9ZmllbGRzOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2U7IGxldCBnZXRGaWVsZHMgPSBnZXRGaWVsZHNcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXlcIj5cclxuICAgICAgICAgICAgICA8cC1kcm9wZG93biBjbGFzcz1cInctZWRpdC1zZWxlY3Qtc21hbGxcIiBhcHBlbmRUbz1cImJvZHlcIiBbb3B0aW9uc109XCJnZXRGaWVsZHMocnVsZS5lbnRpdHkpXCIgWyhuZ01vZGVsKV09XCJydWxlLmZpZWxkXCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgb3B0aW9uVmFsdWU9XCJ2YWx1ZVwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKCRldmVudCwgcnVsZSlcIj48L3AtZHJvcGRvd24+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5T3BlcmF0b3I9XCJsZXQgcnVsZTsgbGV0IG9wZXJhdG9ycz1vcGVyYXRvcnM7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGggcS1vcGVyYXRvcnMgcS1pbmxpbmUtYmxvY2stZGlzcGxheVwiIFtuZ0NsYXNzXT1cInsndy1maWVsZC1udWxsYWJsZScgOiBvcGVyYXRvcnMuaW5jbHVkZXMoJ251bGxhYmxlJyl9XCI+XHJcbiAgICAgICAgICAgICAgPHAtZHJvcGRvd24gY2xhc3M9XCJ3LWVkaXQtc2VsZWN0LXNtYWxsXCIgYXBwZW5kVG89XCJib2R5XCIgWyhuZ01vZGVsKV09XCJydWxlLm9wZXJhdG9yXCIgW29wdGlvbnNdPVwib3BlcmF0b3JzXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UocnVsZSlcIj48L3AtZHJvcGRvd24+XHJcbiAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKnF1ZXJ5SW5wdXQ9XCJsZXQgcnVsZTsgdHlwZTogcWJEYXRhVHlwZUVudW0uQm9vbGVhbi50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHctdG9nZ2xlLWJ1dHRvbiBjbGFzcz1cImZpZWxkLWdhcCB0b2dnbGUtYnV0dG9uLWFsaWduXCIgc2l6ZT1cInNtYWxsXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgb25MYWJlbD1cIlRydWVcIiBvZmZMYWJlbD1cIkZhbHNlXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiPjwvdy10b2dnbGUtYnV0dG9uPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5EYXRldGltZS50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXlcIj5cclxuICAgICAgICAgICAgICA8dy1lZGl0LWNhbGVuZGFyIGNsYXNzPVwiZmllbGQtZ2FwXCIgYXBwZW5kVG89XCJib2R5XCIgc2l6ZT1cInNtYWxsXCIgW2RhdGFUeXBlXT1cImlzVG9LZWVwTG9jYWxEYXRlKHJ1bGUuZmllbGQpID8gJ2RhdGUnIDogJ3N0cmluZydcIiBbc2hvd0ljb25dPVwiZmFsc2VcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAob25DaGFuZ2UpPVwib25DaGFuZ2UoKVwiIFtzaG93VGltZV09XCJ0cnVlXCIgW3Nob3dTZWNvbmRzXT1cInRydWVcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5kYXRldGltZVwiIFtkaXNwbGF5SW5saW5lQmxvY2tdPVwidHJ1ZVwiPjwvdy1lZGl0LWNhbGVuZGFyPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBmaWVsZD1maWVsZDsgdHlwZTogcWJEYXRhVHlwZUVudW0uRGVjaW1hbC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXlcIj5cclxuICAgICAgICAgICAgICA8cC1pbnB1dE51bWJlciBjbGFzcz1cImZsZXggZmxleC0xXCIgWyhuZ01vZGVsKV09XCJydWxlLnZhbHVlXCIgaW5wdXRJZD1cIm1pbm1heFwiIGlucHV0SWQ9XCJtaW5tYXhcIiBtb2RlPVwiZGVjaW1hbFwiIFttaW5GcmFjdGlvbkRpZ2l0c109XCIyXCIgW21heEZyYWN0aW9uRGlnaXRzXT1cIjVcIiBbbWluXT1cIjBcIiBbbWF4XT1cIjEwMFwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5kZWNpbWFsXCI+IDwvcC1pbnB1dE51bWJlcj5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgb3B0aW9ucz1vcHRpb25zOyB0eXBlOiBxYkRhdGFUeXBlRW51bS5MaXN0LnRvU3RyaW5nKCk7IGxldCBvbkNoYW5nZT1vbkNoYW5nZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBjbGFzcz1cInctZmlsdGVyLXBhbmVsLWFkdmFuY2VkLXF1ZXJ5LWJ1aWxkZXItaW5wdXQtd2lkdGggcS1pbmxpbmUtYmxvY2stZGlzcGxheVwiPlxyXG4gICAgICAgICAgICAgIDx3LWxpc3QtZmllbGQgW29wdGlvbnNdPVwib3B0aW9uc1wiIFsobmdNb2RlbCldPVwicnVsZS52YWx1ZVwiIFtvcGVyYXRvcl09XCJydWxlLm9wZXJhdG9yXCIgKG5nTW9kZWxDaGFuZ2UpPVwib25DaGFuZ2UoKVwiIFtwbGFjZWhvbGRlcl09XCJ0cmFuc2xhdGlvbnNPYmplY3QuZmllbGRzUGxhY2Vob2xkZXJzLmxpc3RcIj48L3ctbGlzdC1maWVsZD5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqcXVlcnlJbnB1dD1cImxldCBydWxlOyBsZXQgZmllbGQ9ZmllbGQ7IHR5cGU6IHFiRGF0YVR5cGVFbnVtLk51bWJlci50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoIHEtaW5saW5lLWJsb2NrLWRpc3BsYXlcIj5cclxuICAgICAgICAgICAgICA8cC1pbnB1dE51bWJlciBbdXNlR3JvdXBpbmddPVwiZmFsc2VcIiBpbnB1dFN0eWxlQ2xhc3M9XCJmbGV4IGZsZXgtMVwiIHN0eWxlQ2xhc3M9XCJmbGV4IGZsZXgtMVwiIGNsYXNzPVwiZmllbGQtZ2FwIHctZWRpdC1pbnB1dC1udW1iZXItc21hbGwgdy1lZGl0LWlucHV0LW51bWJlci1zbWFsbC1oZWlnaHRcIiBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiBpbnB1dElkPVwibWlubWF4XCIgaW5wdXRJZD1cIm1pbm1heFwiIFttaW5dPVwiMFwiIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKClcIiBbcGxhY2Vob2xkZXJdPVwidHJhbnNsYXRpb25zT2JqZWN0LmZpZWxkc1BsYWNlaG9sZGVycy5udW1iZXJcIj4gPC9wLWlucHV0TnVtYmVyPlxyXG4gICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpxdWVyeUlucHV0PVwibGV0IHJ1bGU7IGxldCBmaWVsZD1maWVsZDsgdHlwZTogcWJEYXRhVHlwZUVudW0uVGV4dC50b1N0cmluZygpOyBsZXQgb25DaGFuZ2U9b25DaGFuZ2VcIj5cclxuICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ3LWZpbHRlci1wYW5lbC1hZHZhbmNlZC1xdWVyeS1idWlsZGVyLWlucHV0LXdpZHRoXCI+XHJcbiAgICAgICAgICAgICAgPGlucHV0IGNsYXNzPVwiZmllbGQtZ2FwIHctZWRpdC1pbnB1dC10ZXh0LXNtYWxsLWhlaWdodCB3LWVkaXQtaW5wdXQtdGV4dC1zbWFsbFwiIHR5cGU9XCJ0ZXh0XCIgcElucHV0VGV4dCBbKG5nTW9kZWwpXT1cInJ1bGUudmFsdWVcIiAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgpXCIgW3BsYWNlaG9sZGVyXT1cInRyYW5zbGF0aW9uc09iamVjdC5maWVsZHNQbGFjZWhvbGRlcnMudGV4dFwiLz5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG5cclxuICAgICAgICA8L3F1ZXJ5LWJ1aWxkZXI+XHJcblxyXG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc0FkdmFuY2VkU2VhcmNoICYmIGdyb3VwZWRRdWVyeS5ydWxlcy5sZW5ndGg9PTBcIiA+XHJcbiAgICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwibm9RdWVyeURhdGFcIj48L25nLWNvbnRhaW5lcj5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICA8L25nLXRlbXBsYXRlPlxyXG5cclxuICA8bmctdGVtcGxhdGUgI25vUXVlcnlEYXRhPlxyXG4gICAgPGRpdiBjbGFzcz1cImZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBmbGV4LXdyYXAgY2FyZC1jb250YWluZXIgc3VyZmFjZS01MFwiPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwiZmxleCBhbGlnbi1pdGVtcy1jZW50ZXIganVzdGlmeS1jb250ZW50LWNlbnRlciB3LWZ1bGwgaC00cmVtIHRleHQtZ3JheS05MDAgYm9yZGVyLXJvdW5kIG0tMlwiPlxyXG4gICAgICAgIHt7dHJhbnNsYXRpb25zT2JqZWN0Lm5vUnVsZXNMYWJlbH19XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuIl19
|